]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cp/decl.c
0e49e2b6088550f692422fc8f1a47d77e262cb6e
[thirdparty/gcc.git] / gcc / cp / decl.c
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988-2017 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
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 "cilk.h"
52 #include "builtins.h"
53 #include "gimplify.h"
54 #include "asan.h"
55
56 /* Possible cases of bad specifiers type used by bad_specifiers. */
57 enum bad_spec_place {
58 BSP_VAR, /* variable */
59 BSP_PARM, /* parameter */
60 BSP_TYPE, /* type */
61 BSP_FIELD /* field */
62 };
63
64 static const char *redeclaration_error_message (tree, tree);
65
66 static int decl_jump_unsafe (tree);
67 static void require_complete_types_for_parms (tree);
68 static bool ambi_op_p (enum tree_code);
69 static bool unary_op_p (enum tree_code);
70 static void push_local_name (tree);
71 static tree grok_reference_init (tree, tree, tree, int);
72 static tree grokvardecl (tree, tree, tree, const cp_decl_specifier_seq *,
73 int, int, int, bool, int, tree);
74 static int check_static_variable_definition (tree, tree);
75 static void record_unknown_type (tree, const char *);
76 static tree builtin_function_1 (tree, tree, bool);
77 static int member_function_or_else (tree, tree, enum overload_flags);
78 static void check_for_uninitialized_const_var (tree);
79 static tree local_variable_p_walkfn (tree *, int *, void *);
80 static const char *tag_name (enum tag_types);
81 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
82 static void maybe_deduce_size_from_array_init (tree, tree);
83 static void layout_var_decl (tree);
84 static tree check_initializer (tree, tree, int, vec<tree, va_gc> **);
85 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
86 static void save_function_data (tree);
87 static void copy_type_enum (tree , tree);
88 static void check_function_type (tree, tree);
89 static void finish_constructor_body (void);
90 static void begin_destructor_body (void);
91 static void finish_destructor_body (void);
92 static void record_key_method_defined (tree);
93 static tree create_array_type_for_decl (tree, tree, tree);
94 static tree get_atexit_node (void);
95 static tree get_dso_handle_node (void);
96 static tree start_cleanup_fn (void);
97 static void end_cleanup_fn (void);
98 static tree cp_make_fname_decl (location_t, tree, int);
99 static void initialize_predefined_identifiers (void);
100 static tree check_special_function_return_type
101 (special_function_kind, tree, tree, int, const location_t*);
102 static tree push_cp_library_fn (enum tree_code, tree, int);
103 static tree build_cp_library_fn (tree, enum tree_code, tree, int);
104 static void store_parm_decls (tree);
105 static void initialize_local_var (tree, tree);
106 static void expand_static_init (tree, tree);
107
108 /* The following symbols are subsumed in the cp_global_trees array, and
109 listed here individually for documentation purposes.
110
111 C++ extensions
112 tree wchar_decl_node;
113
114 tree vtable_entry_type;
115 tree delta_type_node;
116 tree __t_desc_type_node;
117
118 tree class_type_node;
119 tree unknown_type_node;
120
121 Array type `vtable_entry_type[]'
122
123 tree vtbl_type_node;
124 tree vtbl_ptr_type_node;
125
126 Namespaces,
127
128 tree std_node;
129 tree abi_node;
130
131 A FUNCTION_DECL which can call `abort'. Not necessarily the
132 one that the user will declare, but sufficient to be called
133 by routines that want to abort the program.
134
135 tree abort_fndecl;
136
137 Used by RTTI
138 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
139 tree tinfo_var_id; */
140
141 tree cp_global_trees[CPTI_MAX];
142
143 #define local_names cp_function_chain->x_local_names
144
145 /* A list of objects which have constructors or destructors
146 which reside in the global scope. The decl is stored in
147 the TREE_VALUE slot and the initializer is stored
148 in the TREE_PURPOSE slot. */
149 tree static_aggregates;
150
151 /* Like static_aggregates, but for thread_local variables. */
152 tree tls_aggregates;
153
154 /* -- end of C++ */
155
156 /* A node for the integer constant 2. */
157
158 tree integer_two_node;
159
160 /* vector of static decls. */
161 vec<tree, va_gc> *static_decls;
162
163 /* vector of keyed classes. */
164 vec<tree, va_gc> *keyed_classes;
165
166 /* Used only for jumps to as-yet undefined labels, since jumps to
167 defined labels can have their validity checked immediately. */
168
169 struct GTY((chain_next ("%h.next"))) named_label_use_entry {
170 struct named_label_use_entry *next;
171 /* The binding level to which this entry is *currently* attached.
172 This is initially the binding level in which the goto appeared,
173 but is modified as scopes are closed. */
174 cp_binding_level *binding_level;
175 /* The head of the names list that was current when the goto appeared,
176 or the inner scope popped. These are the decls that will *not* be
177 skipped when jumping to the label. */
178 tree names_in_scope;
179 /* The location of the goto, for error reporting. */
180 location_t o_goto_locus;
181 /* True if an OpenMP structured block scope has been closed since
182 the goto appeared. This means that the branch from the label will
183 illegally exit an OpenMP scope. */
184 bool in_omp_scope;
185 };
186
187 /* A list of all LABEL_DECLs in the function that have names. Here so
188 we can clear out their names' definitions at the end of the
189 function, and so we can check the validity of jumps to these labels. */
190
191 struct GTY((for_user)) named_label_entry {
192
193 tree name; /* Name of decl. */
194
195 tree label_decl; /* LABEL_DECL, unless deleted local label. */
196
197 named_label_entry *outer; /* Outer shadowed chain. */
198
199 /* The binding level to which the label is *currently* attached.
200 This is initially set to the binding level in which the label
201 is defined, but is modified as scopes are closed. */
202 cp_binding_level *binding_level;
203
204 /* The head of the names list that was current when the label was
205 defined, or the inner scope popped. These are the decls that will
206 be skipped when jumping to the label. */
207 tree names_in_scope;
208
209 /* A vector of all decls from all binding levels that would be
210 crossed by a backward branch to the label. */
211 vec<tree, va_gc> *bad_decls;
212
213 /* A list of uses of the label, before the label is defined. */
214 named_label_use_entry *uses;
215
216 /* The following bits are set after the label is defined, and are
217 updated as scopes are popped. They indicate that a jump to the
218 label will illegally enter a scope of the given flavor. */
219 bool in_try_scope;
220 bool in_catch_scope;
221 bool in_omp_scope;
222 bool in_transaction_scope;
223 bool in_constexpr_if;
224 };
225
226 #define named_labels cp_function_chain->x_named_labels
227 \f
228 /* The number of function bodies which we are currently processing.
229 (Zero if we are at namespace scope, one inside the body of a
230 function, two inside the body of a function in a local class, etc.) */
231 int function_depth;
232
233 /* Whether the exception-specifier is part of a function type (i.e. C++17). */
234 bool flag_noexcept_type;
235
236 /* States indicating how grokdeclarator() should handle declspecs marked
237 with __attribute__((deprecated)). An object declared as
238 __attribute__((deprecated)) suppresses warnings of uses of other
239 deprecated items. */
240 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
241
242 \f
243 /* A list of VAR_DECLs whose type was incomplete at the time the
244 variable was declared. */
245
246 struct GTY(()) incomplete_var {
247 tree decl;
248 tree incomplete_type;
249 };
250
251
252 static GTY(()) vec<incomplete_var, va_gc> *incomplete_vars;
253 \f
254 /* Returns the kind of template specialization we are currently
255 processing, given that it's declaration contained N_CLASS_SCOPES
256 explicit scope qualifications. */
257
258 tmpl_spec_kind
259 current_tmpl_spec_kind (int n_class_scopes)
260 {
261 int n_template_parm_scopes = 0;
262 int seen_specialization_p = 0;
263 int innermost_specialization_p = 0;
264 cp_binding_level *b;
265
266 /* Scan through the template parameter scopes. */
267 for (b = current_binding_level;
268 b->kind == sk_template_parms;
269 b = b->level_chain)
270 {
271 /* If we see a specialization scope inside a parameter scope,
272 then something is wrong. That corresponds to a declaration
273 like:
274
275 template <class T> template <> ...
276
277 which is always invalid since [temp.expl.spec] forbids the
278 specialization of a class member template if the enclosing
279 class templates are not explicitly specialized as well. */
280 if (b->explicit_spec_p)
281 {
282 if (n_template_parm_scopes == 0)
283 innermost_specialization_p = 1;
284 else
285 seen_specialization_p = 1;
286 }
287 else if (seen_specialization_p == 1)
288 return tsk_invalid_member_spec;
289
290 ++n_template_parm_scopes;
291 }
292
293 /* Handle explicit instantiations. */
294 if (processing_explicit_instantiation)
295 {
296 if (n_template_parm_scopes != 0)
297 /* We've seen a template parameter list during an explicit
298 instantiation. For example:
299
300 template <class T> template void f(int);
301
302 This is erroneous. */
303 return tsk_invalid_expl_inst;
304 else
305 return tsk_expl_inst;
306 }
307
308 if (n_template_parm_scopes < n_class_scopes)
309 /* We've not seen enough template headers to match all the
310 specialized classes present. For example:
311
312 template <class T> void R<T>::S<T>::f(int);
313
314 This is invalid; there needs to be one set of template
315 parameters for each class. */
316 return tsk_insufficient_parms;
317 else if (n_template_parm_scopes == n_class_scopes)
318 /* We're processing a non-template declaration (even though it may
319 be a member of a template class.) For example:
320
321 template <class T> void S<T>::f(int);
322
323 The `class T' matches the `S<T>', leaving no template headers
324 corresponding to the `f'. */
325 return tsk_none;
326 else if (n_template_parm_scopes > n_class_scopes + 1)
327 /* We've got too many template headers. For example:
328
329 template <> template <class T> void f (T);
330
331 There need to be more enclosing classes. */
332 return tsk_excessive_parms;
333 else
334 /* This must be a template. It's of the form:
335
336 template <class T> template <class U> void S<T>::f(U);
337
338 This is a specialization if the innermost level was a
339 specialization; otherwise it's just a definition of the
340 template. */
341 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
342 }
343
344 /* Exit the current scope. */
345
346 void
347 finish_scope (void)
348 {
349 poplevel (0, 0, 0);
350 }
351
352 /* When a label goes out of scope, check to see if that label was used
353 in a valid manner, and issue any appropriate warnings or errors. */
354
355 static void
356 check_label_used (tree label)
357 {
358 if (!processing_template_decl)
359 {
360 if (DECL_INITIAL (label) == NULL_TREE)
361 {
362 location_t location;
363
364 error ("label %q+D used but not defined", label);
365 location = input_location;
366 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
367 /* Avoid crashing later. */
368 define_label (location, DECL_NAME (label));
369 }
370 else
371 warn_for_unused_label (label);
372 }
373 }
374
375 /* Helper function to sort named label entries in a vector by DECL_UID. */
376
377 static int
378 sort_labels (const void *a, const void *b)
379 {
380 tree label1 = *(tree const *) a;
381 tree label2 = *(tree const *) b;
382
383 /* DECL_UIDs can never be equal. */
384 return DECL_UID (label1) > DECL_UID (label2) ? -1 : +1;
385 }
386
387 /* At the end of a function, all labels declared within the function
388 go out of scope. BLOCK is the top-level block for the
389 function. */
390
391 static void
392 pop_labels (tree block)
393 {
394 if (!named_labels)
395 return;
396
397 /* We need to add the labels to the block chain, so debug
398 information is emitted. But, we want the order to be stable so
399 need to sort them first. Otherwise the debug output could be
400 randomly ordered. I guess it's mostly stable, unless the hash
401 table implementation changes. */
402 auto_vec<tree, 32> labels (named_labels->elements ());
403 hash_table<named_label_hash>::iterator end (named_labels->end ());
404 for (hash_table<named_label_hash>::iterator iter
405 (named_labels->begin ()); iter != end; ++iter)
406 {
407 named_label_entry *ent = *iter;
408
409 gcc_checking_assert (!ent->outer);
410 if (ent->label_decl)
411 labels.quick_push (ent->label_decl);
412 ggc_free (ent);
413 }
414 named_labels = NULL;
415 labels.qsort (sort_labels);
416
417 while (labels.length ())
418 {
419 tree label = labels.pop ();
420
421 DECL_CHAIN (label) = BLOCK_VARS (block);
422 BLOCK_VARS (block) = label;
423
424 check_label_used (label);
425 }
426 }
427
428 /* At the end of a block with local labels, restore the outer definition. */
429
430 static void
431 pop_local_label (tree id, tree label)
432 {
433 check_label_used (label);
434 named_label_entry **slot = named_labels->find_slot_with_hash
435 (id, IDENTIFIER_HASH_VALUE (id), NO_INSERT);
436 named_label_entry *ent = *slot;
437
438 if (ent->outer)
439 ent = ent->outer;
440 else
441 {
442 ent = ggc_cleared_alloc<named_label_entry> ();
443 ent->name = id;
444 }
445 *slot = ent;
446 }
447
448 /* The following two routines are used to interface to Objective-C++.
449 The binding level is purposely treated as an opaque type. */
450
451 void *
452 objc_get_current_scope (void)
453 {
454 return current_binding_level;
455 }
456
457 /* The following routine is used by the NeXT-style SJLJ exceptions;
458 variables get marked 'volatile' so as to not be clobbered by
459 _setjmp()/_longjmp() calls. All variables in the current scope,
460 as well as parent scopes up to (but not including) ENCLOSING_BLK
461 shall be thusly marked. */
462
463 void
464 objc_mark_locals_volatile (void *enclosing_blk)
465 {
466 cp_binding_level *scope;
467
468 for (scope = current_binding_level;
469 scope && scope != enclosing_blk;
470 scope = scope->level_chain)
471 {
472 tree decl;
473
474 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
475 objc_volatilize_decl (decl);
476
477 /* Do not climb up past the current function. */
478 if (scope->kind == sk_function_parms)
479 break;
480 }
481 }
482
483 /* True if B is the level for the condition of a constexpr if. */
484
485 static bool
486 level_for_constexpr_if (cp_binding_level *b)
487 {
488 return (b->kind == sk_cond && b->this_entity
489 && TREE_CODE (b->this_entity) == IF_STMT
490 && IF_STMT_CONSTEXPR_P (b->this_entity));
491 }
492
493 /* Update data for defined and undefined labels when leaving a scope. */
494
495 int
496 poplevel_named_label_1 (named_label_entry **slot, cp_binding_level *bl)
497 {
498 named_label_entry *ent = *slot;
499 cp_binding_level *obl = bl->level_chain;
500
501 if (ent->binding_level == bl)
502 {
503 tree decl;
504
505 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
506 TREE_LISTs representing OVERLOADs, so be careful. */
507 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
508 ? DECL_CHAIN (decl)
509 : TREE_CHAIN (decl)))
510 if (decl_jump_unsafe (decl))
511 vec_safe_push (ent->bad_decls, decl);
512
513 ent->binding_level = obl;
514 ent->names_in_scope = obl->names;
515 switch (bl->kind)
516 {
517 case sk_try:
518 ent->in_try_scope = true;
519 break;
520 case sk_catch:
521 ent->in_catch_scope = true;
522 break;
523 case sk_omp:
524 ent->in_omp_scope = true;
525 break;
526 case sk_transaction:
527 ent->in_transaction_scope = true;
528 break;
529 case sk_block:
530 if (level_for_constexpr_if (bl->level_chain))
531 ent->in_constexpr_if = true;
532 break;
533 default:
534 break;
535 }
536 }
537 else if (ent->uses)
538 {
539 struct named_label_use_entry *use;
540
541 for (use = ent->uses; use ; use = use->next)
542 if (use->binding_level == bl)
543 {
544 use->binding_level = obl;
545 use->names_in_scope = obl->names;
546 if (bl->kind == sk_omp)
547 use->in_omp_scope = true;
548 }
549 }
550
551 return 1;
552 }
553
554 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
555 when errors were reported, except for -Werror-unused-but-set-*. */
556 static int unused_but_set_errorcount;
557
558 /* Exit a binding level.
559 Pop the level off, and restore the state of the identifier-decl mappings
560 that were in effect when this level was entered.
561
562 If KEEP == 1, this level had explicit declarations, so
563 and create a "block" (a BLOCK node) for the level
564 to record its declarations and subblocks for symbol table output.
565
566 If FUNCTIONBODY is nonzero, this level is the body of a function,
567 so create a block as if KEEP were set and also clear out all
568 label names.
569
570 If REVERSE is nonzero, reverse the order of decls before putting
571 them into the BLOCK. */
572
573 tree
574 poplevel (int keep, int reverse, int functionbody)
575 {
576 tree link;
577 /* The chain of decls was accumulated in reverse order.
578 Put it into forward order, just for cleanliness. */
579 tree decls;
580 tree subblocks;
581 tree block;
582 tree decl;
583 int leaving_for_scope;
584 scope_kind kind;
585 unsigned ix;
586
587 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
588 restart:
589
590 block = NULL_TREE;
591
592 gcc_assert (current_binding_level->kind != sk_class
593 && current_binding_level->kind != sk_namespace);
594
595 if (current_binding_level->kind == sk_cleanup)
596 functionbody = 0;
597 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
598
599 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
600
601 /* We used to use KEEP == 2 to indicate that the new block should go
602 at the beginning of the list of blocks at this binding level,
603 rather than the end. This hack is no longer used. */
604 gcc_assert (keep == 0 || keep == 1);
605
606 if (current_binding_level->keep)
607 keep = 1;
608
609 /* Any uses of undefined labels, and any defined labels, now operate
610 under constraints of next binding contour. */
611 if (cfun && !functionbody && named_labels)
612 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
613 (current_binding_level);
614
615 /* Get the decls in the order they were written.
616 Usually current_binding_level->names is in reverse order.
617 But parameter decls were previously put in forward order. */
618
619 decls = current_binding_level->names;
620 if (reverse)
621 {
622 decls = nreverse (decls);
623 current_binding_level->names = decls;
624 }
625
626 /* If there were any declarations or structure tags in that level,
627 or if this level is a function body,
628 create a BLOCK to record them for the life of this function. */
629 block = NULL_TREE;
630 /* Avoid function body block if possible. */
631 if (functionbody && subblocks && BLOCK_CHAIN (subblocks) == NULL_TREE)
632 keep = 0;
633 else if (keep == 1 || functionbody)
634 block = make_node (BLOCK);
635 if (block != NULL_TREE)
636 {
637 BLOCK_VARS (block) = decls;
638 BLOCK_SUBBLOCKS (block) = subblocks;
639 }
640
641 /* In each subblock, record that this is its superior. */
642 if (keep >= 0)
643 for (link = subblocks; link; link = BLOCK_CHAIN (link))
644 BLOCK_SUPERCONTEXT (link) = block;
645
646 /* We still support the old for-scope rules, whereby the variables
647 in a init statement were in scope after the for-statement ended.
648 We only use the new rules if flag_new_for_scope is nonzero. */
649 leaving_for_scope
650 = current_binding_level->kind == sk_for && flag_new_for_scope == 1;
651
652 /* Before we remove the declarations first check for unused variables. */
653 if ((warn_unused_variable || warn_unused_but_set_variable)
654 && current_binding_level->kind != sk_template_parms
655 && !processing_template_decl)
656 for (tree d = get_local_decls (); d; d = TREE_CHAIN (d))
657 {
658 /* There are cases where D itself is a TREE_LIST. See in
659 push_local_binding where the list of decls returned by
660 getdecls is built. */
661 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
662
663 tree type = TREE_TYPE (decl);
664 if (VAR_P (decl)
665 && (! TREE_USED (decl) || !DECL_READ_P (decl))
666 && ! DECL_IN_SYSTEM_HEADER (decl)
667 /* For structured bindings, consider only real variables, not
668 subobjects. */
669 && (DECL_DECOMPOSITION_P (decl) ? !DECL_DECOMP_BASE (decl)
670 : (DECL_NAME (decl) && !DECL_ARTIFICIAL (decl)))
671 && type != error_mark_node
672 && (!CLASS_TYPE_P (type)
673 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
674 || lookup_attribute ("warn_unused",
675 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
676 {
677 if (! TREE_USED (decl))
678 {
679 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
680 warning_at (DECL_SOURCE_LOCATION (decl),
681 OPT_Wunused_variable,
682 "unused structured binding declaration");
683 else
684 warning_at (DECL_SOURCE_LOCATION (decl),
685 OPT_Wunused_variable, "unused variable %qD", decl);
686 }
687 else if (DECL_CONTEXT (decl) == current_function_decl
688 // For -Wunused-but-set-variable leave references alone.
689 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
690 && errorcount == unused_but_set_errorcount)
691 {
692 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
693 warning_at (DECL_SOURCE_LOCATION (decl),
694 OPT_Wunused_but_set_variable, "structured "
695 "binding declaration set but not used");
696 else
697 warning_at (DECL_SOURCE_LOCATION (decl),
698 OPT_Wunused_but_set_variable,
699 "variable %qD set but not used", decl);
700 unused_but_set_errorcount = errorcount;
701 }
702 }
703 }
704
705 /* Remove declarations for all the DECLs in this level. */
706 for (link = decls; link; link = TREE_CHAIN (link))
707 {
708 decl = TREE_CODE (link) == TREE_LIST ? TREE_VALUE (link) : link;
709 tree name = OVL_NAME (decl);
710
711 if (leaving_for_scope && VAR_P (decl)
712 /* It's hard to make this ARM compatibility hack play nicely with
713 lambdas, and it really isn't necessary in C++11 mode. */
714 && cxx_dialect < cxx11
715 && name)
716 {
717 cxx_binding *ob = outer_binding (name,
718 IDENTIFIER_BINDING (name),
719 /*class_p=*/true);
720 tree ns_binding = NULL_TREE;
721 if (!ob)
722 ns_binding = get_namespace_binding (current_namespace, name);
723
724 if (ob && ob->scope == current_binding_level->level_chain)
725 /* We have something like:
726
727 int i;
728 for (int i; ;);
729
730 and we are leaving the `for' scope. There's no reason to
731 keep the binding of the inner `i' in this case. */
732 ;
733 else if ((ob && (TREE_CODE (ob->value) == TYPE_DECL))
734 || (ns_binding && TREE_CODE (ns_binding) == TYPE_DECL))
735 /* Here, we have something like:
736
737 typedef int I;
738
739 void f () {
740 for (int I; ;);
741 }
742
743 We must pop the for-scope binding so we know what's a
744 type and what isn't. */
745 ;
746 else
747 {
748 /* Mark this VAR_DECL as dead so that we can tell we left it
749 there only for backward compatibility. */
750 DECL_DEAD_FOR_LOCAL (link) = 1;
751
752 /* Keep track of what should have happened when we
753 popped the binding. */
754 if (ob && ob->value)
755 {
756 SET_DECL_SHADOWED_FOR_VAR (link, ob->value);
757 DECL_HAS_SHADOWED_FOR_VAR_P (link) = 1;
758 }
759
760 /* Add it to the list of dead variables in the next
761 outermost binding to that we can remove these when we
762 leave that binding. */
763 vec_safe_push (
764 current_binding_level->level_chain->dead_vars_from_for,
765 link);
766
767 /* Although we don't pop the cxx_binding, we do clear
768 its SCOPE since the scope is going away now. */
769 IDENTIFIER_BINDING (name)->scope
770 = current_binding_level->level_chain;
771
772 /* Don't remove the binding. */
773 name = NULL_TREE;
774 }
775 }
776 /* Remove the binding. */
777 if (TREE_CODE (decl) == LABEL_DECL)
778 pop_local_label (name, decl);
779 else
780 pop_local_binding (name, decl);
781 }
782
783 /* Remove declarations for any `for' variables from inner scopes
784 that we kept around. */
785 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->dead_vars_from_for,
786 ix, decl)
787 pop_local_binding (DECL_NAME (decl), decl);
788
789 /* Restore the IDENTIFIER_TYPE_VALUEs. */
790 for (link = current_binding_level->type_shadowed;
791 link; link = TREE_CHAIN (link))
792 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
793
794 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
795 list if a `using' declaration put them there. The debugging
796 back ends won't understand OVERLOAD, so we remove them here.
797 Because the BLOCK_VARS are (temporarily) shared with
798 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
799 popped all the bindings. Also remove undeduced 'auto' decls,
800 which LTO doesn't understand, and can't have been used by anything. */
801 if (block)
802 {
803 tree* d;
804
805 for (d = &BLOCK_VARS (block); *d; )
806 {
807 if (TREE_CODE (*d) == TREE_LIST
808 || (!processing_template_decl
809 && undeduced_auto_decl (*d)))
810 *d = TREE_CHAIN (*d);
811 else
812 d = &DECL_CHAIN (*d);
813 }
814 }
815
816 /* If the level being exited is the top level of a function,
817 check over all the labels. */
818 if (functionbody)
819 {
820 if (block)
821 {
822 /* Since this is the top level block of a function, the vars are
823 the function's parameters. Don't leave them in the BLOCK
824 because they are found in the FUNCTION_DECL instead. */
825 BLOCK_VARS (block) = 0;
826 pop_labels (block);
827 }
828 else
829 pop_labels (subblocks);
830 }
831
832 kind = current_binding_level->kind;
833 if (kind == sk_cleanup)
834 {
835 tree stmt;
836
837 /* If this is a temporary binding created for a cleanup, then we'll
838 have pushed a statement list level. Pop that, create a new
839 BIND_EXPR for the block, and insert it into the stream. */
840 stmt = pop_stmt_list (current_binding_level->statement_list);
841 stmt = c_build_bind_expr (input_location, block, stmt);
842 add_stmt (stmt);
843 }
844
845 leave_scope ();
846 if (functionbody)
847 {
848 /* The current function is being defined, so its DECL_INITIAL
849 should be error_mark_node. */
850 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
851 DECL_INITIAL (current_function_decl) = block ? block : subblocks;
852 if (subblocks)
853 {
854 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
855 {
856 if (BLOCK_SUBBLOCKS (subblocks))
857 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks)) = 1;
858 }
859 else
860 BLOCK_OUTER_CURLY_BRACE_P (subblocks) = 1;
861 }
862 }
863 else if (block)
864 current_binding_level->blocks
865 = block_chainon (current_binding_level->blocks, block);
866
867 /* If we did not make a block for the level just exited,
868 any blocks made for inner levels
869 (since they cannot be recorded as subblocks in that level)
870 must be carried forward so they will later become subblocks
871 of something else. */
872 else if (subblocks)
873 current_binding_level->blocks
874 = block_chainon (current_binding_level->blocks, subblocks);
875
876 /* Each and every BLOCK node created here in `poplevel' is important
877 (e.g. for proper debugging information) so if we created one
878 earlier, mark it as "used". */
879 if (block)
880 TREE_USED (block) = 1;
881
882 /* All temporary bindings created for cleanups are popped silently. */
883 if (kind == sk_cleanup)
884 goto restart;
885
886 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
887 return block;
888 }
889
890 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
891 /* Diagnose odr-used extern inline variables without definitions
892 in the current TU. */
893
894 int
895 wrapup_namespace_globals ()
896 {
897 if (vec<tree, va_gc> *statics = static_decls)
898 {
899 tree decl;
900 unsigned int i;
901 FOR_EACH_VEC_ELT (*statics, i, decl)
902 {
903 if (warn_unused_function
904 && TREE_CODE (decl) == FUNCTION_DECL
905 && DECL_INITIAL (decl) == 0
906 && DECL_EXTERNAL (decl)
907 && !TREE_PUBLIC (decl)
908 && !DECL_ARTIFICIAL (decl)
909 && !DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
910 && !TREE_NO_WARNING (decl))
911 warning_at (DECL_SOURCE_LOCATION (decl),
912 OPT_Wunused_function,
913 "%qF declared %<static%> but never defined", decl);
914
915 if (VAR_P (decl)
916 && DECL_EXTERNAL (decl)
917 && DECL_INLINE_VAR_P (decl)
918 && DECL_ODR_USED (decl))
919 error_at (DECL_SOURCE_LOCATION (decl),
920 "odr-used inline variable %qD is not defined", decl);
921 }
922
923 /* Clear out the list, so we don't rescan next time. */
924 static_decls = NULL;
925
926 /* Write out any globals that need to be output. */
927 return wrapup_global_declarations (statics->address (),
928 statics->length ());
929 }
930 return 0;
931 }
932 \f
933 /* In C++, you don't have to write `struct S' to refer to `S'; you
934 can just use `S'. We accomplish this by creating a TYPE_DECL as
935 if the user had written `typedef struct S S'. Create and return
936 the TYPE_DECL for TYPE. */
937
938 tree
939 create_implicit_typedef (tree name, tree type)
940 {
941 tree decl;
942
943 decl = build_decl (input_location, TYPE_DECL, name, type);
944 DECL_ARTIFICIAL (decl) = 1;
945 /* There are other implicit type declarations, like the one *within*
946 a class that allows you to write `S::S'. We must distinguish
947 amongst these. */
948 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
949 TYPE_NAME (type) = decl;
950 TYPE_STUB_DECL (type) = decl;
951
952 return decl;
953 }
954
955 /* Remember a local name for name-mangling purposes. */
956
957 static void
958 push_local_name (tree decl)
959 {
960 size_t i, nelts;
961 tree t, name;
962
963 timevar_start (TV_NAME_LOOKUP);
964
965 name = DECL_NAME (decl);
966
967 nelts = vec_safe_length (local_names);
968 for (i = 0; i < nelts; i++)
969 {
970 t = (*local_names)[i];
971 if (DECL_NAME (t) == name)
972 {
973 retrofit_lang_decl (decl);
974 DECL_LANG_SPECIFIC (decl)->u.base.u2sel = 1;
975 if (DECL_DISCRIMINATOR_SET_P (t))
976 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
977 else
978 DECL_DISCRIMINATOR (decl) = 1;
979
980 (*local_names)[i] = decl;
981 timevar_stop (TV_NAME_LOOKUP);
982 return;
983 }
984 }
985
986 vec_safe_push (local_names, decl);
987 timevar_stop (TV_NAME_LOOKUP);
988 }
989 \f
990 /* Subroutine of duplicate_decls: return truthvalue of whether
991 or not types of these decls match.
992
993 For C++, we must compare the parameter list so that `int' can match
994 `int&' in a parameter position, but `int&' is not confused with
995 `const int&'. */
996
997 int
998 decls_match (tree newdecl, tree olddecl)
999 {
1000 int types_match;
1001
1002 if (newdecl == olddecl)
1003 return 1;
1004
1005 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
1006 /* If the two DECLs are not even the same kind of thing, we're not
1007 interested in their types. */
1008 return 0;
1009
1010 gcc_assert (DECL_P (newdecl));
1011
1012 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1013 {
1014 tree f1 = TREE_TYPE (newdecl);
1015 tree f2 = TREE_TYPE (olddecl);
1016 tree p1 = TYPE_ARG_TYPES (f1);
1017 tree p2 = TYPE_ARG_TYPES (f2);
1018 tree r2;
1019
1020 /* Specializations of different templates are different functions
1021 even if they have the same type. */
1022 tree t1 = (DECL_USE_TEMPLATE (newdecl)
1023 ? DECL_TI_TEMPLATE (newdecl)
1024 : NULL_TREE);
1025 tree t2 = (DECL_USE_TEMPLATE (olddecl)
1026 ? DECL_TI_TEMPLATE (olddecl)
1027 : NULL_TREE);
1028 if (t1 != t2)
1029 return 0;
1030
1031 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1032 && ! (DECL_EXTERN_C_P (newdecl)
1033 && DECL_EXTERN_C_P (olddecl)))
1034 return 0;
1035
1036 /* A new declaration doesn't match a built-in one unless it
1037 is also extern "C". */
1038 if (DECL_IS_BUILTIN (olddecl)
1039 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
1040 return 0;
1041
1042 if (TREE_CODE (f1) != TREE_CODE (f2))
1043 return 0;
1044
1045 /* A declaration with deduced return type should use its pre-deduction
1046 type for declaration matching. */
1047 r2 = fndecl_declared_return_type (olddecl);
1048
1049 if (same_type_p (TREE_TYPE (f1), r2))
1050 {
1051 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
1052 && (DECL_BUILT_IN (olddecl)
1053 #ifndef NO_IMPLICIT_EXTERN_C
1054 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
1055 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
1056 #endif
1057 ))
1058 {
1059 types_match = self_promoting_args_p (p1);
1060 if (p1 == void_list_node)
1061 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1062 }
1063 #ifndef NO_IMPLICIT_EXTERN_C
1064 else if (!prototype_p (f1)
1065 && (DECL_EXTERN_C_P (olddecl)
1066 && DECL_IN_SYSTEM_HEADER (olddecl)
1067 && !DECL_CLASS_SCOPE_P (olddecl))
1068 && (DECL_EXTERN_C_P (newdecl)
1069 && DECL_IN_SYSTEM_HEADER (newdecl)
1070 && !DECL_CLASS_SCOPE_P (newdecl)))
1071 {
1072 types_match = self_promoting_args_p (p2);
1073 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1074 }
1075 #endif
1076 else
1077 types_match =
1078 compparms (p1, p2)
1079 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
1080 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
1081 || comp_type_attributes (TREE_TYPE (newdecl),
1082 TREE_TYPE (olddecl)) != 0);
1083 }
1084 else
1085 types_match = 0;
1086
1087 /* The decls dont match if they correspond to two different versions
1088 of the same function. Disallow extern "C" functions to be
1089 versions for now. */
1090 if (types_match
1091 && !DECL_EXTERN_C_P (newdecl)
1092 && !DECL_EXTERN_C_P (olddecl)
1093 && maybe_version_functions (newdecl, olddecl))
1094 return 0;
1095 }
1096 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1097 {
1098 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1099 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1100
1101 if (TREE_CODE (newres) != TREE_CODE (oldres))
1102 return 0;
1103
1104 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1105 DECL_TEMPLATE_PARMS (olddecl)))
1106 return 0;
1107
1108 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1109 types_match = (same_type_p (TREE_TYPE (oldres), TREE_TYPE (newres))
1110 && equivalently_constrained (olddecl, newdecl));
1111 else
1112 // We don't need to check equivalently_constrained for variable and
1113 // function templates because we check it on the results.
1114 types_match = decls_match (oldres, newres);
1115 }
1116 else
1117 {
1118 /* Need to check scope for variable declaration (VAR_DECL).
1119 For typedef (TYPE_DECL), scope is ignored. */
1120 if (VAR_P (newdecl)
1121 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1122 /* [dcl.link]
1123 Two declarations for an object with C language linkage
1124 with the same name (ignoring the namespace that qualify
1125 it) that appear in different namespace scopes refer to
1126 the same object. */
1127 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1128 return 0;
1129
1130 if (TREE_TYPE (newdecl) == error_mark_node)
1131 types_match = TREE_TYPE (olddecl) == error_mark_node;
1132 else if (TREE_TYPE (olddecl) == NULL_TREE)
1133 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1134 else if (TREE_TYPE (newdecl) == NULL_TREE)
1135 types_match = 0;
1136 else
1137 types_match = comptypes (TREE_TYPE (newdecl),
1138 TREE_TYPE (olddecl),
1139 COMPARE_REDECLARATION);
1140 }
1141
1142 // Normal functions can be constrained, as can variable partial
1143 // specializations.
1144 if (types_match && VAR_OR_FUNCTION_DECL_P (newdecl))
1145 types_match = equivalently_constrained (newdecl, olddecl);
1146
1147 return types_match;
1148 }
1149
1150 /* NEWDECL and OLDDECL have identical signatures. If they are
1151 different versions adjust them and return true. */
1152
1153 bool
1154 maybe_version_functions (tree newdecl, tree olddecl)
1155 {
1156 if (!targetm.target_option.function_versions (newdecl, olddecl))
1157 return false;
1158
1159 bool record = false;
1160
1161 if (!DECL_FUNCTION_VERSIONED (olddecl))
1162 {
1163 record = true;
1164 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1165 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1166 mangle_decl (olddecl);
1167 }
1168
1169 if (!DECL_FUNCTION_VERSIONED (newdecl))
1170 {
1171 record = true;
1172 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1173 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1174 mangle_decl (newdecl);
1175 }
1176
1177 /* Only record if at least one was not already versions. */
1178 if (record)
1179 cgraph_node::record_function_versions (olddecl, newdecl);
1180
1181 return true;
1182 }
1183
1184 /* If NEWDECL is `static' and an `extern' was seen previously,
1185 warn about it. OLDDECL is the previous declaration.
1186
1187 Note that this does not apply to the C++ case of declaring
1188 a variable `extern const' and then later `const'.
1189
1190 Don't complain about built-in functions, since they are beyond
1191 the user's control. */
1192
1193 void
1194 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1195 {
1196 if (TREE_CODE (newdecl) == TYPE_DECL
1197 || TREE_CODE (newdecl) == TEMPLATE_DECL
1198 || TREE_CODE (newdecl) == CONST_DECL
1199 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1200 return;
1201
1202 /* Don't get confused by static member functions; that's a different
1203 use of `static'. */
1204 if (TREE_CODE (newdecl) == FUNCTION_DECL
1205 && DECL_STATIC_FUNCTION_P (newdecl))
1206 return;
1207
1208 /* If the old declaration was `static', or the new one isn't, then
1209 everything is OK. */
1210 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1211 return;
1212
1213 /* It's OK to declare a builtin function as `static'. */
1214 if (TREE_CODE (olddecl) == FUNCTION_DECL
1215 && DECL_ARTIFICIAL (olddecl))
1216 return;
1217
1218 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1219 "%qD was declared %<extern%> and later %<static%>", newdecl))
1220 inform (DECL_SOURCE_LOCATION (olddecl),
1221 "previous declaration of %qD", olddecl);
1222 }
1223
1224 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1225 function templates. If their exception specifications do not
1226 match, issue a diagnostic. */
1227
1228 static void
1229 check_redeclaration_exception_specification (tree new_decl,
1230 tree old_decl)
1231 {
1232 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1233 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1234
1235 /* Two default specs are equivalent, don't force evaluation. */
1236 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1237 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1238 return;
1239
1240 maybe_instantiate_noexcept (new_decl);
1241 maybe_instantiate_noexcept (old_decl);
1242 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1243 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1244
1245 /* [except.spec]
1246
1247 If any declaration of a function has an exception-specification,
1248 all declarations, including the definition and an explicit
1249 specialization, of that function shall have an
1250 exception-specification with the same set of type-ids. */
1251 if (! DECL_IS_BUILTIN (old_decl)
1252 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1253 {
1254 const char *const msg
1255 = G_("declaration of %qF has a different exception specifier");
1256 bool complained = true;
1257 location_t new_loc = DECL_SOURCE_LOCATION (new_decl);
1258 if (DECL_IN_SYSTEM_HEADER (old_decl))
1259 complained = pedwarn (new_loc, OPT_Wsystem_headers, msg, new_decl);
1260 else if (!flag_exceptions)
1261 /* We used to silently permit mismatched eh specs with
1262 -fno-exceptions, so make them a pedwarn now. */
1263 complained = pedwarn (new_loc, OPT_Wpedantic, msg, new_decl);
1264 else
1265 error_at (new_loc, msg, new_decl);
1266 if (complained)
1267 inform (DECL_SOURCE_LOCATION (old_decl),
1268 "from previous declaration %qF", old_decl);
1269 }
1270 }
1271
1272 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1273 Otherwise issue diagnostics. */
1274
1275 static bool
1276 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1277 {
1278 old_decl = STRIP_TEMPLATE (old_decl);
1279 new_decl = STRIP_TEMPLATE (new_decl);
1280 if (!VAR_OR_FUNCTION_DECL_P (old_decl)
1281 || !VAR_OR_FUNCTION_DECL_P (new_decl))
1282 return true;
1283 if (DECL_DECLARED_CONSTEXPR_P (old_decl)
1284 == DECL_DECLARED_CONSTEXPR_P (new_decl))
1285 return true;
1286 if (TREE_CODE (old_decl) == FUNCTION_DECL)
1287 {
1288 if (DECL_BUILT_IN (old_decl))
1289 {
1290 /* Hide a built-in declaration. */
1291 DECL_DECLARED_CONSTEXPR_P (old_decl)
1292 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1293 return true;
1294 }
1295 /* 7.1.5 [dcl.constexpr]
1296 Note: An explicit specialization can differ from the template
1297 declaration with respect to the constexpr specifier. */
1298 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl)
1299 && DECL_TEMPLATE_SPECIALIZATION (new_decl))
1300 return true;
1301
1302 error_at (DECL_SOURCE_LOCATION (new_decl),
1303 "redeclaration %qD differs in %<constexpr%> "
1304 "from previous declaration", new_decl);
1305 inform (DECL_SOURCE_LOCATION (old_decl),
1306 "previous declaration %qD", old_decl);
1307 return false;
1308 }
1309 return true;
1310 }
1311
1312 // If OLDDECL and NEWDECL are concept declarations with the same type
1313 // (i.e., and template parameters), but different requirements,
1314 // emit diagnostics and return true. Otherwise, return false.
1315 static inline bool
1316 check_concept_refinement (tree olddecl, tree newdecl)
1317 {
1318 if (!DECL_DECLARED_CONCEPT_P (olddecl) || !DECL_DECLARED_CONCEPT_P (newdecl))
1319 return false;
1320
1321 tree d1 = DECL_TEMPLATE_RESULT (olddecl);
1322 tree d2 = DECL_TEMPLATE_RESULT (newdecl);
1323 if (TREE_CODE (d1) != TREE_CODE (d2))
1324 return false;
1325
1326 tree t1 = TREE_TYPE (d1);
1327 tree t2 = TREE_TYPE (d2);
1328 if (TREE_CODE (d1) == FUNCTION_DECL)
1329 {
1330 if (compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2))
1331 && comp_template_parms (DECL_TEMPLATE_PARMS (olddecl),
1332 DECL_TEMPLATE_PARMS (newdecl))
1333 && !equivalently_constrained (olddecl, newdecl))
1334 {
1335 error ("cannot specialize concept %q#D", olddecl);
1336 return true;
1337 }
1338 }
1339 return false;
1340 }
1341
1342 /* DECL is a redeclaration of a function or function template. If
1343 it does have default arguments issue a diagnostic. Note: this
1344 function is used to enforce the requirements in C++11 8.3.6 about
1345 no default arguments in redeclarations. */
1346
1347 static void
1348 check_redeclaration_no_default_args (tree decl)
1349 {
1350 gcc_assert (DECL_DECLARES_FUNCTION_P (decl));
1351
1352 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
1353 t && t != void_list_node; t = TREE_CHAIN (t))
1354 if (TREE_PURPOSE (t))
1355 {
1356 permerror (DECL_SOURCE_LOCATION (decl),
1357 "redeclaration of %q#D may not have default "
1358 "arguments", decl);
1359 return;
1360 }
1361 }
1362
1363 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1364 && lookup_attribute ("gnu_inline", \
1365 DECL_ATTRIBUTES (fn)))
1366
1367 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1368 If the redeclaration is invalid, a diagnostic is issued, and the
1369 error_mark_node is returned. Otherwise, OLDDECL is returned.
1370
1371 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1372 returned.
1373
1374 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1375
1376 tree
1377 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1378 {
1379 unsigned olddecl_uid = DECL_UID (olddecl);
1380 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1381 int new_defines_function = 0;
1382 tree new_template_info;
1383
1384 if (newdecl == olddecl)
1385 return olddecl;
1386
1387 types_match = decls_match (newdecl, olddecl);
1388
1389 /* If either the type of the new decl or the type of the old decl is an
1390 error_mark_node, then that implies that we have already issued an
1391 error (earlier) for some bogus type specification, and in that case,
1392 it is rather pointless to harass the user with yet more error message
1393 about the same declaration, so just pretend the types match here. */
1394 if (TREE_TYPE (newdecl) == error_mark_node
1395 || TREE_TYPE (olddecl) == error_mark_node)
1396 return error_mark_node;
1397
1398 if (UDLIT_OPER_P (DECL_NAME (newdecl))
1399 && UDLIT_OPER_P (DECL_NAME (olddecl)))
1400 {
1401 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1402 && TREE_CODE (olddecl) != TEMPLATE_DECL
1403 && check_raw_literal_operator (olddecl))
1404 error ("literal operator template %q+D conflicts with"
1405 " raw literal operator %qD", newdecl, olddecl);
1406 else if (TREE_CODE (newdecl) != TEMPLATE_DECL
1407 && TREE_CODE (olddecl) == TEMPLATE_DECL
1408 && check_raw_literal_operator (newdecl))
1409 error ("raw literal operator %q+D conflicts with"
1410 " literal operator template %qD", newdecl, olddecl);
1411 }
1412
1413 if (DECL_P (olddecl)
1414 && TREE_CODE (newdecl) == FUNCTION_DECL
1415 && TREE_CODE (olddecl) == FUNCTION_DECL
1416 && diagnose_mismatched_attributes (olddecl, newdecl))
1417 {
1418 if (DECL_INITIAL (olddecl))
1419 inform (DECL_SOURCE_LOCATION (olddecl),
1420 "previous definition of %qD was here", olddecl);
1421 else
1422 inform (DECL_SOURCE_LOCATION (olddecl),
1423 "previous declaration of %qD was here", olddecl);
1424 }
1425
1426 /* Check for redeclaration and other discrepancies. */
1427 if (TREE_CODE (olddecl) == FUNCTION_DECL
1428 && DECL_ARTIFICIAL (olddecl))
1429 {
1430 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1431 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1432 {
1433 /* Avoid warnings redeclaring built-ins which have not been
1434 explicitly declared. */
1435 if (DECL_ANTICIPATED (olddecl))
1436 {
1437 if (TREE_PUBLIC (newdecl)
1438 && CP_DECL_CONTEXT (newdecl) == global_namespace)
1439 warning_at (DECL_SOURCE_LOCATION (newdecl),
1440 OPT_Wbuiltin_declaration_mismatch,
1441 "built-in function %qD declared as non-function",
1442 newdecl);
1443 return NULL_TREE;
1444 }
1445
1446 /* If you declare a built-in or predefined function name as static,
1447 the old definition is overridden, but optionally warn this was a
1448 bad choice of name. */
1449 if (! TREE_PUBLIC (newdecl))
1450 {
1451 warning (OPT_Wshadow,
1452 DECL_BUILT_IN (olddecl)
1453 ? G_("shadowing built-in function %q#D")
1454 : G_("shadowing library function %q#D"), olddecl);
1455 /* Discard the old built-in function. */
1456 return NULL_TREE;
1457 }
1458 /* If the built-in is not ansi, then programs can override
1459 it even globally without an error. */
1460 else if (! DECL_BUILT_IN (olddecl))
1461 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1462 "library function %q#D redeclared as non-function %q#D",
1463 olddecl, newdecl);
1464 else
1465 error ("declaration of %q+#D conflicts with built-in "
1466 "declaration %q#D", newdecl, olddecl);
1467 return NULL_TREE;
1468 }
1469 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1470 {
1471 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1472 error_at (DECL_SOURCE_LOCATION (newdecl),
1473 "redeclaration of %<pragma omp declare reduction%>");
1474 inform (DECL_SOURCE_LOCATION (olddecl),
1475 "previous %<pragma omp declare reduction%> declaration");
1476 return error_mark_node;
1477 }
1478 else if (!types_match)
1479 {
1480 /* Avoid warnings redeclaring built-ins which have not been
1481 explicitly declared. */
1482 if (DECL_ANTICIPATED (olddecl))
1483 {
1484 tree t1, t2;
1485
1486 /* A new declaration doesn't match a built-in one unless it
1487 is also extern "C". */
1488 gcc_assert (DECL_IS_BUILTIN (olddecl));
1489 gcc_assert (DECL_EXTERN_C_P (olddecl));
1490 if (!DECL_EXTERN_C_P (newdecl))
1491 return NULL_TREE;
1492
1493 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1494 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1495 t1 || t2;
1496 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1497 {
1498 if (!t1 || !t2)
1499 break;
1500 /* FILE, tm types are not known at the time
1501 we create the builtins. */
1502 for (unsigned i = 0;
1503 i < sizeof (builtin_structptr_types)
1504 / sizeof (builtin_structptr_type);
1505 ++i)
1506 if (TREE_VALUE (t2) == builtin_structptr_types[i].node)
1507 {
1508 tree t = TREE_VALUE (t1);
1509
1510 if (TYPE_PTR_P (t)
1511 && TYPE_IDENTIFIER (TREE_TYPE (t))
1512 == get_identifier (builtin_structptr_types[i].str)
1513 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1514 {
1515 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1516
1517 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1518 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1519 types_match = decls_match (newdecl, olddecl);
1520 if (types_match)
1521 return duplicate_decls (newdecl, olddecl,
1522 newdecl_is_friend);
1523 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1524 }
1525 goto next_arg;
1526 }
1527
1528 if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1529 break;
1530 next_arg:;
1531 }
1532
1533 warning_at (DECL_SOURCE_LOCATION (newdecl),
1534 OPT_Wbuiltin_declaration_mismatch,
1535 "declaration of %q#D conflicts with built-in "
1536 "declaration %q#D", newdecl, olddecl);
1537 }
1538 else if ((DECL_EXTERN_C_P (newdecl)
1539 && DECL_EXTERN_C_P (olddecl))
1540 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1541 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1542 {
1543 /* A near match; override the builtin. */
1544
1545 if (TREE_PUBLIC (newdecl))
1546 warning_at (DECL_SOURCE_LOCATION (newdecl),
1547 OPT_Wbuiltin_declaration_mismatch,
1548 "new declaration %q#D ambiguates built-in "
1549 "declaration %q#D", newdecl, olddecl);
1550 else
1551 warning (OPT_Wshadow,
1552 DECL_BUILT_IN (olddecl)
1553 ? G_("shadowing built-in function %q#D")
1554 : G_("shadowing library function %q#D"), olddecl);
1555 }
1556 else
1557 /* Discard the old built-in function. */
1558 return NULL_TREE;
1559
1560 /* Replace the old RTL to avoid problems with inlining. */
1561 COPY_DECL_RTL (newdecl, olddecl);
1562 }
1563 /* Even if the types match, prefer the new declarations type for
1564 built-ins which have not been explicitly declared, for
1565 exception lists, etc... */
1566 else if (DECL_IS_BUILTIN (olddecl))
1567 {
1568 tree type = TREE_TYPE (newdecl);
1569 tree attribs = (*targetm.merge_type_attributes)
1570 (TREE_TYPE (olddecl), type);
1571
1572 type = cp_build_type_attribute_variant (type, attribs);
1573 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1574 }
1575
1576 /* If a function is explicitly declared "throw ()", propagate that to
1577 the corresponding builtin. */
1578 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1579 && DECL_ANTICIPATED (olddecl)
1580 && TREE_NOTHROW (newdecl)
1581 && !TREE_NOTHROW (olddecl))
1582 {
1583 enum built_in_function fncode = DECL_FUNCTION_CODE (olddecl);
1584 tree tmpdecl = builtin_decl_explicit (fncode);
1585 if (tmpdecl && tmpdecl != olddecl && types_match)
1586 TREE_NOTHROW (tmpdecl) = 1;
1587 }
1588
1589 /* Whether or not the builtin can throw exceptions has no
1590 bearing on this declarator. */
1591 TREE_NOTHROW (olddecl) = 0;
1592
1593 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1594 {
1595 /* If a builtin function is redeclared as `static', merge
1596 the declarations, but make the original one static. */
1597 DECL_THIS_STATIC (olddecl) = 1;
1598 TREE_PUBLIC (olddecl) = 0;
1599
1600 /* Make the old declaration consistent with the new one so
1601 that all remnants of the builtin-ness of this function
1602 will be banished. */
1603 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1604 COPY_DECL_RTL (newdecl, olddecl);
1605 }
1606 }
1607 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1608 {
1609 /* C++ Standard, 3.3, clause 4:
1610 "[Note: a namespace name or a class template name must be unique
1611 in its declarative region (7.3.2, clause 14). ]" */
1612 if (TREE_CODE (olddecl) != NAMESPACE_DECL
1613 && TREE_CODE (newdecl) != NAMESPACE_DECL
1614 && (TREE_CODE (olddecl) != TEMPLATE_DECL
1615 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) != TYPE_DECL)
1616 && (TREE_CODE (newdecl) != TEMPLATE_DECL
1617 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != TYPE_DECL))
1618 {
1619 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1620 && TREE_CODE (newdecl) != TYPE_DECL)
1621 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1622 && TREE_CODE (olddecl) != TYPE_DECL))
1623 {
1624 /* We do nothing special here, because C++ does such nasty
1625 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1626 get shadowed, and know that if we need to find a TYPE_DECL
1627 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1628 slot of the identifier. */
1629 return NULL_TREE;
1630 }
1631
1632 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1633 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1634 || (TREE_CODE (olddecl) == FUNCTION_DECL
1635 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1636 return NULL_TREE;
1637 }
1638
1639 error ("%q#D redeclared as different kind of symbol", newdecl);
1640 if (TREE_CODE (olddecl) == TREE_LIST)
1641 olddecl = TREE_VALUE (olddecl);
1642 inform (DECL_SOURCE_LOCATION (olddecl),
1643 "previous declaration %q#D", olddecl);
1644
1645 return error_mark_node;
1646 }
1647 else if (!types_match)
1648 {
1649 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1650 /* These are certainly not duplicate declarations; they're
1651 from different scopes. */
1652 return NULL_TREE;
1653
1654 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1655 {
1656 /* The name of a class template may not be declared to refer to
1657 any other template, class, function, object, namespace, value,
1658 or type in the same scope. */
1659 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1660 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1661 {
1662 error ("conflicting declaration of template %q+#D", newdecl);
1663 inform (DECL_SOURCE_LOCATION (olddecl),
1664 "previous declaration %q#D", olddecl);
1665 return error_mark_node;
1666 }
1667 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1668 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1669 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1670 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1671 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1672 DECL_TEMPLATE_PARMS (olddecl))
1673 /* Template functions can be disambiguated by
1674 return type. */
1675 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1676 TREE_TYPE (TREE_TYPE (olddecl)))
1677 // Template functions can also be disambiguated by
1678 // constraints.
1679 && equivalently_constrained (olddecl, newdecl))
1680 {
1681 error ("ambiguating new declaration %q+#D", newdecl);
1682 inform (DECL_SOURCE_LOCATION (olddecl),
1683 "old declaration %q#D", olddecl);
1684 }
1685 else if (check_concept_refinement (olddecl, newdecl))
1686 return error_mark_node;
1687 return NULL_TREE;
1688 }
1689 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1690 {
1691 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1692 {
1693 error ("conflicting declaration of C function %q+#D",
1694 newdecl);
1695 inform (DECL_SOURCE_LOCATION (olddecl),
1696 "previous declaration %q#D", olddecl);
1697 return NULL_TREE;
1698 }
1699 /* For function versions, params and types match, but they
1700 are not ambiguous. */
1701 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1702 && !DECL_FUNCTION_VERSIONED (olddecl))
1703 // The functions have the same parameter types.
1704 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1705 TYPE_ARG_TYPES (TREE_TYPE (olddecl)))
1706 // And the same constraints.
1707 && equivalently_constrained (newdecl, olddecl))
1708 {
1709 error ("ambiguating new declaration of %q+#D", newdecl);
1710 inform (DECL_SOURCE_LOCATION (olddecl),
1711 "old declaration %q#D", olddecl);
1712 return error_mark_node;
1713 }
1714 else
1715 return NULL_TREE;
1716 }
1717 else
1718 {
1719 error ("conflicting declaration %q+#D", newdecl);
1720 inform (DECL_SOURCE_LOCATION (olddecl),
1721 "previous declaration as %q#D", olddecl);
1722 return error_mark_node;
1723 }
1724 }
1725 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1726 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1727 && (!DECL_TEMPLATE_INFO (newdecl)
1728 || (DECL_TI_TEMPLATE (newdecl)
1729 != DECL_TI_TEMPLATE (olddecl))))
1730 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1731 && (!DECL_TEMPLATE_INFO (olddecl)
1732 || (DECL_TI_TEMPLATE (olddecl)
1733 != DECL_TI_TEMPLATE (newdecl))))))
1734 /* It's OK to have a template specialization and a non-template
1735 with the same type, or to have specializations of two
1736 different templates with the same type. Note that if one is a
1737 specialization, and the other is an instantiation of the same
1738 template, that we do not exit at this point. That situation
1739 can occur if we instantiate a template class, and then
1740 specialize one of its methods. This situation is valid, but
1741 the declarations must be merged in the usual way. */
1742 return NULL_TREE;
1743 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1744 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1745 && !DECL_USE_TEMPLATE (newdecl))
1746 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1747 && !DECL_USE_TEMPLATE (olddecl))))
1748 /* One of the declarations is a template instantiation, and the
1749 other is not a template at all. That's OK. */
1750 return NULL_TREE;
1751 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1752 {
1753 /* In [namespace.alias] we have:
1754
1755 In a declarative region, a namespace-alias-definition can be
1756 used to redefine a namespace-alias declared in that declarative
1757 region to refer only to the namespace to which it already
1758 refers.
1759
1760 Therefore, if we encounter a second alias directive for the same
1761 alias, we can just ignore the second directive. */
1762 if (DECL_NAMESPACE_ALIAS (newdecl)
1763 && (DECL_NAMESPACE_ALIAS (newdecl)
1764 == DECL_NAMESPACE_ALIAS (olddecl)))
1765 return olddecl;
1766
1767 /* Leave it to update_binding to merge or report error. */
1768 return NULL_TREE;
1769 }
1770 else
1771 {
1772 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1773 if (errmsg)
1774 {
1775 error_at (DECL_SOURCE_LOCATION (newdecl), errmsg, newdecl);
1776 if (DECL_NAME (olddecl) != NULL_TREE)
1777 inform (DECL_SOURCE_LOCATION (olddecl),
1778 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1779 ? G_("%q#D previously defined here")
1780 : G_("%q#D previously declared here"), olddecl);
1781 return error_mark_node;
1782 }
1783 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1784 && DECL_INITIAL (olddecl) != NULL_TREE
1785 && !prototype_p (TREE_TYPE (olddecl))
1786 && prototype_p (TREE_TYPE (newdecl)))
1787 {
1788 /* Prototype decl follows defn w/o prototype. */
1789 if (warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1790 "prototype specified for %q#D", newdecl))
1791 inform (DECL_SOURCE_LOCATION (olddecl),
1792 "previous non-prototype definition here");
1793 }
1794 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1795 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1796 {
1797 /* [dcl.link]
1798 If two declarations of the same function or object
1799 specify different linkage-specifications ..., the program
1800 is ill-formed.... Except for functions with C++ linkage,
1801 a function declaration without a linkage specification
1802 shall not precede the first linkage specification for
1803 that function. A function can be declared without a
1804 linkage specification after an explicit linkage
1805 specification has been seen; the linkage explicitly
1806 specified in the earlier declaration is not affected by
1807 such a function declaration.
1808
1809 DR 563 raises the question why the restrictions on
1810 functions should not also apply to objects. Older
1811 versions of G++ silently ignore the linkage-specification
1812 for this example:
1813
1814 namespace N {
1815 extern int i;
1816 extern "C" int i;
1817 }
1818
1819 which is clearly wrong. Therefore, we now treat objects
1820 like functions. */
1821 if (current_lang_depth () == 0)
1822 {
1823 /* There is no explicit linkage-specification, so we use
1824 the linkage from the previous declaration. */
1825 retrofit_lang_decl (newdecl);
1826 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1827 }
1828 else
1829 {
1830 error ("conflicting declaration of %q+#D with %qL linkage",
1831 newdecl, DECL_LANGUAGE (newdecl));
1832 inform (DECL_SOURCE_LOCATION (olddecl),
1833 "previous declaration with %qL linkage",
1834 DECL_LANGUAGE (olddecl));
1835 }
1836 }
1837
1838 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1839 ;
1840 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1841 {
1842 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1843 if (DECL_FUNCTION_MEMBER_P (olddecl)
1844 && (/* grokfndecl passes member function templates too
1845 as FUNCTION_DECLs. */
1846 DECL_TEMPLATE_INFO (olddecl)
1847 /* C++11 8.3.6/6.
1848 Default arguments for a member function of a class
1849 template shall be specified on the initial declaration
1850 of the member function within the class template. */
1851 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
1852 check_redeclaration_no_default_args (newdecl);
1853 else
1854 {
1855 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1856 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1857 int i = 1;
1858
1859 for (; t1 && t1 != void_list_node;
1860 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1861 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1862 {
1863 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
1864 TREE_PURPOSE (t2)))
1865 {
1866 if (permerror (input_location,
1867 "default argument given for parameter "
1868 "%d of %q#D", i, newdecl))
1869 inform (DECL_SOURCE_LOCATION (olddecl),
1870 "previous specification in %q#D here",
1871 olddecl);
1872 }
1873 else
1874 {
1875 error ("default argument given for parameter %d "
1876 "of %q#D", i, newdecl);
1877 inform (DECL_SOURCE_LOCATION (olddecl),
1878 "previous specification in %q#D here",
1879 olddecl);
1880 }
1881 }
1882 }
1883 }
1884 }
1885
1886 /* Do not merge an implicit typedef with an explicit one. In:
1887
1888 class A;
1889 ...
1890 typedef class A A __attribute__ ((foo));
1891
1892 the attribute should apply only to the typedef. */
1893 if (TREE_CODE (olddecl) == TYPE_DECL
1894 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1895 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1896 return NULL_TREE;
1897
1898 /* If new decl is `static' and an `extern' was seen previously,
1899 warn about it. */
1900 warn_extern_redeclared_static (newdecl, olddecl);
1901
1902 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1903 return error_mark_node;
1904
1905 /* We have committed to returning 1 at this point. */
1906 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1907 {
1908 /* Now that functions must hold information normally held
1909 by field decls, there is extra work to do so that
1910 declaration information does not get destroyed during
1911 definition. */
1912 if (DECL_VINDEX (olddecl))
1913 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1914 if (DECL_CONTEXT (olddecl))
1915 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1916 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1917 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1918 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1919 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1920 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1921 DECL_FINAL_P (newdecl) |= DECL_FINAL_P (olddecl);
1922 DECL_OVERRIDE_P (newdecl) |= DECL_OVERRIDE_P (olddecl);
1923 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1924 if (DECL_OVERLOADED_OPERATOR_P (olddecl) != ERROR_MARK)
1925 SET_OVERLOADED_OPERATOR_CODE
1926 (newdecl, DECL_OVERLOADED_OPERATOR_P (olddecl));
1927 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1928
1929 /* Optionally warn about more than one declaration for the same
1930 name, but don't warn about a function declaration followed by a
1931 definition. */
1932 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1933 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1934 /* Don't warn about extern decl followed by definition. */
1935 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1936 /* Don't warn about friends, let add_friend take care of it. */
1937 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1938 /* Don't warn about declaration followed by specialization. */
1939 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1940 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1941 {
1942 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1943 OPT_Wredundant_decls,
1944 "redundant redeclaration of %qD in same scope",
1945 newdecl))
1946 inform (DECL_SOURCE_LOCATION (olddecl),
1947 "previous declaration of %qD", olddecl);
1948 }
1949
1950 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1951 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1952 {
1953 if (DECL_DELETED_FN (newdecl))
1954 {
1955 error ("deleted definition of %q+D", newdecl);
1956 inform (DECL_SOURCE_LOCATION (olddecl),
1957 "previous declaration of %qD", olddecl);
1958 }
1959 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
1960 }
1961 }
1962
1963 /* Deal with C++: must preserve virtual function table size. */
1964 if (TREE_CODE (olddecl) == TYPE_DECL)
1965 {
1966 tree newtype = TREE_TYPE (newdecl);
1967 tree oldtype = TREE_TYPE (olddecl);
1968
1969 if (newtype != error_mark_node && oldtype != error_mark_node
1970 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1971 CLASSTYPE_FRIEND_CLASSES (newtype)
1972 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1973
1974 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1975 }
1976
1977 /* Copy all the DECL_... slots specified in the new decl
1978 except for any that we copy here from the old type. */
1979 DECL_ATTRIBUTES (newdecl)
1980 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1981
1982 if (DECL_DECLARES_FUNCTION_P (olddecl) && DECL_DECLARES_FUNCTION_P (newdecl))
1983 {
1984 olddecl_friend = DECL_FRIEND_P (olddecl);
1985 hidden_friend = (DECL_ANTICIPATED (olddecl)
1986 && DECL_HIDDEN_FRIEND_P (olddecl)
1987 && newdecl_is_friend);
1988 if (!hidden_friend)
1989 {
1990 DECL_ANTICIPATED (olddecl) = 0;
1991 DECL_HIDDEN_FRIEND_P (olddecl) = 0;
1992 }
1993 }
1994
1995 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1996 {
1997 tree old_result;
1998 tree new_result;
1999 old_result = DECL_TEMPLATE_RESULT (olddecl);
2000 new_result = DECL_TEMPLATE_RESULT (newdecl);
2001 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
2002 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
2003 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
2004 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
2005
2006 DECL_ATTRIBUTES (old_result)
2007 = (*targetm.merge_decl_attributes) (old_result, new_result);
2008
2009 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2010 {
2011 /* Per C++11 8.3.6/4, default arguments cannot be added in later
2012 declarations of a function template. */
2013 if (DECL_SOURCE_LOCATION (newdecl)
2014 != DECL_SOURCE_LOCATION (olddecl))
2015 check_redeclaration_no_default_args (newdecl);
2016
2017 check_default_args (newdecl);
2018
2019 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
2020 && DECL_INITIAL (new_result))
2021 {
2022 if (DECL_INITIAL (old_result))
2023 DECL_UNINLINABLE (old_result) = 1;
2024 else
2025 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
2026 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
2027 DECL_NOT_REALLY_EXTERN (old_result)
2028 = DECL_NOT_REALLY_EXTERN (new_result);
2029 DECL_INTERFACE_KNOWN (old_result)
2030 = DECL_INTERFACE_KNOWN (new_result);
2031 DECL_DECLARED_INLINE_P (old_result)
2032 = DECL_DECLARED_INLINE_P (new_result);
2033 DECL_DISREGARD_INLINE_LIMITS (old_result)
2034 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2035
2036 }
2037 else
2038 {
2039 DECL_DECLARED_INLINE_P (old_result)
2040 |= DECL_DECLARED_INLINE_P (new_result);
2041 DECL_DISREGARD_INLINE_LIMITS (old_result)
2042 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2043 check_redeclaration_exception_specification (newdecl, olddecl);
2044 }
2045 }
2046
2047 /* If the new declaration is a definition, update the file and
2048 line information on the declaration, and also make
2049 the old declaration the same definition. */
2050 if (DECL_INITIAL (new_result) != NULL_TREE)
2051 {
2052 DECL_SOURCE_LOCATION (olddecl)
2053 = DECL_SOURCE_LOCATION (old_result)
2054 = DECL_SOURCE_LOCATION (newdecl);
2055 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
2056 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2057 {
2058 tree parm;
2059 DECL_ARGUMENTS (old_result)
2060 = DECL_ARGUMENTS (new_result);
2061 for (parm = DECL_ARGUMENTS (old_result); parm;
2062 parm = DECL_CHAIN (parm))
2063 DECL_CONTEXT (parm) = old_result;
2064 }
2065 }
2066
2067 return olddecl;
2068 }
2069
2070 if (types_match)
2071 {
2072 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2073 check_redeclaration_exception_specification (newdecl, olddecl);
2074
2075 /* Automatically handles default parameters. */
2076 tree oldtype = TREE_TYPE (olddecl);
2077 tree newtype;
2078
2079 /* For typedefs use the old type, as the new type's DECL_NAME points
2080 at newdecl, which will be ggc_freed. */
2081 if (TREE_CODE (newdecl) == TYPE_DECL)
2082 {
2083 /* But NEWTYPE might have an attribute, honor that. */
2084 tree tem = TREE_TYPE (newdecl);
2085 newtype = oldtype;
2086
2087 if (TYPE_USER_ALIGN (tem))
2088 {
2089 if (TYPE_ALIGN (tem) > TYPE_ALIGN (newtype))
2090 SET_TYPE_ALIGN (newtype, TYPE_ALIGN (tem));
2091 TYPE_USER_ALIGN (newtype) = true;
2092 }
2093
2094 /* And remove the new type from the variants list. */
2095 if (TYPE_NAME (TREE_TYPE (newdecl)) == newdecl)
2096 {
2097 tree remove = TREE_TYPE (newdecl);
2098 for (tree t = TYPE_MAIN_VARIANT (remove); ;
2099 t = TYPE_NEXT_VARIANT (t))
2100 if (TYPE_NEXT_VARIANT (t) == remove)
2101 {
2102 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (remove);
2103 break;
2104 }
2105 }
2106 }
2107 else
2108 /* Merge the data types specified in the two decls. */
2109 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
2110
2111 if (VAR_P (newdecl))
2112 {
2113 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
2114 /* For already initialized vars, TREE_READONLY could have been
2115 cleared in cp_finish_decl, because the var needs runtime
2116 initialization or destruction. Make sure not to set
2117 TREE_READONLY on it again. */
2118 if (DECL_INITIALIZED_P (olddecl)
2119 && !DECL_EXTERNAL (olddecl)
2120 && !TREE_READONLY (olddecl))
2121 TREE_READONLY (newdecl) = 0;
2122 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
2123 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
2124 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
2125 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
2126 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
2127 if (DECL_CLASS_SCOPE_P (olddecl))
2128 DECL_DECLARED_CONSTEXPR_P (newdecl)
2129 |= DECL_DECLARED_CONSTEXPR_P (olddecl);
2130
2131 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
2132 if (DECL_LANG_SPECIFIC (olddecl)
2133 && CP_DECL_THREADPRIVATE_P (olddecl))
2134 {
2135 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
2136 retrofit_lang_decl (newdecl);
2137 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
2138 }
2139 }
2140
2141 /* An explicit specialization of a function template or of a member
2142 function of a class template can be declared transaction_safe
2143 independently of whether the corresponding template entity is declared
2144 transaction_safe. */
2145 if (flag_tm && TREE_CODE (newdecl) == FUNCTION_DECL
2146 && DECL_TEMPLATE_INSTANTIATION (olddecl)
2147 && DECL_TEMPLATE_SPECIALIZATION (newdecl)
2148 && tx_safe_fn_type_p (newtype)
2149 && !tx_safe_fn_type_p (TREE_TYPE (newdecl)))
2150 newtype = tx_unsafe_fn_variant (newtype);
2151
2152 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2153
2154 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2155 check_default_args (newdecl);
2156
2157 /* Lay the type out, unless already done. */
2158 if (! same_type_p (newtype, oldtype)
2159 && TREE_TYPE (newdecl) != error_mark_node
2160 && !(processing_template_decl && uses_template_parms (newdecl)))
2161 layout_type (TREE_TYPE (newdecl));
2162
2163 if ((VAR_P (newdecl)
2164 || TREE_CODE (newdecl) == PARM_DECL
2165 || TREE_CODE (newdecl) == RESULT_DECL
2166 || TREE_CODE (newdecl) == FIELD_DECL
2167 || TREE_CODE (newdecl) == TYPE_DECL)
2168 && !(processing_template_decl && uses_template_parms (newdecl)))
2169 layout_decl (newdecl, 0);
2170
2171 /* Merge the type qualifiers. */
2172 if (TREE_READONLY (newdecl))
2173 TREE_READONLY (olddecl) = 1;
2174 if (TREE_THIS_VOLATILE (newdecl))
2175 TREE_THIS_VOLATILE (olddecl) = 1;
2176 if (TREE_NOTHROW (newdecl))
2177 TREE_NOTHROW (olddecl) = 1;
2178
2179 /* Merge deprecatedness. */
2180 if (TREE_DEPRECATED (newdecl))
2181 TREE_DEPRECATED (olddecl) = 1;
2182
2183 /* Preserve function specific target and optimization options */
2184 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2185 {
2186 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2187 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2188 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2189 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2190
2191 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2192 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2193 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2194 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2195 }
2196
2197 /* Merge the initialization information. */
2198 if (DECL_INITIAL (newdecl) == NULL_TREE
2199 && DECL_INITIAL (olddecl) != NULL_TREE)
2200 {
2201 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2202 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2203 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2204 {
2205 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2206 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2207 }
2208 }
2209
2210 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2211 {
2212 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2213 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2214 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2215 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2216 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
2217 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2218 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2219 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2220 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2221 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2222 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2223 /* Keep the old RTL. */
2224 COPY_DECL_RTL (olddecl, newdecl);
2225 }
2226 else if (VAR_P (newdecl)
2227 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2228 {
2229 /* Keep the old RTL. We cannot keep the old RTL if the old
2230 declaration was for an incomplete object and the new
2231 declaration is not since many attributes of the RTL will
2232 change. */
2233 COPY_DECL_RTL (olddecl, newdecl);
2234 }
2235 }
2236 /* If cannot merge, then use the new type and qualifiers,
2237 and don't preserve the old rtl. */
2238 else
2239 {
2240 /* Clean out any memory we had of the old declaration. */
2241 tree oldstatic = value_member (olddecl, static_aggregates);
2242 if (oldstatic)
2243 TREE_VALUE (oldstatic) = error_mark_node;
2244
2245 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2246 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2247 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2248 TREE_NOTHROW (olddecl) = TREE_NOTHROW (newdecl);
2249 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2250 }
2251
2252 /* Merge the storage class information. */
2253 merge_weak (newdecl, olddecl);
2254
2255 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2256 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2257 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2258 if (! DECL_EXTERNAL (olddecl))
2259 DECL_EXTERNAL (newdecl) = 0;
2260 if (! DECL_COMDAT (olddecl))
2261 DECL_COMDAT (newdecl) = 0;
2262
2263 new_template_info = NULL_TREE;
2264 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2265 {
2266 bool new_redefines_gnu_inline = false;
2267
2268 if (new_defines_function
2269 && ((DECL_INTERFACE_KNOWN (olddecl)
2270 && TREE_CODE (olddecl) == FUNCTION_DECL)
2271 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2272 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2273 == FUNCTION_DECL))))
2274 {
2275 tree fn = olddecl;
2276
2277 if (TREE_CODE (fn) == TEMPLATE_DECL)
2278 fn = DECL_TEMPLATE_RESULT (olddecl);
2279
2280 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2281 }
2282
2283 if (!new_redefines_gnu_inline)
2284 {
2285 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2286 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2287 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2288 }
2289 DECL_TEMPLATE_INSTANTIATED (newdecl)
2290 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2291 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2292
2293 /* If the OLDDECL is an instantiation and/or specialization,
2294 then the NEWDECL must be too. But, it may not yet be marked
2295 as such if the caller has created NEWDECL, but has not yet
2296 figured out that it is a redeclaration. */
2297 if (!DECL_USE_TEMPLATE (newdecl))
2298 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2299
2300 /* Don't really know how much of the language-specific
2301 values we should copy from old to new. */
2302 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2303 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
2304 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2305 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2306
2307 if (LANG_DECL_HAS_MIN (newdecl))
2308 {
2309 DECL_LANG_SPECIFIC (newdecl)->u.min.u2 =
2310 DECL_LANG_SPECIFIC (olddecl)->u.min.u2;
2311 if (DECL_TEMPLATE_INFO (newdecl))
2312 {
2313 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2314 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2315 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2316 /* Remember the presence of explicit specialization args. */
2317 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2318 = TINFO_USED_TEMPLATE_ID (new_template_info);
2319 }
2320 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2321 }
2322 /* Only functions have these fields. */
2323 if (DECL_DECLARES_FUNCTION_P (newdecl))
2324 {
2325 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2326 DECL_BEFRIENDING_CLASSES (newdecl)
2327 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2328 DECL_BEFRIENDING_CLASSES (olddecl));
2329 /* DECL_THUNKS is only valid for virtual functions,
2330 otherwise it is a DECL_FRIEND_CONTEXT. */
2331 if (DECL_VIRTUAL_P (newdecl))
2332 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2333 }
2334 /* Only variables have this field. */
2335 else if (VAR_P (newdecl)
2336 && VAR_HAD_UNKNOWN_BOUND (olddecl))
2337 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2338 }
2339
2340 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2341 {
2342 tree parm;
2343
2344 /* Merge parameter attributes. */
2345 tree oldarg, newarg;
2346 for (oldarg = DECL_ARGUMENTS(olddecl),
2347 newarg = DECL_ARGUMENTS(newdecl);
2348 oldarg && newarg;
2349 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg)) {
2350 DECL_ATTRIBUTES (newarg)
2351 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2352 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2353 }
2354
2355 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2356 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2357 {
2358 /* If newdecl is not a specialization, then it is not a
2359 template-related function at all. And that means that we
2360 should have exited above, returning 0. */
2361 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2362
2363 if (DECL_ODR_USED (olddecl))
2364 /* From [temp.expl.spec]:
2365
2366 If a template, a member template or the member of a class
2367 template is explicitly specialized then that
2368 specialization shall be declared before the first use of
2369 that specialization that would cause an implicit
2370 instantiation to take place, in every translation unit in
2371 which such a use occurs. */
2372 error ("explicit specialization of %qD after first use",
2373 olddecl);
2374
2375 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2376 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2377 && DECL_DECLARED_INLINE_P (newdecl));
2378
2379 /* Don't propagate visibility from the template to the
2380 specialization here. We'll do that in determine_visibility if
2381 appropriate. */
2382 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2383
2384 /* [temp.expl.spec/14] We don't inline explicit specialization
2385 just because the primary template says so. */
2386
2387 /* But still keep DECL_DISREGARD_INLINE_LIMITS in sync with
2388 the always_inline attribute. */
2389 if (DECL_DISREGARD_INLINE_LIMITS (olddecl)
2390 && !DECL_DISREGARD_INLINE_LIMITS (newdecl))
2391 {
2392 if (DECL_DECLARED_INLINE_P (newdecl))
2393 DECL_DISREGARD_INLINE_LIMITS (newdecl) = true;
2394 else
2395 DECL_ATTRIBUTES (newdecl)
2396 = remove_attribute ("always_inline",
2397 DECL_ATTRIBUTES (newdecl));
2398 }
2399 }
2400 else if (new_defines_function && DECL_INITIAL (olddecl))
2401 {
2402 /* Never inline re-defined extern inline functions.
2403 FIXME: this could be better handled by keeping both
2404 function as separate declarations. */
2405 DECL_UNINLINABLE (newdecl) = 1;
2406 }
2407 else
2408 {
2409 if (DECL_PENDING_INLINE_P (olddecl))
2410 {
2411 DECL_PENDING_INLINE_P (newdecl) = 1;
2412 DECL_PENDING_INLINE_INFO (newdecl)
2413 = DECL_PENDING_INLINE_INFO (olddecl);
2414 }
2415 else if (DECL_PENDING_INLINE_P (newdecl))
2416 ;
2417 else if (DECL_SAVED_FUNCTION_DATA (newdecl) == NULL)
2418 DECL_SAVED_FUNCTION_DATA (newdecl)
2419 = DECL_SAVED_FUNCTION_DATA (olddecl);
2420
2421 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2422
2423 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2424 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2425
2426 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2427 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2428 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2429 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2430 }
2431
2432 /* Preserve abstractness on cloned [cd]tors. */
2433 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2434
2435 /* Update newdecl's parms to point at olddecl. */
2436 for (parm = DECL_ARGUMENTS (newdecl); parm;
2437 parm = DECL_CHAIN (parm))
2438 DECL_CONTEXT (parm) = olddecl;
2439
2440 if (! types_match)
2441 {
2442 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2443 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2444 COPY_DECL_RTL (newdecl, olddecl);
2445 }
2446 if (! types_match || new_defines_function)
2447 {
2448 /* These need to be copied so that the names are available.
2449 Note that if the types do match, we'll preserve inline
2450 info and other bits, but if not, we won't. */
2451 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2452 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2453 }
2454 /* If redeclaring a builtin function, it stays built in
2455 if newdecl is a gnu_inline definition, or if newdecl is just
2456 a declaration. */
2457 if (DECL_BUILT_IN (olddecl)
2458 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2459 {
2460 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2461 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2462 /* If we're keeping the built-in definition, keep the rtl,
2463 regardless of declaration matches. */
2464 COPY_DECL_RTL (olddecl, newdecl);
2465 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2466 {
2467 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2468 switch (fncode)
2469 {
2470 /* If a compatible prototype of these builtin functions
2471 is seen, assume the runtime implements it with the
2472 expected semantics. */
2473 case BUILT_IN_STPCPY:
2474 if (builtin_decl_explicit_p (fncode))
2475 set_builtin_decl_implicit_p (fncode, true);
2476 break;
2477 default:
2478 if (builtin_decl_explicit_p (fncode))
2479 set_builtin_decl_declared_p (fncode, true);
2480 break;
2481 }
2482 }
2483
2484 copy_attributes_to_builtin (newdecl);
2485 }
2486 if (new_defines_function)
2487 /* If defining a function declared with other language
2488 linkage, use the previously declared language linkage. */
2489 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2490 else if (types_match)
2491 {
2492 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2493 /* Don't clear out the arguments if we're just redeclaring a
2494 function. */
2495 if (DECL_ARGUMENTS (olddecl))
2496 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2497 }
2498 }
2499 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2500 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2501
2502 /* Now preserve various other info from the definition. */
2503 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2504 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2505 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2506 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2507
2508 /* Warn about conflicting visibility specifications. */
2509 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2510 && DECL_VISIBILITY_SPECIFIED (newdecl)
2511 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2512 {
2513 if (warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wattributes,
2514 "%qD: visibility attribute ignored because it "
2515 "conflicts with previous declaration", newdecl))
2516 inform (DECL_SOURCE_LOCATION (olddecl),
2517 "previous declaration of %qD", olddecl);
2518 }
2519 /* Choose the declaration which specified visibility. */
2520 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2521 {
2522 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2523 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2524 }
2525 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2526 so keep this behavior. */
2527 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2528 {
2529 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2530 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2531 }
2532 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2533 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2534 {
2535 SET_DECL_ALIGN (newdecl, DECL_ALIGN (olddecl));
2536 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2537 }
2538 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2539 if (DECL_WARN_IF_NOT_ALIGN (olddecl)
2540 > DECL_WARN_IF_NOT_ALIGN (newdecl))
2541 SET_DECL_WARN_IF_NOT_ALIGN (newdecl,
2542 DECL_WARN_IF_NOT_ALIGN (olddecl));
2543 if (TREE_CODE (newdecl) == FIELD_DECL)
2544 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2545
2546 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2547 with that from NEWDECL below. */
2548 if (DECL_LANG_SPECIFIC (olddecl))
2549 {
2550 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2551 != DECL_LANG_SPECIFIC (newdecl));
2552 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2553 }
2554
2555 /* Merge the USED information. */
2556 if (TREE_USED (olddecl))
2557 TREE_USED (newdecl) = 1;
2558 else if (TREE_USED (newdecl))
2559 TREE_USED (olddecl) = 1;
2560 if (VAR_P (newdecl))
2561 {
2562 if (DECL_READ_P (olddecl))
2563 DECL_READ_P (newdecl) = 1;
2564 else if (DECL_READ_P (newdecl))
2565 DECL_READ_P (olddecl) = 1;
2566 }
2567 if (DECL_PRESERVE_P (olddecl))
2568 DECL_PRESERVE_P (newdecl) = 1;
2569 else if (DECL_PRESERVE_P (newdecl))
2570 DECL_PRESERVE_P (olddecl) = 1;
2571
2572 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2573 to olddecl and deleted. */
2574 if (TREE_CODE (newdecl) == FUNCTION_DECL
2575 && DECL_FUNCTION_VERSIONED (olddecl))
2576 {
2577 /* Set the flag for newdecl so that it gets copied to olddecl. */
2578 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2579 /* newdecl will be purged after copying to olddecl and is no longer
2580 a version. */
2581 cgraph_node::delete_function_version_by_decl (newdecl);
2582 }
2583
2584 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2585 {
2586 int function_size;
2587 struct symtab_node *snode = symtab_node::get (olddecl);
2588
2589 function_size = sizeof (struct tree_decl_common);
2590
2591 memcpy ((char *) olddecl + sizeof (struct tree_common),
2592 (char *) newdecl + sizeof (struct tree_common),
2593 function_size - sizeof (struct tree_common));
2594
2595 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2596 (char *) newdecl + sizeof (struct tree_decl_common),
2597 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2598
2599 /* Preserve symtab node mapping. */
2600 olddecl->decl_with_vis.symtab_node = snode;
2601
2602 if (new_template_info)
2603 /* If newdecl is a template instantiation, it is possible that
2604 the following sequence of events has occurred:
2605
2606 o A friend function was declared in a class template. The
2607 class template was instantiated.
2608
2609 o The instantiation of the friend declaration was
2610 recorded on the instantiation list, and is newdecl.
2611
2612 o Later, however, instantiate_class_template called pushdecl
2613 on the newdecl to perform name injection. But, pushdecl in
2614 turn called duplicate_decls when it discovered that another
2615 declaration of a global function with the same name already
2616 existed.
2617
2618 o Here, in duplicate_decls, we decided to clobber newdecl.
2619
2620 If we're going to do that, we'd better make sure that
2621 olddecl, and not newdecl, is on the list of
2622 instantiations so that if we try to do the instantiation
2623 again we won't get the clobbered declaration. */
2624 reregister_specialization (newdecl,
2625 new_template_info,
2626 olddecl);
2627 }
2628 else
2629 {
2630 size_t size = tree_code_size (TREE_CODE (newdecl));
2631
2632 memcpy ((char *) olddecl + sizeof (struct tree_common),
2633 (char *) newdecl + sizeof (struct tree_common),
2634 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2635 switch (TREE_CODE (newdecl))
2636 {
2637 case LABEL_DECL:
2638 case VAR_DECL:
2639 case RESULT_DECL:
2640 case PARM_DECL:
2641 case FIELD_DECL:
2642 case TYPE_DECL:
2643 case CONST_DECL:
2644 {
2645 struct symtab_node *snode = NULL;
2646
2647 if (VAR_P (newdecl)
2648 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl)
2649 || DECL_EXTERNAL (olddecl)))
2650 snode = symtab_node::get (olddecl);
2651 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2652 (char *) newdecl + sizeof (struct tree_decl_common),
2653 size - sizeof (struct tree_decl_common)
2654 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2655 if (VAR_P (newdecl))
2656 olddecl->decl_with_vis.symtab_node = snode;
2657 }
2658 break;
2659 default:
2660 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2661 (char *) newdecl + sizeof (struct tree_decl_common),
2662 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2663 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2664 break;
2665 }
2666 }
2667
2668 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2669 {
2670 if (DECL_EXTERNAL (olddecl)
2671 || TREE_PUBLIC (olddecl)
2672 || TREE_STATIC (olddecl))
2673 {
2674 /* Merge the section attribute.
2675 We want to issue an error if the sections conflict but that must be
2676 done later in decl_attributes since we are called before attributes
2677 are assigned. */
2678 if (DECL_SECTION_NAME (newdecl) != NULL)
2679 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2680
2681 if (DECL_ONE_ONLY (newdecl))
2682 {
2683 struct symtab_node *oldsym, *newsym;
2684 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2685 oldsym = cgraph_node::get_create (olddecl);
2686 else
2687 oldsym = varpool_node::get_create (olddecl);
2688 newsym = symtab_node::get (newdecl);
2689 oldsym->set_comdat_group (newsym->get_comdat_group ());
2690 }
2691 }
2692
2693 if (VAR_P (newdecl)
2694 && CP_DECL_THREAD_LOCAL_P (newdecl))
2695 {
2696 CP_DECL_THREAD_LOCAL_P (olddecl) = true;
2697 if (!processing_template_decl)
2698 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2699 }
2700 }
2701
2702 DECL_UID (olddecl) = olddecl_uid;
2703 if (olddecl_friend)
2704 DECL_FRIEND_P (olddecl) = 1;
2705 if (hidden_friend)
2706 {
2707 DECL_ANTICIPATED (olddecl) = 1;
2708 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2709 }
2710
2711 /* NEWDECL contains the merged attribute lists.
2712 Update OLDDECL to be the same. */
2713 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2714
2715 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2716 so that encode_section_info has a chance to look at the new decl
2717 flags and attributes. */
2718 if (DECL_RTL_SET_P (olddecl)
2719 && (TREE_CODE (olddecl) == FUNCTION_DECL
2720 || (VAR_P (olddecl)
2721 && TREE_STATIC (olddecl))))
2722 make_decl_rtl (olddecl);
2723
2724 /* The NEWDECL will no longer be needed. Because every out-of-class
2725 declaration of a member results in a call to duplicate_decls,
2726 freeing these nodes represents in a significant savings.
2727
2728 Before releasing the node, be sore to remove function from symbol
2729 table that might have been inserted there to record comdat group.
2730 Be sure to however do not free DECL_STRUCT_FUNCTION because this
2731 structure is shared in between newdecl and oldecl. */
2732 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2733 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2734 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2735 {
2736 struct symtab_node *snode = symtab_node::get (newdecl);
2737 if (snode)
2738 snode->remove ();
2739 }
2740
2741 /* Remove the associated constraints for newdecl, if any, before
2742 reclaiming memory. */
2743 if (flag_concepts)
2744 remove_constraints (newdecl);
2745
2746 ggc_free (newdecl);
2747
2748 return olddecl;
2749 }
2750 \f
2751 /* Return zero if the declaration NEWDECL is valid
2752 when the declaration OLDDECL (assumed to be for the same name)
2753 has already been seen.
2754 Otherwise return an error message format string with a %s
2755 where the identifier should go. */
2756
2757 static const char *
2758 redeclaration_error_message (tree newdecl, tree olddecl)
2759 {
2760 if (TREE_CODE (newdecl) == TYPE_DECL)
2761 {
2762 /* Because C++ can put things into name space for free,
2763 constructs like "typedef struct foo { ... } foo"
2764 would look like an erroneous redeclaration. */
2765 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2766 return NULL;
2767 else
2768 return G_("redefinition of %q#D");
2769 }
2770 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2771 {
2772 /* If this is a pure function, its olddecl will actually be
2773 the original initialization to `0' (which we force to call
2774 abort()). Don't complain about redefinition in this case. */
2775 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2776 && DECL_INITIAL (olddecl) == NULL_TREE)
2777 return NULL;
2778
2779 /* If both functions come from different namespaces, this is not
2780 a redeclaration - this is a conflict with a used function. */
2781 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2782 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2783 && ! decls_match (olddecl, newdecl))
2784 return G_("%qD conflicts with used function");
2785
2786 /* We'll complain about linkage mismatches in
2787 warn_extern_redeclared_static. */
2788
2789 /* Defining the same name twice is no good. */
2790 if (decl_defined_p (olddecl)
2791 && decl_defined_p (newdecl))
2792 {
2793 if (DECL_NAME (olddecl) == NULL_TREE)
2794 return G_("%q#D not declared in class");
2795 else if (!GNU_INLINE_P (olddecl)
2796 || GNU_INLINE_P (newdecl))
2797 return G_("redefinition of %q#D");
2798 }
2799
2800 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2801 {
2802 bool olda = GNU_INLINE_P (olddecl);
2803 bool newa = GNU_INLINE_P (newdecl);
2804
2805 if (olda != newa)
2806 {
2807 if (newa)
2808 return G_("%q+D redeclared inline with "
2809 "%<gnu_inline%> attribute");
2810 else
2811 return G_("%q+D redeclared inline without "
2812 "%<gnu_inline%> attribute");
2813 }
2814 }
2815
2816 check_abi_tag_redeclaration
2817 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2818 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2819
2820 return NULL;
2821 }
2822 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2823 {
2824 tree nt, ot;
2825
2826 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2827 {
2828 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2829 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2830 return G_("redefinition of %q#D");
2831 return NULL;
2832 }
2833
2834 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2835 || (DECL_TEMPLATE_RESULT (newdecl)
2836 == DECL_TEMPLATE_RESULT (olddecl)))
2837 return NULL;
2838
2839 nt = DECL_TEMPLATE_RESULT (newdecl);
2840 if (DECL_TEMPLATE_INFO (nt))
2841 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2842 ot = DECL_TEMPLATE_RESULT (olddecl);
2843 if (DECL_TEMPLATE_INFO (ot))
2844 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2845 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2846 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2847 return G_("redefinition of %q#D");
2848
2849 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2850 {
2851 bool olda = GNU_INLINE_P (ot);
2852 bool newa = GNU_INLINE_P (nt);
2853
2854 if (olda != newa)
2855 {
2856 if (newa)
2857 return G_("%q+D redeclared inline with "
2858 "%<gnu_inline%> attribute");
2859 else
2860 return G_("%q+D redeclared inline without "
2861 "%<gnu_inline%> attribute");
2862 }
2863 }
2864
2865 /* Core issue #226 (C++0x):
2866
2867 If a friend function template declaration specifies a
2868 default template-argument, that declaration shall be a
2869 definition and shall be the only declaration of the
2870 function template in the translation unit. */
2871 if ((cxx_dialect != cxx98)
2872 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2873 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2874 /*is_primary=*/true,
2875 /*is_partial=*/false,
2876 /*is_friend_decl=*/2))
2877 return G_("redeclaration of friend %q#D "
2878 "may not have default template arguments");
2879
2880 return NULL;
2881 }
2882 else if (VAR_P (newdecl)
2883 && CP_DECL_THREAD_LOCAL_P (newdecl) != CP_DECL_THREAD_LOCAL_P (olddecl)
2884 && (! DECL_LANG_SPECIFIC (olddecl)
2885 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2886 || CP_DECL_THREAD_LOCAL_P (newdecl)))
2887 {
2888 /* Only variables can be thread-local, and all declarations must
2889 agree on this property. */
2890 if (CP_DECL_THREAD_LOCAL_P (newdecl))
2891 return G_("thread-local declaration of %q#D follows "
2892 "non-thread-local declaration");
2893 else
2894 return G_("non-thread-local declaration of %q#D follows "
2895 "thread-local declaration");
2896 }
2897 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2898 {
2899 /* The objects have been declared at namespace scope. If either
2900 is a member of an anonymous union, then this is an invalid
2901 redeclaration. For example:
2902
2903 int i;
2904 union { int i; };
2905
2906 is invalid. */
2907 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2908 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2909 return G_("redeclaration of %q#D");
2910 /* If at least one declaration is a reference, there is no
2911 conflict. For example:
2912
2913 int i = 3;
2914 extern int i;
2915
2916 is valid. */
2917 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2918 return NULL;
2919
2920 /* Static data member declared outside a class definition
2921 if the variable is defined within the class with constexpr
2922 specifier is declaration rather than definition (and
2923 deprecated). */
2924 if (cxx_dialect >= cxx17
2925 && DECL_CLASS_SCOPE_P (olddecl)
2926 && DECL_DECLARED_CONSTEXPR_P (olddecl)
2927 && !DECL_INITIAL (newdecl))
2928 {
2929 DECL_EXTERNAL (newdecl) = 1;
2930 /* For now, only warn with explicit -Wdeprecated. */
2931 if (global_options_set.x_warn_deprecated
2932 && warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wdeprecated,
2933 "redundant redeclaration of %<constexpr%> static "
2934 "data member %qD", newdecl))
2935 inform (DECL_SOURCE_LOCATION (olddecl),
2936 "previous declaration of %qD", olddecl);
2937 return NULL;
2938 }
2939
2940 /* Reject two definitions. */
2941 return G_("redefinition of %q#D");
2942 }
2943 else
2944 {
2945 /* Objects declared with block scope: */
2946 /* Reject two definitions, and reject a definition
2947 together with an external reference. */
2948 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2949 return G_("redeclaration of %q#D");
2950 return NULL;
2951 }
2952 }
2953 \f
2954
2955 /* Hash and equality functions for the named_label table. */
2956
2957 hashval_t
2958 named_label_hash::hash (const value_type entry)
2959 {
2960 return IDENTIFIER_HASH_VALUE (entry->name);
2961 }
2962
2963 bool
2964 named_label_hash::equal (const value_type entry, compare_type name)
2965 {
2966 return name == entry->name;
2967 }
2968
2969 /* Look for a label named ID in the current function. If one cannot
2970 be found, create one. Return the named_label_entry, or NULL on
2971 failure. */
2972
2973 static named_label_entry *
2974 lookup_label_1 (tree id, bool making_local_p)
2975 {
2976 /* You can't use labels at global scope. */
2977 if (current_function_decl == NULL_TREE)
2978 {
2979 error ("label %qE referenced outside of any function", id);
2980 return NULL;
2981 }
2982
2983 if (!named_labels)
2984 named_labels = hash_table<named_label_hash>::create_ggc (13);
2985
2986 hashval_t hash = IDENTIFIER_HASH_VALUE (id);
2987 named_label_entry **slot
2988 = named_labels->find_slot_with_hash (id, hash, INSERT);
2989 named_label_entry *old = *slot;
2990
2991 if (old && old->label_decl)
2992 {
2993 if (!making_local_p)
2994 return old;
2995
2996 if (old->binding_level == current_binding_level)
2997 {
2998 error ("local label %qE conflicts with existing label", id);
2999 inform (DECL_SOURCE_LOCATION (old->label_decl), "previous label");
3000 return NULL;
3001 }
3002 }
3003
3004 /* We are making a new decl, create or reuse the named_label_entry */
3005 named_label_entry *ent = NULL;
3006 if (old && !old->label_decl)
3007 ent = old;
3008 else
3009 {
3010 ent = ggc_cleared_alloc<named_label_entry> ();
3011 ent->name = id;
3012 ent->outer = old;
3013 *slot = ent;
3014 }
3015
3016 /* Now create the LABEL_DECL. */
3017 tree decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
3018
3019 DECL_CONTEXT (decl) = current_function_decl;
3020 SET_DECL_MODE (decl, VOIDmode);
3021 if (making_local_p)
3022 {
3023 C_DECLARED_LABEL_FLAG (decl) = true;
3024 DECL_CHAIN (decl) = current_binding_level->names;
3025 current_binding_level->names = decl;
3026 }
3027
3028 ent->label_decl = decl;
3029
3030 return ent;
3031 }
3032
3033 /* Wrapper for lookup_label_1. */
3034
3035 tree
3036 lookup_label (tree id)
3037 {
3038 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
3039 named_label_entry *ent = lookup_label_1 (id, false);
3040 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
3041 return ent ? ent->label_decl : NULL_TREE;
3042 }
3043
3044 tree
3045 declare_local_label (tree id)
3046 {
3047 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
3048 named_label_entry *ent = lookup_label_1 (id, true);
3049 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
3050 return ent ? ent->label_decl : NULL_TREE;
3051 }
3052
3053 /* Returns nonzero if it is ill-formed to jump past the declaration of
3054 DECL. Returns 2 if it's also a real problem. */
3055
3056 static int
3057 decl_jump_unsafe (tree decl)
3058 {
3059 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
3060 with automatic storage duration is not in scope to a point where it is
3061 in scope is ill-formed unless the variable has scalar type, class type
3062 with a trivial default constructor and a trivial destructor, a
3063 cv-qualified version of one of these types, or an array of one of the
3064 preceding types and is declared without an initializer (8.5). */
3065 tree type = TREE_TYPE (decl);
3066
3067 if (!VAR_P (decl) || TREE_STATIC (decl)
3068 || type == error_mark_node)
3069 return 0;
3070
3071 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
3072 || variably_modified_type_p (type, NULL_TREE))
3073 return 2;
3074
3075 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3076 return 1;
3077
3078 return 0;
3079 }
3080
3081 /* A subroutine of check_previous_goto_1 and check_goto to identify a branch
3082 to the user. */
3083
3084 static bool
3085 identify_goto (tree decl, location_t loc, const location_t *locus,
3086 diagnostic_t diag_kind)
3087 {
3088 bool complained
3089 = emit_diagnostic (diag_kind, loc, 0,
3090 decl ? N_("jump to label %qD")
3091 : N_("jump to case label"), decl);
3092 if (complained && locus)
3093 inform (*locus, " from here");
3094 return complained;
3095 }
3096
3097 /* Check that a single previously seen jump to a newly defined label
3098 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
3099 the jump context; NAMES are the names in scope in LEVEL at the jump
3100 context; LOCUS is the source position of the jump or 0. Returns
3101 true if all is well. */
3102
3103 static bool
3104 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
3105 bool exited_omp, const location_t *locus)
3106 {
3107 cp_binding_level *b;
3108 bool complained = false;
3109 int identified = 0;
3110 bool saw_eh = false, saw_omp = false, saw_tm = false, saw_cxif = false;
3111
3112 if (exited_omp)
3113 {
3114 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3115 if (complained)
3116 inform (input_location, " exits OpenMP structured block");
3117 saw_omp = true;
3118 identified = 2;
3119 }
3120
3121 for (b = current_binding_level; b ; b = b->level_chain)
3122 {
3123 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
3124
3125 for (new_decls = b->names; new_decls != old_decls;
3126 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
3127 : TREE_CHAIN (new_decls)))
3128 {
3129 int problem = decl_jump_unsafe (new_decls);
3130 if (! problem)
3131 continue;
3132
3133 if (!identified)
3134 {
3135 complained = identify_goto (decl, input_location, locus,
3136 DK_PERMERROR);
3137 identified = 1;
3138 }
3139 if (complained)
3140 {
3141 if (problem > 1)
3142 inform (DECL_SOURCE_LOCATION (new_decls),
3143 " crosses initialization of %q#D", new_decls);
3144 else
3145 inform (DECL_SOURCE_LOCATION (new_decls),
3146 " enters scope of %q#D, which has "
3147 "non-trivial destructor", new_decls);
3148 }
3149 }
3150
3151 if (b == level)
3152 break;
3153
3154 const char *inf = NULL;
3155 location_t loc = input_location;
3156 switch (b->kind)
3157 {
3158 case sk_try:
3159 if (!saw_eh)
3160 inf = N_("enters try block");
3161 saw_eh = true;
3162 break;
3163
3164 case sk_catch:
3165 if (!saw_eh)
3166 inf = N_("enters catch block");
3167 saw_eh = true;
3168 break;
3169
3170 case sk_omp:
3171 if (!saw_omp)
3172 inf = N_("enters OpenMP structured block");
3173 saw_omp = true;
3174 break;
3175
3176 case sk_transaction:
3177 if (!saw_tm)
3178 inf = N_("enters synchronized or atomic statement");
3179 saw_tm = true;
3180 break;
3181
3182 case sk_block:
3183 if (!saw_cxif && level_for_constexpr_if (b->level_chain))
3184 {
3185 inf = N_("enters constexpr if statement");
3186 loc = EXPR_LOCATION (b->level_chain->this_entity);
3187 saw_cxif = true;
3188 }
3189 break;
3190
3191 default:
3192 break;
3193 }
3194
3195 if (inf)
3196 {
3197 if (identified < 2)
3198 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3199 identified = 2;
3200 if (complained)
3201 inform (loc, " %s", inf);
3202 }
3203 }
3204
3205 return !identified;
3206 }
3207
3208 static void
3209 check_previous_goto (tree decl, struct named_label_use_entry *use)
3210 {
3211 check_previous_goto_1 (decl, use->binding_level,
3212 use->names_in_scope, use->in_omp_scope,
3213 &use->o_goto_locus);
3214 }
3215
3216 static bool
3217 check_switch_goto (cp_binding_level* level)
3218 {
3219 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
3220 }
3221
3222 /* Check that a new jump to a label DECL is OK. Called by
3223 finish_goto_stmt. */
3224
3225 void
3226 check_goto (tree decl)
3227 {
3228 /* We can't know where a computed goto is jumping.
3229 So we assume that it's OK. */
3230 if (TREE_CODE (decl) != LABEL_DECL)
3231 return;
3232
3233 /* We didn't record any information about this label when we created it,
3234 and there's not much point since it's trivial to analyze as a return. */
3235 if (decl == cdtor_label)
3236 return;
3237
3238 hashval_t hash = IDENTIFIER_HASH_VALUE (DECL_NAME (decl));
3239 named_label_entry **slot
3240 = named_labels->find_slot_with_hash (DECL_NAME (decl), hash, NO_INSERT);
3241 named_label_entry *ent = *slot;
3242
3243 /* If the label hasn't been defined yet, defer checking. */
3244 if (! DECL_INITIAL (decl))
3245 {
3246 /* Don't bother creating another use if the last goto had the
3247 same data, and will therefore create the same set of errors. */
3248 if (ent->uses
3249 && ent->uses->names_in_scope == current_binding_level->names)
3250 return;
3251
3252 named_label_use_entry *new_use
3253 = ggc_alloc<named_label_use_entry> ();
3254 new_use->binding_level = current_binding_level;
3255 new_use->names_in_scope = current_binding_level->names;
3256 new_use->o_goto_locus = input_location;
3257 new_use->in_omp_scope = false;
3258
3259 new_use->next = ent->uses;
3260 ent->uses = new_use;
3261 return;
3262 }
3263
3264 bool saw_catch = false, complained = false;
3265 int identified = 0;
3266 tree bad;
3267 unsigned ix;
3268
3269 if (ent->in_try_scope || ent->in_catch_scope || ent->in_transaction_scope
3270 || ent->in_constexpr_if
3271 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3272 {
3273 diagnostic_t diag_kind = DK_PERMERROR;
3274 if (ent->in_try_scope || ent->in_catch_scope || ent->in_constexpr_if
3275 || ent->in_transaction_scope || ent->in_omp_scope)
3276 diag_kind = DK_ERROR;
3277 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3278 &input_location, diag_kind);
3279 identified = 1 + (diag_kind == DK_ERROR);
3280 }
3281
3282 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3283 {
3284 int u = decl_jump_unsafe (bad);
3285
3286 if (u > 1 && DECL_ARTIFICIAL (bad))
3287 {
3288 /* Can't skip init of __exception_info. */
3289 if (identified == 1)
3290 {
3291 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3292 &input_location, DK_ERROR);
3293 identified = 2;
3294 }
3295 if (complained)
3296 inform (DECL_SOURCE_LOCATION (bad), " enters catch block");
3297 saw_catch = true;
3298 }
3299 else if (complained)
3300 {
3301 if (u > 1)
3302 inform (DECL_SOURCE_LOCATION (bad),
3303 " skips initialization of %q#D", bad);
3304 else
3305 inform (DECL_SOURCE_LOCATION (bad),
3306 " enters scope of %q#D which has "
3307 "non-trivial destructor", bad);
3308 }
3309 }
3310
3311 if (complained)
3312 {
3313 if (ent->in_try_scope)
3314 inform (input_location, " enters try block");
3315 else if (ent->in_catch_scope && !saw_catch)
3316 inform (input_location, " enters catch block");
3317 else if (ent->in_transaction_scope)
3318 inform (input_location, " enters synchronized or atomic statement");
3319 else if (ent->in_constexpr_if)
3320 inform (input_location, " enters constexpr if statement");
3321 }
3322
3323 if (ent->in_omp_scope)
3324 {
3325 if (complained)
3326 inform (input_location, " enters OpenMP structured block");
3327 }
3328 else if (flag_openmp)
3329 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3330 {
3331 if (b == ent->binding_level)
3332 break;
3333 if (b->kind == sk_omp)
3334 {
3335 if (identified < 2)
3336 {
3337 complained = identify_goto (decl,
3338 DECL_SOURCE_LOCATION (decl),
3339 &input_location, DK_ERROR);
3340 identified = 2;
3341 }
3342 if (complained)
3343 inform (input_location, " exits OpenMP structured block");
3344 break;
3345 }
3346 }
3347 }
3348
3349 /* Check that a return is ok wrt OpenMP structured blocks.
3350 Called by finish_return_stmt. Returns true if all is well. */
3351
3352 bool
3353 check_omp_return (void)
3354 {
3355 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3356 if (b->kind == sk_omp)
3357 {
3358 error ("invalid exit from OpenMP structured block");
3359 return false;
3360 }
3361 else if (b->kind == sk_function_parms)
3362 break;
3363 return true;
3364 }
3365
3366 /* Define a label, specifying the location in the source file.
3367 Return the LABEL_DECL node for the label. */
3368
3369 static tree
3370 define_label_1 (location_t location, tree name)
3371 {
3372 /* After labels, make any new cleanups in the function go into their
3373 own new (temporary) binding contour. */
3374 for (cp_binding_level *p = current_binding_level;
3375 p->kind != sk_function_parms;
3376 p = p->level_chain)
3377 p->more_cleanups_ok = 0;
3378
3379 named_label_entry *ent = lookup_label_1 (name, false);
3380 tree decl = ent->label_decl;
3381
3382 if (DECL_INITIAL (decl) != NULL_TREE)
3383 {
3384 error ("duplicate label %qD", decl);
3385 return error_mark_node;
3386 }
3387 else
3388 {
3389 /* Mark label as having been defined. */
3390 DECL_INITIAL (decl) = error_mark_node;
3391 /* Say where in the source. */
3392 DECL_SOURCE_LOCATION (decl) = location;
3393
3394 ent->binding_level = current_binding_level;
3395 ent->names_in_scope = current_binding_level->names;
3396
3397 for (named_label_use_entry *use = ent->uses; use; use = use->next)
3398 check_previous_goto (decl, use);
3399 ent->uses = NULL;
3400 }
3401
3402 return decl;
3403 }
3404
3405 /* Wrapper for define_label_1. */
3406
3407 tree
3408 define_label (location_t location, tree name)
3409 {
3410 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3411 tree ret = define_label_1 (location, name);
3412 timevar_cond_stop (TV_NAME_LOOKUP, running);
3413 return ret;
3414 }
3415
3416
3417 struct cp_switch
3418 {
3419 cp_binding_level *level;
3420 struct cp_switch *next;
3421 /* The SWITCH_STMT being built. */
3422 tree switch_stmt;
3423 /* A splay-tree mapping the low element of a case range to the high
3424 element, or NULL_TREE if there is no high element. Used to
3425 determine whether or not a new case label duplicates an old case
3426 label. We need a tree, rather than simply a hash table, because
3427 of the GNU case range extension. */
3428 splay_tree cases;
3429 /* Remember whether there was a case value that is outside the
3430 range of the original type of the controlling expression. */
3431 bool outside_range_p;
3432 };
3433
3434 /* A stack of the currently active switch statements. The innermost
3435 switch statement is on the top of the stack. There is no need to
3436 mark the stack for garbage collection because it is only active
3437 during the processing of the body of a function, and we never
3438 collect at that point. */
3439
3440 static struct cp_switch *switch_stack;
3441
3442 /* Called right after a switch-statement condition is parsed.
3443 SWITCH_STMT is the switch statement being parsed. */
3444
3445 void
3446 push_switch (tree switch_stmt)
3447 {
3448 struct cp_switch *p = XNEW (struct cp_switch);
3449 p->level = current_binding_level;
3450 p->next = switch_stack;
3451 p->switch_stmt = switch_stmt;
3452 p->cases = splay_tree_new (case_compare, NULL, NULL);
3453 p->outside_range_p = false;
3454 switch_stack = p;
3455 }
3456
3457 void
3458 pop_switch (void)
3459 {
3460 struct cp_switch *cs = switch_stack;
3461 location_t switch_location;
3462
3463 /* Emit warnings as needed. */
3464 switch_location = EXPR_LOC_OR_LOC (cs->switch_stmt, input_location);
3465 const bool bool_cond_p
3466 = (SWITCH_STMT_TYPE (cs->switch_stmt)
3467 && TREE_CODE (SWITCH_STMT_TYPE (cs->switch_stmt)) == BOOLEAN_TYPE);
3468 if (!processing_template_decl)
3469 c_do_switch_warnings (cs->cases, switch_location,
3470 SWITCH_STMT_TYPE (cs->switch_stmt),
3471 SWITCH_STMT_COND (cs->switch_stmt),
3472 bool_cond_p, cs->outside_range_p);
3473
3474 splay_tree_delete (cs->cases);
3475 switch_stack = switch_stack->next;
3476 free (cs);
3477 }
3478
3479 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3480 condition. Note that if TYPE and VALUE are already integral we don't
3481 really do the conversion because the language-independent
3482 warning/optimization code will work better that way. */
3483
3484 static tree
3485 case_conversion (tree type, tree value)
3486 {
3487 if (value == NULL_TREE)
3488 return value;
3489
3490 if (cxx_dialect >= cxx11
3491 && (SCOPED_ENUM_P (type)
3492 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))))
3493 {
3494 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3495 type = type_promotes_to (type);
3496 value = (perform_implicit_conversion_flags
3497 (type, value, tf_warning_or_error,
3498 LOOKUP_IMPLICIT | LOOKUP_NO_NON_INTEGRAL));
3499 }
3500 return cxx_constant_value (value);
3501 }
3502
3503 /* Note that we've seen a definition of a case label, and complain if this
3504 is a bad place for one. */
3505
3506 tree
3507 finish_case_label (location_t loc, tree low_value, tree high_value)
3508 {
3509 tree cond, r;
3510 cp_binding_level *p;
3511 tree type;
3512
3513 if (processing_template_decl)
3514 {
3515 tree label;
3516
3517 /* For templates, just add the case label; we'll do semantic
3518 analysis at instantiation-time. */
3519 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
3520 return add_stmt (build_case_label (low_value, high_value, label));
3521 }
3522
3523 /* Find the condition on which this switch statement depends. */
3524 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3525 if (cond && TREE_CODE (cond) == TREE_LIST)
3526 cond = TREE_VALUE (cond);
3527
3528 if (!check_switch_goto (switch_stack->level))
3529 return error_mark_node;
3530
3531 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3532
3533 low_value = case_conversion (type, low_value);
3534 high_value = case_conversion (type, high_value);
3535
3536 r = c_add_case_label (loc, switch_stack->cases, cond, type,
3537 low_value, high_value,
3538 &switch_stack->outside_range_p);
3539
3540 /* After labels, make any new cleanups in the function go into their
3541 own new (temporary) binding contour. */
3542 for (p = current_binding_level;
3543 p->kind != sk_function_parms;
3544 p = p->level_chain)
3545 p->more_cleanups_ok = 0;
3546
3547 return r;
3548 }
3549 \f
3550 struct typename_info {
3551 tree scope;
3552 tree name;
3553 tree template_id;
3554 bool enum_p;
3555 bool class_p;
3556 };
3557
3558 struct typename_hasher : ggc_ptr_hash<tree_node>
3559 {
3560 typedef typename_info *compare_type;
3561
3562 /* Hash a TYPENAME_TYPE. */
3563
3564 static hashval_t
3565 hash (tree t)
3566 {
3567 hashval_t hash;
3568
3569 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3570 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3571
3572 return hash;
3573 }
3574
3575 /* Compare two TYPENAME_TYPEs. */
3576
3577 static bool
3578 equal (tree t1, const typename_info *t2)
3579 {
3580 return (TYPE_IDENTIFIER (t1) == t2->name
3581 && TYPE_CONTEXT (t1) == t2->scope
3582 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3583 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3584 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3585 }
3586 };
3587
3588 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3589 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3590
3591 Returns the new TYPENAME_TYPE. */
3592
3593 static GTY (()) hash_table<typename_hasher> *typename_htab;
3594
3595 tree
3596 build_typename_type (tree context, tree name, tree fullname,
3597 enum tag_types tag_type)
3598 {
3599 tree t;
3600 tree d;
3601 typename_info ti;
3602 tree *e;
3603 hashval_t hash;
3604
3605 if (typename_htab == NULL)
3606 typename_htab = hash_table<typename_hasher>::create_ggc (61);
3607
3608 ti.scope = FROB_CONTEXT (context);
3609 ti.name = name;
3610 ti.template_id = fullname;
3611 ti.enum_p = tag_type == enum_type;
3612 ti.class_p = (tag_type == class_type
3613 || tag_type == record_type
3614 || tag_type == union_type);
3615 hash = (htab_hash_pointer (ti.scope)
3616 ^ htab_hash_pointer (ti.name));
3617
3618 /* See if we already have this type. */
3619 e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
3620 if (*e)
3621 t = *e;
3622 else
3623 {
3624 /* Build the TYPENAME_TYPE. */
3625 t = cxx_make_type (TYPENAME_TYPE);
3626 TYPE_CONTEXT (t) = ti.scope;
3627 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3628 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3629 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3630
3631 /* Build the corresponding TYPE_DECL. */
3632 d = build_decl (input_location, TYPE_DECL, name, t);
3633 TYPE_NAME (TREE_TYPE (d)) = d;
3634 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3635 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3636 DECL_ARTIFICIAL (d) = 1;
3637
3638 /* Store it in the hash table. */
3639 *e = t;
3640
3641 /* TYPENAME_TYPEs must always be compared structurally, because
3642 they may or may not resolve down to another type depending on
3643 the currently open classes. */
3644 SET_TYPE_STRUCTURAL_EQUALITY (t);
3645 }
3646
3647 return t;
3648 }
3649
3650 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3651 provided to name the type. Returns an appropriate type, unless an
3652 error occurs, in which case error_mark_node is returned. If we
3653 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3654 return that, rather than the _TYPE it corresponds to, in other
3655 cases we look through the type decl. If TF_ERROR is set, complain
3656 about errors, otherwise be quiet. */
3657
3658 tree
3659 make_typename_type (tree context, tree name, enum tag_types tag_type,
3660 tsubst_flags_t complain)
3661 {
3662 tree fullname;
3663 tree t;
3664 bool want_template;
3665
3666 if (name == error_mark_node
3667 || context == NULL_TREE
3668 || context == error_mark_node)
3669 return error_mark_node;
3670
3671 if (TYPE_P (name))
3672 {
3673 if (!(TYPE_LANG_SPECIFIC (name)
3674 && (CLASSTYPE_IS_TEMPLATE (name)
3675 || CLASSTYPE_USE_TEMPLATE (name))))
3676 name = TYPE_IDENTIFIER (name);
3677 else
3678 /* Create a TEMPLATE_ID_EXPR for the type. */
3679 name = build_nt (TEMPLATE_ID_EXPR,
3680 CLASSTYPE_TI_TEMPLATE (name),
3681 CLASSTYPE_TI_ARGS (name));
3682 }
3683 else if (TREE_CODE (name) == TYPE_DECL)
3684 name = DECL_NAME (name);
3685
3686 fullname = name;
3687
3688 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3689 {
3690 name = TREE_OPERAND (name, 0);
3691 if (DECL_TYPE_TEMPLATE_P (name))
3692 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3693 if (TREE_CODE (name) != IDENTIFIER_NODE)
3694 {
3695 if (complain & tf_error)
3696 error ("%qD is not a type", name);
3697 return error_mark_node;
3698 }
3699 }
3700 if (TREE_CODE (name) == TEMPLATE_DECL)
3701 {
3702 if (complain & tf_error)
3703 error ("%qD used without template parameters", name);
3704 return error_mark_node;
3705 }
3706 gcc_assert (identifier_p (name));
3707 gcc_assert (TYPE_P (context));
3708
3709 if (!MAYBE_CLASS_TYPE_P (context))
3710 {
3711 if (complain & tf_error)
3712 error ("%q#T is not a class", context);
3713 return error_mark_node;
3714 }
3715
3716 /* When the CONTEXT is a dependent type, NAME could refer to a
3717 dependent base class of CONTEXT. But look inside it anyway
3718 if CONTEXT is a currently open scope, in case it refers to a
3719 member of the current instantiation or a non-dependent base;
3720 lookup will stop when we hit a dependent base. */
3721 if (!dependent_scope_p (context))
3722 /* We should only set WANT_TYPE when we're a nested typename type.
3723 Then we can give better diagnostics if we find a non-type. */
3724 t = lookup_field (context, name, 2, /*want_type=*/true);
3725 else
3726 t = NULL_TREE;
3727
3728 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3729 return build_typename_type (context, name, fullname, tag_type);
3730
3731 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3732
3733 if (!t)
3734 {
3735 if (complain & tf_error)
3736 {
3737 if (!COMPLETE_TYPE_P (context))
3738 cxx_incomplete_type_error (NULL_TREE, context);
3739 else
3740 error (want_template ? G_("no class template named %q#T in %q#T")
3741 : G_("no type named %q#T in %q#T"), name, context);
3742 }
3743 return error_mark_node;
3744 }
3745
3746 /* Pull out the template from an injected-class-name (or multiple). */
3747 if (want_template)
3748 t = maybe_get_template_decl_from_type_decl (t);
3749
3750 if (TREE_CODE (t) == TREE_LIST)
3751 {
3752 if (complain & tf_error)
3753 {
3754 error ("lookup of %qT in %qT is ambiguous", name, context);
3755 print_candidates (t);
3756 }
3757 return error_mark_node;
3758 }
3759
3760 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3761 {
3762 if (complain & tf_error)
3763 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3764 context, name, t);
3765 return error_mark_node;
3766 }
3767 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3768 {
3769 if (complain & tf_error)
3770 error ("%<typename %T::%D%> names %q#T, which is not a type",
3771 context, name, t);
3772 return error_mark_node;
3773 }
3774
3775 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3776 return error_mark_node;
3777
3778 /* If we are currently parsing a template and if T is a typedef accessed
3779 through CONTEXT then we need to remember and check access of T at
3780 template instantiation time. */
3781 add_typedef_to_current_template_for_access_check (t, context, input_location);
3782
3783 if (want_template)
3784 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3785 NULL_TREE, context,
3786 /*entering_scope=*/0,
3787 complain | tf_user);
3788
3789 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3790 t = TREE_TYPE (t);
3791
3792 maybe_record_typedef_use (t);
3793
3794 return t;
3795 }
3796
3797 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3798 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3799 in which case error_mark_node is returned.
3800
3801 If PARM_LIST is non-NULL, also make sure that the template parameter
3802 list of TEMPLATE_DECL matches.
3803
3804 If COMPLAIN zero, don't complain about any errors that occur. */
3805
3806 tree
3807 make_unbound_class_template (tree context, tree name, tree parm_list,
3808 tsubst_flags_t complain)
3809 {
3810 tree t;
3811 tree d;
3812
3813 if (TYPE_P (name))
3814 name = TYPE_IDENTIFIER (name);
3815 else if (DECL_P (name))
3816 name = DECL_NAME (name);
3817 gcc_assert (identifier_p (name));
3818
3819 if (!dependent_type_p (context)
3820 || currently_open_class (context))
3821 {
3822 tree tmpl = NULL_TREE;
3823
3824 if (MAYBE_CLASS_TYPE_P (context))
3825 tmpl = lookup_field (context, name, 0, false);
3826
3827 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3828 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3829
3830 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3831 {
3832 if (complain & tf_error)
3833 error ("no class template named %q#T in %q#T", name, context);
3834 return error_mark_node;
3835 }
3836
3837 if (parm_list
3838 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3839 {
3840 if (complain & tf_error)
3841 {
3842 error ("template parameters do not match template %qD", tmpl);
3843 inform (DECL_SOURCE_LOCATION (tmpl),
3844 "%qD declared here", tmpl);
3845 }
3846 return error_mark_node;
3847 }
3848
3849 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
3850 complain))
3851 return error_mark_node;
3852
3853 return tmpl;
3854 }
3855
3856 /* Build the UNBOUND_CLASS_TEMPLATE. */
3857 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3858 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3859 TREE_TYPE (t) = NULL_TREE;
3860 SET_TYPE_STRUCTURAL_EQUALITY (t);
3861
3862 /* Build the corresponding TEMPLATE_DECL. */
3863 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3864 TYPE_NAME (TREE_TYPE (d)) = d;
3865 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3866 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3867 DECL_ARTIFICIAL (d) = 1;
3868 DECL_TEMPLATE_PARMS (d) = parm_list;
3869
3870 return t;
3871 }
3872
3873 \f
3874
3875 /* Push the declarations of builtin types into the global namespace.
3876 RID_INDEX is the index of the builtin type in the array
3877 RID_POINTERS. NAME is the name used when looking up the builtin
3878 type. TYPE is the _TYPE node for the builtin type.
3879
3880 The calls to set_global_binding below should be
3881 eliminated. Built-in types should not be looked up name; their
3882 names are keywords that the parser can recognize. However, there
3883 is code in c-common.c that uses identifier_global_value to look up
3884 built-in types by name. */
3885
3886 void
3887 record_builtin_type (enum rid rid_index,
3888 const char* name,
3889 tree type)
3890 {
3891 tree decl = NULL_TREE;
3892
3893 if (name)
3894 {
3895 tree tname = get_identifier (name);
3896 tree tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
3897 DECL_ARTIFICIAL (tdecl) = 1;
3898 set_global_binding (tdecl);
3899 decl = tdecl;
3900 }
3901
3902 if ((int) rid_index < (int) RID_MAX)
3903 if (tree rname = ridpointers[(int) rid_index])
3904 if (!decl || DECL_NAME (decl) != rname)
3905 {
3906 tree rdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
3907 DECL_ARTIFICIAL (rdecl) = 1;
3908 set_global_binding (rdecl);
3909 if (!decl)
3910 decl = rdecl;
3911 }
3912
3913 if (decl)
3914 {
3915 if (!TYPE_NAME (type))
3916 TYPE_NAME (type) = decl;
3917 debug_hooks->type_decl (decl, 0);
3918 }
3919 }
3920
3921 /* Push a type into the namespace so that the back ends ignore it. */
3922
3923 static void
3924 record_unknown_type (tree type, const char* name)
3925 {
3926 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
3927 TYPE_DECL, get_identifier (name), type));
3928 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3929 DECL_IGNORED_P (decl) = 1;
3930 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
3931 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
3932 SET_TYPE_ALIGN (type, 1);
3933 TYPE_USER_ALIGN (type) = 0;
3934 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
3935 }
3936
3937 /* Create all the predefined identifiers. */
3938
3939 static void
3940 initialize_predefined_identifiers (void)
3941 {
3942 struct predefined_identifier
3943 {
3944 const char *name; /* Name. */
3945 tree *node; /* Node to store it in. */
3946 cp_identifier_kind kind; /* Kind of identifier. */
3947 };
3948
3949 /* A table of identifiers to create at startup. */
3950 static const predefined_identifier predefined_identifiers[] = {
3951 {"C++", &lang_name_cplusplus, cik_normal},
3952 {"C", &lang_name_c, cik_normal},
3953 /* Some of these names have a trailing space so that it is
3954 impossible for them to conflict with names written by users. */
3955 {"__ct ", &ctor_identifier, cik_ctor},
3956 {"__ct_base ", &base_ctor_identifier, cik_ctor},
3957 {"__ct_comp ", &complete_ctor_identifier, cik_ctor},
3958 {"__dt ", &dtor_identifier, cik_dtor},
3959 {"__dt_base ", &base_dtor_identifier, cik_dtor},
3960 {"__dt_comp ", &complete_dtor_identifier, cik_dtor},
3961 {"__dt_del ", &deleting_dtor_identifier, cik_dtor},
3962 {"__conv_op ", &conv_op_identifier, cik_conv_op},
3963 {"__in_chrg", &in_charge_identifier, cik_normal},
3964 {"this", &this_identifier, cik_normal},
3965 {"__delta", &delta_identifier, cik_normal},
3966 {"__pfn", &pfn_identifier, cik_normal},
3967 {"_vptr", &vptr_identifier, cik_normal},
3968 {"__vtt_parm", &vtt_parm_identifier, cik_normal},
3969 {"::", &global_identifier, cik_normal},
3970 {"std", &std_identifier, cik_normal},
3971 /* The demangler expects anonymous namespaces to be called
3972 something starting with '_GLOBAL__N_'. It no longer needs
3973 to be unique to the TU. */
3974 {"_GLOBAL__N_1", &anon_identifier, cik_normal},
3975 {"auto", &auto_identifier, cik_normal},
3976 {"decltype(auto)", &decltype_auto_identifier, cik_normal},
3977 {"initializer_list", &init_list_identifier, cik_normal},
3978 {NULL, NULL, cik_normal}
3979 };
3980
3981 for (const predefined_identifier *pid = predefined_identifiers;
3982 pid->name; ++pid)
3983 {
3984 *pid->node = get_identifier (pid->name);
3985 /* Some of these identifiers already have a special kind. */
3986 if (pid->kind != cik_normal)
3987 set_identifier_kind (*pid->node, pid->kind);
3988 }
3989 }
3990
3991 /* Create the predefined scalar types of C,
3992 and some nodes representing standard constants (0, 1, (void *)0).
3993 Initialize the global binding level.
3994 Make definitions for built-in primitive functions. */
3995
3996 void
3997 cxx_init_decl_processing (void)
3998 {
3999 tree void_ftype;
4000 tree void_ftype_ptr;
4001
4002 /* Create all the identifiers we need. */
4003 initialize_predefined_identifiers ();
4004
4005 /* Create the global variables. */
4006 push_to_top_level ();
4007
4008 current_function_decl = NULL_TREE;
4009 current_binding_level = NULL;
4010 /* Enter the global namespace. */
4011 gcc_assert (global_namespace == NULL_TREE);
4012 global_namespace = build_lang_decl (NAMESPACE_DECL, global_identifier,
4013 void_type_node);
4014 TREE_PUBLIC (global_namespace) = 1;
4015 DECL_CONTEXT (global_namespace)
4016 = build_translation_unit_decl (get_identifier (main_input_filename));
4017 debug_hooks->register_main_translation_unit
4018 (DECL_CONTEXT (global_namespace));
4019 begin_scope (sk_namespace, global_namespace);
4020 current_namespace = global_namespace;
4021
4022 if (flag_visibility_ms_compat)
4023 default_visibility = VISIBILITY_HIDDEN;
4024
4025 /* Initially, C. */
4026 current_lang_name = lang_name_c;
4027
4028 /* Create the `std' namespace. */
4029 push_namespace (std_identifier);
4030 std_node = current_namespace;
4031 pop_namespace ();
4032
4033 flag_noexcept_type = (cxx_dialect >= cxx17);
4034
4035 c_common_nodes_and_builtins ();
4036
4037 integer_two_node = build_int_cst (NULL_TREE, 2);
4038
4039 /* Guess at the initial static decls size. */
4040 vec_alloc (static_decls, 500);
4041
4042 /* ... and keyed classes. */
4043 vec_alloc (keyed_classes, 100);
4044
4045 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
4046 truthvalue_type_node = boolean_type_node;
4047 truthvalue_false_node = boolean_false_node;
4048 truthvalue_true_node = boolean_true_node;
4049
4050 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
4051 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
4052 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
4053 noexcept_deferred_spec = build_tree_list (make_node (DEFERRED_NOEXCEPT),
4054 NULL_TREE);
4055
4056 #if 0
4057 record_builtin_type (RID_MAX, NULL, string_type_node);
4058 #endif
4059
4060 delta_type_node = ptrdiff_type_node;
4061 vtable_index_type = ptrdiff_type_node;
4062
4063 vtt_parm_type = build_pointer_type (const_ptr_type_node);
4064 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
4065 void_ftype_ptr = build_function_type_list (void_type_node,
4066 ptr_type_node, NULL_TREE);
4067 void_ftype_ptr
4068 = build_exception_variant (void_ftype_ptr, empty_except_spec);
4069
4070 /* Create the conversion operator marker. This operator's DECL_NAME
4071 is in the identifier table, so we can use identifier equality to
4072 find it. */
4073 conv_op_marker = build_lang_decl (FUNCTION_DECL, conv_op_identifier,
4074 void_ftype);
4075
4076 /* C++ extensions */
4077
4078 unknown_type_node = make_node (LANG_TYPE);
4079 record_unknown_type (unknown_type_node, "unknown type");
4080
4081 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
4082 TREE_TYPE (unknown_type_node) = unknown_type_node;
4083
4084 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
4085 result. */
4086 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
4087 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
4088
4089 init_list_type_node = make_node (LANG_TYPE);
4090 record_unknown_type (init_list_type_node, "init list");
4091
4092 {
4093 /* Make sure we get a unique function type, so we can give
4094 its pointer type a name. (This wins for gdb.) */
4095 tree vfunc_type = make_node (FUNCTION_TYPE);
4096 TREE_TYPE (vfunc_type) = integer_type_node;
4097 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
4098 layout_type (vfunc_type);
4099
4100 vtable_entry_type = build_pointer_type (vfunc_type);
4101 }
4102 record_builtin_type (RID_MAX, "__vtbl_ptr_type", vtable_entry_type);
4103
4104 vtbl_type_node
4105 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
4106 layout_type (vtbl_type_node);
4107 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
4108 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
4109 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
4110 layout_type (vtbl_ptr_type_node);
4111 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
4112
4113 push_namespace (get_identifier ("__cxxabiv1"));
4114 abi_node = current_namespace;
4115 pop_namespace ();
4116
4117 global_type_node = make_node (LANG_TYPE);
4118 record_unknown_type (global_type_node, "global type");
4119
4120 any_targ_node = make_node (LANG_TYPE);
4121 record_unknown_type (any_targ_node, "any type");
4122
4123 /* Now, C++. */
4124 current_lang_name = lang_name_cplusplus;
4125
4126 if (aligned_new_threshold > 1
4127 && !pow2p_hwi (aligned_new_threshold))
4128 {
4129 error ("-faligned-new=%d is not a power of two", aligned_new_threshold);
4130 aligned_new_threshold = 1;
4131 }
4132 if (aligned_new_threshold == -1)
4133 aligned_new_threshold = (cxx_dialect >= cxx17) ? 1 : 0;
4134 if (aligned_new_threshold == 1)
4135 aligned_new_threshold = malloc_alignment () / BITS_PER_UNIT;
4136
4137 {
4138 tree newattrs, extvisattr;
4139 tree newtype, deltype;
4140 tree ptr_ftype_sizetype;
4141 tree new_eh_spec;
4142
4143 ptr_ftype_sizetype
4144 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
4145 if (cxx_dialect == cxx98)
4146 {
4147 tree bad_alloc_id;
4148 tree bad_alloc_type_node;
4149 tree bad_alloc_decl;
4150
4151 push_namespace (std_identifier);
4152 bad_alloc_id = get_identifier ("bad_alloc");
4153 bad_alloc_type_node = make_class_type (RECORD_TYPE);
4154 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
4155 bad_alloc_decl
4156 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
4157 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
4158 pop_namespace ();
4159
4160 new_eh_spec
4161 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
4162 }
4163 else
4164 new_eh_spec = noexcept_false_spec;
4165
4166 /* Ensure attribs.c is initialized. */
4167 init_attributes ();
4168
4169 /* Ensure constraint.cc is initialized. */
4170 init_constraint_processing ();
4171
4172 extvisattr = build_tree_list (get_identifier ("externally_visible"),
4173 NULL_TREE);
4174 newattrs = tree_cons (get_identifier ("alloc_size"),
4175 build_tree_list (NULL_TREE, integer_one_node),
4176 extvisattr);
4177 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
4178 newtype = build_exception_variant (newtype, new_eh_spec);
4179 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
4180 deltype = build_exception_variant (deltype, empty_except_spec);
4181 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4182 DECL_IS_MALLOC (opnew) = 1;
4183 DECL_IS_OPERATOR_NEW (opnew) = 1;
4184 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4185 DECL_IS_MALLOC (opnew) = 1;
4186 DECL_IS_OPERATOR_NEW (opnew) = 1;
4187 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4188 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4189 if (flag_sized_deallocation)
4190 {
4191 /* Also push the sized deallocation variants:
4192 void operator delete(void*, std::size_t) throw();
4193 void operator delete[](void*, std::size_t) throw(); */
4194 tree void_ftype_ptr_size
4195 = build_function_type_list (void_type_node, ptr_type_node,
4196 size_type_node, NULL_TREE);
4197 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
4198 extvisattr);
4199 deltype = build_exception_variant (deltype, empty_except_spec);
4200 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4201 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4202 }
4203
4204 if (aligned_new_threshold)
4205 {
4206 push_namespace (std_identifier);
4207 tree align_id = get_identifier ("align_val_t");
4208 align_type_node = start_enum (align_id, NULL_TREE, size_type_node,
4209 NULL_TREE, /*scoped*/true, NULL);
4210 pop_namespace ();
4211
4212 /* operator new (size_t, align_val_t); */
4213 newtype = build_function_type_list (ptr_type_node, size_type_node,
4214 align_type_node, NULL_TREE);
4215 newtype = cp_build_type_attribute_variant (newtype, newattrs);
4216 newtype = build_exception_variant (newtype, new_eh_spec);
4217 opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4218 DECL_IS_MALLOC (opnew) = 1;
4219 DECL_IS_OPERATOR_NEW (opnew) = 1;
4220 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4221 DECL_IS_MALLOC (opnew) = 1;
4222 DECL_IS_OPERATOR_NEW (opnew) = 1;
4223
4224 /* operator delete (void *, align_val_t); */
4225 deltype = build_function_type_list (void_type_node, ptr_type_node,
4226 align_type_node, NULL_TREE);
4227 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4228 deltype = build_exception_variant (deltype, empty_except_spec);
4229 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4230 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4231
4232 if (flag_sized_deallocation)
4233 {
4234 /* operator delete (void *, size_t, align_val_t); */
4235 deltype = build_function_type_list (void_type_node, ptr_type_node,
4236 size_type_node, align_type_node,
4237 NULL_TREE);
4238 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4239 deltype = build_exception_variant (deltype, empty_except_spec);
4240 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4241 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4242 }
4243 }
4244
4245 nullptr_type_node = make_node (NULLPTR_TYPE);
4246 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
4247 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
4248 TYPE_UNSIGNED (nullptr_type_node) = 1;
4249 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
4250 if (abi_version_at_least (9))
4251 SET_TYPE_ALIGN (nullptr_type_node, GET_MODE_ALIGNMENT (ptr_mode));
4252 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
4253 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4254 nullptr_node = build_int_cst (nullptr_type_node, 0);
4255 }
4256
4257 abort_fndecl
4258 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4259 ECF_NORETURN | ECF_NOTHROW | ECF_COLD);
4260
4261 /* Perform other language dependent initializations. */
4262 init_class_processing ();
4263 init_rtti_processing ();
4264 init_template_processing ();
4265
4266 if (flag_exceptions)
4267 init_exception_processing ();
4268
4269 if (! supports_one_only ())
4270 flag_weak = 0;
4271
4272 make_fname_decl = cp_make_fname_decl;
4273 start_fname_decls ();
4274
4275 /* Show we use EH for cleanups. */
4276 if (flag_exceptions)
4277 using_eh_for_cleanups ();
4278 }
4279
4280 /* Generate an initializer for a function naming variable from
4281 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4282 filled in with the type of the init. */
4283
4284 tree
4285 cp_fname_init (const char* name, tree *type_p)
4286 {
4287 tree domain = NULL_TREE;
4288 tree type;
4289 tree init = NULL_TREE;
4290 size_t length = 0;
4291
4292 if (name)
4293 {
4294 length = strlen (name);
4295 domain = build_index_type (size_int (length));
4296 init = build_string (length + 1, name);
4297 }
4298
4299 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4300 type = build_cplus_array_type (type, domain);
4301
4302 *type_p = type;
4303
4304 if (init)
4305 TREE_TYPE (init) = type;
4306 else
4307 init = error_mark_node;
4308
4309 return init;
4310 }
4311
4312 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4313 the decl, LOC is the location to give the decl, NAME is the
4314 initialization string and TYPE_DEP indicates whether NAME depended
4315 on the type of the function. We make use of that to detect
4316 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4317 at the point of first use, so we mustn't push the decl now. */
4318
4319 static tree
4320 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4321 {
4322 const char *const name = (type_dep && processing_template_decl
4323 ? NULL : fname_as_string (type_dep));
4324 tree type;
4325 tree init = cp_fname_init (name, &type);
4326 tree decl = build_decl (loc, VAR_DECL, id, type);
4327
4328 if (name)
4329 free (CONST_CAST (char *, name));
4330
4331 TREE_STATIC (decl) = 1;
4332 TREE_READONLY (decl) = 1;
4333 DECL_ARTIFICIAL (decl) = 1;
4334
4335 TREE_USED (decl) = 1;
4336
4337 if (current_function_decl)
4338 {
4339 DECL_CONTEXT (decl) = current_function_decl;
4340 decl = pushdecl_outermost_localscope (decl);
4341 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
4342 LOOKUP_ONLYCONVERTING);
4343 }
4344 else
4345 {
4346 DECL_THIS_STATIC (decl) = true;
4347 pushdecl_top_level_and_finish (decl, init);
4348 }
4349
4350 return decl;
4351 }
4352
4353 static tree
4354 builtin_function_1 (tree decl, tree context, bool is_global)
4355 {
4356 tree id = DECL_NAME (decl);
4357 const char *name = IDENTIFIER_POINTER (id);
4358
4359 retrofit_lang_decl (decl);
4360
4361 DECL_ARTIFICIAL (decl) = 1;
4362 SET_OVERLOADED_OPERATOR_CODE (decl, ERROR_MARK);
4363 SET_DECL_LANGUAGE (decl, lang_c);
4364 /* Runtime library routines are, by definition, available in an
4365 external shared object. */
4366 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4367 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4368
4369 DECL_CONTEXT (decl) = context;
4370
4371 /* A function in the user's namespace should have an explicit
4372 declaration before it is used. Mark the built-in function as
4373 anticipated but not actually declared. */
4374 if (name[0] != '_' || name[1] != '_')
4375 DECL_ANTICIPATED (decl) = 1;
4376 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
4377 {
4378 size_t len = strlen (name);
4379
4380 /* Treat __*_chk fortification functions as anticipated as well,
4381 unless they are __builtin_*. */
4382 if (len > strlen ("___chk")
4383 && memcmp (name + len - strlen ("_chk"),
4384 "_chk", strlen ("_chk") + 1) == 0)
4385 DECL_ANTICIPATED (decl) = 1;
4386 }
4387
4388 if (is_global)
4389 pushdecl_top_level (decl);
4390 else
4391 pushdecl (decl);
4392
4393 return decl;
4394 }
4395
4396 tree
4397 cxx_builtin_function (tree decl)
4398 {
4399 tree id = DECL_NAME (decl);
4400 const char *name = IDENTIFIER_POINTER (id);
4401 /* All builtins that don't begin with an '_' should additionally
4402 go in the 'std' namespace. */
4403 if (name[0] != '_')
4404 {
4405 tree decl2 = copy_node(decl);
4406 push_namespace (std_identifier);
4407 builtin_function_1 (decl2, std_node, false);
4408 pop_namespace ();
4409 }
4410
4411 return builtin_function_1 (decl, NULL_TREE, false);
4412 }
4413
4414 /* Like cxx_builtin_function, but guarantee the function is added to the global
4415 scope. This is to allow function specific options to add new machine
4416 dependent builtins when the target ISA changes via attribute((target(...)))
4417 which saves space on program startup if the program does not use non-generic
4418 ISAs. */
4419
4420 tree
4421 cxx_builtin_function_ext_scope (tree decl)
4422 {
4423
4424 tree id = DECL_NAME (decl);
4425 const char *name = IDENTIFIER_POINTER (id);
4426 /* All builtins that don't begin with an '_' should additionally
4427 go in the 'std' namespace. */
4428 if (name[0] != '_')
4429 {
4430 tree decl2 = copy_node(decl);
4431 push_namespace (std_identifier);
4432 builtin_function_1 (decl2, std_node, true);
4433 pop_namespace ();
4434 }
4435
4436 return builtin_function_1 (decl, NULL_TREE, true);
4437 }
4438
4439 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4440 function. Not called directly. */
4441
4442 static tree
4443 build_library_fn (tree name, enum tree_code operator_code, tree type,
4444 int ecf_flags)
4445 {
4446 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4447 DECL_EXTERNAL (fn) = 1;
4448 TREE_PUBLIC (fn) = 1;
4449 DECL_ARTIFICIAL (fn) = 1;
4450 SET_OVERLOADED_OPERATOR_CODE (fn, operator_code);
4451 SET_DECL_LANGUAGE (fn, lang_c);
4452 /* Runtime library routines are, by definition, available in an
4453 external shared object. */
4454 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4455 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4456 set_call_expr_flags (fn, ecf_flags);
4457 return fn;
4458 }
4459
4460 /* Returns the _DECL for a library function with C++ linkage. */
4461
4462 static tree
4463 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4464 int ecf_flags)
4465 {
4466 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4467 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4468 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4469 return fn;
4470 }
4471
4472 /* Like build_library_fn, but takes a C string instead of an
4473 IDENTIFIER_NODE. */
4474
4475 tree
4476 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4477 {
4478 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4479 }
4480
4481 /* Like build_cp_library_fn, but takes a C string instead of an
4482 IDENTIFIER_NODE. */
4483
4484 tree
4485 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4486 {
4487 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4488 ecf_flags);
4489 }
4490
4491 /* Like build_library_fn, but also pushes the function so that we will
4492 be able to find it via get_global_binding. Also, the function
4493 may throw exceptions listed in RAISES. */
4494
4495 tree
4496 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4497 {
4498 tree fn;
4499
4500 if (raises)
4501 type = build_exception_variant (type, raises);
4502
4503 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4504 pushdecl_top_level (fn);
4505 return fn;
4506 }
4507
4508 /* Like build_cp_library_fn, but also pushes the function so that it
4509 will be found by normal lookup. */
4510
4511 static tree
4512 push_cp_library_fn (enum tree_code operator_code, tree type,
4513 int ecf_flags)
4514 {
4515 tree fn = build_cp_library_fn (cp_operator_id (operator_code),
4516 operator_code,
4517 type, ecf_flags);
4518 pushdecl (fn);
4519 if (flag_tm)
4520 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4521 return fn;
4522 }
4523
4524 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4525 a FUNCTION_TYPE. */
4526
4527 tree
4528 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4529 {
4530 tree type = build_function_type (void_type_node, parmtypes);
4531 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4532 }
4533
4534 /* Like push_library_fn, but also note that this function throws
4535 and does not return. Used for __throw_foo and the like. */
4536
4537 tree
4538 push_throw_library_fn (tree name, tree type)
4539 {
4540 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN | ECF_COLD);
4541 return fn;
4542 }
4543 \f
4544 /* When we call finish_struct for an anonymous union, we create
4545 default copy constructors and such. But, an anonymous union
4546 shouldn't have such things; this function undoes the damage to the
4547 anonymous union type T.
4548
4549 (The reason that we create the synthesized methods is that we don't
4550 distinguish `union { int i; }' from `typedef union { int i; } U'.
4551 The first is an anonymous union; the second is just an ordinary
4552 union type.) */
4553
4554 void
4555 fixup_anonymous_aggr (tree t)
4556 {
4557 /* Wipe out memory of synthesized methods. */
4558 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4559 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4560 TYPE_HAS_COPY_CTOR (t) = 0;
4561 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4562 TYPE_HAS_COPY_ASSIGN (t) = 0;
4563 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4564
4565 /* Splice the implicitly generated functions out of TYPE_FIELDS. */
4566 for (tree probe, *prev_p = &TYPE_FIELDS (t); (probe = *prev_p);)
4567 if (TREE_CODE (probe) == FUNCTION_DECL && DECL_ARTIFICIAL (probe))
4568 *prev_p = DECL_CHAIN (probe);
4569 else
4570 prev_p = &DECL_CHAIN (probe);
4571
4572 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4573 assignment operators (because they cannot have these methods themselves).
4574 For anonymous unions this is already checked because they are not allowed
4575 in any union, otherwise we have to check it. */
4576 if (TREE_CODE (t) != UNION_TYPE)
4577 {
4578 tree field, type;
4579
4580 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4581 if (TREE_CODE (field) == FIELD_DECL)
4582 {
4583 type = TREE_TYPE (field);
4584 if (CLASS_TYPE_P (type))
4585 {
4586 if (TYPE_NEEDS_CONSTRUCTING (type))
4587 error ("member %q+#D with constructor not allowed "
4588 "in anonymous aggregate", field);
4589 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4590 error ("member %q+#D with destructor not allowed "
4591 "in anonymous aggregate", field);
4592 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4593 error ("member %q+#D with copy assignment operator "
4594 "not allowed in anonymous aggregate", field);
4595 }
4596 }
4597 }
4598 }
4599
4600 /* Warn for an attribute located at LOCATION that appertains to the
4601 class type CLASS_TYPE that has not been properly placed after its
4602 class-key, in it class-specifier. */
4603
4604 void
4605 warn_misplaced_attr_for_class_type (source_location location,
4606 tree class_type)
4607 {
4608 gcc_assert (OVERLOAD_TYPE_P (class_type));
4609
4610 if (warning_at (location, OPT_Wattributes,
4611 "attribute ignored in declaration "
4612 "of %q#T", class_type))
4613 inform (location,
4614 "attribute for %q#T must follow the %qs keyword",
4615 class_type, class_key_or_enum_as_string (class_type));
4616 }
4617
4618 /* Make sure that a declaration with no declarator is well-formed, i.e.
4619 just declares a tagged type or anonymous union.
4620
4621 Returns the type declared; or NULL_TREE if none. */
4622
4623 tree
4624 check_tag_decl (cp_decl_specifier_seq *declspecs,
4625 bool explicit_type_instantiation_p)
4626 {
4627 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4628 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4629 /* If a class, struct, or enum type is declared by the DECLSPECS
4630 (i.e, if a class-specifier, enum-specifier, or non-typename
4631 elaborated-type-specifier appears in the DECLSPECS),
4632 DECLARED_TYPE is set to the corresponding type. */
4633 tree declared_type = NULL_TREE;
4634 bool error_p = false;
4635
4636 if (declspecs->multiple_types_p)
4637 error ("multiple types in one declaration");
4638 else if (declspecs->redefined_builtin_type)
4639 {
4640 if (!in_system_header_at (input_location))
4641 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4642 "redeclaration of C++ built-in type %qT",
4643 declspecs->redefined_builtin_type);
4644 return NULL_TREE;
4645 }
4646
4647 if (declspecs->type
4648 && TYPE_P (declspecs->type)
4649 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4650 && MAYBE_CLASS_TYPE_P (declspecs->type))
4651 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4652 declared_type = declspecs->type;
4653 else if (declspecs->type == error_mark_node)
4654 error_p = true;
4655 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
4656 permerror (input_location, "declaration does not declare anything");
4657 else if (declared_type != NULL_TREE && type_uses_auto (declared_type))
4658 {
4659 error_at (declspecs->locations[ds_type_spec],
4660 "%<auto%> can only be specified for variables "
4661 "or function declarations");
4662 return error_mark_node;
4663 }
4664 /* Check for an anonymous union. */
4665 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4666 && TYPE_UNNAMED_P (declared_type))
4667 {
4668 /* 7/3 In a simple-declaration, the optional init-declarator-list
4669 can be omitted only when declaring a class (clause 9) or
4670 enumeration (7.2), that is, when the decl-specifier-seq contains
4671 either a class-specifier, an elaborated-type-specifier with
4672 a class-key (9.1), or an enum-specifier. In these cases and
4673 whenever a class-specifier or enum-specifier is present in the
4674 decl-specifier-seq, the identifiers in these specifiers are among
4675 the names being declared by the declaration (as class-name,
4676 enum-names, or enumerators, depending on the syntax). In such
4677 cases, and except for the declaration of an unnamed bit-field (9.6),
4678 the decl-specifier-seq shall introduce one or more names into the
4679 program, or shall redeclare a name introduced by a previous
4680 declaration. [Example:
4681 enum { }; // ill-formed
4682 typedef class { }; // ill-formed
4683 --end example] */
4684 if (saw_typedef)
4685 {
4686 error ("missing type-name in typedef-declaration");
4687 return NULL_TREE;
4688 }
4689 /* Anonymous unions are objects, so they can have specifiers. */;
4690 SET_ANON_AGGR_TYPE_P (declared_type);
4691
4692 if (TREE_CODE (declared_type) != UNION_TYPE
4693 && !in_system_header_at (input_location))
4694 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4695 }
4696
4697 else
4698 {
4699 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
4700 error_at (declspecs->locations[ds_inline],
4701 "%<inline%> can only be specified for functions");
4702 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4703 error_at (declspecs->locations[ds_virtual],
4704 "%<virtual%> can only be specified for functions");
4705 else if (saw_friend
4706 && (!current_class_type
4707 || current_scope () != current_class_type))
4708 error_at (declspecs->locations[ds_friend],
4709 "%<friend%> can only be specified inside a class");
4710 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4711 error_at (declspecs->locations[ds_explicit],
4712 "%<explicit%> can only be specified for constructors");
4713 else if (declspecs->storage_class)
4714 error_at (declspecs->locations[ds_storage_class],
4715 "a storage class can only be specified for objects "
4716 "and functions");
4717 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
4718 error_at (declspecs->locations[ds_const],
4719 "%<const%> can only be specified for objects and "
4720 "functions");
4721 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
4722 error_at (declspecs->locations[ds_volatile],
4723 "%<volatile%> can only be specified for objects and "
4724 "functions");
4725 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
4726 error_at (declspecs->locations[ds_restrict],
4727 "%<__restrict%> can only be specified for objects and "
4728 "functions");
4729 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
4730 error_at (declspecs->locations[ds_thread],
4731 "%<__thread%> can only be specified for objects "
4732 "and functions");
4733 else if (saw_typedef)
4734 warning_at (declspecs->locations[ds_typedef], 0,
4735 "%<typedef%> was ignored in this declaration");
4736 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4737 error_at (declspecs->locations[ds_constexpr],
4738 "%<constexpr%> cannot be used for type declarations");
4739 }
4740
4741 if (declspecs->attributes && warn_attributes && declared_type)
4742 {
4743 location_t loc;
4744 if (!CLASS_TYPE_P (declared_type)
4745 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4746 /* For a non-template class, use the name location. */
4747 loc = location_of (declared_type);
4748 else
4749 /* For a template class (an explicit instantiation), use the
4750 current location. */
4751 loc = input_location;
4752
4753 if (explicit_type_instantiation_p)
4754 /* [dcl.attr.grammar]/4:
4755
4756 No attribute-specifier-seq shall appertain to an explicit
4757 instantiation. */
4758 {
4759 if (warning_at (loc, OPT_Wattributes,
4760 "attribute ignored in explicit instantiation %q#T",
4761 declared_type))
4762 inform (loc,
4763 "no attribute can be applied to "
4764 "an explicit instantiation");
4765 }
4766 else
4767 warn_misplaced_attr_for_class_type (loc, declared_type);
4768 }
4769
4770 return declared_type;
4771 }
4772
4773 /* Called when a declaration is seen that contains no names to declare.
4774 If its type is a reference to a structure, union or enum inherited
4775 from a containing scope, shadow that tag name for the current scope
4776 with a forward reference.
4777 If its type defines a new named structure or union
4778 or defines an enum, it is valid but we need not do anything here.
4779 Otherwise, it is an error.
4780
4781 C++: may have to grok the declspecs to learn about static,
4782 complain for anonymous unions.
4783
4784 Returns the TYPE declared -- or NULL_TREE if none. */
4785
4786 tree
4787 shadow_tag (cp_decl_specifier_seq *declspecs)
4788 {
4789 tree t = check_tag_decl (declspecs,
4790 /*explicit_type_instantiation_p=*/false);
4791
4792 if (!t)
4793 return NULL_TREE;
4794
4795 if (maybe_process_partial_specialization (t) == error_mark_node)
4796 return NULL_TREE;
4797
4798 /* This is where the variables in an anonymous union are
4799 declared. An anonymous union declaration looks like:
4800 union { ... } ;
4801 because there is no declarator after the union, the parser
4802 sends that declaration here. */
4803 if (ANON_AGGR_TYPE_P (t))
4804 {
4805 fixup_anonymous_aggr (t);
4806
4807 if (TYPE_FIELDS (t))
4808 {
4809 tree decl = grokdeclarator (/*declarator=*/NULL,
4810 declspecs, NORMAL, 0, NULL);
4811 finish_anon_union (decl);
4812 }
4813 }
4814
4815 return t;
4816 }
4817 \f
4818 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4819
4820 tree
4821 groktypename (cp_decl_specifier_seq *type_specifiers,
4822 const cp_declarator *declarator,
4823 bool is_template_arg)
4824 {
4825 tree attrs;
4826 tree type;
4827 enum decl_context context
4828 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
4829 attrs = type_specifiers->attributes;
4830 type_specifiers->attributes = NULL_TREE;
4831 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
4832 if (attrs && type != error_mark_node)
4833 {
4834 if (CLASS_TYPE_P (type))
4835 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
4836 "outside of definition", type);
4837 else if (MAYBE_CLASS_TYPE_P (type))
4838 /* A template type parameter or other dependent type. */
4839 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
4840 "type %qT without an associated declaration", type);
4841 else
4842 cplus_decl_attributes (&type, attrs, 0);
4843 }
4844 return type;
4845 }
4846
4847 /* Process a DECLARATOR for a function-scope variable declaration,
4848 namespace-scope variable declaration, or function declaration.
4849 (Function definitions go through start_function; class member
4850 declarations appearing in the body of the class go through
4851 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4852 If an error occurs, the error_mark_node is returned instead.
4853
4854 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
4855 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
4856 for an explicitly defaulted function, or SD_DELETED for an explicitly
4857 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
4858 implicitly initialized via a default constructor. ATTRIBUTES and
4859 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
4860
4861 The scope represented by the context of the returned DECL is pushed
4862 (if it is not the global namespace) and is assigned to
4863 *PUSHED_SCOPE_P. The caller is then responsible for calling
4864 pop_scope on *PUSHED_SCOPE_P if it is set. */
4865
4866 tree
4867 start_decl (const cp_declarator *declarator,
4868 cp_decl_specifier_seq *declspecs,
4869 int initialized,
4870 tree attributes,
4871 tree prefix_attributes,
4872 tree *pushed_scope_p)
4873 {
4874 tree decl;
4875 tree context;
4876 bool was_public;
4877 int flags;
4878 bool alias;
4879
4880 *pushed_scope_p = NULL_TREE;
4881
4882 /* An object declared as __attribute__((deprecated)) suppresses
4883 warnings of uses of other deprecated items. */
4884 if (lookup_attribute ("deprecated", attributes))
4885 deprecated_state = DEPRECATED_SUPPRESS;
4886
4887 attributes = chainon (attributes, prefix_attributes);
4888
4889 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
4890 &attributes);
4891
4892 deprecated_state = DEPRECATED_NORMAL;
4893
4894 if (decl == NULL_TREE || VOID_TYPE_P (decl)
4895 || decl == error_mark_node)
4896 return error_mark_node;
4897
4898 context = CP_DECL_CONTEXT (decl);
4899 if (context != global_namespace)
4900 *pushed_scope_p = push_scope (context);
4901
4902 /* Is it valid for this decl to have an initializer at all?
4903 If not, set INITIALIZED to zero, which will indirectly
4904 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4905 if (initialized
4906 && TREE_CODE (decl) == TYPE_DECL)
4907 {
4908 error ("typedef %qD is initialized (use decltype instead)", decl);
4909 return error_mark_node;
4910 }
4911
4912 if (initialized)
4913 {
4914 if (! toplevel_bindings_p ()
4915 && DECL_EXTERNAL (decl))
4916 warning (0, "declaration of %q#D has %<extern%> and is initialized",
4917 decl);
4918 DECL_EXTERNAL (decl) = 0;
4919 if (toplevel_bindings_p ())
4920 TREE_STATIC (decl) = 1;
4921 }
4922 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
4923
4924 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
4925 record_key_method_defined (decl);
4926
4927 /* If this is a typedef that names the class for linkage purposes
4928 (7.1.3p8), apply any attributes directly to the type. */
4929 if (TREE_CODE (decl) == TYPE_DECL
4930 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
4931 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
4932 flags = ATTR_FLAG_TYPE_IN_PLACE;
4933 else
4934 flags = 0;
4935
4936 /* Set attributes here so if duplicate decl, will have proper attributes. */
4937 cplus_decl_attributes (&decl, attributes, flags);
4938
4939 /* Dllimported symbols cannot be defined. Static data members (which
4940 can be initialized in-class and dllimported) go through grokfield,
4941 not here, so we don't need to exclude those decls when checking for
4942 a definition. */
4943 if (initialized && DECL_DLLIMPORT_P (decl))
4944 {
4945 error ("definition of %q#D is marked %<dllimport%>", decl);
4946 DECL_DLLIMPORT_P (decl) = 0;
4947 }
4948
4949 /* If #pragma weak was used, mark the decl weak now. */
4950 if (!processing_template_decl)
4951 maybe_apply_pragma_weak (decl);
4952
4953 if (TREE_CODE (decl) == FUNCTION_DECL
4954 && DECL_DECLARED_INLINE_P (decl)
4955 && DECL_UNINLINABLE (decl)
4956 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4957 warning_at (DECL_SOURCE_LOCATION (decl), 0,
4958 "inline function %qD given attribute noinline", decl);
4959
4960 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
4961 {
4962 bool this_tmpl = (processing_template_decl
4963 > template_class_depth (context));
4964 if (VAR_P (decl))
4965 {
4966 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
4967 if (field == NULL_TREE
4968 || !(VAR_P (field) || variable_template_p (field)))
4969 error ("%q+#D is not a static data member of %q#T", decl, context);
4970 else if (variable_template_p (field) && !this_tmpl)
4971 {
4972 if (DECL_LANG_SPECIFIC (decl)
4973 && DECL_TEMPLATE_SPECIALIZATION (decl))
4974 /* OK, specialization was already checked. */;
4975 else
4976 {
4977 error_at (DECL_SOURCE_LOCATION (decl),
4978 "non-member-template declaration of %qD", decl);
4979 inform (DECL_SOURCE_LOCATION (field), "does not match "
4980 "member template declaration here");
4981 return error_mark_node;
4982 }
4983 }
4984 else
4985 {
4986 if (variable_template_p (field))
4987 field = DECL_TEMPLATE_RESULT (field);
4988
4989 if (DECL_CONTEXT (field) != context)
4990 {
4991 if (!same_type_p (DECL_CONTEXT (field), context))
4992 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
4993 "to be defined as %<%T::%D%>",
4994 DECL_CONTEXT (field), DECL_NAME (decl),
4995 context, DECL_NAME (decl));
4996 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
4997 }
4998 /* Static data member are tricky; an in-class initialization
4999 still doesn't provide a definition, so the in-class
5000 declaration will have DECL_EXTERNAL set, but will have an
5001 initialization. Thus, duplicate_decls won't warn
5002 about this situation, and so we check here. */
5003 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
5004 error ("duplicate initialization of %qD", decl);
5005 field = duplicate_decls (decl, field,
5006 /*newdecl_is_friend=*/false);
5007 if (field == error_mark_node)
5008 return error_mark_node;
5009 else if (field)
5010 decl = field;
5011 }
5012 }
5013 else
5014 {
5015 tree field = check_classfn (context, decl,
5016 this_tmpl
5017 ? current_template_parms
5018 : NULL_TREE);
5019 if (field && field != error_mark_node
5020 && duplicate_decls (decl, field,
5021 /*newdecl_is_friend=*/false))
5022 decl = field;
5023 }
5024
5025 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
5026 DECL_IN_AGGR_P (decl) = 0;
5027 /* Do not mark DECL as an explicit specialization if it was not
5028 already marked as an instantiation; a declaration should
5029 never be marked as a specialization unless we know what
5030 template is being specialized. */
5031 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
5032 {
5033 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
5034 if (TREE_CODE (decl) == FUNCTION_DECL)
5035 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
5036 && DECL_DECLARED_INLINE_P (decl));
5037 else
5038 DECL_COMDAT (decl) = false;
5039
5040 /* [temp.expl.spec] An explicit specialization of a static data
5041 member of a template is a definition if the declaration
5042 includes an initializer; otherwise, it is a declaration.
5043
5044 We check for processing_specialization so this only applies
5045 to the new specialization syntax. */
5046 if (!initialized && processing_specialization)
5047 DECL_EXTERNAL (decl) = 1;
5048 }
5049
5050 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
5051 /* Aliases are definitions. */
5052 && !alias)
5053 permerror (input_location, "declaration of %q#D outside of class is not definition",
5054 decl);
5055 }
5056
5057 was_public = TREE_PUBLIC (decl);
5058
5059 /* Enter this declaration into the symbol table. Don't push the plain
5060 VAR_DECL for a variable template. */
5061 if (!template_parm_scope_p ()
5062 || !VAR_P (decl))
5063 decl = maybe_push_decl (decl);
5064
5065 if (processing_template_decl)
5066 decl = push_template_decl (decl);
5067 if (decl == error_mark_node)
5068 return error_mark_node;
5069
5070 if (VAR_P (decl)
5071 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
5072 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
5073 {
5074 /* This is a const variable with implicit 'static'. Set
5075 DECL_THIS_STATIC so we can tell it from variables that are
5076 !TREE_PUBLIC because of the anonymous namespace. */
5077 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
5078 DECL_THIS_STATIC (decl) = 1;
5079 }
5080
5081 if (current_function_decl && VAR_P (decl)
5082 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
5083 {
5084 bool ok = false;
5085 if (CP_DECL_THREAD_LOCAL_P (decl))
5086 error ("%qD declared %<thread_local%> in %<constexpr%> function",
5087 decl);
5088 else if (TREE_STATIC (decl))
5089 error ("%qD declared %<static%> in %<constexpr%> function", decl);
5090 else
5091 ok = true;
5092 if (!ok)
5093 cp_function_chain->invalid_constexpr = true;
5094 }
5095
5096 if (!processing_template_decl && VAR_P (decl))
5097 start_decl_1 (decl, initialized);
5098
5099 return decl;
5100 }
5101
5102 /* Process the declaration of a variable DECL. INITIALIZED is true
5103 iff DECL is explicitly initialized. (INITIALIZED is false if the
5104 variable is initialized via an implicitly-called constructor.)
5105 This function must be called for ordinary variables (including, for
5106 example, implicit instantiations of templates), but must not be
5107 called for template declarations. */
5108
5109 void
5110 start_decl_1 (tree decl, bool initialized)
5111 {
5112 tree type;
5113 bool complete_p;
5114 bool aggregate_definition_p;
5115
5116 gcc_assert (!processing_template_decl);
5117
5118 if (error_operand_p (decl))
5119 return;
5120
5121 gcc_assert (VAR_P (decl));
5122
5123 type = TREE_TYPE (decl);
5124 complete_p = COMPLETE_TYPE_P (type);
5125 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
5126
5127 /* If an explicit initializer is present, or if this is a definition
5128 of an aggregate, then we need a complete type at this point.
5129 (Scalars are always complete types, so there is nothing to
5130 check.) This code just sets COMPLETE_P; errors (if necessary)
5131 are issued below. */
5132 if ((initialized || aggregate_definition_p)
5133 && !complete_p
5134 && COMPLETE_TYPE_P (complete_type (type)))
5135 {
5136 complete_p = true;
5137 /* We will not yet have set TREE_READONLY on DECL if the type
5138 was "const", but incomplete, before this point. But, now, we
5139 have a complete type, so we can try again. */
5140 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
5141 }
5142
5143 if (initialized)
5144 /* Is it valid for this decl to have an initializer at all? */
5145 {
5146 /* Don't allow initializations for incomplete types except for
5147 arrays which might be completed by the initialization. */
5148 if (complete_p)
5149 ; /* A complete type is ok. */
5150 else if (type_uses_auto (type))
5151 ; /* An auto type is ok. */
5152 else if (TREE_CODE (type) != ARRAY_TYPE)
5153 {
5154 error ("variable %q#D has initializer but incomplete type", decl);
5155 type = TREE_TYPE (decl) = error_mark_node;
5156 }
5157 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
5158 {
5159 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5160 error ("elements of array %q#D have incomplete type", decl);
5161 /* else we already gave an error in start_decl. */
5162 }
5163 }
5164 else if (aggregate_definition_p && !complete_p)
5165 {
5166 if (type_uses_auto (type))
5167 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (type));
5168 else
5169 {
5170 error ("aggregate %q#D has incomplete type and cannot be defined",
5171 decl);
5172 /* Change the type so that assemble_variable will give
5173 DECL an rtl we can live with: (mem (const_int 0)). */
5174 type = TREE_TYPE (decl) = error_mark_node;
5175 }
5176 }
5177
5178 /* Create a new scope to hold this declaration if necessary.
5179 Whether or not a new scope is necessary cannot be determined
5180 until after the type has been completed; if the type is a
5181 specialization of a class template it is not until after
5182 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5183 will be set correctly. */
5184 maybe_push_cleanup_level (type);
5185 }
5186
5187 /* Handle initialization of references. DECL, TYPE, and INIT have the
5188 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
5189 but will be set to a new CLEANUP_STMT if a temporary is created
5190 that must be destroyed subsequently.
5191
5192 Returns an initializer expression to use to initialize DECL, or
5193 NULL if the initialization can be performed statically.
5194
5195 Quotes on semantics can be found in ARM 8.4.3. */
5196
5197 static tree
5198 grok_reference_init (tree decl, tree type, tree init, int flags)
5199 {
5200 if (init == NULL_TREE)
5201 {
5202 if ((DECL_LANG_SPECIFIC (decl) == 0
5203 || DECL_IN_AGGR_P (decl) == 0)
5204 && ! DECL_THIS_EXTERN (decl))
5205 error ("%qD declared as reference but not initialized", decl);
5206 return NULL_TREE;
5207 }
5208
5209 if (TREE_CODE (init) == TREE_LIST)
5210 init = build_x_compound_expr_from_list (init, ELK_INIT,
5211 tf_warning_or_error);
5212
5213 tree ttype = TREE_TYPE (type);
5214 if (TREE_CODE (ttype) != ARRAY_TYPE
5215 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
5216 /* Note: default conversion is only called in very special cases. */
5217 init = decay_conversion (init, tf_warning_or_error);
5218
5219 /* check_initializer handles this for non-reference variables, but for
5220 references we need to do it here or the initializer will get the
5221 incomplete array type and confuse later calls to
5222 cp_complete_array_type. */
5223 if (TREE_CODE (ttype) == ARRAY_TYPE
5224 && TYPE_DOMAIN (ttype) == NULL_TREE
5225 && (BRACE_ENCLOSED_INITIALIZER_P (init)
5226 || TREE_CODE (init) == STRING_CST))
5227 {
5228 cp_complete_array_type (&ttype, init, false);
5229 if (ttype != TREE_TYPE (type))
5230 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
5231 }
5232
5233 /* Convert INIT to the reference type TYPE. This may involve the
5234 creation of a temporary, whose lifetime must be the same as that
5235 of the reference. If so, a DECL_EXPR for the temporary will be
5236 added just after the DECL_EXPR for DECL. That's why we don't set
5237 DECL_INITIAL for local references (instead assigning to them
5238 explicitly); we need to allow the temporary to be initialized
5239 first. */
5240 return initialize_reference (type, init, flags,
5241 tf_warning_or_error);
5242 }
5243
5244 /* Designated initializers in arrays are not supported in GNU C++.
5245 The parser cannot detect this error since it does not know whether
5246 a given brace-enclosed initializer is for a class type or for an
5247 array. This function checks that CE does not use a designated
5248 initializer. If it does, an error is issued. Returns true if CE
5249 is valid, i.e., does not have a designated initializer. */
5250
5251 static bool
5252 check_array_designated_initializer (constructor_elt *ce,
5253 unsigned HOST_WIDE_INT index)
5254 {
5255 /* Designated initializers for array elements are not supported. */
5256 if (ce->index)
5257 {
5258 /* The parser only allows identifiers as designated
5259 initializers. */
5260 if (ce->index == error_mark_node)
5261 {
5262 error ("name used in a GNU-style designated "
5263 "initializer for an array");
5264 return false;
5265 }
5266 else if (identifier_p (ce->index))
5267 {
5268 error ("name %qD used in a GNU-style designated "
5269 "initializer for an array", ce->index);
5270 return false;
5271 }
5272
5273 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5274 ce->index, true);
5275 if (ce_index
5276 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
5277 && (TREE_CODE (ce_index = maybe_constant_value (ce_index))
5278 == INTEGER_CST))
5279 {
5280 /* A C99 designator is OK if it matches the current index. */
5281 if (wi::to_wide (ce_index) == index)
5282 return true;
5283 else
5284 sorry ("non-trivial designated initializers not supported");
5285 }
5286 else
5287 error ("C99 designator %qE is not an integral constant-expression",
5288 ce->index);
5289
5290 return false;
5291 }
5292
5293 return true;
5294 }
5295
5296 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5297 array until we finish parsing the initializer. If that's the
5298 situation we're in, update DECL accordingly. */
5299
5300 static void
5301 maybe_deduce_size_from_array_init (tree decl, tree init)
5302 {
5303 tree type = TREE_TYPE (decl);
5304
5305 if (TREE_CODE (type) == ARRAY_TYPE
5306 && TYPE_DOMAIN (type) == NULL_TREE
5307 && TREE_CODE (decl) != TYPE_DECL)
5308 {
5309 /* do_default is really a C-ism to deal with tentative definitions.
5310 But let's leave it here to ease the eventual merge. */
5311 int do_default = !DECL_EXTERNAL (decl);
5312 tree initializer = init ? init : DECL_INITIAL (decl);
5313 int failure = 0;
5314
5315 /* Check that there are no designated initializers in INIT, as
5316 those are not supported in GNU C++, and as the middle-end
5317 will crash if presented with a non-numeric designated
5318 initializer. */
5319 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
5320 {
5321 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
5322 constructor_elt *ce;
5323 HOST_WIDE_INT i;
5324 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
5325 if (!check_array_designated_initializer (ce, i))
5326 failure = 1;
5327 }
5328
5329 if (!failure)
5330 {
5331 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
5332 do_default);
5333 if (failure == 1)
5334 {
5335 error_at (EXPR_LOC_OR_LOC (initializer,
5336 DECL_SOURCE_LOCATION (decl)),
5337 "initializer fails to determine size of %qD", decl);
5338 }
5339 else if (failure == 2)
5340 {
5341 if (do_default)
5342 {
5343 error_at (DECL_SOURCE_LOCATION (decl),
5344 "array size missing in %qD", decl);
5345 }
5346 /* If a `static' var's size isn't known, make it extern as
5347 well as static, so it does not get allocated. If it's not
5348 `static', then don't mark it extern; finish_incomplete_decl
5349 will give it a default size and it will get allocated. */
5350 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
5351 DECL_EXTERNAL (decl) = 1;
5352 }
5353 else if (failure == 3)
5354 {
5355 error_at (DECL_SOURCE_LOCATION (decl),
5356 "zero-size array %qD", decl);
5357 }
5358 }
5359
5360 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
5361
5362 relayout_decl (decl);
5363 }
5364 }
5365
5366 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5367 any appropriate error messages regarding the layout. */
5368
5369 static void
5370 layout_var_decl (tree decl)
5371 {
5372 tree type;
5373
5374 type = TREE_TYPE (decl);
5375 if (type == error_mark_node)
5376 return;
5377
5378 /* If we haven't already laid out this declaration, do so now.
5379 Note that we must not call complete type for an external object
5380 because it's type might involve templates that we are not
5381 supposed to instantiate yet. (And it's perfectly valid to say
5382 `extern X x' for some incomplete type `X'.) */
5383 if (!DECL_EXTERNAL (decl))
5384 complete_type (type);
5385 if (!DECL_SIZE (decl)
5386 && TREE_TYPE (decl) != error_mark_node
5387 && complete_or_array_type_p (type))
5388 layout_decl (decl, 0);
5389
5390 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
5391 {
5392 /* An automatic variable with an incomplete type: that is an error.
5393 Don't talk about array types here, since we took care of that
5394 message in grokdeclarator. */
5395 error_at (DECL_SOURCE_LOCATION (decl),
5396 "storage size of %qD isn%'t known", decl);
5397 TREE_TYPE (decl) = error_mark_node;
5398 }
5399 #if 0
5400 /* Keep this code around in case we later want to control debug info
5401 based on whether a type is "used". (jason 1999-11-11) */
5402
5403 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
5404 /* Let debugger know it should output info for this type. */
5405 note_debug_info_needed (ttype);
5406
5407 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
5408 note_debug_info_needed (DECL_CONTEXT (decl));
5409 #endif
5410
5411 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
5412 && DECL_SIZE (decl) != NULL_TREE
5413 && ! TREE_CONSTANT (DECL_SIZE (decl)))
5414 {
5415 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
5416 constant_expression_warning (DECL_SIZE (decl));
5417 else
5418 {
5419 error_at (DECL_SOURCE_LOCATION (decl),
5420 "storage size of %qD isn%'t constant", decl);
5421 TREE_TYPE (decl) = error_mark_node;
5422 }
5423 }
5424 }
5425
5426 /* If a local static variable is declared in an inline function, or if
5427 we have a weak definition, we must endeavor to create only one
5428 instance of the variable at link-time. */
5429
5430 void
5431 maybe_commonize_var (tree decl)
5432 {
5433 /* Static data in a function with comdat linkage also has comdat
5434 linkage. */
5435 if ((TREE_STATIC (decl)
5436 /* Don't mess with __FUNCTION__. */
5437 && ! DECL_ARTIFICIAL (decl)
5438 && DECL_FUNCTION_SCOPE_P (decl)
5439 && vague_linkage_p (DECL_CONTEXT (decl)))
5440 || (TREE_PUBLIC (decl) && DECL_INLINE_VAR_P (decl)))
5441 {
5442 if (flag_weak)
5443 {
5444 /* With weak symbols, we simply make the variable COMDAT;
5445 that will cause copies in multiple translations units to
5446 be merged. */
5447 comdat_linkage (decl);
5448 }
5449 else
5450 {
5451 if (DECL_INITIAL (decl) == NULL_TREE
5452 || DECL_INITIAL (decl) == error_mark_node)
5453 {
5454 /* Without weak symbols, we can use COMMON to merge
5455 uninitialized variables. */
5456 TREE_PUBLIC (decl) = 1;
5457 DECL_COMMON (decl) = 1;
5458 }
5459 else
5460 {
5461 /* While for initialized variables, we must use internal
5462 linkage -- which means that multiple copies will not
5463 be merged. */
5464 TREE_PUBLIC (decl) = 0;
5465 DECL_COMMON (decl) = 0;
5466 const char *msg;
5467 if (DECL_INLINE_VAR_P (decl))
5468 msg = G_("sorry: semantics of inline variable "
5469 "%q#D are wrong (you%'ll wind up with "
5470 "multiple copies)");
5471 else
5472 msg = G_("sorry: semantics of inline function "
5473 "static data %q#D are wrong (you%'ll wind "
5474 "up with multiple copies)");
5475 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
5476 msg, decl))
5477 inform (DECL_SOURCE_LOCATION (decl),
5478 "you can work around this by removing the initializer");
5479 }
5480 }
5481 }
5482 }
5483
5484 /* Issue an error message if DECL is an uninitialized const variable. */
5485
5486 static void
5487 check_for_uninitialized_const_var (tree decl)
5488 {
5489 tree type = strip_array_types (TREE_TYPE (decl));
5490
5491 /* ``Unless explicitly declared extern, a const object does not have
5492 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5493 7.1.6 */
5494 if (VAR_P (decl)
5495 && TREE_CODE (type) != REFERENCE_TYPE
5496 && (CP_TYPE_CONST_P (type) || var_in_constexpr_fn (decl))
5497 && !DECL_INITIAL (decl))
5498 {
5499 tree field = default_init_uninitialized_part (type);
5500 if (!field)
5501 return;
5502
5503 if (CP_TYPE_CONST_P (type))
5504 permerror (DECL_SOURCE_LOCATION (decl),
5505 "uninitialized const %qD", decl);
5506 else
5507 {
5508 if (!is_instantiation_of_constexpr (current_function_decl))
5509 error_at (DECL_SOURCE_LOCATION (decl),
5510 "uninitialized variable %qD in %<constexpr%> function",
5511 decl);
5512 cp_function_chain->invalid_constexpr = true;
5513 }
5514
5515 if (CLASS_TYPE_P (type))
5516 {
5517 tree defaulted_ctor;
5518
5519 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5520 "%q#T has no user-provided default constructor", type);
5521 defaulted_ctor = in_class_defaulted_default_constructor (type);
5522 if (defaulted_ctor)
5523 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5524 "constructor is not user-provided because it is "
5525 "explicitly defaulted in the class body");
5526 inform (DECL_SOURCE_LOCATION (field),
5527 "and the implicitly-defined constructor does not "
5528 "initialize %q#D", field);
5529 }
5530 }
5531 }
5532 \f
5533 /* Structure holding the current initializer being processed by reshape_init.
5534 CUR is a pointer to the current element being processed, END is a pointer
5535 after the last element present in the initializer. */
5536 struct reshape_iter
5537 {
5538 constructor_elt *cur;
5539 constructor_elt *end;
5540 };
5541
5542 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5543
5544 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5545 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5546 initialized. If there are no more such fields, the return value
5547 will be NULL. */
5548
5549 tree
5550 next_initializable_field (tree field)
5551 {
5552 while (field
5553 && (TREE_CODE (field) != FIELD_DECL
5554 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
5555 || (DECL_ARTIFICIAL (field)
5556 && !(cxx_dialect >= cxx17 && DECL_FIELD_IS_BASE (field)))))
5557 field = DECL_CHAIN (field);
5558
5559 return field;
5560 }
5561
5562 /* Return true for [dcl.init.list] direct-list-initialization from
5563 single element of enumeration with a fixed underlying type. */
5564
5565 bool
5566 is_direct_enum_init (tree type, tree init)
5567 {
5568 if (cxx_dialect >= cxx17
5569 && TREE_CODE (type) == ENUMERAL_TYPE
5570 && ENUM_FIXED_UNDERLYING_TYPE_P (type)
5571 && TREE_CODE (init) == CONSTRUCTOR
5572 && CONSTRUCTOR_IS_DIRECT_INIT (init)
5573 && CONSTRUCTOR_NELTS (init) == 1)
5574 return true;
5575 return false;
5576 }
5577
5578 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5579 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5580 INTEGER_CST representing the size of the array minus one (the maximum index),
5581 or NULL_TREE if the array was declared without specifying the size. D is
5582 the iterator within the constructor. */
5583
5584 static tree
5585 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5586 tsubst_flags_t complain)
5587 {
5588 tree new_init;
5589 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5590 unsigned HOST_WIDE_INT max_index_cst = 0;
5591 unsigned HOST_WIDE_INT index;
5592
5593 /* The initializer for an array is always a CONSTRUCTOR. */
5594 new_init = build_constructor (init_list_type_node, NULL);
5595
5596 if (sized_array_p)
5597 {
5598 /* Minus 1 is used for zero sized arrays. */
5599 if (integer_all_onesp (max_index))
5600 return new_init;
5601
5602 if (tree_fits_uhwi_p (max_index))
5603 max_index_cst = tree_to_uhwi (max_index);
5604 /* sizetype is sign extended, not zero extended. */
5605 else
5606 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5607 }
5608
5609 /* Loop until there are no more initializers. */
5610 for (index = 0;
5611 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5612 ++index)
5613 {
5614 tree elt_init;
5615 constructor_elt *old_cur = d->cur;
5616
5617 check_array_designated_initializer (d->cur, index);
5618 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5619 complain);
5620 if (elt_init == error_mark_node)
5621 return error_mark_node;
5622 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5623 size_int (index), elt_init);
5624 if (!TREE_CONSTANT (elt_init))
5625 TREE_CONSTANT (new_init) = false;
5626
5627 /* This can happen with an invalid initializer (c++/54501). */
5628 if (d->cur == old_cur && !sized_array_p)
5629 break;
5630 }
5631
5632 return new_init;
5633 }
5634
5635 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5636 Parameters are the same of reshape_init_r. */
5637
5638 static tree
5639 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5640 {
5641 tree max_index = NULL_TREE;
5642
5643 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5644
5645 if (TYPE_DOMAIN (type))
5646 max_index = array_type_nelts (type);
5647
5648 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5649 }
5650
5651 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5652 Parameters are the same of reshape_init_r. */
5653
5654 static tree
5655 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5656 {
5657 tree max_index = NULL_TREE;
5658
5659 gcc_assert (VECTOR_TYPE_P (type));
5660
5661 if (COMPOUND_LITERAL_P (d->cur->value))
5662 {
5663 tree value = d->cur->value;
5664 if (!same_type_p (TREE_TYPE (value), type))
5665 {
5666 if (complain & tf_error)
5667 error ("invalid type %qT as initializer for a vector of type %qT",
5668 TREE_TYPE (d->cur->value), type);
5669 value = error_mark_node;
5670 }
5671 ++d->cur;
5672 return value;
5673 }
5674
5675 /* For a vector, we initialize it as an array of the appropriate size. */
5676 if (VECTOR_TYPE_P (type))
5677 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5678
5679 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5680 }
5681
5682 /* Subroutine of reshape_init_r, processes the initializers for classes
5683 or union. Parameters are the same of reshape_init_r. */
5684
5685 static tree
5686 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
5687 tsubst_flags_t complain)
5688 {
5689 tree field;
5690 tree new_init;
5691
5692 gcc_assert (CLASS_TYPE_P (type));
5693
5694 /* The initializer for a class is always a CONSTRUCTOR. */
5695 new_init = build_constructor (init_list_type_node, NULL);
5696 field = next_initializable_field (TYPE_FIELDS (type));
5697
5698 if (!field)
5699 {
5700 /* [dcl.init.aggr]
5701
5702 An initializer for an aggregate member that is an
5703 empty class shall have the form of an empty
5704 initializer-list {}. */
5705 if (!first_initializer_p)
5706 {
5707 if (complain & tf_error)
5708 error ("initializer for %qT must be brace-enclosed", type);
5709 return error_mark_node;
5710 }
5711 return new_init;
5712 }
5713
5714 /* Loop through the initializable fields, gathering initializers. */
5715 while (d->cur != d->end)
5716 {
5717 tree field_init;
5718 constructor_elt *old_cur = d->cur;
5719
5720 /* Handle designated initializers, as an extension. */
5721 if (d->cur->index)
5722 {
5723 if (d->cur->index == error_mark_node)
5724 return error_mark_node;
5725
5726 if (TREE_CODE (d->cur->index) == FIELD_DECL)
5727 /* We already reshaped this. */
5728 gcc_assert (d->cur->index == field);
5729 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
5730 field = get_class_binding (type, d->cur->index, false);
5731 else
5732 {
5733 if (complain & tf_error)
5734 error ("%<[%E] =%> used in a GNU-style designated initializer"
5735 " for class %qT", d->cur->index, type);
5736 return error_mark_node;
5737 }
5738
5739 if (!field || TREE_CODE (field) != FIELD_DECL)
5740 {
5741 if (complain & tf_error)
5742 error ("%qT has no non-static data member named %qD", type,
5743 d->cur->index);
5744 return error_mark_node;
5745 }
5746 }
5747
5748 /* If we processed all the member of the class, we are done. */
5749 if (!field)
5750 break;
5751
5752 field_init = reshape_init_r (TREE_TYPE (field), d,
5753 /*first_initializer_p=*/false, complain);
5754 if (field_init == error_mark_node)
5755 return error_mark_node;
5756
5757 if (d->cur == old_cur && d->cur->index)
5758 {
5759 /* This can happen with an invalid initializer for a flexible
5760 array member (c++/54441). */
5761 if (complain & tf_error)
5762 error ("invalid initializer for %q#D", field);
5763 return error_mark_node;
5764 }
5765
5766 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
5767
5768 /* [dcl.init.aggr]
5769
5770 When a union is initialized with a brace-enclosed
5771 initializer, the braces shall only contain an
5772 initializer for the first member of the union. */
5773 if (TREE_CODE (type) == UNION_TYPE)
5774 break;
5775
5776 field = next_initializable_field (DECL_CHAIN (field));
5777 }
5778
5779 return new_init;
5780 }
5781
5782 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5783 designators are not valid; either complain or return true to indicate
5784 that reshape_init_r should return error_mark_node. */
5785
5786 static bool
5787 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
5788 {
5789 if (d->cur->index)
5790 {
5791 if (complain & tf_error)
5792 error ("C99 designator %qE outside aggregate initializer",
5793 d->cur->index);
5794 else
5795 return true;
5796 }
5797 return false;
5798 }
5799
5800 /* Subroutine of reshape_init, which processes a single initializer (part of
5801 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5802 iterator within the CONSTRUCTOR which points to the initializer to process.
5803 FIRST_INITIALIZER_P is true if this is the first initializer of the
5804 outermost CONSTRUCTOR node. */
5805
5806 static tree
5807 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
5808 tsubst_flags_t complain)
5809 {
5810 tree init = d->cur->value;
5811
5812 if (error_operand_p (init))
5813 return error_mark_node;
5814
5815 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
5816 && has_designator_problem (d, complain))
5817 return error_mark_node;
5818
5819 if (TREE_CODE (type) == COMPLEX_TYPE)
5820 {
5821 /* A complex type can be initialized from one or two initializers,
5822 but braces are not elided. */
5823 d->cur++;
5824 if (BRACE_ENCLOSED_INITIALIZER_P (init))
5825 {
5826 if (CONSTRUCTOR_NELTS (init) > 2)
5827 {
5828 if (complain & tf_error)
5829 error ("too many initializers for %qT", type);
5830 else
5831 return error_mark_node;
5832 }
5833 }
5834 else if (first_initializer_p && d->cur != d->end)
5835 {
5836 vec<constructor_elt, va_gc> *v = 0;
5837 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
5838 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
5839 if (has_designator_problem (d, complain))
5840 return error_mark_node;
5841 d->cur++;
5842 init = build_constructor (init_list_type_node, v);
5843 }
5844 return init;
5845 }
5846
5847 /* A non-aggregate type is always initialized with a single
5848 initializer. */
5849 if (!CP_AGGREGATE_TYPE_P (type))
5850 {
5851 /* It is invalid to initialize a non-aggregate type with a
5852 brace-enclosed initializer before C++0x.
5853 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
5854 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
5855 a CONSTRUCTOR (with a record type). */
5856 if (TREE_CODE (init) == CONSTRUCTOR
5857 /* Don't complain about a capture-init. */
5858 && !CONSTRUCTOR_IS_DIRECT_INIT (init)
5859 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
5860 {
5861 if (SCALAR_TYPE_P (type))
5862 {
5863 if (cxx_dialect < cxx11
5864 /* Isn't value-initialization. */
5865 || CONSTRUCTOR_NELTS (init) > 0)
5866 {
5867 if (complain & tf_error)
5868 error ("braces around scalar initializer for type %qT",
5869 type);
5870 init = error_mark_node;
5871 }
5872 }
5873 else
5874 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5875 }
5876
5877 d->cur++;
5878 return init;
5879 }
5880
5881 /* "If T is a class type and the initializer list has a single element of
5882 type cv U, where U is T or a class derived from T, the object is
5883 initialized from that element." Even if T is an aggregate. */
5884 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
5885 && first_initializer_p
5886 && d->end - d->cur == 1
5887 && reference_related_p (type, TREE_TYPE (init)))
5888 {
5889 d->cur++;
5890 return init;
5891 }
5892
5893 /* [dcl.init.aggr]
5894
5895 All implicit type conversions (clause _conv_) are considered when
5896 initializing the aggregate member with an initializer from an
5897 initializer-list. If the initializer can initialize a member,
5898 the member is initialized. Otherwise, if the member is itself a
5899 non-empty subaggregate, brace elision is assumed and the
5900 initializer is considered for the initialization of the first
5901 member of the subaggregate. */
5902 if (TREE_CODE (init) != CONSTRUCTOR
5903 /* But don't try this for the first initializer, since that would be
5904 looking through the outermost braces; A a2 = { a1 }; is not a
5905 valid aggregate initialization. */
5906 && !first_initializer_p
5907 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
5908 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
5909 complain)))
5910 {
5911 d->cur++;
5912 return init;
5913 }
5914
5915 /* [dcl.init.string]
5916
5917 A char array (whether plain char, signed char, or unsigned char)
5918 can be initialized by a string-literal (optionally enclosed in
5919 braces); a wchar_t array can be initialized by a wide
5920 string-literal (optionally enclosed in braces). */
5921 if (TREE_CODE (type) == ARRAY_TYPE
5922 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
5923 {
5924 tree str_init = init;
5925
5926 /* Strip one level of braces if and only if they enclose a single
5927 element (as allowed by [dcl.init.string]). */
5928 if (!first_initializer_p
5929 && TREE_CODE (str_init) == CONSTRUCTOR
5930 && CONSTRUCTOR_NELTS (str_init) == 1)
5931 {
5932 str_init = (*CONSTRUCTOR_ELTS (str_init))[0].value;
5933 }
5934
5935 /* If it's a string literal, then it's the initializer for the array
5936 as a whole. Otherwise, continue with normal initialization for
5937 array types (one value per array element). */
5938 if (TREE_CODE (str_init) == STRING_CST)
5939 {
5940 if (has_designator_problem (d, complain))
5941 return error_mark_node;
5942 d->cur++;
5943 return str_init;
5944 }
5945 }
5946
5947 /* The following cases are about aggregates. If we are not within a full
5948 initializer already, and there is not a CONSTRUCTOR, it means that there
5949 is a missing set of braces (that is, we are processing the case for
5950 which reshape_init exists). */
5951 if (!first_initializer_p)
5952 {
5953 if (TREE_CODE (init) == CONSTRUCTOR)
5954 {
5955 if (TREE_TYPE (init) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init)))
5956 /* There is no need to reshape pointer-to-member function
5957 initializers, as they are always constructed correctly
5958 by the front end. */
5959 ;
5960 else if (COMPOUND_LITERAL_P (init))
5961 /* For a nested compound literal, there is no need to reshape since
5962 brace elision is not allowed. Even if we decided to allow it,
5963 we should add a call to reshape_init in finish_compound_literal,
5964 before calling digest_init, so changing this code would still
5965 not be necessary. */
5966 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
5967 else
5968 {
5969 ++d->cur;
5970 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5971 return reshape_init (type, init, complain);
5972 }
5973 }
5974
5975 if (complain & tf_warning)
5976 warning (OPT_Wmissing_braces,
5977 "missing braces around initializer for %qT",
5978 type);
5979 }
5980
5981 /* Dispatch to specialized routines. */
5982 if (CLASS_TYPE_P (type))
5983 return reshape_init_class (type, d, first_initializer_p, complain);
5984 else if (TREE_CODE (type) == ARRAY_TYPE)
5985 return reshape_init_array (type, d, complain);
5986 else if (VECTOR_TYPE_P (type))
5987 return reshape_init_vector (type, d, complain);
5988 else
5989 gcc_unreachable();
5990 }
5991
5992 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
5993 brace-enclosed aggregate initializer.
5994
5995 INIT is the CONSTRUCTOR containing the list of initializers describing
5996 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
5997 It may not presently match the shape of the TYPE; for example:
5998
5999 struct S { int a; int b; };
6000 struct S a[] = { 1, 2, 3, 4 };
6001
6002 Here INIT will hold a vector of four elements, rather than a
6003 vector of two elements, each itself a vector of two elements. This
6004 routine transforms INIT from the former form into the latter. The
6005 revised CONSTRUCTOR node is returned. */
6006
6007 tree
6008 reshape_init (tree type, tree init, tsubst_flags_t complain)
6009 {
6010 vec<constructor_elt, va_gc> *v;
6011 reshape_iter d;
6012 tree new_init;
6013
6014 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
6015
6016 v = CONSTRUCTOR_ELTS (init);
6017
6018 /* An empty constructor does not need reshaping, and it is always a valid
6019 initializer. */
6020 if (vec_safe_is_empty (v))
6021 return init;
6022
6023 /* Handle [dcl.init.list] direct-list-initialization from
6024 single element of enumeration with a fixed underlying type. */
6025 if (is_direct_enum_init (type, init))
6026 {
6027 tree elt = CONSTRUCTOR_ELT (init, 0)->value;
6028 type = cv_unqualified (type);
6029 if (check_narrowing (ENUM_UNDERLYING_TYPE (type), elt, complain))
6030 {
6031 warning_sentinel w (warn_useless_cast);
6032 return cp_build_c_cast (type, elt, tf_warning_or_error);
6033 }
6034 else
6035 return error_mark_node;
6036 }
6037
6038 /* Recurse on this CONSTRUCTOR. */
6039 d.cur = &(*v)[0];
6040 d.end = d.cur + v->length ();
6041
6042 new_init = reshape_init_r (type, &d, true, complain);
6043 if (new_init == error_mark_node)
6044 return error_mark_node;
6045
6046 /* Make sure all the element of the constructor were used. Otherwise,
6047 issue an error about exceeding initializers. */
6048 if (d.cur != d.end)
6049 {
6050 if (complain & tf_error)
6051 error ("too many initializers for %qT", type);
6052 return error_mark_node;
6053 }
6054
6055 if (CONSTRUCTOR_IS_DIRECT_INIT (init)
6056 && BRACE_ENCLOSED_INITIALIZER_P (new_init))
6057 CONSTRUCTOR_IS_DIRECT_INIT (new_init) = true;
6058
6059 return new_init;
6060 }
6061
6062 /* Verify array initializer. Returns true if errors have been reported. */
6063
6064 bool
6065 check_array_initializer (tree decl, tree type, tree init)
6066 {
6067 tree element_type = TREE_TYPE (type);
6068
6069 /* The array type itself need not be complete, because the
6070 initializer may tell us how many elements are in the array.
6071 But, the elements of the array must be complete. */
6072 if (!COMPLETE_TYPE_P (complete_type (element_type)))
6073 {
6074 if (decl)
6075 error_at (DECL_SOURCE_LOCATION (decl),
6076 "elements of array %q#D have incomplete type", decl);
6077 else
6078 error ("elements of array %q#T have incomplete type", type);
6079 return true;
6080 }
6081 /* A compound literal can't have variable size. */
6082 if (init && !decl
6083 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
6084 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
6085 {
6086 error ("variable-sized compound literal");
6087 return true;
6088 }
6089 return false;
6090 }
6091
6092 /* Subroutine of check_initializer; args are passed down from that function.
6093 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
6094
6095 static tree
6096 build_aggr_init_full_exprs (tree decl, tree init, int flags)
6097
6098 {
6099 gcc_assert (stmts_are_full_exprs_p ());
6100 return build_aggr_init (decl, init, flags, tf_warning_or_error);
6101 }
6102
6103 /* Verify INIT (the initializer for DECL), and record the
6104 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
6105 grok_reference_init.
6106
6107 If the return value is non-NULL, it is an expression that must be
6108 evaluated dynamically to initialize DECL. */
6109
6110 static tree
6111 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
6112 {
6113 tree type = TREE_TYPE (decl);
6114 tree init_code = NULL;
6115 tree core_type;
6116
6117 /* Things that are going to be initialized need to have complete
6118 type. */
6119 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
6120
6121 if (DECL_HAS_VALUE_EXPR_P (decl))
6122 {
6123 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
6124 it doesn't have storage to be initialized. */
6125 gcc_assert (init == NULL_TREE);
6126 return NULL_TREE;
6127 }
6128
6129 if (type == error_mark_node)
6130 /* We will have already complained. */
6131 return NULL_TREE;
6132
6133 if (TREE_CODE (type) == ARRAY_TYPE)
6134 {
6135 if (check_array_initializer (decl, type, init))
6136 return NULL_TREE;
6137 }
6138 else if (!COMPLETE_TYPE_P (type))
6139 {
6140 error_at (DECL_SOURCE_LOCATION (decl),
6141 "%q#D has incomplete type", decl);
6142 TREE_TYPE (decl) = error_mark_node;
6143 return NULL_TREE;
6144 }
6145 else
6146 /* There is no way to make a variable-sized class type in GNU C++. */
6147 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
6148
6149 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
6150 {
6151 int init_len = CONSTRUCTOR_NELTS (init);
6152 if (SCALAR_TYPE_P (type))
6153 {
6154 if (init_len == 0)
6155 {
6156 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6157 init = build_zero_init (type, NULL_TREE, false);
6158 }
6159 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
6160 {
6161 error_at (EXPR_LOC_OR_LOC (init, DECL_SOURCE_LOCATION (decl)),
6162 "scalar object %qD requires one element in "
6163 "initializer", decl);
6164 TREE_TYPE (decl) = error_mark_node;
6165 return NULL_TREE;
6166 }
6167 }
6168 }
6169
6170 if (TREE_CODE (decl) == CONST_DECL)
6171 {
6172 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
6173
6174 DECL_INITIAL (decl) = init;
6175
6176 gcc_assert (init != NULL_TREE);
6177 init = NULL_TREE;
6178 }
6179 else if (!init && DECL_REALLY_EXTERN (decl))
6180 ;
6181 else if (init || type_build_ctor_call (type)
6182 || TREE_CODE (type) == REFERENCE_TYPE)
6183 {
6184 if (TREE_CODE (type) == REFERENCE_TYPE)
6185 {
6186 init = grok_reference_init (decl, type, init, flags);
6187 flags |= LOOKUP_ALREADY_DIGESTED;
6188 }
6189 else if (!init)
6190 check_for_uninitialized_const_var (decl);
6191 /* Do not reshape constructors of vectors (they don't need to be
6192 reshaped. */
6193 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
6194 {
6195 if (is_std_init_list (type))
6196 {
6197 init = perform_implicit_conversion (type, init,
6198 tf_warning_or_error);
6199 flags |= LOOKUP_ALREADY_DIGESTED;
6200 }
6201 else if (TYPE_NON_AGGREGATE_CLASS (type))
6202 {
6203 /* Don't reshape if the class has constructors. */
6204 if (cxx_dialect == cxx98)
6205 error_at (EXPR_LOC_OR_LOC (init, DECL_SOURCE_LOCATION (decl)),
6206 "in C++98 %qD must be initialized by "
6207 "constructor, not by %<{...}%>",
6208 decl);
6209 }
6210 else if (VECTOR_TYPE_P (type) && TYPE_VECTOR_OPAQUE (type))
6211 {
6212 error ("opaque vector types cannot be initialized");
6213 init = error_mark_node;
6214 }
6215 else
6216 {
6217 init = reshape_init (type, init, tf_warning_or_error);
6218 flags |= LOOKUP_NO_NARROWING;
6219 }
6220 }
6221 else if (TREE_CODE (init) == TREE_LIST
6222 && TREE_TYPE (init) != unknown_type_node
6223 && !MAYBE_CLASS_TYPE_P (type))
6224 {
6225 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6226
6227 /* We get here with code like `int a (2);' */
6228 init = build_x_compound_expr_from_list (init, ELK_INIT,
6229 tf_warning_or_error);
6230 }
6231
6232 /* If DECL has an array type without a specific bound, deduce the
6233 array size from the initializer. */
6234 maybe_deduce_size_from_array_init (decl, init);
6235 type = TREE_TYPE (decl);
6236 if (type == error_mark_node)
6237 return NULL_TREE;
6238
6239 if (((type_build_ctor_call (type) || CLASS_TYPE_P (type))
6240 && !(flags & LOOKUP_ALREADY_DIGESTED)
6241 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
6242 && CP_AGGREGATE_TYPE_P (type)
6243 && (CLASS_TYPE_P (type)
6244 || !TYPE_NEEDS_CONSTRUCTING (type)
6245 || type_has_extended_temps (type))))
6246 || (DECL_DECOMPOSITION_P (decl) && TREE_CODE (type) == ARRAY_TYPE))
6247 {
6248 init_code = build_aggr_init_full_exprs (decl, init, flags);
6249
6250 /* A constructor call is a non-trivial initializer even if
6251 it isn't explicitly written. */
6252 if (TREE_SIDE_EFFECTS (init_code))
6253 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
6254
6255 /* If this is a constexpr initializer, expand_default_init will
6256 have returned an INIT_EXPR rather than a CALL_EXPR. In that
6257 case, pull the initializer back out and pass it down into
6258 store_init_value. */
6259 while (TREE_CODE (init_code) == EXPR_STMT
6260 || TREE_CODE (init_code) == CONVERT_EXPR)
6261 init_code = TREE_OPERAND (init_code, 0);
6262 if (TREE_CODE (init_code) == INIT_EXPR)
6263 {
6264 init = TREE_OPERAND (init_code, 1);
6265 init_code = NULL_TREE;
6266 /* Don't call digest_init; it's unnecessary and will complain
6267 about aggregate initialization of non-aggregate classes. */
6268 flags |= LOOKUP_ALREADY_DIGESTED;
6269 }
6270 else if (DECL_DECLARED_CONSTEXPR_P (decl))
6271 {
6272 /* Declared constexpr, but no suitable initializer; massage
6273 init appropriately so we can pass it into store_init_value
6274 for the error. */
6275 if (CLASS_TYPE_P (type)
6276 && (!init || TREE_CODE (init) == TREE_LIST))
6277 {
6278 init = build_functional_cast (type, init, tf_none);
6279 if (TREE_CODE (init) == TARGET_EXPR)
6280 TARGET_EXPR_DIRECT_INIT_P (init) = true;
6281 }
6282 init_code = NULL_TREE;
6283 }
6284 else
6285 init = NULL_TREE;
6286 }
6287
6288 if (init && TREE_CODE (init) != TREE_VEC)
6289 {
6290 /* In aggregate initialization of a variable, each element
6291 initialization is a full-expression because there is no
6292 enclosing expression. */
6293 gcc_assert (stmts_are_full_exprs_p ());
6294
6295 init_code = store_init_value (decl, init, cleanups, flags);
6296
6297 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
6298 && DECL_INITIAL (decl)
6299 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
6300 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
6301 warning_at (EXPR_LOC_OR_LOC (DECL_INITIAL (decl),
6302 DECL_SOURCE_LOCATION (decl)),
6303 0, "array %qD initialized by parenthesized "
6304 "string literal %qE",
6305 decl, DECL_INITIAL (decl));
6306 init = NULL;
6307 }
6308 }
6309 else
6310 {
6311 if (CLASS_TYPE_P (core_type = strip_array_types (type))
6312 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
6313 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
6314 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
6315 /*complain=*/true);
6316
6317 check_for_uninitialized_const_var (decl);
6318 }
6319
6320 if (init && init != error_mark_node)
6321 init_code = build2 (INIT_EXPR, type, decl, init);
6322
6323 if (init_code)
6324 {
6325 /* We might have set these in cp_finish_decl. */
6326 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
6327 TREE_CONSTANT (decl) = false;
6328 }
6329
6330 if (init_code
6331 && (DECL_IN_AGGR_P (decl) && !DECL_VAR_DECLARED_INLINE_P (decl)))
6332 {
6333 static int explained = 0;
6334
6335 if (cxx_dialect < cxx11)
6336 error ("initializer invalid for static member with constructor");
6337 else if (cxx_dialect < cxx17)
6338 error ("non-constant in-class initialization invalid for static "
6339 "member %qD", decl);
6340 else
6341 error ("non-constant in-class initialization invalid for non-inline "
6342 "static member %qD", decl);
6343 if (!explained)
6344 {
6345 inform (input_location,
6346 "(an out of class initialization is required)");
6347 explained = 1;
6348 }
6349 return NULL_TREE;
6350 }
6351
6352 return init_code;
6353 }
6354
6355 /* If DECL is not a local variable, give it RTL. */
6356
6357 static void
6358 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
6359 {
6360 int toplev = toplevel_bindings_p ();
6361 int defer_p;
6362
6363 /* Set the DECL_ASSEMBLER_NAME for the object. */
6364 if (asmspec)
6365 {
6366 /* The `register' keyword, when used together with an
6367 asm-specification, indicates that the variable should be
6368 placed in a particular register. */
6369 if (VAR_P (decl) && DECL_REGISTER (decl))
6370 {
6371 set_user_assembler_name (decl, asmspec);
6372 DECL_HARD_REGISTER (decl) = 1;
6373 }
6374 else
6375 {
6376 if (TREE_CODE (decl) == FUNCTION_DECL
6377 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
6378 set_builtin_user_assembler_name (decl, asmspec);
6379 set_user_assembler_name (decl, asmspec);
6380 }
6381 }
6382
6383 /* Handle non-variables up front. */
6384 if (!VAR_P (decl))
6385 {
6386 rest_of_decl_compilation (decl, toplev, at_eof);
6387 return;
6388 }
6389
6390 /* If we see a class member here, it should be a static data
6391 member. */
6392 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
6393 {
6394 gcc_assert (TREE_STATIC (decl));
6395 /* An in-class declaration of a static data member should be
6396 external; it is only a declaration, and not a definition. */
6397 if (init == NULL_TREE)
6398 gcc_assert (DECL_EXTERNAL (decl)
6399 || !TREE_PUBLIC (decl)
6400 || DECL_INLINE_VAR_P (decl));
6401 }
6402
6403 /* We don't create any RTL for local variables. */
6404 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6405 return;
6406
6407 /* We defer emission of local statics until the corresponding
6408 DECL_EXPR is expanded. But with constexpr its function might never
6409 be expanded, so go ahead and tell cgraph about the variable now. */
6410 defer_p = ((DECL_FUNCTION_SCOPE_P (decl)
6411 && !var_in_maybe_constexpr_fn (decl))
6412 || DECL_VIRTUAL_P (decl));
6413
6414 /* Defer template instantiations. */
6415 if (DECL_LANG_SPECIFIC (decl)
6416 && DECL_IMPLICIT_INSTANTIATION (decl))
6417 defer_p = 1;
6418
6419 /* If we're not deferring, go ahead and assemble the variable. */
6420 if (!defer_p)
6421 rest_of_decl_compilation (decl, toplev, at_eof);
6422 }
6423
6424 /* walk_tree helper for wrap_temporary_cleanups, below. */
6425
6426 static tree
6427 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
6428 {
6429 /* Stop at types or full-expression boundaries. */
6430 if (TYPE_P (*stmt_p)
6431 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
6432 {
6433 *walk_subtrees = 0;
6434 return NULL_TREE;
6435 }
6436
6437 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
6438 {
6439 tree guard = (tree)data;
6440 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
6441
6442 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
6443 /* Tell honor_protect_cleanup_actions to handle this as a separate
6444 cleanup. */
6445 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
6446
6447 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
6448 }
6449
6450 return NULL_TREE;
6451 }
6452
6453 /* We're initializing a local variable which has a cleanup GUARD. If there
6454 are any temporaries used in the initializer INIT of this variable, we
6455 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6456 variable will be cleaned up properly if one of them throws.
6457
6458 Unfortunately, there's no way to express this properly in terms of
6459 nesting, as the regions for the temporaries overlap the region for the
6460 variable itself; if there are two temporaries, the variable needs to be
6461 the first thing destroyed if either of them throws. However, we only
6462 want to run the variable's cleanup if it actually got constructed. So
6463 we need to guard the temporary cleanups with the variable's cleanup if
6464 they are run on the normal path, but not if they are run on the
6465 exceptional path. We implement this by telling
6466 honor_protect_cleanup_actions to strip the variable cleanup from the
6467 exceptional path. */
6468
6469 static void
6470 wrap_temporary_cleanups (tree init, tree guard)
6471 {
6472 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
6473 }
6474
6475 /* Generate code to initialize DECL (a local variable). */
6476
6477 static void
6478 initialize_local_var (tree decl, tree init)
6479 {
6480 tree type = TREE_TYPE (decl);
6481 tree cleanup;
6482 int already_used;
6483
6484 gcc_assert (VAR_P (decl)
6485 || TREE_CODE (decl) == RESULT_DECL);
6486 gcc_assert (!TREE_STATIC (decl));
6487
6488 if (DECL_SIZE (decl) == NULL_TREE)
6489 {
6490 /* If we used it already as memory, it must stay in memory. */
6491 DECL_INITIAL (decl) = NULL_TREE;
6492 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6493 return;
6494 }
6495
6496 if (type == error_mark_node)
6497 return;
6498
6499 /* Compute and store the initial value. */
6500 already_used = TREE_USED (decl) || TREE_USED (type);
6501 if (TREE_USED (type))
6502 DECL_READ_P (decl) = 1;
6503
6504 /* Generate a cleanup, if necessary. */
6505 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6506
6507 /* Perform the initialization. */
6508 if (init)
6509 {
6510 tree rinit = (TREE_CODE (init) == INIT_EXPR
6511 ? TREE_OPERAND (init, 1) : NULL_TREE);
6512 if (rinit && !TREE_SIDE_EFFECTS (rinit))
6513 {
6514 /* Stick simple initializers in DECL_INITIAL so that
6515 -Wno-init-self works (c++/34772). */
6516 gcc_assert (TREE_OPERAND (init, 0) == decl);
6517 DECL_INITIAL (decl) = rinit;
6518
6519 if (warn_init_self && TREE_CODE (type) == REFERENCE_TYPE)
6520 {
6521 STRIP_NOPS (rinit);
6522 if (rinit == decl)
6523 warning_at (DECL_SOURCE_LOCATION (decl),
6524 OPT_Winit_self,
6525 "reference %qD is initialized with itself", decl);
6526 }
6527 }
6528 else
6529 {
6530 int saved_stmts_are_full_exprs_p;
6531
6532 /* If we're only initializing a single object, guard the
6533 destructors of any temporaries used in its initializer with
6534 its destructor. This isn't right for arrays because each
6535 element initialization is a full-expression. */
6536 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6537 wrap_temporary_cleanups (init, cleanup);
6538
6539 gcc_assert (building_stmt_list_p ());
6540 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6541 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6542 finish_expr_stmt (init);
6543 current_stmt_tree ()->stmts_are_full_exprs_p =
6544 saved_stmts_are_full_exprs_p;
6545 }
6546 }
6547
6548 /* Set this to 0 so we can tell whether an aggregate which was
6549 initialized was ever used. Don't do this if it has a
6550 destructor, so we don't complain about the 'resource
6551 allocation is initialization' idiom. Now set
6552 attribute((unused)) on types so decls of that type will be
6553 marked used. (see TREE_USED, above.) */
6554 if (TYPE_NEEDS_CONSTRUCTING (type)
6555 && ! already_used
6556 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6557 && DECL_NAME (decl))
6558 TREE_USED (decl) = 0;
6559 else if (already_used)
6560 TREE_USED (decl) = 1;
6561
6562 if (cleanup)
6563 finish_decl_cleanup (decl, cleanup);
6564 }
6565
6566 /* DECL is a VAR_DECL for a compiler-generated variable with static
6567 storage duration (like a virtual table) whose initializer is a
6568 compile-time constant. Initialize the variable and provide it to the
6569 back end. */
6570
6571 void
6572 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6573 {
6574 tree init;
6575 gcc_assert (DECL_ARTIFICIAL (decl));
6576 init = build_constructor (TREE_TYPE (decl), v);
6577 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6578 DECL_INITIAL (decl) = init;
6579 DECL_INITIALIZED_P (decl) = 1;
6580 determine_visibility (decl);
6581 layout_var_decl (decl);
6582 maybe_commonize_var (decl);
6583 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6584 }
6585
6586 /* INIT is the initializer for a variable, as represented by the
6587 parser. Returns true iff INIT is type-dependent. */
6588
6589 static bool
6590 type_dependent_init_p (tree init)
6591 {
6592 if (TREE_CODE (init) == TREE_LIST)
6593 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6594 return any_type_dependent_elements_p (init);
6595 else if (TREE_CODE (init) == CONSTRUCTOR)
6596 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6597 {
6598 if (dependent_type_p (TREE_TYPE (init)))
6599 return true;
6600
6601 vec<constructor_elt, va_gc> *elts;
6602 size_t nelts;
6603 size_t i;
6604
6605 elts = CONSTRUCTOR_ELTS (init);
6606 nelts = vec_safe_length (elts);
6607 for (i = 0; i < nelts; ++i)
6608 if (type_dependent_init_p ((*elts)[i].value))
6609 return true;
6610 }
6611 else
6612 /* It must be a simple expression, e.g., int i = 3; */
6613 return type_dependent_expression_p (init);
6614
6615 return false;
6616 }
6617
6618 /* INIT is the initializer for a variable, as represented by the
6619 parser. Returns true iff INIT is value-dependent. */
6620
6621 static bool
6622 value_dependent_init_p (tree init)
6623 {
6624 if (TREE_CODE (init) == TREE_LIST)
6625 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6626 return any_value_dependent_elements_p (init);
6627 else if (TREE_CODE (init) == CONSTRUCTOR)
6628 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6629 {
6630 vec<constructor_elt, va_gc> *elts;
6631 size_t nelts;
6632 size_t i;
6633
6634 elts = CONSTRUCTOR_ELTS (init);
6635 nelts = vec_safe_length (elts);
6636 for (i = 0; i < nelts; ++i)
6637 if (value_dependent_init_p ((*elts)[i].value))
6638 return true;
6639 }
6640 else
6641 /* It must be a simple expression, e.g., int i = 3; */
6642 return value_dependent_expression_p (init);
6643
6644 return false;
6645 }
6646
6647 // Returns true if a DECL is VAR_DECL with the concept specifier.
6648 static inline bool
6649 is_concept_var (tree decl)
6650 {
6651 return (VAR_P (decl)
6652 // Not all variables have DECL_LANG_SPECIFIC.
6653 && DECL_LANG_SPECIFIC (decl)
6654 && DECL_DECLARED_CONCEPT_P (decl));
6655 }
6656
6657 /* A helper function to be called via walk_tree. If any label exists
6658 under *TP, it is (going to be) forced. Set has_forced_label_in_static. */
6659
6660 static tree
6661 notice_forced_label_r (tree *tp, int *walk_subtrees, void *)
6662 {
6663 if (TYPE_P (*tp))
6664 *walk_subtrees = 0;
6665 if (TREE_CODE (*tp) == LABEL_DECL)
6666 cfun->has_forced_label_in_static = 1;
6667 return NULL_TREE;
6668 }
6669
6670 /* Finish processing of a declaration;
6671 install its line number and initial value.
6672 If the length of an array type is not known before,
6673 it must be determined now, from the initial value, or it is an error.
6674
6675 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6676 true, then INIT is an integral constant expression.
6677
6678 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6679 if the (init) syntax was used. */
6680
6681 void
6682 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
6683 tree asmspec_tree, int flags)
6684 {
6685 tree type;
6686 vec<tree, va_gc> *cleanups = NULL;
6687 const char *asmspec = NULL;
6688 int was_readonly = 0;
6689 bool var_definition_p = false;
6690 tree auto_node;
6691
6692 if (decl == error_mark_node)
6693 return;
6694 else if (! decl)
6695 {
6696 if (init)
6697 error ("assignment (not initialization) in declaration");
6698 return;
6699 }
6700
6701 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6702 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6703 gcc_assert (TREE_CODE (decl) != PARM_DECL);
6704
6705 type = TREE_TYPE (decl);
6706 if (type == error_mark_node)
6707 return;
6708
6709 /* Warn about register storage specifiers except when in GNU global
6710 or local register variable extension. */
6711 if (VAR_P (decl) && DECL_REGISTER (decl) && asmspec_tree == NULL_TREE)
6712 {
6713 if (cxx_dialect >= cxx17)
6714 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
6715 "ISO C++17 does not allow %<register%> storage "
6716 "class specifier");
6717 else
6718 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
6719 "%<register%> storage class specifier used");
6720 }
6721
6722 /* If a name was specified, get the string. */
6723 if (at_namespace_scope_p ())
6724 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
6725 if (asmspec_tree && asmspec_tree != error_mark_node)
6726 asmspec = TREE_STRING_POINTER (asmspec_tree);
6727
6728 if (current_class_type
6729 && CP_DECL_CONTEXT (decl) == current_class_type
6730 && TYPE_BEING_DEFINED (current_class_type)
6731 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
6732 && (DECL_INITIAL (decl) || init))
6733 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
6734
6735 if (TREE_CODE (decl) != FUNCTION_DECL
6736 && (auto_node = type_uses_auto (type)))
6737 {
6738 tree d_init;
6739 if (init == NULL_TREE)
6740 {
6741 if (DECL_LANG_SPECIFIC (decl)
6742 && DECL_TEMPLATE_INSTANTIATION (decl)
6743 && !DECL_TEMPLATE_INSTANTIATED (decl))
6744 {
6745 /* init is null because we're deferring instantiating the
6746 initializer until we need it. Well, we need it now. */
6747 instantiate_decl (decl, /*defer_ok*/true, /*expl*/false);
6748 return;
6749 }
6750
6751 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (auto_node));
6752 }
6753 d_init = init;
6754 if (d_init)
6755 {
6756 if (TREE_CODE (d_init) == TREE_LIST
6757 && !CLASS_PLACEHOLDER_TEMPLATE (auto_node))
6758 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
6759 tf_warning_or_error);
6760 d_init = resolve_nondeduced_context (d_init, tf_warning_or_error);
6761 }
6762 enum auto_deduction_context adc = adc_variable_type;
6763 if (VAR_P (decl) && DECL_DECOMPOSITION_P (decl))
6764 adc = adc_decomp_type;
6765 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init, auto_node,
6766 tf_warning_or_error, adc,
6767 NULL_TREE, flags);
6768 if (type == error_mark_node)
6769 return;
6770 if (TREE_CODE (type) == FUNCTION_TYPE)
6771 {
6772 error ("initializer for %<decltype(auto) %D%> has function type "
6773 "(did you forget the %<()%> ?)", decl);
6774 TREE_TYPE (decl) = error_mark_node;
6775 return;
6776 }
6777 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
6778 }
6779
6780 if (!ensure_literal_type_for_constexpr_object (decl))
6781 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
6782
6783 if (VAR_P (decl)
6784 && DECL_CLASS_SCOPE_P (decl)
6785 && DECL_INITIALIZED_IN_CLASS_P (decl))
6786 check_static_variable_definition (decl, type);
6787
6788 if (init && TREE_CODE (decl) == FUNCTION_DECL)
6789 {
6790 tree clone;
6791 if (init == ridpointers[(int)RID_DELETE])
6792 {
6793 /* FIXME check this is 1st decl. */
6794 DECL_DELETED_FN (decl) = 1;
6795 DECL_DECLARED_INLINE_P (decl) = 1;
6796 DECL_INITIAL (decl) = error_mark_node;
6797 FOR_EACH_CLONE (clone, decl)
6798 {
6799 DECL_DELETED_FN (clone) = 1;
6800 DECL_DECLARED_INLINE_P (clone) = 1;
6801 DECL_INITIAL (clone) = error_mark_node;
6802 }
6803 init = NULL_TREE;
6804 }
6805 else if (init == ridpointers[(int)RID_DEFAULT])
6806 {
6807 if (defaultable_fn_check (decl))
6808 DECL_DEFAULTED_FN (decl) = 1;
6809 else
6810 DECL_INITIAL (decl) = NULL_TREE;
6811 }
6812 }
6813
6814 if (init && VAR_P (decl))
6815 {
6816 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
6817 /* If DECL is a reference, then we want to know whether init is a
6818 reference constant; init_const_expr_p as passed tells us whether
6819 it's an rvalue constant. */
6820 if (TREE_CODE (type) == REFERENCE_TYPE)
6821 init_const_expr_p = potential_constant_expression (init);
6822 if (init_const_expr_p)
6823 {
6824 /* Set these flags now for templates. We'll update the flags in
6825 store_init_value for instantiations. */
6826 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
6827 if (decl_maybe_constant_var_p (decl)
6828 /* FIXME setting TREE_CONSTANT on refs breaks the back end. */
6829 && TREE_CODE (type) != REFERENCE_TYPE)
6830 TREE_CONSTANT (decl) = 1;
6831 }
6832 }
6833
6834 if (processing_template_decl)
6835 {
6836 bool type_dependent_p;
6837
6838 /* Add this declaration to the statement-tree. */
6839 if (at_function_scope_p ())
6840 add_decl_expr (decl);
6841
6842 type_dependent_p = dependent_type_p (type);
6843
6844 if (check_for_bare_parameter_packs (init))
6845 {
6846 init = NULL_TREE;
6847 DECL_INITIAL (decl) = NULL_TREE;
6848 }
6849
6850 init = do_dependent_capture (init);
6851
6852 /* Generally, initializers in templates are expanded when the
6853 template is instantiated. But, if DECL is a variable constant
6854 then it can be used in future constant expressions, so its value
6855 must be available. */
6856
6857 if (!VAR_P (decl) || type_dependent_p)
6858 /* We can't do anything if the decl has dependent type. */;
6859 else if (init
6860 && init_const_expr_p
6861 && TREE_CODE (type) != REFERENCE_TYPE
6862 && decl_maybe_constant_var_p (decl)
6863 && !type_dependent_init_p (init)
6864 && !value_dependent_init_p (init))
6865 {
6866 /* This variable seems to be a non-dependent constant, so process
6867 its initializer. If check_initializer returns non-null the
6868 initialization wasn't constant after all. */
6869 tree init_code;
6870 cleanups = make_tree_vector ();
6871 init_code = check_initializer (decl, init, flags, &cleanups);
6872 if (init_code == NULL_TREE)
6873 init = NULL_TREE;
6874 release_tree_vector (cleanups);
6875 }
6876 else if (!init && is_concept_var (decl))
6877 error ("variable concept has no initializer");
6878 else if (!DECL_PRETTY_FUNCTION_P (decl))
6879 {
6880 /* Deduce array size even if the initializer is dependent. */
6881 maybe_deduce_size_from_array_init (decl, init);
6882 /* And complain about multiple initializers. */
6883 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
6884 && !MAYBE_CLASS_TYPE_P (type))
6885 init = build_x_compound_expr_from_list (init, ELK_INIT,
6886 tf_warning_or_error);
6887 }
6888
6889 if (init)
6890 DECL_INITIAL (decl) = init;
6891 return;
6892 }
6893
6894 /* Just store non-static data member initializers for later. */
6895 if (init && TREE_CODE (decl) == FIELD_DECL)
6896 DECL_INITIAL (decl) = init;
6897
6898 /* Take care of TYPE_DECLs up front. */
6899 if (TREE_CODE (decl) == TYPE_DECL)
6900 {
6901 if (type != error_mark_node
6902 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
6903 {
6904 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
6905 warning (0, "shadowing previous type declaration of %q#D", decl);
6906 set_identifier_type_value (DECL_NAME (decl), decl);
6907 }
6908
6909 /* If we have installed this as the canonical typedef for this
6910 type, and that type has not been defined yet, delay emitting
6911 the debug information for it, as we will emit it later. */
6912 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
6913 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
6914 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
6915
6916 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
6917 at_eof);
6918 return;
6919 }
6920
6921 /* A reference will be modified here, as it is initialized. */
6922 if (! DECL_EXTERNAL (decl)
6923 && TREE_READONLY (decl)
6924 && TREE_CODE (type) == REFERENCE_TYPE)
6925 {
6926 was_readonly = 1;
6927 TREE_READONLY (decl) = 0;
6928 }
6929
6930 if (VAR_P (decl))
6931 {
6932 /* If this is a local variable that will need a mangled name,
6933 register it now. We must do this before processing the
6934 initializer for the variable, since the initialization might
6935 require a guard variable, and since the mangled name of the
6936 guard variable will depend on the mangled name of this
6937 variable. */
6938 if (DECL_FUNCTION_SCOPE_P (decl)
6939 && TREE_STATIC (decl)
6940 && !DECL_ARTIFICIAL (decl))
6941 {
6942 push_local_name (decl);
6943 /* Normally has_forced_label_in_static is set during GIMPLE
6944 lowering, but [cd]tors are never actually compiled directly.
6945 We need to set this early so we can deal with the label
6946 address extension. */
6947 if ((DECL_CONSTRUCTOR_P (current_function_decl)
6948 || DECL_DESTRUCTOR_P (current_function_decl))
6949 && init)
6950 {
6951 walk_tree (&init, notice_forced_label_r, NULL, NULL);
6952 add_local_decl (cfun, decl);
6953 }
6954 /* And make sure it's in the symbol table for
6955 c_parse_final_cleanups to find. */
6956 varpool_node::get_create (decl);
6957 }
6958
6959 /* Convert the initializer to the type of DECL, if we have not
6960 already initialized DECL. */
6961 if (!DECL_INITIALIZED_P (decl)
6962 /* If !DECL_EXTERNAL then DECL is being defined. In the
6963 case of a static data member initialized inside the
6964 class-specifier, there can be an initializer even if DECL
6965 is *not* defined. */
6966 && (!DECL_EXTERNAL (decl) || init))
6967 {
6968 cleanups = make_tree_vector ();
6969 init = check_initializer (decl, init, flags, &cleanups);
6970
6971 /* Handle:
6972
6973 [dcl.init]
6974
6975 The memory occupied by any object of static storage
6976 duration is zero-initialized at program startup before
6977 any other initialization takes place.
6978
6979 We cannot create an appropriate initializer until after
6980 the type of DECL is finalized. If DECL_INITIAL is set,
6981 then the DECL is statically initialized, and any
6982 necessary zero-initialization has already been performed. */
6983 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
6984 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
6985 /*nelts=*/NULL_TREE,
6986 /*static_storage_p=*/true);
6987 /* Remember that the initialization for this variable has
6988 taken place. */
6989 DECL_INITIALIZED_P (decl) = 1;
6990 /* This declaration is the definition of this variable,
6991 unless we are initializing a static data member within
6992 the class specifier. */
6993 if (!DECL_EXTERNAL (decl))
6994 var_definition_p = true;
6995 }
6996 /* If the variable has an array type, lay out the type, even if
6997 there is no initializer. It is valid to index through the
6998 array, and we must get TYPE_ALIGN set correctly on the array
6999 type. */
7000 else if (TREE_CODE (type) == ARRAY_TYPE)
7001 layout_type (type);
7002
7003 if (TREE_STATIC (decl)
7004 && !at_function_scope_p ()
7005 && current_function_decl == NULL)
7006 /* So decl is a global variable or a static member of a
7007 non local class. Record the types it uses
7008 so that we can decide later to emit debug info for them. */
7009 record_types_used_by_current_var_decl (decl);
7010 }
7011
7012 /* Add this declaration to the statement-tree. This needs to happen
7013 after the call to check_initializer so that the DECL_EXPR for a
7014 reference temp is added before the DECL_EXPR for the reference itself. */
7015 if (DECL_FUNCTION_SCOPE_P (decl))
7016 {
7017 /* If we're building a variable sized type, and we might be
7018 reachable other than via the top of the current binding
7019 level, then create a new BIND_EXPR so that we deallocate
7020 the object at the right time. */
7021 if (VAR_P (decl)
7022 && DECL_SIZE (decl)
7023 && !TREE_CONSTANT (DECL_SIZE (decl))
7024 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
7025 {
7026 tree bind;
7027 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
7028 TREE_SIDE_EFFECTS (bind) = 1;
7029 add_stmt (bind);
7030 BIND_EXPR_BODY (bind) = push_stmt_list ();
7031 }
7032 add_decl_expr (decl);
7033 }
7034
7035 /* Let the middle end know about variables and functions -- but not
7036 static data members in uninstantiated class templates. */
7037 if (VAR_OR_FUNCTION_DECL_P (decl))
7038 {
7039 if (VAR_P (decl))
7040 {
7041 layout_var_decl (decl);
7042 maybe_commonize_var (decl);
7043 }
7044
7045 /* This needs to happen after the linkage is set. */
7046 determine_visibility (decl);
7047
7048 if (var_definition_p && TREE_STATIC (decl))
7049 {
7050 /* If a TREE_READONLY variable needs initialization
7051 at runtime, it is no longer readonly and we need to
7052 avoid MEM_READONLY_P being set on RTL created for it. */
7053 if (init)
7054 {
7055 if (TREE_READONLY (decl))
7056 TREE_READONLY (decl) = 0;
7057 was_readonly = 0;
7058 }
7059 else if (was_readonly)
7060 TREE_READONLY (decl) = 1;
7061
7062 /* Likewise if it needs destruction. */
7063 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
7064 TREE_READONLY (decl) = 0;
7065 }
7066
7067 make_rtl_for_nonlocal_decl (decl, init, asmspec);
7068
7069 /* Check for abstractness of the type. Notice that there is no
7070 need to strip array types here since the check for those types
7071 is already done within create_array_type_for_decl. */
7072 abstract_virtuals_error (decl, type);
7073
7074 if (TREE_TYPE (decl) == error_mark_node)
7075 /* No initialization required. */
7076 ;
7077 else if (TREE_CODE (decl) == FUNCTION_DECL)
7078 {
7079 if (init)
7080 {
7081 if (init == ridpointers[(int)RID_DEFAULT])
7082 {
7083 /* An out-of-class default definition is defined at
7084 the point where it is explicitly defaulted. */
7085 if (DECL_DELETED_FN (decl))
7086 maybe_explain_implicit_delete (decl);
7087 else if (DECL_INITIAL (decl) == error_mark_node)
7088 synthesize_method (decl);
7089 }
7090 else
7091 error ("function %q#D is initialized like a variable", decl);
7092 }
7093 /* else no initialization required. */
7094 }
7095 else if (DECL_EXTERNAL (decl)
7096 && ! (DECL_LANG_SPECIFIC (decl)
7097 && DECL_NOT_REALLY_EXTERN (decl)))
7098 {
7099 if (init)
7100 DECL_INITIAL (decl) = init;
7101 }
7102 /* A variable definition. */
7103 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
7104 /* Initialize the local variable. */
7105 initialize_local_var (decl, init);
7106
7107 /* If a variable is defined, and then a subsequent
7108 definition with external linkage is encountered, we will
7109 get here twice for the same variable. We want to avoid
7110 calling expand_static_init more than once. For variables
7111 that are not static data members, we can call
7112 expand_static_init only when we actually process the
7113 initializer. It is not legal to redeclare a static data
7114 member, so this issue does not arise in that case. */
7115 else if (var_definition_p && TREE_STATIC (decl))
7116 expand_static_init (decl, init);
7117 }
7118
7119 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
7120 reference, insert it in the statement-tree now. */
7121 if (cleanups)
7122 {
7123 unsigned i; tree t;
7124 FOR_EACH_VEC_ELT (*cleanups, i, t)
7125 push_cleanup (decl, t, false);
7126 release_tree_vector (cleanups);
7127 }
7128
7129 if (was_readonly)
7130 TREE_READONLY (decl) = 1;
7131
7132 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
7133 }
7134
7135 /* For class TYPE return itself or some its bases that contain
7136 any direct non-static data members. Return error_mark_node if an
7137 error has been diagnosed. */
7138
7139 static tree
7140 find_decomp_class_base (location_t loc, tree type, tree ret)
7141 {
7142 bool member_seen = false;
7143 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
7144 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
7145 continue;
7146 else if (ret)
7147 return type;
7148 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
7149 {
7150 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE)
7151 error_at (loc, "cannot decompose class type %qT because it has an "
7152 "anonymous struct member", type);
7153 else
7154 error_at (loc, "cannot decompose class type %qT because it has an "
7155 "anonymous union member", type);
7156 inform (DECL_SOURCE_LOCATION (field), "declared here");
7157 return error_mark_node;
7158 }
7159 else if (TREE_PRIVATE (field) || TREE_PROTECTED (field))
7160 {
7161 error_at (loc, "cannot decompose non-public member %qD of %qT",
7162 field, type);
7163 inform (DECL_SOURCE_LOCATION (field),
7164 TREE_PRIVATE (field)
7165 ? G_("declared private here")
7166 : G_("declared protected here"));
7167 return error_mark_node;
7168 }
7169 else
7170 member_seen = true;
7171
7172 tree base_binfo, binfo;
7173 tree orig_ret = ret;
7174 int i;
7175 if (member_seen)
7176 ret = type;
7177 for (binfo = TYPE_BINFO (type), i = 0;
7178 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
7179 {
7180 tree t = find_decomp_class_base (loc, TREE_TYPE (base_binfo), ret);
7181 if (t == error_mark_node)
7182 return error_mark_node;
7183 if (t != NULL_TREE)
7184 {
7185 if (ret == type)
7186 {
7187 error_at (loc, "cannot decompose class type %qT: both it and "
7188 "its base class %qT have non-static data members",
7189 type, t);
7190 return error_mark_node;
7191 }
7192 else if (orig_ret != NULL_TREE)
7193 return t;
7194 else if (ret == t)
7195 /* OK, found the same base along another path. We'll complain
7196 in convert_to_base if it's ambiguous. */;
7197 else if (ret != NULL_TREE)
7198 {
7199 error_at (loc, "cannot decompose class type %qT: its base "
7200 "classes %qT and %qT have non-static data "
7201 "members", type, ret, t);
7202 return error_mark_node;
7203 }
7204 else
7205 ret = t;
7206 }
7207 }
7208 return ret;
7209 }
7210
7211 /* Return std::tuple_size<TYPE>::value. */
7212
7213 static tree
7214 get_tuple_size (tree type)
7215 {
7216 tree args = make_tree_vec (1);
7217 TREE_VEC_ELT (args, 0) = type;
7218 tree inst = lookup_template_class (get_identifier ("tuple_size"), args,
7219 /*in_decl*/NULL_TREE,
7220 /*context*/std_node,
7221 /*entering_scope*/false, tf_none);
7222 inst = complete_type (inst);
7223 if (inst == error_mark_node || !COMPLETE_TYPE_P (inst))
7224 return NULL_TREE;
7225 tree val = lookup_qualified_name (inst, get_identifier ("value"),
7226 /*type*/false, /*complain*/false);
7227 if (TREE_CODE (val) == VAR_DECL || TREE_CODE (val) == CONST_DECL)
7228 val = maybe_constant_value (val);
7229 if (TREE_CODE (val) == INTEGER_CST)
7230 return val;
7231 else
7232 return error_mark_node;
7233 }
7234
7235 /* Return std::tuple_element<I,TYPE>::type. */
7236
7237 static tree
7238 get_tuple_element_type (tree type, unsigned i)
7239 {
7240 tree args = make_tree_vec (2);
7241 TREE_VEC_ELT (args, 0) = build_int_cst (integer_type_node, i);
7242 TREE_VEC_ELT (args, 1) = type;
7243 tree inst = lookup_template_class (get_identifier ("tuple_element"), args,
7244 /*in_decl*/NULL_TREE,
7245 /*context*/std_node,
7246 /*entering_scope*/false,
7247 tf_warning_or_error);
7248 return make_typename_type (inst, get_identifier ("type"),
7249 none_type, tf_warning_or_error);
7250 }
7251
7252 /* Return e.get<i>() or get<i>(e). */
7253
7254 static tree
7255 get_tuple_decomp_init (tree decl, unsigned i)
7256 {
7257 tree get_id = get_identifier ("get");
7258 tree targs = make_tree_vec (1);
7259 TREE_VEC_ELT (targs, 0) = build_int_cst (integer_type_node, i);
7260
7261 tree etype = TREE_TYPE (decl);
7262 tree e = convert_from_reference (decl);
7263
7264 /* [The id-expression] e is an lvalue if the type of the entity e is an
7265 lvalue reference and an xvalue otherwise. */
7266 if (TREE_CODE (etype) != REFERENCE_TYPE
7267 || TYPE_REF_IS_RVALUE (etype))
7268 e = move (e);
7269
7270 tree fns = lookup_qualified_name (TREE_TYPE (e), get_id,
7271 /*type*/false, /*complain*/false);
7272 if (fns != error_mark_node)
7273 {
7274 fns = lookup_template_function (fns, targs);
7275 return build_new_method_call (e, fns, /*args*/NULL,
7276 /*path*/NULL_TREE, LOOKUP_NORMAL,
7277 /*fn_p*/NULL, tf_warning_or_error);
7278 }
7279 else
7280 {
7281 vec<tree,va_gc> *args = make_tree_vector_single (e);
7282 fns = lookup_template_function (get_id, targs);
7283 fns = perform_koenig_lookup (fns, args, tf_warning_or_error);
7284 return finish_call_expr (fns, &args, /*novirt*/false,
7285 /*koenig*/true, tf_warning_or_error);
7286 }
7287 }
7288
7289 /* It's impossible to recover the decltype of a tuple decomposition variable
7290 based on the actual type of the variable, so store it in a hash table. */
7291 static GTY(()) hash_map<tree,tree> *decomp_type_table;
7292 static void
7293 store_decomp_type (tree v, tree t)
7294 {
7295 if (!decomp_type_table)
7296 decomp_type_table = hash_map<tree,tree>::create_ggc (13);
7297 decomp_type_table->put (v, t);
7298 }
7299
7300 tree
7301 lookup_decomp_type (tree v)
7302 {
7303 return *decomp_type_table->get (v);
7304 }
7305
7306 /* Finish a decomposition declaration. DECL is the underlying declaration
7307 "e", FIRST is the head of a chain of decls for the individual identifiers
7308 chained through DECL_CHAIN in reverse order and COUNT is the number of
7309 those decls. */
7310
7311 void
7312 cp_finish_decomp (tree decl, tree first, unsigned int count)
7313 {
7314 if (error_operand_p (decl))
7315 {
7316 error_out:
7317 while (count--)
7318 {
7319 TREE_TYPE (first) = error_mark_node;
7320 if (DECL_HAS_VALUE_EXPR_P (first))
7321 {
7322 SET_DECL_VALUE_EXPR (first, NULL_TREE);
7323 DECL_HAS_VALUE_EXPR_P (first) = 0;
7324 }
7325 first = DECL_CHAIN (first);
7326 }
7327 if (DECL_P (decl) && DECL_NAMESPACE_SCOPE_P (decl))
7328 SET_DECL_ASSEMBLER_NAME (decl, get_identifier ("<decomp>"));
7329 return;
7330 }
7331
7332 location_t loc = DECL_SOURCE_LOCATION (decl);
7333 if (type_dependent_expression_p (decl)
7334 /* This happens for range for when not in templates.
7335 Still add the DECL_VALUE_EXPRs for later processing. */
7336 || (!processing_template_decl
7337 && type_uses_auto (TREE_TYPE (decl))))
7338 {
7339 for (unsigned int i = 0; i < count; i++)
7340 {
7341 if (!DECL_HAS_VALUE_EXPR_P (first))
7342 {
7343 tree v = build_nt (ARRAY_REF, decl,
7344 size_int (count - i - 1),
7345 NULL_TREE, NULL_TREE);
7346 SET_DECL_VALUE_EXPR (first, v);
7347 DECL_HAS_VALUE_EXPR_P (first) = 1;
7348 }
7349 if (processing_template_decl)
7350 fit_decomposition_lang_decl (first, decl);
7351 first = DECL_CHAIN (first);
7352 }
7353 return;
7354 }
7355
7356 auto_vec<tree, 16> v;
7357 v.safe_grow (count);
7358 tree d = first;
7359 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
7360 {
7361 v[count - i - 1] = d;
7362 fit_decomposition_lang_decl (d, decl);
7363 }
7364
7365 tree type = TREE_TYPE (decl);
7366 tree dexp = decl;
7367
7368 if (TREE_CODE (type) == REFERENCE_TYPE)
7369 {
7370 dexp = convert_from_reference (dexp);
7371 type = TREE_TYPE (type);
7372 }
7373
7374 tree eltype = NULL_TREE;
7375 unsigned HOST_WIDE_INT eltscnt = 0;
7376 if (TREE_CODE (type) == ARRAY_TYPE)
7377 {
7378 tree nelts;
7379 nelts = array_type_nelts_top (type);
7380 if (nelts == error_mark_node)
7381 goto error_out;
7382 if (!tree_fits_uhwi_p (nelts))
7383 {
7384 error_at (loc, "cannot decompose variable length array %qT", type);
7385 goto error_out;
7386 }
7387 eltscnt = tree_to_uhwi (nelts);
7388 if (count != eltscnt)
7389 {
7390 cnt_mismatch:
7391 if (count > eltscnt)
7392 error_at (loc, "%u names provided while %qT decomposes into "
7393 "%wu elements", count, type, eltscnt);
7394 else
7395 error_at (loc, "only %u names provided while %qT decomposes into "
7396 "%wu elements", count, type, eltscnt);
7397 goto error_out;
7398 }
7399 eltype = TREE_TYPE (type);
7400 for (unsigned int i = 0; i < count; i++)
7401 {
7402 TREE_TYPE (v[i]) = eltype;
7403 layout_decl (v[i], 0);
7404 if (processing_template_decl)
7405 continue;
7406 tree t = unshare_expr (dexp);
7407 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
7408 eltype, t, size_int (i), NULL_TREE,
7409 NULL_TREE);
7410 SET_DECL_VALUE_EXPR (v[i], t);
7411 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7412 }
7413 }
7414 /* 2 GNU extensions. */
7415 else if (TREE_CODE (type) == COMPLEX_TYPE)
7416 {
7417 eltscnt = 2;
7418 if (count != eltscnt)
7419 goto cnt_mismatch;
7420 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
7421 for (unsigned int i = 0; i < count; i++)
7422 {
7423 TREE_TYPE (v[i]) = eltype;
7424 layout_decl (v[i], 0);
7425 if (processing_template_decl)
7426 continue;
7427 tree t = unshare_expr (dexp);
7428 t = build1_loc (DECL_SOURCE_LOCATION (v[i]),
7429 i ? IMAGPART_EXPR : REALPART_EXPR, eltype,
7430 t);
7431 SET_DECL_VALUE_EXPR (v[i], t);
7432 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7433 }
7434 }
7435 else if (TREE_CODE (type) == VECTOR_TYPE)
7436 {
7437 eltscnt = TYPE_VECTOR_SUBPARTS (type);
7438 if (count != eltscnt)
7439 goto cnt_mismatch;
7440 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
7441 for (unsigned int i = 0; i < count; i++)
7442 {
7443 TREE_TYPE (v[i]) = eltype;
7444 layout_decl (v[i], 0);
7445 if (processing_template_decl)
7446 continue;
7447 tree t = unshare_expr (dexp);
7448 convert_vector_to_array_for_subscript (DECL_SOURCE_LOCATION (v[i]),
7449 &t, size_int (i));
7450 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
7451 eltype, t, size_int (i), NULL_TREE,
7452 NULL_TREE);
7453 SET_DECL_VALUE_EXPR (v[i], t);
7454 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7455 }
7456 }
7457 else if (tree tsize = get_tuple_size (type))
7458 {
7459 if (tsize == error_mark_node)
7460 {
7461 error_at (loc, "%<std::tuple_size<%T>::value%> is not an integral "
7462 "constant expression", type);
7463 goto error_out;
7464 }
7465 eltscnt = tree_to_uhwi (tsize);
7466 if (count != eltscnt)
7467 goto cnt_mismatch;
7468 int save_read = DECL_READ_P (decl);
7469 for (unsigned i = 0; i < count; ++i)
7470 {
7471 location_t sloc = input_location;
7472 location_t dloc = DECL_SOURCE_LOCATION (v[i]);
7473
7474 input_location = dloc;
7475 tree init = get_tuple_decomp_init (decl, i);
7476 tree eltype = (init == error_mark_node ? error_mark_node
7477 : get_tuple_element_type (type, i));
7478 input_location = sloc;
7479
7480 if (init == error_mark_node || eltype == error_mark_node)
7481 {
7482 inform (dloc, "in initialization of structured binding "
7483 "variable %qD", v[i]);
7484 goto error_out;
7485 }
7486 /* Save the decltype away before reference collapse. */
7487 store_decomp_type (v[i], eltype);
7488 eltype = cp_build_reference_type (eltype, !lvalue_p (init));
7489 TREE_TYPE (v[i]) = eltype;
7490 layout_decl (v[i], 0);
7491 if (DECL_HAS_VALUE_EXPR_P (v[i]))
7492 {
7493 /* In this case the names are variables, not just proxies. */
7494 SET_DECL_VALUE_EXPR (v[i], NULL_TREE);
7495 DECL_HAS_VALUE_EXPR_P (v[i]) = 0;
7496 }
7497 if (!processing_template_decl)
7498 cp_finish_decl (v[i], init, /*constexpr*/false,
7499 /*asm*/NULL_TREE, LOOKUP_NORMAL);
7500 }
7501 /* Ignore reads from the underlying decl performed during initialization
7502 of the individual variables. If those will be read, we'll mark
7503 the underlying decl as read at that point. */
7504 DECL_READ_P (decl) = save_read;
7505 }
7506 else if (TREE_CODE (type) == UNION_TYPE)
7507 {
7508 error_at (loc, "cannot decompose union type %qT", type);
7509 goto error_out;
7510 }
7511 else if (!CLASS_TYPE_P (type))
7512 {
7513 error_at (loc, "cannot decompose non-array non-class type %qT", type);
7514 goto error_out;
7515 }
7516 else if (LAMBDA_TYPE_P (type))
7517 {
7518 error_at (loc, "cannot decompose lambda closure type %qT", type);
7519 goto error_out;
7520 }
7521 else
7522 {
7523 tree btype = find_decomp_class_base (loc, type, NULL_TREE);
7524 if (btype == error_mark_node)
7525 goto error_out;
7526 else if (btype == NULL_TREE)
7527 {
7528 error_at (loc, "cannot decompose class type %qT without non-static "
7529 "data members", type);
7530 goto error_out;
7531 }
7532 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
7533 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
7534 continue;
7535 else
7536 eltscnt++;
7537 if (count != eltscnt)
7538 goto cnt_mismatch;
7539 tree t = dexp;
7540 if (type != btype)
7541 {
7542 t = convert_to_base (t, btype, /*check_access*/true,
7543 /*nonnull*/false, tf_warning_or_error);
7544 type = btype;
7545 }
7546 unsigned int i = 0;
7547 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
7548 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
7549 continue;
7550 else
7551 {
7552 tree tt = finish_non_static_data_member (field, unshare_expr (t),
7553 NULL_TREE);
7554 if (REFERENCE_REF_P (tt))
7555 tt = TREE_OPERAND (tt, 0);
7556 TREE_TYPE (v[i]) = TREE_TYPE (tt);
7557 layout_decl (v[i], 0);
7558 if (!processing_template_decl)
7559 {
7560 SET_DECL_VALUE_EXPR (v[i], tt);
7561 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7562 }
7563 i++;
7564 }
7565 }
7566 if (processing_template_decl)
7567 {
7568 for (unsigned int i = 0; i < count; i++)
7569 if (!DECL_HAS_VALUE_EXPR_P (v[i]))
7570 {
7571 tree a = build_nt (ARRAY_REF, decl, size_int (i),
7572 NULL_TREE, NULL_TREE);
7573 SET_DECL_VALUE_EXPR (v[i], a);
7574 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7575 }
7576 }
7577 else if (DECL_NAMESPACE_SCOPE_P (decl))
7578 SET_DECL_ASSEMBLER_NAME (decl, mangle_decomp (decl, v));
7579 }
7580
7581 /* Returns a declaration for a VAR_DECL as if:
7582
7583 extern "C" TYPE NAME;
7584
7585 had been seen. Used to create compiler-generated global
7586 variables. */
7587
7588 static tree
7589 declare_global_var (tree name, tree type)
7590 {
7591 tree decl;
7592
7593 push_to_top_level ();
7594 decl = build_decl (input_location, VAR_DECL, name, type);
7595 TREE_PUBLIC (decl) = 1;
7596 DECL_EXTERNAL (decl) = 1;
7597 DECL_ARTIFICIAL (decl) = 1;
7598 DECL_CONTEXT (decl) = FROB_CONTEXT (global_namespace);
7599 /* If the user has explicitly declared this variable (perhaps
7600 because the code we are compiling is part of a low-level runtime
7601 library), then it is possible that our declaration will be merged
7602 with theirs by pushdecl. */
7603 decl = pushdecl (decl);
7604 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
7605 pop_from_top_level ();
7606
7607 return decl;
7608 }
7609
7610 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
7611 if "__cxa_atexit" is not being used) corresponding to the function
7612 to be called when the program exits. */
7613
7614 static tree
7615 get_atexit_fn_ptr_type (void)
7616 {
7617 tree fn_type;
7618
7619 if (!atexit_fn_ptr_type_node)
7620 {
7621 tree arg_type;
7622 if (flag_use_cxa_atexit
7623 && !targetm.cxx.use_atexit_for_cxa_atexit ())
7624 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
7625 arg_type = ptr_type_node;
7626 else
7627 /* The parameter to "atexit" is "void (*)(void)". */
7628 arg_type = NULL_TREE;
7629
7630 fn_type = build_function_type_list (void_type_node,
7631 arg_type, NULL_TREE);
7632 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
7633 }
7634
7635 return atexit_fn_ptr_type_node;
7636 }
7637
7638 /* Returns a pointer to the `atexit' function. Note that if
7639 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
7640 `__cxa_atexit' function specified in the IA64 C++ ABI. */
7641
7642 static tree
7643 get_atexit_node (void)
7644 {
7645 tree atexit_fndecl;
7646 tree fn_type;
7647 tree fn_ptr_type;
7648 const char *name;
7649 bool use_aeabi_atexit;
7650
7651 if (atexit_node)
7652 return atexit_node;
7653
7654 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
7655 {
7656 /* The declaration for `__cxa_atexit' is:
7657
7658 int __cxa_atexit (void (*)(void *), void *, void *)
7659
7660 We build up the argument types and then the function type
7661 itself. */
7662 tree argtype0, argtype1, argtype2;
7663
7664 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
7665 /* First, build the pointer-to-function type for the first
7666 argument. */
7667 fn_ptr_type = get_atexit_fn_ptr_type ();
7668 /* Then, build the rest of the argument types. */
7669 argtype2 = ptr_type_node;
7670 if (use_aeabi_atexit)
7671 {
7672 argtype1 = fn_ptr_type;
7673 argtype0 = ptr_type_node;
7674 }
7675 else
7676 {
7677 argtype1 = ptr_type_node;
7678 argtype0 = fn_ptr_type;
7679 }
7680 /* And the final __cxa_atexit type. */
7681 fn_type = build_function_type_list (integer_type_node,
7682 argtype0, argtype1, argtype2,
7683 NULL_TREE);
7684 if (use_aeabi_atexit)
7685 name = "__aeabi_atexit";
7686 else
7687 name = "__cxa_atexit";
7688 }
7689 else
7690 {
7691 /* The declaration for `atexit' is:
7692
7693 int atexit (void (*)());
7694
7695 We build up the argument types and then the function type
7696 itself. */
7697 fn_ptr_type = get_atexit_fn_ptr_type ();
7698 /* Build the final atexit type. */
7699 fn_type = build_function_type_list (integer_type_node,
7700 fn_ptr_type, NULL_TREE);
7701 name = "atexit";
7702 }
7703
7704 /* Now, build the function declaration. */
7705 push_lang_context (lang_name_c);
7706 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
7707 mark_used (atexit_fndecl);
7708 pop_lang_context ();
7709 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
7710
7711 return atexit_node;
7712 }
7713
7714 /* Like get_atexit_node, but for thread-local cleanups. */
7715
7716 static tree
7717 get_thread_atexit_node (void)
7718 {
7719 /* The declaration for `__cxa_thread_atexit' is:
7720
7721 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
7722 tree fn_type = build_function_type_list (integer_type_node,
7723 get_atexit_fn_ptr_type (),
7724 ptr_type_node, ptr_type_node,
7725 NULL_TREE);
7726
7727 /* Now, build the function declaration. */
7728 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
7729 ECF_LEAF | ECF_NOTHROW);
7730 return decay_conversion (atexit_fndecl, tf_warning_or_error);
7731 }
7732
7733 /* Returns the __dso_handle VAR_DECL. */
7734
7735 static tree
7736 get_dso_handle_node (void)
7737 {
7738 if (dso_handle_node)
7739 return dso_handle_node;
7740
7741 /* Declare the variable. */
7742 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
7743 ptr_type_node);
7744
7745 #ifdef HAVE_GAS_HIDDEN
7746 if (dso_handle_node != error_mark_node)
7747 {
7748 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
7749 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
7750 }
7751 #endif
7752
7753 return dso_handle_node;
7754 }
7755
7756 /* Begin a new function with internal linkage whose job will be simply
7757 to destroy some particular variable. */
7758
7759 static GTY(()) int start_cleanup_cnt;
7760
7761 static tree
7762 start_cleanup_fn (void)
7763 {
7764 char name[32];
7765 tree fntype;
7766 tree fndecl;
7767 bool use_cxa_atexit = flag_use_cxa_atexit
7768 && !targetm.cxx.use_atexit_for_cxa_atexit ();
7769
7770 push_to_top_level ();
7771
7772 /* No need to mangle this. */
7773 push_lang_context (lang_name_c);
7774
7775 /* Build the name of the function. */
7776 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
7777 /* Build the function declaration. */
7778 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
7779 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
7780 /* It's a function with internal linkage, generated by the
7781 compiler. */
7782 TREE_PUBLIC (fndecl) = 0;
7783 DECL_ARTIFICIAL (fndecl) = 1;
7784 /* Make the function `inline' so that it is only emitted if it is
7785 actually needed. It is unlikely that it will be inlined, since
7786 it is only called via a function pointer, but we avoid unnecessary
7787 emissions this way. */
7788 DECL_DECLARED_INLINE_P (fndecl) = 1;
7789 DECL_INTERFACE_KNOWN (fndecl) = 1;
7790 /* Build the parameter. */
7791 if (use_cxa_atexit)
7792 {
7793 tree parmdecl = cp_build_parm_decl (fndecl, NULL_TREE, ptr_type_node);
7794 TREE_USED (parmdecl) = 1;
7795 DECL_READ_P (parmdecl) = 1;
7796 DECL_ARGUMENTS (fndecl) = parmdecl;
7797 }
7798
7799 pushdecl (fndecl);
7800 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
7801
7802 pop_lang_context ();
7803
7804 return current_function_decl;
7805 }
7806
7807 /* Finish the cleanup function begun by start_cleanup_fn. */
7808
7809 static void
7810 end_cleanup_fn (void)
7811 {
7812 expand_or_defer_fn (finish_function (/*inline_p=*/false));
7813
7814 pop_from_top_level ();
7815 }
7816
7817 /* Generate code to handle the destruction of DECL, an object with
7818 static storage duration. */
7819
7820 tree
7821 register_dtor_fn (tree decl)
7822 {
7823 tree cleanup;
7824 tree addr;
7825 tree compound_stmt;
7826 tree fcall;
7827 tree type;
7828 bool ob_parm, dso_parm, use_dtor;
7829 tree arg0, arg1, arg2;
7830 tree atex_node;
7831
7832 type = TREE_TYPE (decl);
7833 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
7834 return void_node;
7835
7836 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
7837 "__aeabi_atexit"), and DECL is a class object, we can just pass the
7838 destructor to "__cxa_atexit"; we don't have to build a temporary
7839 function to do the cleanup. */
7840 dso_parm = (flag_use_cxa_atexit
7841 && !targetm.cxx.use_atexit_for_cxa_atexit ());
7842 ob_parm = (CP_DECL_THREAD_LOCAL_P (decl) || dso_parm);
7843 use_dtor = ob_parm && CLASS_TYPE_P (type);
7844 if (use_dtor)
7845 {
7846 cleanup = get_class_binding (type, complete_dtor_identifier);
7847
7848 /* Make sure it is accessible. */
7849 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
7850 tf_warning_or_error);
7851 }
7852 else
7853 {
7854 /* Call build_cleanup before we enter the anonymous function so
7855 that any access checks will be done relative to the current
7856 scope, rather than the scope of the anonymous function. */
7857 build_cleanup (decl);
7858
7859 /* Now start the function. */
7860 cleanup = start_cleanup_fn ();
7861
7862 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
7863 to the original function, rather than the anonymous one. That
7864 will make the back end think that nested functions are in use,
7865 which causes confusion. */
7866 push_deferring_access_checks (dk_no_check);
7867 fcall = build_cleanup (decl);
7868 pop_deferring_access_checks ();
7869
7870 /* Create the body of the anonymous function. */
7871 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
7872 finish_expr_stmt (fcall);
7873 finish_compound_stmt (compound_stmt);
7874 end_cleanup_fn ();
7875 }
7876
7877 /* Call atexit with the cleanup function. */
7878 mark_used (cleanup);
7879 cleanup = build_address (cleanup);
7880
7881 if (CP_DECL_THREAD_LOCAL_P (decl))
7882 atex_node = get_thread_atexit_node ();
7883 else
7884 atex_node = get_atexit_node ();
7885
7886 if (use_dtor)
7887 {
7888 /* We must convert CLEANUP to the type that "__cxa_atexit"
7889 expects. */
7890 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
7891 /* "__cxa_atexit" will pass the address of DECL to the
7892 cleanup function. */
7893 mark_used (decl);
7894 addr = build_address (decl);
7895 /* The declared type of the parameter to "__cxa_atexit" is
7896 "void *". For plain "T*", we could just let the
7897 machinery in cp_build_function_call convert it -- but if the
7898 type is "cv-qualified T *", then we need to convert it
7899 before passing it in, to avoid spurious errors. */
7900 addr = build_nop (ptr_type_node, addr);
7901 }
7902 else
7903 /* Since the cleanup functions we build ignore the address
7904 they're given, there's no reason to pass the actual address
7905 in, and, in general, it's cheaper to pass NULL than any
7906 other value. */
7907 addr = null_pointer_node;
7908
7909 if (dso_parm)
7910 arg2 = cp_build_addr_expr (get_dso_handle_node (),
7911 tf_warning_or_error);
7912 else if (ob_parm)
7913 /* Just pass NULL to the dso handle parm if we don't actually
7914 have a DSO handle on this target. */
7915 arg2 = null_pointer_node;
7916 else
7917 arg2 = NULL_TREE;
7918
7919 if (ob_parm)
7920 {
7921 if (!CP_DECL_THREAD_LOCAL_P (decl)
7922 && targetm.cxx.use_aeabi_atexit ())
7923 {
7924 arg1 = cleanup;
7925 arg0 = addr;
7926 }
7927 else
7928 {
7929 arg1 = addr;
7930 arg0 = cleanup;
7931 }
7932 }
7933 else
7934 {
7935 arg0 = cleanup;
7936 arg1 = NULL_TREE;
7937 }
7938 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
7939 arg0, arg1, arg2, NULL_TREE);
7940 }
7941
7942 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
7943 is its initializer. Generate code to handle the construction
7944 and destruction of DECL. */
7945
7946 static void
7947 expand_static_init (tree decl, tree init)
7948 {
7949 gcc_assert (VAR_P (decl));
7950 gcc_assert (TREE_STATIC (decl));
7951
7952 /* Some variables require no dynamic initialization. */
7953 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
7954 {
7955 /* Make sure the destructor is callable. */
7956 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
7957 if (!init)
7958 return;
7959 }
7960
7961 if (CP_DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
7962 && !DECL_FUNCTION_SCOPE_P (decl))
7963 {
7964 if (init)
7965 error ("non-local variable %qD declared %<__thread%> "
7966 "needs dynamic initialization", decl);
7967 else
7968 error ("non-local variable %qD declared %<__thread%> "
7969 "has a non-trivial destructor", decl);
7970 static bool informed;
7971 if (!informed)
7972 {
7973 inform (DECL_SOURCE_LOCATION (decl),
7974 "C++11 %<thread_local%> allows dynamic initialization "
7975 "and destruction");
7976 informed = true;
7977 }
7978 return;
7979 }
7980
7981 if (DECL_FUNCTION_SCOPE_P (decl))
7982 {
7983 /* Emit code to perform this initialization but once. */
7984 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
7985 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
7986 tree guard, guard_addr;
7987 tree flag, begin;
7988 /* We don't need thread-safety code for thread-local vars. */
7989 bool thread_guard = (flag_threadsafe_statics
7990 && !CP_DECL_THREAD_LOCAL_P (decl));
7991
7992 /* Emit code to perform this initialization but once. This code
7993 looks like:
7994
7995 static <type> guard;
7996 if (!__atomic_load (guard.first_byte)) {
7997 if (__cxa_guard_acquire (&guard)) {
7998 bool flag = false;
7999 try {
8000 // Do initialization.
8001 flag = true; __cxa_guard_release (&guard);
8002 // Register variable for destruction at end of program.
8003 } catch {
8004 if (!flag) __cxa_guard_abort (&guard);
8005 }
8006 }
8007 }
8008
8009 Note that the `flag' variable is only set to 1 *after* the
8010 initialization is complete. This ensures that an exception,
8011 thrown during the construction, will cause the variable to
8012 reinitialized when we pass through this code again, as per:
8013
8014 [stmt.dcl]
8015
8016 If the initialization exits by throwing an exception, the
8017 initialization is not complete, so it will be tried again
8018 the next time control enters the declaration.
8019
8020 This process should be thread-safe, too; multiple threads
8021 should not be able to initialize the variable more than
8022 once. */
8023
8024 /* Create the guard variable. */
8025 guard = get_guard (decl);
8026
8027 /* Begin the conditional initialization. */
8028 if_stmt = begin_if_stmt ();
8029
8030 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
8031 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
8032
8033 if (thread_guard)
8034 {
8035 tree vfntype = NULL_TREE;
8036 tree acquire_name, release_name, abort_name;
8037 tree acquire_fn, release_fn, abort_fn;
8038 guard_addr = build_address (guard);
8039
8040 acquire_name = get_identifier ("__cxa_guard_acquire");
8041 release_name = get_identifier ("__cxa_guard_release");
8042 abort_name = get_identifier ("__cxa_guard_abort");
8043 acquire_fn = get_global_binding (acquire_name);
8044 release_fn = get_global_binding (release_name);
8045 abort_fn = get_global_binding (abort_name);
8046 if (!acquire_fn)
8047 acquire_fn = push_library_fn
8048 (acquire_name, build_function_type_list (integer_type_node,
8049 TREE_TYPE (guard_addr),
8050 NULL_TREE),
8051 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
8052 if (!release_fn || !abort_fn)
8053 vfntype = build_function_type_list (void_type_node,
8054 TREE_TYPE (guard_addr),
8055 NULL_TREE);
8056 if (!release_fn)
8057 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
8058 ECF_NOTHROW | ECF_LEAF);
8059 if (!abort_fn)
8060 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
8061 ECF_NOTHROW | ECF_LEAF);
8062
8063 inner_if_stmt = begin_if_stmt ();
8064 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
8065 inner_if_stmt);
8066
8067 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
8068 begin = get_target_expr (boolean_false_node);
8069 flag = TARGET_EXPR_SLOT (begin);
8070
8071 TARGET_EXPR_CLEANUP (begin)
8072 = build3 (COND_EXPR, void_type_node, flag,
8073 void_node,
8074 build_call_n (abort_fn, 1, guard_addr));
8075 CLEANUP_EH_ONLY (begin) = 1;
8076
8077 /* Do the initialization itself. */
8078 init = add_stmt_to_compound (begin, init);
8079 init = add_stmt_to_compound
8080 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
8081 init = add_stmt_to_compound
8082 (init, build_call_n (release_fn, 1, guard_addr));
8083 }
8084 else
8085 init = add_stmt_to_compound (init, set_guard (guard));
8086
8087 /* Use atexit to register a function for destroying this static
8088 variable. */
8089 init = add_stmt_to_compound (init, register_dtor_fn (decl));
8090
8091 finish_expr_stmt (init);
8092
8093 if (thread_guard)
8094 {
8095 finish_compound_stmt (inner_then_clause);
8096 finish_then_clause (inner_if_stmt);
8097 finish_if_stmt (inner_if_stmt);
8098 }
8099
8100 finish_compound_stmt (then_clause);
8101 finish_then_clause (if_stmt);
8102 finish_if_stmt (if_stmt);
8103 }
8104 else if (CP_DECL_THREAD_LOCAL_P (decl))
8105 tls_aggregates = tree_cons (init, decl, tls_aggregates);
8106 else
8107 static_aggregates = tree_cons (init, decl, static_aggregates);
8108 }
8109
8110 \f
8111 /* Make TYPE a complete type based on INITIAL_VALUE.
8112 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
8113 2 if there was no information (in which case assume 0 if DO_DEFAULT),
8114 3 if the initializer list is empty (in pedantic mode). */
8115
8116 int
8117 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
8118 {
8119 int failure;
8120 tree type, elt_type;
8121
8122 /* Don't get confused by a CONSTRUCTOR for some other type. */
8123 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
8124 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value)
8125 && TREE_CODE (TREE_TYPE (initial_value)) != ARRAY_TYPE)
8126 return 1;
8127
8128 if (initial_value)
8129 {
8130 unsigned HOST_WIDE_INT i;
8131 tree value;
8132
8133 /* An array of character type can be initialized from a
8134 brace-enclosed string constant.
8135
8136 FIXME: this code is duplicated from reshape_init. Probably
8137 we should just call reshape_init here? */
8138 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
8139 && TREE_CODE (initial_value) == CONSTRUCTOR
8140 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
8141 {
8142 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
8143 tree value = (*v)[0].value;
8144
8145 if (TREE_CODE (value) == STRING_CST
8146 && v->length () == 1)
8147 initial_value = value;
8148 }
8149
8150 /* If any of the elements are parameter packs, we can't actually
8151 complete this type now because the array size is dependent. */
8152 if (TREE_CODE (initial_value) == CONSTRUCTOR)
8153 {
8154 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
8155 i, value)
8156 {
8157 if (PACK_EXPANSION_P (value))
8158 return 0;
8159 }
8160 }
8161 }
8162
8163 failure = complete_array_type (ptype, initial_value, do_default);
8164
8165 /* We can create the array before the element type is complete, which
8166 means that we didn't have these two bits set in the original type
8167 either. In completing the type, we are expected to propagate these
8168 bits. See also complete_type which does the same thing for arrays
8169 of fixed size. */
8170 type = *ptype;
8171 if (TYPE_DOMAIN (type))
8172 {
8173 elt_type = TREE_TYPE (type);
8174 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
8175 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
8176 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
8177 }
8178
8179 return failure;
8180 }
8181
8182 /* As above, but either give an error or reject zero-size arrays, depending
8183 on COMPLAIN. */
8184
8185 int
8186 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
8187 bool do_default, tsubst_flags_t complain)
8188 {
8189 int failure;
8190 bool sfinae = !(complain & tf_error);
8191 /* In SFINAE context we can't be lenient about zero-size arrays. */
8192 if (sfinae)
8193 ++pedantic;
8194 failure = cp_complete_array_type (ptype, initial_value, do_default);
8195 if (sfinae)
8196 --pedantic;
8197 if (failure)
8198 {
8199 if (sfinae)
8200 /* Not an error. */;
8201 else if (failure == 1)
8202 error ("initializer fails to determine size of %qT", *ptype);
8203 else if (failure == 2)
8204 {
8205 if (do_default)
8206 error ("array size missing in %qT", *ptype);
8207 }
8208 else if (failure == 3)
8209 error ("zero-size array %qT", *ptype);
8210 *ptype = error_mark_node;
8211 }
8212 return failure;
8213 }
8214 \f
8215 /* Return zero if something is declared to be a member of type
8216 CTYPE when in the context of CUR_TYPE. STRING is the error
8217 message to print in that case. Otherwise, quietly return 1. */
8218
8219 static int
8220 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
8221 {
8222 if (ctype && ctype != cur_type)
8223 {
8224 if (flags == DTOR_FLAG)
8225 error ("destructor for alien class %qT cannot be a member", ctype);
8226 else
8227 error ("constructor for alien class %qT cannot be a member", ctype);
8228 return 0;
8229 }
8230 return 1;
8231 }
8232 \f
8233 /* Subroutine of `grokdeclarator'. */
8234
8235 /* Generate errors possibly applicable for a given set of specifiers.
8236 This is for ARM $7.1.2. */
8237
8238 static void
8239 bad_specifiers (tree object,
8240 enum bad_spec_place type,
8241 int virtualp,
8242 int quals,
8243 int inlinep,
8244 int friendp,
8245 int raises)
8246 {
8247 switch (type)
8248 {
8249 case BSP_VAR:
8250 if (virtualp)
8251 error ("%qD declared as a %<virtual%> variable", object);
8252 if (quals)
8253 error ("%<const%> and %<volatile%> function specifiers on "
8254 "%qD invalid in variable declaration", object);
8255 break;
8256 case BSP_PARM:
8257 if (virtualp)
8258 error ("%qD declared as a %<virtual%> parameter", object);
8259 if (inlinep)
8260 error ("%qD declared as an %<inline%> parameter", object);
8261 if (quals)
8262 error ("%<const%> and %<volatile%> function specifiers on "
8263 "%qD invalid in parameter declaration", object);
8264 break;
8265 case BSP_TYPE:
8266 if (virtualp)
8267 error ("%qD declared as a %<virtual%> type", object);
8268 if (inlinep)
8269 error ("%qD declared as an %<inline%> type", object);
8270 if (quals)
8271 error ("%<const%> and %<volatile%> function specifiers on "
8272 "%qD invalid in type declaration", object);
8273 break;
8274 case BSP_FIELD:
8275 if (virtualp)
8276 error ("%qD declared as a %<virtual%> field", object);
8277 if (inlinep)
8278 error ("%qD declared as an %<inline%> field", object);
8279 if (quals)
8280 error ("%<const%> and %<volatile%> function specifiers on "
8281 "%qD invalid in field declaration", object);
8282 break;
8283 default:
8284 gcc_unreachable();
8285 }
8286 if (friendp)
8287 error ("%q+D declared as a friend", object);
8288 if (raises
8289 && !flag_noexcept_type
8290 && (TREE_CODE (object) == TYPE_DECL
8291 || (!TYPE_PTRFN_P (TREE_TYPE (object))
8292 && !TYPE_REFFN_P (TREE_TYPE (object))
8293 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
8294 error ("%q+D declared with an exception specification", object);
8295 }
8296
8297 /* DECL is a member function or static data member and is presently
8298 being defined. Check that the definition is taking place in a
8299 valid namespace. */
8300
8301 static void
8302 check_class_member_definition_namespace (tree decl)
8303 {
8304 /* These checks only apply to member functions and static data
8305 members. */
8306 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
8307 /* We check for problems with specializations in pt.c in
8308 check_specialization_namespace, where we can issue better
8309 diagnostics. */
8310 if (processing_specialization)
8311 return;
8312 /* We check this in check_explicit_instantiation_namespace. */
8313 if (processing_explicit_instantiation)
8314 return;
8315 /* [class.mfct]
8316
8317 A member function definition that appears outside of the
8318 class definition shall appear in a namespace scope enclosing
8319 the class definition.
8320
8321 [class.static.data]
8322
8323 The definition for a static data member shall appear in a
8324 namespace scope enclosing the member's class definition. */
8325 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
8326 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
8327 decl, DECL_CONTEXT (decl));
8328 }
8329
8330 /* Build a PARM_DECL for the "this" parameter of FN. TYPE is the
8331 METHOD_TYPE for a non-static member function; QUALS are the
8332 cv-qualifiers that apply to the function. */
8333
8334 tree
8335 build_this_parm (tree fn, tree type, cp_cv_quals quals)
8336 {
8337 tree this_type;
8338 tree qual_type;
8339 tree parm;
8340 cp_cv_quals this_quals;
8341
8342 if (CLASS_TYPE_P (type))
8343 {
8344 this_type
8345 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
8346 this_type = build_pointer_type (this_type);
8347 }
8348 else
8349 this_type = type_of_this_parm (type);
8350 /* The `this' parameter is implicitly `const'; it cannot be
8351 assigned to. */
8352 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
8353 qual_type = cp_build_qualified_type (this_type, this_quals);
8354 parm = build_artificial_parm (fn, this_identifier, qual_type);
8355 cp_apply_type_quals_to_decl (this_quals, parm);
8356 return parm;
8357 }
8358
8359 /* DECL is a static member function. Complain if it was declared
8360 with function-cv-quals. */
8361
8362 static void
8363 check_static_quals (tree decl, cp_cv_quals quals)
8364 {
8365 if (quals != TYPE_UNQUALIFIED)
8366 error ("static member function %q#D declared with type qualifiers",
8367 decl);
8368 }
8369
8370 // Check that FN takes no arguments and returns bool.
8371 static void
8372 check_concept_fn (tree fn)
8373 {
8374 // A constraint is nullary.
8375 if (DECL_ARGUMENTS (fn))
8376 error ("concept %q#D declared with function parameters", fn);
8377
8378 // The declared return type of the concept shall be bool, and
8379 // it shall not be deduced from it definition.
8380 tree type = TREE_TYPE (TREE_TYPE (fn));
8381 if (is_auto (type))
8382 error ("concept %q#D declared with a deduced return type", fn);
8383 else if (type != boolean_type_node)
8384 error ("concept %q#D with non-%<bool%> return type %qT", fn, type);
8385 }
8386
8387 /* Helper function. Replace the temporary this parameter injected
8388 during cp_finish_omp_declare_simd with the real this parameter. */
8389
8390 static tree
8391 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
8392 {
8393 tree this_parm = (tree) data;
8394 if (TREE_CODE (*tp) == PARM_DECL
8395 && DECL_NAME (*tp) == this_identifier
8396 && *tp != this_parm)
8397 *tp = this_parm;
8398 else if (TYPE_P (*tp))
8399 *walk_subtrees = 0;
8400 return NULL_TREE;
8401 }
8402
8403 /* CTYPE is class type, or null if non-class.
8404 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
8405 or METHOD_TYPE.
8406 DECLARATOR is the function's name.
8407 PARMS is a chain of PARM_DECLs for the function.
8408 VIRTUALP is truthvalue of whether the function is virtual or not.
8409 FLAGS are to be passed through to `grokclassfn'.
8410 QUALS are qualifiers indicating whether the function is `const'
8411 or `volatile'.
8412 RAISES is a list of exceptions that this function can raise.
8413 CHECK is 1 if we must find this method in CTYPE, 0 if we should
8414 not look, and -1 if we should not call `grokclassfn' at all.
8415
8416 SFK is the kind of special function (if any) for the new function.
8417
8418 Returns `NULL_TREE' if something goes wrong, after issuing
8419 applicable error messages. */
8420
8421 static tree
8422 grokfndecl (tree ctype,
8423 tree type,
8424 tree declarator,
8425 tree parms,
8426 tree orig_declarator,
8427 tree decl_reqs,
8428 int virtualp,
8429 enum overload_flags flags,
8430 cp_cv_quals quals,
8431 cp_ref_qualifier rqual,
8432 tree raises,
8433 int check,
8434 int friendp,
8435 int publicp,
8436 int inlinep,
8437 bool deletedp,
8438 special_function_kind sfk,
8439 bool funcdef_flag,
8440 int template_count,
8441 tree in_namespace,
8442 tree* attrlist,
8443 location_t location)
8444 {
8445 tree decl;
8446 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
8447 tree t;
8448
8449 // Was the concept specifier present?
8450 bool concept_p = inlinep & 4;
8451
8452 // Concept declarations must have a corresponding definition.
8453 if (concept_p && !funcdef_flag)
8454 {
8455 error ("concept %qD has no definition", declarator);
8456 return NULL_TREE;
8457 }
8458
8459 if (rqual)
8460 type = build_ref_qualified_type (type, rqual);
8461 if (raises)
8462 type = build_exception_variant (type, raises);
8463
8464 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
8465
8466 /* Set the constraints on the declaration. */
8467 if (flag_concepts)
8468 {
8469 tree tmpl_reqs = NULL_TREE;
8470 if (processing_template_decl > template_class_depth (ctype))
8471 tmpl_reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
8472
8473 /* Adjust the required expression into a constraint. */
8474 if (decl_reqs)
8475 decl_reqs = normalize_expression (decl_reqs);
8476
8477 tree ci = build_constraints (tmpl_reqs, decl_reqs);
8478 set_constraints (decl, ci);
8479 }
8480
8481 /* If we have an explicit location, use it, otherwise use whatever
8482 build_lang_decl used (probably input_location). */
8483 if (location != UNKNOWN_LOCATION)
8484 DECL_SOURCE_LOCATION (decl) = location;
8485
8486 if (TREE_CODE (type) == METHOD_TYPE)
8487 {
8488 tree parm = build_this_parm (decl, type, quals);
8489 DECL_CHAIN (parm) = parms;
8490 parms = parm;
8491
8492 /* Allocate space to hold the vptr bit if needed. */
8493 SET_DECL_ALIGN (decl, MINIMUM_METHOD_BOUNDARY);
8494 }
8495
8496 DECL_ARGUMENTS (decl) = parms;
8497 for (t = parms; t; t = DECL_CHAIN (t))
8498 DECL_CONTEXT (t) = decl;
8499
8500 /* Propagate volatile out from type to decl. */
8501 if (TYPE_VOLATILE (type))
8502 TREE_THIS_VOLATILE (decl) = 1;
8503
8504 /* Setup decl according to sfk. */
8505 switch (sfk)
8506 {
8507 case sfk_constructor:
8508 case sfk_copy_constructor:
8509 case sfk_move_constructor:
8510 DECL_CXX_CONSTRUCTOR_P (decl) = 1;
8511 DECL_NAME (decl) = ctor_identifier;
8512 break;
8513 case sfk_destructor:
8514 DECL_CXX_DESTRUCTOR_P (decl) = 1;
8515 DECL_NAME (decl) = dtor_identifier;
8516 break;
8517 default:
8518 break;
8519 }
8520
8521 if (friendp && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
8522 {
8523 if (funcdef_flag)
8524 error ("defining explicit specialization %qD in friend declaration",
8525 orig_declarator);
8526 else
8527 {
8528 tree fns = TREE_OPERAND (orig_declarator, 0);
8529 tree args = TREE_OPERAND (orig_declarator, 1);
8530
8531 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
8532 {
8533 /* Something like `template <class T> friend void f<T>()'. */
8534 error ("invalid use of template-id %qD in declaration "
8535 "of primary template",
8536 orig_declarator);
8537 return NULL_TREE;
8538 }
8539
8540
8541 /* A friend declaration of the form friend void f<>(). Record
8542 the information in the TEMPLATE_ID_EXPR. */
8543 SET_DECL_IMPLICIT_INSTANTIATION (decl);
8544
8545 gcc_assert (identifier_p (fns) || TREE_CODE (fns) == OVERLOAD);
8546 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
8547
8548 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
8549 if (TREE_PURPOSE (t)
8550 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
8551 {
8552 error ("default arguments are not allowed in declaration "
8553 "of friend template specialization %qD",
8554 decl);
8555 return NULL_TREE;
8556 }
8557
8558 if (inlinep & 1)
8559 {
8560 error ("%<inline%> is not allowed in declaration of friend "
8561 "template specialization %qD",
8562 decl);
8563 return NULL_TREE;
8564 }
8565 }
8566 }
8567
8568 /* If this decl has namespace scope, set that up. */
8569 if (in_namespace)
8570 set_decl_namespace (decl, in_namespace, friendp);
8571 else if (!ctype)
8572 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
8573
8574 /* `main' and builtins have implicit 'C' linkage. */
8575 if (ctype == NULL_TREE
8576 && DECL_FILE_SCOPE_P (decl)
8577 && current_lang_name == lang_name_cplusplus
8578 && (MAIN_NAME_P (declarator)
8579 || (IDENTIFIER_LENGTH (declarator) > 10
8580 && IDENTIFIER_POINTER (declarator)[0] == '_'
8581 && IDENTIFIER_POINTER (declarator)[1] == '_'
8582 && strncmp (IDENTIFIER_POINTER (declarator)+2,
8583 "builtin_", 8) == 0)
8584 || (targetcm.cxx_implicit_extern_c
8585 && (targetcm.cxx_implicit_extern_c
8586 (IDENTIFIER_POINTER (declarator))))))
8587 SET_DECL_LANGUAGE (decl, lang_c);
8588
8589 /* Should probably propagate const out from type to decl I bet (mrs). */
8590 if (staticp)
8591 {
8592 DECL_STATIC_FUNCTION_P (decl) = 1;
8593 DECL_CONTEXT (decl) = ctype;
8594 }
8595
8596 if (deletedp)
8597 DECL_DELETED_FN (decl) = 1;
8598
8599 if (ctype)
8600 {
8601 DECL_CONTEXT (decl) = ctype;
8602 if (funcdef_flag)
8603 check_class_member_definition_namespace (decl);
8604 }
8605
8606 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8607 {
8608 if (PROCESSING_REAL_TEMPLATE_DECL_P())
8609 error ("cannot declare %<::main%> to be a template");
8610 if (inlinep & 1)
8611 error ("cannot declare %<::main%> to be inline");
8612 if (inlinep & 2)
8613 error ("cannot declare %<::main%> to be constexpr");
8614 if (!publicp)
8615 error ("cannot declare %<::main%> to be static");
8616 inlinep = 0;
8617 publicp = 1;
8618 }
8619
8620 /* Members of anonymous types and local classes have no linkage; make
8621 them internal. If a typedef is made later, this will be changed. */
8622 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
8623 || decl_function_context (TYPE_MAIN_DECL (ctype))))
8624 publicp = 0;
8625
8626 if (publicp && cxx_dialect == cxx98)
8627 {
8628 /* [basic.link]: A name with no linkage (notably, the name of a class
8629 or enumeration declared in a local scope) shall not be used to
8630 declare an entity with linkage.
8631
8632 DR 757 relaxes this restriction for C++0x. */
8633 no_linkage_error (decl);
8634 }
8635
8636 TREE_PUBLIC (decl) = publicp;
8637 if (! publicp)
8638 {
8639 DECL_INTERFACE_KNOWN (decl) = 1;
8640 DECL_NOT_REALLY_EXTERN (decl) = 1;
8641 }
8642
8643 /* If the declaration was declared inline, mark it as such. */
8644 if (inlinep)
8645 {
8646 DECL_DECLARED_INLINE_P (decl) = 1;
8647 if (publicp)
8648 DECL_COMDAT (decl) = 1;
8649 }
8650 if (inlinep & 2)
8651 DECL_DECLARED_CONSTEXPR_P (decl) = true;
8652
8653 // If the concept declaration specifier was found, check
8654 // that the declaration satisfies the necessary requirements.
8655 if (concept_p)
8656 {
8657 DECL_DECLARED_CONCEPT_P (decl) = true;
8658 check_concept_fn (decl);
8659 }
8660
8661 DECL_EXTERNAL (decl) = 1;
8662 if (TREE_CODE (type) == FUNCTION_TYPE)
8663 {
8664 if (quals || rqual)
8665 TREE_TYPE (decl) = apply_memfn_quals (TREE_TYPE (decl),
8666 TYPE_UNQUALIFIED,
8667 REF_QUAL_NONE);
8668
8669 if (quals)
8670 {
8671 error (ctype
8672 ? G_("static member function %qD cannot have cv-qualifier")
8673 : G_("non-member function %qD cannot have cv-qualifier"),
8674 decl);
8675 quals = TYPE_UNQUALIFIED;
8676 }
8677
8678 if (rqual)
8679 {
8680 error (ctype
8681 ? G_("static member function %qD cannot have ref-qualifier")
8682 : G_("non-member function %qD cannot have ref-qualifier"),
8683 decl);
8684 rqual = REF_QUAL_NONE;
8685 }
8686 }
8687
8688 if (deduction_guide_p (decl))
8689 {
8690 if (!DECL_NAMESPACE_SCOPE_P (decl))
8691 {
8692 error_at (location, "deduction guide %qD must be declared at "
8693 "namespace scope", decl);
8694 return NULL_TREE;
8695 }
8696 if (funcdef_flag)
8697 error_at (location,
8698 "deduction guide %qD must not have a function body", decl);
8699 }
8700 else if (IDENTIFIER_ANY_OP_P (DECL_NAME (decl))
8701 && !grok_op_properties (decl, /*complain=*/true))
8702 return NULL_TREE;
8703 else if (UDLIT_OPER_P (DECL_NAME (decl)))
8704 {
8705 bool long_long_unsigned_p;
8706 bool long_double_p;
8707 const char *suffix = NULL;
8708 /* [over.literal]/6: Literal operators shall not have C linkage. */
8709 if (DECL_LANGUAGE (decl) == lang_c)
8710 {
8711 error ("literal operator with C linkage");
8712 maybe_show_extern_c_location ();
8713 return NULL_TREE;
8714 }
8715
8716 if (DECL_NAMESPACE_SCOPE_P (decl))
8717 {
8718 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
8719 &long_double_p))
8720 {
8721 error ("%qD has invalid argument list", decl);
8722 return NULL_TREE;
8723 }
8724
8725 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
8726 if (long_long_unsigned_p)
8727 {
8728 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
8729 warning (0, "integer suffix %qs"
8730 " shadowed by implementation", suffix);
8731 }
8732 else if (long_double_p)
8733 {
8734 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
8735 warning (0, "floating point suffix %qs"
8736 " shadowed by implementation", suffix);
8737 }
8738 }
8739 else
8740 {
8741 error ("%qD must be a non-member function", decl);
8742 return NULL_TREE;
8743 }
8744 }
8745
8746 if (funcdef_flag)
8747 /* Make the init_value nonzero so pushdecl knows this is not
8748 tentative. error_mark_node is replaced later with the BLOCK. */
8749 DECL_INITIAL (decl) = error_mark_node;
8750
8751 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
8752 TREE_NOTHROW (decl) = 1;
8753
8754 if (flag_openmp || flag_openmp_simd || flag_cilkplus)
8755 {
8756 /* Adjust "omp declare simd" attributes. */
8757 tree ods = lookup_attribute ("omp declare simd", *attrlist);
8758 if (ods)
8759 {
8760 tree attr;
8761 for (attr = ods; attr;
8762 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
8763 {
8764 if (TREE_CODE (type) == METHOD_TYPE)
8765 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
8766 DECL_ARGUMENTS (decl), NULL);
8767 if (TREE_VALUE (attr) != NULL_TREE)
8768 {
8769 tree cl = TREE_VALUE (TREE_VALUE (attr));
8770 cl = c_omp_declare_simd_clauses_to_numbers
8771 (DECL_ARGUMENTS (decl), cl);
8772 if (cl)
8773 TREE_VALUE (TREE_VALUE (attr)) = cl;
8774 else
8775 TREE_VALUE (attr) = NULL_TREE;
8776 }
8777 }
8778 }
8779 }
8780
8781 /* Caller will do the rest of this. */
8782 if (check < 0)
8783 return decl;
8784
8785 if (ctype != NULL_TREE)
8786 grokclassfn (ctype, decl, flags);
8787
8788 /* 12.4/3 */
8789 if (cxx_dialect >= cxx11
8790 && DECL_DESTRUCTOR_P (decl)
8791 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
8792 && !processing_template_decl)
8793 deduce_noexcept_on_destructor (decl);
8794
8795 decl = check_explicit_specialization (orig_declarator, decl,
8796 template_count,
8797 2 * funcdef_flag +
8798 4 * (friendp != 0) +
8799 8 * concept_p);
8800 if (decl == error_mark_node)
8801 return NULL_TREE;
8802
8803 if (DECL_STATIC_FUNCTION_P (decl))
8804 check_static_quals (decl, quals);
8805
8806 if (attrlist)
8807 {
8808 cplus_decl_attributes (&decl, *attrlist, 0);
8809 *attrlist = NULL_TREE;
8810 }
8811
8812 /* Check main's type after attributes have been applied. */
8813 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8814 {
8815 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
8816 integer_type_node))
8817 {
8818 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
8819 tree newtype;
8820 error ("%<::main%> must return %<int%>");
8821 newtype = build_function_type (integer_type_node, oldtypeargs);
8822 TREE_TYPE (decl) = newtype;
8823 }
8824 if (warn_main)
8825 check_main_parameter_types (decl);
8826 }
8827
8828 if (ctype != NULL_TREE && check)
8829 {
8830 tree old_decl = check_classfn (ctype, decl,
8831 (processing_template_decl
8832 > template_class_depth (ctype))
8833 ? current_template_parms
8834 : NULL_TREE);
8835
8836 if (old_decl == error_mark_node)
8837 return NULL_TREE;
8838
8839 if (old_decl)
8840 {
8841 tree ok;
8842 tree pushed_scope;
8843
8844 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
8845 /* Because grokfndecl is always supposed to return a
8846 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
8847 here. We depend on our callers to figure out that its
8848 really a template that's being returned. */
8849 old_decl = DECL_TEMPLATE_RESULT (old_decl);
8850
8851 if (DECL_STATIC_FUNCTION_P (old_decl)
8852 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
8853 {
8854 /* Remove the `this' parm added by grokclassfn. */
8855 revert_static_member_fn (decl);
8856 check_static_quals (decl, quals);
8857 }
8858 if (DECL_ARTIFICIAL (old_decl))
8859 {
8860 error ("definition of implicitly-declared %qD", old_decl);
8861 return NULL_TREE;
8862 }
8863 else if (DECL_DEFAULTED_FN (old_decl))
8864 {
8865 error ("definition of explicitly-defaulted %q+D", decl);
8866 inform (DECL_SOURCE_LOCATION (old_decl),
8867 "%q#D explicitly defaulted here", old_decl);
8868 return NULL_TREE;
8869 }
8870
8871 /* Since we've smashed OLD_DECL to its
8872 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
8873 if (TREE_CODE (decl) == TEMPLATE_DECL)
8874 decl = DECL_TEMPLATE_RESULT (decl);
8875
8876 /* Attempt to merge the declarations. This can fail, in
8877 the case of some invalid specialization declarations. */
8878 pushed_scope = push_scope (ctype);
8879 ok = duplicate_decls (decl, old_decl, friendp);
8880 if (pushed_scope)
8881 pop_scope (pushed_scope);
8882 if (!ok)
8883 {
8884 error ("no %q#D member function declared in class %qT",
8885 decl, ctype);
8886 return NULL_TREE;
8887 }
8888 if (ok == error_mark_node)
8889 return NULL_TREE;
8890 return old_decl;
8891 }
8892 }
8893
8894 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
8895 return NULL_TREE;
8896
8897 if (ctype == NULL_TREE || check)
8898 return decl;
8899
8900 if (virtualp)
8901 DECL_VIRTUAL_P (decl) = 1;
8902
8903 return decl;
8904 }
8905
8906 /* decl is a FUNCTION_DECL.
8907 specifiers are the parsed virt-specifiers.
8908
8909 Set flags to reflect the virt-specifiers.
8910
8911 Returns decl. */
8912
8913 static tree
8914 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
8915 {
8916 if (decl == NULL_TREE)
8917 return decl;
8918 if (specifiers & VIRT_SPEC_OVERRIDE)
8919 DECL_OVERRIDE_P (decl) = 1;
8920 if (specifiers & VIRT_SPEC_FINAL)
8921 DECL_FINAL_P (decl) = 1;
8922 return decl;
8923 }
8924
8925 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
8926 the linkage that DECL will receive in the object file. */
8927
8928 static void
8929 set_linkage_for_static_data_member (tree decl)
8930 {
8931 /* A static data member always has static storage duration and
8932 external linkage. Note that static data members are forbidden in
8933 local classes -- the only situation in which a class has
8934 non-external linkage. */
8935 TREE_PUBLIC (decl) = 1;
8936 TREE_STATIC (decl) = 1;
8937 /* For non-template classes, static data members are always put
8938 out in exactly those files where they are defined, just as
8939 with ordinary namespace-scope variables. */
8940 if (!processing_template_decl)
8941 DECL_INTERFACE_KNOWN (decl) = 1;
8942 }
8943
8944 /* Create a VAR_DECL named NAME with the indicated TYPE.
8945
8946 If SCOPE is non-NULL, it is the class type or namespace containing
8947 the variable. If SCOPE is NULL, the variable should is created in
8948 the innermost enclosing scope. */
8949
8950 static tree
8951 grokvardecl (tree type,
8952 tree name,
8953 tree orig_declarator,
8954 const cp_decl_specifier_seq *declspecs,
8955 int initialized,
8956 int type_quals,
8957 int inlinep,
8958 bool conceptp,
8959 int template_count,
8960 tree scope)
8961 {
8962 tree decl;
8963 tree explicit_scope;
8964
8965 gcc_assert (!name || identifier_p (name));
8966
8967 bool constp = (type_quals & TYPE_QUAL_CONST) != 0;
8968 bool volatilep = (type_quals & TYPE_QUAL_VOLATILE) != 0;
8969
8970 /* Compute the scope in which to place the variable, but remember
8971 whether or not that scope was explicitly specified by the user. */
8972 explicit_scope = scope;
8973 if (!scope)
8974 {
8975 /* An explicit "extern" specifier indicates a namespace-scope
8976 variable. */
8977 if (declspecs->storage_class == sc_extern)
8978 scope = current_decl_namespace ();
8979 else if (!at_function_scope_p ())
8980 scope = current_scope ();
8981 }
8982
8983 if (scope
8984 && (/* If the variable is a namespace-scope variable declared in a
8985 template, we need DECL_LANG_SPECIFIC. */
8986 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
8987 /* Similarly for namespace-scope variables with language linkage
8988 other than C++. */
8989 || (TREE_CODE (scope) == NAMESPACE_DECL
8990 && current_lang_name != lang_name_cplusplus)
8991 /* Similarly for static data members. */
8992 || TYPE_P (scope)
8993 /* Similarly for explicit specializations. */
8994 || (orig_declarator
8995 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
8996 decl = build_lang_decl (VAR_DECL, name, type);
8997 else
8998 decl = build_decl (input_location, VAR_DECL, name, type);
8999
9000 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
9001 set_decl_namespace (decl, explicit_scope, 0);
9002 else
9003 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
9004
9005 if (declspecs->storage_class == sc_extern)
9006 {
9007 DECL_THIS_EXTERN (decl) = 1;
9008 DECL_EXTERNAL (decl) = !initialized;
9009 }
9010
9011 if (DECL_CLASS_SCOPE_P (decl))
9012 {
9013 set_linkage_for_static_data_member (decl);
9014 /* This function is only called with out-of-class definitions. */
9015 DECL_EXTERNAL (decl) = 0;
9016 check_class_member_definition_namespace (decl);
9017 }
9018 /* At top level, either `static' or no s.c. makes a definition
9019 (perhaps tentative), and absence of `static' makes it public. */
9020 else if (toplevel_bindings_p ())
9021 {
9022 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
9023 && (DECL_THIS_EXTERN (decl)
9024 || ! constp
9025 || volatilep
9026 || inlinep));
9027 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
9028 }
9029 /* Not at top level, only `static' makes a static definition. */
9030 else
9031 {
9032 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
9033 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
9034 }
9035
9036 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
9037 {
9038 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
9039 {
9040 CP_DECL_THREAD_LOCAL_P (decl) = true;
9041 if (!processing_template_decl)
9042 set_decl_tls_model (decl, decl_default_tls_model (decl));
9043 }
9044 if (declspecs->gnu_thread_keyword_p)
9045 SET_DECL_GNU_TLS_P (decl);
9046 }
9047
9048 /* If the type of the decl has no linkage, make sure that we'll
9049 notice that in mark_used. */
9050 if (cxx_dialect > cxx98
9051 && decl_linkage (decl) != lk_none
9052 && DECL_LANG_SPECIFIC (decl) == NULL
9053 && !DECL_EXTERN_C_P (decl)
9054 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
9055 retrofit_lang_decl (decl);
9056
9057 if (TREE_PUBLIC (decl))
9058 {
9059 /* [basic.link]: A name with no linkage (notably, the name of a class
9060 or enumeration declared in a local scope) shall not be used to
9061 declare an entity with linkage.
9062
9063 DR 757 relaxes this restriction for C++0x. */
9064 if (cxx_dialect < cxx11)
9065 no_linkage_error (decl);
9066 }
9067 else
9068 DECL_INTERFACE_KNOWN (decl) = 1;
9069
9070 if (DECL_NAME (decl)
9071 && MAIN_NAME_P (DECL_NAME (decl))
9072 && scope == global_namespace)
9073 error ("cannot declare %<::main%> to be a global variable");
9074
9075 /* Check that the variable can be safely declared as a concept.
9076 Note that this also forbids explicit specializations. */
9077 if (conceptp)
9078 {
9079 if (!processing_template_decl)
9080 {
9081 error ("a non-template variable cannot be %<concept%>");
9082 return NULL_TREE;
9083 }
9084 else
9085 DECL_DECLARED_CONCEPT_P (decl) = true;
9086 if (!same_type_ignoring_top_level_qualifiers_p (type, boolean_type_node))
9087 error_at (declspecs->locations[ds_type_spec],
9088 "concept must have type %<bool%>");
9089 }
9090 else if (flag_concepts
9091 && processing_template_decl > template_class_depth (scope))
9092 {
9093 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
9094 tree ci = build_constraints (reqs, NULL_TREE);
9095 set_constraints (decl, ci);
9096 }
9097
9098 // Handle explicit specializations and instantiations of variable templates.
9099 if (orig_declarator)
9100 decl = check_explicit_specialization (orig_declarator, decl,
9101 template_count, conceptp * 8);
9102
9103 return decl != error_mark_node ? decl : NULL_TREE;
9104 }
9105
9106 /* Create and return a canonical pointer to member function type, for
9107 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
9108
9109 tree
9110 build_ptrmemfunc_type (tree type)
9111 {
9112 tree field, fields;
9113 tree t;
9114
9115 if (type == error_mark_node)
9116 return type;
9117
9118 /* Make sure that we always have the unqualified pointer-to-member
9119 type first. */
9120 if (cp_cv_quals quals = cp_type_quals (type))
9121 {
9122 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
9123 return cp_build_qualified_type (unqual, quals);
9124 }
9125
9126 /* If a canonical type already exists for this type, use it. We use
9127 this method instead of type_hash_canon, because it only does a
9128 simple equality check on the list of field members. */
9129
9130 t = TYPE_PTRMEMFUNC_TYPE (type);
9131 if (t)
9132 return t;
9133
9134 t = make_node (RECORD_TYPE);
9135
9136 /* Let the front end know this is a pointer to member function. */
9137 TYPE_PTRMEMFUNC_FLAG (t) = 1;
9138
9139 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
9140 fields = field;
9141
9142 field = build_decl (input_location, FIELD_DECL, delta_identifier,
9143 delta_type_node);
9144 DECL_CHAIN (field) = fields;
9145 fields = field;
9146
9147 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
9148
9149 /* Zap out the name so that the back end will give us the debugging
9150 information for this anonymous RECORD_TYPE. */
9151 TYPE_NAME (t) = NULL_TREE;
9152
9153 /* Cache this pointer-to-member type so that we can find it again
9154 later. */
9155 TYPE_PTRMEMFUNC_TYPE (type) = t;
9156
9157 if (TYPE_STRUCTURAL_EQUALITY_P (type))
9158 SET_TYPE_STRUCTURAL_EQUALITY (t);
9159 else if (TYPE_CANONICAL (type) != type)
9160 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
9161
9162 return t;
9163 }
9164
9165 /* Create and return a pointer to data member type. */
9166
9167 tree
9168 build_ptrmem_type (tree class_type, tree member_type)
9169 {
9170 if (TREE_CODE (member_type) == METHOD_TYPE)
9171 {
9172 cp_cv_quals quals = type_memfn_quals (member_type);
9173 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
9174 member_type = build_memfn_type (member_type, class_type, quals, rqual);
9175 return build_ptrmemfunc_type (build_pointer_type (member_type));
9176 }
9177 else
9178 {
9179 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
9180 return build_offset_type (class_type, member_type);
9181 }
9182 }
9183
9184 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
9185 Check to see that the definition is valid. Issue appropriate error
9186 messages. Return 1 if the definition is particularly bad, or 0
9187 otherwise. */
9188
9189 static int
9190 check_static_variable_definition (tree decl, tree type)
9191 {
9192 /* Avoid redundant diagnostics on out-of-class definitions. */
9193 if (!current_class_type || !TYPE_BEING_DEFINED (current_class_type))
9194 return 0;
9195 /* Can't check yet if we don't know the type. */
9196 if (dependent_type_p (type))
9197 return 0;
9198 /* If DECL is declared constexpr, we'll do the appropriate checks
9199 in check_initializer. Similarly for inline static data members. */
9200 if (DECL_P (decl)
9201 && (DECL_DECLARED_CONSTEXPR_P (decl)
9202 || DECL_VAR_DECLARED_INLINE_P (decl)))
9203 return 0;
9204 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
9205 {
9206 if (!COMPLETE_TYPE_P (type))
9207 error_at (DECL_SOURCE_LOCATION (decl),
9208 "in-class initialization of static data member %q#D of "
9209 "incomplete type", decl);
9210 else if (literal_type_p (type))
9211 permerror (DECL_SOURCE_LOCATION (decl),
9212 "%<constexpr%> needed for in-class initialization of "
9213 "static data member %q#D of non-integral type", decl);
9214 else
9215 error_at (DECL_SOURCE_LOCATION (decl),
9216 "in-class initialization of static data member %q#D of "
9217 "non-literal type", decl);
9218 return 1;
9219 }
9220
9221 /* Motion 10 at San Diego: If a static const integral data member is
9222 initialized with an integral constant expression, the initializer
9223 may appear either in the declaration (within the class), or in
9224 the definition, but not both. If it appears in the class, the
9225 member is a member constant. The file-scope definition is always
9226 required. */
9227 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
9228 {
9229 error_at (DECL_SOURCE_LOCATION (decl),
9230 "invalid in-class initialization of static data member "
9231 "of non-integral type %qT",
9232 type);
9233 return 1;
9234 }
9235 else if (!CP_TYPE_CONST_P (type))
9236 error_at (DECL_SOURCE_LOCATION (decl),
9237 "ISO C++ forbids in-class initialization of non-const "
9238 "static member %qD",
9239 decl);
9240 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
9241 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
9242 "ISO C++ forbids initialization of member constant "
9243 "%qD of non-integral type %qT", decl, type);
9244
9245 return 0;
9246 }
9247
9248 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
9249 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
9250 expressions out into temporary variables so that walk_tree doesn't
9251 step into them (c++/15764). */
9252
9253 static tree
9254 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
9255 {
9256 hash_set<tree> *pset = (hash_set<tree> *)data;
9257 tree expr = *expr_p;
9258 if (TREE_CODE (expr) == SAVE_EXPR)
9259 {
9260 tree op = TREE_OPERAND (expr, 0);
9261 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
9262 if (TREE_SIDE_EFFECTS (op))
9263 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
9264 *walk_subtrees = 0;
9265 }
9266 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
9267 *walk_subtrees = 0;
9268 return NULL;
9269 }
9270
9271 /* Entry point for the above. */
9272
9273 static void
9274 stabilize_vla_size (tree size)
9275 {
9276 hash_set<tree> pset;
9277 /* Break out any function calls into temporary variables. */
9278 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
9279 }
9280
9281 /* Reduce a SIZEOF_EXPR to its value. */
9282
9283 tree
9284 fold_sizeof_expr (tree t)
9285 {
9286 tree r;
9287 if (SIZEOF_EXPR_TYPE_P (t))
9288 r = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (t, 0)),
9289 SIZEOF_EXPR, false);
9290 else if (TYPE_P (TREE_OPERAND (t, 0)))
9291 r = cxx_sizeof_or_alignof_type (TREE_OPERAND (t, 0), SIZEOF_EXPR,
9292 false);
9293 else
9294 r = cxx_sizeof_or_alignof_expr (TREE_OPERAND (t, 0), SIZEOF_EXPR,
9295 false);
9296 if (r == error_mark_node)
9297 r = size_one_node;
9298 return r;
9299 }
9300
9301 /* Given the SIZE (i.e., number of elements) in an array, compute
9302 an appropriate index type for the array. If non-NULL, NAME is
9303 the name of the entity being declared. */
9304
9305 tree
9306 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
9307 {
9308 tree itype;
9309 tree osize = size;
9310
9311 if (error_operand_p (size))
9312 return error_mark_node;
9313
9314 if (!type_dependent_expression_p (size))
9315 {
9316 tree type = TREE_TYPE (size);
9317
9318 size = mark_rvalue_use (size);
9319
9320 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
9321 && TREE_SIDE_EFFECTS (size))
9322 /* In C++98, we mark a non-constant array bound with a magic
9323 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
9324 else
9325 {
9326 size = instantiate_non_dependent_expr_sfinae (size, complain);
9327
9328 if (CLASS_TYPE_P (type)
9329 && CLASSTYPE_LITERAL_P (type))
9330 {
9331 size = build_expr_type_conversion (WANT_INT, size, true);
9332 if (!size)
9333 {
9334 if (!(complain & tf_error))
9335 return error_mark_node;
9336 if (name)
9337 error ("size of array %qD has non-integral type %qT",
9338 name, type);
9339 else
9340 error ("size of array has non-integral type %qT", type);
9341 size = integer_one_node;
9342 }
9343 if (size == error_mark_node)
9344 return error_mark_node;
9345 type = TREE_TYPE (size);
9346 }
9347
9348 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
9349 size = maybe_constant_value (size);
9350
9351 if (!TREE_CONSTANT (size))
9352 size = osize;
9353 }
9354
9355 if (error_operand_p (size))
9356 return error_mark_node;
9357
9358 /* The array bound must be an integer type. */
9359 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
9360 {
9361 if (!(complain & tf_error))
9362 return error_mark_node;
9363 if (name)
9364 error ("size of array %qD has non-integral type %qT", name, type);
9365 else
9366 error ("size of array has non-integral type %qT", type);
9367 size = integer_one_node;
9368 type = TREE_TYPE (size);
9369 }
9370 }
9371
9372 /* A type is dependent if it is...an array type constructed from any
9373 dependent type or whose size is specified by a constant expression
9374 that is value-dependent. */
9375 /* We can only call value_dependent_expression_p on integral constant
9376 expressions; treat non-constant expressions as dependent, too. */
9377 if (processing_template_decl
9378 && (type_dependent_expression_p (size)
9379 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
9380 {
9381 /* We cannot do any checking for a SIZE that isn't known to be
9382 constant. Just build the index type and mark that it requires
9383 structural equality checks. */
9384 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
9385 size, size_one_node));
9386 TYPE_DEPENDENT_P (itype) = 1;
9387 TYPE_DEPENDENT_P_VALID (itype) = 1;
9388 SET_TYPE_STRUCTURAL_EQUALITY (itype);
9389 return itype;
9390 }
9391
9392 if (TREE_CODE (size) != INTEGER_CST)
9393 {
9394 tree folded = cp_fully_fold (size);
9395 if (TREE_CODE (folded) == INTEGER_CST)
9396 pedwarn (location_of (size), OPT_Wpedantic,
9397 "size of array is not an integral constant-expression");
9398 /* Use the folded result for VLAs, too; it will have resolved
9399 SIZEOF_EXPR. */
9400 size = folded;
9401 }
9402
9403 /* Normally, the array-bound will be a constant. */
9404 if (TREE_CODE (size) == INTEGER_CST)
9405 {
9406 /* Check to see if the array bound overflowed. Make that an
9407 error, no matter how generous we're being. */
9408 constant_expression_error (size);
9409
9410 /* An array must have a positive number of elements. */
9411 if (tree_int_cst_lt (size, integer_zero_node))
9412 {
9413 if (!(complain & tf_error))
9414 return error_mark_node;
9415 if (name)
9416 error ("size of array %qD is negative", name);
9417 else
9418 error ("size of array is negative");
9419 size = integer_one_node;
9420 }
9421 /* As an extension we allow zero-sized arrays. */
9422 else if (integer_zerop (size))
9423 {
9424 if (!(complain & tf_error))
9425 /* We must fail if performing argument deduction (as
9426 indicated by the state of complain), so that
9427 another substitution can be found. */
9428 return error_mark_node;
9429 else if (in_system_header_at (input_location))
9430 /* Allow them in system headers because glibc uses them. */;
9431 else if (name)
9432 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array %qD", name);
9433 else
9434 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array");
9435 }
9436 }
9437 else if (TREE_CONSTANT (size)
9438 /* We don't allow VLAs at non-function scopes, or during
9439 tentative template substitution. */
9440 || !at_function_scope_p ()
9441 || !(complain & tf_error))
9442 {
9443 if (!(complain & tf_error))
9444 return error_mark_node;
9445 /* `(int) &fn' is not a valid array bound. */
9446 if (name)
9447 error ("size of array %qD is not an integral constant-expression",
9448 name);
9449 else
9450 error ("size of array is not an integral constant-expression");
9451 size = integer_one_node;
9452 }
9453 else if (pedantic && warn_vla != 0)
9454 {
9455 if (name)
9456 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array %qD", name);
9457 else
9458 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array");
9459 }
9460 else if (warn_vla > 0)
9461 {
9462 if (name)
9463 warning (OPT_Wvla,
9464 "variable length array %qD is used", name);
9465 else
9466 warning (OPT_Wvla,
9467 "variable length array is used");
9468 }
9469
9470 if (processing_template_decl && !TREE_CONSTANT (size))
9471 /* A variable sized array. */
9472 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
9473 else
9474 {
9475 /* Compute the index of the largest element in the array. It is
9476 one less than the number of elements in the array. We save
9477 and restore PROCESSING_TEMPLATE_DECL so that computations in
9478 cp_build_binary_op will be appropriately folded. */
9479 {
9480 processing_template_decl_sentinel s;
9481 itype = cp_build_binary_op (input_location,
9482 MINUS_EXPR,
9483 cp_convert (ssizetype, size, complain),
9484 cp_convert (ssizetype, integer_one_node,
9485 complain),
9486 complain);
9487 itype = maybe_constant_value (itype);
9488 }
9489
9490 if (!TREE_CONSTANT (itype))
9491 {
9492 /* A variable sized array. */
9493 itype = variable_size (itype);
9494
9495 stabilize_vla_size (itype);
9496
9497 if (sanitize_flags_p (SANITIZE_VLA)
9498 && current_function_decl != NULL_TREE)
9499 {
9500 /* We have to add 1 -- in the ubsan routine we generate
9501 LE_EXPR rather than LT_EXPR. */
9502 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
9503 build_one_cst (TREE_TYPE (itype)));
9504 t = ubsan_instrument_vla (input_location, t);
9505 finish_expr_stmt (t);
9506 }
9507 }
9508 /* Make sure that there was no overflow when creating to a signed
9509 index type. (For example, on a 32-bit machine, an array with
9510 size 2^32 - 1 is too big.) */
9511 else if (TREE_CODE (itype) == INTEGER_CST
9512 && TREE_OVERFLOW (itype))
9513 {
9514 if (!(complain & tf_error))
9515 return error_mark_node;
9516 error ("overflow in array dimension");
9517 TREE_OVERFLOW (itype) = 0;
9518 }
9519 }
9520
9521 /* Create and return the appropriate index type. */
9522 itype = build_index_type (itype);
9523
9524 /* If the index type were dependent, we would have returned early, so
9525 remember that it isn't. */
9526 TYPE_DEPENDENT_P (itype) = 0;
9527 TYPE_DEPENDENT_P_VALID (itype) = 1;
9528 return itype;
9529 }
9530
9531 /* Returns the scope (if any) in which the entity declared by
9532 DECLARATOR will be located. If the entity was declared with an
9533 unqualified name, NULL_TREE is returned. */
9534
9535 tree
9536 get_scope_of_declarator (const cp_declarator *declarator)
9537 {
9538 while (declarator && declarator->kind != cdk_id)
9539 declarator = declarator->declarator;
9540
9541 /* If the declarator-id is a SCOPE_REF, the scope in which the
9542 declaration occurs is the first operand. */
9543 if (declarator
9544 && declarator->u.id.qualifying_scope)
9545 return declarator->u.id.qualifying_scope;
9546
9547 /* Otherwise, the declarator is not a qualified name; the entity will
9548 be declared in the current scope. */
9549 return NULL_TREE;
9550 }
9551
9552 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
9553 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
9554 with this type. */
9555
9556 static tree
9557 create_array_type_for_decl (tree name, tree type, tree size)
9558 {
9559 tree itype = NULL_TREE;
9560
9561 /* If things have already gone awry, bail now. */
9562 if (type == error_mark_node || size == error_mark_node)
9563 return error_mark_node;
9564
9565 /* 8.3.4/1: If the type of the identifier of D contains the auto
9566 type-specifier, the program is ill-formed. */
9567 if (type_uses_auto (type))
9568 {
9569 error ("%qD declared as array of %qT", name, type);
9570 return error_mark_node;
9571 }
9572
9573 /* If there are some types which cannot be array elements,
9574 issue an error-message and return. */
9575 switch (TREE_CODE (type))
9576 {
9577 case VOID_TYPE:
9578 if (name)
9579 error ("declaration of %qD as array of void", name);
9580 else
9581 error ("creating array of void");
9582 return error_mark_node;
9583
9584 case FUNCTION_TYPE:
9585 if (name)
9586 error ("declaration of %qD as array of functions", name);
9587 else
9588 error ("creating array of functions");
9589 return error_mark_node;
9590
9591 case REFERENCE_TYPE:
9592 if (name)
9593 error ("declaration of %qD as array of references", name);
9594 else
9595 error ("creating array of references");
9596 return error_mark_node;
9597
9598 case METHOD_TYPE:
9599 if (name)
9600 error ("declaration of %qD as array of function members", name);
9601 else
9602 error ("creating array of function members");
9603 return error_mark_node;
9604
9605 default:
9606 break;
9607 }
9608
9609 /* [dcl.array]
9610
9611 The constant expressions that specify the bounds of the arrays
9612 can be omitted only for the first member of the sequence. */
9613 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
9614 {
9615 if (name)
9616 error ("declaration of %qD as multidimensional array must "
9617 "have bounds for all dimensions except the first",
9618 name);
9619 else
9620 error ("multidimensional array must have bounds for all "
9621 "dimensions except the first");
9622
9623 return error_mark_node;
9624 }
9625
9626 /* Figure out the index type for the array. */
9627 if (size)
9628 itype = compute_array_index_type (name, size, tf_warning_or_error);
9629
9630 /* [dcl.array]
9631 T is called the array element type; this type shall not be [...] an
9632 abstract class type. */
9633 abstract_virtuals_error (name, type);
9634
9635 return build_cplus_array_type (type, itype);
9636 }
9637
9638 /* Returns the smallest location != UNKNOWN_LOCATION among the
9639 three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile],
9640 and LOCATIONS[ds_restrict]. */
9641
9642 static location_t
9643 smallest_type_quals_location (int type_quals, const location_t* locations)
9644 {
9645 location_t loc = UNKNOWN_LOCATION;
9646
9647 if (type_quals & TYPE_QUAL_CONST)
9648 loc = locations[ds_const];
9649
9650 if ((type_quals & TYPE_QUAL_VOLATILE)
9651 && (loc == UNKNOWN_LOCATION || locations[ds_volatile] < loc))
9652 loc = locations[ds_volatile];
9653
9654 if ((type_quals & TYPE_QUAL_RESTRICT)
9655 && (loc == UNKNOWN_LOCATION || locations[ds_restrict] < loc))
9656 loc = locations[ds_restrict];
9657
9658 return loc;
9659 }
9660
9661 /* Check that it's OK to declare a function with the indicated TYPE
9662 and TYPE_QUALS. SFK indicates the kind of special function (if any)
9663 that this function is. OPTYPE is the type given in a conversion
9664 operator declaration, or the class type for a constructor/destructor.
9665 Returns the actual return type of the function; that may be different
9666 than TYPE if an error occurs, or for certain special functions. */
9667
9668 static tree
9669 check_special_function_return_type (special_function_kind sfk,
9670 tree type,
9671 tree optype,
9672 int type_quals,
9673 const location_t* locations)
9674 {
9675 switch (sfk)
9676 {
9677 case sfk_constructor:
9678 if (type)
9679 error ("return type specification for constructor invalid");
9680 else if (type_quals != TYPE_UNQUALIFIED)
9681 error_at (smallest_type_quals_location (type_quals, locations),
9682 "qualifiers are not allowed on constructor declaration");
9683
9684 if (targetm.cxx.cdtor_returns_this ())
9685 type = build_pointer_type (optype);
9686 else
9687 type = void_type_node;
9688 break;
9689
9690 case sfk_destructor:
9691 if (type)
9692 error ("return type specification for destructor invalid");
9693 else if (type_quals != TYPE_UNQUALIFIED)
9694 error_at (smallest_type_quals_location (type_quals, locations),
9695 "qualifiers are not allowed on destructor declaration");
9696
9697 /* We can't use the proper return type here because we run into
9698 problems with ambiguous bases and covariant returns. */
9699 if (targetm.cxx.cdtor_returns_this ())
9700 type = build_pointer_type (void_type_node);
9701 else
9702 type = void_type_node;
9703 break;
9704
9705 case sfk_conversion:
9706 if (type)
9707 error ("return type specified for %<operator %T%>", optype);
9708 else if (type_quals != TYPE_UNQUALIFIED)
9709 error_at (smallest_type_quals_location (type_quals, locations),
9710 "qualifiers are not allowed on declaration of "
9711 "%<operator %T%>", optype);
9712
9713 type = optype;
9714 break;
9715
9716 case sfk_deduction_guide:
9717 if (type)
9718 error ("return type specified for deduction guide");
9719 else if (type_quals != TYPE_UNQUALIFIED)
9720 error_at (smallest_type_quals_location (type_quals, locations),
9721 "qualifiers are not allowed on declaration of "
9722 "deduction guide");
9723 type = make_template_placeholder (CLASSTYPE_TI_TEMPLATE (optype));
9724 for (int i = 0; i < ds_last; ++i)
9725 if (i != ds_explicit && locations[i])
9726 error_at (locations[i],
9727 "decl-specifier in declaration of deduction guide");
9728 break;
9729
9730 default:
9731 gcc_unreachable ();
9732 }
9733
9734 return type;
9735 }
9736
9737 /* A variable or data member (whose unqualified name is IDENTIFIER)
9738 has been declared with the indicated TYPE. If the TYPE is not
9739 acceptable, issue an error message and return a type to use for
9740 error-recovery purposes. */
9741
9742 tree
9743 check_var_type (tree identifier, tree type)
9744 {
9745 if (VOID_TYPE_P (type))
9746 {
9747 if (!identifier)
9748 error ("unnamed variable or field declared void");
9749 else if (identifier_p (identifier))
9750 {
9751 gcc_assert (!IDENTIFIER_ANY_OP_P (identifier));
9752 error ("variable or field %qE declared void", identifier);
9753 }
9754 else
9755 error ("variable or field declared void");
9756 type = error_mark_node;
9757 }
9758
9759 return type;
9760 }
9761
9762 /* Handle declaring DECL as an inline variable. */
9763
9764 static void
9765 mark_inline_variable (tree decl)
9766 {
9767 bool inlinep = true;
9768 if (! toplevel_bindings_p ())
9769 {
9770 error ("%<inline%> specifier invalid for variable "
9771 "%qD declared at block scope", decl);
9772 inlinep = false;
9773 }
9774 else if (cxx_dialect < cxx17)
9775 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
9776 "inline variables are only available "
9777 "with -std=c++17 or -std=gnu++17");
9778 if (inlinep)
9779 {
9780 retrofit_lang_decl (decl);
9781 SET_DECL_VAR_DECLARED_INLINE_P (decl);
9782 }
9783 }
9784
9785
9786 /* Assign a typedef-given name to a class or enumeration type declared
9787 as anonymous at first. This was split out of grokdeclarator
9788 because it is also used in libcc1. */
9789
9790 void
9791 name_unnamed_type (tree type, tree decl)
9792 {
9793 gcc_assert (TYPE_UNNAMED_P (type));
9794
9795 /* Replace the anonymous name with the real name everywhere. */
9796 for (tree t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
9797 {
9798 if (anon_aggrname_p (TYPE_IDENTIFIER (t)))
9799 /* We do not rename the debug info representing the
9800 unnamed tagged type because the standard says in
9801 [dcl.typedef] that the naming applies only for
9802 linkage purposes. */
9803 /*debug_hooks->set_name (t, decl);*/
9804 TYPE_NAME (t) = decl;
9805 }
9806
9807 if (TYPE_LANG_SPECIFIC (type))
9808 TYPE_WAS_UNNAMED (type) = 1;
9809
9810 /* If this is a typedef within a template class, the nested
9811 type is a (non-primary) template. The name for the
9812 template needs updating as well. */
9813 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
9814 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
9815 = TYPE_IDENTIFIER (type);
9816
9817 /* Adjust linkage now that we aren't unnamed anymore. */
9818 reset_type_linkage (type);
9819
9820 /* FIXME remangle member functions; member functions of a
9821 type with external linkage have external linkage. */
9822
9823 /* Check that our job is done, and that it would fail if we
9824 attempted to do it again. */
9825 gcc_assert (!TYPE_UNNAMED_P (type));
9826 }
9827
9828 /* Given declspecs and a declarator (abstract or otherwise), determine
9829 the name and type of the object declared and construct a DECL node
9830 for it.
9831
9832 DECLSPECS points to the representation of declaration-specifier
9833 sequence that precedes declarator.
9834
9835 DECL_CONTEXT says which syntactic context this declaration is in:
9836 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
9837 FUNCDEF for a function definition. Like NORMAL but a few different
9838 error messages in each case. Return value may be zero meaning
9839 this definition is too screwy to try to parse.
9840 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
9841 handle member functions (which have FIELD context).
9842 Return value may be zero meaning this definition is too screwy to
9843 try to parse.
9844 PARM for a parameter declaration (either within a function prototype
9845 or before a function body). Make a PARM_DECL, or return void_type_node.
9846 TPARM for a template parameter declaration.
9847 CATCHPARM for a parameter declaration before a catch clause.
9848 TYPENAME if for a typename (in a cast or sizeof).
9849 Don't make a DECL node; just return the ..._TYPE node.
9850 FIELD for a struct or union field; make a FIELD_DECL.
9851 BITFIELD for a field with specified width.
9852
9853 INITIALIZED is as for start_decl.
9854
9855 ATTRLIST is a pointer to the list of attributes, which may be NULL
9856 if there are none; *ATTRLIST may be modified if attributes from inside
9857 the declarator should be applied to the declaration.
9858
9859 When this function is called, scoping variables (such as
9860 CURRENT_CLASS_TYPE) should reflect the scope in which the
9861 declaration occurs, not the scope in which the new declaration will
9862 be placed. For example, on:
9863
9864 void S::f() { ... }
9865
9866 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
9867 should not be `S'.
9868
9869 Returns a DECL (if a declarator is present), a TYPE (if there is no
9870 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
9871 error occurs. */
9872
9873 tree
9874 grokdeclarator (const cp_declarator *declarator,
9875 cp_decl_specifier_seq *declspecs,
9876 enum decl_context decl_context,
9877 int initialized,
9878 tree* attrlist)
9879 {
9880 tree type = NULL_TREE;
9881 int longlong = 0;
9882 int explicit_intN = 0;
9883 int virtualp, explicitp, friendp, inlinep, staticp;
9884 int explicit_int = 0;
9885 int explicit_char = 0;
9886 int defaulted_int = 0;
9887
9888 tree typedef_decl = NULL_TREE;
9889 const char *name = NULL;
9890 tree typedef_type = NULL_TREE;
9891 /* True if this declarator is a function definition. */
9892 bool funcdef_flag = false;
9893 cp_declarator_kind innermost_code = cdk_error;
9894 int bitfield = 0;
9895 #if 0
9896 /* See the code below that used this. */
9897 tree decl_attr = NULL_TREE;
9898 #endif
9899
9900 /* Keep track of what sort of function is being processed
9901 so that we can warn about default return values, or explicit
9902 return values which do not match prescribed defaults. */
9903 special_function_kind sfk = sfk_none;
9904
9905 tree dname = NULL_TREE;
9906 tree ctor_return_type = NULL_TREE;
9907 enum overload_flags flags = NO_SPECIAL;
9908 /* cv-qualifiers that apply to the declarator, for a declaration of
9909 a member function. */
9910 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
9911 /* virt-specifiers that apply to the declarator, for a declaration of
9912 a member function. */
9913 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
9914 /* ref-qualifier that applies to the declarator, for a declaration of
9915 a member function. */
9916 cp_ref_qualifier rqual = REF_QUAL_NONE;
9917 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
9918 int type_quals = TYPE_UNQUALIFIED;
9919 tree raises = NULL_TREE;
9920 int template_count = 0;
9921 tree returned_attrs = NULL_TREE;
9922 tree parms = NULL_TREE;
9923 const cp_declarator *id_declarator;
9924 /* The unqualified name of the declarator; either an
9925 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
9926 tree unqualified_id;
9927 /* The class type, if any, in which this entity is located,
9928 or NULL_TREE if none. Note that this value may be different from
9929 the current class type; for example if an attempt is made to declare
9930 "A::f" inside "B", this value will be "A". */
9931 tree ctype = current_class_type;
9932 /* The NAMESPACE_DECL for the namespace in which this entity is
9933 located. If an unqualified name is used to declare the entity,
9934 this value will be NULL_TREE, even if the entity is located at
9935 namespace scope. */
9936 tree in_namespace = NULL_TREE;
9937 cp_storage_class storage_class;
9938 bool unsigned_p, signed_p, short_p, long_p, thread_p;
9939 bool type_was_error_mark_node = false;
9940 bool parameter_pack_p = declarator ? declarator->parameter_pack_p : false;
9941 bool template_type_arg = false;
9942 bool template_parm_flag = false;
9943 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
9944 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
9945 bool late_return_type_p = false;
9946 bool array_parameter_p = false;
9947 source_location saved_loc = input_location;
9948 tree reqs = NULL_TREE;
9949
9950 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
9951 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
9952 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
9953 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
9954 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
9955 explicit_intN = declspecs->explicit_intN_p;
9956 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
9957
9958 // Was concept_p specified? Note that ds_concept
9959 // implies ds_constexpr!
9960 bool concept_p = decl_spec_seq_has_spec_p (declspecs, ds_concept);
9961 if (concept_p)
9962 constexpr_p = true;
9963
9964 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
9965 type_quals |= TYPE_QUAL_CONST;
9966 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
9967 type_quals |= TYPE_QUAL_VOLATILE;
9968 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
9969 type_quals |= TYPE_QUAL_RESTRICT;
9970
9971 if (decl_context == FUNCDEF)
9972 funcdef_flag = true, decl_context = NORMAL;
9973 else if (decl_context == MEMFUNCDEF)
9974 funcdef_flag = true, decl_context = FIELD;
9975 else if (decl_context == BITFIELD)
9976 bitfield = 1, decl_context = FIELD;
9977 else if (decl_context == TEMPLATE_TYPE_ARG)
9978 template_type_arg = true, decl_context = TYPENAME;
9979 else if (decl_context == TPARM)
9980 template_parm_flag = true, decl_context = PARM;
9981
9982 if (initialized > 1)
9983 funcdef_flag = true;
9984
9985 location_t typespec_loc = smallest_type_quals_location (type_quals,
9986 declspecs->locations);
9987 if (typespec_loc == UNKNOWN_LOCATION)
9988 typespec_loc = declspecs->locations[ds_type_spec];
9989 if (typespec_loc == UNKNOWN_LOCATION)
9990 typespec_loc = input_location;
9991
9992 /* Look inside a declarator for the name being declared
9993 and get it as a string, for an error message. */
9994 for (id_declarator = declarator;
9995 id_declarator;
9996 id_declarator = id_declarator->declarator)
9997 {
9998 if (id_declarator->kind != cdk_id)
9999 innermost_code = id_declarator->kind;
10000
10001 switch (id_declarator->kind)
10002 {
10003 case cdk_function:
10004 if (id_declarator->declarator
10005 && id_declarator->declarator->kind == cdk_id)
10006 {
10007 sfk = id_declarator->declarator->u.id.sfk;
10008 if (sfk == sfk_destructor)
10009 flags = DTOR_FLAG;
10010 }
10011 break;
10012
10013 case cdk_id:
10014 {
10015 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
10016 tree decl = id_declarator->u.id.unqualified_name;
10017 if (!decl)
10018 break;
10019 if (qualifying_scope)
10020 {
10021 if (at_function_scope_p ())
10022 {
10023 /* [dcl.meaning]
10024
10025 A declarator-id shall not be qualified except
10026 for ...
10027
10028 None of the cases are permitted in block
10029 scope. */
10030 if (qualifying_scope == global_namespace)
10031 error ("invalid use of qualified-name %<::%D%>",
10032 decl);
10033 else if (TYPE_P (qualifying_scope))
10034 error ("invalid use of qualified-name %<%T::%D%>",
10035 qualifying_scope, decl);
10036 else
10037 error ("invalid use of qualified-name %<%D::%D%>",
10038 qualifying_scope, decl);
10039 return error_mark_node;
10040 }
10041 else if (TYPE_P (qualifying_scope))
10042 {
10043 ctype = qualifying_scope;
10044 if (!MAYBE_CLASS_TYPE_P (ctype))
10045 {
10046 error ("%q#T is not a class or a namespace", ctype);
10047 ctype = NULL_TREE;
10048 }
10049 else if (innermost_code != cdk_function
10050 && current_class_type
10051 && !uniquely_derived_from_p (ctype,
10052 current_class_type))
10053 {
10054 error ("invalid use of qualified-name %<%T::%D%>",
10055 qualifying_scope, decl);
10056 return error_mark_node;
10057 }
10058 }
10059 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
10060 in_namespace = qualifying_scope;
10061 }
10062 switch (TREE_CODE (decl))
10063 {
10064 case BIT_NOT_EXPR:
10065 {
10066 if (innermost_code != cdk_function)
10067 {
10068 error ("declaration of %qD as non-function", decl);
10069 return error_mark_node;
10070 }
10071 else if (!qualifying_scope
10072 && !(current_class_type && at_class_scope_p ()))
10073 {
10074 error ("declaration of %qD as non-member", decl);
10075 return error_mark_node;
10076 }
10077
10078 tree type = TREE_OPERAND (decl, 0);
10079 if (TYPE_P (type))
10080 type = constructor_name (type);
10081 name = identifier_to_locale (IDENTIFIER_POINTER (type));
10082 dname = decl;
10083 }
10084 break;
10085
10086 case TEMPLATE_ID_EXPR:
10087 {
10088 tree fns = TREE_OPERAND (decl, 0);
10089
10090 dname = fns;
10091 if (!identifier_p (dname))
10092 dname = OVL_NAME (dname);
10093 }
10094 /* Fall through. */
10095
10096 case IDENTIFIER_NODE:
10097 if (identifier_p (decl))
10098 dname = decl;
10099
10100 if (IDENTIFIER_KEYWORD_P (dname))
10101 {
10102 error ("declarator-id missing; using reserved word %qD",
10103 dname);
10104 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10105 }
10106 else if (!IDENTIFIER_CONV_OP_P (dname))
10107 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10108 else
10109 {
10110 gcc_assert (flags == NO_SPECIAL);
10111 flags = TYPENAME_FLAG;
10112 sfk = sfk_conversion;
10113 tree glob = get_global_binding (dname);
10114 if (glob && TREE_CODE (glob) == TYPE_DECL)
10115 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10116 else
10117 name = "<invalid operator>";
10118 }
10119 break;
10120
10121 default:
10122 gcc_unreachable ();
10123 }
10124 break;
10125 }
10126
10127 case cdk_array:
10128 case cdk_pointer:
10129 case cdk_reference:
10130 case cdk_ptrmem:
10131 break;
10132
10133 case cdk_decomp:
10134 name = "structured binding";
10135 break;
10136
10137 case cdk_error:
10138 return error_mark_node;
10139
10140 default:
10141 gcc_unreachable ();
10142 }
10143 if (id_declarator->kind == cdk_id)
10144 break;
10145 }
10146
10147 /* [dcl.fct.edf]
10148
10149 The declarator in a function-definition shall have the form
10150 D1 ( parameter-declaration-clause) ... */
10151 if (funcdef_flag && innermost_code != cdk_function)
10152 {
10153 error ("function definition does not declare parameters");
10154 return error_mark_node;
10155 }
10156
10157 if (flags == TYPENAME_FLAG
10158 && innermost_code != cdk_function
10159 && ! (ctype && !declspecs->any_specifiers_p))
10160 {
10161 error ("declaration of %qD as non-function", dname);
10162 return error_mark_node;
10163 }
10164
10165 if (dname && identifier_p (dname))
10166 {
10167 if (UDLIT_OPER_P (dname)
10168 && innermost_code != cdk_function)
10169 {
10170 error ("declaration of %qD as non-function", dname);
10171 return error_mark_node;
10172 }
10173
10174 if (IDENTIFIER_ANY_OP_P (dname))
10175 {
10176 if (typedef_p)
10177 {
10178 error ("declaration of %qD as %<typedef%>", dname);
10179 return error_mark_node;
10180 }
10181 else if (decl_context == PARM || decl_context == CATCHPARM)
10182 {
10183 error ("declaration of %qD as parameter", dname);
10184 return error_mark_node;
10185 }
10186 }
10187 }
10188
10189 /* Anything declared one level down from the top level
10190 must be one of the parameters of a function
10191 (because the body is at least two levels down). */
10192
10193 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
10194 by not allowing C++ class definitions to specify their parameters
10195 with xdecls (must be spec.d in the parmlist).
10196
10197 Since we now wait to push a class scope until we are sure that
10198 we are in a legitimate method context, we must set oldcname
10199 explicitly (since current_class_name is not yet alive).
10200
10201 We also want to avoid calling this a PARM if it is in a namespace. */
10202
10203 if (decl_context == NORMAL && !toplevel_bindings_p ())
10204 {
10205 cp_binding_level *b = current_binding_level;
10206 current_binding_level = b->level_chain;
10207 if (current_binding_level != 0 && toplevel_bindings_p ())
10208 decl_context = PARM;
10209 current_binding_level = b;
10210 }
10211
10212 if (name == NULL)
10213 name = decl_context == PARM ? "parameter" : "type name";
10214
10215 if (concept_p && typedef_p)
10216 {
10217 error ("%<concept%> cannot appear in a typedef declaration");
10218 return error_mark_node;
10219 }
10220
10221 if (constexpr_p && typedef_p)
10222 {
10223 error ("%<constexpr%> cannot appear in a typedef declaration");
10224 return error_mark_node;
10225 }
10226
10227 /* If there were multiple types specified in the decl-specifier-seq,
10228 issue an error message. */
10229 if (declspecs->multiple_types_p)
10230 {
10231 error ("two or more data types in declaration of %qs", name);
10232 return error_mark_node;
10233 }
10234
10235 if (declspecs->conflicting_specifiers_p)
10236 {
10237 error ("conflicting specifiers in declaration of %qs", name);
10238 return error_mark_node;
10239 }
10240
10241 /* Extract the basic type from the decl-specifier-seq. */
10242 type = declspecs->type;
10243 if (type == error_mark_node)
10244 {
10245 type = NULL_TREE;
10246 type_was_error_mark_node = true;
10247 }
10248 /* If the entire declaration is itself tagged as deprecated then
10249 suppress reports of deprecated items. */
10250 if (type && TREE_DEPRECATED (type)
10251 && deprecated_state != DEPRECATED_SUPPRESS)
10252 warn_deprecated_use (type, NULL_TREE);
10253 if (type && TREE_CODE (type) == TYPE_DECL)
10254 {
10255 typedef_decl = type;
10256 type = TREE_TYPE (typedef_decl);
10257 if (TREE_DEPRECATED (type)
10258 && DECL_ARTIFICIAL (typedef_decl)
10259 && deprecated_state != DEPRECATED_SUPPRESS)
10260 warn_deprecated_use (type, NULL_TREE);
10261 }
10262 /* No type at all: default to `int', and set DEFAULTED_INT
10263 because it was not a user-defined typedef. */
10264 if (type == NULL_TREE)
10265 {
10266 if (signed_p || unsigned_p || long_p || short_p)
10267 {
10268 /* These imply 'int'. */
10269 type = integer_type_node;
10270 defaulted_int = 1;
10271 }
10272 /* If we just have "complex", it is equivalent to "complex double". */
10273 else if (!longlong && !explicit_intN
10274 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
10275 {
10276 type = double_type_node;
10277 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
10278 "ISO C++ does not support plain %<complex%> meaning "
10279 "%<double complex%>");
10280 }
10281 }
10282 /* Gather flags. */
10283 explicit_int = declspecs->explicit_int_p;
10284 explicit_char = declspecs->explicit_char_p;
10285
10286 #if 0
10287 /* See the code below that used this. */
10288 if (typedef_decl)
10289 decl_attr = DECL_ATTRIBUTES (typedef_decl);
10290 #endif
10291 typedef_type = type;
10292
10293 if (sfk == sfk_conversion || sfk == sfk_deduction_guide)
10294 ctor_return_type = TREE_TYPE (dname);
10295 else
10296 ctor_return_type = ctype;
10297
10298 if (sfk != sfk_none)
10299 {
10300 type = check_special_function_return_type (sfk, type,
10301 ctor_return_type,
10302 type_quals,
10303 declspecs->locations);
10304 type_quals = TYPE_UNQUALIFIED;
10305 }
10306 else if (type == NULL_TREE)
10307 {
10308 int is_main;
10309
10310 explicit_int = -1;
10311
10312 /* We handle `main' specially here, because 'main () { }' is so
10313 common. With no options, it is allowed. With -Wreturn-type,
10314 it is a warning. It is only an error with -pedantic-errors. */
10315 is_main = (funcdef_flag
10316 && dname && identifier_p (dname)
10317 && MAIN_NAME_P (dname)
10318 && ctype == NULL_TREE
10319 && in_namespace == NULL_TREE
10320 && current_namespace == global_namespace);
10321
10322 if (type_was_error_mark_node)
10323 /* We've already issued an error, don't complain more. */;
10324 else if (in_system_header_at (input_location) || flag_ms_extensions)
10325 /* Allow it, sigh. */;
10326 else if (! is_main)
10327 permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
10328 else if (pedantic)
10329 pedwarn (input_location, OPT_Wpedantic,
10330 "ISO C++ forbids declaration of %qs with no type", name);
10331 else
10332 warning (OPT_Wreturn_type,
10333 "ISO C++ forbids declaration of %qs with no type", name);
10334
10335 if (type_was_error_mark_node && template_parm_flag)
10336 /* FIXME we should be able to propagate the error_mark_node as is
10337 for other contexts too. */
10338 type = error_mark_node;
10339 else
10340 type = integer_type_node;
10341 }
10342
10343 ctype = NULL_TREE;
10344
10345 if (explicit_intN)
10346 {
10347 if (! int_n_enabled_p[declspecs->int_n_idx])
10348 {
10349 error ("%<__int%d%> is not supported by this target",
10350 int_n_data[declspecs->int_n_idx].bitsize);
10351 explicit_intN = false;
10352 }
10353 else if (pedantic && ! in_system_header_at (input_location))
10354 pedwarn (input_location, OPT_Wpedantic,
10355 "ISO C++ does not support %<__int%d%> for %qs",
10356 int_n_data[declspecs->int_n_idx].bitsize, name);
10357 }
10358
10359 /* Now process the modifiers that were specified
10360 and check for invalid combinations. */
10361
10362 /* Long double is a special combination. */
10363 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
10364 {
10365 long_p = false;
10366 type = cp_build_qualified_type (long_double_type_node,
10367 cp_type_quals (type));
10368 }
10369
10370 /* Check all other uses of type modifiers. */
10371
10372 if (unsigned_p || signed_p || long_p || short_p)
10373 {
10374 int ok = 0;
10375
10376 if ((signed_p || unsigned_p) && TREE_CODE (type) != INTEGER_TYPE)
10377 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
10378 else if (signed_p && unsigned_p)
10379 error ("%<signed%> and %<unsigned%> specified together for %qs", name);
10380 else if (longlong && TREE_CODE (type) != INTEGER_TYPE)
10381 error ("%<long long%> invalid for %qs", name);
10382 else if (long_p && TREE_CODE (type) == REAL_TYPE)
10383 error ("%<long%> invalid for %qs", name);
10384 else if (short_p && TREE_CODE (type) == REAL_TYPE)
10385 error ("%<short%> invalid for %qs", name);
10386 else if ((long_p || short_p) && TREE_CODE (type) != INTEGER_TYPE)
10387 error ("%<long%> or %<short%> invalid for %qs", name);
10388 else if ((long_p || short_p || explicit_char || explicit_int) && explicit_intN)
10389 error ("%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs", name);
10390 else if ((long_p || short_p) && explicit_char)
10391 error ("%<long%> or %<short%> specified with char for %qs", name);
10392 else if (long_p && short_p)
10393 error ("%<long%> and %<short%> specified together for %qs", name);
10394 else if (type == char16_type_node || type == char32_type_node)
10395 {
10396 if (signed_p || unsigned_p)
10397 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
10398 else if (short_p || long_p)
10399 error ("%<short%> or %<long%> invalid for %qs", name);
10400 }
10401 else
10402 {
10403 ok = 1;
10404 if (!explicit_int && !defaulted_int && !explicit_char && !explicit_intN && pedantic)
10405 {
10406 pedwarn (input_location, OPT_Wpedantic,
10407 "long, short, signed or unsigned used invalidly for %qs",
10408 name);
10409 if (flag_pedantic_errors)
10410 ok = 0;
10411 }
10412 }
10413
10414 /* Discard the type modifiers if they are invalid. */
10415 if (! ok)
10416 {
10417 unsigned_p = false;
10418 signed_p = false;
10419 long_p = false;
10420 short_p = false;
10421 longlong = 0;
10422 }
10423 }
10424
10425 /* Decide whether an integer type is signed or not.
10426 Optionally treat bitfields as signed by default. */
10427 if (unsigned_p
10428 /* [class.bit]
10429
10430 It is implementation-defined whether a plain (neither
10431 explicitly signed or unsigned) char, short, int, or long
10432 bit-field is signed or unsigned.
10433
10434 Naturally, we extend this to long long as well. Note that
10435 this does not include wchar_t. */
10436 || (bitfield && !flag_signed_bitfields
10437 && !signed_p
10438 /* A typedef for plain `int' without `signed' can be
10439 controlled just like plain `int', but a typedef for
10440 `signed int' cannot be so controlled. */
10441 && !(typedef_decl
10442 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
10443 && TREE_CODE (type) == INTEGER_TYPE
10444 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
10445 {
10446 if (explicit_intN)
10447 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
10448 else if (longlong)
10449 type = long_long_unsigned_type_node;
10450 else if (long_p)
10451 type = long_unsigned_type_node;
10452 else if (short_p)
10453 type = short_unsigned_type_node;
10454 else if (type == char_type_node)
10455 type = unsigned_char_type_node;
10456 else if (typedef_decl)
10457 type = unsigned_type_for (type);
10458 else
10459 type = unsigned_type_node;
10460 }
10461 else if (signed_p && type == char_type_node)
10462 type = signed_char_type_node;
10463 else if (explicit_intN)
10464 type = int_n_trees[declspecs->int_n_idx].signed_type;
10465 else if (longlong)
10466 type = long_long_integer_type_node;
10467 else if (long_p)
10468 type = long_integer_type_node;
10469 else if (short_p)
10470 type = short_integer_type_node;
10471
10472 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
10473 {
10474 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
10475 error ("complex invalid for %qs", name);
10476 /* If a modifier is specified, the resulting complex is the complex
10477 form of TYPE. E.g, "complex short" is "complex short int". */
10478 else if (type == integer_type_node)
10479 type = complex_integer_type_node;
10480 else if (type == float_type_node)
10481 type = complex_float_type_node;
10482 else if (type == double_type_node)
10483 type = complex_double_type_node;
10484 else if (type == long_double_type_node)
10485 type = complex_long_double_type_node;
10486 else
10487 type = build_complex_type (type);
10488 }
10489
10490 /* If we're using the injected-class-name to form a compound type or a
10491 declaration, replace it with the underlying class so we don't get
10492 redundant typedefs in the debug output. But if we are returning the
10493 type unchanged, leave it alone so that it's available to
10494 maybe_get_template_decl_from_type_decl. */
10495 if (CLASS_TYPE_P (type)
10496 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
10497 && type == TREE_TYPE (TYPE_NAME (type))
10498 && (declarator || type_quals))
10499 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
10500
10501 type_quals |= cp_type_quals (type);
10502 type = cp_build_qualified_type_real
10503 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
10504 || declspecs->decltype_p)
10505 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
10506 /* We might have ignored or rejected some of the qualifiers. */
10507 type_quals = cp_type_quals (type);
10508
10509 if (cxx_dialect >= cxx17 && type && is_auto (type)
10510 && innermost_code != cdk_function
10511 && id_declarator && declarator != id_declarator)
10512 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (type))
10513 {
10514 error_at (typespec_loc, "template placeholder type %qT must be followed "
10515 "by a simple declarator-id", type);
10516 inform (DECL_SOURCE_LOCATION (tmpl), "%qD declared here", tmpl);
10517 }
10518
10519 staticp = 0;
10520 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
10521 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
10522 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
10523
10524 storage_class = declspecs->storage_class;
10525 if (storage_class == sc_static)
10526 staticp = 1 + (decl_context == FIELD);
10527
10528 if (virtualp)
10529 {
10530 if (staticp == 2)
10531 {
10532 error ("member %qD cannot be declared both %<virtual%> "
10533 "and %<static%>", dname);
10534 storage_class = sc_none;
10535 staticp = 0;
10536 }
10537 if (constexpr_p)
10538 error ("member %qD cannot be declared both %<virtual%> "
10539 "and %<constexpr%>", dname);
10540 }
10541 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
10542
10543 /* Issue errors about use of storage classes for parameters. */
10544 if (decl_context == PARM)
10545 {
10546 if (typedef_p)
10547 {
10548 error ("typedef declaration invalid in parameter declaration");
10549 return error_mark_node;
10550 }
10551 else if (template_parm_flag && storage_class != sc_none)
10552 {
10553 error ("storage class specified for template parameter %qs", name);
10554 return error_mark_node;
10555 }
10556 else if (storage_class == sc_static
10557 || storage_class == sc_extern
10558 || thread_p)
10559 error ("storage class specifiers invalid in parameter declarations");
10560
10561 /* Function parameters cannot be concept. */
10562 if (concept_p)
10563 error ("a parameter cannot be declared %<concept%>");
10564 /* Function parameters cannot be constexpr. If we saw one, moan
10565 and pretend it wasn't there. */
10566 else if (constexpr_p)
10567 {
10568 error ("a parameter cannot be declared %<constexpr%>");
10569 constexpr_p = 0;
10570 }
10571 }
10572
10573 /* Give error if `virtual' is used outside of class declaration. */
10574 if (virtualp
10575 && (current_class_name == NULL_TREE || decl_context != FIELD))
10576 {
10577 error_at (declspecs->locations[ds_virtual],
10578 "%<virtual%> outside class declaration");
10579 virtualp = 0;
10580 }
10581
10582 if (innermost_code == cdk_decomp)
10583 {
10584 location_t loc = (declarator->kind == cdk_reference
10585 ? declarator->declarator->id_loc : declarator->id_loc);
10586 if (inlinep)
10587 error_at (declspecs->locations[ds_inline],
10588 "structured binding declaration cannot be %<inline%>");
10589 if (typedef_p)
10590 error_at (declspecs->locations[ds_typedef],
10591 "structured binding declaration cannot be %<typedef%>");
10592 if (constexpr_p)
10593 error_at (declspecs->locations[ds_constexpr], "structured "
10594 "binding declaration cannot be %<constexpr%>");
10595 if (thread_p)
10596 error_at (declspecs->locations[ds_thread],
10597 "structured binding declaration cannot be %qs",
10598 declspecs->gnu_thread_keyword_p
10599 ? "__thread" : "thread_local");
10600 if (concept_p)
10601 error_at (declspecs->locations[ds_concept],
10602 "structured binding declaration cannot be %<concept%>");
10603 switch (storage_class)
10604 {
10605 case sc_none:
10606 break;
10607 case sc_register:
10608 error_at (loc, "structured binding declaration cannot be "
10609 "%<register%>");
10610 break;
10611 case sc_static:
10612 error_at (loc, "structured binding declaration cannot be "
10613 "%<static%>");
10614 break;
10615 case sc_extern:
10616 error_at (loc, "structured binding declaration cannot be "
10617 "%<extern%>");
10618 break;
10619 case sc_mutable:
10620 error_at (loc, "structured binding declaration cannot be "
10621 "%<mutable%>");
10622 break;
10623 case sc_auto:
10624 error_at (loc, "structured binding declaration cannot be "
10625 "C++98 %<auto%>");
10626 break;
10627 default:
10628 gcc_unreachable ();
10629 }
10630 if (TREE_CODE (type) != TEMPLATE_TYPE_PARM
10631 || TYPE_IDENTIFIER (type) != auto_identifier)
10632 {
10633 if (type != error_mark_node)
10634 {
10635 error_at (loc, "structured binding declaration cannot have "
10636 "type %qT", type);
10637 inform (loc,
10638 "type must be cv-qualified %<auto%> or reference to "
10639 "cv-qualified %<auto%>");
10640 }
10641 type = build_qualified_type (make_auto (), type_quals);
10642 declspecs->type = type;
10643 }
10644 inlinep = 0;
10645 typedef_p = 0;
10646 constexpr_p = 0;
10647 thread_p = 0;
10648 concept_p = 0;
10649 storage_class = sc_none;
10650 staticp = 0;
10651 declspecs->storage_class = sc_none;
10652 declspecs->locations[ds_thread] = UNKNOWN_LOCATION;
10653 }
10654
10655 /* Static anonymous unions are dealt with here. */
10656 if (staticp && decl_context == TYPENAME
10657 && declspecs->type
10658 && ANON_AGGR_TYPE_P (declspecs->type))
10659 decl_context = FIELD;
10660
10661 /* Warn about storage classes that are invalid for certain
10662 kinds of declarations (parameters, typenames, etc.). */
10663 if (thread_p
10664 && ((storage_class
10665 && storage_class != sc_extern
10666 && storage_class != sc_static)
10667 || typedef_p))
10668 {
10669 error ("multiple storage classes in declaration of %qs", name);
10670 thread_p = false;
10671 }
10672 if (decl_context != NORMAL
10673 && ((storage_class != sc_none
10674 && storage_class != sc_mutable)
10675 || thread_p))
10676 {
10677 if ((decl_context == PARM || decl_context == CATCHPARM)
10678 && (storage_class == sc_register
10679 || storage_class == sc_auto))
10680 ;
10681 else if (typedef_p)
10682 ;
10683 else if (decl_context == FIELD
10684 /* C++ allows static class elements. */
10685 && storage_class == sc_static)
10686 /* C++ also allows inlines and signed and unsigned elements,
10687 but in those cases we don't come in here. */
10688 ;
10689 else
10690 {
10691 if (decl_context == FIELD)
10692 error ("storage class specified for %qs", name);
10693 else
10694 {
10695 if (decl_context == PARM || decl_context == CATCHPARM)
10696 error ("storage class specified for parameter %qs", name);
10697 else
10698 error ("storage class specified for typename");
10699 }
10700 if (storage_class == sc_register
10701 || storage_class == sc_auto
10702 || storage_class == sc_extern
10703 || thread_p)
10704 storage_class = sc_none;
10705 }
10706 }
10707 else if (storage_class == sc_extern && funcdef_flag
10708 && ! toplevel_bindings_p ())
10709 error ("nested function %qs declared %<extern%>", name);
10710 else if (toplevel_bindings_p ())
10711 {
10712 if (storage_class == sc_auto)
10713 error ("top-level declaration of %qs specifies %<auto%>", name);
10714 }
10715 else if (thread_p
10716 && storage_class != sc_extern
10717 && storage_class != sc_static)
10718 {
10719 if (declspecs->gnu_thread_keyword_p)
10720 pedwarn (input_location, 0, "function-scope %qs implicitly auto and "
10721 "declared %<__thread%>", name);
10722
10723 /* When thread_local is applied to a variable of block scope the
10724 storage-class-specifier static is implied if it does not appear
10725 explicitly. */
10726 storage_class = declspecs->storage_class = sc_static;
10727 staticp = 1;
10728 }
10729
10730 if (storage_class && friendp)
10731 {
10732 error ("storage class specifiers invalid in friend function declarations");
10733 storage_class = sc_none;
10734 staticp = 0;
10735 }
10736
10737 if (!id_declarator)
10738 unqualified_id = NULL_TREE;
10739 else
10740 {
10741 unqualified_id = id_declarator->u.id.unqualified_name;
10742 switch (TREE_CODE (unqualified_id))
10743 {
10744 case BIT_NOT_EXPR:
10745 unqualified_id = TREE_OPERAND (unqualified_id, 0);
10746 if (TYPE_P (unqualified_id))
10747 unqualified_id = constructor_name (unqualified_id);
10748 break;
10749
10750 case IDENTIFIER_NODE:
10751 case TEMPLATE_ID_EXPR:
10752 break;
10753
10754 default:
10755 gcc_unreachable ();
10756 }
10757 }
10758
10759 if (declspecs->std_attributes)
10760 {
10761 /* Apply the c++11 attributes to the type preceding them. */
10762 input_location = declspecs->locations[ds_std_attribute];
10763 decl_attributes (&type, declspecs->std_attributes, 0);
10764 input_location = saved_loc;
10765 }
10766
10767 /* Determine the type of the entity declared by recurring on the
10768 declarator. */
10769 for (; declarator; declarator = declarator->declarator)
10770 {
10771 const cp_declarator *inner_declarator;
10772 tree attrs;
10773
10774 if (type == error_mark_node)
10775 return error_mark_node;
10776
10777 attrs = declarator->attributes;
10778 if (attrs)
10779 {
10780 int attr_flags;
10781
10782 attr_flags = 0;
10783 if (declarator == NULL || declarator->kind == cdk_id)
10784 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
10785 if (declarator->kind == cdk_function)
10786 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
10787 if (declarator->kind == cdk_array)
10788 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
10789 returned_attrs = decl_attributes (&type,
10790 chainon (returned_attrs, attrs),
10791 attr_flags);
10792 }
10793
10794 /* We don't want to warn in parmeter context because we don't
10795 yet know if the parse will succeed, and this might turn out
10796 to be a constructor call. */
10797 if (decl_context != PARM
10798 && declarator->parenthesized != UNKNOWN_LOCATION)
10799 warning_at (declarator->parenthesized, OPT_Wparentheses,
10800 "unnecessary parentheses in declaration of %qs", name);
10801 if (declarator->kind == cdk_id || declarator->kind == cdk_decomp)
10802 break;
10803
10804 inner_declarator = declarator->declarator;
10805
10806 switch (declarator->kind)
10807 {
10808 case cdk_array:
10809 type = create_array_type_for_decl (dname, type,
10810 declarator->u.array.bounds);
10811 if (!valid_array_size_p (input_location, type, dname))
10812 type = error_mark_node;
10813
10814 if (declarator->std_attributes)
10815 /* [dcl.array]/1:
10816
10817 The optional attribute-specifier-seq appertains to the
10818 array. */
10819 returned_attrs = chainon (returned_attrs,
10820 declarator->std_attributes);
10821 break;
10822
10823 case cdk_function:
10824 {
10825 tree arg_types;
10826 int funcdecl_p;
10827
10828 /* Declaring a function type. */
10829
10830 input_location = declspecs->locations[ds_type_spec];
10831 abstract_virtuals_error (ACU_RETURN, type);
10832 input_location = saved_loc;
10833
10834 /* Pick up type qualifiers which should be applied to `this'. */
10835 memfn_quals = declarator->u.function.qualifiers;
10836 /* Pick up virt-specifiers. */
10837 virt_specifiers = declarator->u.function.virt_specifiers;
10838 /* And ref-qualifier, too */
10839 rqual = declarator->u.function.ref_qualifier;
10840 /* And tx-qualifier. */
10841 tree tx_qual = declarator->u.function.tx_qualifier;
10842 /* Pick up the exception specifications. */
10843 raises = declarator->u.function.exception_specification;
10844 /* If the exception-specification is ill-formed, let's pretend
10845 there wasn't one. */
10846 if (raises == error_mark_node)
10847 raises = NULL_TREE;
10848
10849 if (reqs)
10850 error_at (location_of (reqs), "requires-clause on return type");
10851 reqs = declarator->u.function.requires_clause;
10852
10853 /* Say it's a definition only for the CALL_EXPR
10854 closest to the identifier. */
10855 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
10856
10857 /* Handle a late-specified return type. */
10858 tree late_return_type = declarator->u.function.late_return_type;
10859 if (funcdecl_p)
10860 {
10861 if (tree auto_node = type_uses_auto (type))
10862 {
10863 if (!late_return_type)
10864 {
10865 if (current_class_type
10866 && LAMBDA_TYPE_P (current_class_type))
10867 /* OK for C++11 lambdas. */;
10868 else if (cxx_dialect < cxx14)
10869 {
10870 error ("%qs function uses "
10871 "%<auto%> type specifier without trailing "
10872 "return type", name);
10873 inform (input_location, "deduced return type "
10874 "only available with -std=c++14 or "
10875 "-std=gnu++14");
10876 }
10877 else if (virtualp)
10878 {
10879 error ("virtual function cannot "
10880 "have deduced return type");
10881 virtualp = false;
10882 }
10883 }
10884 else if (!is_auto (type) && sfk != sfk_conversion)
10885 {
10886 error ("%qs function with trailing return type has"
10887 " %qT as its type rather than plain %<auto%>",
10888 name, type);
10889 return error_mark_node;
10890 }
10891 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (auto_node))
10892 {
10893 if (!late_return_type)
10894 {
10895 if (dguide_name_p (unqualified_id))
10896 error_at (declarator->id_loc, "deduction guide "
10897 "for %qT must have trailing return "
10898 "type", TREE_TYPE (tmpl));
10899 else
10900 error_at (declarator->id_loc, "deduced class "
10901 "type %qT in function return type",
10902 type);
10903 inform (DECL_SOURCE_LOCATION (tmpl),
10904 "%qD declared here", tmpl);
10905 }
10906 else if (CLASS_TYPE_P (late_return_type)
10907 && CLASSTYPE_TEMPLATE_INFO (late_return_type)
10908 && (CLASSTYPE_TI_TEMPLATE (late_return_type)
10909 == tmpl))
10910 /* OK */;
10911 else
10912 error ("trailing return type %qT of deduction guide "
10913 "is not a specialization of %qT",
10914 late_return_type, TREE_TYPE (tmpl));
10915 }
10916 }
10917 else if (late_return_type
10918 && sfk != sfk_conversion)
10919 {
10920 if (cxx_dialect < cxx11)
10921 /* Not using maybe_warn_cpp0x because this should
10922 always be an error. */
10923 error ("trailing return type only available with "
10924 "-std=c++11 or -std=gnu++11");
10925 else
10926 error ("%qs function with trailing return type not "
10927 "declared with %<auto%> type specifier", name);
10928 return error_mark_node;
10929 }
10930 }
10931 type = splice_late_return_type (type, late_return_type);
10932 if (type == error_mark_node)
10933 return error_mark_node;
10934
10935 if (late_return_type)
10936 {
10937 late_return_type_p = true;
10938 type_quals = cp_type_quals (type);
10939 }
10940
10941 if (type_quals != TYPE_UNQUALIFIED)
10942 {
10943 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
10944 warning_at (typespec_loc, OPT_Wignored_qualifiers, "type "
10945 "qualifiers ignored on function return type");
10946 /* We now know that the TYPE_QUALS don't apply to the
10947 decl, but to its return type. */
10948 type_quals = TYPE_UNQUALIFIED;
10949 }
10950
10951 /* Error about some types functions can't return. */
10952
10953 if (TREE_CODE (type) == FUNCTION_TYPE)
10954 {
10955 error_at (typespec_loc, "%qs declared as function returning "
10956 "a function", name);
10957 return error_mark_node;
10958 }
10959 if (TREE_CODE (type) == ARRAY_TYPE)
10960 {
10961 error_at (typespec_loc, "%qs declared as function returning "
10962 "an array", name);
10963 return error_mark_node;
10964 }
10965
10966 if (ctype == NULL_TREE
10967 && decl_context == FIELD
10968 && funcdecl_p
10969 && friendp == 0)
10970 ctype = current_class_type;
10971
10972 if (ctype && (sfk == sfk_constructor
10973 || sfk == sfk_destructor))
10974 {
10975 /* We are within a class's scope. If our declarator name
10976 is the same as the class name, and we are defining
10977 a function, then it is a constructor/destructor, and
10978 therefore returns a void type. */
10979
10980 /* ISO C++ 12.4/2. A destructor may not be declared
10981 const or volatile. A destructor may not be static.
10982 A destructor may not be declared with ref-qualifier.
10983
10984 ISO C++ 12.1. A constructor may not be declared
10985 const or volatile. A constructor may not be
10986 virtual. A constructor may not be static.
10987 A constructor may not be declared with ref-qualifier. */
10988 if (staticp == 2)
10989 error ((flags == DTOR_FLAG)
10990 ? G_("destructor cannot be static member function")
10991 : G_("constructor cannot be static member function"));
10992 if (memfn_quals)
10993 {
10994 error ((flags == DTOR_FLAG)
10995 ? G_("destructors may not be cv-qualified")
10996 : G_("constructors may not be cv-qualified"));
10997 memfn_quals = TYPE_UNQUALIFIED;
10998 }
10999
11000 if (rqual)
11001 {
11002 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
11003 error ((flags == DTOR_FLAG)
11004 ? G_("destructors may not be ref-qualified")
11005 : G_("constructors may not be ref-qualified"));
11006 rqual = REF_QUAL_NONE;
11007 }
11008
11009 if (decl_context == FIELD
11010 && !member_function_or_else (ctype,
11011 current_class_type,
11012 flags))
11013 return error_mark_node;
11014
11015 if (flags != DTOR_FLAG)
11016 {
11017 /* It's a constructor. */
11018 if (explicitp == 1)
11019 explicitp = 2;
11020 if (virtualp)
11021 {
11022 permerror (input_location,
11023 "constructors cannot be declared %<virtual%>");
11024 virtualp = 0;
11025 }
11026 if (decl_context == FIELD
11027 && sfk != sfk_constructor)
11028 return error_mark_node;
11029 }
11030 if (decl_context == FIELD)
11031 staticp = 0;
11032 }
11033 else if (friendp)
11034 {
11035 if (virtualp)
11036 {
11037 /* Cannot be both friend and virtual. */
11038 error ("virtual functions cannot be friends");
11039 friendp = 0;
11040 }
11041 if (decl_context == NORMAL)
11042 error ("friend declaration not in class definition");
11043 if (current_function_decl && funcdef_flag)
11044 error ("can%'t define friend function %qs in a local "
11045 "class definition",
11046 name);
11047 }
11048 else if (ctype && sfk == sfk_conversion)
11049 {
11050 if (explicitp == 1)
11051 {
11052 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
11053 explicitp = 2;
11054 }
11055 if (late_return_type_p)
11056 error ("a conversion function cannot have a trailing return type");
11057 }
11058 else if (sfk == sfk_deduction_guide)
11059 {
11060 if (explicitp == 1)
11061 explicitp = 2;
11062 }
11063
11064 arg_types = grokparms (declarator->u.function.parameters,
11065 &parms);
11066
11067 if (inner_declarator
11068 && inner_declarator->kind == cdk_id
11069 && inner_declarator->u.id.sfk == sfk_destructor
11070 && arg_types != void_list_node)
11071 {
11072 error ("destructors may not have parameters");
11073 arg_types = void_list_node;
11074 parms = NULL_TREE;
11075 }
11076
11077 type = build_function_type (type, arg_types);
11078
11079 tree attrs = declarator->std_attributes;
11080 if (tx_qual)
11081 {
11082 tree att = build_tree_list (tx_qual, NULL_TREE);
11083 /* transaction_safe applies to the type, but
11084 transaction_safe_dynamic applies to the function. */
11085 if (is_attribute_p ("transaction_safe", tx_qual))
11086 attrs = chainon (attrs, att);
11087 else
11088 returned_attrs = chainon (returned_attrs, att);
11089 }
11090 if (attrs)
11091 /* [dcl.fct]/2:
11092
11093 The optional attribute-specifier-seq appertains to
11094 the function type. */
11095 decl_attributes (&type, attrs, 0);
11096
11097 if (raises)
11098 type = build_exception_variant (type, raises);
11099 }
11100 break;
11101
11102 case cdk_pointer:
11103 case cdk_reference:
11104 case cdk_ptrmem:
11105 /* Filter out pointers-to-references and references-to-references.
11106 We can get these if a TYPE_DECL is used. */
11107
11108 if (TREE_CODE (type) == REFERENCE_TYPE)
11109 {
11110 if (declarator->kind != cdk_reference)
11111 {
11112 error ("cannot declare pointer to %q#T", type);
11113 type = TREE_TYPE (type);
11114 }
11115
11116 /* In C++0x, we allow reference to reference declarations
11117 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
11118 and template type arguments [14.3.1/4 temp.arg.type]. The
11119 check for direct reference to reference declarations, which
11120 are still forbidden, occurs below. Reasoning behind the change
11121 can be found in DR106, DR540, and the rvalue reference
11122 proposals. */
11123 else if (cxx_dialect == cxx98)
11124 {
11125 error ("cannot declare reference to %q#T", type);
11126 type = TREE_TYPE (type);
11127 }
11128 }
11129 else if (VOID_TYPE_P (type))
11130 {
11131 if (declarator->kind == cdk_reference)
11132 error ("cannot declare reference to %q#T", type);
11133 else if (declarator->kind == cdk_ptrmem)
11134 error ("cannot declare pointer to %q#T member", type);
11135 }
11136
11137 /* We now know that the TYPE_QUALS don't apply to the decl,
11138 but to the target of the pointer. */
11139 type_quals = TYPE_UNQUALIFIED;
11140
11141 /* This code used to handle METHOD_TYPE, but I don't think it's
11142 possible to get it here anymore. */
11143 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
11144 if (declarator->kind == cdk_ptrmem
11145 && TREE_CODE (type) == FUNCTION_TYPE)
11146 {
11147 memfn_quals |= type_memfn_quals (type);
11148 type = build_memfn_type (type,
11149 declarator->u.pointer.class_type,
11150 memfn_quals,
11151 rqual);
11152 if (type == error_mark_node)
11153 return error_mark_node;
11154
11155 rqual = REF_QUAL_NONE;
11156 memfn_quals = TYPE_UNQUALIFIED;
11157 }
11158
11159 if (TREE_CODE (type) == FUNCTION_TYPE
11160 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
11161 || type_memfn_rqual (type) != REF_QUAL_NONE))
11162 error (declarator->kind == cdk_reference
11163 ? G_("cannot declare reference to qualified function type %qT")
11164 : G_("cannot declare pointer to qualified function type %qT"),
11165 type);
11166
11167 /* When the pointed-to type involves components of variable size,
11168 care must be taken to ensure that the size evaluation code is
11169 emitted early enough to dominate all the possible later uses
11170 and late enough for the variables on which it depends to have
11171 been assigned.
11172
11173 This is expected to happen automatically when the pointed-to
11174 type has a name/declaration of it's own, but special attention
11175 is required if the type is anonymous.
11176
11177 We handle the NORMAL and FIELD contexts here by inserting a
11178 dummy statement that just evaluates the size at a safe point
11179 and ensures it is not deferred until e.g. within a deeper
11180 conditional context (c++/43555).
11181
11182 We expect nothing to be needed here for PARM or TYPENAME.
11183 Evaluating the size at this point for TYPENAME would
11184 actually be incorrect, as we might be in the middle of an
11185 expression with side effects on the pointed-to type size
11186 "arguments" prior to the pointer declaration point and the
11187 size evaluation could end up prior to the side effects. */
11188
11189 if (!TYPE_NAME (type)
11190 && (decl_context == NORMAL || decl_context == FIELD)
11191 && at_function_scope_p ()
11192 && variably_modified_type_p (type, NULL_TREE))
11193 {
11194 TYPE_NAME (type) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
11195 NULL_TREE, type);
11196 add_decl_expr (TYPE_NAME (type));
11197 }
11198
11199 if (declarator->kind == cdk_reference)
11200 {
11201 /* In C++0x, the type we are creating a reference to might be
11202 a typedef which is itself a reference type. In that case,
11203 we follow the reference collapsing rules in
11204 [7.1.3/8 dcl.typedef] to create the final reference type:
11205
11206 "If a typedef TD names a type that is a reference to a type
11207 T, an attempt to create the type 'lvalue reference to cv TD'
11208 creates the type 'lvalue reference to T,' while an attempt
11209 to create the type "rvalue reference to cv TD' creates the
11210 type TD."
11211 */
11212 if (VOID_TYPE_P (type))
11213 /* We already gave an error. */;
11214 else if (TREE_CODE (type) == REFERENCE_TYPE)
11215 {
11216 if (declarator->u.reference.rvalue_ref)
11217 /* Leave type alone. */;
11218 else
11219 type = cp_build_reference_type (TREE_TYPE (type), false);
11220 }
11221 else
11222 type = cp_build_reference_type
11223 (type, declarator->u.reference.rvalue_ref);
11224
11225 /* In C++0x, we need this check for direct reference to
11226 reference declarations, which are forbidden by
11227 [8.3.2/5 dcl.ref]. Reference to reference declarations
11228 are only allowed indirectly through typedefs and template
11229 type arguments. Example:
11230
11231 void foo(int & &); // invalid ref-to-ref decl
11232
11233 typedef int & int_ref;
11234 void foo(int_ref &); // valid ref-to-ref decl
11235 */
11236 if (inner_declarator && inner_declarator->kind == cdk_reference)
11237 error ("cannot declare reference to %q#T, which is not "
11238 "a typedef or a template type argument", type);
11239 }
11240 else if (TREE_CODE (type) == METHOD_TYPE)
11241 type = build_ptrmemfunc_type (build_pointer_type (type));
11242 else if (declarator->kind == cdk_ptrmem)
11243 {
11244 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
11245 != NAMESPACE_DECL);
11246 if (declarator->u.pointer.class_type == error_mark_node)
11247 /* We will already have complained. */
11248 type = error_mark_node;
11249 else
11250 type = build_ptrmem_type (declarator->u.pointer.class_type,
11251 type);
11252 }
11253 else
11254 type = build_pointer_type (type);
11255
11256 /* Process a list of type modifier keywords (such as
11257 const or volatile) that were given inside the `*' or `&'. */
11258
11259 if (declarator->u.pointer.qualifiers)
11260 {
11261 type
11262 = cp_build_qualified_type (type,
11263 declarator->u.pointer.qualifiers);
11264 type_quals = cp_type_quals (type);
11265 }
11266
11267 /* Apply C++11 attributes to the pointer, and not to the
11268 type pointed to. This is unlike what is done for GNU
11269 attributes above. It is to comply with [dcl.ptr]/1:
11270
11271 [the optional attribute-specifier-seq (7.6.1) appertains
11272 to the pointer and not to the object pointed to]. */
11273 if (declarator->std_attributes)
11274 decl_attributes (&type, declarator->std_attributes,
11275 0);
11276
11277 ctype = NULL_TREE;
11278 break;
11279
11280 case cdk_error:
11281 break;
11282
11283 default:
11284 gcc_unreachable ();
11285 }
11286 }
11287
11288 /* A `constexpr' specifier used in an object declaration declares
11289 the object as `const'. */
11290 if (constexpr_p && innermost_code != cdk_function)
11291 {
11292 /* DR1688 says that a `constexpr' specifier in combination with
11293 `volatile' is valid. */
11294
11295 if (TREE_CODE (type) != REFERENCE_TYPE)
11296 {
11297 type_quals |= TYPE_QUAL_CONST;
11298 type = cp_build_qualified_type (type, type_quals);
11299 }
11300 }
11301
11302 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
11303 && TREE_CODE (type) != FUNCTION_TYPE
11304 && TREE_CODE (type) != METHOD_TYPE
11305 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
11306 {
11307 error ("template-id %qD used as a declarator",
11308 unqualified_id);
11309 unqualified_id = dname;
11310 }
11311
11312 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
11313 qualified with a class-name, turn it into a METHOD_TYPE, unless
11314 we know that the function is static. We take advantage of this
11315 opportunity to do other processing that pertains to entities
11316 explicitly declared to be class members. Note that if DECLARATOR
11317 is non-NULL, we know it is a cdk_id declarator; otherwise, we
11318 would not have exited the loop above. */
11319 if (declarator
11320 && declarator->kind == cdk_id
11321 && declarator->u.id.qualifying_scope
11322 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
11323 {
11324 ctype = declarator->u.id.qualifying_scope;
11325 ctype = TYPE_MAIN_VARIANT (ctype);
11326 template_count = num_template_headers_for_class (ctype);
11327
11328 if (ctype == current_class_type)
11329 {
11330 if (friendp)
11331 {
11332 permerror (input_location, "member functions are implicitly "
11333 "friends of their class");
11334 friendp = 0;
11335 }
11336 else
11337 permerror (declarator->id_loc,
11338 "extra qualification %<%T::%> on member %qs",
11339 ctype, name);
11340 }
11341 else if (/* If the qualifying type is already complete, then we
11342 can skip the following checks. */
11343 !COMPLETE_TYPE_P (ctype)
11344 && (/* If the function is being defined, then
11345 qualifying type must certainly be complete. */
11346 funcdef_flag
11347 /* A friend declaration of "T::f" is OK, even if
11348 "T" is a template parameter. But, if this
11349 function is not a friend, the qualifying type
11350 must be a class. */
11351 || (!friendp && !CLASS_TYPE_P (ctype))
11352 /* For a declaration, the type need not be
11353 complete, if either it is dependent (since there
11354 is no meaningful definition of complete in that
11355 case) or the qualifying class is currently being
11356 defined. */
11357 || !(dependent_type_p (ctype)
11358 || currently_open_class (ctype)))
11359 /* Check that the qualifying type is complete. */
11360 && !complete_type_or_else (ctype, NULL_TREE))
11361 return error_mark_node;
11362 else if (TREE_CODE (type) == FUNCTION_TYPE)
11363 {
11364 if (current_class_type
11365 && (!friendp || funcdef_flag || initialized))
11366 {
11367 error (funcdef_flag || initialized
11368 ? G_("cannot define member function %<%T::%s%> "
11369 "within %qT")
11370 : G_("cannot declare member function %<%T::%s%> "
11371 "within %qT"),
11372 ctype, name, current_class_type);
11373 return error_mark_node;
11374 }
11375 }
11376 else if (typedef_p && current_class_type)
11377 {
11378 error ("cannot declare member %<%T::%s%> within %qT",
11379 ctype, name, current_class_type);
11380 return error_mark_node;
11381 }
11382 }
11383
11384 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
11385 ctype = current_class_type;
11386
11387 /* Now TYPE has the actual type. */
11388
11389 if (returned_attrs)
11390 {
11391 if (attrlist)
11392 *attrlist = chainon (returned_attrs, *attrlist);
11393 else
11394 attrlist = &returned_attrs;
11395 }
11396
11397 if (declarator
11398 && declarator->kind == cdk_id
11399 && declarator->std_attributes
11400 && attrlist != NULL)
11401 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
11402 a declarator-id appertains to the entity that is declared. */
11403 *attrlist = chainon (*attrlist, declarator->std_attributes);
11404
11405 /* Handle parameter packs. */
11406 if (parameter_pack_p)
11407 {
11408 if (decl_context == PARM)
11409 /* Turn the type into a pack expansion.*/
11410 type = make_pack_expansion (type);
11411 else
11412 error ("non-parameter %qs cannot be a parameter pack", name);
11413 }
11414
11415 if ((decl_context == FIELD || decl_context == PARM)
11416 && !processing_template_decl
11417 && variably_modified_type_p (type, NULL_TREE))
11418 {
11419 if (decl_context == FIELD)
11420 error ("data member may not have variably modified type %qT", type);
11421 else
11422 error ("parameter may not have variably modified type %qT", type);
11423 type = error_mark_node;
11424 }
11425
11426 if (explicitp == 1 || (explicitp && friendp))
11427 {
11428 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
11429 in the declaration of a constructor or conversion function within
11430 a class definition. */
11431 if (!current_class_type)
11432 error_at (declspecs->locations[ds_explicit],
11433 "%<explicit%> outside class declaration");
11434 else if (friendp)
11435 error_at (declspecs->locations[ds_explicit],
11436 "%<explicit%> in friend declaration");
11437 else
11438 error_at (declspecs->locations[ds_explicit],
11439 "only declarations of constructors and conversion operators "
11440 "can be %<explicit%>");
11441 explicitp = 0;
11442 }
11443
11444 if (storage_class == sc_mutable)
11445 {
11446 if (decl_context != FIELD || friendp)
11447 {
11448 error ("non-member %qs cannot be declared %<mutable%>", name);
11449 storage_class = sc_none;
11450 }
11451 else if (decl_context == TYPENAME || typedef_p)
11452 {
11453 error ("non-object member %qs cannot be declared %<mutable%>", name);
11454 storage_class = sc_none;
11455 }
11456 else if (TREE_CODE (type) == FUNCTION_TYPE
11457 || TREE_CODE (type) == METHOD_TYPE)
11458 {
11459 error ("function %qs cannot be declared %<mutable%>", name);
11460 storage_class = sc_none;
11461 }
11462 else if (staticp)
11463 {
11464 error ("static %qs cannot be declared %<mutable%>", name);
11465 storage_class = sc_none;
11466 }
11467 else if (type_quals & TYPE_QUAL_CONST)
11468 {
11469 error ("const %qs cannot be declared %<mutable%>", name);
11470 storage_class = sc_none;
11471 }
11472 else if (TREE_CODE (type) == REFERENCE_TYPE)
11473 {
11474 permerror (input_location, "reference %qs cannot be declared "
11475 "%<mutable%>", name);
11476 storage_class = sc_none;
11477 }
11478 }
11479
11480 /* If this is declaring a typedef name, return a TYPE_DECL. */
11481 if (typedef_p && decl_context != TYPENAME)
11482 {
11483 tree decl;
11484
11485 /* This declaration:
11486
11487 typedef void f(int) const;
11488
11489 declares a function type which is not a member of any
11490 particular class, but which is cv-qualified; for
11491 example "f S::*" declares a pointer to a const-qualified
11492 member function of S. We record the cv-qualification in the
11493 function type. */
11494 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
11495 {
11496 type = apply_memfn_quals (type, memfn_quals, rqual);
11497
11498 /* We have now dealt with these qualifiers. */
11499 memfn_quals = TYPE_UNQUALIFIED;
11500 rqual = REF_QUAL_NONE;
11501 }
11502
11503 if (type_uses_auto (type))
11504 {
11505 error ("typedef declared %<auto%>");
11506 type = error_mark_node;
11507 }
11508
11509 if (reqs)
11510 error_at (location_of (reqs), "requires-clause on typedef");
11511
11512 if (decl_context == FIELD)
11513 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
11514 else
11515 decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
11516 if (id_declarator && declarator->u.id.qualifying_scope) {
11517 error_at (DECL_SOURCE_LOCATION (decl),
11518 "typedef name may not be a nested-name-specifier");
11519 TREE_TYPE (decl) = error_mark_node;
11520 }
11521
11522 if (decl_context != FIELD)
11523 {
11524 if (!current_function_decl)
11525 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
11526 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl)
11527 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
11528 (current_function_decl)))
11529 /* The TYPE_DECL is "abstract" because there will be
11530 clones of this constructor/destructor, and there will
11531 be copies of this TYPE_DECL generated in those
11532 clones. The decloning optimization (for space) may
11533 revert this subsequently if it determines that
11534 the clones should share a common implementation. */
11535 DECL_ABSTRACT_P (decl) = true;
11536 }
11537 else if (current_class_type
11538 && constructor_name_p (unqualified_id, current_class_type))
11539 permerror (input_location, "ISO C++ forbids nested type %qD with same name "
11540 "as enclosing class",
11541 unqualified_id);
11542
11543 /* If the user declares "typedef struct {...} foo" then the
11544 struct will have an anonymous name. Fill that name in now.
11545 Nothing can refer to it, so nothing needs know about the name
11546 change. */
11547 if (type != error_mark_node
11548 && unqualified_id
11549 && TYPE_NAME (type)
11550 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
11551 && TYPE_UNNAMED_P (type)
11552 && declspecs->type_definition_p
11553 && attributes_naming_typedef_ok (*attrlist)
11554 && cp_type_quals (type) == TYPE_UNQUALIFIED)
11555 name_unnamed_type (type, decl);
11556
11557 if (signed_p
11558 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
11559 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
11560
11561 bad_specifiers (decl, BSP_TYPE, virtualp,
11562 memfn_quals != TYPE_UNQUALIFIED,
11563 inlinep, friendp, raises != NULL_TREE);
11564
11565 if (decl_spec_seq_has_spec_p (declspecs, ds_alias))
11566 /* Acknowledge that this was written:
11567 `using analias = atype;'. */
11568 TYPE_DECL_ALIAS_P (decl) = 1;
11569
11570 return decl;
11571 }
11572
11573 /* Detect the case of an array type of unspecified size
11574 which came, as such, direct from a typedef name.
11575 We must copy the type, so that the array's domain can be
11576 individually set by the object's initializer. */
11577
11578 if (type && typedef_type
11579 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
11580 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
11581 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
11582
11583 /* Detect where we're using a typedef of function type to declare a
11584 function. PARMS will not be set, so we must create it now. */
11585
11586 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
11587 {
11588 tree decls = NULL_TREE;
11589 tree args;
11590
11591 for (args = TYPE_ARG_TYPES (type);
11592 args && args != void_list_node;
11593 args = TREE_CHAIN (args))
11594 {
11595 tree decl = cp_build_parm_decl (NULL_TREE, NULL_TREE,
11596 TREE_VALUE (args));
11597
11598 DECL_CHAIN (decl) = decls;
11599 decls = decl;
11600 }
11601
11602 parms = nreverse (decls);
11603
11604 if (decl_context != TYPENAME)
11605 {
11606 /* The qualifiers on the function type become the qualifiers on
11607 the non-static member function. */
11608 memfn_quals |= type_memfn_quals (type);
11609 rqual = type_memfn_rqual (type);
11610 type_quals = TYPE_UNQUALIFIED;
11611 }
11612 }
11613
11614 /* If this is a type name (such as, in a cast or sizeof),
11615 compute the type and return it now. */
11616
11617 if (decl_context == TYPENAME)
11618 {
11619 /* Note that here we don't care about type_quals. */
11620
11621 /* Special case: "friend class foo" looks like a TYPENAME context. */
11622 if (friendp)
11623 {
11624 if (inlinep)
11625 {
11626 error ("%<inline%> specified for friend class declaration");
11627 inlinep = 0;
11628 }
11629
11630 if (!current_aggr)
11631 {
11632 /* Don't allow friend declaration without a class-key. */
11633 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
11634 permerror (input_location, "template parameters cannot be friends");
11635 else if (TREE_CODE (type) == TYPENAME_TYPE)
11636 permerror (input_location, "friend declaration requires class-key, "
11637 "i.e. %<friend class %T::%D%>",
11638 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
11639 else
11640 permerror (input_location, "friend declaration requires class-key, "
11641 "i.e. %<friend %#T%>",
11642 type);
11643 }
11644
11645 /* Only try to do this stuff if we didn't already give up. */
11646 if (type != integer_type_node)
11647 {
11648 /* A friendly class? */
11649 if (current_class_type)
11650 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
11651 /*complain=*/true);
11652 else
11653 error ("trying to make class %qT a friend of global scope",
11654 type);
11655
11656 type = void_type_node;
11657 }
11658 }
11659 else if (memfn_quals || rqual)
11660 {
11661 if (ctype == NULL_TREE
11662 && TREE_CODE (type) == METHOD_TYPE)
11663 ctype = TYPE_METHOD_BASETYPE (type);
11664
11665 if (ctype)
11666 type = build_memfn_type (type, ctype, memfn_quals, rqual);
11667 /* Core issue #547: need to allow this in template type args.
11668 Allow it in general in C++11 for alias-declarations. */
11669 else if ((template_type_arg || cxx_dialect >= cxx11)
11670 && TREE_CODE (type) == FUNCTION_TYPE)
11671 type = apply_memfn_quals (type, memfn_quals, rqual);
11672 else
11673 error ("invalid qualifiers on non-member function type");
11674 }
11675
11676 if (reqs)
11677 error_at (location_of (reqs), "requires-clause on type-id");
11678
11679 return type;
11680 }
11681 else if (unqualified_id == NULL_TREE && decl_context != PARM
11682 && decl_context != CATCHPARM
11683 && TREE_CODE (type) != UNION_TYPE
11684 && ! bitfield
11685 && innermost_code != cdk_decomp)
11686 {
11687 error ("abstract declarator %qT used as declaration", type);
11688 return error_mark_node;
11689 }
11690
11691 if (!FUNC_OR_METHOD_TYPE_P (type))
11692 {
11693 /* Only functions may be declared using an operator-function-id. */
11694 if (dname && IDENTIFIER_ANY_OP_P (dname))
11695 {
11696 error ("declaration of %qD as non-function", dname);
11697 return error_mark_node;
11698 }
11699
11700 if (reqs)
11701 error_at (location_of (reqs),
11702 "requires-clause on declaration of non-function type %qT",
11703 type);
11704 }
11705
11706 /* We don't check parameter types here because we can emit a better
11707 error message later. */
11708 if (decl_context != PARM)
11709 {
11710 type = check_var_type (unqualified_id, type);
11711 if (type == error_mark_node)
11712 return error_mark_node;
11713 }
11714
11715 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
11716 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
11717
11718 if (decl_context == PARM || decl_context == CATCHPARM)
11719 {
11720 if (ctype || in_namespace)
11721 error ("cannot use %<::%> in parameter declaration");
11722
11723 if (type_uses_auto (type)
11724 && !(cxx_dialect >= cxx17 && template_parm_flag))
11725 {
11726 if (cxx_dialect >= cxx14)
11727 error ("%<auto%> parameter not permitted in this context");
11728 else
11729 error ("parameter declared %<auto%>");
11730 type = error_mark_node;
11731 }
11732
11733 /* A parameter declared as an array of T is really a pointer to T.
11734 One declared as a function is really a pointer to a function.
11735 One declared as a member is really a pointer to member. */
11736
11737 if (TREE_CODE (type) == ARRAY_TYPE)
11738 {
11739 /* Transfer const-ness of array into that of type pointed to. */
11740 type = build_pointer_type (TREE_TYPE (type));
11741 type_quals = TYPE_UNQUALIFIED;
11742 array_parameter_p = true;
11743 }
11744 else if (TREE_CODE (type) == FUNCTION_TYPE)
11745 type = build_pointer_type (type);
11746 }
11747
11748 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
11749 && !(identifier_p (unqualified_id)
11750 && IDENTIFIER_NEWDEL_OP_P (unqualified_id)))
11751 {
11752 cp_cv_quals real_quals = memfn_quals;
11753 if (cxx_dialect < cxx14 && constexpr_p
11754 && sfk != sfk_constructor && sfk != sfk_destructor)
11755 real_quals |= TYPE_QUAL_CONST;
11756 type = build_memfn_type (type, ctype, real_quals, rqual);
11757 }
11758
11759 {
11760 tree decl = NULL_TREE;
11761
11762 if (decl_context == PARM)
11763 {
11764 decl = cp_build_parm_decl (NULL_TREE, unqualified_id, type);
11765 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
11766
11767 bad_specifiers (decl, BSP_PARM, virtualp,
11768 memfn_quals != TYPE_UNQUALIFIED,
11769 inlinep, friendp, raises != NULL_TREE);
11770 }
11771 else if (decl_context == FIELD)
11772 {
11773 if (!staticp && !friendp && TREE_CODE (type) != METHOD_TYPE)
11774 if (tree auto_node = type_uses_auto (type))
11775 {
11776 location_t loc = declspecs->locations[ds_type_spec];
11777 if (CLASS_PLACEHOLDER_TEMPLATE (auto_node))
11778 error_at (loc, "invalid use of template-name %qE without an "
11779 "argument list",
11780 CLASS_PLACEHOLDER_TEMPLATE (auto_node));
11781 else
11782 error_at (loc, "non-static data member declared with "
11783 "placeholder %qT", auto_node);
11784 type = error_mark_node;
11785 }
11786
11787 /* The C99 flexible array extension. */
11788 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
11789 && TYPE_DOMAIN (type) == NULL_TREE)
11790 {
11791 if (ctype
11792 && (TREE_CODE (ctype) == UNION_TYPE
11793 || TREE_CODE (ctype) == QUAL_UNION_TYPE))
11794 {
11795 error ("flexible array member in union");
11796 type = error_mark_node;
11797 }
11798 else
11799 {
11800 /* Array is a flexible member. */
11801 if (in_system_header_at (input_location))
11802 /* Do not warn on flexible array members in system
11803 headers because glibc uses them. */;
11804 else if (name)
11805 pedwarn (input_location, OPT_Wpedantic,
11806 "ISO C++ forbids flexible array member %qs", name);
11807 else
11808 pedwarn (input_location, OPT_Wpedantic,
11809 "ISO C++ forbids flexible array members");
11810
11811 /* Flexible array member has a null domain. */
11812 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
11813 }
11814 }
11815
11816 if (type == error_mark_node)
11817 {
11818 /* Happens when declaring arrays of sizes which
11819 are error_mark_node, for example. */
11820 decl = NULL_TREE;
11821 }
11822 else if (in_namespace && !friendp)
11823 {
11824 /* Something like struct S { int N::j; }; */
11825 error ("invalid use of %<::%>");
11826 return error_mark_node;
11827 }
11828 else if (TREE_CODE (type) == FUNCTION_TYPE
11829 || TREE_CODE (type) == METHOD_TYPE)
11830 {
11831 int publicp = 0;
11832 tree function_context;
11833
11834 if (friendp == 0)
11835 {
11836 /* This should never happen in pure C++ (the check
11837 could be an assert). It could happen in
11838 Objective-C++ if someone writes invalid code that
11839 uses a function declaration for an instance
11840 variable or property (instance variables and
11841 properties are parsed as FIELD_DECLs, but they are
11842 part of an Objective-C class, not a C++ class).
11843 That code is invalid and is caught by this
11844 check. */
11845 if (!ctype)
11846 {
11847 error ("declaration of function %qD in invalid context",
11848 unqualified_id);
11849 return error_mark_node;
11850 }
11851
11852 /* ``A union may [ ... ] not [ have ] virtual functions.''
11853 ARM 9.5 */
11854 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
11855 {
11856 error ("function %qD declared %<virtual%> inside a union",
11857 unqualified_id);
11858 return error_mark_node;
11859 }
11860
11861 if (virtualp
11862 && identifier_p (unqualified_id)
11863 && IDENTIFIER_NEWDEL_OP_P (unqualified_id))
11864 {
11865 error ("%qD cannot be declared %<virtual%>, since it "
11866 "is always static", unqualified_id);
11867 virtualp = 0;
11868 }
11869 }
11870
11871 /* Check that the name used for a destructor makes sense. */
11872 if (sfk == sfk_destructor)
11873 {
11874 tree uqname = id_declarator->u.id.unqualified_name;
11875
11876 if (!ctype)
11877 {
11878 gcc_assert (friendp);
11879 error ("expected qualified name in friend declaration "
11880 "for destructor %qD", uqname);
11881 return error_mark_node;
11882 }
11883
11884 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
11885 {
11886 error ("declaration of %qD as member of %qT",
11887 uqname, ctype);
11888 return error_mark_node;
11889 }
11890 if (concept_p)
11891 {
11892 error ("a destructor cannot be %<concept%>");
11893 return error_mark_node;
11894 }
11895 if (constexpr_p)
11896 {
11897 error ("a destructor cannot be %<constexpr%>");
11898 return error_mark_node;
11899 }
11900 }
11901 else if (sfk == sfk_constructor && friendp && !ctype)
11902 {
11903 error ("expected qualified name in friend declaration "
11904 "for constructor %qD",
11905 id_declarator->u.id.unqualified_name);
11906 return error_mark_node;
11907 }
11908 if (sfk == sfk_constructor)
11909 if (concept_p)
11910 {
11911 error ("a constructor cannot be %<concept%>");
11912 return error_mark_node;
11913 }
11914 if (concept_p)
11915 {
11916 error ("a concept cannot be a member function");
11917 concept_p = false;
11918 }
11919
11920 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
11921 {
11922 tree tmpl = TREE_OPERAND (unqualified_id, 0);
11923 if (variable_template_p (tmpl))
11924 {
11925 error ("specialization of variable template %qD "
11926 "declared as function", tmpl);
11927 inform (DECL_SOURCE_LOCATION (tmpl),
11928 "variable template declared here");
11929 return error_mark_node;
11930 }
11931 }
11932
11933 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
11934 function_context = (ctype != NULL_TREE) ?
11935 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
11936 publicp = (! friendp || ! staticp)
11937 && function_context == NULL_TREE;
11938
11939 if (late_return_type_p)
11940 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
11941
11942 decl = grokfndecl (ctype, type,
11943 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
11944 ? unqualified_id : dname,
11945 parms,
11946 unqualified_id,
11947 reqs,
11948 virtualp, flags, memfn_quals, rqual, raises,
11949 friendp ? -1 : 0, friendp, publicp,
11950 inlinep | (2 * constexpr_p) | (4 * concept_p),
11951 initialized == SD_DELETED, sfk,
11952 funcdef_flag, template_count, in_namespace,
11953 attrlist, declarator->id_loc);
11954 decl = set_virt_specifiers (decl, virt_specifiers);
11955 if (decl == NULL_TREE)
11956 return error_mark_node;
11957 #if 0
11958 /* This clobbers the attrs stored in `decl' from `attrlist'. */
11959 /* The decl and setting of decl_attr is also turned off. */
11960 decl = build_decl_attribute_variant (decl, decl_attr);
11961 #endif
11962
11963 /* [class.conv.ctor]
11964
11965 A constructor declared without the function-specifier
11966 explicit that can be called with a single parameter
11967 specifies a conversion from the type of its first
11968 parameter to the type of its class. Such a constructor
11969 is called a converting constructor. */
11970 if (explicitp == 2)
11971 DECL_NONCONVERTING_P (decl) = 1;
11972 }
11973 else if (!staticp && !dependent_type_p (type)
11974 && !COMPLETE_TYPE_P (complete_type (type))
11975 && (!complete_or_array_type_p (type)
11976 || initialized == 0))
11977 {
11978 if (TREE_CODE (type) != ARRAY_TYPE
11979 || !COMPLETE_TYPE_P (TREE_TYPE (type)))
11980 {
11981 if (unqualified_id)
11982 {
11983 error ("field %qD has incomplete type %qT",
11984 unqualified_id, type);
11985 cxx_incomplete_type_inform (strip_array_types (type));
11986 }
11987 else
11988 error ("name %qT has incomplete type", type);
11989
11990 type = error_mark_node;
11991 decl = NULL_TREE;
11992 }
11993 }
11994 else
11995 {
11996 if (friendp)
11997 {
11998 error ("%qE is neither function nor member function; "
11999 "cannot be declared friend", unqualified_id);
12000 friendp = 0;
12001 }
12002 decl = NULL_TREE;
12003 }
12004
12005 if (friendp)
12006 {
12007 /* Friends are treated specially. */
12008 if (ctype == current_class_type)
12009 ; /* We already issued a permerror. */
12010 else if (decl && DECL_NAME (decl))
12011 {
12012 if (template_class_depth (current_class_type) == 0)
12013 {
12014 decl = check_explicit_specialization
12015 (unqualified_id, decl, template_count,
12016 2 * funcdef_flag + 4);
12017 if (decl == error_mark_node)
12018 return error_mark_node;
12019 }
12020
12021 decl = do_friend (ctype, unqualified_id, decl,
12022 *attrlist, flags,
12023 funcdef_flag);
12024 return decl;
12025 }
12026 else
12027 return error_mark_node;
12028 }
12029
12030 /* Structure field. It may not be a function, except for C++. */
12031
12032 if (decl == NULL_TREE)
12033 {
12034 if (staticp)
12035 {
12036 /* C++ allows static class members. All other work
12037 for this is done by grokfield. */
12038 decl = build_lang_decl_loc (declarator
12039 ? declarator->id_loc
12040 : input_location,
12041 VAR_DECL, unqualified_id, type);
12042 set_linkage_for_static_data_member (decl);
12043 if (concept_p)
12044 error ("static data member %qE declared %<concept%>",
12045 unqualified_id);
12046 else if (constexpr_p && !initialized)
12047 {
12048 error ("constexpr static data member %qD must have an "
12049 "initializer", decl);
12050 constexpr_p = false;
12051 }
12052
12053 if (inlinep)
12054 mark_inline_variable (decl);
12055
12056 if (!DECL_VAR_DECLARED_INLINE_P (decl)
12057 && !(cxx_dialect >= cxx17 && constexpr_p))
12058 /* Even if there is an in-class initialization, DECL
12059 is considered undefined until an out-of-class
12060 definition is provided, unless this is an inline
12061 variable. */
12062 DECL_EXTERNAL (decl) = 1;
12063
12064 if (thread_p)
12065 {
12066 CP_DECL_THREAD_LOCAL_P (decl) = true;
12067 if (!processing_template_decl)
12068 set_decl_tls_model (decl, decl_default_tls_model (decl));
12069 if (declspecs->gnu_thread_keyword_p)
12070 SET_DECL_GNU_TLS_P (decl);
12071 }
12072 }
12073 else
12074 {
12075 if (concept_p)
12076 error ("non-static data member %qE declared %<concept%>",
12077 unqualified_id);
12078 else if (constexpr_p)
12079 {
12080 error ("non-static data member %qE declared %<constexpr%>",
12081 unqualified_id);
12082 constexpr_p = false;
12083 }
12084 decl = build_decl (input_location,
12085 FIELD_DECL, unqualified_id, type);
12086 DECL_NONADDRESSABLE_P (decl) = bitfield;
12087 if (bitfield && !unqualified_id)
12088 TREE_NO_WARNING (decl) = 1;
12089
12090 if (storage_class == sc_mutable)
12091 {
12092 DECL_MUTABLE_P (decl) = 1;
12093 storage_class = sc_none;
12094 }
12095
12096 if (initialized)
12097 {
12098 /* An attempt is being made to initialize a non-static
12099 member. This is new in C++11. */
12100 maybe_warn_cpp0x (CPP0X_NSDMI);
12101
12102 /* If this has been parsed with static storage class, but
12103 errors forced staticp to be cleared, ensure NSDMI is
12104 not present. */
12105 if (declspecs->storage_class == sc_static)
12106 DECL_INITIAL (decl) = error_mark_node;
12107 }
12108 }
12109
12110 bad_specifiers (decl, BSP_FIELD, virtualp,
12111 memfn_quals != TYPE_UNQUALIFIED,
12112 staticp ? false : inlinep, friendp,
12113 raises != NULL_TREE);
12114 }
12115 }
12116 else if (TREE_CODE (type) == FUNCTION_TYPE
12117 || TREE_CODE (type) == METHOD_TYPE)
12118 {
12119 tree original_name;
12120 int publicp = 0;
12121
12122 if (!unqualified_id)
12123 return error_mark_node;
12124
12125 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
12126 original_name = dname;
12127 else
12128 original_name = unqualified_id;
12129 // FIXME:gcc_assert (original_name == dname);
12130
12131 if (storage_class == sc_auto)
12132 error ("storage class %<auto%> invalid for function %qs", name);
12133 else if (storage_class == sc_register)
12134 error ("storage class %<register%> invalid for function %qs", name);
12135 else if (thread_p)
12136 {
12137 if (declspecs->gnu_thread_keyword_p)
12138 error ("storage class %<__thread%> invalid for function %qs",
12139 name);
12140 else
12141 error ("storage class %<thread_local%> invalid for function %qs",
12142 name);
12143 }
12144
12145 if (virt_specifiers)
12146 error ("virt-specifiers in %qs not allowed outside a class definition", name);
12147 /* Function declaration not at top level.
12148 Storage classes other than `extern' are not allowed
12149 and `extern' makes no difference. */
12150 if (! toplevel_bindings_p ()
12151 && (storage_class == sc_static
12152 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
12153 && pedantic)
12154 {
12155 if (storage_class == sc_static)
12156 pedwarn (input_location, OPT_Wpedantic,
12157 "%<static%> specifier invalid for function %qs "
12158 "declared out of global scope", name);
12159 else
12160 pedwarn (input_location, OPT_Wpedantic,
12161 "%<inline%> specifier invalid for function %qs "
12162 "declared out of global scope", name);
12163 }
12164
12165 if (ctype == NULL_TREE)
12166 {
12167 if (virtualp)
12168 {
12169 error ("virtual non-class function %qs", name);
12170 virtualp = 0;
12171 }
12172 else if (sfk == sfk_constructor
12173 || sfk == sfk_destructor)
12174 {
12175 error (funcdef_flag
12176 ? G_("%qs defined in a non-class scope")
12177 : G_("%qs declared in a non-class scope"), name);
12178 sfk = sfk_none;
12179 }
12180 }
12181
12182 /* Record whether the function is public. */
12183 publicp = (ctype != NULL_TREE
12184 || storage_class != sc_static);
12185
12186 if (late_return_type_p)
12187 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
12188
12189 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
12190 reqs, virtualp, flags, memfn_quals, rqual, raises,
12191 1, friendp,
12192 publicp,
12193 inlinep | (2 * constexpr_p) | (4 * concept_p),
12194 initialized == SD_DELETED,
12195 sfk,
12196 funcdef_flag,
12197 template_count, in_namespace, attrlist,
12198 declarator->id_loc);
12199 if (decl == NULL_TREE)
12200 return error_mark_node;
12201
12202 if (explicitp == 2)
12203 DECL_NONCONVERTING_P (decl) = 1;
12204 if (staticp == 1)
12205 {
12206 int invalid_static = 0;
12207
12208 /* Don't allow a static member function in a class, and forbid
12209 declaring main to be static. */
12210 if (TREE_CODE (type) == METHOD_TYPE)
12211 {
12212 permerror (input_location, "cannot declare member function %qD to have "
12213 "static linkage", decl);
12214 invalid_static = 1;
12215 }
12216 else if (current_function_decl)
12217 {
12218 /* 7.1.1: There can be no static function declarations within a
12219 block. */
12220 error ("cannot declare static function inside another function");
12221 invalid_static = 1;
12222 }
12223
12224 if (invalid_static)
12225 {
12226 staticp = 0;
12227 storage_class = sc_none;
12228 }
12229 }
12230 }
12231 else
12232 {
12233 /* It's a variable. */
12234
12235 /* An uninitialized decl with `extern' is a reference. */
12236 decl = grokvardecl (type, dname, unqualified_id,
12237 declspecs,
12238 initialized,
12239 type_quals,
12240 inlinep,
12241 concept_p,
12242 template_count,
12243 ctype ? ctype : in_namespace);
12244 if (decl == NULL_TREE)
12245 return error_mark_node;
12246
12247 bad_specifiers (decl, BSP_VAR, virtualp,
12248 memfn_quals != TYPE_UNQUALIFIED,
12249 inlinep, friendp, raises != NULL_TREE);
12250
12251 if (ctype)
12252 {
12253 DECL_CONTEXT (decl) = ctype;
12254 if (staticp == 1)
12255 {
12256 permerror (input_location, "%<static%> may not be used when defining "
12257 "(as opposed to declaring) a static data member");
12258 staticp = 0;
12259 storage_class = sc_none;
12260 }
12261 if (storage_class == sc_register && TREE_STATIC (decl))
12262 {
12263 error ("static member %qD declared %<register%>", decl);
12264 storage_class = sc_none;
12265 }
12266 if (storage_class == sc_extern && pedantic)
12267 {
12268 pedwarn (input_location, OPT_Wpedantic,
12269 "cannot explicitly declare member %q#D to have "
12270 "extern linkage", decl);
12271 storage_class = sc_none;
12272 }
12273 }
12274 else if (constexpr_p && DECL_EXTERNAL (decl))
12275 {
12276 error ("declaration of constexpr variable %qD is not a definition",
12277 decl);
12278 constexpr_p = false;
12279 }
12280
12281 if (inlinep)
12282 mark_inline_variable (decl);
12283 if (innermost_code == cdk_decomp)
12284 {
12285 gcc_assert (declarator && declarator->kind == cdk_decomp);
12286 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
12287 DECL_ARTIFICIAL (decl) = 1;
12288 fit_decomposition_lang_decl (decl, NULL_TREE);
12289 }
12290 }
12291
12292 if (VAR_P (decl) && !initialized)
12293 if (tree auto_node = type_uses_auto (type))
12294 if (!CLASS_PLACEHOLDER_TEMPLATE (auto_node))
12295 {
12296 location_t loc = declspecs->locations[ds_type_spec];
12297 error_at (loc, "declaration of %q#D has no initializer", decl);
12298 TREE_TYPE (decl) = error_mark_node;
12299 }
12300
12301 if (storage_class == sc_extern && initialized && !funcdef_flag)
12302 {
12303 if (toplevel_bindings_p ())
12304 {
12305 /* It's common practice (and completely valid) to have a const
12306 be initialized and declared extern. */
12307 if (!(type_quals & TYPE_QUAL_CONST))
12308 warning (0, "%qs initialized and declared %<extern%>", name);
12309 }
12310 else
12311 {
12312 error ("%qs has both %<extern%> and initializer", name);
12313 return error_mark_node;
12314 }
12315 }
12316
12317 /* Record `register' declaration for warnings on &
12318 and in case doing stupid register allocation. */
12319
12320 if (storage_class == sc_register)
12321 {
12322 DECL_REGISTER (decl) = 1;
12323 /* Warn about register storage specifiers on PARM_DECLs. */
12324 if (TREE_CODE (decl) == PARM_DECL)
12325 {
12326 if (cxx_dialect >= cxx17)
12327 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
12328 "ISO C++17 does not allow %<register%> storage "
12329 "class specifier");
12330 else
12331 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
12332 "%<register%> storage class specifier used");
12333 }
12334 }
12335 else if (storage_class == sc_extern)
12336 DECL_THIS_EXTERN (decl) = 1;
12337 else if (storage_class == sc_static)
12338 DECL_THIS_STATIC (decl) = 1;
12339
12340 /* Set constexpr flag on vars (functions got it in grokfndecl). */
12341 if (constexpr_p && VAR_P (decl))
12342 DECL_DECLARED_CONSTEXPR_P (decl) = true;
12343
12344 /* Record constancy and volatility on the DECL itself . There's
12345 no need to do this when processing a template; we'll do this
12346 for the instantiated declaration based on the type of DECL. */
12347 if (!processing_template_decl)
12348 cp_apply_type_quals_to_decl (type_quals, decl);
12349
12350 return decl;
12351 }
12352 }
12353 \f
12354 /* Subroutine of start_function. Ensure that each of the parameter
12355 types (as listed in PARMS) is complete, as is required for a
12356 function definition. */
12357
12358 static void
12359 require_complete_types_for_parms (tree parms)
12360 {
12361 for (; parms; parms = DECL_CHAIN (parms))
12362 {
12363 if (dependent_type_p (TREE_TYPE (parms)))
12364 continue;
12365 if (!VOID_TYPE_P (TREE_TYPE (parms))
12366 && complete_type_or_else (TREE_TYPE (parms), parms))
12367 {
12368 relayout_decl (parms);
12369 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
12370
12371 maybe_warn_parm_abi (TREE_TYPE (parms),
12372 DECL_SOURCE_LOCATION (parms));
12373 }
12374 else
12375 /* grokparms or complete_type_or_else will have already issued
12376 an error. */
12377 TREE_TYPE (parms) = error_mark_node;
12378 }
12379 }
12380
12381 /* Returns nonzero if T is a local variable. */
12382
12383 int
12384 local_variable_p (const_tree t)
12385 {
12386 if ((VAR_P (t)
12387 /* A VAR_DECL with a context that is a _TYPE is a static data
12388 member. */
12389 && !TYPE_P (CP_DECL_CONTEXT (t))
12390 /* Any other non-local variable must be at namespace scope. */
12391 && !DECL_NAMESPACE_SCOPE_P (t))
12392 || (TREE_CODE (t) == PARM_DECL))
12393 return 1;
12394
12395 return 0;
12396 }
12397
12398 /* Like local_variable_p, but suitable for use as a tree-walking
12399 function. */
12400
12401 static tree
12402 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
12403 void * /*data*/)
12404 {
12405 if (local_variable_p (*tp)
12406 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
12407 return *tp;
12408 else if (TYPE_P (*tp))
12409 *walk_subtrees = 0;
12410
12411 return NULL_TREE;
12412 }
12413
12414 /* Check that ARG, which is a default-argument expression for a
12415 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
12416 something goes wrong. DECL may also be a _TYPE node, rather than a
12417 DECL, if there is no DECL available. */
12418
12419 tree
12420 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
12421 {
12422 tree var;
12423 tree decl_type;
12424
12425 if (TREE_CODE (arg) == DEFAULT_ARG)
12426 /* We get a DEFAULT_ARG when looking at an in-class declaration
12427 with a default argument. Ignore the argument for now; we'll
12428 deal with it after the class is complete. */
12429 return arg;
12430
12431 if (TYPE_P (decl))
12432 {
12433 decl_type = decl;
12434 decl = NULL_TREE;
12435 }
12436 else
12437 decl_type = TREE_TYPE (decl);
12438
12439 if (arg == error_mark_node
12440 || decl == error_mark_node
12441 || TREE_TYPE (arg) == error_mark_node
12442 || decl_type == error_mark_node)
12443 /* Something already went wrong. There's no need to check
12444 further. */
12445 return error_mark_node;
12446
12447 /* [dcl.fct.default]
12448
12449 A default argument expression is implicitly converted to the
12450 parameter type. */
12451 ++cp_unevaluated_operand;
12452 perform_implicit_conversion_flags (decl_type, arg, complain,
12453 LOOKUP_IMPLICIT);
12454 --cp_unevaluated_operand;
12455
12456 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
12457 the call sites. */
12458 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
12459 && null_ptr_cst_p (arg))
12460 return nullptr_node;
12461
12462 /* [dcl.fct.default]
12463
12464 Local variables shall not be used in default argument
12465 expressions.
12466
12467 The keyword `this' shall not be used in a default argument of a
12468 member function. */
12469 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
12470 if (var)
12471 {
12472 if (complain & tf_warning_or_error)
12473 {
12474 if (DECL_NAME (var) == this_identifier)
12475 permerror (input_location, "default argument %qE uses %qD",
12476 arg, var);
12477 else
12478 error ("default argument %qE uses local variable %qD", arg, var);
12479 }
12480 return error_mark_node;
12481 }
12482
12483 /* All is well. */
12484 return arg;
12485 }
12486
12487 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
12488
12489 static tree
12490 type_is_deprecated (tree type)
12491 {
12492 enum tree_code code;
12493 if (TREE_DEPRECATED (type))
12494 return type;
12495 if (TYPE_NAME (type))
12496 {
12497 if (TREE_DEPRECATED (TYPE_NAME (type)))
12498 return type;
12499 else
12500 return NULL_TREE;
12501 }
12502
12503 /* Do warn about using typedefs to a deprecated class. */
12504 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
12505 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
12506
12507 code = TREE_CODE (type);
12508
12509 if (code == POINTER_TYPE || code == REFERENCE_TYPE
12510 || code == OFFSET_TYPE || code == FUNCTION_TYPE
12511 || code == METHOD_TYPE || code == ARRAY_TYPE)
12512 return type_is_deprecated (TREE_TYPE (type));
12513
12514 if (TYPE_PTRMEMFUNC_P (type))
12515 return type_is_deprecated
12516 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
12517
12518 return NULL_TREE;
12519 }
12520
12521 /* Decode the list of parameter types for a function type.
12522 Given the list of things declared inside the parens,
12523 return a list of types.
12524
12525 If this parameter does not end with an ellipsis, we append
12526 void_list_node.
12527
12528 *PARMS is set to the chain of PARM_DECLs created. */
12529
12530 tree
12531 grokparms (tree parmlist, tree *parms)
12532 {
12533 tree result = NULL_TREE;
12534 tree decls = NULL_TREE;
12535 tree parm;
12536 int any_error = 0;
12537
12538 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
12539 {
12540 tree type = NULL_TREE;
12541 tree init = TREE_PURPOSE (parm);
12542 tree decl = TREE_VALUE (parm);
12543
12544 if (parm == void_list_node)
12545 break;
12546
12547 if (! decl || TREE_TYPE (decl) == error_mark_node)
12548 continue;
12549
12550 type = TREE_TYPE (decl);
12551 if (VOID_TYPE_P (type))
12552 {
12553 if (same_type_p (type, void_type_node)
12554 && !init
12555 && !DECL_NAME (decl) && !result
12556 && TREE_CHAIN (parm) == void_list_node)
12557 /* DR 577: A parameter list consisting of a single
12558 unnamed parameter of non-dependent type 'void'. */
12559 break;
12560 else if (cv_qualified_p (type))
12561 error_at (DECL_SOURCE_LOCATION (decl),
12562 "invalid use of cv-qualified type %qT in "
12563 "parameter declaration", type);
12564 else
12565 error_at (DECL_SOURCE_LOCATION (decl),
12566 "invalid use of type %<void%> in parameter "
12567 "declaration");
12568 /* It's not a good idea to actually create parameters of
12569 type `void'; other parts of the compiler assume that a
12570 void type terminates the parameter list. */
12571 type = error_mark_node;
12572 TREE_TYPE (decl) = error_mark_node;
12573 }
12574
12575 if (type != error_mark_node)
12576 {
12577 if (deprecated_state != DEPRECATED_SUPPRESS)
12578 {
12579 tree deptype = type_is_deprecated (type);
12580 if (deptype)
12581 warn_deprecated_use (deptype, NULL_TREE);
12582 }
12583
12584 /* Top-level qualifiers on the parameters are
12585 ignored for function types. */
12586 type = cp_build_qualified_type (type, 0);
12587 if (TREE_CODE (type) == METHOD_TYPE)
12588 {
12589 error ("parameter %qD invalidly declared method type", decl);
12590 type = build_pointer_type (type);
12591 TREE_TYPE (decl) = type;
12592 }
12593 else if (abstract_virtuals_error (decl, type))
12594 any_error = 1; /* Seems like a good idea. */
12595 else if (cxx_dialect < cxx17 && POINTER_TYPE_P (type))
12596 {
12597 /* Before C++17 DR 393:
12598 [dcl.fct]/6, parameter types cannot contain pointers
12599 (references) to arrays of unknown bound. */
12600 tree t = TREE_TYPE (type);
12601 int ptr = TYPE_PTR_P (type);
12602
12603 while (1)
12604 {
12605 if (TYPE_PTR_P (t))
12606 ptr = 1;
12607 else if (TREE_CODE (t) != ARRAY_TYPE)
12608 break;
12609 else if (!TYPE_DOMAIN (t))
12610 break;
12611 t = TREE_TYPE (t);
12612 }
12613 if (TREE_CODE (t) == ARRAY_TYPE)
12614 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
12615 ptr
12616 ? G_("parameter %qD includes pointer to array of "
12617 "unknown bound %qT")
12618 : G_("parameter %qD includes reference to array of "
12619 "unknown bound %qT"),
12620 decl, t);
12621 }
12622
12623 if (any_error)
12624 init = NULL_TREE;
12625 else if (init && !processing_template_decl)
12626 init = check_default_argument (decl, init, tf_warning_or_error);
12627 }
12628
12629 DECL_CHAIN (decl) = decls;
12630 decls = decl;
12631 result = tree_cons (init, type, result);
12632 }
12633 decls = nreverse (decls);
12634 result = nreverse (result);
12635 if (parm)
12636 result = chainon (result, void_list_node);
12637 *parms = decls;
12638
12639 return result;
12640 }
12641
12642 \f
12643 /* D is a constructor or overloaded `operator='.
12644
12645 Let T be the class in which D is declared. Then, this function
12646 returns:
12647
12648 -1 if D's is an ill-formed constructor or copy assignment operator
12649 whose first parameter is of type `T'.
12650 0 if D is not a copy constructor or copy assignment
12651 operator.
12652 1 if D is a copy constructor or copy assignment operator whose
12653 first parameter is a reference to non-const qualified T.
12654 2 if D is a copy constructor or copy assignment operator whose
12655 first parameter is a reference to const qualified T.
12656
12657 This function can be used as a predicate. Positive values indicate
12658 a copy constructor and nonzero values indicate a copy assignment
12659 operator. */
12660
12661 int
12662 copy_fn_p (const_tree d)
12663 {
12664 tree args;
12665 tree arg_type;
12666 int result = 1;
12667
12668 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
12669
12670 if (TREE_CODE (d) == TEMPLATE_DECL
12671 || (DECL_TEMPLATE_INFO (d)
12672 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
12673 /* Instantiations of template member functions are never copy
12674 functions. Note that member functions of templated classes are
12675 represented as template functions internally, and we must
12676 accept those as copy functions. */
12677 return 0;
12678
12679 args = FUNCTION_FIRST_USER_PARMTYPE (d);
12680 if (!args)
12681 return 0;
12682
12683 arg_type = TREE_VALUE (args);
12684 if (arg_type == error_mark_node)
12685 return 0;
12686
12687 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
12688 {
12689 /* Pass by value copy assignment operator. */
12690 result = -1;
12691 }
12692 else if (TREE_CODE (arg_type) == REFERENCE_TYPE
12693 && !TYPE_REF_IS_RVALUE (arg_type)
12694 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
12695 {
12696 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
12697 result = 2;
12698 }
12699 else
12700 return 0;
12701
12702 args = TREE_CHAIN (args);
12703
12704 if (args && args != void_list_node && !TREE_PURPOSE (args))
12705 /* There are more non-optional args. */
12706 return 0;
12707
12708 return result;
12709 }
12710
12711 /* D is a constructor or overloaded `operator='.
12712
12713 Let T be the class in which D is declared. Then, this function
12714 returns true when D is a move constructor or move assignment
12715 operator, false otherwise. */
12716
12717 bool
12718 move_fn_p (const_tree d)
12719 {
12720 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
12721
12722 if (cxx_dialect == cxx98)
12723 /* There are no move constructors if we are in C++98 mode. */
12724 return false;
12725
12726 if (TREE_CODE (d) == TEMPLATE_DECL
12727 || (DECL_TEMPLATE_INFO (d)
12728 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
12729 /* Instantiations of template member functions are never move
12730 functions. Note that member functions of templated classes are
12731 represented as template functions internally, and we must
12732 accept those as move functions. */
12733 return 0;
12734
12735 return move_signature_fn_p (d);
12736 }
12737
12738 /* D is a constructor or overloaded `operator='.
12739
12740 Then, this function returns true when D has the same signature as a move
12741 constructor or move assignment operator (because either it is such a
12742 ctor/op= or it is a template specialization with the same signature),
12743 false otherwise. */
12744
12745 bool
12746 move_signature_fn_p (const_tree d)
12747 {
12748 tree args;
12749 tree arg_type;
12750 bool result = false;
12751
12752 args = FUNCTION_FIRST_USER_PARMTYPE (d);
12753 if (!args)
12754 return 0;
12755
12756 arg_type = TREE_VALUE (args);
12757 if (arg_type == error_mark_node)
12758 return 0;
12759
12760 if (TREE_CODE (arg_type) == REFERENCE_TYPE
12761 && TYPE_REF_IS_RVALUE (arg_type)
12762 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
12763 DECL_CONTEXT (d)))
12764 result = true;
12765
12766 args = TREE_CHAIN (args);
12767
12768 if (args && args != void_list_node && !TREE_PURPOSE (args))
12769 /* There are more non-optional args. */
12770 return false;
12771
12772 return result;
12773 }
12774
12775 /* Remember any special properties of member function DECL. */
12776
12777 void
12778 grok_special_member_properties (tree decl)
12779 {
12780 tree class_type;
12781
12782 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
12783 return;
12784
12785 class_type = DECL_CONTEXT (decl);
12786 if (IDENTIFIER_CTOR_P (DECL_NAME (decl)))
12787 {
12788 int ctor = copy_fn_p (decl);
12789
12790 if (!DECL_ARTIFICIAL (decl))
12791 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
12792
12793 if (ctor > 0)
12794 {
12795 /* [class.copy]
12796
12797 A non-template constructor for class X is a copy
12798 constructor if its first parameter is of type X&, const
12799 X&, volatile X& or const volatile X&, and either there
12800 are no other parameters or else all other parameters have
12801 default arguments. */
12802 TYPE_HAS_COPY_CTOR (class_type) = 1;
12803 if (user_provided_p (decl))
12804 TYPE_HAS_COMPLEX_COPY_CTOR (class_type) = 1;
12805 if (ctor > 1)
12806 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
12807 }
12808 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
12809 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
12810 else if (move_fn_p (decl) && user_provided_p (decl))
12811 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type) = 1;
12812 else if (is_list_ctor (decl))
12813 TYPE_HAS_LIST_CTOR (class_type) = 1;
12814
12815 if (DECL_DECLARED_CONSTEXPR_P (decl)
12816 && !ctor && !move_fn_p (decl))
12817 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
12818 }
12819 else if (DECL_NAME (decl) == cp_assignment_operator_id (NOP_EXPR))
12820 {
12821 /* [class.copy]
12822
12823 A non-template assignment operator for class X is a copy
12824 assignment operator if its parameter is of type X, X&, const
12825 X&, volatile X& or const volatile X&. */
12826
12827 int assop = copy_fn_p (decl);
12828
12829 if (assop)
12830 {
12831 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
12832 if (user_provided_p (decl))
12833 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type) = 1;
12834 if (assop != 1)
12835 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
12836 }
12837 else if (move_fn_p (decl) && user_provided_p (decl))
12838 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type) = 1;
12839 }
12840 else if (IDENTIFIER_CONV_OP_P (DECL_NAME (decl)))
12841 TYPE_HAS_CONVERSION (class_type) = true;
12842
12843 /* Destructors are handled in check_methods. */
12844 }
12845
12846 /* Check a constructor DECL has the correct form. Complains
12847 if the class has a constructor of the form X(X). */
12848
12849 bool
12850 grok_ctor_properties (const_tree ctype, const_tree decl)
12851 {
12852 int ctor_parm = copy_fn_p (decl);
12853
12854 if (ctor_parm < 0)
12855 {
12856 /* [class.copy]
12857
12858 A declaration of a constructor for a class X is ill-formed if
12859 its first parameter is of type (optionally cv-qualified) X
12860 and either there are no other parameters or else all other
12861 parameters have default arguments.
12862
12863 We *don't* complain about member template instantiations that
12864 have this form, though; they can occur as we try to decide
12865 what constructor to use during overload resolution. Since
12866 overload resolution will never prefer such a constructor to
12867 the non-template copy constructor (which is either explicitly
12868 or implicitly defined), there's no need to worry about their
12869 existence. Theoretically, they should never even be
12870 instantiated, but that's hard to forestall. */
12871 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
12872 ctype, ctype);
12873 return false;
12874 }
12875
12876 return true;
12877 }
12878
12879 /* An operator with this code is unary, but can also be binary. */
12880
12881 static bool
12882 ambi_op_p (enum tree_code code)
12883 {
12884 return (code == INDIRECT_REF
12885 || code == ADDR_EXPR
12886 || code == UNARY_PLUS_EXPR
12887 || code == NEGATE_EXPR
12888 || code == PREINCREMENT_EXPR
12889 || code == PREDECREMENT_EXPR);
12890 }
12891
12892 /* An operator with this name can only be unary. */
12893
12894 static bool
12895 unary_op_p (enum tree_code code)
12896 {
12897 return (code == TRUTH_NOT_EXPR
12898 || code == BIT_NOT_EXPR
12899 || code == COMPONENT_REF
12900 || code == TYPE_EXPR);
12901 }
12902
12903 /* DECL is a declaration for an overloaded operator. If COMPLAIN is true,
12904 errors are issued for invalid declarations. */
12905
12906 bool
12907 grok_op_properties (tree decl, bool complain)
12908 {
12909 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
12910 int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
12911 tree name = DECL_NAME (decl);
12912
12913 tree class_type = DECL_CONTEXT (decl);
12914 if (class_type && !CLASS_TYPE_P (class_type))
12915 class_type = NULL_TREE;
12916
12917 enum tree_code operator_code = ERROR_MARK;
12918 if (IDENTIFIER_CONV_OP_P (name))
12919 operator_code = TYPE_EXPR;
12920 else
12921 {
12922 /* It'd be nice to hang something else of the identifier to
12923 find CODE more directly. */
12924 bool assign_op = IDENTIFIER_ASSIGN_OP_P (name);
12925 const operator_name_info_t *oni
12926 = (assign_op ? assignment_operator_name_info : operator_name_info);
12927
12928 if (false)
12929 ;
12930 #define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, KIND) \
12931 else if (assign_op == (KIND == cik_assign_op) \
12932 && oni[int (CODE)].identifier == name) \
12933 operator_code = (CODE);
12934 #include "operators.def"
12935 #undef DEF_OPERATOR
12936 else
12937 gcc_unreachable ();
12938 }
12939 while (0);
12940 gcc_assert (operator_code != MAX_TREE_CODES);
12941 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
12942
12943 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR
12944 || operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
12945 {
12946 /* operator new and operator delete are quite special. */
12947 if (class_type)
12948 switch (operator_code)
12949 {
12950 case NEW_EXPR:
12951 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
12952 break;
12953
12954 case DELETE_EXPR:
12955 TYPE_GETS_DELETE (class_type) |= 1;
12956 break;
12957
12958 case VEC_NEW_EXPR:
12959 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
12960 break;
12961
12962 case VEC_DELETE_EXPR:
12963 TYPE_GETS_DELETE (class_type) |= 2;
12964 break;
12965
12966 default:
12967 gcc_unreachable ();
12968 }
12969
12970 /* [basic.std.dynamic.allocation]/1:
12971
12972 A program is ill-formed if an allocation function is declared
12973 in a namespace scope other than global scope or declared
12974 static in global scope.
12975
12976 The same also holds true for deallocation functions. */
12977 if (DECL_NAMESPACE_SCOPE_P (decl))
12978 {
12979 if (CP_DECL_CONTEXT (decl) != global_namespace)
12980 {
12981 error ("%qD may not be declared within a namespace", decl);
12982 return false;
12983 }
12984
12985 if (!TREE_PUBLIC (decl))
12986 {
12987 error ("%qD may not be declared as static", decl);
12988 return false;
12989 }
12990 }
12991
12992 if (operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
12993 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
12994 else
12995 {
12996 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
12997 DECL_IS_OPERATOR_NEW (decl) = 1;
12998 }
12999
13000 return true;
13001 }
13002
13003 /* An operator function must either be a non-static member function
13004 or have at least one parameter of a class, a reference to a class,
13005 an enumeration, or a reference to an enumeration. 13.4.0.6 */
13006 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
13007 {
13008 if (operator_code == TYPE_EXPR
13009 || operator_code == CALL_EXPR
13010 || operator_code == COMPONENT_REF
13011 || operator_code == ARRAY_REF
13012 || operator_code == NOP_EXPR)
13013 {
13014 error ("%qD must be a nonstatic member function", decl);
13015 return false;
13016 }
13017
13018 if (DECL_STATIC_FUNCTION_P (decl))
13019 {
13020 error ("%qD must be either a non-static member "
13021 "function or a non-member function", decl);
13022 return false;
13023 }
13024
13025 for (tree arg = argtypes; ; arg = TREE_CHAIN (arg))
13026 {
13027 if (!arg || arg == void_list_node)
13028 {
13029 if (complain)
13030 error ("%qD must have an argument of class or "
13031 "enumerated type", decl);
13032 return false;
13033 }
13034
13035 tree type = non_reference (TREE_VALUE (arg));
13036 if (type == error_mark_node)
13037 return false;
13038
13039 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
13040 because these checks are performed even on template
13041 functions. */
13042 if (MAYBE_CLASS_TYPE_P (type)
13043 || TREE_CODE (type) == ENUMERAL_TYPE)
13044 break;
13045 }
13046 }
13047
13048 /* There are no restrictions on the arguments to an overloaded
13049 "operator ()". */
13050 if (operator_code == CALL_EXPR)
13051 return true;
13052
13053 if (operator_code == COND_EXPR)
13054 {
13055 /* 13.4.0.3 */
13056 error ("ISO C++ prohibits overloading operator ?:");
13057 return false;
13058 }
13059
13060 /* Count the number of arguments and check for ellipsis. */
13061 int arity = 0;
13062 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
13063 {
13064 if (!arg)
13065 {
13066 /* Variadic. */
13067 error ("%qD must not have variable number of arguments", decl);
13068 return false;
13069 }
13070 ++arity;
13071 }
13072
13073 /* Verify correct number of arguments. */
13074 if (ambi_op_p (operator_code))
13075 {
13076 if (arity == 1)
13077 /* We pick the one-argument operator codes by default, so
13078 we don't have to change anything. */
13079 ;
13080 else if (arity == 2)
13081 {
13082 /* If we thought this was a unary operator, we now know
13083 it to be a binary operator. */
13084 switch (operator_code)
13085 {
13086 case INDIRECT_REF:
13087 operator_code = MULT_EXPR;
13088 break;
13089
13090 case ADDR_EXPR:
13091 operator_code = BIT_AND_EXPR;
13092 break;
13093
13094 case UNARY_PLUS_EXPR:
13095 operator_code = PLUS_EXPR;
13096 break;
13097
13098 case NEGATE_EXPR:
13099 operator_code = MINUS_EXPR;
13100 break;
13101
13102 case PREINCREMENT_EXPR:
13103 operator_code = POSTINCREMENT_EXPR;
13104 break;
13105
13106 case PREDECREMENT_EXPR:
13107 operator_code = POSTDECREMENT_EXPR;
13108 break;
13109
13110 default:
13111 gcc_unreachable ();
13112 }
13113
13114 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
13115
13116 if ((operator_code == POSTINCREMENT_EXPR
13117 || operator_code == POSTDECREMENT_EXPR)
13118 && ! processing_template_decl
13119 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)), integer_type_node))
13120 {
13121 error (methodp
13122 ? G_("postfix %qD must have %<int%> as its argument")
13123 : G_("postfix %qD must have %<int%> as its second argument"),
13124 decl);
13125 return false;
13126 }
13127 }
13128 else
13129 {
13130 error (methodp
13131 ? G_("%qD must have either zero or one argument")
13132 : G_("%qD must have either one or two arguments"), decl);
13133 return false;
13134 }
13135 }
13136 else if (unary_op_p (operator_code))
13137 {
13138 if (arity != 1)
13139 {
13140 error (methodp
13141 ? G_("%qD must have no arguments")
13142 : G_("%qD must have exactly one argument"), decl);
13143 return false;
13144 }
13145 }
13146 else
13147 {
13148 if (arity != 2)
13149 {
13150 error (methodp
13151 ? G_("%qD must have exactly one argument")
13152 : G_("%qD must have exactly two arguments"), decl);
13153 return false;
13154 }
13155 }
13156
13157 /* There can be no default arguments. */
13158 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
13159 if (TREE_PURPOSE (arg))
13160 {
13161 TREE_PURPOSE (arg) = NULL_TREE;
13162 if (operator_code == POSTINCREMENT_EXPR
13163 || operator_code == POSTDECREMENT_EXPR)
13164 pedwarn (input_location, OPT_Wpedantic,
13165 "%qD cannot have default arguments", decl);
13166 else
13167 {
13168 error ("%qD cannot have default arguments", decl);
13169 return false;
13170 }
13171 }
13172
13173 /* At this point the declaration is well-formed. It may not be
13174 sensible though. */
13175
13176 /* Check member function warnings only on the in-class declaration.
13177 There's no point warning on an out-of-class definition. */
13178 if (class_type && class_type != current_class_type)
13179 return true;
13180
13181 /* Warn about conversion operators that will never be used. */
13182 if (IDENTIFIER_CONV_OP_P (name)
13183 && ! DECL_TEMPLATE_INFO (decl)
13184 && warn_conversion)
13185 {
13186 tree t = TREE_TYPE (name);
13187 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
13188
13189 if (ref)
13190 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
13191
13192 if (VOID_TYPE_P (t))
13193 warning (OPT_Wconversion,
13194 ref
13195 ? G_("conversion to a reference to void "
13196 "will never use a type conversion operator")
13197 : G_("conversion to void "
13198 "will never use a type conversion operator"));
13199 else if (class_type)
13200 {
13201 if (t == class_type)
13202 warning (OPT_Wconversion,
13203 ref
13204 ? G_("conversion to a reference to the same type "
13205 "will never use a type conversion operator")
13206 : G_("conversion to the same type "
13207 "will never use a type conversion operator"));
13208 /* Don't force t to be complete here. */
13209 else if (MAYBE_CLASS_TYPE_P (t)
13210 && COMPLETE_TYPE_P (t)
13211 && DERIVED_FROM_P (t, class_type))
13212 warning (OPT_Wconversion,
13213 ref
13214 ? G_("conversion to a reference to a base class "
13215 "will never use a type conversion operator")
13216 : G_("conversion to a base class "
13217 "will never use a type conversion operator"));
13218 }
13219 }
13220
13221 if (!warn_ecpp)
13222 return true;
13223
13224 /* Effective C++ rules below. */
13225
13226 /* More Effective C++ rule 7. */
13227 if (operator_code == TRUTH_ANDIF_EXPR
13228 || operator_code == TRUTH_ORIF_EXPR
13229 || operator_code == COMPOUND_EXPR)
13230 warning (OPT_Weffc__,
13231 "user-defined %qD always evaluates both arguments", decl);
13232
13233 /* More Effective C++ rule 6. */
13234 if (operator_code == POSTINCREMENT_EXPR
13235 || operator_code == POSTDECREMENT_EXPR
13236 || operator_code == PREINCREMENT_EXPR
13237 || operator_code == PREDECREMENT_EXPR)
13238 {
13239 tree arg = TREE_VALUE (argtypes);
13240 tree ret = TREE_TYPE (TREE_TYPE (decl));
13241 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
13242 arg = TREE_TYPE (arg);
13243 arg = TYPE_MAIN_VARIANT (arg);
13244
13245 if (operator_code == PREINCREMENT_EXPR
13246 || operator_code == PREDECREMENT_EXPR)
13247 {
13248 if (TREE_CODE (ret) != REFERENCE_TYPE
13249 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)), arg))
13250 warning (OPT_Weffc__, "prefix %qD should return %qT", decl,
13251 build_reference_type (arg));
13252 }
13253 else
13254 {
13255 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
13256 warning (OPT_Weffc__, "postfix %qD should return %qT", decl, arg);
13257 }
13258 }
13259
13260 /* Effective C++ rule 23. */
13261 if (!DECL_ASSIGNMENT_OPERATOR_P (decl)
13262 && (operator_code == PLUS_EXPR
13263 || operator_code == MINUS_EXPR
13264 || operator_code == TRUNC_DIV_EXPR
13265 || operator_code == MULT_EXPR
13266 || operator_code == TRUNC_MOD_EXPR)
13267 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
13268 warning (OPT_Weffc__, "%qD should return by value", decl);
13269
13270 return true;
13271 }
13272 \f
13273 /* Return a string giving the keyword associate with CODE. */
13274
13275 static const char *
13276 tag_name (enum tag_types code)
13277 {
13278 switch (code)
13279 {
13280 case record_type:
13281 return "struct";
13282 case class_type:
13283 return "class";
13284 case union_type:
13285 return "union";
13286 case enum_type:
13287 return "enum";
13288 case typename_type:
13289 return "typename";
13290 default:
13291 gcc_unreachable ();
13292 }
13293 }
13294
13295 /* Name lookup in an elaborated-type-specifier (after the keyword
13296 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
13297 elaborated-type-specifier is invalid, issue a diagnostic and return
13298 error_mark_node; otherwise, return the *_TYPE to which it referred.
13299 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
13300
13301 tree
13302 check_elaborated_type_specifier (enum tag_types tag_code,
13303 tree decl,
13304 bool allow_template_p)
13305 {
13306 tree type;
13307
13308 /* In the case of:
13309
13310 struct S { struct S *p; };
13311
13312 name lookup will find the TYPE_DECL for the implicit "S::S"
13313 typedef. Adjust for that here. */
13314 if (DECL_SELF_REFERENCE_P (decl))
13315 decl = TYPE_NAME (TREE_TYPE (decl));
13316
13317 type = TREE_TYPE (decl);
13318
13319 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
13320 is false for this case as well. */
13321 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
13322 {
13323 error ("using template type parameter %qT after %qs",
13324 type, tag_name (tag_code));
13325 return error_mark_node;
13326 }
13327 /* Accept template template parameters. */
13328 else if (allow_template_p
13329 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
13330 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
13331 ;
13332 /* [dcl.type.elab]
13333
13334 If the identifier resolves to a typedef-name or the
13335 simple-template-id resolves to an alias template
13336 specialization, the elaborated-type-specifier is ill-formed.
13337
13338 In other words, the only legitimate declaration to use in the
13339 elaborated type specifier is the implicit typedef created when
13340 the type is declared. */
13341 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
13342 && !DECL_SELF_REFERENCE_P (decl)
13343 && tag_code != typename_type)
13344 {
13345 if (alias_template_specialization_p (type))
13346 error ("using alias template specialization %qT after %qs",
13347 type, tag_name (tag_code));
13348 else
13349 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
13350 inform (DECL_SOURCE_LOCATION (decl),
13351 "%qD has a previous declaration here", decl);
13352 return error_mark_node;
13353 }
13354 else if (TREE_CODE (type) != RECORD_TYPE
13355 && TREE_CODE (type) != UNION_TYPE
13356 && tag_code != enum_type
13357 && tag_code != typename_type)
13358 {
13359 error ("%qT referred to as %qs", type, tag_name (tag_code));
13360 inform (location_of (type), "%qT has a previous declaration here", type);
13361 return error_mark_node;
13362 }
13363 else if (TREE_CODE (type) != ENUMERAL_TYPE
13364 && tag_code == enum_type)
13365 {
13366 error ("%qT referred to as enum", type);
13367 inform (location_of (type), "%qT has a previous declaration here", type);
13368 return error_mark_node;
13369 }
13370 else if (!allow_template_p
13371 && TREE_CODE (type) == RECORD_TYPE
13372 && CLASSTYPE_IS_TEMPLATE (type))
13373 {
13374 /* If a class template appears as elaborated type specifier
13375 without a template header such as:
13376
13377 template <class T> class C {};
13378 void f(class C); // No template header here
13379
13380 then the required template argument is missing. */
13381 error ("template argument required for %<%s %T%>",
13382 tag_name (tag_code),
13383 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
13384 return error_mark_node;
13385 }
13386
13387 return type;
13388 }
13389
13390 /* Lookup NAME in elaborate type specifier in scope according to
13391 SCOPE and issue diagnostics if necessary.
13392 Return *_TYPE node upon success, NULL_TREE when the NAME is not
13393 found, and ERROR_MARK_NODE for type error. */
13394
13395 static tree
13396 lookup_and_check_tag (enum tag_types tag_code, tree name,
13397 tag_scope scope, bool template_header_p)
13398 {
13399 tree t;
13400 tree decl;
13401 if (scope == ts_global)
13402 {
13403 /* First try ordinary name lookup, ignoring hidden class name
13404 injected via friend declaration. */
13405 decl = lookup_name_prefer_type (name, 2);
13406 decl = strip_using_decl (decl);
13407 /* If that fails, the name will be placed in the smallest
13408 non-class, non-function-prototype scope according to 3.3.1/5.
13409 We may already have a hidden name declared as friend in this
13410 scope. So lookup again but not ignoring hidden names.
13411 If we find one, that name will be made visible rather than
13412 creating a new tag. */
13413 if (!decl)
13414 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
13415 }
13416 else
13417 decl = lookup_type_scope (name, scope);
13418
13419 if (decl
13420 && (DECL_CLASS_TEMPLATE_P (decl)
13421 /* If scope is ts_current we're defining a class, so ignore a
13422 template template parameter. */
13423 || (scope != ts_current
13424 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
13425 decl = DECL_TEMPLATE_RESULT (decl);
13426
13427 if (decl && TREE_CODE (decl) == TYPE_DECL)
13428 {
13429 /* Look for invalid nested type:
13430 class C {
13431 class C {};
13432 }; */
13433 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
13434 {
13435 error ("%qD has the same name as the class in which it is "
13436 "declared",
13437 decl);
13438 return error_mark_node;
13439 }
13440
13441 /* Two cases we need to consider when deciding if a class
13442 template is allowed as an elaborated type specifier:
13443 1. It is a self reference to its own class.
13444 2. It comes with a template header.
13445
13446 For example:
13447
13448 template <class T> class C {
13449 class C *c1; // DECL_SELF_REFERENCE_P is true
13450 class D;
13451 };
13452 template <class U> class C; // template_header_p is true
13453 template <class T> class C<T>::D {
13454 class C *c2; // DECL_SELF_REFERENCE_P is true
13455 }; */
13456
13457 t = check_elaborated_type_specifier (tag_code,
13458 decl,
13459 template_header_p
13460 | DECL_SELF_REFERENCE_P (decl));
13461 if (template_header_p && t && CLASS_TYPE_P (t)
13462 && (!CLASSTYPE_TEMPLATE_INFO (t)
13463 || (!PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))))
13464 {
13465 error ("%qT is not a template", t);
13466 inform (location_of (t), "previous declaration here");
13467 if (TYPE_CLASS_SCOPE_P (t)
13468 && CLASSTYPE_TEMPLATE_INFO (TYPE_CONTEXT (t)))
13469 inform (input_location,
13470 "perhaps you want to explicitly add %<%T::%>",
13471 TYPE_CONTEXT (t));
13472 t = error_mark_node;
13473 }
13474
13475 return t;
13476 }
13477 else if (decl && TREE_CODE (decl) == TREE_LIST)
13478 {
13479 error ("reference to %qD is ambiguous", name);
13480 print_candidates (decl);
13481 return error_mark_node;
13482 }
13483 else
13484 return NULL_TREE;
13485 }
13486
13487 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
13488 Define the tag as a forward-reference if it is not defined.
13489
13490 If a declaration is given, process it here, and report an error if
13491 multiple declarations are not identical.
13492
13493 SCOPE is TS_CURRENT when this is also a definition. Only look in
13494 the current frame for the name (since C++ allows new names in any
13495 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
13496 declaration. Only look beginning from the current scope outward up
13497 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
13498
13499 TEMPLATE_HEADER_P is true when this declaration is preceded by
13500 a set of template parameters. */
13501
13502 static tree
13503 xref_tag_1 (enum tag_types tag_code, tree name,
13504 tag_scope scope, bool template_header_p)
13505 {
13506 enum tree_code code;
13507 tree context = NULL_TREE;
13508
13509 gcc_assert (identifier_p (name));
13510
13511 switch (tag_code)
13512 {
13513 case record_type:
13514 case class_type:
13515 code = RECORD_TYPE;
13516 break;
13517 case union_type:
13518 code = UNION_TYPE;
13519 break;
13520 case enum_type:
13521 code = ENUMERAL_TYPE;
13522 break;
13523 default:
13524 gcc_unreachable ();
13525 }
13526
13527 /* In case of anonymous name, xref_tag is only called to
13528 make type node and push name. Name lookup is not required. */
13529 tree t = NULL_TREE;
13530 if (scope != ts_lambda && !anon_aggrname_p (name))
13531 t = lookup_and_check_tag (tag_code, name, scope, template_header_p);
13532
13533 if (t == error_mark_node)
13534 return error_mark_node;
13535
13536 if (scope != ts_current && t && current_class_type
13537 && template_class_depth (current_class_type)
13538 && template_header_p)
13539 {
13540 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
13541 return t;
13542
13543 /* Since SCOPE is not TS_CURRENT, we are not looking at a
13544 definition of this tag. Since, in addition, we are currently
13545 processing a (member) template declaration of a template
13546 class, we must be very careful; consider:
13547
13548 template <class X>
13549 struct S1
13550
13551 template <class U>
13552 struct S2
13553 { template <class V>
13554 friend struct S1; };
13555
13556 Here, the S2::S1 declaration should not be confused with the
13557 outer declaration. In particular, the inner version should
13558 have a template parameter of level 2, not level 1. This
13559 would be particularly important if the member declaration
13560 were instead:
13561
13562 template <class V = U> friend struct S1;
13563
13564 say, when we should tsubst into `U' when instantiating
13565 S2. On the other hand, when presented with:
13566
13567 template <class T>
13568 struct S1 {
13569 template <class U>
13570 struct S2 {};
13571 template <class U>
13572 friend struct S2;
13573 };
13574
13575 we must find the inner binding eventually. We
13576 accomplish this by making sure that the new type we
13577 create to represent this declaration has the right
13578 TYPE_CONTEXT. */
13579 context = TYPE_CONTEXT (t);
13580 t = NULL_TREE;
13581 }
13582
13583 if (! t)
13584 {
13585 /* If no such tag is yet defined, create a forward-reference node
13586 and record it as the "definition".
13587 When a real declaration of this type is found,
13588 the forward-reference will be altered into a real type. */
13589 if (code == ENUMERAL_TYPE)
13590 {
13591 error ("use of enum %q#D without previous declaration", name);
13592 return error_mark_node;
13593 }
13594 else
13595 {
13596 t = make_class_type (code);
13597 TYPE_CONTEXT (t) = context;
13598 if (scope == ts_lambda)
13599 /* Mark it as a lambda type. */
13600 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
13601 t = pushtag (name, t, scope);
13602 }
13603 }
13604 else
13605 {
13606 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
13607 {
13608 /* Check that we aren't trying to overload a class with different
13609 constraints. */
13610 tree constr = NULL_TREE;
13611 if (current_template_parms)
13612 {
13613 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
13614 constr = build_constraints (reqs, NULL_TREE);
13615 }
13616 if (!redeclare_class_template (t, current_template_parms, constr))
13617 return error_mark_node;
13618 }
13619 else if (!processing_template_decl
13620 && CLASS_TYPE_P (t)
13621 && CLASSTYPE_IS_TEMPLATE (t))
13622 {
13623 error ("redeclaration of %qT as a non-template", t);
13624 inform (location_of (t), "previous declaration %qD", t);
13625 return error_mark_node;
13626 }
13627
13628 /* Make injected friend class visible. */
13629 if (scope != ts_within_enclosing_non_class && TYPE_HIDDEN_P (t))
13630 {
13631 tree decl = TYPE_NAME (t);
13632
13633 DECL_ANTICIPATED (decl) = false;
13634 DECL_FRIEND_P (decl) = false;
13635
13636 if (TYPE_TEMPLATE_INFO (t))
13637 {
13638 tree tmpl = TYPE_TI_TEMPLATE (t);
13639 DECL_ANTICIPATED (tmpl) = false;
13640 DECL_FRIEND_P (tmpl) = false;
13641 }
13642 }
13643 }
13644
13645 return t;
13646 }
13647
13648 /* Wrapper for xref_tag_1. */
13649
13650 tree
13651 xref_tag (enum tag_types tag_code, tree name,
13652 tag_scope scope, bool template_header_p)
13653 {
13654 tree ret;
13655 bool subtime;
13656 subtime = timevar_cond_start (TV_NAME_LOOKUP);
13657 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
13658 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
13659 return ret;
13660 }
13661
13662
13663 tree
13664 xref_tag_from_type (tree old, tree id, tag_scope scope)
13665 {
13666 enum tag_types tag_kind;
13667
13668 if (TREE_CODE (old) == RECORD_TYPE)
13669 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
13670 else
13671 tag_kind = union_type;
13672
13673 if (id == NULL_TREE)
13674 id = TYPE_IDENTIFIER (old);
13675
13676 return xref_tag (tag_kind, id, scope, false);
13677 }
13678
13679 /* Create the binfo hierarchy for REF with (possibly NULL) base list
13680 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
13681 access_* node, and the TREE_VALUE is the type of the base-class.
13682 Non-NULL TREE_TYPE indicates virtual inheritance. */
13683
13684 void
13685 xref_basetypes (tree ref, tree base_list)
13686 {
13687 tree *basep;
13688 tree binfo, base_binfo;
13689 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
13690 unsigned max_bases = 0; /* Maximum direct bases. */
13691 unsigned max_dvbases = 0; /* Maximum direct virtual bases. */
13692 int i;
13693 tree default_access;
13694 tree igo_prev; /* Track Inheritance Graph Order. */
13695
13696 if (ref == error_mark_node)
13697 return;
13698
13699 /* The base of a derived class is private by default, all others are
13700 public. */
13701 default_access = (TREE_CODE (ref) == RECORD_TYPE
13702 && CLASSTYPE_DECLARED_CLASS (ref)
13703 ? access_private_node : access_public_node);
13704
13705 /* First, make sure that any templates in base-classes are
13706 instantiated. This ensures that if we call ourselves recursively
13707 we do not get confused about which classes are marked and which
13708 are not. */
13709 basep = &base_list;
13710 while (*basep)
13711 {
13712 tree basetype = TREE_VALUE (*basep);
13713
13714 /* The dependent_type_p call below should really be dependent_scope_p
13715 so that we give a hard error about using an incomplete type as a
13716 base, but we allow it with a pedwarn for backward
13717 compatibility. */
13718 if (processing_template_decl
13719 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
13720 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
13721 if (!dependent_type_p (basetype)
13722 && !complete_type_or_else (basetype, NULL))
13723 /* An incomplete type. Remove it from the list. */
13724 *basep = TREE_CHAIN (*basep);
13725 else
13726 {
13727 max_bases++;
13728 if (TREE_TYPE (*basep))
13729 max_dvbases++;
13730 if (CLASS_TYPE_P (basetype))
13731 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
13732 basep = &TREE_CHAIN (*basep);
13733 }
13734 }
13735 max_vbases += max_dvbases;
13736
13737 TYPE_MARKED_P (ref) = 1;
13738
13739 /* The binfo slot should be empty, unless this is an (ill-formed)
13740 redefinition. */
13741 gcc_assert (!TYPE_BINFO (ref) || TYPE_SIZE (ref));
13742
13743 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
13744
13745 binfo = make_tree_binfo (max_bases);
13746
13747 TYPE_BINFO (ref) = binfo;
13748 BINFO_OFFSET (binfo) = size_zero_node;
13749 BINFO_TYPE (binfo) = ref;
13750
13751 /* Apply base-class info set up to the variants of this type. */
13752 fixup_type_variants (ref);
13753
13754 if (max_bases)
13755 {
13756 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
13757 /* A C++98 POD cannot have base classes. */
13758 CLASSTYPE_NON_LAYOUT_POD_P (ref) = true;
13759
13760 if (TREE_CODE (ref) == UNION_TYPE)
13761 error ("derived union %qT invalid", ref);
13762 }
13763
13764 if (max_bases > 1)
13765 warning (OPT_Wmultiple_inheritance,
13766 "%qT defined with multiple direct bases", ref);
13767
13768 if (max_vbases)
13769 {
13770 /* An aggregate can't have virtual base classes. */
13771 CLASSTYPE_NON_AGGREGATE (ref) = true;
13772
13773 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
13774
13775 if (max_dvbases)
13776 warning (OPT_Wvirtual_inheritance,
13777 "%qT defined with direct virtual base", ref);
13778 }
13779
13780 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
13781 {
13782 tree access = TREE_PURPOSE (base_list);
13783 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
13784 tree basetype = TREE_VALUE (base_list);
13785
13786 if (access == access_default_node)
13787 access = default_access;
13788
13789 /* Before C++17, an aggregate cannot have base classes. In C++17, an
13790 aggregate can't have virtual, private, or protected base classes. */
13791 if (cxx_dialect < cxx17
13792 || access != access_public_node
13793 || via_virtual)
13794 CLASSTYPE_NON_AGGREGATE (ref) = true;
13795
13796 if (PACK_EXPANSION_P (basetype))
13797 basetype = PACK_EXPANSION_PATTERN (basetype);
13798 if (TREE_CODE (basetype) == TYPE_DECL)
13799 basetype = TREE_TYPE (basetype);
13800 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
13801 {
13802 error ("base type %qT fails to be a struct or class type",
13803 basetype);
13804 goto dropped_base;
13805 }
13806
13807 base_binfo = NULL_TREE;
13808 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
13809 {
13810 base_binfo = TYPE_BINFO (basetype);
13811 /* The original basetype could have been a typedef'd type. */
13812 basetype = BINFO_TYPE (base_binfo);
13813
13814 /* Inherit flags from the base. */
13815 TYPE_HAS_NEW_OPERATOR (ref)
13816 |= TYPE_HAS_NEW_OPERATOR (basetype);
13817 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
13818 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
13819 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
13820 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
13821 CLASSTYPE_DIAMOND_SHAPED_P (ref)
13822 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
13823 CLASSTYPE_REPEATED_BASE_P (ref)
13824 |= CLASSTYPE_REPEATED_BASE_P (basetype);
13825 }
13826
13827 /* We must do this test after we've seen through a typedef
13828 type. */
13829 if (TYPE_MARKED_P (basetype))
13830 {
13831 if (basetype == ref)
13832 error ("recursive type %qT undefined", basetype);
13833 else
13834 error ("duplicate base type %qT invalid", basetype);
13835 goto dropped_base;
13836 }
13837
13838 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
13839 /* Regenerate the pack expansion for the bases. */
13840 basetype = make_pack_expansion (basetype);
13841
13842 TYPE_MARKED_P (basetype) = 1;
13843
13844 base_binfo = copy_binfo (base_binfo, basetype, ref,
13845 &igo_prev, via_virtual);
13846 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
13847 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
13848
13849 BINFO_BASE_APPEND (binfo, base_binfo);
13850 BINFO_BASE_ACCESS_APPEND (binfo, access);
13851 continue;
13852
13853 dropped_base:
13854 /* Update max_vbases to reflect the reality that we are dropping
13855 this base: if it reaches zero we want to undo the vec_alloc
13856 above to avoid inconsistencies during error-recovery: eg, in
13857 build_special_member_call, CLASSTYPE_VBASECLASSES non null
13858 and vtt null (c++/27952). */
13859 if (via_virtual)
13860 max_vbases--;
13861 if (CLASS_TYPE_P (basetype))
13862 max_vbases
13863 -= vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
13864 }
13865
13866 if (CLASSTYPE_VBASECLASSES (ref)
13867 && max_vbases == 0)
13868 vec_free (CLASSTYPE_VBASECLASSES (ref));
13869
13870 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
13871 /* If we didn't get max_vbases vbases, we must have shared at
13872 least one of them, and are therefore diamond shaped. */
13873 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
13874
13875 /* Unmark all the types. */
13876 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
13877 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
13878 TYPE_MARKED_P (ref) = 0;
13879
13880 /* Now see if we have a repeated base type. */
13881 if (!CLASSTYPE_REPEATED_BASE_P (ref))
13882 {
13883 for (base_binfo = binfo; base_binfo;
13884 base_binfo = TREE_CHAIN (base_binfo))
13885 {
13886 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
13887 {
13888 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
13889 break;
13890 }
13891 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
13892 }
13893 for (base_binfo = binfo; base_binfo;
13894 base_binfo = TREE_CHAIN (base_binfo))
13895 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
13896 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
13897 else
13898 break;
13899 }
13900 }
13901
13902 \f
13903 /* Copies the enum-related properties from type SRC to type DST.
13904 Used with the underlying type of an enum and the enum itself. */
13905 static void
13906 copy_type_enum (tree dst, tree src)
13907 {
13908 tree t;
13909 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
13910 {
13911 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
13912 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
13913 TYPE_SIZE (t) = TYPE_SIZE (src);
13914 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
13915 SET_TYPE_MODE (dst, TYPE_MODE (src));
13916 TYPE_PRECISION (t) = TYPE_PRECISION (src);
13917 unsigned valign = TYPE_ALIGN (src);
13918 if (TYPE_USER_ALIGN (t))
13919 valign = MAX (valign, TYPE_ALIGN (t));
13920 else
13921 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
13922 SET_TYPE_ALIGN (t, valign);
13923 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
13924 }
13925 }
13926
13927 /* Begin compiling the definition of an enumeration type.
13928 NAME is its name,
13929
13930 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
13931
13932 UNDERLYING_TYPE is the type that will be used as the storage for
13933 the enumeration type. This should be NULL_TREE if no storage type
13934 was specified.
13935
13936 ATTRIBUTES are any attributes specified after the enum-key.
13937
13938 SCOPED_ENUM_P is true if this is a scoped enumeration type.
13939
13940 if IS_NEW is not NULL, gets TRUE iff a new type is created.
13941
13942 Returns the type object, as yet incomplete.
13943 Also records info about it so that build_enumerator
13944 may be used to declare the individual values as they are read. */
13945
13946 tree
13947 start_enum (tree name, tree enumtype, tree underlying_type,
13948 tree attributes, bool scoped_enum_p, bool *is_new)
13949 {
13950 tree prevtype = NULL_TREE;
13951 gcc_assert (identifier_p (name));
13952
13953 if (is_new)
13954 *is_new = false;
13955 /* [C++0x dcl.enum]p5:
13956
13957 If not explicitly specified, the underlying type of a scoped
13958 enumeration type is int. */
13959 if (!underlying_type && scoped_enum_p)
13960 underlying_type = integer_type_node;
13961
13962 if (underlying_type)
13963 underlying_type = cv_unqualified (underlying_type);
13964
13965 /* If this is the real definition for a previous forward reference,
13966 fill in the contents in the same object that used to be the
13967 forward reference. */
13968 if (!enumtype)
13969 enumtype = lookup_and_check_tag (enum_type, name,
13970 /*tag_scope=*/ts_current,
13971 /*template_header_p=*/false);
13972
13973 /* In case of a template_decl, the only check that should be deferred
13974 to instantiation time is the comparison of underlying types. */
13975 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
13976 {
13977 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
13978 {
13979 error_at (input_location, "scoped/unscoped mismatch "
13980 "in enum %q#T", enumtype);
13981 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13982 "previous definition here");
13983 enumtype = error_mark_node;
13984 }
13985 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
13986 {
13987 error_at (input_location, "underlying type mismatch "
13988 "in enum %q#T", enumtype);
13989 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13990 "previous definition here");
13991 enumtype = error_mark_node;
13992 }
13993 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
13994 && !dependent_type_p (underlying_type)
13995 && !dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))
13996 && !same_type_p (underlying_type,
13997 ENUM_UNDERLYING_TYPE (enumtype)))
13998 {
13999 error_at (input_location, "different underlying type "
14000 "in enum %q#T", enumtype);
14001 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14002 "previous definition here");
14003 underlying_type = NULL_TREE;
14004 }
14005 }
14006
14007 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
14008 || processing_template_decl)
14009 {
14010 /* In case of error, make a dummy enum to allow parsing to
14011 continue. */
14012 if (enumtype == error_mark_node)
14013 {
14014 name = make_anon_name ();
14015 enumtype = NULL_TREE;
14016 }
14017
14018 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
14019 of an opaque enum, or an opaque enum of an already defined
14020 enumeration (C++0x only).
14021 In any other case, it'll be NULL_TREE. */
14022 if (!enumtype)
14023 {
14024 if (is_new)
14025 *is_new = true;
14026 }
14027 prevtype = enumtype;
14028
14029 /* Do not push the decl more than once, unless we need to
14030 compare underlying types at instantiation time */
14031 if (!enumtype
14032 || TREE_CODE (enumtype) != ENUMERAL_TYPE
14033 || (underlying_type
14034 && dependent_type_p (underlying_type))
14035 || (ENUM_UNDERLYING_TYPE (enumtype)
14036 && dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))))
14037 {
14038 enumtype = cxx_make_type (ENUMERAL_TYPE);
14039 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
14040
14041 /* std::byte aliases anything. */
14042 if (enumtype != error_mark_node
14043 && TYPE_CONTEXT (enumtype) == std_node
14044 && !strcmp ("byte", TYPE_NAME_STRING (enumtype)))
14045 TYPE_ALIAS_SET (enumtype) = 0;
14046 }
14047 else
14048 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
14049 false);
14050
14051 if (enumtype == error_mark_node)
14052 return error_mark_node;
14053
14054 /* The enum is considered opaque until the opening '{' of the
14055 enumerator list. */
14056 SET_OPAQUE_ENUM_P (enumtype, true);
14057 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
14058 }
14059
14060 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
14061
14062 cplus_decl_attributes (&enumtype, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
14063
14064 if (underlying_type)
14065 {
14066 if (ENUM_UNDERLYING_TYPE (enumtype))
14067 /* We already checked that it matches, don't change it to a different
14068 typedef variant. */;
14069 else if (CP_INTEGRAL_TYPE_P (underlying_type))
14070 {
14071 copy_type_enum (enumtype, underlying_type);
14072 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
14073 }
14074 else if (dependent_type_p (underlying_type))
14075 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
14076 else
14077 error ("underlying type %qT of %qT must be an integral type",
14078 underlying_type, enumtype);
14079 }
14080
14081 /* If into a template class, the returned enum is always the first
14082 declaration (opaque or not) seen. This way all the references to
14083 this type will be to the same declaration. The following ones are used
14084 only to check for definition errors. */
14085 if (prevtype && processing_template_decl)
14086 return prevtype;
14087 else
14088 return enumtype;
14089 }
14090
14091 /* After processing and defining all the values of an enumeration type,
14092 install their decls in the enumeration type.
14093 ENUMTYPE is the type object. */
14094
14095 void
14096 finish_enum_value_list (tree enumtype)
14097 {
14098 tree values;
14099 tree underlying_type;
14100 tree decl;
14101 tree value;
14102 tree minnode, maxnode;
14103 tree t;
14104
14105 bool fixed_underlying_type_p
14106 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
14107
14108 /* We built up the VALUES in reverse order. */
14109 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
14110
14111 /* For an enum defined in a template, just set the type of the values;
14112 all further processing is postponed until the template is
14113 instantiated. We need to set the type so that tsubst of a CONST_DECL
14114 works. */
14115 if (processing_template_decl)
14116 {
14117 for (values = TYPE_VALUES (enumtype);
14118 values;
14119 values = TREE_CHAIN (values))
14120 TREE_TYPE (TREE_VALUE (values)) = enumtype;
14121 return;
14122 }
14123
14124 /* Determine the minimum and maximum values of the enumerators. */
14125 if (TYPE_VALUES (enumtype))
14126 {
14127 minnode = maxnode = NULL_TREE;
14128
14129 for (values = TYPE_VALUES (enumtype);
14130 values;
14131 values = TREE_CHAIN (values))
14132 {
14133 decl = TREE_VALUE (values);
14134
14135 /* [dcl.enum]: Following the closing brace of an enum-specifier,
14136 each enumerator has the type of its enumeration. Prior to the
14137 closing brace, the type of each enumerator is the type of its
14138 initializing value. */
14139 TREE_TYPE (decl) = enumtype;
14140
14141 /* Update the minimum and maximum values, if appropriate. */
14142 value = DECL_INITIAL (decl);
14143 if (value == error_mark_node)
14144 value = integer_zero_node;
14145 /* Figure out what the minimum and maximum values of the
14146 enumerators are. */
14147 if (!minnode)
14148 minnode = maxnode = value;
14149 else if (tree_int_cst_lt (maxnode, value))
14150 maxnode = value;
14151 else if (tree_int_cst_lt (value, minnode))
14152 minnode = value;
14153 }
14154 }
14155 else
14156 /* [dcl.enum]
14157
14158 If the enumerator-list is empty, the underlying type is as if
14159 the enumeration had a single enumerator with value 0. */
14160 minnode = maxnode = integer_zero_node;
14161
14162 if (!fixed_underlying_type_p)
14163 {
14164 /* Compute the number of bits require to represent all values of the
14165 enumeration. We must do this before the type of MINNODE and
14166 MAXNODE are transformed, since tree_int_cst_min_precision relies
14167 on the TREE_TYPE of the value it is passed. */
14168 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
14169 int lowprec = tree_int_cst_min_precision (minnode, sgn);
14170 int highprec = tree_int_cst_min_precision (maxnode, sgn);
14171 int precision = MAX (lowprec, highprec);
14172 unsigned int itk;
14173 bool use_short_enum;
14174
14175 /* Determine the underlying type of the enumeration.
14176
14177 [dcl.enum]
14178
14179 The underlying type of an enumeration is an integral type that
14180 can represent all the enumerator values defined in the
14181 enumeration. It is implementation-defined which integral type is
14182 used as the underlying type for an enumeration except that the
14183 underlying type shall not be larger than int unless the value of
14184 an enumerator cannot fit in an int or unsigned int.
14185
14186 We use "int" or an "unsigned int" as the underlying type, even if
14187 a smaller integral type would work, unless the user has
14188 explicitly requested that we use the smallest possible type. The
14189 user can request that for all enumerations with a command line
14190 flag, or for just one enumeration with an attribute. */
14191
14192 use_short_enum = flag_short_enums
14193 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
14194
14195 /* If the precision of the type was specified with an attribute and it
14196 was too small, give an error. Otherwise, use it. */
14197 if (TYPE_PRECISION (enumtype))
14198 {
14199 if (precision > TYPE_PRECISION (enumtype))
14200 error ("specified mode too small for enumeral values");
14201 else
14202 {
14203 use_short_enum = true;
14204 precision = TYPE_PRECISION (enumtype);
14205 }
14206 }
14207
14208 for (itk = (use_short_enum ? itk_char : itk_int);
14209 itk != itk_none;
14210 itk++)
14211 {
14212 underlying_type = integer_types[itk];
14213 if (underlying_type != NULL_TREE
14214 && TYPE_PRECISION (underlying_type) >= precision
14215 && TYPE_SIGN (underlying_type) == sgn)
14216 break;
14217 }
14218 if (itk == itk_none)
14219 {
14220 /* DR 377
14221
14222 IF no integral type can represent all the enumerator values, the
14223 enumeration is ill-formed. */
14224 error ("no integral type can represent all of the enumerator values "
14225 "for %qT", enumtype);
14226 precision = TYPE_PRECISION (long_long_integer_type_node);
14227 underlying_type = integer_types[itk_unsigned_long_long];
14228 }
14229
14230 /* [dcl.enum]
14231
14232 The value of sizeof() applied to an enumeration type, an object
14233 of an enumeration type, or an enumerator, is the value of sizeof()
14234 applied to the underlying type. */
14235 copy_type_enum (enumtype, underlying_type);
14236
14237 /* Compute the minimum and maximum values for the type.
14238
14239 [dcl.enum]
14240
14241 For an enumeration where emin is the smallest enumerator and emax
14242 is the largest, the values of the enumeration are the values of the
14243 underlying type in the range bmin to bmax, where bmin and bmax are,
14244 respectively, the smallest and largest values of the smallest bit-
14245 field that can store emin and emax. */
14246
14247 /* The middle-end currently assumes that types with TYPE_PRECISION
14248 narrower than their underlying type are suitably zero or sign
14249 extended to fill their mode. Similarly, it assumes that the front
14250 end assures that a value of a particular type must be within
14251 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
14252
14253 We used to set these fields based on bmin and bmax, but that led
14254 to invalid assumptions like optimizing away bounds checking. So
14255 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
14256 TYPE_MAX_VALUE to the values for the mode above and only restrict
14257 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
14258 ENUM_UNDERLYING_TYPE (enumtype)
14259 = build_distinct_type_copy (underlying_type);
14260 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
14261 set_min_and_max_values_for_integral_type
14262 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
14263
14264 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
14265 if (flag_strict_enums)
14266 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
14267 }
14268 else
14269 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
14270
14271 /* Convert each of the enumerators to the type of the underlying
14272 type of the enumeration. */
14273 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
14274 {
14275 location_t saved_location;
14276
14277 decl = TREE_VALUE (values);
14278 saved_location = input_location;
14279 input_location = DECL_SOURCE_LOCATION (decl);
14280 if (fixed_underlying_type_p)
14281 /* If the enumeration type has a fixed underlying type, we
14282 already checked all of the enumerator values. */
14283 value = DECL_INITIAL (decl);
14284 else
14285 value = perform_implicit_conversion (underlying_type,
14286 DECL_INITIAL (decl),
14287 tf_warning_or_error);
14288 input_location = saved_location;
14289
14290 /* Do not clobber shared ints. */
14291 if (value != error_mark_node)
14292 {
14293 value = copy_node (value);
14294
14295 TREE_TYPE (value) = enumtype;
14296 }
14297 DECL_INITIAL (decl) = value;
14298 }
14299
14300 /* Fix up all variant types of this enum type. */
14301 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
14302 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
14303
14304 if (at_class_scope_p ()
14305 && COMPLETE_TYPE_P (current_class_type)
14306 && UNSCOPED_ENUM_P (enumtype))
14307 {
14308 insert_late_enum_def_bindings (current_class_type, enumtype);
14309 /* TYPE_FIELDS needs fixup. */
14310 fixup_type_variants (current_class_type);
14311 }
14312
14313 /* Finish debugging output for this type. */
14314 rest_of_type_compilation (enumtype, namespace_bindings_p ());
14315
14316 /* Each enumerator now has the type of its enumeration. Clear the cache
14317 so that this change in types doesn't confuse us later on. */
14318 clear_cv_and_fold_caches ();
14319 }
14320
14321 /* Finishes the enum type. This is called only the first time an
14322 enumeration is seen, be it opaque or odinary.
14323 ENUMTYPE is the type object. */
14324
14325 void
14326 finish_enum (tree enumtype)
14327 {
14328 if (processing_template_decl)
14329 {
14330 if (at_function_scope_p ())
14331 add_stmt (build_min (TAG_DEFN, enumtype));
14332 return;
14333 }
14334
14335 /* If this is a forward declaration, there should not be any variants,
14336 though we can get a variant in the middle of an enum-specifier with
14337 wacky code like 'enum E { e = sizeof(const E*) };' */
14338 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
14339 && (TYPE_VALUES (enumtype)
14340 || !TYPE_NEXT_VARIANT (enumtype)));
14341 }
14342
14343 /* Build and install a CONST_DECL for an enumeration constant of the
14344 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
14345 Apply ATTRIBUTES if available. LOC is the location of NAME.
14346 Assignment of sequential values by default is handled here. */
14347
14348 void
14349 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
14350 location_t loc)
14351 {
14352 tree decl;
14353 tree context;
14354 tree type;
14355
14356 /* scalar_constant_value will pull out this expression, so make sure
14357 it's folded as appropriate. */
14358 if (processing_template_decl)
14359 value = fold_non_dependent_expr (value);
14360
14361 /* If the VALUE was erroneous, pretend it wasn't there; that will
14362 result in the enum being assigned the next value in sequence. */
14363 if (value == error_mark_node)
14364 value = NULL_TREE;
14365
14366 /* Remove no-op casts from the value. */
14367 if (value)
14368 STRIP_TYPE_NOPS (value);
14369
14370 if (! processing_template_decl)
14371 {
14372 /* Validate and default VALUE. */
14373 if (value != NULL_TREE)
14374 {
14375 if (!ENUM_UNDERLYING_TYPE (enumtype))
14376 {
14377 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
14378 value, true);
14379 if (tmp_value)
14380 value = tmp_value;
14381 }
14382 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
14383 (TREE_TYPE (value)))
14384 value = perform_implicit_conversion_flags
14385 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
14386 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
14387
14388 if (value == error_mark_node)
14389 value = NULL_TREE;
14390
14391 if (value != NULL_TREE)
14392 {
14393 if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
14394 (TREE_TYPE (value)))
14395 {
14396 error ("enumerator value for %qD must have integral or "
14397 "unscoped enumeration type", name);
14398 value = NULL_TREE;
14399 }
14400 else
14401 {
14402 value = cxx_constant_value (value);
14403
14404 if (TREE_CODE (value) != INTEGER_CST)
14405 {
14406 error ("enumerator value for %qD is not an integer "
14407 "constant", name);
14408 value = NULL_TREE;
14409 }
14410 }
14411 }
14412 }
14413
14414 /* Default based on previous value. */
14415 if (value == NULL_TREE)
14416 {
14417 if (TYPE_VALUES (enumtype))
14418 {
14419 tree prev_value;
14420 bool overflowed;
14421
14422 /* C++03 7.2/4: If no initializer is specified for the first
14423 enumerator, the type is an unspecified integral
14424 type. Otherwise the type is the same as the type of the
14425 initializing value of the preceding enumerator unless the
14426 incremented value is not representable in that type, in
14427 which case the type is an unspecified integral type
14428 sufficient to contain the incremented value. */
14429 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
14430 if (error_operand_p (prev_value))
14431 value = error_mark_node;
14432 else
14433 {
14434 tree type = TREE_TYPE (prev_value);
14435 signop sgn = TYPE_SIGN (type);
14436 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
14437 &overflowed);
14438 if (!overflowed)
14439 {
14440 bool pos = !wi::neg_p (wi, sgn);
14441 if (!wi::fits_to_tree_p (wi, type))
14442 {
14443 unsigned int itk;
14444 for (itk = itk_int; itk != itk_none; itk++)
14445 {
14446 type = integer_types[itk];
14447 if (type != NULL_TREE
14448 && (pos || !TYPE_UNSIGNED (type))
14449 && wi::fits_to_tree_p (wi, type))
14450 break;
14451 }
14452 if (type && cxx_dialect < cxx11
14453 && itk > itk_unsigned_long)
14454 pedwarn (input_location, OPT_Wlong_long,
14455 pos ? G_("\
14456 incremented enumerator value is too large for %<unsigned long%>") : G_("\
14457 incremented enumerator value is too large for %<long%>"));
14458 }
14459 if (type == NULL_TREE)
14460 overflowed = true;
14461 else
14462 value = wide_int_to_tree (type, wi);
14463 }
14464
14465 if (overflowed)
14466 {
14467 error ("overflow in enumeration values at %qD", name);
14468 value = error_mark_node;
14469 }
14470 }
14471 }
14472 else
14473 value = integer_zero_node;
14474 }
14475
14476 /* Remove no-op casts from the value. */
14477 STRIP_TYPE_NOPS (value);
14478
14479 /* If the underlying type of the enum is fixed, check whether
14480 the enumerator values fits in the underlying type. If it
14481 does not fit, the program is ill-formed [C++0x dcl.enum]. */
14482 if (ENUM_UNDERLYING_TYPE (enumtype)
14483 && value
14484 && TREE_CODE (value) == INTEGER_CST)
14485 {
14486 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
14487 error ("enumerator value %qE is outside the range of underlying "
14488 "type %qT", value, ENUM_UNDERLYING_TYPE (enumtype));
14489
14490 /* Convert the value to the appropriate type. */
14491 value = fold_convert (ENUM_UNDERLYING_TYPE (enumtype), value);
14492 }
14493 }
14494
14495 /* C++ associates enums with global, function, or class declarations. */
14496 context = current_scope ();
14497
14498 /* Build the actual enumeration constant. Note that the enumeration
14499 constants have the underlying type of the enum (if it is fixed)
14500 or the type of their initializer (if the underlying type of the
14501 enum is not fixed):
14502
14503 [ C++0x dcl.enum ]
14504
14505 If the underlying type is fixed, the type of each enumerator
14506 prior to the closing brace is the underlying type; if the
14507 initializing value of an enumerator cannot be represented by
14508 the underlying type, the program is ill-formed. If the
14509 underlying type is not fixed, the type of each enumerator is
14510 the type of its initializing value.
14511
14512 If the underlying type is not fixed, it will be computed by
14513 finish_enum and we will reset the type of this enumerator. Of
14514 course, if we're processing a template, there may be no value. */
14515 type = value ? TREE_TYPE (value) : NULL_TREE;
14516
14517 decl = build_decl (loc, CONST_DECL, name, type);
14518
14519 DECL_CONTEXT (decl) = enumtype;
14520 TREE_CONSTANT (decl) = 1;
14521 TREE_READONLY (decl) = 1;
14522 DECL_INITIAL (decl) = value;
14523
14524 if (attributes)
14525 cplus_decl_attributes (&decl, attributes, 0);
14526
14527 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
14528 {
14529 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
14530 on the TYPE_FIELDS list for `S'. (That's so that you can say
14531 things like `S::i' later.) */
14532
14533 /* The enumerator may be getting declared outside of its enclosing
14534 class, like so:
14535
14536 class S { public: enum E : int; }; enum S::E : int { i = 7; };
14537
14538 For which case we need to make sure that the access of `S::i'
14539 matches the access of `S::E'. */
14540 tree saved_cas = current_access_specifier;
14541 if (TREE_PRIVATE (TYPE_NAME (enumtype)))
14542 current_access_specifier = access_private_node;
14543 else if (TREE_PROTECTED (TYPE_NAME (enumtype)))
14544 current_access_specifier = access_protected_node;
14545 else
14546 current_access_specifier = access_public_node;
14547
14548 finish_member_declaration (decl);
14549
14550 current_access_specifier = saved_cas;
14551 }
14552 else
14553 pushdecl (decl);
14554
14555 /* Add this enumeration constant to the list for this type. */
14556 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
14557 }
14558
14559 /* Look for an enumerator with the given NAME within the enumeration
14560 type ENUMTYPE. This routine is used primarily for qualified name
14561 lookup into an enumerator in C++0x, e.g.,
14562
14563 enum class Color { Red, Green, Blue };
14564
14565 Color color = Color::Red;
14566
14567 Returns the value corresponding to the enumerator, or
14568 NULL_TREE if no such enumerator was found. */
14569 tree
14570 lookup_enumerator (tree enumtype, tree name)
14571 {
14572 tree e;
14573 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
14574
14575 e = purpose_member (name, TYPE_VALUES (enumtype));
14576 return e? TREE_VALUE (e) : NULL_TREE;
14577 }
14578
14579 \f
14580 /* We're defining DECL. Make sure that its type is OK. */
14581
14582 static void
14583 check_function_type (tree decl, tree current_function_parms)
14584 {
14585 tree fntype = TREE_TYPE (decl);
14586 tree return_type = complete_type (TREE_TYPE (fntype));
14587
14588 /* In a function definition, arg types must be complete. */
14589 require_complete_types_for_parms (current_function_parms);
14590
14591 if (dependent_type_p (return_type)
14592 || type_uses_auto (return_type))
14593 return;
14594 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
14595 {
14596 tree args = TYPE_ARG_TYPES (fntype);
14597
14598 error ("return type %q#T is incomplete", return_type);
14599
14600 /* Make it return void instead. */
14601 if (TREE_CODE (fntype) == METHOD_TYPE)
14602 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
14603 void_type_node,
14604 TREE_CHAIN (args));
14605 else
14606 fntype = build_function_type (void_type_node, args);
14607 fntype
14608 = build_exception_variant (fntype,
14609 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)));
14610 fntype = (cp_build_type_attribute_variant
14611 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
14612 TREE_TYPE (decl) = fntype;
14613 }
14614 else
14615 {
14616 abstract_virtuals_error (decl, TREE_TYPE (fntype));
14617 maybe_warn_parm_abi (TREE_TYPE (fntype),
14618 DECL_SOURCE_LOCATION (decl));
14619 }
14620 }
14621
14622 /* True iff FN is an implicitly-defined default constructor. */
14623
14624 static bool
14625 implicit_default_ctor_p (tree fn)
14626 {
14627 return (DECL_CONSTRUCTOR_P (fn)
14628 && !user_provided_p (fn)
14629 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)));
14630 }
14631
14632 /* Clobber the contents of *this to let the back end know that the object
14633 storage is dead when we enter the constructor or leave the destructor. */
14634
14635 static tree
14636 build_clobber_this ()
14637 {
14638 /* Clobbering an empty base is pointless, and harmful if its one byte
14639 TYPE_SIZE overlays real data. */
14640 if (is_empty_class (current_class_type))
14641 return void_node;
14642
14643 /* If we have virtual bases, clobber the whole object, but only if we're in
14644 charge. If we don't have virtual bases, clobber the as-base type so we
14645 don't mess with tail padding. */
14646 bool vbases = CLASSTYPE_VBASECLASSES (current_class_type);
14647
14648 tree ctype = current_class_type;
14649 if (!vbases)
14650 ctype = CLASSTYPE_AS_BASE (ctype);
14651
14652 tree clobber = build_constructor (ctype, NULL);
14653 TREE_THIS_VOLATILE (clobber) = true;
14654
14655 tree thisref = current_class_ref;
14656 if (ctype != current_class_type)
14657 {
14658 thisref = build_nop (build_reference_type (ctype), current_class_ptr);
14659 thisref = convert_from_reference (thisref);
14660 }
14661
14662 tree exprstmt = build2 (MODIFY_EXPR, void_type_node, thisref, clobber);
14663 if (vbases)
14664 exprstmt = build_if_in_charge (exprstmt);
14665
14666 return exprstmt;
14667 }
14668
14669 /* Create the FUNCTION_DECL for a function definition.
14670 DECLSPECS and DECLARATOR are the parts of the declaration;
14671 they describe the function's name and the type it returns,
14672 but twisted together in a fashion that parallels the syntax of C.
14673
14674 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
14675 DECLARATOR is really the DECL for the function we are about to
14676 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
14677 indicating that the function is an inline defined in-class.
14678
14679 This function creates a binding context for the function body
14680 as well as setting up the FUNCTION_DECL in current_function_decl.
14681
14682 For C++, we must first check whether that datum makes any sense.
14683 For example, "class A local_a(1,2);" means that variable local_a
14684 is an aggregate of type A, which should have a constructor
14685 applied to it with the argument list [1, 2].
14686
14687 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
14688 or may be a BLOCK if the function has been defined previously
14689 in this translation unit. On exit, DECL_INITIAL (decl1) will be
14690 error_mark_node if the function has never been defined, or
14691 a BLOCK if the function has been defined somewhere. */
14692
14693 bool
14694 start_preparsed_function (tree decl1, tree attrs, int flags)
14695 {
14696 tree ctype = NULL_TREE;
14697 tree fntype;
14698 tree restype;
14699 int doing_friend = 0;
14700 cp_binding_level *bl;
14701 tree current_function_parms;
14702 struct c_fileinfo *finfo
14703 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
14704 bool honor_interface;
14705
14706 /* Sanity check. */
14707 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
14708 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
14709
14710 fntype = TREE_TYPE (decl1);
14711 if (TREE_CODE (fntype) == METHOD_TYPE)
14712 ctype = TYPE_METHOD_BASETYPE (fntype);
14713
14714 /* ISO C++ 11.4/5. A friend function defined in a class is in
14715 the (lexical) scope of the class in which it is defined. */
14716 if (!ctype && DECL_FRIEND_P (decl1))
14717 {
14718 ctype = DECL_FRIEND_CONTEXT (decl1);
14719
14720 /* CTYPE could be null here if we're dealing with a template;
14721 for example, `inline friend float foo()' inside a template
14722 will have no CTYPE set. */
14723 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
14724 ctype = NULL_TREE;
14725 else
14726 doing_friend = 1;
14727 }
14728
14729 if (DECL_DECLARED_INLINE_P (decl1)
14730 && lookup_attribute ("noinline", attrs))
14731 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
14732 "inline function %qD given attribute noinline", decl1);
14733
14734 /* Handle gnu_inline attribute. */
14735 if (GNU_INLINE_P (decl1))
14736 {
14737 DECL_EXTERNAL (decl1) = 1;
14738 DECL_NOT_REALLY_EXTERN (decl1) = 0;
14739 DECL_INTERFACE_KNOWN (decl1) = 1;
14740 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
14741 }
14742
14743 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
14744 /* This is a constructor, we must ensure that any default args
14745 introduced by this definition are propagated to the clones
14746 now. The clones are used directly in overload resolution. */
14747 adjust_clone_args (decl1);
14748
14749 /* Sometimes we don't notice that a function is a static member, and
14750 build a METHOD_TYPE for it. Fix that up now. */
14751 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
14752 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
14753
14754 /* Set up current_class_type, and enter the scope of the class, if
14755 appropriate. */
14756 if (ctype)
14757 push_nested_class (ctype);
14758 else if (DECL_STATIC_FUNCTION_P (decl1))
14759 push_nested_class (DECL_CONTEXT (decl1));
14760
14761 /* Now that we have entered the scope of the class, we must restore
14762 the bindings for any template parameters surrounding DECL1, if it
14763 is an inline member template. (Order is important; consider the
14764 case where a template parameter has the same name as a field of
14765 the class.) It is not until after this point that
14766 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
14767 if (flags & SF_INCLASS_INLINE)
14768 maybe_begin_member_template_processing (decl1);
14769
14770 /* Effective C++ rule 15. */
14771 if (warn_ecpp
14772 && DECL_OVERLOADED_OPERATOR_P (decl1) == NOP_EXPR
14773 && VOID_TYPE_P (TREE_TYPE (fntype)))
14774 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
14775
14776 /* Make the init_value nonzero so pushdecl knows this is not tentative.
14777 error_mark_node is replaced below (in poplevel) with the BLOCK. */
14778 if (!DECL_INITIAL (decl1))
14779 DECL_INITIAL (decl1) = error_mark_node;
14780
14781 /* This function exists in static storage.
14782 (This does not mean `static' in the C sense!) */
14783 TREE_STATIC (decl1) = 1;
14784
14785 /* We must call push_template_decl after current_class_type is set
14786 up. (If we are processing inline definitions after exiting a
14787 class scope, current_class_type will be NULL_TREE until set above
14788 by push_nested_class.) */
14789 if (processing_template_decl)
14790 {
14791 tree newdecl1 = push_template_decl (decl1);
14792 if (newdecl1 == error_mark_node)
14793 {
14794 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
14795 pop_nested_class ();
14796 return false;
14797 }
14798 decl1 = newdecl1;
14799 }
14800
14801 /* Make sure the parameter and return types are reasonable. When
14802 you declare a function, these types can be incomplete, but they
14803 must be complete when you define the function. */
14804 check_function_type (decl1, DECL_ARGUMENTS (decl1));
14805
14806 /* Build the return declaration for the function. */
14807 restype = TREE_TYPE (fntype);
14808
14809 if (DECL_RESULT (decl1) == NULL_TREE)
14810 {
14811 tree resdecl;
14812
14813 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
14814 DECL_ARTIFICIAL (resdecl) = 1;
14815 DECL_IGNORED_P (resdecl) = 1;
14816 DECL_RESULT (decl1) = resdecl;
14817
14818 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
14819 }
14820
14821 /* Record the decl so that the function name is defined.
14822 If we already have a decl for this name, and it is a FUNCTION_DECL,
14823 use the old decl. */
14824 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
14825 {
14826 /* A specialization is not used to guide overload resolution. */
14827 if (!DECL_FUNCTION_MEMBER_P (decl1)
14828 && !(DECL_USE_TEMPLATE (decl1) &&
14829 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
14830 {
14831 tree olddecl = pushdecl (decl1);
14832
14833 if (olddecl == error_mark_node)
14834 /* If something went wrong when registering the declaration,
14835 use DECL1; we have to have a FUNCTION_DECL to use when
14836 parsing the body of the function. */
14837 ;
14838 else
14839 {
14840 /* Otherwise, OLDDECL is either a previous declaration
14841 of the same function or DECL1 itself. */
14842
14843 if (warn_missing_declarations
14844 && olddecl == decl1
14845 && !DECL_MAIN_P (decl1)
14846 && TREE_PUBLIC (decl1)
14847 && !DECL_DECLARED_INLINE_P (decl1))
14848 {
14849 tree context;
14850
14851 /* Check whether DECL1 is in an anonymous
14852 namespace. */
14853 for (context = DECL_CONTEXT (decl1);
14854 context;
14855 context = DECL_CONTEXT (context))
14856 {
14857 if (TREE_CODE (context) == NAMESPACE_DECL
14858 && DECL_NAME (context) == NULL_TREE)
14859 break;
14860 }
14861
14862 if (context == NULL)
14863 warning_at (DECL_SOURCE_LOCATION (decl1),
14864 OPT_Wmissing_declarations,
14865 "no previous declaration for %qD", decl1);
14866 }
14867
14868 decl1 = olddecl;
14869 }
14870 }
14871 else
14872 {
14873 /* We need to set the DECL_CONTEXT. */
14874 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
14875 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
14876 }
14877 fntype = TREE_TYPE (decl1);
14878 restype = TREE_TYPE (fntype);
14879
14880 /* If #pragma weak applies, mark the decl appropriately now.
14881 The pragma only applies to global functions. Because
14882 determining whether or not the #pragma applies involves
14883 computing the mangled name for the declaration, we cannot
14884 apply the pragma until after we have merged this declaration
14885 with any previous declarations; if the original declaration
14886 has a linkage specification, that specification applies to
14887 the definition as well, and may affect the mangled name. */
14888 if (DECL_FILE_SCOPE_P (decl1))
14889 maybe_apply_pragma_weak (decl1);
14890 }
14891
14892 /* We are now in the scope of the function being defined. */
14893 current_function_decl = decl1;
14894
14895 /* Save the parm names or decls from this function's declarator
14896 where store_parm_decls will find them. */
14897 current_function_parms = DECL_ARGUMENTS (decl1);
14898
14899 /* Let the user know we're compiling this function. */
14900 announce_function (decl1);
14901
14902 gcc_assert (DECL_INITIAL (decl1));
14903
14904 /* This function may already have been parsed, in which case just
14905 return; our caller will skip over the body without parsing. */
14906 if (DECL_INITIAL (decl1) != error_mark_node)
14907 return true;
14908
14909 /* Initialize RTL machinery. We cannot do this until
14910 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
14911 even when processing a template; this is how we get
14912 CFUN set up, and our per-function variables initialized.
14913 FIXME factor out the non-RTL stuff. */
14914 bl = current_binding_level;
14915 allocate_struct_function (decl1, processing_template_decl);
14916
14917 /* Initialize the language data structures. Whenever we start
14918 a new function, we destroy temporaries in the usual way. */
14919 cfun->language = ggc_cleared_alloc<language_function> ();
14920 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
14921 current_binding_level = bl;
14922
14923 if (!processing_template_decl && type_uses_auto (restype))
14924 {
14925 FNDECL_USED_AUTO (decl1) = true;
14926 current_function_auto_return_pattern = restype;
14927 }
14928
14929 /* Start the statement-tree, start the tree now. */
14930 DECL_SAVED_TREE (decl1) = push_stmt_list ();
14931
14932 /* If we are (erroneously) defining a function that we have already
14933 defined before, wipe out what we knew before. */
14934 if (!DECL_PENDING_INLINE_P (decl1))
14935 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
14936
14937 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
14938 {
14939 /* We know that this was set up by `grokclassfn'. We do not
14940 wait until `store_parm_decls', since evil parse errors may
14941 never get us to that point. Here we keep the consistency
14942 between `current_class_type' and `current_class_ptr'. */
14943 tree t = DECL_ARGUMENTS (decl1);
14944
14945 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
14946 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
14947
14948 cp_function_chain->x_current_class_ref
14949 = cp_build_indirect_ref (t, RO_NULL, tf_warning_or_error);
14950 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
14951 cp_function_chain->x_current_class_ptr = t;
14952
14953 /* Constructors and destructors need to know whether they're "in
14954 charge" of initializing virtual base classes. */
14955 t = DECL_CHAIN (t);
14956 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
14957 {
14958 current_in_charge_parm = t;
14959 t = DECL_CHAIN (t);
14960 }
14961 if (DECL_HAS_VTT_PARM_P (decl1))
14962 {
14963 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
14964 current_vtt_parm = t;
14965 }
14966 }
14967
14968 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
14969 /* Implicitly-defined methods (like the
14970 destructor for a class in which no destructor
14971 is explicitly declared) must not be defined
14972 until their definition is needed. So, we
14973 ignore interface specifications for
14974 compiler-generated functions. */
14975 && !DECL_ARTIFICIAL (decl1));
14976
14977 if (processing_template_decl)
14978 /* Don't mess with interface flags. */;
14979 else if (DECL_INTERFACE_KNOWN (decl1))
14980 {
14981 tree ctx = decl_function_context (decl1);
14982
14983 if (DECL_NOT_REALLY_EXTERN (decl1))
14984 DECL_EXTERNAL (decl1) = 0;
14985
14986 if (ctx != NULL_TREE && vague_linkage_p (ctx))
14987 /* This is a function in a local class in an extern inline
14988 or template function. */
14989 comdat_linkage (decl1);
14990 }
14991 /* If this function belongs to an interface, it is public.
14992 If it belongs to someone else's interface, it is also external.
14993 This only affects inlines and template instantiations. */
14994 else if (!finfo->interface_unknown && honor_interface)
14995 {
14996 if (DECL_DECLARED_INLINE_P (decl1)
14997 || DECL_TEMPLATE_INSTANTIATION (decl1))
14998 {
14999 DECL_EXTERNAL (decl1)
15000 = (finfo->interface_only
15001 || (DECL_DECLARED_INLINE_P (decl1)
15002 && ! flag_implement_inlines
15003 && !DECL_VINDEX (decl1)));
15004
15005 /* For WIN32 we also want to put these in linkonce sections. */
15006 maybe_make_one_only (decl1);
15007 }
15008 else
15009 DECL_EXTERNAL (decl1) = 0;
15010 DECL_INTERFACE_KNOWN (decl1) = 1;
15011 /* If this function is in an interface implemented in this file,
15012 make sure that the back end knows to emit this function
15013 here. */
15014 if (!DECL_EXTERNAL (decl1))
15015 mark_needed (decl1);
15016 }
15017 else if (finfo->interface_unknown && finfo->interface_only
15018 && honor_interface)
15019 {
15020 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
15021 interface, we will have both finfo->interface_unknown and
15022 finfo->interface_only set. In that case, we don't want to
15023 use the normal heuristics because someone will supply a
15024 #pragma implementation elsewhere, and deducing it here would
15025 produce a conflict. */
15026 comdat_linkage (decl1);
15027 DECL_EXTERNAL (decl1) = 0;
15028 DECL_INTERFACE_KNOWN (decl1) = 1;
15029 DECL_DEFER_OUTPUT (decl1) = 1;
15030 }
15031 else
15032 {
15033 /* This is a definition, not a reference.
15034 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
15035 if (!GNU_INLINE_P (decl1))
15036 DECL_EXTERNAL (decl1) = 0;
15037
15038 if ((DECL_DECLARED_INLINE_P (decl1)
15039 || DECL_TEMPLATE_INSTANTIATION (decl1))
15040 && ! DECL_INTERFACE_KNOWN (decl1))
15041 DECL_DEFER_OUTPUT (decl1) = 1;
15042 else
15043 DECL_INTERFACE_KNOWN (decl1) = 1;
15044 }
15045
15046 /* Determine the ELF visibility attribute for the function. We must not
15047 do this before calling "pushdecl", as we must allow "duplicate_decls"
15048 to merge any attributes appropriately. We also need to wait until
15049 linkage is set. */
15050 if (!DECL_CLONED_FUNCTION_P (decl1))
15051 determine_visibility (decl1);
15052
15053 if (!processing_template_decl)
15054 maybe_instantiate_noexcept (decl1);
15055
15056 begin_scope (sk_function_parms, decl1);
15057
15058 ++function_depth;
15059
15060 if (DECL_DESTRUCTOR_P (decl1)
15061 || (DECL_CONSTRUCTOR_P (decl1)
15062 && targetm.cxx.cdtor_returns_this ()))
15063 {
15064 cdtor_label = create_artificial_label (input_location);
15065 LABEL_DECL_CDTOR (cdtor_label) = true;
15066 }
15067
15068 start_fname_decls ();
15069
15070 store_parm_decls (current_function_parms);
15071
15072 if (!processing_template_decl
15073 && (flag_lifetime_dse > 1)
15074 && DECL_CONSTRUCTOR_P (decl1)
15075 && !DECL_CLONED_FUNCTION_P (decl1)
15076 /* Clobbering an empty base is harmful if it overlays real data. */
15077 && !is_empty_class (current_class_type)
15078 /* We can't clobber safely for an implicitly-defined default constructor
15079 because part of the initialization might happen before we enter the
15080 constructor, via AGGR_INIT_ZERO_FIRST (c++/68006). */
15081 && !implicit_default_ctor_p (decl1))
15082 finish_expr_stmt (build_clobber_this ());
15083
15084 if (!processing_template_decl
15085 && DECL_CONSTRUCTOR_P (decl1)
15086 && sanitize_flags_p (SANITIZE_VPTR)
15087 && !DECL_CLONED_FUNCTION_P (decl1)
15088 && !implicit_default_ctor_p (decl1))
15089 cp_ubsan_maybe_initialize_vtbl_ptrs (current_class_ptr);
15090
15091 start_lambda_scope (decl1);
15092
15093 return true;
15094 }
15095
15096
15097 /* Like start_preparsed_function, except that instead of a
15098 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
15099
15100 Returns true on success. If the DECLARATOR is not suitable
15101 for a function, we return false, which tells the parser to
15102 skip the entire function. */
15103
15104 bool
15105 start_function (cp_decl_specifier_seq *declspecs,
15106 const cp_declarator *declarator,
15107 tree attrs)
15108 {
15109 tree decl1;
15110
15111 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
15112 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
15113 if (decl1 == error_mark_node)
15114 return false;
15115 /* If the declarator is not suitable for a function definition,
15116 cause a syntax error. */
15117 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
15118 {
15119 error ("invalid function declaration");
15120 return false;
15121 }
15122
15123 if (DECL_MAIN_P (decl1))
15124 /* main must return int. grokfndecl should have corrected it
15125 (and issued a diagnostic) if the user got it wrong. */
15126 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
15127 integer_type_node));
15128
15129 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
15130 }
15131 \f
15132 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
15133 FN. */
15134
15135 static bool
15136 use_eh_spec_block (tree fn)
15137 {
15138 return (flag_exceptions && flag_enforce_eh_specs
15139 && !processing_template_decl
15140 && !type_throw_all_p (TREE_TYPE (fn))
15141 /* We insert the EH_SPEC_BLOCK only in the original
15142 function; then, it is copied automatically to the
15143 clones. */
15144 && !DECL_CLONED_FUNCTION_P (fn)
15145 /* Implicitly-generated constructors and destructors have
15146 exception specifications. However, those specifications
15147 are the union of the possible exceptions specified by the
15148 constructors/destructors for bases and members, so no
15149 unallowed exception will ever reach this function. By
15150 not creating the EH_SPEC_BLOCK we save a little memory,
15151 and we avoid spurious warnings about unreachable
15152 code. */
15153 && !DECL_DEFAULTED_FN (fn));
15154 }
15155
15156 /* Store the parameter declarations into the current function declaration.
15157 This is called after parsing the parameter declarations, before
15158 digesting the body of the function.
15159
15160 Also install to binding contour return value identifier, if any. */
15161
15162 static void
15163 store_parm_decls (tree current_function_parms)
15164 {
15165 tree fndecl = current_function_decl;
15166 tree parm;
15167
15168 /* This is a chain of any other decls that came in among the parm
15169 declarations. If a parm is declared with enum {foo, bar} x;
15170 then CONST_DECLs for foo and bar are put here. */
15171 tree nonparms = NULL_TREE;
15172
15173 if (current_function_parms)
15174 {
15175 /* This case is when the function was defined with an ANSI prototype.
15176 The parms already have decls, so we need not do anything here
15177 except record them as in effect
15178 and complain if any redundant old-style parm decls were written. */
15179
15180 tree specparms = current_function_parms;
15181 tree next;
15182
15183 /* Must clear this because it might contain TYPE_DECLs declared
15184 at class level. */
15185 current_binding_level->names = NULL;
15186
15187 /* If we're doing semantic analysis, then we'll call pushdecl
15188 for each of these. We must do them in reverse order so that
15189 they end in the correct forward order. */
15190 specparms = nreverse (specparms);
15191
15192 for (parm = specparms; parm; parm = next)
15193 {
15194 next = DECL_CHAIN (parm);
15195 if (TREE_CODE (parm) == PARM_DECL)
15196 pushdecl (parm);
15197 else
15198 {
15199 /* If we find an enum constant or a type tag,
15200 put it aside for the moment. */
15201 TREE_CHAIN (parm) = NULL_TREE;
15202 nonparms = chainon (nonparms, parm);
15203 }
15204 }
15205
15206 /* Get the decls in their original chain order and record in the
15207 function. This is all and only the PARM_DECLs that were
15208 pushed into scope by the loop above. */
15209 DECL_ARGUMENTS (fndecl) = get_local_decls ();
15210 }
15211 else
15212 DECL_ARGUMENTS (fndecl) = NULL_TREE;
15213
15214 /* Now store the final chain of decls for the arguments
15215 as the decl-chain of the current lexical scope.
15216 Put the enumerators in as well, at the front so that
15217 DECL_ARGUMENTS is not modified. */
15218 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
15219
15220 if (use_eh_spec_block (current_function_decl))
15221 current_eh_spec_block = begin_eh_spec_block ();
15222 }
15223
15224 \f
15225 /* We have finished doing semantic analysis on DECL, but have not yet
15226 generated RTL for its body. Save away our current state, so that
15227 when we want to generate RTL later we know what to do. */
15228
15229 static void
15230 save_function_data (tree decl)
15231 {
15232 struct language_function *f;
15233
15234 /* Save the language-specific per-function data so that we can
15235 get it back when we really expand this function. */
15236 gcc_assert (!DECL_PENDING_INLINE_P (decl));
15237
15238 /* Make a copy. */
15239 f = ggc_alloc<language_function> ();
15240 memcpy (f, cp_function_chain, sizeof (struct language_function));
15241 DECL_SAVED_FUNCTION_DATA (decl) = f;
15242
15243 /* Clear out the bits we don't need. */
15244 f->base.x_stmt_tree.x_cur_stmt_list = NULL;
15245 f->bindings = NULL;
15246 f->x_local_names = NULL;
15247 f->base.local_typedefs = NULL;
15248 }
15249
15250
15251 /* Set the return value of the constructor (if present). */
15252
15253 static void
15254 finish_constructor_body (void)
15255 {
15256 tree val;
15257 tree exprstmt;
15258
15259 if (targetm.cxx.cdtor_returns_this ())
15260 {
15261 /* Any return from a constructor will end up here. */
15262 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
15263
15264 val = DECL_ARGUMENTS (current_function_decl);
15265 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
15266 DECL_RESULT (current_function_decl), val);
15267 /* Return the address of the object. */
15268 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
15269 add_stmt (exprstmt);
15270 }
15271 }
15272
15273 /* Do all the processing for the beginning of a destructor; set up the
15274 vtable pointers and cleanups for bases and members. */
15275
15276 static void
15277 begin_destructor_body (void)
15278 {
15279 tree compound_stmt;
15280
15281 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
15282 issued an error message. We still want to try to process the
15283 body of the function, but initialize_vtbl_ptrs will crash if
15284 TYPE_BINFO is NULL. */
15285 if (COMPLETE_TYPE_P (current_class_type))
15286 {
15287 compound_stmt = begin_compound_stmt (0);
15288 /* Make all virtual function table pointers in non-virtual base
15289 classes point to CURRENT_CLASS_TYPE's virtual function
15290 tables. */
15291 initialize_vtbl_ptrs (current_class_ptr);
15292 finish_compound_stmt (compound_stmt);
15293
15294 if (flag_lifetime_dse
15295 /* Clobbering an empty base is harmful if it overlays real data. */
15296 && !is_empty_class (current_class_type))
15297 finish_decl_cleanup (NULL_TREE, build_clobber_this ());
15298
15299 /* And insert cleanups for our bases and members so that they
15300 will be properly destroyed if we throw. */
15301 push_base_cleanups ();
15302 }
15303 }
15304
15305 /* At the end of every destructor we generate code to delete the object if
15306 necessary. Do that now. */
15307
15308 static void
15309 finish_destructor_body (void)
15310 {
15311 tree exprstmt;
15312
15313 /* Any return from a destructor will end up here; that way all base
15314 and member cleanups will be run when the function returns. */
15315 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
15316
15317 if (targetm.cxx.cdtor_returns_this ())
15318 {
15319 tree val;
15320
15321 val = DECL_ARGUMENTS (current_function_decl);
15322 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
15323 DECL_RESULT (current_function_decl), val);
15324 /* Return the address of the object. */
15325 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
15326 add_stmt (exprstmt);
15327 }
15328 }
15329
15330 /* Do the necessary processing for the beginning of a function body, which
15331 in this case includes member-initializers, but not the catch clauses of
15332 a function-try-block. Currently, this means opening a binding level
15333 for the member-initializers (in a ctor), member cleanups (in a dtor),
15334 and capture proxies (in a lambda operator()). */
15335
15336 tree
15337 begin_function_body (void)
15338 {
15339 tree stmt;
15340
15341 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
15342 return NULL_TREE;
15343
15344 if (processing_template_decl)
15345 /* Do nothing now. */;
15346 else
15347 /* Always keep the BLOCK node associated with the outermost pair of
15348 curly braces of a function. These are needed for correct
15349 operation of dwarfout.c. */
15350 keep_next_level (true);
15351
15352 stmt = begin_compound_stmt (BCS_FN_BODY);
15353
15354 if (processing_template_decl)
15355 /* Do nothing now. */;
15356 else if (DECL_DESTRUCTOR_P (current_function_decl))
15357 begin_destructor_body ();
15358
15359 return stmt;
15360 }
15361
15362 /* Do the processing for the end of a function body. Currently, this means
15363 closing out the cleanups for fully-constructed bases and members, and in
15364 the case of the destructor, deleting the object if desired. Again, this
15365 is only meaningful for [cd]tors, since they are the only functions where
15366 there is a significant distinction between the main body and any
15367 function catch clauses. Handling, say, main() return semantics here
15368 would be wrong, as flowing off the end of a function catch clause for
15369 main() would also need to return 0. */
15370
15371 void
15372 finish_function_body (tree compstmt)
15373 {
15374 if (compstmt == NULL_TREE)
15375 return;
15376
15377 /* Close the block. */
15378 finish_compound_stmt (compstmt);
15379
15380 if (processing_template_decl)
15381 /* Do nothing now. */;
15382 else if (DECL_CONSTRUCTOR_P (current_function_decl))
15383 finish_constructor_body ();
15384 else if (DECL_DESTRUCTOR_P (current_function_decl))
15385 finish_destructor_body ();
15386 }
15387
15388 /* Given a function, returns the BLOCK corresponding to the outermost level
15389 of curly braces, skipping the artificial block created for constructor
15390 initializers. */
15391
15392 tree
15393 outer_curly_brace_block (tree fndecl)
15394 {
15395 tree block = DECL_INITIAL (fndecl);
15396 if (BLOCK_OUTER_CURLY_BRACE_P (block))
15397 return block;
15398 block = BLOCK_SUBBLOCKS (block);
15399 if (BLOCK_OUTER_CURLY_BRACE_P (block))
15400 return block;
15401 block = BLOCK_SUBBLOCKS (block);
15402 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
15403 return block;
15404 }
15405
15406 /* If FNDECL is a class's key method, add the class to the list of
15407 keyed classes that should be emitted. */
15408
15409 static void
15410 record_key_method_defined (tree fndecl)
15411 {
15412 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
15413 && DECL_VIRTUAL_P (fndecl)
15414 && !processing_template_decl)
15415 {
15416 tree fnclass = DECL_CONTEXT (fndecl);
15417 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
15418 vec_safe_push (keyed_classes, fnclass);
15419 }
15420 }
15421
15422 /* Subroutine of finish_function.
15423 Save the body of constexpr functions for possible
15424 future compile time evaluation. */
15425
15426 static void
15427 maybe_save_function_definition (tree fun)
15428 {
15429 if (!processing_template_decl
15430 && DECL_DECLARED_CONSTEXPR_P (fun)
15431 && !cp_function_chain->invalid_constexpr
15432 && !DECL_CLONED_FUNCTION_P (fun))
15433 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
15434 }
15435
15436 /* Finish up a function declaration and compile that function
15437 all the way to assembler language output. The free the storage
15438 for the function definition. INLINE_P is TRUE if we just
15439 finished processing the body of an in-class inline function
15440 definition. (This processing will have taken place after the
15441 class definition is complete.) */
15442
15443 tree
15444 finish_function (bool inline_p)
15445 {
15446 tree fndecl = current_function_decl;
15447 tree fntype, ctype = NULL_TREE;
15448
15449 /* When we get some parse errors, we can end up without a
15450 current_function_decl, so cope. */
15451 if (fndecl == NULL_TREE)
15452 return error_mark_node;
15453
15454 finish_lambda_scope ();
15455
15456 if (c_dialect_objc ())
15457 objc_finish_function ();
15458
15459 record_key_method_defined (fndecl);
15460
15461 fntype = TREE_TYPE (fndecl);
15462
15463 /* TREE_READONLY (fndecl) = 1;
15464 This caused &foo to be of type ptr-to-const-function
15465 which then got a warning when stored in a ptr-to-function variable. */
15466
15467 gcc_assert (building_stmt_list_p ());
15468 /* The current function is being defined, so its DECL_INITIAL should
15469 be set, and unless there's a multiple definition, it should be
15470 error_mark_node. */
15471 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
15472
15473 /* For a cloned function, we've already got all the code we need;
15474 there's no need to add any extra bits. */
15475 if (!DECL_CLONED_FUNCTION_P (fndecl))
15476 {
15477 /* Make it so that `main' always returns 0 by default. */
15478 if (DECL_MAIN_P (current_function_decl))
15479 finish_return_stmt (integer_zero_node);
15480
15481 if (use_eh_spec_block (current_function_decl))
15482 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
15483 (TREE_TYPE (current_function_decl)),
15484 current_eh_spec_block);
15485 }
15486
15487 /* If we're saving up tree structure, tie off the function now. */
15488 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
15489
15490 if (fn_contains_cilk_spawn_p (cfun) && !processing_template_decl)
15491 cfun->cilk_frame_decl = insert_cilk_frame (fndecl);
15492
15493 finish_fname_decls ();
15494
15495 /* If this function can't throw any exceptions, remember that. */
15496 if (!processing_template_decl
15497 && !cp_function_chain->can_throw
15498 && !flag_non_call_exceptions
15499 && !decl_replaceable_p (fndecl))
15500 TREE_NOTHROW (fndecl) = 1;
15501
15502 /* This must come after expand_function_end because cleanups might
15503 have declarations (from inline functions) that need to go into
15504 this function's blocks. */
15505
15506 /* If the current binding level isn't the outermost binding level
15507 for this function, either there is a bug, or we have experienced
15508 syntax errors and the statement tree is malformed. */
15509 if (current_binding_level->kind != sk_function_parms)
15510 {
15511 /* Make sure we have already experienced errors. */
15512 gcc_assert (errorcount);
15513
15514 /* Throw away the broken statement tree and extra binding
15515 levels. */
15516 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
15517
15518 while (current_binding_level->kind != sk_function_parms)
15519 {
15520 if (current_binding_level->kind == sk_class)
15521 pop_nested_class ();
15522 else
15523 poplevel (0, 0, 0);
15524 }
15525 }
15526 poplevel (1, 0, 1);
15527
15528 /* Statements should always be full-expressions at the outermost set
15529 of curly braces for a function. */
15530 gcc_assert (stmts_are_full_exprs_p ());
15531
15532 /* If there are no return statements in a function with auto return type,
15533 the return type is void. But if the declared type is something like
15534 auto*, this is an error. */
15535 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
15536 && TREE_TYPE (fntype) == current_function_auto_return_pattern)
15537 {
15538 if (is_auto (current_function_auto_return_pattern))
15539 {
15540 apply_deduced_return_type (fndecl, void_type_node);
15541 fntype = TREE_TYPE (fndecl);
15542 }
15543 else if (!current_function_returns_value
15544 && !current_function_returns_null)
15545 {
15546 error ("no return statements in function returning %qT",
15547 current_function_auto_return_pattern);
15548 inform (input_location, "only plain %<auto%> return type can be "
15549 "deduced to %<void%>");
15550 }
15551 }
15552
15553 // If this is a concept, check that the definition is reasonable.
15554 if (DECL_DECLARED_CONCEPT_P (fndecl))
15555 check_function_concept (fndecl);
15556
15557 /* Lambda closure members are implicitly constexpr if possible. */
15558 if (cxx_dialect >= cxx17
15559 && LAMBDA_TYPE_P (CP_DECL_CONTEXT (fndecl)))
15560 DECL_DECLARED_CONSTEXPR_P (fndecl)
15561 = ((processing_template_decl
15562 || is_valid_constexpr_fn (fndecl, /*complain*/false))
15563 && potential_constant_expression (DECL_SAVED_TREE (fndecl)));
15564
15565 /* Save constexpr function body before it gets munged by
15566 the NRV transformation. */
15567 maybe_save_function_definition (fndecl);
15568
15569 /* Invoke the pre-genericize plugin before we start munging things. */
15570 if (!processing_template_decl)
15571 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
15572
15573 /* Perform delayed folding before NRV transformation. */
15574 if (!processing_template_decl)
15575 cp_fold_function (fndecl);
15576
15577 /* Set up the named return value optimization, if we can. Candidate
15578 variables are selected in check_return_expr. */
15579 if (current_function_return_value)
15580 {
15581 tree r = current_function_return_value;
15582 tree outer;
15583
15584 if (r != error_mark_node
15585 /* This is only worth doing for fns that return in memory--and
15586 simpler, since we don't have to worry about promoted modes. */
15587 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
15588 /* Only allow this for variables declared in the outer scope of
15589 the function so we know that their lifetime always ends with a
15590 return; see g++.dg/opt/nrv6.C. We could be more flexible if
15591 we were to do this optimization in tree-ssa. */
15592 && (outer = outer_curly_brace_block (fndecl))
15593 && chain_member (r, BLOCK_VARS (outer)))
15594 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
15595
15596 current_function_return_value = NULL_TREE;
15597 }
15598
15599 /* Remember that we were in class scope. */
15600 if (current_class_name)
15601 ctype = current_class_type;
15602
15603 /* Must mark the RESULT_DECL as being in this function. */
15604 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
15605
15606 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
15607 to the FUNCTION_DECL node itself. */
15608 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
15609
15610 /* Save away current state, if appropriate. */
15611 if (!processing_template_decl)
15612 save_function_data (fndecl);
15613
15614 /* Complain if there's just no return statement. */
15615 if (warn_return_type
15616 && !VOID_TYPE_P (TREE_TYPE (fntype))
15617 && !dependent_type_p (TREE_TYPE (fntype))
15618 && !current_function_returns_value && !current_function_returns_null
15619 /* Don't complain if we abort or throw. */
15620 && !current_function_returns_abnormally
15621 /* Don't complain if there's an infinite loop. */
15622 && !current_function_infinite_loop
15623 /* Don't complain if we are declared noreturn. */
15624 && !TREE_THIS_VOLATILE (fndecl)
15625 && !DECL_NAME (DECL_RESULT (fndecl))
15626 && !TREE_NO_WARNING (fndecl)
15627 /* Structor return values (if any) are set by the compiler. */
15628 && !DECL_CONSTRUCTOR_P (fndecl)
15629 && !DECL_DESTRUCTOR_P (fndecl)
15630 && targetm.warn_func_return (fndecl))
15631 {
15632 warning (OPT_Wreturn_type,
15633 "no return statement in function returning non-void");
15634 TREE_NO_WARNING (fndecl) = 1;
15635 }
15636
15637 /* Store the end of the function, so that we get good line number
15638 info for the epilogue. */
15639 cfun->function_end_locus = input_location;
15640
15641 /* Complain about parameters that are only set, but never otherwise used. */
15642 if (warn_unused_but_set_parameter
15643 && !processing_template_decl
15644 && errorcount == unused_but_set_errorcount
15645 && !DECL_CLONED_FUNCTION_P (fndecl))
15646 {
15647 tree decl;
15648
15649 for (decl = DECL_ARGUMENTS (fndecl);
15650 decl;
15651 decl = DECL_CHAIN (decl))
15652 if (TREE_USED (decl)
15653 && TREE_CODE (decl) == PARM_DECL
15654 && !DECL_READ_P (decl)
15655 && DECL_NAME (decl)
15656 && !DECL_ARTIFICIAL (decl)
15657 && !TREE_NO_WARNING (decl)
15658 && !DECL_IN_SYSTEM_HEADER (decl)
15659 && TREE_TYPE (decl) != error_mark_node
15660 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
15661 && (!CLASS_TYPE_P (TREE_TYPE (decl))
15662 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
15663 warning_at (DECL_SOURCE_LOCATION (decl),
15664 OPT_Wunused_but_set_parameter,
15665 "parameter %qD set but not used", decl);
15666 unused_but_set_errorcount = errorcount;
15667 }
15668
15669 /* Complain about locally defined typedefs that are not used in this
15670 function. */
15671 maybe_warn_unused_local_typedefs ();
15672
15673 /* Possibly warn about unused parameters. */
15674 if (warn_unused_parameter
15675 && !processing_template_decl
15676 && !DECL_CLONED_FUNCTION_P (fndecl))
15677 do_warn_unused_parameter (fndecl);
15678
15679 /* Genericize before inlining. */
15680 if (!processing_template_decl)
15681 {
15682 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
15683 cp_genericize (fndecl);
15684 /* Clear out the bits we don't need. */
15685 f->x_current_class_ptr = NULL;
15686 f->x_current_class_ref = NULL;
15687 f->x_eh_spec_block = NULL;
15688 f->x_in_charge_parm = NULL;
15689 f->x_vtt_parm = NULL;
15690 f->x_return_value = NULL;
15691 f->bindings = NULL;
15692 f->extern_decl_map = NULL;
15693 f->infinite_loops = NULL;
15694 }
15695 /* Clear out the bits we don't need. */
15696 local_names = NULL;
15697
15698 /* We're leaving the context of this function, so zap cfun. It's still in
15699 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
15700 set_cfun (NULL);
15701 current_function_decl = NULL;
15702
15703 /* If this is an in-class inline definition, we may have to pop the
15704 bindings for the template parameters that we added in
15705 maybe_begin_member_template_processing when start_function was
15706 called. */
15707 if (inline_p)
15708 maybe_end_member_template_processing ();
15709
15710 /* Leave the scope of the class. */
15711 if (ctype)
15712 pop_nested_class ();
15713
15714 --function_depth;
15715
15716 /* Clean up. */
15717 current_function_decl = NULL_TREE;
15718
15719 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
15720 return fndecl;
15721 }
15722 \f
15723 /* Create the FUNCTION_DECL for a function definition.
15724 DECLSPECS and DECLARATOR are the parts of the declaration;
15725 they describe the return type and the name of the function,
15726 but twisted together in a fashion that parallels the syntax of C.
15727
15728 This function creates a binding context for the function body
15729 as well as setting up the FUNCTION_DECL in current_function_decl.
15730
15731 Returns a FUNCTION_DECL on success.
15732
15733 If the DECLARATOR is not suitable for a function (it defines a datum
15734 instead), we return 0, which tells yyparse to report a parse error.
15735
15736 May return void_type_node indicating that this method is actually
15737 a friend. See grokfield for more details.
15738
15739 Came here with a `.pushlevel' .
15740
15741 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
15742 CHANGES TO CODE IN `grokfield'. */
15743
15744 tree
15745 grokmethod (cp_decl_specifier_seq *declspecs,
15746 const cp_declarator *declarator, tree attrlist)
15747 {
15748 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
15749 &attrlist);
15750
15751 if (fndecl == error_mark_node)
15752 return error_mark_node;
15753
15754 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
15755 {
15756 error ("invalid member function declaration");
15757 return error_mark_node;
15758 }
15759
15760 if (attrlist)
15761 cplus_decl_attributes (&fndecl, attrlist, 0);
15762
15763 /* Pass friends other than inline friend functions back. */
15764 if (fndecl == void_type_node)
15765 return fndecl;
15766
15767 if (DECL_IN_AGGR_P (fndecl))
15768 {
15769 if (DECL_CLASS_SCOPE_P (fndecl))
15770 error ("%qD is already defined in class %qT", fndecl,
15771 DECL_CONTEXT (fndecl));
15772 return error_mark_node;
15773 }
15774
15775 check_template_shadow (fndecl);
15776
15777 if (TREE_PUBLIC (fndecl))
15778 DECL_COMDAT (fndecl) = 1;
15779 DECL_DECLARED_INLINE_P (fndecl) = 1;
15780 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
15781
15782 /* We process method specializations in finish_struct_1. */
15783 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
15784 {
15785 fndecl = push_template_decl (fndecl);
15786 if (fndecl == error_mark_node)
15787 return fndecl;
15788 }
15789
15790 if (! DECL_FRIEND_P (fndecl))
15791 {
15792 if (DECL_CHAIN (fndecl))
15793 {
15794 fndecl = copy_node (fndecl);
15795 TREE_CHAIN (fndecl) = NULL_TREE;
15796 }
15797 }
15798
15799 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
15800
15801 DECL_IN_AGGR_P (fndecl) = 1;
15802 return fndecl;
15803 }
15804 \f
15805
15806 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
15807 we can lay it out later, when and if its type becomes complete.
15808
15809 Also handle constexpr variables where the initializer involves
15810 an unlowered PTRMEM_CST because the class isn't complete yet. */
15811
15812 void
15813 maybe_register_incomplete_var (tree var)
15814 {
15815 gcc_assert (VAR_P (var));
15816
15817 /* Keep track of variables with incomplete types. */
15818 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
15819 && DECL_EXTERNAL (var))
15820 {
15821 tree inner_type = TREE_TYPE (var);
15822
15823 while (TREE_CODE (inner_type) == ARRAY_TYPE)
15824 inner_type = TREE_TYPE (inner_type);
15825 inner_type = TYPE_MAIN_VARIANT (inner_type);
15826
15827 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
15828 /* RTTI TD entries are created while defining the type_info. */
15829 || (TYPE_LANG_SPECIFIC (inner_type)
15830 && TYPE_BEING_DEFINED (inner_type)))
15831 {
15832 incomplete_var iv = {var, inner_type};
15833 vec_safe_push (incomplete_vars, iv);
15834 }
15835 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
15836 && decl_constant_var_p (var)
15837 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
15838 {
15839 /* When the outermost open class is complete we can resolve any
15840 pointers-to-members. */
15841 tree context = outermost_open_class ();
15842 incomplete_var iv = {var, context};
15843 vec_safe_push (incomplete_vars, iv);
15844 }
15845 }
15846 }
15847
15848 /* Called when a class type (given by TYPE) is defined. If there are
15849 any existing VAR_DECLs whose type has been completed by this
15850 declaration, update them now. */
15851
15852 void
15853 complete_vars (tree type)
15854 {
15855 unsigned ix;
15856 incomplete_var *iv;
15857
15858 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
15859 {
15860 if (same_type_p (type, iv->incomplete_type))
15861 {
15862 tree var = iv->decl;
15863 tree type = TREE_TYPE (var);
15864
15865 if (type != error_mark_node
15866 && (TYPE_MAIN_VARIANT (strip_array_types (type))
15867 == iv->incomplete_type))
15868 {
15869 /* Complete the type of the variable. The VAR_DECL itself
15870 will be laid out in expand_expr. */
15871 complete_type (type);
15872 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
15873 }
15874
15875 /* Remove this entry from the list. */
15876 incomplete_vars->unordered_remove (ix);
15877 }
15878 else
15879 ix++;
15880 }
15881
15882 /* Check for pending declarations which may have abstract type. */
15883 complete_type_check_abstract (type);
15884 }
15885
15886 /* If DECL is of a type which needs a cleanup, build and return an
15887 expression to perform that cleanup here. Return NULL_TREE if no
15888 cleanup need be done. DECL can also be a _REF when called from
15889 split_nonconstant_init_1. */
15890
15891 tree
15892 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
15893 {
15894 tree type;
15895 tree attr;
15896 tree cleanup;
15897
15898 /* Assume no cleanup is required. */
15899 cleanup = NULL_TREE;
15900
15901 if (error_operand_p (decl))
15902 return cleanup;
15903
15904 /* Handle "__attribute__((cleanup))". We run the cleanup function
15905 before the destructor since the destructor is what actually
15906 terminates the lifetime of the object. */
15907 if (DECL_P (decl))
15908 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
15909 else
15910 attr = NULL_TREE;
15911 if (attr)
15912 {
15913 tree id;
15914 tree fn;
15915 tree arg;
15916
15917 /* Get the name specified by the user for the cleanup function. */
15918 id = TREE_VALUE (TREE_VALUE (attr));
15919 /* Look up the name to find the cleanup function to call. It is
15920 important to use lookup_name here because that is what is
15921 used in c-common.c:handle_cleanup_attribute when performing
15922 initial checks on the attribute. Note that those checks
15923 include ensuring that the function found is not an overloaded
15924 function, or an object with an overloaded call operator,
15925 etc.; we can rely on the fact that the function found is an
15926 ordinary FUNCTION_DECL. */
15927 fn = lookup_name (id);
15928 arg = build_address (decl);
15929 if (!mark_used (decl, complain) && !(complain & tf_error))
15930 return error_mark_node;
15931 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
15932 if (cleanup == error_mark_node)
15933 return error_mark_node;
15934 }
15935 /* Handle ordinary C++ destructors. */
15936 type = TREE_TYPE (decl);
15937 if (type_build_dtor_call (type))
15938 {
15939 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
15940 tree addr;
15941 tree call;
15942
15943 if (TREE_CODE (type) == ARRAY_TYPE)
15944 addr = decl;
15945 else
15946 addr = build_address (decl);
15947
15948 call = build_delete (TREE_TYPE (addr), addr,
15949 sfk_complete_destructor, flags, 0, complain);
15950 if (call == error_mark_node)
15951 cleanup = error_mark_node;
15952 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
15953 /* Discard the call. */;
15954 else if (cleanup)
15955 cleanup = cp_build_compound_expr (cleanup, call, complain);
15956 else
15957 cleanup = call;
15958 }
15959
15960 /* build_delete sets the location of the destructor call to the
15961 current location, even though the destructor is going to be
15962 called later, at the end of the current scope. This can lead to
15963 a "jumpy" behavior for users of debuggers when they step around
15964 the end of the block. So let's unset the location of the
15965 destructor call instead. */
15966 protected_set_expr_location (cleanup, UNKNOWN_LOCATION);
15967
15968 if (cleanup
15969 && DECL_P (decl)
15970 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
15971 /* Treat objects with destructors as used; the destructor may do
15972 something substantive. */
15973 && !mark_used (decl, complain) && !(complain & tf_error))
15974 return error_mark_node;
15975
15976 return cleanup;
15977 }
15978
15979 \f
15980 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
15981 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
15982 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
15983
15984 tree
15985 static_fn_type (tree memfntype)
15986 {
15987 tree fntype;
15988 tree args;
15989
15990 if (TYPE_PTRMEMFUNC_P (memfntype))
15991 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
15992 if (POINTER_TYPE_P (memfntype)
15993 || TREE_CODE (memfntype) == FUNCTION_DECL)
15994 memfntype = TREE_TYPE (memfntype);
15995 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
15996 return memfntype;
15997 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
15998 args = TYPE_ARG_TYPES (memfntype);
15999 cp_ref_qualifier rqual = type_memfn_rqual (memfntype);
16000 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
16001 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype), rqual);
16002 fntype = (cp_build_type_attribute_variant
16003 (fntype, TYPE_ATTRIBUTES (memfntype)));
16004 fntype = (build_exception_variant
16005 (fntype, TYPE_RAISES_EXCEPTIONS (memfntype)));
16006 if (TYPE_HAS_LATE_RETURN_TYPE (memfntype))
16007 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
16008 return fntype;
16009 }
16010
16011 /* DECL was originally constructed as a non-static member function,
16012 but turned out to be static. Update it accordingly. */
16013
16014 void
16015 revert_static_member_fn (tree decl)
16016 {
16017 tree stype = static_fn_type (decl);
16018 cp_cv_quals quals = type_memfn_quals (stype);
16019 cp_ref_qualifier rqual = type_memfn_rqual (stype);
16020
16021 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
16022 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
16023
16024 TREE_TYPE (decl) = stype;
16025
16026 if (DECL_ARGUMENTS (decl))
16027 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
16028 DECL_STATIC_FUNCTION_P (decl) = 1;
16029 }
16030
16031 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
16032 one of the language-independent trees. */
16033
16034 enum cp_tree_node_structure_enum
16035 cp_tree_node_structure (union lang_tree_node * t)
16036 {
16037 switch (TREE_CODE (&t->generic))
16038 {
16039 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
16040 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
16041 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
16042 case OVERLOAD: return TS_CP_OVERLOAD;
16043 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
16044 case PTRMEM_CST: return TS_CP_PTRMEM;
16045 case BASELINK: return TS_CP_BASELINK;
16046 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
16047 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
16048 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
16049 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
16050 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
16051 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
16052 case CONSTRAINT_INFO: return TS_CP_CONSTRAINT_INFO;
16053 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
16054 default: return TS_CP_GENERIC;
16055 }
16056 }
16057
16058 /* Build the void_list_node (void_type_node having been created). */
16059 tree
16060 build_void_list_node (void)
16061 {
16062 tree t = build_tree_list (NULL_TREE, void_type_node);
16063 return t;
16064 }
16065
16066 bool
16067 cp_missing_noreturn_ok_p (tree decl)
16068 {
16069 /* A missing noreturn is ok for the `main' function. */
16070 return DECL_MAIN_P (decl);
16071 }
16072
16073 /* Return the decl used to identify the COMDAT group into which DECL should
16074 be placed. */
16075
16076 tree
16077 cxx_comdat_group (tree decl)
16078 {
16079 /* Virtual tables, construction virtual tables, and virtual table
16080 tables all go in a single COMDAT group, named after the primary
16081 virtual table. */
16082 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
16083 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
16084 /* For all other DECLs, the COMDAT group is the mangled name of the
16085 declaration itself. */
16086 else
16087 {
16088 while (DECL_THUNK_P (decl))
16089 {
16090 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
16091 into the same section as the target function. In that case
16092 we must return target's name. */
16093 tree target = THUNK_TARGET (decl);
16094 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
16095 && DECL_SECTION_NAME (target) != NULL
16096 && DECL_ONE_ONLY (target))
16097 decl = target;
16098 else
16099 break;
16100 }
16101 }
16102
16103 return decl;
16104 }
16105
16106 /* Returns the return type for FN as written by the user, which may include
16107 a placeholder for a deduced return type. */
16108
16109 tree
16110 fndecl_declared_return_type (tree fn)
16111 {
16112 fn = STRIP_TEMPLATE (fn);
16113 if (FNDECL_USED_AUTO (fn))
16114 {
16115 struct language_function *f = NULL;
16116 if (DECL_STRUCT_FUNCTION (fn))
16117 f = DECL_STRUCT_FUNCTION (fn)->language;
16118 if (f == NULL)
16119 f = DECL_SAVED_FUNCTION_DATA (fn);
16120 return f->x_auto_return_pattern;
16121 }
16122 return TREE_TYPE (TREE_TYPE (fn));
16123 }
16124
16125 /* Returns true iff DECL was declared with an auto type and it has
16126 not yet been deduced to a real type. */
16127
16128 bool
16129 undeduced_auto_decl (tree decl)
16130 {
16131 if (cxx_dialect < cxx11)
16132 return false;
16133 return type_uses_auto (TREE_TYPE (decl));
16134 }
16135
16136 /* Complain if DECL has an undeduced return type. */
16137
16138 bool
16139 require_deduced_type (tree decl, tsubst_flags_t complain)
16140 {
16141 if (undeduced_auto_decl (decl))
16142 {
16143 if (complain & tf_error)
16144 error ("use of %qD before deduction of %<auto%>", decl);
16145 return false;
16146 }
16147 return true;
16148 }
16149
16150 #include "gt-cp-decl.h"