re PR c++/71665 (ICE on invalid C++ code with non-integral constant enumerator value...
[official-gcc.git] / gcc / cp / decl.c
blobc7bad41c99b79ddc4906eecf66d1aefc0b876ce3
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988-2016 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 /* Process declarations and symbol lookup for C++ front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "target.h"
33 #include "c-family/c-target.h"
34 #include "cp-tree.h"
35 #include "timevar.h"
36 #include "stringpool.h"
37 #include "cgraph.h"
38 #include "stor-layout.h"
39 #include "varasm.h"
40 #include "attribs.h"
41 #include "flags.h"
42 #include "tree-iterator.h"
43 #include "decl.h"
44 #include "intl.h"
45 #include "toplev.h"
46 #include "c-family/c-objc.h"
47 #include "c-family/c-pragma.h"
48 #include "c-family/c-ubsan.h"
49 #include "debug.h"
50 #include "plugin.h"
51 #include "cilk.h"
52 #include "builtins.h"
54 /* Possible cases of bad specifiers type used by bad_specifiers. */
55 enum bad_spec_place {
56 BSP_VAR, /* variable */
57 BSP_PARM, /* parameter */
58 BSP_TYPE, /* type */
59 BSP_FIELD /* field */
62 static const char *redeclaration_error_message (tree, tree);
64 static int decl_jump_unsafe (tree);
65 static void require_complete_types_for_parms (tree);
66 static int ambi_op_p (enum tree_code);
67 static int unary_op_p (enum tree_code);
68 static void push_local_name (tree);
69 static tree grok_reference_init (tree, tree, tree, int);
70 static tree grokvardecl (tree, tree, tree, const cp_decl_specifier_seq *,
71 int, int, int, tree);
72 static int check_static_variable_definition (tree, tree);
73 static void record_unknown_type (tree, const char *);
74 static tree builtin_function_1 (tree, tree, bool);
75 static int member_function_or_else (tree, tree, enum overload_flags);
76 static void bad_specifiers (tree, enum bad_spec_place, int, int, int, int,
77 int);
78 static void check_for_uninitialized_const_var (tree);
79 static tree local_variable_p_walkfn (tree *, int *, void *);
80 static tree record_builtin_java_type (const char *, int);
81 static const char *tag_name (enum tag_types);
82 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
83 static int walk_namespaces_r (tree, walk_namespaces_fn, void *);
84 static void maybe_deduce_size_from_array_init (tree, tree);
85 static void layout_var_decl (tree);
86 static tree check_initializer (tree, tree, int, vec<tree, va_gc> **);
87 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
88 static void save_function_data (tree);
89 static void copy_type_enum (tree , tree);
90 static void check_function_type (tree, tree);
91 static void finish_constructor_body (void);
92 static void begin_destructor_body (void);
93 static void finish_destructor_body (void);
94 static void record_key_method_defined (tree);
95 static tree create_array_type_for_decl (tree, tree, tree);
96 static tree get_atexit_node (void);
97 static tree get_dso_handle_node (void);
98 static tree start_cleanup_fn (void);
99 static void end_cleanup_fn (void);
100 static tree cp_make_fname_decl (location_t, tree, int);
101 static void initialize_predefined_identifiers (void);
102 static tree check_special_function_return_type
103 (special_function_kind, tree, tree, int, const location_t*);
104 static tree push_cp_library_fn (enum tree_code, tree, int);
105 static tree build_cp_library_fn (tree, enum tree_code, tree, int);
106 static void store_parm_decls (tree);
107 static void initialize_local_var (tree, tree);
108 static void expand_static_init (tree, tree);
110 /* The following symbols are subsumed in the cp_global_trees array, and
111 listed here individually for documentation purposes.
113 C++ extensions
114 tree wchar_decl_node;
116 tree vtable_entry_type;
117 tree delta_type_node;
118 tree __t_desc_type_node;
120 tree class_type_node;
121 tree unknown_type_node;
123 Array type `vtable_entry_type[]'
125 tree vtbl_type_node;
126 tree vtbl_ptr_type_node;
128 Namespaces,
130 tree std_node;
131 tree abi_node;
133 A FUNCTION_DECL which can call `abort'. Not necessarily the
134 one that the user will declare, but sufficient to be called
135 by routines that want to abort the program.
137 tree abort_fndecl;
139 Used by RTTI
140 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
141 tree tinfo_var_id; */
143 tree cp_global_trees[CPTI_MAX];
145 /* Indicates that there is a type value in some namespace, although
146 that is not necessarily in scope at the moment. */
148 tree global_type_node;
150 /* The node that holds the "name" of the global scope. */
151 tree global_scope_name;
153 #define local_names cp_function_chain->x_local_names
155 /* A list of objects which have constructors or destructors
156 which reside in the global scope. The decl is stored in
157 the TREE_VALUE slot and the initializer is stored
158 in the TREE_PURPOSE slot. */
159 tree static_aggregates;
161 /* Like static_aggregates, but for thread_local variables. */
162 tree tls_aggregates;
164 /* -- end of C++ */
166 /* A node for the integer constant 2. */
168 tree integer_two_node;
170 /* Used only for jumps to as-yet undefined labels, since jumps to
171 defined labels can have their validity checked immediately. */
173 struct GTY((chain_next ("%h.next"))) named_label_use_entry {
174 struct named_label_use_entry *next;
175 /* The binding level to which this entry is *currently* attached.
176 This is initially the binding level in which the goto appeared,
177 but is modified as scopes are closed. */
178 cp_binding_level *binding_level;
179 /* The head of the names list that was current when the goto appeared,
180 or the inner scope popped. These are the decls that will *not* be
181 skipped when jumping to the label. */
182 tree names_in_scope;
183 /* The location of the goto, for error reporting. */
184 location_t o_goto_locus;
185 /* True if an OpenMP structured block scope has been closed since
186 the goto appeared. This means that the branch from the label will
187 illegally exit an OpenMP scope. */
188 bool in_omp_scope;
191 /* A list of all LABEL_DECLs in the function that have names. Here so
192 we can clear out their names' definitions at the end of the
193 function, and so we can check the validity of jumps to these labels. */
195 struct GTY((for_user)) named_label_entry {
196 /* The decl itself. */
197 tree label_decl;
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 /* The head of the names list that was current when the label was
204 defined, or the inner scope popped. These are the decls that will
205 be skipped when jumping to the label. */
206 tree names_in_scope;
207 /* A vector of all decls from all binding levels that would be
208 crossed by a backward branch to the label. */
209 vec<tree, va_gc> *bad_decls;
211 /* A list of uses of the label, before the label is defined. */
212 struct named_label_use_entry *uses;
214 /* The following bits are set after the label is defined, and are
215 updated as scopes are popped. They indicate that a backward jump
216 to the label will illegally enter a scope of the given flavor. */
217 bool in_try_scope;
218 bool in_catch_scope;
219 bool in_omp_scope;
220 bool in_transaction_scope;
223 #define named_labels cp_function_chain->x_named_labels
225 /* The number of function bodies which we are currently processing.
226 (Zero if we are at namespace scope, one inside the body of a
227 function, two inside the body of a function in a local class, etc.) */
228 int function_depth;
230 /* States indicating how grokdeclarator() should handle declspecs marked
231 with __attribute__((deprecated)). An object declared as
232 __attribute__((deprecated)) suppresses warnings of uses of other
233 deprecated items. */
234 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
237 /* A list of VAR_DECLs whose type was incomplete at the time the
238 variable was declared. */
240 struct GTY(()) incomplete_var {
241 tree decl;
242 tree incomplete_type;
246 static GTY(()) vec<incomplete_var, va_gc> *incomplete_vars;
248 /* Returns the kind of template specialization we are currently
249 processing, given that it's declaration contained N_CLASS_SCOPES
250 explicit scope qualifications. */
252 tmpl_spec_kind
253 current_tmpl_spec_kind (int n_class_scopes)
255 int n_template_parm_scopes = 0;
256 int seen_specialization_p = 0;
257 int innermost_specialization_p = 0;
258 cp_binding_level *b;
260 /* Scan through the template parameter scopes. */
261 for (b = current_binding_level;
262 b->kind == sk_template_parms;
263 b = b->level_chain)
265 /* If we see a specialization scope inside a parameter scope,
266 then something is wrong. That corresponds to a declaration
267 like:
269 template <class T> template <> ...
271 which is always invalid since [temp.expl.spec] forbids the
272 specialization of a class member template if the enclosing
273 class templates are not explicitly specialized as well. */
274 if (b->explicit_spec_p)
276 if (n_template_parm_scopes == 0)
277 innermost_specialization_p = 1;
278 else
279 seen_specialization_p = 1;
281 else if (seen_specialization_p == 1)
282 return tsk_invalid_member_spec;
284 ++n_template_parm_scopes;
287 /* Handle explicit instantiations. */
288 if (processing_explicit_instantiation)
290 if (n_template_parm_scopes != 0)
291 /* We've seen a template parameter list during an explicit
292 instantiation. For example:
294 template <class T> template void f(int);
296 This is erroneous. */
297 return tsk_invalid_expl_inst;
298 else
299 return tsk_expl_inst;
302 if (n_template_parm_scopes < n_class_scopes)
303 /* We've not seen enough template headers to match all the
304 specialized classes present. For example:
306 template <class T> void R<T>::S<T>::f(int);
308 This is invalid; there needs to be one set of template
309 parameters for each class. */
310 return tsk_insufficient_parms;
311 else if (n_template_parm_scopes == n_class_scopes)
312 /* We're processing a non-template declaration (even though it may
313 be a member of a template class.) For example:
315 template <class T> void S<T>::f(int);
317 The `class T' matches the `S<T>', leaving no template headers
318 corresponding to the `f'. */
319 return tsk_none;
320 else if (n_template_parm_scopes > n_class_scopes + 1)
321 /* We've got too many template headers. For example:
323 template <> template <class T> void f (T);
325 There need to be more enclosing classes. */
326 return tsk_excessive_parms;
327 else
328 /* This must be a template. It's of the form:
330 template <class T> template <class U> void S<T>::f(U);
332 This is a specialization if the innermost level was a
333 specialization; otherwise it's just a definition of the
334 template. */
335 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
338 /* Exit the current scope. */
340 void
341 finish_scope (void)
343 poplevel (0, 0, 0);
346 /* When a label goes out of scope, check to see if that label was used
347 in a valid manner, and issue any appropriate warnings or errors. */
349 static void
350 pop_label (tree label, tree old_value)
352 if (!processing_template_decl)
354 if (DECL_INITIAL (label) == NULL_TREE)
356 location_t location;
358 error ("label %q+D used but not defined", label);
359 location = input_location;
360 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
361 /* Avoid crashing later. */
362 define_label (location, DECL_NAME (label));
364 else
365 warn_for_unused_label (label);
368 SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), old_value);
371 /* Push all named labels into a vector, so that we can sort it on DECL_UID
372 to avoid code generation differences. */
375 note_label (named_label_entry **slot, vec<named_label_entry **> &labels)
377 labels.quick_push (slot);
378 return 1;
381 /* Helper function to sort named label entries in a vector by DECL_UID. */
383 static int
384 sort_labels (const void *a, const void *b)
386 named_label_entry **slot1 = *(named_label_entry **const *) a;
387 named_label_entry **slot2 = *(named_label_entry **const *) b;
388 if (DECL_UID ((*slot1)->label_decl) < DECL_UID ((*slot2)->label_decl))
389 return -1;
390 if (DECL_UID ((*slot1)->label_decl) > DECL_UID ((*slot2)->label_decl))
391 return 1;
392 return 0;
395 /* At the end of a function, all labels declared within the function
396 go out of scope. BLOCK is the top-level block for the
397 function. */
399 static void
400 pop_labels (tree block)
402 if (named_labels)
404 auto_vec<named_label_entry **, 32> labels;
405 named_label_entry **slot;
406 unsigned int i;
408 /* Push all the labels into a vector and sort them by DECL_UID,
409 so that gaps between DECL_UIDs don't affect code generation. */
410 labels.reserve_exact (named_labels->elements ());
411 named_labels->traverse<vec<named_label_entry **> &, note_label> (labels);
412 labels.qsort (sort_labels);
413 FOR_EACH_VEC_ELT (labels, i, slot)
415 struct named_label_entry *ent = *slot;
417 pop_label (ent->label_decl, NULL_TREE);
419 /* Put the labels into the "variables" of the top-level block,
420 so debugger can see them. */
421 DECL_CHAIN (ent->label_decl) = BLOCK_VARS (block);
422 BLOCK_VARS (block) = ent->label_decl;
424 named_labels->clear_slot (slot);
426 named_labels = NULL;
430 /* At the end of a block with local labels, restore the outer definition. */
432 static void
433 pop_local_label (tree label, tree old_value)
435 struct named_label_entry dummy;
437 pop_label (label, old_value);
439 dummy.label_decl = label;
440 named_label_entry **slot = named_labels->find_slot (&dummy, NO_INSERT);
441 named_labels->clear_slot (slot);
444 /* The following two routines are used to interface to Objective-C++.
445 The binding level is purposely treated as an opaque type. */
447 void *
448 objc_get_current_scope (void)
450 return current_binding_level;
453 /* The following routine is used by the NeXT-style SJLJ exceptions;
454 variables get marked 'volatile' so as to not be clobbered by
455 _setjmp()/_longjmp() calls. All variables in the current scope,
456 as well as parent scopes up to (but not including) ENCLOSING_BLK
457 shall be thusly marked. */
459 void
460 objc_mark_locals_volatile (void *enclosing_blk)
462 cp_binding_level *scope;
464 for (scope = current_binding_level;
465 scope && scope != enclosing_blk;
466 scope = scope->level_chain)
468 tree decl;
470 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
471 objc_volatilize_decl (decl);
473 /* Do not climb up past the current function. */
474 if (scope->kind == sk_function_parms)
475 break;
479 /* Update data for defined and undefined labels when leaving a scope. */
482 poplevel_named_label_1 (named_label_entry **slot, cp_binding_level *bl)
484 named_label_entry *ent = *slot;
485 cp_binding_level *obl = bl->level_chain;
487 if (ent->binding_level == bl)
489 tree decl;
491 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
492 TREE_LISTs representing OVERLOADs, so be careful. */
493 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
494 ? DECL_CHAIN (decl)
495 : TREE_CHAIN (decl)))
496 if (decl_jump_unsafe (decl))
497 vec_safe_push (ent->bad_decls, decl);
499 ent->binding_level = obl;
500 ent->names_in_scope = obl->names;
501 switch (bl->kind)
503 case sk_try:
504 ent->in_try_scope = true;
505 break;
506 case sk_catch:
507 ent->in_catch_scope = true;
508 break;
509 case sk_omp:
510 ent->in_omp_scope = true;
511 break;
512 case sk_transaction:
513 ent->in_transaction_scope = true;
514 break;
515 default:
516 break;
519 else if (ent->uses)
521 struct named_label_use_entry *use;
523 for (use = ent->uses; use ; use = use->next)
524 if (use->binding_level == bl)
526 use->binding_level = obl;
527 use->names_in_scope = obl->names;
528 if (bl->kind == sk_omp)
529 use->in_omp_scope = true;
533 return 1;
536 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
537 when errors were reported, except for -Werror-unused-but-set-*. */
538 static int unused_but_set_errorcount;
540 /* Exit a binding level.
541 Pop the level off, and restore the state of the identifier-decl mappings
542 that were in effect when this level was entered.
544 If KEEP == 1, this level had explicit declarations, so
545 and create a "block" (a BLOCK node) for the level
546 to record its declarations and subblocks for symbol table output.
548 If FUNCTIONBODY is nonzero, this level is the body of a function,
549 so create a block as if KEEP were set and also clear out all
550 label names.
552 If REVERSE is nonzero, reverse the order of decls before putting
553 them into the BLOCK. */
555 tree
556 poplevel (int keep, int reverse, int functionbody)
558 tree link;
559 /* The chain of decls was accumulated in reverse order.
560 Put it into forward order, just for cleanliness. */
561 tree decls;
562 tree subblocks;
563 tree block;
564 tree decl;
565 int leaving_for_scope;
566 scope_kind kind;
567 unsigned ix;
568 cp_label_binding *label_bind;
570 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
571 restart:
573 block = NULL_TREE;
575 gcc_assert (current_binding_level->kind != sk_class);
577 if (current_binding_level->kind == sk_cleanup)
578 functionbody = 0;
579 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
581 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
583 /* We used to use KEEP == 2 to indicate that the new block should go
584 at the beginning of the list of blocks at this binding level,
585 rather than the end. This hack is no longer used. */
586 gcc_assert (keep == 0 || keep == 1);
588 if (current_binding_level->keep)
589 keep = 1;
591 /* Any uses of undefined labels, and any defined labels, now operate
592 under constraints of next binding contour. */
593 if (cfun && !functionbody && named_labels)
594 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
595 (current_binding_level);
597 /* Get the decls in the order they were written.
598 Usually current_binding_level->names is in reverse order.
599 But parameter decls were previously put in forward order. */
601 if (reverse)
602 current_binding_level->names
603 = decls = nreverse (current_binding_level->names);
604 else
605 decls = current_binding_level->names;
607 /* If there were any declarations or structure tags in that level,
608 or if this level is a function body,
609 create a BLOCK to record them for the life of this function. */
610 block = NULL_TREE;
611 /* Avoid function body block if possible. */
612 if (functionbody && subblocks && BLOCK_CHAIN (subblocks) == NULL_TREE)
613 keep = 0;
614 else if (keep == 1 || functionbody)
615 block = make_node (BLOCK);
616 if (block != NULL_TREE)
618 BLOCK_VARS (block) = decls;
619 BLOCK_SUBBLOCKS (block) = subblocks;
622 /* In each subblock, record that this is its superior. */
623 if (keep >= 0)
624 for (link = subblocks; link; link = BLOCK_CHAIN (link))
625 BLOCK_SUPERCONTEXT (link) = block;
627 /* We still support the old for-scope rules, whereby the variables
628 in a for-init statement were in scope after the for-statement
629 ended. We only use the new rules if flag_new_for_scope is
630 nonzero. */
631 leaving_for_scope
632 = current_binding_level->kind == sk_for && flag_new_for_scope == 1;
634 /* Before we remove the declarations first check for unused variables. */
635 if ((warn_unused_variable || warn_unused_but_set_variable)
636 && current_binding_level->kind != sk_template_parms
637 && !processing_template_decl)
638 for (tree d = getdecls (); d; d = TREE_CHAIN (d))
640 /* There are cases where D itself is a TREE_LIST. See in
641 push_local_binding where the list of decls returned by
642 getdecls is built. */
643 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
644 tree type = TREE_TYPE (decl);
645 if (VAR_P (decl)
646 && (! TREE_USED (decl) || !DECL_READ_P (decl))
647 && ! DECL_IN_SYSTEM_HEADER (decl)
648 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl)
649 && type != error_mark_node
650 && (!CLASS_TYPE_P (type)
651 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
652 || lookup_attribute ("warn_unused",
653 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
655 if (! TREE_USED (decl))
656 warning_at (DECL_SOURCE_LOCATION (decl),
657 OPT_Wunused_variable, "unused variable %qD", decl);
658 else if (DECL_CONTEXT (decl) == current_function_decl
659 // For -Wunused-but-set-variable leave references alone.
660 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
661 && errorcount == unused_but_set_errorcount)
663 warning_at (DECL_SOURCE_LOCATION (decl),
664 OPT_Wunused_but_set_variable,
665 "variable %qD set but not used", decl);
666 unused_but_set_errorcount = errorcount;
671 /* Remove declarations for all the DECLs in this level. */
672 for (link = decls; link; link = TREE_CHAIN (link))
674 if (leaving_for_scope && VAR_P (link)
675 /* It's hard to make this ARM compatibility hack play nicely with
676 lambdas, and it really isn't necessary in C++11 mode. */
677 && cxx_dialect < cxx11
678 && DECL_NAME (link))
680 tree name = DECL_NAME (link);
681 cxx_binding *ob;
682 tree ns_binding;
684 ob = outer_binding (name,
685 IDENTIFIER_BINDING (name),
686 /*class_p=*/true);
687 if (!ob)
688 ns_binding = IDENTIFIER_NAMESPACE_VALUE (name);
689 else
690 ns_binding = NULL_TREE;
692 if (ob && ob->scope == current_binding_level->level_chain)
693 /* We have something like:
695 int i;
696 for (int i; ;);
698 and we are leaving the `for' scope. There's no reason to
699 keep the binding of the inner `i' in this case. */
700 pop_binding (name, link);
701 else if ((ob && (TREE_CODE (ob->value) == TYPE_DECL))
702 || (ns_binding && TREE_CODE (ns_binding) == TYPE_DECL))
703 /* Here, we have something like:
705 typedef int I;
707 void f () {
708 for (int I; ;);
711 We must pop the for-scope binding so we know what's a
712 type and what isn't. */
713 pop_binding (name, link);
714 else
716 /* Mark this VAR_DECL as dead so that we can tell we left it
717 there only for backward compatibility. */
718 DECL_DEAD_FOR_LOCAL (link) = 1;
720 /* Keep track of what should have happened when we
721 popped the binding. */
722 if (ob && ob->value)
724 SET_DECL_SHADOWED_FOR_VAR (link, ob->value);
725 DECL_HAS_SHADOWED_FOR_VAR_P (link) = 1;
728 /* Add it to the list of dead variables in the next
729 outermost binding to that we can remove these when we
730 leave that binding. */
731 vec_safe_push (
732 current_binding_level->level_chain->dead_vars_from_for,
733 link);
735 /* Although we don't pop the cxx_binding, we do clear
736 its SCOPE since the scope is going away now. */
737 IDENTIFIER_BINDING (name)->scope
738 = current_binding_level->level_chain;
741 else
743 tree name;
745 /* Remove the binding. */
746 decl = link;
748 if (TREE_CODE (decl) == TREE_LIST)
749 decl = TREE_VALUE (decl);
750 name = decl;
752 if (TREE_CODE (name) == OVERLOAD)
753 name = OVL_FUNCTION (name);
755 gcc_assert (DECL_P (name));
756 pop_binding (DECL_NAME (name), decl);
760 /* Remove declarations for any `for' variables from inner scopes
761 that we kept around. */
762 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->dead_vars_from_for,
763 ix, decl)
764 pop_binding (DECL_NAME (decl), decl);
766 /* Restore the IDENTIFIER_TYPE_VALUEs. */
767 for (link = current_binding_level->type_shadowed;
768 link; link = TREE_CHAIN (link))
769 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
771 /* Restore the IDENTIFIER_LABEL_VALUEs for local labels. */
772 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->shadowed_labels,
773 ix, label_bind)
774 pop_local_label (label_bind->label, label_bind->prev_value);
776 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
777 list if a `using' declaration put them there. The debugging
778 back ends won't understand OVERLOAD, so we remove them here.
779 Because the BLOCK_VARS are (temporarily) shared with
780 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
781 popped all the bindings. */
782 if (block)
784 tree* d;
786 for (d = &BLOCK_VARS (block); *d; )
788 if (TREE_CODE (*d) == TREE_LIST)
789 *d = TREE_CHAIN (*d);
790 else
791 d = &DECL_CHAIN (*d);
795 /* If the level being exited is the top level of a function,
796 check over all the labels. */
797 if (functionbody)
799 if (block)
801 /* Since this is the top level block of a function, the vars are
802 the function's parameters. Don't leave them in the BLOCK
803 because they are found in the FUNCTION_DECL instead. */
804 BLOCK_VARS (block) = 0;
805 pop_labels (block);
807 else
808 pop_labels (subblocks);
811 kind = current_binding_level->kind;
812 if (kind == sk_cleanup)
814 tree stmt;
816 /* If this is a temporary binding created for a cleanup, then we'll
817 have pushed a statement list level. Pop that, create a new
818 BIND_EXPR for the block, and insert it into the stream. */
819 stmt = pop_stmt_list (current_binding_level->statement_list);
820 stmt = c_build_bind_expr (input_location, block, stmt);
821 add_stmt (stmt);
824 leave_scope ();
825 if (functionbody)
827 /* The current function is being defined, so its DECL_INITIAL
828 should be error_mark_node. */
829 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
830 DECL_INITIAL (current_function_decl) = block ? block : subblocks;
831 if (subblocks)
833 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
835 if (BLOCK_SUBBLOCKS (subblocks))
836 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks)) = 1;
838 else
839 BLOCK_OUTER_CURLY_BRACE_P (subblocks) = 1;
842 else if (block)
843 current_binding_level->blocks
844 = block_chainon (current_binding_level->blocks, block);
846 /* If we did not make a block for the level just exited,
847 any blocks made for inner levels
848 (since they cannot be recorded as subblocks in that level)
849 must be carried forward so they will later become subblocks
850 of something else. */
851 else if (subblocks)
852 current_binding_level->blocks
853 = block_chainon (current_binding_level->blocks, subblocks);
855 /* Each and every BLOCK node created here in `poplevel' is important
856 (e.g. for proper debugging information) so if we created one
857 earlier, mark it as "used". */
858 if (block)
859 TREE_USED (block) = 1;
861 /* All temporary bindings created for cleanups are popped silently. */
862 if (kind == sk_cleanup)
863 goto restart;
865 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
866 return block;
869 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
870 itself, calling F for each. The DATA is passed to F as well. */
872 static int
873 walk_namespaces_r (tree name_space, walk_namespaces_fn f, void* data)
875 int result = 0;
876 tree current = NAMESPACE_LEVEL (name_space)->namespaces;
878 result |= (*f) (name_space, data);
880 for (; current; current = DECL_CHAIN (current))
881 result |= walk_namespaces_r (current, f, data);
883 return result;
886 /* Walk all the namespaces, calling F for each. The DATA is passed to
887 F as well. */
890 walk_namespaces (walk_namespaces_fn f, void* data)
892 return walk_namespaces_r (global_namespace, f, data);
895 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
898 wrapup_globals_for_namespace (tree name_space, void* data ATTRIBUTE_UNUSED)
900 cp_binding_level *level = NAMESPACE_LEVEL (name_space);
901 vec<tree, va_gc> *statics = level->static_decls;
902 tree *vec = statics->address ();
903 int len = statics->length ();
905 if (warn_unused_function)
907 tree decl;
908 unsigned int i;
909 FOR_EACH_VEC_SAFE_ELT (statics, i, decl)
910 if (TREE_CODE (decl) == FUNCTION_DECL
911 && DECL_INITIAL (decl) == 0
912 && DECL_EXTERNAL (decl)
913 && !TREE_PUBLIC (decl)
914 && !DECL_ARTIFICIAL (decl)
915 && !TREE_NO_WARNING (decl))
917 warning_at (DECL_SOURCE_LOCATION (decl),
918 OPT_Wunused_function,
919 "%qF declared %<static%> but never defined", decl);
920 TREE_NO_WARNING (decl) = 1;
924 /* Write out any globals that need to be output. */
925 return wrapup_global_declarations (vec, len);
928 /* In C++, you don't have to write `struct S' to refer to `S'; you
929 can just use `S'. We accomplish this by creating a TYPE_DECL as
930 if the user had written `typedef struct S S'. Create and return
931 the TYPE_DECL for TYPE. */
933 tree
934 create_implicit_typedef (tree name, tree type)
936 tree decl;
938 decl = build_decl (input_location, TYPE_DECL, name, type);
939 DECL_ARTIFICIAL (decl) = 1;
940 /* There are other implicit type declarations, like the one *within*
941 a class that allows you to write `S::S'. We must distinguish
942 amongst these. */
943 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
944 TYPE_NAME (type) = decl;
945 TYPE_STUB_DECL (type) = decl;
947 return decl;
950 /* Remember a local name for name-mangling purposes. */
952 static void
953 push_local_name (tree decl)
955 size_t i, nelts;
956 tree t, name;
958 timevar_start (TV_NAME_LOOKUP);
960 name = DECL_NAME (decl);
962 nelts = vec_safe_length (local_names);
963 for (i = 0; i < nelts; i++)
965 t = (*local_names)[i];
966 if (DECL_NAME (t) == name)
968 if (!DECL_LANG_SPECIFIC (decl))
969 retrofit_lang_decl (decl);
970 DECL_LANG_SPECIFIC (decl)->u.base.u2sel = 1;
971 if (DECL_DISCRIMINATOR_SET_P (t))
972 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
973 else
974 DECL_DISCRIMINATOR (decl) = 1;
976 (*local_names)[i] = decl;
977 timevar_stop (TV_NAME_LOOKUP);
978 return;
982 vec_safe_push (local_names, decl);
983 timevar_stop (TV_NAME_LOOKUP);
986 /* Subroutine of duplicate_decls: return truthvalue of whether
987 or not types of these decls match.
989 For C++, we must compare the parameter list so that `int' can match
990 `int&' in a parameter position, but `int&' is not confused with
991 `const int&'. */
994 decls_match (tree newdecl, tree olddecl)
996 int types_match;
998 if (newdecl == olddecl)
999 return 1;
1001 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
1002 /* If the two DECLs are not even the same kind of thing, we're not
1003 interested in their types. */
1004 return 0;
1006 gcc_assert (DECL_P (newdecl));
1008 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1010 tree f1 = TREE_TYPE (newdecl);
1011 tree f2 = TREE_TYPE (olddecl);
1012 tree p1 = TYPE_ARG_TYPES (f1);
1013 tree p2 = TYPE_ARG_TYPES (f2);
1014 tree r2;
1016 /* Specializations of different templates are different functions
1017 even if they have the same type. */
1018 tree t1 = (DECL_USE_TEMPLATE (newdecl)
1019 ? DECL_TI_TEMPLATE (newdecl)
1020 : NULL_TREE);
1021 tree t2 = (DECL_USE_TEMPLATE (olddecl)
1022 ? DECL_TI_TEMPLATE (olddecl)
1023 : NULL_TREE);
1024 if (t1 != t2)
1025 return 0;
1027 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1028 && ! (DECL_EXTERN_C_P (newdecl)
1029 && DECL_EXTERN_C_P (olddecl)))
1030 return 0;
1032 /* A new declaration doesn't match a built-in one unless it
1033 is also extern "C". */
1034 if (DECL_IS_BUILTIN (olddecl)
1035 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
1036 return 0;
1038 if (TREE_CODE (f1) != TREE_CODE (f2))
1039 return 0;
1041 /* A declaration with deduced return type should use its pre-deduction
1042 type for declaration matching. */
1043 r2 = fndecl_declared_return_type (olddecl);
1045 if (same_type_p (TREE_TYPE (f1), r2))
1047 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
1048 && (DECL_BUILT_IN (olddecl)
1049 #ifndef NO_IMPLICIT_EXTERN_C
1050 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
1051 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
1052 #endif
1055 types_match = self_promoting_args_p (p1);
1056 if (p1 == void_list_node)
1057 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1059 #ifndef NO_IMPLICIT_EXTERN_C
1060 else if (!prototype_p (f1)
1061 && (DECL_EXTERN_C_P (olddecl)
1062 && DECL_IN_SYSTEM_HEADER (olddecl)
1063 && !DECL_CLASS_SCOPE_P (olddecl))
1064 && (DECL_EXTERN_C_P (newdecl)
1065 && DECL_IN_SYSTEM_HEADER (newdecl)
1066 && !DECL_CLASS_SCOPE_P (newdecl)))
1068 types_match = self_promoting_args_p (p2);
1069 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1071 #endif
1072 else
1073 types_match =
1074 compparms (p1, p2)
1075 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
1076 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
1077 || comp_type_attributes (TREE_TYPE (newdecl),
1078 TREE_TYPE (olddecl)) != 0);
1080 else
1081 types_match = 0;
1083 /* The decls dont match if they correspond to two different versions
1084 of the same function. Disallow extern "C" functions to be
1085 versions for now. */
1086 if (types_match
1087 && !DECL_EXTERN_C_P (newdecl)
1088 && !DECL_EXTERN_C_P (olddecl)
1089 && targetm.target_option.function_versions (newdecl, olddecl))
1091 /* Mark functions as versions if necessary. Modify the mangled decl
1092 name if necessary. */
1093 if (DECL_FUNCTION_VERSIONED (newdecl)
1094 && DECL_FUNCTION_VERSIONED (olddecl))
1095 return 0;
1096 if (!DECL_FUNCTION_VERSIONED (newdecl))
1098 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1099 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1100 mangle_decl (newdecl);
1102 if (!DECL_FUNCTION_VERSIONED (olddecl))
1104 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1105 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1106 mangle_decl (olddecl);
1108 cgraph_node::record_function_versions (olddecl, newdecl);
1109 return 0;
1112 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1114 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1115 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1117 if (TREE_CODE (newres) != TREE_CODE (oldres))
1118 return 0;
1120 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1121 DECL_TEMPLATE_PARMS (olddecl)))
1122 return 0;
1124 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1125 types_match = (same_type_p (TREE_TYPE (oldres), TREE_TYPE (newres))
1126 && equivalently_constrained (olddecl, newdecl));
1127 else
1128 // We don't need to check equivalently_constrained for variable and
1129 // function templates because we check it on the results.
1130 types_match = decls_match (oldres, newres);
1132 else
1134 /* Need to check scope for variable declaration (VAR_DECL).
1135 For typedef (TYPE_DECL), scope is ignored. */
1136 if (VAR_P (newdecl)
1137 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1138 /* [dcl.link]
1139 Two declarations for an object with C language linkage
1140 with the same name (ignoring the namespace that qualify
1141 it) that appear in different namespace scopes refer to
1142 the same object. */
1143 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1144 return 0;
1146 if (TREE_TYPE (newdecl) == error_mark_node)
1147 types_match = TREE_TYPE (olddecl) == error_mark_node;
1148 else if (TREE_TYPE (olddecl) == NULL_TREE)
1149 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1150 else if (TREE_TYPE (newdecl) == NULL_TREE)
1151 types_match = 0;
1152 else
1153 types_match = comptypes (TREE_TYPE (newdecl),
1154 TREE_TYPE (olddecl),
1155 COMPARE_REDECLARATION);
1158 // Normal functions can be constrained, as can variable partial
1159 // specializations.
1160 if (types_match && VAR_OR_FUNCTION_DECL_P (newdecl))
1161 types_match = equivalently_constrained (newdecl, olddecl);
1163 return types_match;
1166 /* If NEWDECL is `static' and an `extern' was seen previously,
1167 warn about it. OLDDECL is the previous declaration.
1169 Note that this does not apply to the C++ case of declaring
1170 a variable `extern const' and then later `const'.
1172 Don't complain about built-in functions, since they are beyond
1173 the user's control. */
1175 void
1176 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1178 if (TREE_CODE (newdecl) == TYPE_DECL
1179 || TREE_CODE (newdecl) == TEMPLATE_DECL
1180 || TREE_CODE (newdecl) == CONST_DECL
1181 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1182 return;
1184 /* Don't get confused by static member functions; that's a different
1185 use of `static'. */
1186 if (TREE_CODE (newdecl) == FUNCTION_DECL
1187 && DECL_STATIC_FUNCTION_P (newdecl))
1188 return;
1190 /* If the old declaration was `static', or the new one isn't, then
1191 everything is OK. */
1192 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1193 return;
1195 /* It's OK to declare a builtin function as `static'. */
1196 if (TREE_CODE (olddecl) == FUNCTION_DECL
1197 && DECL_ARTIFICIAL (olddecl))
1198 return;
1200 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1201 "%qD was declared %<extern%> and later %<static%>", newdecl))
1202 inform (DECL_SOURCE_LOCATION (olddecl),
1203 "previous declaration of %qD", olddecl);
1206 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1207 function templates. If their exception specifications do not
1208 match, issue a diagnostic. */
1210 static void
1211 check_redeclaration_exception_specification (tree new_decl,
1212 tree old_decl)
1214 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1215 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1217 /* Two default specs are equivalent, don't force evaluation. */
1218 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1219 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1220 return;
1222 maybe_instantiate_noexcept (new_decl);
1223 maybe_instantiate_noexcept (old_decl);
1224 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1225 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1227 /* [except.spec]
1229 If any declaration of a function has an exception-specification,
1230 all declarations, including the definition and an explicit
1231 specialization, of that function shall have an
1232 exception-specification with the same set of type-ids. */
1233 if (! DECL_IS_BUILTIN (old_decl)
1234 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1236 const char *msg
1237 = "declaration of %qF has a different exception specifier";
1238 bool complained = true;
1239 location_t new_loc = DECL_SOURCE_LOCATION (new_decl);
1240 if (DECL_IN_SYSTEM_HEADER (old_decl))
1241 complained = pedwarn (new_loc, OPT_Wsystem_headers, msg, new_decl);
1242 else if (!flag_exceptions)
1243 /* We used to silently permit mismatched eh specs with
1244 -fno-exceptions, so make them a pedwarn now. */
1245 complained = pedwarn (new_loc, OPT_Wpedantic, msg, new_decl);
1246 else
1247 error_at (new_loc, msg, new_decl);
1248 if (complained)
1249 inform (DECL_SOURCE_LOCATION (old_decl),
1250 "from previous declaration %qF", old_decl);
1254 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1255 Otherwise issue diagnostics. */
1257 static bool
1258 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1260 old_decl = STRIP_TEMPLATE (old_decl);
1261 new_decl = STRIP_TEMPLATE (new_decl);
1262 if (!VAR_OR_FUNCTION_DECL_P (old_decl)
1263 || !VAR_OR_FUNCTION_DECL_P (new_decl))
1264 return true;
1265 if (DECL_DECLARED_CONSTEXPR_P (old_decl)
1266 == DECL_DECLARED_CONSTEXPR_P (new_decl))
1267 return true;
1268 if (TREE_CODE (old_decl) == FUNCTION_DECL)
1270 if (DECL_BUILT_IN (old_decl))
1272 /* Hide a built-in declaration. */
1273 DECL_DECLARED_CONSTEXPR_P (old_decl)
1274 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1275 return true;
1277 /* 7.1.5 [dcl.constexpr]
1278 Note: An explicit specialization can differ from the template
1279 declaration with respect to the constexpr specifier. */
1280 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl)
1281 && DECL_TEMPLATE_SPECIALIZATION (new_decl))
1282 return true;
1284 error_at (DECL_SOURCE_LOCATION (new_decl),
1285 "redeclaration %qD differs in %<constexpr%> "
1286 "from previous declaration", new_decl);
1287 inform (DECL_SOURCE_LOCATION (old_decl),
1288 "previous declaration %qD", old_decl);
1289 return false;
1291 return true;
1294 // If OLDDECL and NEWDECL are concept declarations with the same type
1295 // (i.e., and template parameters), but different requirements,
1296 // emit diagnostics and return true. Otherwise, return false.
1297 static inline bool
1298 check_concept_refinement (tree olddecl, tree newdecl)
1300 if (!DECL_DECLARED_CONCEPT_P (olddecl) || !DECL_DECLARED_CONCEPT_P (newdecl))
1301 return false;
1303 tree d1 = DECL_TEMPLATE_RESULT (olddecl);
1304 tree d2 = DECL_TEMPLATE_RESULT (newdecl);
1305 if (TREE_CODE (d1) != TREE_CODE (d2))
1306 return false;
1308 tree t1 = TREE_TYPE (d1);
1309 tree t2 = TREE_TYPE (d2);
1310 if (TREE_CODE (d1) == FUNCTION_DECL)
1312 if (compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2))
1313 && comp_template_parms (DECL_TEMPLATE_PARMS (olddecl),
1314 DECL_TEMPLATE_PARMS (newdecl))
1315 && !equivalently_constrained (olddecl, newdecl))
1317 error ("cannot specialize concept %q#D", olddecl);
1318 return true;
1321 return false;
1324 /* DECL is a redeclaration of a function or function template. If
1325 it does have default arguments issue a diagnostic. Note: this
1326 function is used to enforce the requirements in C++11 8.3.6 about
1327 no default arguments in redeclarations. */
1329 static void
1330 check_redeclaration_no_default_args (tree decl)
1332 gcc_assert (DECL_DECLARES_FUNCTION_P (decl));
1334 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
1335 t && t != void_list_node; t = TREE_CHAIN (t))
1336 if (TREE_PURPOSE (t))
1338 permerror (DECL_SOURCE_LOCATION (decl),
1339 "redeclaration of %q#D may not have default "
1340 "arguments", decl);
1341 return;
1345 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1346 && lookup_attribute ("gnu_inline", \
1347 DECL_ATTRIBUTES (fn)))
1349 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1350 If the redeclaration is invalid, a diagnostic is issued, and the
1351 error_mark_node is returned. Otherwise, OLDDECL is returned.
1353 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1354 returned.
1356 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1358 tree
1359 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1361 unsigned olddecl_uid = DECL_UID (olddecl);
1362 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1363 int new_defines_function = 0;
1364 tree new_template_info;
1366 if (newdecl == olddecl)
1367 return olddecl;
1369 types_match = decls_match (newdecl, olddecl);
1371 /* If either the type of the new decl or the type of the old decl is an
1372 error_mark_node, then that implies that we have already issued an
1373 error (earlier) for some bogus type specification, and in that case,
1374 it is rather pointless to harass the user with yet more error message
1375 about the same declaration, so just pretend the types match here. */
1376 if (TREE_TYPE (newdecl) == error_mark_node
1377 || TREE_TYPE (olddecl) == error_mark_node)
1378 return error_mark_node;
1380 if (UDLIT_OPER_P (DECL_NAME (newdecl))
1381 && UDLIT_OPER_P (DECL_NAME (olddecl)))
1383 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1384 && TREE_CODE (olddecl) != TEMPLATE_DECL
1385 && check_raw_literal_operator (olddecl))
1386 error ("literal operator template %q+D conflicts with"
1387 " raw literal operator %qD", newdecl, olddecl);
1388 else if (TREE_CODE (newdecl) != TEMPLATE_DECL
1389 && TREE_CODE (olddecl) == TEMPLATE_DECL
1390 && check_raw_literal_operator (newdecl))
1391 error ("raw literal operator %q+D conflicts with"
1392 " literal operator template %qD", newdecl, olddecl);
1395 if (DECL_P (olddecl)
1396 && TREE_CODE (newdecl) == FUNCTION_DECL
1397 && TREE_CODE (olddecl) == FUNCTION_DECL
1398 && diagnose_mismatched_attributes (olddecl, newdecl))
1400 if (DECL_INITIAL (olddecl))
1401 inform (DECL_SOURCE_LOCATION (olddecl),
1402 "previous definition of %qD was here", olddecl);
1403 else
1404 inform (DECL_SOURCE_LOCATION (olddecl),
1405 "previous declaration of %qD was here", olddecl);
1408 /* Check for redeclaration and other discrepancies. */
1409 if (TREE_CODE (olddecl) == FUNCTION_DECL
1410 && DECL_ARTIFICIAL (olddecl))
1412 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1413 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1415 /* Avoid warnings redeclaring built-ins which have not been
1416 explicitly declared. */
1417 if (DECL_ANTICIPATED (olddecl))
1418 return NULL_TREE;
1420 /* If you declare a built-in or predefined function name as static,
1421 the old definition is overridden, but optionally warn this was a
1422 bad choice of name. */
1423 if (! TREE_PUBLIC (newdecl))
1425 warning (OPT_Wshadow,
1426 DECL_BUILT_IN (olddecl)
1427 ? G_("shadowing built-in function %q#D")
1428 : G_("shadowing library function %q#D"), olddecl);
1429 /* Discard the old built-in function. */
1430 return NULL_TREE;
1432 /* If the built-in is not ansi, then programs can override
1433 it even globally without an error. */
1434 else if (! DECL_BUILT_IN (olddecl))
1435 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1436 "library function %q#D redeclared as non-function %q#D",
1437 olddecl, newdecl);
1438 else
1439 error ("declaration of %q+#D conflicts with built-in "
1440 "declaration %q#D", newdecl, olddecl);
1441 return NULL_TREE;
1443 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1445 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1446 error_at (DECL_SOURCE_LOCATION (newdecl),
1447 "redeclaration of %<pragma omp declare reduction%>");
1448 inform (DECL_SOURCE_LOCATION (olddecl),
1449 "previous %<pragma omp declare reduction%> declaration");
1450 return error_mark_node;
1452 else if (!types_match)
1454 /* Avoid warnings redeclaring built-ins which have not been
1455 explicitly declared. */
1456 if (DECL_ANTICIPATED (olddecl))
1458 /* Deal with fileptr_type_node. FILE type is not known
1459 at the time we create the builtins. */
1460 tree t1, t2;
1462 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1463 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1464 t1 || t2;
1465 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1466 if (!t1 || !t2)
1467 break;
1468 else if (TREE_VALUE (t2) == fileptr_type_node)
1470 tree t = TREE_VALUE (t1);
1472 if (TYPE_PTR_P (t)
1473 && TYPE_IDENTIFIER (TREE_TYPE (t))
1474 == get_identifier ("FILE")
1475 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1477 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1479 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1480 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1481 types_match = decls_match (newdecl, olddecl);
1482 if (types_match)
1483 return duplicate_decls (newdecl, olddecl,
1484 newdecl_is_friend);
1485 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1488 else if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1489 break;
1491 else if ((DECL_EXTERN_C_P (newdecl)
1492 && DECL_EXTERN_C_P (olddecl))
1493 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1494 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1496 /* A near match; override the builtin. */
1498 if (TREE_PUBLIC (newdecl))
1499 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1500 "new declaration %q#D ambiguates built-in "
1501 "declaration %q#D", newdecl, olddecl);
1502 else
1503 warning (OPT_Wshadow,
1504 DECL_BUILT_IN (olddecl)
1505 ? G_("shadowing built-in function %q#D")
1506 : G_("shadowing library function %q#D"), olddecl);
1508 else
1509 /* Discard the old built-in function. */
1510 return NULL_TREE;
1512 /* Replace the old RTL to avoid problems with inlining. */
1513 COPY_DECL_RTL (newdecl, olddecl);
1515 /* Even if the types match, prefer the new declarations type for
1516 built-ins which have not been explicitly declared, for
1517 exception lists, etc... */
1518 else if (DECL_IS_BUILTIN (olddecl))
1520 tree type = TREE_TYPE (newdecl);
1521 tree attribs = (*targetm.merge_type_attributes)
1522 (TREE_TYPE (olddecl), type);
1524 type = cp_build_type_attribute_variant (type, attribs);
1525 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1528 /* If a function is explicitly declared "throw ()", propagate that to
1529 the corresponding builtin. */
1530 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1531 && DECL_ANTICIPATED (olddecl)
1532 && TREE_NOTHROW (newdecl)
1533 && !TREE_NOTHROW (olddecl))
1535 enum built_in_function fncode = DECL_FUNCTION_CODE (olddecl);
1536 tree tmpdecl = builtin_decl_explicit (fncode);
1537 if (tmpdecl && tmpdecl != olddecl && types_match)
1538 TREE_NOTHROW (tmpdecl) = 1;
1541 /* Whether or not the builtin can throw exceptions has no
1542 bearing on this declarator. */
1543 TREE_NOTHROW (olddecl) = 0;
1545 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1547 /* If a builtin function is redeclared as `static', merge
1548 the declarations, but make the original one static. */
1549 DECL_THIS_STATIC (olddecl) = 1;
1550 TREE_PUBLIC (olddecl) = 0;
1552 /* Make the old declaration consistent with the new one so
1553 that all remnants of the builtin-ness of this function
1554 will be banished. */
1555 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1556 COPY_DECL_RTL (newdecl, olddecl);
1559 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1561 /* C++ Standard, 3.3, clause 4:
1562 "[Note: a namespace name or a class template name must be unique
1563 in its declarative region (7.3.2, clause 14). ]" */
1564 if (TREE_CODE (olddecl) != NAMESPACE_DECL
1565 && TREE_CODE (newdecl) != NAMESPACE_DECL
1566 && (TREE_CODE (olddecl) != TEMPLATE_DECL
1567 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) != TYPE_DECL)
1568 && (TREE_CODE (newdecl) != TEMPLATE_DECL
1569 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != TYPE_DECL))
1571 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1572 && TREE_CODE (newdecl) != TYPE_DECL)
1573 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1574 && TREE_CODE (olddecl) != TYPE_DECL))
1576 /* We do nothing special here, because C++ does such nasty
1577 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1578 get shadowed, and know that if we need to find a TYPE_DECL
1579 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1580 slot of the identifier. */
1581 return NULL_TREE;
1584 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1585 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1586 || (TREE_CODE (olddecl) == FUNCTION_DECL
1587 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1588 return NULL_TREE;
1591 error ("%q#D redeclared as different kind of symbol", newdecl);
1592 if (TREE_CODE (olddecl) == TREE_LIST)
1593 olddecl = TREE_VALUE (olddecl);
1594 inform (DECL_SOURCE_LOCATION (olddecl),
1595 "previous declaration %q#D", olddecl);
1597 return error_mark_node;
1599 else if (!types_match)
1601 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1602 /* These are certainly not duplicate declarations; they're
1603 from different scopes. */
1604 return NULL_TREE;
1606 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1608 /* The name of a class template may not be declared to refer to
1609 any other template, class, function, object, namespace, value,
1610 or type in the same scope. */
1611 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1612 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1614 error ("conflicting declaration of template %q+#D", newdecl);
1615 inform (DECL_SOURCE_LOCATION (olddecl),
1616 "previous declaration %q#D", olddecl);
1617 return error_mark_node;
1619 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1620 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1621 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1622 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1623 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1624 DECL_TEMPLATE_PARMS (olddecl))
1625 /* Template functions can be disambiguated by
1626 return type. */
1627 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1628 TREE_TYPE (TREE_TYPE (olddecl)))
1629 // Template functions can also be disambiguated by
1630 // constraints.
1631 && equivalently_constrained (olddecl, newdecl))
1633 error ("ambiguating new declaration %q+#D", newdecl);
1634 inform (DECL_SOURCE_LOCATION (olddecl),
1635 "old declaration %q#D", olddecl);
1637 else if (check_concept_refinement (olddecl, newdecl))
1638 return error_mark_node;
1639 return NULL_TREE;
1641 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1643 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1645 error ("conflicting declaration of C function %q+#D",
1646 newdecl);
1647 inform (DECL_SOURCE_LOCATION (olddecl),
1648 "previous declaration %q#D", olddecl);
1649 return NULL_TREE;
1651 /* For function versions, params and types match, but they
1652 are not ambiguous. */
1653 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1654 && !DECL_FUNCTION_VERSIONED (olddecl))
1655 // The functions have the same parameter types.
1656 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1657 TYPE_ARG_TYPES (TREE_TYPE (olddecl)))
1658 // And the same constraints.
1659 && equivalently_constrained (newdecl, olddecl))
1661 error ("ambiguating new declaration of %q+#D", newdecl);
1662 inform (DECL_SOURCE_LOCATION (olddecl),
1663 "old declaration %q#D", olddecl);
1664 return error_mark_node;
1666 else
1667 return NULL_TREE;
1669 else
1671 error ("conflicting declaration %q+#D", newdecl);
1672 inform (DECL_SOURCE_LOCATION (olddecl),
1673 "previous declaration as %q#D", olddecl);
1674 return error_mark_node;
1677 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1678 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1679 && (!DECL_TEMPLATE_INFO (newdecl)
1680 || (DECL_TI_TEMPLATE (newdecl)
1681 != DECL_TI_TEMPLATE (olddecl))))
1682 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1683 && (!DECL_TEMPLATE_INFO (olddecl)
1684 || (DECL_TI_TEMPLATE (olddecl)
1685 != DECL_TI_TEMPLATE (newdecl))))))
1686 /* It's OK to have a template specialization and a non-template
1687 with the same type, or to have specializations of two
1688 different templates with the same type. Note that if one is a
1689 specialization, and the other is an instantiation of the same
1690 template, that we do not exit at this point. That situation
1691 can occur if we instantiate a template class, and then
1692 specialize one of its methods. This situation is valid, but
1693 the declarations must be merged in the usual way. */
1694 return NULL_TREE;
1695 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1696 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1697 && !DECL_USE_TEMPLATE (newdecl))
1698 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1699 && !DECL_USE_TEMPLATE (olddecl))))
1700 /* One of the declarations is a template instantiation, and the
1701 other is not a template at all. That's OK. */
1702 return NULL_TREE;
1703 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1705 /* In [namespace.alias] we have:
1707 In a declarative region, a namespace-alias-definition can be
1708 used to redefine a namespace-alias declared in that declarative
1709 region to refer only to the namespace to which it already
1710 refers.
1712 Therefore, if we encounter a second alias directive for the same
1713 alias, we can just ignore the second directive. */
1714 if (DECL_NAMESPACE_ALIAS (newdecl)
1715 && (DECL_NAMESPACE_ALIAS (newdecl)
1716 == DECL_NAMESPACE_ALIAS (olddecl)))
1717 return olddecl;
1718 /* [namespace.alias]
1720 A namespace-name or namespace-alias shall not be declared as
1721 the name of any other entity in the same declarative region.
1722 A namespace-name defined at global scope shall not be
1723 declared as the name of any other entity in any global scope
1724 of the program. */
1725 error ("conflicting declaration of namespace %q+D", newdecl);
1726 inform (DECL_SOURCE_LOCATION (olddecl),
1727 "previous declaration of namespace %qD here", olddecl);
1728 return error_mark_node;
1730 else
1732 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1733 if (errmsg)
1735 error_at (DECL_SOURCE_LOCATION (newdecl), errmsg, newdecl);
1736 if (DECL_NAME (olddecl) != NULL_TREE)
1737 inform (DECL_SOURCE_LOCATION (olddecl),
1738 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1739 ? G_("%q#D previously defined here")
1740 : G_("%q#D previously declared here"), olddecl);
1741 return error_mark_node;
1743 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1744 && DECL_INITIAL (olddecl) != NULL_TREE
1745 && !prototype_p (TREE_TYPE (olddecl))
1746 && prototype_p (TREE_TYPE (newdecl)))
1748 /* Prototype decl follows defn w/o prototype. */
1749 if (warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1750 "prototype specified for %q#D", newdecl))
1751 inform (DECL_SOURCE_LOCATION (olddecl),
1752 "previous non-prototype definition here");
1754 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1755 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1757 /* [dcl.link]
1758 If two declarations of the same function or object
1759 specify different linkage-specifications ..., the program
1760 is ill-formed.... Except for functions with C++ linkage,
1761 a function declaration without a linkage specification
1762 shall not precede the first linkage specification for
1763 that function. A function can be declared without a
1764 linkage specification after an explicit linkage
1765 specification has been seen; the linkage explicitly
1766 specified in the earlier declaration is not affected by
1767 such a function declaration.
1769 DR 563 raises the question why the restrictions on
1770 functions should not also apply to objects. Older
1771 versions of G++ silently ignore the linkage-specification
1772 for this example:
1774 namespace N {
1775 extern int i;
1776 extern "C" int i;
1779 which is clearly wrong. Therefore, we now treat objects
1780 like functions. */
1781 if (current_lang_depth () == 0)
1783 /* There is no explicit linkage-specification, so we use
1784 the linkage from the previous declaration. */
1785 if (!DECL_LANG_SPECIFIC (newdecl))
1786 retrofit_lang_decl (newdecl);
1787 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1789 else
1791 error ("conflicting declaration of %q+#D with %qL linkage",
1792 newdecl, DECL_LANGUAGE (newdecl));
1793 inform (DECL_SOURCE_LOCATION (olddecl),
1794 "previous declaration with %qL linkage",
1795 DECL_LANGUAGE (olddecl));
1799 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1801 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1803 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1804 if (DECL_FUNCTION_MEMBER_P (olddecl)
1805 && (/* grokfndecl passes member function templates too
1806 as FUNCTION_DECLs. */
1807 DECL_TEMPLATE_INFO (olddecl)
1808 /* C++11 8.3.6/6.
1809 Default arguments for a member function of a class
1810 template shall be specified on the initial declaration
1811 of the member function within the class template. */
1812 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
1813 check_redeclaration_no_default_args (newdecl);
1814 else
1816 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1817 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1818 int i = 1;
1820 for (; t1 && t1 != void_list_node;
1821 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1822 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1824 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
1825 TREE_PURPOSE (t2)))
1827 if (permerror (input_location,
1828 "default argument given for parameter "
1829 "%d of %q#D", i, newdecl))
1830 inform (DECL_SOURCE_LOCATION (olddecl),
1831 "previous specification in %q#D here",
1832 olddecl);
1834 else
1836 error ("default argument given for parameter %d "
1837 "of %q#D", i, newdecl);
1838 inform (DECL_SOURCE_LOCATION (olddecl),
1839 "previous specification in %q#D here",
1840 olddecl);
1847 /* Do not merge an implicit typedef with an explicit one. In:
1849 class A;
1851 typedef class A A __attribute__ ((foo));
1853 the attribute should apply only to the typedef. */
1854 if (TREE_CODE (olddecl) == TYPE_DECL
1855 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1856 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1857 return NULL_TREE;
1859 /* If new decl is `static' and an `extern' was seen previously,
1860 warn about it. */
1861 warn_extern_redeclared_static (newdecl, olddecl);
1863 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1864 return error_mark_node;
1866 /* We have committed to returning 1 at this point. */
1867 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1869 /* Now that functions must hold information normally held
1870 by field decls, there is extra work to do so that
1871 declaration information does not get destroyed during
1872 definition. */
1873 if (DECL_VINDEX (olddecl))
1874 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1875 if (DECL_CONTEXT (olddecl))
1876 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1877 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1878 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1879 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1880 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1881 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1882 DECL_FINAL_P (newdecl) |= DECL_FINAL_P (olddecl);
1883 DECL_OVERRIDE_P (newdecl) |= DECL_OVERRIDE_P (olddecl);
1884 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1885 if (DECL_OVERLOADED_OPERATOR_P (olddecl) != ERROR_MARK)
1886 SET_OVERLOADED_OPERATOR_CODE
1887 (newdecl, DECL_OVERLOADED_OPERATOR_P (olddecl));
1888 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1890 /* Optionally warn about more than one declaration for the same
1891 name, but don't warn about a function declaration followed by a
1892 definition. */
1893 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1894 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1895 /* Don't warn about extern decl followed by definition. */
1896 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1897 /* Don't warn about friends, let add_friend take care of it. */
1898 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1899 /* Don't warn about declaration followed by specialization. */
1900 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1901 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1903 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1904 OPT_Wredundant_decls,
1905 "redundant redeclaration of %qD in same scope",
1906 newdecl))
1907 inform (DECL_SOURCE_LOCATION (olddecl),
1908 "previous declaration of %qD", olddecl);
1911 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1912 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1914 if (DECL_DELETED_FN (newdecl))
1916 error ("deleted definition of %q+D", newdecl);
1917 inform (DECL_SOURCE_LOCATION (olddecl),
1918 "previous declaration of %qD", olddecl);
1920 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
1924 /* Deal with C++: must preserve virtual function table size. */
1925 if (TREE_CODE (olddecl) == TYPE_DECL)
1927 tree newtype = TREE_TYPE (newdecl);
1928 tree oldtype = TREE_TYPE (olddecl);
1930 if (newtype != error_mark_node && oldtype != error_mark_node
1931 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1932 CLASSTYPE_FRIEND_CLASSES (newtype)
1933 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1935 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1938 /* Copy all the DECL_... slots specified in the new decl
1939 except for any that we copy here from the old type. */
1940 DECL_ATTRIBUTES (newdecl)
1941 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1943 if (DECL_DECLARES_FUNCTION_P (olddecl) && DECL_DECLARES_FUNCTION_P (newdecl))
1945 olddecl_friend = DECL_FRIEND_P (olddecl);
1946 hidden_friend = (DECL_ANTICIPATED (olddecl)
1947 && DECL_HIDDEN_FRIEND_P (olddecl)
1948 && newdecl_is_friend);
1949 if (!hidden_friend)
1951 DECL_ANTICIPATED (olddecl) = 0;
1952 DECL_HIDDEN_FRIEND_P (olddecl) = 0;
1956 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1958 tree old_result;
1959 tree new_result;
1960 old_result = DECL_TEMPLATE_RESULT (olddecl);
1961 new_result = DECL_TEMPLATE_RESULT (newdecl);
1962 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
1963 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
1964 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
1965 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
1967 DECL_ATTRIBUTES (old_result)
1968 = (*targetm.merge_decl_attributes) (old_result, new_result);
1970 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1972 /* Per C++11 8.3.6/4, default arguments cannot be added in later
1973 declarations of a function template. */
1974 if (DECL_SOURCE_LOCATION (newdecl)
1975 != DECL_SOURCE_LOCATION (olddecl))
1976 check_redeclaration_no_default_args (newdecl);
1978 check_default_args (newdecl);
1980 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
1981 && DECL_INITIAL (new_result))
1983 if (DECL_INITIAL (old_result))
1984 DECL_UNINLINABLE (old_result) = 1;
1985 else
1986 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
1987 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
1988 DECL_NOT_REALLY_EXTERN (old_result)
1989 = DECL_NOT_REALLY_EXTERN (new_result);
1990 DECL_INTERFACE_KNOWN (old_result)
1991 = DECL_INTERFACE_KNOWN (new_result);
1992 DECL_DECLARED_INLINE_P (old_result)
1993 = DECL_DECLARED_INLINE_P (new_result);
1994 DECL_DISREGARD_INLINE_LIMITS (old_result)
1995 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
1998 else
2000 DECL_DECLARED_INLINE_P (old_result)
2001 |= DECL_DECLARED_INLINE_P (new_result);
2002 DECL_DISREGARD_INLINE_LIMITS (old_result)
2003 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2004 check_redeclaration_exception_specification (newdecl, olddecl);
2008 /* If the new declaration is a definition, update the file and
2009 line information on the declaration, and also make
2010 the old declaration the same definition. */
2011 if (DECL_INITIAL (new_result) != NULL_TREE)
2013 DECL_SOURCE_LOCATION (olddecl)
2014 = DECL_SOURCE_LOCATION (old_result)
2015 = DECL_SOURCE_LOCATION (newdecl);
2016 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
2017 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2019 tree parm;
2020 DECL_ARGUMENTS (old_result)
2021 = DECL_ARGUMENTS (new_result);
2022 for (parm = DECL_ARGUMENTS (old_result); parm;
2023 parm = DECL_CHAIN (parm))
2024 DECL_CONTEXT (parm) = old_result;
2028 return olddecl;
2031 if (types_match)
2033 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2034 check_redeclaration_exception_specification (newdecl, olddecl);
2036 /* Automatically handles default parameters. */
2037 tree oldtype = TREE_TYPE (olddecl);
2038 tree newtype;
2040 /* For typedefs use the old type, as the new type's DECL_NAME points
2041 at newdecl, which will be ggc_freed. */
2042 if (TREE_CODE (newdecl) == TYPE_DECL)
2044 /* But NEWTYPE might have an attribute, honor that. */
2045 tree tem = TREE_TYPE (newdecl);
2046 newtype = oldtype;
2048 if (TYPE_USER_ALIGN (tem))
2050 if (TYPE_ALIGN (tem) > TYPE_ALIGN (newtype))
2051 SET_TYPE_ALIGN (newtype, TYPE_ALIGN (tem));
2052 TYPE_USER_ALIGN (newtype) = true;
2055 /* And remove the new type from the variants list. */
2056 if (TYPE_NAME (TREE_TYPE (newdecl)) == newdecl)
2058 tree remove = TREE_TYPE (newdecl);
2059 for (tree t = TYPE_MAIN_VARIANT (remove); ;
2060 t = TYPE_NEXT_VARIANT (t))
2061 if (TYPE_NEXT_VARIANT (t) == remove)
2063 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (remove);
2064 break;
2068 else
2069 /* Merge the data types specified in the two decls. */
2070 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
2072 if (VAR_P (newdecl))
2074 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
2075 /* For already initialized vars, TREE_READONLY could have been
2076 cleared in cp_finish_decl, because the var needs runtime
2077 initialization or destruction. Make sure not to set
2078 TREE_READONLY on it again. */
2079 if (DECL_INITIALIZED_P (olddecl)
2080 && !DECL_EXTERNAL (olddecl)
2081 && !TREE_READONLY (olddecl))
2082 TREE_READONLY (newdecl) = 0;
2083 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
2084 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
2085 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
2086 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
2087 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
2089 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
2090 if (DECL_LANG_SPECIFIC (olddecl)
2091 && CP_DECL_THREADPRIVATE_P (olddecl))
2093 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
2094 if (!DECL_LANG_SPECIFIC (newdecl))
2095 retrofit_lang_decl (newdecl);
2097 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
2101 /* An explicit specialization of a function template or of a member
2102 function of a class template can be declared transaction_safe
2103 independently of whether the corresponding template entity is declared
2104 transaction_safe. */
2105 if (flag_tm && TREE_CODE (newdecl) == FUNCTION_DECL
2106 && DECL_TEMPLATE_INSTANTIATION (olddecl)
2107 && DECL_TEMPLATE_SPECIALIZATION (newdecl)
2108 && tx_safe_fn_type_p (newtype)
2109 && !tx_safe_fn_type_p (TREE_TYPE (newdecl)))
2110 newtype = tx_unsafe_fn_variant (newtype);
2112 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2114 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2115 check_default_args (newdecl);
2117 /* Lay the type out, unless already done. */
2118 if (! same_type_p (newtype, oldtype)
2119 && TREE_TYPE (newdecl) != error_mark_node
2120 && !(processing_template_decl && uses_template_parms (newdecl)))
2121 layout_type (TREE_TYPE (newdecl));
2123 if ((VAR_P (newdecl)
2124 || TREE_CODE (newdecl) == PARM_DECL
2125 || TREE_CODE (newdecl) == RESULT_DECL
2126 || TREE_CODE (newdecl) == FIELD_DECL
2127 || TREE_CODE (newdecl) == TYPE_DECL)
2128 && !(processing_template_decl && uses_template_parms (newdecl)))
2129 layout_decl (newdecl, 0);
2131 /* Merge the type qualifiers. */
2132 if (TREE_READONLY (newdecl))
2133 TREE_READONLY (olddecl) = 1;
2134 if (TREE_THIS_VOLATILE (newdecl))
2135 TREE_THIS_VOLATILE (olddecl) = 1;
2136 if (TREE_NOTHROW (newdecl))
2137 TREE_NOTHROW (olddecl) = 1;
2139 /* Merge deprecatedness. */
2140 if (TREE_DEPRECATED (newdecl))
2141 TREE_DEPRECATED (olddecl) = 1;
2143 /* Preserve function specific target and optimization options */
2144 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2146 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2147 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2148 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2149 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2151 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2152 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2153 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2154 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2157 /* Merge the initialization information. */
2158 if (DECL_INITIAL (newdecl) == NULL_TREE
2159 && DECL_INITIAL (olddecl) != NULL_TREE)
2161 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2162 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2163 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2165 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2166 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2170 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2172 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2173 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2174 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2175 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2176 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
2177 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2178 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2179 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2180 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2181 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2182 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2183 /* Keep the old RTL. */
2184 COPY_DECL_RTL (olddecl, newdecl);
2186 else if (VAR_P (newdecl)
2187 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2189 /* Keep the old RTL. We cannot keep the old RTL if the old
2190 declaration was for an incomplete object and the new
2191 declaration is not since many attributes of the RTL will
2192 change. */
2193 COPY_DECL_RTL (olddecl, newdecl);
2196 /* If cannot merge, then use the new type and qualifiers,
2197 and don't preserve the old rtl. */
2198 else
2200 /* Clean out any memory we had of the old declaration. */
2201 tree oldstatic = value_member (olddecl, static_aggregates);
2202 if (oldstatic)
2203 TREE_VALUE (oldstatic) = error_mark_node;
2205 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2206 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2207 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2208 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2211 /* Merge the storage class information. */
2212 merge_weak (newdecl, olddecl);
2214 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2215 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2216 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2217 if (! DECL_EXTERNAL (olddecl))
2218 DECL_EXTERNAL (newdecl) = 0;
2219 if (! DECL_COMDAT (olddecl))
2220 DECL_COMDAT (newdecl) = 0;
2222 new_template_info = NULL_TREE;
2223 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2225 bool new_redefines_gnu_inline = false;
2227 if (new_defines_function
2228 && ((DECL_INTERFACE_KNOWN (olddecl)
2229 && TREE_CODE (olddecl) == FUNCTION_DECL)
2230 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2231 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2232 == FUNCTION_DECL))))
2234 tree fn = olddecl;
2236 if (TREE_CODE (fn) == TEMPLATE_DECL)
2237 fn = DECL_TEMPLATE_RESULT (olddecl);
2239 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2242 if (!new_redefines_gnu_inline)
2244 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2245 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2246 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2248 DECL_TEMPLATE_INSTANTIATED (newdecl)
2249 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2250 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2252 /* If the OLDDECL is an instantiation and/or specialization,
2253 then the NEWDECL must be too. But, it may not yet be marked
2254 as such if the caller has created NEWDECL, but has not yet
2255 figured out that it is a redeclaration. */
2256 if (!DECL_USE_TEMPLATE (newdecl))
2257 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2259 /* Don't really know how much of the language-specific
2260 values we should copy from old to new. */
2261 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2262 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
2263 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2264 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2266 if (LANG_DECL_HAS_MIN (newdecl))
2268 DECL_LANG_SPECIFIC (newdecl)->u.min.u2 =
2269 DECL_LANG_SPECIFIC (olddecl)->u.min.u2;
2270 if (DECL_TEMPLATE_INFO (newdecl))
2272 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2273 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2274 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2275 /* Remember the presence of explicit specialization args. */
2276 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2277 = TINFO_USED_TEMPLATE_ID (new_template_info);
2279 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2281 /* Only functions have these fields. */
2282 if (DECL_DECLARES_FUNCTION_P (newdecl))
2284 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2285 DECL_BEFRIENDING_CLASSES (newdecl)
2286 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2287 DECL_BEFRIENDING_CLASSES (olddecl));
2288 /* DECL_THUNKS is only valid for virtual functions,
2289 otherwise it is a DECL_FRIEND_CONTEXT. */
2290 if (DECL_VIRTUAL_P (newdecl))
2291 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2293 /* Only variables have this field. */
2294 else if (VAR_P (newdecl)
2295 && VAR_HAD_UNKNOWN_BOUND (olddecl))
2296 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2299 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2301 tree parm;
2303 /* Merge parameter attributes. */
2304 tree oldarg, newarg;
2305 for (oldarg = DECL_ARGUMENTS(olddecl),
2306 newarg = DECL_ARGUMENTS(newdecl);
2307 oldarg && newarg;
2308 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg)) {
2309 DECL_ATTRIBUTES (newarg)
2310 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2311 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2314 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2315 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2317 /* If newdecl is not a specialization, then it is not a
2318 template-related function at all. And that means that we
2319 should have exited above, returning 0. */
2320 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2322 if (DECL_ODR_USED (olddecl))
2323 /* From [temp.expl.spec]:
2325 If a template, a member template or the member of a class
2326 template is explicitly specialized then that
2327 specialization shall be declared before the first use of
2328 that specialization that would cause an implicit
2329 instantiation to take place, in every translation unit in
2330 which such a use occurs. */
2331 error ("explicit specialization of %qD after first use",
2332 olddecl);
2334 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2335 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2336 && DECL_DECLARED_INLINE_P (newdecl));
2338 /* Don't propagate visibility from the template to the
2339 specialization here. We'll do that in determine_visibility if
2340 appropriate. */
2341 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2343 /* [temp.expl.spec/14] We don't inline explicit specialization
2344 just because the primary template says so. */
2346 /* But still keep DECL_DISREGARD_INLINE_LIMITS in sync with
2347 the always_inline attribute. */
2348 if (DECL_DISREGARD_INLINE_LIMITS (olddecl)
2349 && !DECL_DISREGARD_INLINE_LIMITS (newdecl))
2351 if (DECL_DECLARED_INLINE_P (newdecl))
2352 DECL_DISREGARD_INLINE_LIMITS (newdecl) = true;
2353 else
2354 DECL_ATTRIBUTES (newdecl)
2355 = remove_attribute ("always_inline",
2356 DECL_ATTRIBUTES (newdecl));
2359 else if (new_defines_function && DECL_INITIAL (olddecl))
2361 /* Never inline re-defined extern inline functions.
2362 FIXME: this could be better handled by keeping both
2363 function as separate declarations. */
2364 DECL_UNINLINABLE (newdecl) = 1;
2366 else
2368 if (DECL_PENDING_INLINE_P (olddecl))
2370 DECL_PENDING_INLINE_P (newdecl) = 1;
2371 DECL_PENDING_INLINE_INFO (newdecl)
2372 = DECL_PENDING_INLINE_INFO (olddecl);
2374 else if (DECL_PENDING_INLINE_P (newdecl))
2376 else if (DECL_SAVED_FUNCTION_DATA (newdecl) == NULL)
2377 DECL_SAVED_FUNCTION_DATA (newdecl)
2378 = DECL_SAVED_FUNCTION_DATA (olddecl);
2380 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2382 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2383 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2385 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2386 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2387 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2388 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2391 /* Preserve abstractness on cloned [cd]tors. */
2392 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2394 /* Update newdecl's parms to point at olddecl. */
2395 for (parm = DECL_ARGUMENTS (newdecl); parm;
2396 parm = DECL_CHAIN (parm))
2397 DECL_CONTEXT (parm) = olddecl;
2399 if (! types_match)
2401 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2402 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2403 COPY_DECL_RTL (newdecl, olddecl);
2405 if (! types_match || new_defines_function)
2407 /* These need to be copied so that the names are available.
2408 Note that if the types do match, we'll preserve inline
2409 info and other bits, but if not, we won't. */
2410 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2411 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2413 /* If redeclaring a builtin function, it stays built in
2414 if newdecl is a gnu_inline definition, or if newdecl is just
2415 a declaration. */
2416 if (DECL_BUILT_IN (olddecl)
2417 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2419 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2420 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2421 /* If we're keeping the built-in definition, keep the rtl,
2422 regardless of declaration matches. */
2423 COPY_DECL_RTL (olddecl, newdecl);
2424 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2426 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2427 switch (fncode)
2429 /* If a compatible prototype of these builtin functions
2430 is seen, assume the runtime implements it with the
2431 expected semantics. */
2432 case BUILT_IN_STPCPY:
2433 if (builtin_decl_explicit_p (fncode))
2434 set_builtin_decl_implicit_p (fncode, true);
2435 break;
2436 default:
2437 if (builtin_decl_explicit_p (fncode))
2438 set_builtin_decl_declared_p (fncode, true);
2439 break;
2443 if (new_defines_function)
2444 /* If defining a function declared with other language
2445 linkage, use the previously declared language linkage. */
2446 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2447 else if (types_match)
2449 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2450 /* Don't clear out the arguments if we're just redeclaring a
2451 function. */
2452 if (DECL_ARGUMENTS (olddecl))
2453 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2456 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2457 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2459 /* Now preserve various other info from the definition. */
2460 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2461 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2462 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2463 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2465 /* Warn about conflicting visibility specifications. */
2466 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2467 && DECL_VISIBILITY_SPECIFIED (newdecl)
2468 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2470 if (warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wattributes,
2471 "%qD: visibility attribute ignored because it "
2472 "conflicts with previous declaration", newdecl))
2473 inform (DECL_SOURCE_LOCATION (olddecl),
2474 "previous declaration of %qD", olddecl);
2476 /* Choose the declaration which specified visibility. */
2477 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2479 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2480 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2482 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2483 so keep this behavior. */
2484 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2486 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2487 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2489 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2490 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2492 SET_DECL_ALIGN (newdecl, DECL_ALIGN (olddecl));
2493 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2495 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2496 if (TREE_CODE (newdecl) == FIELD_DECL)
2497 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2499 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2500 with that from NEWDECL below. */
2501 if (DECL_LANG_SPECIFIC (olddecl))
2503 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2504 != DECL_LANG_SPECIFIC (newdecl));
2505 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2508 /* Merge the USED information. */
2509 if (TREE_USED (olddecl))
2510 TREE_USED (newdecl) = 1;
2511 else if (TREE_USED (newdecl))
2512 TREE_USED (olddecl) = 1;
2513 if (VAR_P (newdecl))
2515 if (DECL_READ_P (olddecl))
2516 DECL_READ_P (newdecl) = 1;
2517 else if (DECL_READ_P (newdecl))
2518 DECL_READ_P (olddecl) = 1;
2520 if (DECL_PRESERVE_P (olddecl))
2521 DECL_PRESERVE_P (newdecl) = 1;
2522 else if (DECL_PRESERVE_P (newdecl))
2523 DECL_PRESERVE_P (olddecl) = 1;
2525 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2526 to olddecl and deleted. */
2527 if (TREE_CODE (newdecl) == FUNCTION_DECL
2528 && DECL_FUNCTION_VERSIONED (olddecl))
2530 /* Set the flag for newdecl so that it gets copied to olddecl. */
2531 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2532 /* newdecl will be purged after copying to olddecl and is no longer
2533 a version. */
2534 cgraph_node::delete_function_version (newdecl);
2537 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2539 int function_size;
2540 struct symtab_node *snode = symtab_node::get (olddecl);
2542 function_size = sizeof (struct tree_decl_common);
2544 memcpy ((char *) olddecl + sizeof (struct tree_common),
2545 (char *) newdecl + sizeof (struct tree_common),
2546 function_size - sizeof (struct tree_common));
2548 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2549 (char *) newdecl + sizeof (struct tree_decl_common),
2550 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2552 /* Preserve symtab node mapping. */
2553 olddecl->decl_with_vis.symtab_node = snode;
2555 if (new_template_info)
2556 /* If newdecl is a template instantiation, it is possible that
2557 the following sequence of events has occurred:
2559 o A friend function was declared in a class template. The
2560 class template was instantiated.
2562 o The instantiation of the friend declaration was
2563 recorded on the instantiation list, and is newdecl.
2565 o Later, however, instantiate_class_template called pushdecl
2566 on the newdecl to perform name injection. But, pushdecl in
2567 turn called duplicate_decls when it discovered that another
2568 declaration of a global function with the same name already
2569 existed.
2571 o Here, in duplicate_decls, we decided to clobber newdecl.
2573 If we're going to do that, we'd better make sure that
2574 olddecl, and not newdecl, is on the list of
2575 instantiations so that if we try to do the instantiation
2576 again we won't get the clobbered declaration. */
2577 reregister_specialization (newdecl,
2578 new_template_info,
2579 olddecl);
2581 else
2583 size_t size = tree_code_size (TREE_CODE (newdecl));
2585 memcpy ((char *) olddecl + sizeof (struct tree_common),
2586 (char *) newdecl + sizeof (struct tree_common),
2587 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2588 switch (TREE_CODE (newdecl))
2590 case LABEL_DECL:
2591 case VAR_DECL:
2592 case RESULT_DECL:
2593 case PARM_DECL:
2594 case FIELD_DECL:
2595 case TYPE_DECL:
2596 case CONST_DECL:
2598 struct symtab_node *snode = NULL;
2600 if (VAR_P (newdecl)
2601 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl)
2602 || DECL_EXTERNAL (olddecl)))
2603 snode = symtab_node::get (olddecl);
2604 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2605 (char *) newdecl + sizeof (struct tree_decl_common),
2606 size - sizeof (struct tree_decl_common)
2607 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2608 if (VAR_P (newdecl))
2609 olddecl->decl_with_vis.symtab_node = snode;
2611 break;
2612 default:
2613 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2614 (char *) newdecl + sizeof (struct tree_decl_common),
2615 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2616 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2617 break;
2621 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2623 if (DECL_EXTERNAL (olddecl)
2624 || TREE_PUBLIC (olddecl)
2625 || TREE_STATIC (olddecl))
2627 /* Merge the section attribute.
2628 We want to issue an error if the sections conflict but that must be
2629 done later in decl_attributes since we are called before attributes
2630 are assigned. */
2631 if (DECL_SECTION_NAME (newdecl) != NULL)
2632 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2634 if (DECL_ONE_ONLY (newdecl))
2636 struct symtab_node *oldsym, *newsym;
2637 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2638 oldsym = cgraph_node::get_create (olddecl);
2639 else
2640 oldsym = varpool_node::get_create (olddecl);
2641 newsym = symtab_node::get (newdecl);
2642 oldsym->set_comdat_group (newsym->get_comdat_group ());
2646 if (VAR_P (newdecl)
2647 && CP_DECL_THREAD_LOCAL_P (newdecl))
2649 CP_DECL_THREAD_LOCAL_P (olddecl) = true;
2650 if (!processing_template_decl)
2651 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2655 DECL_UID (olddecl) = olddecl_uid;
2656 if (olddecl_friend)
2657 DECL_FRIEND_P (olddecl) = 1;
2658 if (hidden_friend)
2660 DECL_ANTICIPATED (olddecl) = 1;
2661 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2664 /* NEWDECL contains the merged attribute lists.
2665 Update OLDDECL to be the same. */
2666 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2668 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2669 so that encode_section_info has a chance to look at the new decl
2670 flags and attributes. */
2671 if (DECL_RTL_SET_P (olddecl)
2672 && (TREE_CODE (olddecl) == FUNCTION_DECL
2673 || (VAR_P (olddecl)
2674 && TREE_STATIC (olddecl))))
2675 make_decl_rtl (olddecl);
2677 /* The NEWDECL will no longer be needed. Because every out-of-class
2678 declaration of a member results in a call to duplicate_decls,
2679 freeing these nodes represents in a significant savings.
2681 Before releasing the node, be sore to remove function from symbol
2682 table that might have been inserted there to record comdat group.
2683 Be sure to however do not free DECL_STRUCT_FUNCTION because this
2684 structure is shared in between newdecl and oldecl. */
2685 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2686 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2687 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2689 struct symtab_node *snode = symtab_node::get (newdecl);
2690 if (snode)
2691 snode->remove ();
2694 /* Remove the associated constraints for newdecl, if any, before
2695 reclaiming memory. */
2696 if (flag_concepts)
2697 remove_constraints (newdecl);
2699 ggc_free (newdecl);
2701 return olddecl;
2704 /* Return zero if the declaration NEWDECL is valid
2705 when the declaration OLDDECL (assumed to be for the same name)
2706 has already been seen.
2707 Otherwise return an error message format string with a %s
2708 where the identifier should go. */
2710 static const char *
2711 redeclaration_error_message (tree newdecl, tree olddecl)
2713 if (TREE_CODE (newdecl) == TYPE_DECL)
2715 /* Because C++ can put things into name space for free,
2716 constructs like "typedef struct foo { ... } foo"
2717 would look like an erroneous redeclaration. */
2718 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2719 return NULL;
2720 else
2721 return G_("redefinition of %q#D");
2723 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2725 /* If this is a pure function, its olddecl will actually be
2726 the original initialization to `0' (which we force to call
2727 abort()). Don't complain about redefinition in this case. */
2728 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2729 && DECL_INITIAL (olddecl) == NULL_TREE)
2730 return NULL;
2732 /* If both functions come from different namespaces, this is not
2733 a redeclaration - this is a conflict with a used function. */
2734 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2735 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2736 && ! decls_match (olddecl, newdecl))
2737 return G_("%qD conflicts with used function");
2739 /* We'll complain about linkage mismatches in
2740 warn_extern_redeclared_static. */
2742 /* Defining the same name twice is no good. */
2743 if (DECL_INITIAL (olddecl) != NULL_TREE
2744 && DECL_INITIAL (newdecl) != NULL_TREE)
2746 if (DECL_NAME (olddecl) == NULL_TREE)
2747 return G_("%q#D not declared in class");
2748 else if (!GNU_INLINE_P (olddecl)
2749 || GNU_INLINE_P (newdecl))
2750 return G_("redefinition of %q#D");
2753 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2755 bool olda = GNU_INLINE_P (olddecl);
2756 bool newa = GNU_INLINE_P (newdecl);
2758 if (olda != newa)
2760 if (newa)
2761 return G_("%q+D redeclared inline with "
2762 "%<gnu_inline%> attribute");
2763 else
2764 return G_("%q+D redeclared inline without "
2765 "%<gnu_inline%> attribute");
2769 check_abi_tag_redeclaration
2770 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2771 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2773 return NULL;
2775 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2777 tree nt, ot;
2779 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2781 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2782 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2783 return G_("redefinition of %q#D");
2784 return NULL;
2787 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2788 || (DECL_TEMPLATE_RESULT (newdecl)
2789 == DECL_TEMPLATE_RESULT (olddecl)))
2790 return NULL;
2792 nt = DECL_TEMPLATE_RESULT (newdecl);
2793 if (DECL_TEMPLATE_INFO (nt))
2794 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2795 ot = DECL_TEMPLATE_RESULT (olddecl);
2796 if (DECL_TEMPLATE_INFO (ot))
2797 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2798 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2799 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2800 return G_("redefinition of %q#D");
2802 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2804 bool olda = GNU_INLINE_P (ot);
2805 bool newa = GNU_INLINE_P (nt);
2807 if (olda != newa)
2809 if (newa)
2810 return G_("%q+D redeclared inline with "
2811 "%<gnu_inline%> attribute");
2812 else
2813 return G_("%q+D redeclared inline without "
2814 "%<gnu_inline%> attribute");
2818 /* Core issue #226 (C++0x):
2820 If a friend function template declaration specifies a
2821 default template-argument, that declaration shall be a
2822 definition and shall be the only declaration of the
2823 function template in the translation unit. */
2824 if ((cxx_dialect != cxx98)
2825 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2826 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2827 /*is_primary=*/true,
2828 /*is_partial=*/false,
2829 /*is_friend_decl=*/2))
2830 return G_("redeclaration of friend %q#D "
2831 "may not have default template arguments");
2833 return NULL;
2835 else if (VAR_P (newdecl)
2836 && CP_DECL_THREAD_LOCAL_P (newdecl) != CP_DECL_THREAD_LOCAL_P (olddecl)
2837 && (! DECL_LANG_SPECIFIC (olddecl)
2838 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2839 || CP_DECL_THREAD_LOCAL_P (newdecl)))
2841 /* Only variables can be thread-local, and all declarations must
2842 agree on this property. */
2843 if (CP_DECL_THREAD_LOCAL_P (newdecl))
2844 return G_("thread-local declaration of %q#D follows "
2845 "non-thread-local declaration");
2846 else
2847 return G_("non-thread-local declaration of %q#D follows "
2848 "thread-local declaration");
2850 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2852 /* The objects have been declared at namespace scope. If either
2853 is a member of an anonymous union, then this is an invalid
2854 redeclaration. For example:
2856 int i;
2857 union { int i; };
2859 is invalid. */
2860 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2861 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2862 return G_("redeclaration of %q#D");
2863 /* If at least one declaration is a reference, there is no
2864 conflict. For example:
2866 int i = 3;
2867 extern int i;
2869 is valid. */
2870 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2871 return NULL;
2872 /* Reject two definitions. */
2873 return G_("redefinition of %q#D");
2875 else
2877 /* Objects declared with block scope: */
2878 /* Reject two definitions, and reject a definition
2879 together with an external reference. */
2880 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2881 return G_("redeclaration of %q#D");
2882 return NULL;
2886 /* Hash and equality functions for the named_label table. */
2888 hashval_t
2889 named_label_hasher::hash (named_label_entry *ent)
2891 return DECL_UID (ent->label_decl);
2894 bool
2895 named_label_hasher::equal (named_label_entry *a, named_label_entry *b)
2897 return a->label_decl == b->label_decl;
2900 /* Create a new label, named ID. */
2902 static tree
2903 make_label_decl (tree id, int local_p)
2905 struct named_label_entry *ent;
2906 tree decl;
2908 decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
2910 DECL_CONTEXT (decl) = current_function_decl;
2911 DECL_MODE (decl) = VOIDmode;
2912 C_DECLARED_LABEL_FLAG (decl) = local_p;
2914 /* Say where one reference is to the label, for the sake of the
2915 error if it is not defined. */
2916 DECL_SOURCE_LOCATION (decl) = input_location;
2918 /* Record the fact that this identifier is bound to this label. */
2919 SET_IDENTIFIER_LABEL_VALUE (id, decl);
2921 /* Create the label htab for the function on demand. */
2922 if (!named_labels)
2923 named_labels = hash_table<named_label_hasher>::create_ggc (13);
2925 /* Record this label on the list of labels used in this function.
2926 We do this before calling make_label_decl so that we get the
2927 IDENTIFIER_LABEL_VALUE before the new label is declared. */
2928 ent = ggc_cleared_alloc<named_label_entry> ();
2929 ent->label_decl = decl;
2931 named_label_entry **slot = named_labels->find_slot (ent, INSERT);
2932 gcc_assert (*slot == NULL);
2933 *slot = ent;
2935 return decl;
2938 /* Look for a label named ID in the current function. If one cannot
2939 be found, create one. (We keep track of used, but undefined,
2940 labels, and complain about them at the end of a function.) */
2942 static tree
2943 lookup_label_1 (tree id)
2945 tree decl;
2947 /* You can't use labels at global scope. */
2948 if (current_function_decl == NULL_TREE)
2950 error ("label %qE referenced outside of any function", id);
2951 return NULL_TREE;
2954 /* See if we've already got this label. */
2955 decl = IDENTIFIER_LABEL_VALUE (id);
2956 if (decl != NULL_TREE && DECL_CONTEXT (decl) == current_function_decl)
2957 return decl;
2959 decl = make_label_decl (id, /*local_p=*/0);
2960 return decl;
2963 /* Wrapper for lookup_label_1. */
2965 tree
2966 lookup_label (tree id)
2968 tree ret;
2969 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
2970 ret = lookup_label_1 (id);
2971 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
2972 return ret;
2975 /* Declare a local label named ID. */
2977 tree
2978 declare_local_label (tree id)
2980 tree decl;
2981 cp_label_binding bind;
2983 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
2984 this scope we can restore the old value of IDENTIFIER_TYPE_VALUE. */
2985 bind.prev_value = IDENTIFIER_LABEL_VALUE (id);
2987 decl = make_label_decl (id, /*local_p=*/1);
2988 bind.label = decl;
2989 vec_safe_push (current_binding_level->shadowed_labels, bind);
2991 return decl;
2994 /* Returns nonzero if it is ill-formed to jump past the declaration of
2995 DECL. Returns 2 if it's also a real problem. */
2997 static int
2998 decl_jump_unsafe (tree decl)
3000 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
3001 with automatic storage duration is not in scope to a point where it is
3002 in scope is ill-formed unless the variable has scalar type, class type
3003 with a trivial default constructor and a trivial destructor, a
3004 cv-qualified version of one of these types, or an array of one of the
3005 preceding types and is declared without an initializer (8.5). */
3006 tree type = TREE_TYPE (decl);
3008 if (!VAR_P (decl) || TREE_STATIC (decl)
3009 || type == error_mark_node)
3010 return 0;
3012 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
3013 || variably_modified_type_p (type, NULL_TREE))
3014 return 2;
3016 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3017 return 1;
3019 return 0;
3022 /* A subroutine of check_previous_goto_1 and check_goto to identify a branch
3023 to the user. */
3025 static bool
3026 identify_goto (tree decl, location_t loc, const location_t *locus,
3027 diagnostic_t diag_kind)
3029 bool complained
3030 = (decl ? emit_diagnostic (diag_kind, loc, 0, "jump to label %qD", decl)
3031 : emit_diagnostic (diag_kind, loc, 0, "jump to case label"));
3032 if (complained && locus)
3033 inform (*locus, " from here");
3034 return complained;
3037 /* Check that a single previously seen jump to a newly defined label
3038 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
3039 the jump context; NAMES are the names in scope in LEVEL at the jump
3040 context; LOCUS is the source position of the jump or 0. Returns
3041 true if all is well. */
3043 static bool
3044 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
3045 bool exited_omp, const location_t *locus)
3047 cp_binding_level *b;
3048 bool complained = false;
3049 int identified = 0;
3050 bool saw_eh = false, saw_omp = false, saw_tm = false;
3052 if (exited_omp)
3054 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3055 if (complained)
3056 inform (input_location, " exits OpenMP structured block");
3057 saw_omp = true;
3058 identified = 2;
3061 for (b = current_binding_level; b ; b = b->level_chain)
3063 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
3065 for (new_decls = b->names; new_decls != old_decls;
3066 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
3067 : TREE_CHAIN (new_decls)))
3069 int problem = decl_jump_unsafe (new_decls);
3070 if (! problem)
3071 continue;
3073 if (!identified)
3075 complained = identify_goto (decl, input_location, locus,
3076 DK_PERMERROR);
3077 identified = 1;
3079 if (complained)
3081 if (problem > 1)
3082 inform (DECL_SOURCE_LOCATION (new_decls),
3083 " crosses initialization of %q#D", new_decls);
3084 else
3085 inform (DECL_SOURCE_LOCATION (new_decls),
3086 " enters scope of %q#D which has "
3087 "non-trivial destructor", new_decls);
3091 if (b == level)
3092 break;
3093 if ((b->kind == sk_try || b->kind == sk_catch) && !saw_eh)
3095 if (identified < 2)
3097 complained = identify_goto (decl, input_location, locus,
3098 DK_ERROR);
3099 identified = 2;
3101 if (complained)
3103 if (b->kind == sk_try)
3104 inform (input_location, " enters try block");
3105 else
3106 inform (input_location, " enters catch block");
3108 saw_eh = true;
3110 if (b->kind == sk_omp && !saw_omp)
3112 if (identified < 2)
3114 complained = identify_goto (decl, input_location, locus,
3115 DK_ERROR);
3116 identified = 2;
3118 if (complained)
3119 inform (input_location, " enters OpenMP structured block");
3120 saw_omp = true;
3122 if (b->kind == sk_transaction && !saw_tm)
3124 if (identified < 2)
3126 complained = identify_goto (decl, input_location, locus,
3127 DK_ERROR);
3128 identified = 2;
3130 if (complained)
3131 inform (input_location,
3132 " enters synchronized or atomic statement");
3133 saw_tm = true;
3137 return !identified;
3140 static void
3141 check_previous_goto (tree decl, struct named_label_use_entry *use)
3143 check_previous_goto_1 (decl, use->binding_level,
3144 use->names_in_scope, use->in_omp_scope,
3145 &use->o_goto_locus);
3148 static bool
3149 check_switch_goto (cp_binding_level* level)
3151 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
3154 /* Check that a new jump to a label DECL is OK. Called by
3155 finish_goto_stmt. */
3157 void
3158 check_goto (tree decl)
3160 struct named_label_entry *ent, dummy;
3161 bool saw_catch = false, complained = false;
3162 int identified = 0;
3163 tree bad;
3164 unsigned ix;
3166 /* We can't know where a computed goto is jumping.
3167 So we assume that it's OK. */
3168 if (TREE_CODE (decl) != LABEL_DECL)
3169 return;
3171 /* We didn't record any information about this label when we created it,
3172 and there's not much point since it's trivial to analyze as a return. */
3173 if (decl == cdtor_label)
3174 return;
3176 dummy.label_decl = decl;
3177 ent = named_labels->find (&dummy);
3178 gcc_assert (ent != NULL);
3180 /* If the label hasn't been defined yet, defer checking. */
3181 if (! DECL_INITIAL (decl))
3183 struct named_label_use_entry *new_use;
3185 /* Don't bother creating another use if the last goto had the
3186 same data, and will therefore create the same set of errors. */
3187 if (ent->uses
3188 && ent->uses->names_in_scope == current_binding_level->names)
3189 return;
3191 new_use = ggc_alloc<named_label_use_entry> ();
3192 new_use->binding_level = current_binding_level;
3193 new_use->names_in_scope = current_binding_level->names;
3194 new_use->o_goto_locus = input_location;
3195 new_use->in_omp_scope = false;
3197 new_use->next = ent->uses;
3198 ent->uses = new_use;
3199 return;
3202 if (ent->in_try_scope || ent->in_catch_scope || ent->in_transaction_scope
3203 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3205 diagnostic_t diag_kind = DK_PERMERROR;
3206 if (ent->in_try_scope || ent->in_catch_scope
3207 || ent->in_transaction_scope || ent->in_omp_scope)
3208 diag_kind = DK_ERROR;
3209 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3210 &input_location, diag_kind);
3211 identified = 1 + (diag_kind == DK_ERROR);
3214 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3216 int u = decl_jump_unsafe (bad);
3218 if (u > 1 && DECL_ARTIFICIAL (bad))
3220 /* Can't skip init of __exception_info. */
3221 if (identified == 1)
3223 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3224 &input_location, DK_ERROR);
3225 identified = 2;
3227 if (complained)
3228 inform (DECL_SOURCE_LOCATION (bad), " enters catch block");
3229 saw_catch = true;
3231 else if (complained)
3233 if (u > 1)
3234 inform (DECL_SOURCE_LOCATION (bad),
3235 " skips initialization of %q#D", bad);
3236 else
3237 inform (DECL_SOURCE_LOCATION (bad),
3238 " enters scope of %q#D which has "
3239 "non-trivial destructor", bad);
3243 if (complained)
3245 if (ent->in_try_scope)
3246 inform (input_location, " enters try block");
3247 else if (ent->in_catch_scope && !saw_catch)
3248 inform (input_location, " enters catch block");
3249 else if (ent->in_transaction_scope)
3250 inform (input_location, " enters synchronized or atomic statement");
3253 if (ent->in_omp_scope)
3255 if (complained)
3256 inform (input_location, " enters OpenMP structured block");
3258 else if (flag_openmp)
3260 cp_binding_level *b;
3261 for (b = current_binding_level; b ; b = b->level_chain)
3263 if (b == ent->binding_level)
3264 break;
3265 if (b->kind == sk_omp)
3267 if (identified < 2)
3269 complained = identify_goto (decl,
3270 DECL_SOURCE_LOCATION (decl),
3271 &input_location, DK_ERROR);
3272 identified = 2;
3274 if (complained)
3275 inform (input_location, " exits OpenMP structured block");
3276 break;
3282 /* Check that a return is ok wrt OpenMP structured blocks.
3283 Called by finish_return_stmt. Returns true if all is well. */
3285 bool
3286 check_omp_return (void)
3288 cp_binding_level *b;
3289 for (b = current_binding_level; b ; b = b->level_chain)
3290 if (b->kind == sk_omp)
3292 error ("invalid exit from OpenMP structured block");
3293 return false;
3295 else if (b->kind == sk_function_parms)
3296 break;
3297 return true;
3300 /* Define a label, specifying the location in the source file.
3301 Return the LABEL_DECL node for the label. */
3303 static tree
3304 define_label_1 (location_t location, tree name)
3306 struct named_label_entry *ent, dummy;
3307 cp_binding_level *p;
3308 tree decl;
3310 decl = lookup_label (name);
3312 dummy.label_decl = decl;
3313 ent = named_labels->find (&dummy);
3314 gcc_assert (ent != NULL);
3316 /* After labels, make any new cleanups in the function go into their
3317 own new (temporary) binding contour. */
3318 for (p = current_binding_level;
3319 p->kind != sk_function_parms;
3320 p = p->level_chain)
3321 p->more_cleanups_ok = 0;
3323 if (name == get_identifier ("wchar_t"))
3324 permerror (input_location, "label named wchar_t");
3326 if (DECL_INITIAL (decl) != NULL_TREE)
3328 error ("duplicate label %qD", decl);
3329 return error_mark_node;
3331 else
3333 struct named_label_use_entry *use;
3335 /* Mark label as having been defined. */
3336 DECL_INITIAL (decl) = error_mark_node;
3337 /* Say where in the source. */
3338 DECL_SOURCE_LOCATION (decl) = location;
3340 ent->binding_level = current_binding_level;
3341 ent->names_in_scope = current_binding_level->names;
3343 for (use = ent->uses; use ; use = use->next)
3344 check_previous_goto (decl, use);
3345 ent->uses = NULL;
3348 return decl;
3351 /* Wrapper for define_label_1. */
3353 tree
3354 define_label (location_t location, tree name)
3356 tree ret;
3357 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3358 ret = define_label_1 (location, name);
3359 timevar_cond_stop (TV_NAME_LOOKUP, running);
3360 return ret;
3364 struct cp_switch
3366 cp_binding_level *level;
3367 struct cp_switch *next;
3368 /* The SWITCH_STMT being built. */
3369 tree switch_stmt;
3370 /* A splay-tree mapping the low element of a case range to the high
3371 element, or NULL_TREE if there is no high element. Used to
3372 determine whether or not a new case label duplicates an old case
3373 label. We need a tree, rather than simply a hash table, because
3374 of the GNU case range extension. */
3375 splay_tree cases;
3376 /* Remember whether there was a case value that is outside the
3377 range of the original type of the controlling expression. */
3378 bool outside_range_p;
3381 /* A stack of the currently active switch statements. The innermost
3382 switch statement is on the top of the stack. There is no need to
3383 mark the stack for garbage collection because it is only active
3384 during the processing of the body of a function, and we never
3385 collect at that point. */
3387 static struct cp_switch *switch_stack;
3389 /* Called right after a switch-statement condition is parsed.
3390 SWITCH_STMT is the switch statement being parsed. */
3392 void
3393 push_switch (tree switch_stmt)
3395 struct cp_switch *p = XNEW (struct cp_switch);
3396 p->level = current_binding_level;
3397 p->next = switch_stack;
3398 p->switch_stmt = switch_stmt;
3399 p->cases = splay_tree_new (case_compare, NULL, NULL);
3400 p->outside_range_p = false;
3401 switch_stack = p;
3404 void
3405 pop_switch (void)
3407 struct cp_switch *cs = switch_stack;
3408 location_t switch_location;
3410 /* Emit warnings as needed. */
3411 switch_location = EXPR_LOC_OR_LOC (cs->switch_stmt, input_location);
3412 const bool bool_cond_p
3413 = (SWITCH_STMT_TYPE (cs->switch_stmt)
3414 && TREE_CODE (SWITCH_STMT_TYPE (cs->switch_stmt)) == BOOLEAN_TYPE);
3415 if (!processing_template_decl)
3416 c_do_switch_warnings (cs->cases, switch_location,
3417 SWITCH_STMT_TYPE (cs->switch_stmt),
3418 SWITCH_STMT_COND (cs->switch_stmt),
3419 bool_cond_p, cs->outside_range_p);
3421 splay_tree_delete (cs->cases);
3422 switch_stack = switch_stack->next;
3423 free (cs);
3426 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3427 condition. Note that if TYPE and VALUE are already integral we don't
3428 really do the conversion because the language-independent
3429 warning/optimization code will work better that way. */
3431 static tree
3432 case_conversion (tree type, tree value)
3434 if (value == NULL_TREE)
3435 return value;
3437 if (cxx_dialect >= cxx11
3438 && (SCOPED_ENUM_P (type)
3439 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))))
3441 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3442 type = type_promotes_to (type);
3443 value = (perform_implicit_conversion_flags
3444 (type, value, tf_warning_or_error,
3445 LOOKUP_IMPLICIT | LOOKUP_NO_NON_INTEGRAL));
3447 return cxx_constant_value (value);
3450 /* Note that we've seen a definition of a case label, and complain if this
3451 is a bad place for one. */
3453 tree
3454 finish_case_label (location_t loc, tree low_value, tree high_value)
3456 tree cond, r;
3457 cp_binding_level *p;
3458 tree type;
3460 if (processing_template_decl)
3462 tree label;
3464 /* For templates, just add the case label; we'll do semantic
3465 analysis at instantiation-time. */
3466 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
3467 return add_stmt (build_case_label (low_value, high_value, label));
3470 /* Find the condition on which this switch statement depends. */
3471 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3472 if (cond && TREE_CODE (cond) == TREE_LIST)
3473 cond = TREE_VALUE (cond);
3475 if (!check_switch_goto (switch_stack->level))
3476 return error_mark_node;
3478 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3480 low_value = case_conversion (type, low_value);
3481 high_value = case_conversion (type, high_value);
3483 r = c_add_case_label (loc, switch_stack->cases, cond, type,
3484 low_value, high_value,
3485 &switch_stack->outside_range_p);
3487 /* After labels, make any new cleanups in the function go into their
3488 own new (temporary) binding contour. */
3489 for (p = current_binding_level;
3490 p->kind != sk_function_parms;
3491 p = p->level_chain)
3492 p->more_cleanups_ok = 0;
3494 return r;
3497 struct typename_info {
3498 tree scope;
3499 tree name;
3500 tree template_id;
3501 bool enum_p;
3502 bool class_p;
3505 struct typename_hasher : ggc_ptr_hash<tree_node>
3507 typedef typename_info *compare_type;
3509 /* Hash a TYPENAME_TYPE. */
3511 static hashval_t
3512 hash (tree t)
3514 hashval_t hash;
3516 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3517 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3519 return hash;
3522 /* Compare two TYPENAME_TYPEs. */
3524 static bool
3525 equal (tree t1, const typename_info *t2)
3527 return (TYPE_IDENTIFIER (t1) == t2->name
3528 && TYPE_CONTEXT (t1) == t2->scope
3529 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3530 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3531 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3535 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3536 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3538 Returns the new TYPENAME_TYPE. */
3540 static GTY (()) hash_table<typename_hasher> *typename_htab;
3542 static tree
3543 build_typename_type (tree context, tree name, tree fullname,
3544 enum tag_types tag_type)
3546 tree t;
3547 tree d;
3548 typename_info ti;
3549 tree *e;
3550 hashval_t hash;
3552 if (typename_htab == NULL)
3553 typename_htab = hash_table<typename_hasher>::create_ggc (61);
3555 ti.scope = FROB_CONTEXT (context);
3556 ti.name = name;
3557 ti.template_id = fullname;
3558 ti.enum_p = tag_type == enum_type;
3559 ti.class_p = (tag_type == class_type
3560 || tag_type == record_type
3561 || tag_type == union_type);
3562 hash = (htab_hash_pointer (ti.scope)
3563 ^ htab_hash_pointer (ti.name));
3565 /* See if we already have this type. */
3566 e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
3567 if (*e)
3568 t = *e;
3569 else
3571 /* Build the TYPENAME_TYPE. */
3572 t = cxx_make_type (TYPENAME_TYPE);
3573 TYPE_CONTEXT (t) = ti.scope;
3574 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3575 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3576 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3578 /* Build the corresponding TYPE_DECL. */
3579 d = build_decl (input_location, TYPE_DECL, name, t);
3580 TYPE_NAME (TREE_TYPE (d)) = d;
3581 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3582 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3583 DECL_ARTIFICIAL (d) = 1;
3585 /* Store it in the hash table. */
3586 *e = t;
3588 /* TYPENAME_TYPEs must always be compared structurally, because
3589 they may or may not resolve down to another type depending on
3590 the currently open classes. */
3591 SET_TYPE_STRUCTURAL_EQUALITY (t);
3594 return t;
3597 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3598 provided to name the type. Returns an appropriate type, unless an
3599 error occurs, in which case error_mark_node is returned. If we
3600 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3601 return that, rather than the _TYPE it corresponds to, in other
3602 cases we look through the type decl. If TF_ERROR is set, complain
3603 about errors, otherwise be quiet. */
3605 tree
3606 make_typename_type (tree context, tree name, enum tag_types tag_type,
3607 tsubst_flags_t complain)
3609 tree fullname;
3610 tree t;
3611 bool want_template;
3613 if (name == error_mark_node
3614 || context == NULL_TREE
3615 || context == error_mark_node)
3616 return error_mark_node;
3618 if (TYPE_P (name))
3620 if (!(TYPE_LANG_SPECIFIC (name)
3621 && (CLASSTYPE_IS_TEMPLATE (name)
3622 || CLASSTYPE_USE_TEMPLATE (name))))
3623 name = TYPE_IDENTIFIER (name);
3624 else
3625 /* Create a TEMPLATE_ID_EXPR for the type. */
3626 name = build_nt (TEMPLATE_ID_EXPR,
3627 CLASSTYPE_TI_TEMPLATE (name),
3628 CLASSTYPE_TI_ARGS (name));
3630 else if (TREE_CODE (name) == TYPE_DECL)
3631 name = DECL_NAME (name);
3633 fullname = name;
3635 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3637 name = TREE_OPERAND (name, 0);
3638 if (DECL_TYPE_TEMPLATE_P (name))
3639 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3640 if (TREE_CODE (name) != IDENTIFIER_NODE)
3642 if (complain & tf_error)
3643 error ("%qD is not a type", name);
3644 return error_mark_node;
3647 if (TREE_CODE (name) == TEMPLATE_DECL)
3649 if (complain & tf_error)
3650 error ("%qD used without template parameters", name);
3651 return error_mark_node;
3653 gcc_assert (identifier_p (name));
3654 gcc_assert (TYPE_P (context));
3656 if (!MAYBE_CLASS_TYPE_P (context))
3658 if (complain & tf_error)
3659 error ("%q#T is not a class", context);
3660 return error_mark_node;
3663 /* When the CONTEXT is a dependent type, NAME could refer to a
3664 dependent base class of CONTEXT. But look inside it anyway
3665 if CONTEXT is a currently open scope, in case it refers to a
3666 member of the current instantiation or a non-dependent base;
3667 lookup will stop when we hit a dependent base. */
3668 if (!dependent_scope_p (context))
3669 /* We should only set WANT_TYPE when we're a nested typename type.
3670 Then we can give better diagnostics if we find a non-type. */
3671 t = lookup_field (context, name, 2, /*want_type=*/true);
3672 else
3673 t = NULL_TREE;
3675 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3676 return build_typename_type (context, name, fullname, tag_type);
3678 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3680 if (!t)
3682 if (complain & tf_error)
3683 error (want_template ? G_("no class template named %q#T in %q#T")
3684 : G_("no type named %q#T in %q#T"), name, context);
3685 return error_mark_node;
3688 /* Pull out the template from an injected-class-name (or multiple). */
3689 if (want_template)
3690 t = maybe_get_template_decl_from_type_decl (t);
3692 if (TREE_CODE (t) == TREE_LIST)
3694 if (complain & tf_error)
3696 error ("lookup of %qT in %qT is ambiguous", name, context);
3697 print_candidates (t);
3699 return error_mark_node;
3702 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3704 if (complain & tf_error)
3705 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3706 context, name, t);
3707 return error_mark_node;
3709 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3711 if (complain & tf_error)
3712 error ("%<typename %T::%D%> names %q#T, which is not a type",
3713 context, name, t);
3714 return error_mark_node;
3717 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3718 return error_mark_node;
3720 /* If we are currently parsing a template and if T is a typedef accessed
3721 through CONTEXT then we need to remember and check access of T at
3722 template instantiation time. */
3723 add_typedef_to_current_template_for_access_check (t, context, input_location);
3725 if (want_template)
3726 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3727 NULL_TREE, context,
3728 /*entering_scope=*/0,
3729 complain | tf_user);
3731 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3732 t = TREE_TYPE (t);
3734 maybe_record_typedef_use (t);
3736 return t;
3739 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3740 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3741 in which case error_mark_node is returned.
3743 If PARM_LIST is non-NULL, also make sure that the template parameter
3744 list of TEMPLATE_DECL matches.
3746 If COMPLAIN zero, don't complain about any errors that occur. */
3748 tree
3749 make_unbound_class_template (tree context, tree name, tree parm_list,
3750 tsubst_flags_t complain)
3752 tree t;
3753 tree d;
3755 if (TYPE_P (name))
3756 name = TYPE_IDENTIFIER (name);
3757 else if (DECL_P (name))
3758 name = DECL_NAME (name);
3759 gcc_assert (identifier_p (name));
3761 if (!dependent_type_p (context)
3762 || currently_open_class (context))
3764 tree tmpl = NULL_TREE;
3766 if (MAYBE_CLASS_TYPE_P (context))
3767 tmpl = lookup_field (context, name, 0, false);
3769 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3770 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3772 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3774 if (complain & tf_error)
3775 error ("no class template named %q#T in %q#T", name, context);
3776 return error_mark_node;
3779 if (parm_list
3780 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3782 if (complain & tf_error)
3784 error ("template parameters do not match template %qD", tmpl);
3785 inform (DECL_SOURCE_LOCATION (tmpl),
3786 "%qD declared here", tmpl);
3788 return error_mark_node;
3791 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
3792 complain))
3793 return error_mark_node;
3795 return tmpl;
3798 /* Build the UNBOUND_CLASS_TEMPLATE. */
3799 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3800 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3801 TREE_TYPE (t) = NULL_TREE;
3802 SET_TYPE_STRUCTURAL_EQUALITY (t);
3804 /* Build the corresponding TEMPLATE_DECL. */
3805 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3806 TYPE_NAME (TREE_TYPE (d)) = d;
3807 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3808 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3809 DECL_ARTIFICIAL (d) = 1;
3810 DECL_TEMPLATE_PARMS (d) = parm_list;
3812 return t;
3817 /* Push the declarations of builtin types into the namespace.
3818 RID_INDEX is the index of the builtin type in the array
3819 RID_POINTERS. NAME is the name used when looking up the builtin
3820 type. TYPE is the _TYPE node for the builtin type. */
3822 void
3823 record_builtin_type (enum rid rid_index,
3824 const char* name,
3825 tree type)
3827 tree rname = NULL_TREE, tname = NULL_TREE;
3828 tree tdecl = NULL_TREE;
3830 if ((int) rid_index < (int) RID_MAX)
3831 rname = ridpointers[(int) rid_index];
3832 if (name)
3833 tname = get_identifier (name);
3835 /* The calls to SET_IDENTIFIER_GLOBAL_VALUE below should be
3836 eliminated. Built-in types should not be looked up name; their
3837 names are keywords that the parser can recognize. However, there
3838 is code in c-common.c that uses identifier_global_value to look
3839 up built-in types by name. */
3840 if (tname)
3842 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
3843 DECL_ARTIFICIAL (tdecl) = 1;
3844 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
3846 if (rname)
3848 if (!tdecl)
3850 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
3851 DECL_ARTIFICIAL (tdecl) = 1;
3853 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
3856 if (!TYPE_NAME (type))
3857 TYPE_NAME (type) = tdecl;
3859 if (tdecl)
3860 debug_hooks->type_decl (tdecl, 0);
3863 /* Record one of the standard Java types.
3864 * Declare it as having the given NAME.
3865 * If SIZE > 0, it is the size of one of the integral types;
3866 * otherwise it is the negative of the size of one of the other types. */
3868 static tree
3869 record_builtin_java_type (const char* name, int size)
3871 tree type, decl;
3872 if (size > 0)
3874 type = build_nonstandard_integer_type (size, 0);
3875 type = build_distinct_type_copy (type);
3877 else if (size > -32)
3879 tree stype;
3880 /* "__java_char" or ""__java_boolean". */
3881 type = build_nonstandard_integer_type (-size, 1);
3882 type = build_distinct_type_copy (type);
3883 /* Get the signed type cached and attached to the unsigned type,
3884 so it doesn't get garbage-collected at "random" times,
3885 causing potential codegen differences out of different UIDs
3886 and different alias set numbers. */
3887 stype = build_nonstandard_integer_type (-size, 0);
3888 stype = build_distinct_type_copy (stype);
3889 TREE_CHAIN (type) = stype;
3890 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
3892 else
3893 { /* "__java_float" or ""__java_double". */
3894 type = make_node (REAL_TYPE);
3895 TYPE_PRECISION (type) = - size;
3896 layout_type (type);
3898 record_builtin_type (RID_MAX, name, type);
3899 decl = TYPE_NAME (type);
3901 /* Suppress generate debug symbol entries for these types,
3902 since for normal C++ they are just clutter.
3903 However, push_lang_context undoes this if extern "Java" is seen. */
3904 DECL_IGNORED_P (decl) = 1;
3906 TYPE_FOR_JAVA (type) = 1;
3907 return type;
3910 /* Push a type into the namespace so that the back ends ignore it. */
3912 static void
3913 record_unknown_type (tree type, const char* name)
3915 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
3916 TYPE_DECL, get_identifier (name), type));
3917 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3918 DECL_IGNORED_P (decl) = 1;
3919 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
3920 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
3921 SET_TYPE_ALIGN (type, 1);
3922 TYPE_USER_ALIGN (type) = 0;
3923 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
3926 /* A string for which we should create an IDENTIFIER_NODE at
3927 startup. */
3929 struct predefined_identifier
3931 /* The name of the identifier. */
3932 const char *const name;
3933 /* The place where the IDENTIFIER_NODE should be stored. */
3934 tree *const node;
3935 /* Nonzero if this is the name of a constructor or destructor. */
3936 const int ctor_or_dtor_p;
3939 /* Create all the predefined identifiers. */
3941 static void
3942 initialize_predefined_identifiers (void)
3944 const predefined_identifier *pid;
3946 /* A table of identifiers to create at startup. */
3947 static const predefined_identifier predefined_identifiers[] = {
3948 { "C++", &lang_name_cplusplus, 0 },
3949 { "C", &lang_name_c, 0 },
3950 { "Java", &lang_name_java, 0 },
3951 /* Some of these names have a trailing space so that it is
3952 impossible for them to conflict with names written by users. */
3953 { "__ct ", &ctor_identifier, 1 },
3954 { "__base_ctor ", &base_ctor_identifier, 1 },
3955 { "__comp_ctor ", &complete_ctor_identifier, 1 },
3956 { "__dt ", &dtor_identifier, 1 },
3957 { "__comp_dtor ", &complete_dtor_identifier, 1 },
3958 { "__base_dtor ", &base_dtor_identifier, 1 },
3959 { "__deleting_dtor ", &deleting_dtor_identifier, 1 },
3960 { IN_CHARGE_NAME, &in_charge_identifier, 0 },
3961 { "nelts", &nelts_identifier, 0 },
3962 { THIS_NAME, &this_identifier, 0 },
3963 { VTABLE_DELTA_NAME, &delta_identifier, 0 },
3964 { VTABLE_PFN_NAME, &pfn_identifier, 0 },
3965 { "_vptr", &vptr_identifier, 0 },
3966 { "__vtt_parm", &vtt_parm_identifier, 0 },
3967 { "::", &global_scope_name, 0 },
3968 { "std", &std_identifier, 0 },
3969 { NULL, NULL, 0 }
3972 for (pid = predefined_identifiers; pid->name; ++pid)
3974 *pid->node = get_identifier (pid->name);
3975 if (pid->ctor_or_dtor_p)
3976 IDENTIFIER_CTOR_OR_DTOR_P (*pid->node) = 1;
3980 /* Create the predefined scalar types of C,
3981 and some nodes representing standard constants (0, 1, (void *)0).
3982 Initialize the global binding level.
3983 Make definitions for built-in primitive functions. */
3985 void
3986 cxx_init_decl_processing (void)
3988 tree void_ftype;
3989 tree void_ftype_ptr;
3991 /* Create all the identifiers we need. */
3992 initialize_predefined_identifiers ();
3994 /* Create the global variables. */
3995 push_to_top_level ();
3997 current_function_decl = NULL_TREE;
3998 current_binding_level = NULL;
3999 /* Enter the global namespace. */
4000 gcc_assert (global_namespace == NULL_TREE);
4001 global_namespace = build_lang_decl (NAMESPACE_DECL, global_scope_name,
4002 void_type_node);
4003 DECL_CONTEXT (global_namespace) = build_translation_unit_decl (NULL_TREE);
4004 debug_hooks->register_main_translation_unit
4005 (DECL_CONTEXT (global_namespace));
4006 TREE_PUBLIC (global_namespace) = 1;
4007 begin_scope (sk_namespace, global_namespace);
4009 if (flag_visibility_ms_compat)
4010 default_visibility = VISIBILITY_HIDDEN;
4012 /* Initially, C. */
4013 current_lang_name = lang_name_c;
4015 /* Create the `std' namespace. */
4016 push_namespace (std_identifier);
4017 std_node = current_namespace;
4018 pop_namespace ();
4020 c_common_nodes_and_builtins ();
4022 java_byte_type_node = record_builtin_java_type ("__java_byte", 8);
4023 java_short_type_node = record_builtin_java_type ("__java_short", 16);
4024 java_int_type_node = record_builtin_java_type ("__java_int", 32);
4025 java_long_type_node = record_builtin_java_type ("__java_long", 64);
4026 java_float_type_node = record_builtin_java_type ("__java_float", -32);
4027 java_double_type_node = record_builtin_java_type ("__java_double", -64);
4028 java_char_type_node = record_builtin_java_type ("__java_char", -16);
4029 java_boolean_type_node = record_builtin_java_type ("__java_boolean", -1);
4031 integer_two_node = build_int_cst (NULL_TREE, 2);
4033 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
4034 truthvalue_type_node = boolean_type_node;
4035 truthvalue_false_node = boolean_false_node;
4036 truthvalue_true_node = boolean_true_node;
4038 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
4039 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
4040 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
4042 #if 0
4043 record_builtin_type (RID_MAX, NULL, string_type_node);
4044 #endif
4046 delta_type_node = ptrdiff_type_node;
4047 vtable_index_type = ptrdiff_type_node;
4049 vtt_parm_type = build_pointer_type (const_ptr_type_node);
4050 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
4051 void_ftype_ptr = build_function_type_list (void_type_node,
4052 ptr_type_node, NULL_TREE);
4053 void_ftype_ptr
4054 = build_exception_variant (void_ftype_ptr, empty_except_spec);
4056 /* C++ extensions */
4058 unknown_type_node = make_node (LANG_TYPE);
4059 record_unknown_type (unknown_type_node, "unknown type");
4061 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
4062 TREE_TYPE (unknown_type_node) = unknown_type_node;
4064 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
4065 result. */
4066 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
4067 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
4069 init_list_type_node = make_node (LANG_TYPE);
4070 record_unknown_type (init_list_type_node, "init list");
4073 /* Make sure we get a unique function type, so we can give
4074 its pointer type a name. (This wins for gdb.) */
4075 tree vfunc_type = make_node (FUNCTION_TYPE);
4076 TREE_TYPE (vfunc_type) = integer_type_node;
4077 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
4078 layout_type (vfunc_type);
4080 vtable_entry_type = build_pointer_type (vfunc_type);
4082 record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
4084 vtbl_type_node
4085 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
4086 layout_type (vtbl_type_node);
4087 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
4088 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
4089 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
4090 layout_type (vtbl_ptr_type_node);
4091 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
4093 push_namespace (get_identifier ("__cxxabiv1"));
4094 abi_node = current_namespace;
4095 pop_namespace ();
4097 global_type_node = make_node (LANG_TYPE);
4098 record_unknown_type (global_type_node, "global type");
4100 /* Now, C++. */
4101 current_lang_name = lang_name_cplusplus;
4104 tree newattrs, extvisattr;
4105 tree newtype, deltype;
4106 tree ptr_ftype_sizetype;
4107 tree new_eh_spec;
4109 ptr_ftype_sizetype
4110 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
4111 if (cxx_dialect == cxx98)
4113 tree bad_alloc_id;
4114 tree bad_alloc_type_node;
4115 tree bad_alloc_decl;
4117 push_namespace (std_identifier);
4118 bad_alloc_id = get_identifier ("bad_alloc");
4119 bad_alloc_type_node = make_class_type (RECORD_TYPE);
4120 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
4121 bad_alloc_decl
4122 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
4123 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
4124 pop_namespace ();
4126 new_eh_spec
4127 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
4129 else
4130 new_eh_spec = noexcept_false_spec;
4132 /* Ensure attribs.c is initialized. */
4133 init_attributes ();
4135 /* Ensure constraint.cc is initialized. */
4136 init_constraint_processing ();
4138 extvisattr = build_tree_list (get_identifier ("externally_visible"),
4139 NULL_TREE);
4140 newattrs = tree_cons (get_identifier ("alloc_size"),
4141 build_tree_list (NULL_TREE, integer_one_node),
4142 extvisattr);
4143 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
4144 newtype = build_exception_variant (newtype, new_eh_spec);
4145 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
4146 deltype = build_exception_variant (deltype, empty_except_spec);
4147 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4148 DECL_IS_MALLOC (opnew) = 1;
4149 DECL_IS_OPERATOR_NEW (opnew) = 1;
4150 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4151 DECL_IS_MALLOC (opnew) = 1;
4152 DECL_IS_OPERATOR_NEW (opnew) = 1;
4153 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4154 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4155 if (flag_sized_deallocation)
4157 /* Also push the sized deallocation variants:
4158 void operator delete(void*, std::size_t) throw();
4159 void operator delete[](void*, std::size_t) throw(); */
4160 tree void_ftype_ptr_size
4161 = build_function_type_list (void_type_node, ptr_type_node,
4162 size_type_node, NULL_TREE);
4163 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
4164 extvisattr);
4165 deltype = build_exception_variant (deltype, empty_except_spec);
4166 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4167 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4170 nullptr_type_node = make_node (NULLPTR_TYPE);
4171 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
4172 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
4173 TYPE_UNSIGNED (nullptr_type_node) = 1;
4174 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
4175 if (abi_version_at_least (9))
4176 SET_TYPE_ALIGN (nullptr_type_node, GET_MODE_ALIGNMENT (ptr_mode));
4177 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
4178 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4179 nullptr_node = build_int_cst (nullptr_type_node, 0);
4182 abort_fndecl
4183 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4184 ECF_NORETURN | ECF_NOTHROW);
4186 /* Perform other language dependent initializations. */
4187 init_class_processing ();
4188 init_rtti_processing ();
4189 init_template_processing ();
4191 if (flag_exceptions)
4192 init_exception_processing ();
4194 if (! supports_one_only ())
4195 flag_weak = 0;
4197 make_fname_decl = cp_make_fname_decl;
4198 start_fname_decls ();
4200 /* Show we use EH for cleanups. */
4201 if (flag_exceptions)
4202 using_eh_for_cleanups ();
4205 /* Generate an initializer for a function naming variable from
4206 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4207 filled in with the type of the init. */
4209 tree
4210 cp_fname_init (const char* name, tree *type_p)
4212 tree domain = NULL_TREE;
4213 tree type;
4214 tree init = NULL_TREE;
4215 size_t length = 0;
4217 if (name)
4219 length = strlen (name);
4220 domain = build_index_type (size_int (length));
4221 init = build_string (length + 1, name);
4224 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4225 type = build_cplus_array_type (type, domain);
4227 *type_p = type;
4229 if (init)
4230 TREE_TYPE (init) = type;
4231 else
4232 init = error_mark_node;
4234 return init;
4237 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4238 the decl, LOC is the location to give the decl, NAME is the
4239 initialization string and TYPE_DEP indicates whether NAME depended
4240 on the type of the function. We make use of that to detect
4241 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4242 at the point of first use, so we mustn't push the decl now. */
4244 static tree
4245 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4247 const char *const name = (type_dep && processing_template_decl
4248 ? NULL : fname_as_string (type_dep));
4249 tree type;
4250 tree init = cp_fname_init (name, &type);
4251 tree decl = build_decl (loc, VAR_DECL, id, type);
4253 if (name)
4254 free (CONST_CAST (char *, name));
4256 /* As we're using pushdecl_with_scope, we must set the context. */
4257 DECL_CONTEXT (decl) = current_function_decl;
4259 TREE_STATIC (decl) = 1;
4260 TREE_READONLY (decl) = 1;
4261 DECL_ARTIFICIAL (decl) = 1;
4263 TREE_USED (decl) = 1;
4265 if (current_function_decl)
4267 cp_binding_level *b = current_binding_level;
4268 if (b->kind == sk_function_parms)
4269 return error_mark_node;
4270 while (b->level_chain->kind != sk_function_parms)
4271 b = b->level_chain;
4272 pushdecl_with_scope (decl, b, /*is_friend=*/false);
4273 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
4274 LOOKUP_ONLYCONVERTING);
4276 else
4278 DECL_THIS_STATIC (decl) = true;
4279 pushdecl_top_level_and_finish (decl, init);
4282 return decl;
4285 static tree
4286 builtin_function_1 (tree decl, tree context, bool is_global)
4288 tree id = DECL_NAME (decl);
4289 const char *name = IDENTIFIER_POINTER (id);
4291 retrofit_lang_decl (decl);
4293 DECL_ARTIFICIAL (decl) = 1;
4294 SET_OVERLOADED_OPERATOR_CODE (decl, ERROR_MARK);
4295 SET_DECL_LANGUAGE (decl, lang_c);
4296 /* Runtime library routines are, by definition, available in an
4297 external shared object. */
4298 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4299 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4301 DECL_CONTEXT (decl) = context;
4303 if (is_global)
4304 pushdecl_top_level (decl);
4305 else
4306 pushdecl (decl);
4308 /* A function in the user's namespace should have an explicit
4309 declaration before it is used. Mark the built-in function as
4310 anticipated but not actually declared. */
4311 if (name[0] != '_' || name[1] != '_')
4312 DECL_ANTICIPATED (decl) = 1;
4313 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
4315 size_t len = strlen (name);
4317 /* Treat __*_chk fortification functions as anticipated as well,
4318 unless they are __builtin_*. */
4319 if (len > strlen ("___chk")
4320 && memcmp (name + len - strlen ("_chk"),
4321 "_chk", strlen ("_chk") + 1) == 0)
4322 DECL_ANTICIPATED (decl) = 1;
4325 return decl;
4328 tree
4329 cxx_builtin_function (tree decl)
4331 tree id = DECL_NAME (decl);
4332 const char *name = IDENTIFIER_POINTER (id);
4333 /* All builtins that don't begin with an '_' should additionally
4334 go in the 'std' namespace. */
4335 if (name[0] != '_')
4337 tree decl2 = copy_node(decl);
4338 push_namespace (std_identifier);
4339 builtin_function_1 (decl2, std_node, false);
4340 pop_namespace ();
4343 return builtin_function_1 (decl, NULL_TREE, false);
4346 /* Like cxx_builtin_function, but guarantee the function is added to the global
4347 scope. This is to allow function specific options to add new machine
4348 dependent builtins when the target ISA changes via attribute((target(...)))
4349 which saves space on program startup if the program does not use non-generic
4350 ISAs. */
4352 tree
4353 cxx_builtin_function_ext_scope (tree decl)
4356 tree id = DECL_NAME (decl);
4357 const char *name = IDENTIFIER_POINTER (id);
4358 /* All builtins that don't begin with an '_' should additionally
4359 go in the 'std' namespace. */
4360 if (name[0] != '_')
4362 tree decl2 = copy_node(decl);
4363 push_namespace (std_identifier);
4364 builtin_function_1 (decl2, std_node, true);
4365 pop_namespace ();
4368 return builtin_function_1 (decl, NULL_TREE, true);
4371 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4372 function. Not called directly. */
4374 static tree
4375 build_library_fn (tree name, enum tree_code operator_code, tree type,
4376 int ecf_flags)
4378 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4379 DECL_EXTERNAL (fn) = 1;
4380 TREE_PUBLIC (fn) = 1;
4381 DECL_ARTIFICIAL (fn) = 1;
4382 SET_OVERLOADED_OPERATOR_CODE (fn, operator_code);
4383 SET_DECL_LANGUAGE (fn, lang_c);
4384 /* Runtime library routines are, by definition, available in an
4385 external shared object. */
4386 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4387 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4388 set_call_expr_flags (fn, ecf_flags);
4389 return fn;
4392 /* Returns the _DECL for a library function with C++ linkage. */
4394 static tree
4395 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4396 int ecf_flags)
4398 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4399 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4400 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4401 return fn;
4404 /* Like build_library_fn, but takes a C string instead of an
4405 IDENTIFIER_NODE. */
4407 tree
4408 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4410 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4413 /* Like build_cp_library_fn, but takes a C string instead of an
4414 IDENTIFIER_NODE. */
4416 tree
4417 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4419 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4420 ecf_flags);
4423 /* Like build_library_fn, but also pushes the function so that we will
4424 be able to find it via IDENTIFIER_GLOBAL_VALUE. Also, the function
4425 may throw exceptions listed in RAISES. */
4427 tree
4428 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4430 tree fn;
4432 if (raises)
4433 type = build_exception_variant (type, raises);
4435 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4436 pushdecl_top_level (fn);
4437 return fn;
4440 /* Like build_cp_library_fn, but also pushes the function so that it
4441 will be found by normal lookup. */
4443 static tree
4444 push_cp_library_fn (enum tree_code operator_code, tree type,
4445 int ecf_flags)
4447 tree fn = build_cp_library_fn (ansi_opname (operator_code),
4448 operator_code,
4449 type, ecf_flags);
4450 pushdecl (fn);
4451 if (flag_tm)
4452 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4453 return fn;
4456 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4457 a FUNCTION_TYPE. */
4459 tree
4460 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4462 tree type = build_function_type (void_type_node, parmtypes);
4463 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4466 /* Like push_library_fn, but also note that this function throws
4467 and does not return. Used for __throw_foo and the like. */
4469 tree
4470 push_throw_library_fn (tree name, tree type)
4472 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN);
4473 return fn;
4476 /* When we call finish_struct for an anonymous union, we create
4477 default copy constructors and such. But, an anonymous union
4478 shouldn't have such things; this function undoes the damage to the
4479 anonymous union type T.
4481 (The reason that we create the synthesized methods is that we don't
4482 distinguish `union { int i; }' from `typedef union { int i; } U'.
4483 The first is an anonymous union; the second is just an ordinary
4484 union type.) */
4486 void
4487 fixup_anonymous_aggr (tree t)
4489 tree *q;
4491 /* Wipe out memory of synthesized methods. */
4492 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4493 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4494 TYPE_HAS_COPY_CTOR (t) = 0;
4495 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4496 TYPE_HAS_COPY_ASSIGN (t) = 0;
4497 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4499 /* Splice the implicitly generated functions out of the TYPE_METHODS
4500 list. */
4501 q = &TYPE_METHODS (t);
4502 while (*q)
4504 if (DECL_ARTIFICIAL (*q))
4505 *q = TREE_CHAIN (*q);
4506 else
4507 q = &DECL_CHAIN (*q);
4510 /* ISO C++ 9.5.3. Anonymous unions may not have function members. */
4511 if (TYPE_METHODS (t))
4513 tree decl = TYPE_MAIN_DECL (t);
4515 if (TREE_CODE (t) != UNION_TYPE)
4516 error_at (DECL_SOURCE_LOCATION (decl),
4517 "an anonymous struct cannot have function members");
4518 else
4519 error_at (DECL_SOURCE_LOCATION (decl),
4520 "an anonymous union cannot have function members");
4523 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4524 assignment operators (because they cannot have these methods themselves).
4525 For anonymous unions this is already checked because they are not allowed
4526 in any union, otherwise we have to check it. */
4527 if (TREE_CODE (t) != UNION_TYPE)
4529 tree field, type;
4531 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4532 if (TREE_CODE (field) == FIELD_DECL)
4534 type = TREE_TYPE (field);
4535 if (CLASS_TYPE_P (type))
4537 if (TYPE_NEEDS_CONSTRUCTING (type))
4538 error ("member %q+#D with constructor not allowed "
4539 "in anonymous aggregate", field);
4540 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4541 error ("member %q+#D with destructor not allowed "
4542 "in anonymous aggregate", field);
4543 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4544 error ("member %q+#D with copy assignment operator "
4545 "not allowed in anonymous aggregate", field);
4551 /* Warn for an attribute located at LOCATION that appertains to the
4552 class type CLASS_TYPE that has not been properly placed after its
4553 class-key, in it class-specifier. */
4555 void
4556 warn_misplaced_attr_for_class_type (source_location location,
4557 tree class_type)
4559 gcc_assert (OVERLOAD_TYPE_P (class_type));
4561 if (warning_at (location, OPT_Wattributes,
4562 "attribute ignored in declaration "
4563 "of %q#T", class_type))
4564 inform (location,
4565 "attribute for %q#T must follow the %qs keyword",
4566 class_type, class_key_or_enum_as_string (class_type));
4569 /* Make sure that a declaration with no declarator is well-formed, i.e.
4570 just declares a tagged type or anonymous union.
4572 Returns the type declared; or NULL_TREE if none. */
4574 tree
4575 check_tag_decl (cp_decl_specifier_seq *declspecs,
4576 bool explicit_type_instantiation_p)
4578 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4579 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4580 /* If a class, struct, or enum type is declared by the DECLSPECS
4581 (i.e, if a class-specifier, enum-specifier, or non-typename
4582 elaborated-type-specifier appears in the DECLSPECS),
4583 DECLARED_TYPE is set to the corresponding type. */
4584 tree declared_type = NULL_TREE;
4585 bool error_p = false;
4587 if (declspecs->multiple_types_p)
4588 error ("multiple types in one declaration");
4589 else if (declspecs->redefined_builtin_type)
4591 if (!in_system_header_at (input_location))
4592 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4593 "redeclaration of C++ built-in type %qT",
4594 declspecs->redefined_builtin_type);
4595 return NULL_TREE;
4598 if (declspecs->type
4599 && TYPE_P (declspecs->type)
4600 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4601 && MAYBE_CLASS_TYPE_P (declspecs->type))
4602 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4603 declared_type = declspecs->type;
4604 else if (declspecs->type == error_mark_node)
4605 error_p = true;
4606 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
4607 permerror (input_location, "declaration does not declare anything");
4608 else if (declared_type != NULL_TREE && type_uses_auto (declared_type))
4610 error_at (declspecs->locations[ds_type_spec],
4611 "%<auto%> can only be specified for variables "
4612 "or function declarations");
4613 return error_mark_node;
4615 /* Check for an anonymous union. */
4616 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4617 && TYPE_ANONYMOUS_P (declared_type))
4619 /* 7/3 In a simple-declaration, the optional init-declarator-list
4620 can be omitted only when declaring a class (clause 9) or
4621 enumeration (7.2), that is, when the decl-specifier-seq contains
4622 either a class-specifier, an elaborated-type-specifier with
4623 a class-key (9.1), or an enum-specifier. In these cases and
4624 whenever a class-specifier or enum-specifier is present in the
4625 decl-specifier-seq, the identifiers in these specifiers are among
4626 the names being declared by the declaration (as class-name,
4627 enum-names, or enumerators, depending on the syntax). In such
4628 cases, and except for the declaration of an unnamed bit-field (9.6),
4629 the decl-specifier-seq shall introduce one or more names into the
4630 program, or shall redeclare a name introduced by a previous
4631 declaration. [Example:
4632 enum { }; // ill-formed
4633 typedef class { }; // ill-formed
4634 --end example] */
4635 if (saw_typedef)
4637 error ("missing type-name in typedef-declaration");
4638 return NULL_TREE;
4640 /* Anonymous unions are objects, so they can have specifiers. */;
4641 SET_ANON_AGGR_TYPE_P (declared_type);
4643 if (TREE_CODE (declared_type) != UNION_TYPE
4644 && !in_system_header_at (input_location))
4645 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4648 else
4650 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
4651 error_at (declspecs->locations[ds_inline],
4652 "%<inline%> can only be specified for functions");
4653 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4654 error_at (declspecs->locations[ds_virtual],
4655 "%<virtual%> can only be specified for functions");
4656 else if (saw_friend
4657 && (!current_class_type
4658 || current_scope () != current_class_type))
4659 error_at (declspecs->locations[ds_friend],
4660 "%<friend%> can only be specified inside a class");
4661 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4662 error_at (declspecs->locations[ds_explicit],
4663 "%<explicit%> can only be specified for constructors");
4664 else if (declspecs->storage_class)
4665 error_at (declspecs->locations[ds_storage_class],
4666 "a storage class can only be specified for objects "
4667 "and functions");
4668 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
4669 error_at (declspecs->locations[ds_const],
4670 "%<const%> can only be specified for objects and "
4671 "functions");
4672 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
4673 error_at (declspecs->locations[ds_volatile],
4674 "%<volatile%> can only be specified for objects and "
4675 "functions");
4676 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
4677 error_at (declspecs->locations[ds_restrict],
4678 "%<__restrict%> can only be specified for objects and "
4679 "functions");
4680 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
4681 error_at (declspecs->locations[ds_thread],
4682 "%<__thread%> can only be specified for objects "
4683 "and functions");
4684 else if (saw_typedef)
4685 warning_at (declspecs->locations[ds_typedef], 0,
4686 "%<typedef%> was ignored in this declaration");
4687 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4688 error_at (declspecs->locations[ds_constexpr],
4689 "%<constexpr%> cannot be used for type declarations");
4692 if (declspecs->attributes && warn_attributes && declared_type)
4694 location_t loc;
4695 if (!CLASS_TYPE_P (declared_type)
4696 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4697 /* For a non-template class, use the name location. */
4698 loc = location_of (declared_type);
4699 else
4700 /* For a template class (an explicit instantiation), use the
4701 current location. */
4702 loc = input_location;
4704 if (explicit_type_instantiation_p)
4705 /* [dcl.attr.grammar]/4:
4707 No attribute-specifier-seq shall appertain to an explicit
4708 instantiation. */
4710 if (warning_at (loc, OPT_Wattributes,
4711 "attribute ignored in explicit instantiation %q#T",
4712 declared_type))
4713 inform (loc,
4714 "no attribute can be applied to "
4715 "an explicit instantiation");
4717 else
4718 warn_misplaced_attr_for_class_type (loc, declared_type);
4721 return declared_type;
4724 /* Called when a declaration is seen that contains no names to declare.
4725 If its type is a reference to a structure, union or enum inherited
4726 from a containing scope, shadow that tag name for the current scope
4727 with a forward reference.
4728 If its type defines a new named structure or union
4729 or defines an enum, it is valid but we need not do anything here.
4730 Otherwise, it is an error.
4732 C++: may have to grok the declspecs to learn about static,
4733 complain for anonymous unions.
4735 Returns the TYPE declared -- or NULL_TREE if none. */
4737 tree
4738 shadow_tag (cp_decl_specifier_seq *declspecs)
4740 tree t = check_tag_decl (declspecs,
4741 /*explicit_type_instantiation_p=*/false);
4743 if (!t)
4744 return NULL_TREE;
4746 if (maybe_process_partial_specialization (t) == error_mark_node)
4747 return NULL_TREE;
4749 /* This is where the variables in an anonymous union are
4750 declared. An anonymous union declaration looks like:
4751 union { ... } ;
4752 because there is no declarator after the union, the parser
4753 sends that declaration here. */
4754 if (ANON_AGGR_TYPE_P (t))
4756 fixup_anonymous_aggr (t);
4758 if (TYPE_FIELDS (t))
4760 tree decl = grokdeclarator (/*declarator=*/NULL,
4761 declspecs, NORMAL, 0, NULL);
4762 finish_anon_union (decl);
4766 return t;
4769 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4771 tree
4772 groktypename (cp_decl_specifier_seq *type_specifiers,
4773 const cp_declarator *declarator,
4774 bool is_template_arg)
4776 tree attrs;
4777 tree type;
4778 enum decl_context context
4779 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
4780 attrs = type_specifiers->attributes;
4781 type_specifiers->attributes = NULL_TREE;
4782 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
4783 if (attrs && type != error_mark_node)
4785 if (CLASS_TYPE_P (type))
4786 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
4787 "outside of definition", type);
4788 else if (MAYBE_CLASS_TYPE_P (type))
4789 /* A template type parameter or other dependent type. */
4790 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
4791 "type %qT without an associated declaration", type);
4792 else
4793 cplus_decl_attributes (&type, attrs, 0);
4795 return type;
4798 /* Process a DECLARATOR for a function-scope variable declaration,
4799 namespace-scope variable declaration, or function declaration.
4800 (Function definitions go through start_function; class member
4801 declarations appearing in the body of the class go through
4802 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4803 If an error occurs, the error_mark_node is returned instead.
4805 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
4806 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
4807 for an explicitly defaulted function, or SD_DELETED for an explicitly
4808 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
4809 implicitly initialized via a default constructor. ATTRIBUTES and
4810 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
4812 The scope represented by the context of the returned DECL is pushed
4813 (if it is not the global namespace) and is assigned to
4814 *PUSHED_SCOPE_P. The caller is then responsible for calling
4815 pop_scope on *PUSHED_SCOPE_P if it is set. */
4817 tree
4818 start_decl (const cp_declarator *declarator,
4819 cp_decl_specifier_seq *declspecs,
4820 int initialized,
4821 tree attributes,
4822 tree prefix_attributes,
4823 tree *pushed_scope_p)
4825 tree decl;
4826 tree context;
4827 bool was_public;
4828 int flags;
4829 bool alias;
4831 *pushed_scope_p = NULL_TREE;
4833 /* An object declared as __attribute__((deprecated)) suppresses
4834 warnings of uses of other deprecated items. */
4835 if (lookup_attribute ("deprecated", attributes))
4836 deprecated_state = DEPRECATED_SUPPRESS;
4838 attributes = chainon (attributes, prefix_attributes);
4840 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
4841 &attributes);
4843 deprecated_state = DEPRECATED_NORMAL;
4845 if (decl == NULL_TREE || VOID_TYPE_P (decl)
4846 || decl == error_mark_node)
4847 return error_mark_node;
4849 context = CP_DECL_CONTEXT (decl);
4850 if (context != global_namespace)
4851 *pushed_scope_p = push_scope (context);
4853 /* Is it valid for this decl to have an initializer at all?
4854 If not, set INITIALIZED to zero, which will indirectly
4855 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4856 if (initialized
4857 && TREE_CODE (decl) == TYPE_DECL)
4859 error ("typedef %qD is initialized (use decltype instead)", decl);
4860 return error_mark_node;
4863 if (initialized)
4865 if (! toplevel_bindings_p ()
4866 && DECL_EXTERNAL (decl))
4867 warning (0, "declaration of %q#D has %<extern%> and is initialized",
4868 decl);
4869 DECL_EXTERNAL (decl) = 0;
4870 if (toplevel_bindings_p ())
4871 TREE_STATIC (decl) = 1;
4873 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
4875 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
4876 record_key_method_defined (decl);
4878 /* If this is a typedef that names the class for linkage purposes
4879 (7.1.3p8), apply any attributes directly to the type. */
4880 if (TREE_CODE (decl) == TYPE_DECL
4881 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
4882 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
4883 flags = ATTR_FLAG_TYPE_IN_PLACE;
4884 else
4885 flags = 0;
4887 /* Set attributes here so if duplicate decl, will have proper attributes. */
4888 cplus_decl_attributes (&decl, attributes, flags);
4890 /* Dllimported symbols cannot be defined. Static data members (which
4891 can be initialized in-class and dllimported) go through grokfield,
4892 not here, so we don't need to exclude those decls when checking for
4893 a definition. */
4894 if (initialized && DECL_DLLIMPORT_P (decl))
4896 error ("definition of %q#D is marked %<dllimport%>", decl);
4897 DECL_DLLIMPORT_P (decl) = 0;
4900 /* If #pragma weak was used, mark the decl weak now. */
4901 if (!processing_template_decl)
4902 maybe_apply_pragma_weak (decl);
4904 if (TREE_CODE (decl) == FUNCTION_DECL
4905 && DECL_DECLARED_INLINE_P (decl)
4906 && DECL_UNINLINABLE (decl)
4907 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4908 warning_at (DECL_SOURCE_LOCATION (decl), 0,
4909 "inline function %qD given attribute noinline", decl);
4911 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
4913 bool this_tmpl = (processing_template_decl
4914 > template_class_depth (context));
4915 if (VAR_P (decl))
4917 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
4918 if (field == NULL_TREE
4919 || !(VAR_P (field) || variable_template_p (field)))
4920 error ("%q+#D is not a static data member of %q#T", decl, context);
4921 else if (variable_template_p (field) && !this_tmpl)
4923 if (DECL_LANG_SPECIFIC (decl)
4924 && DECL_TEMPLATE_SPECIALIZATION (decl))
4925 /* OK, specialization was already checked. */;
4926 else
4928 error_at (DECL_SOURCE_LOCATION (decl),
4929 "non-member-template declaration of %qD", decl);
4930 inform (DECL_SOURCE_LOCATION (field), "does not match "
4931 "member template declaration here");
4932 return error_mark_node;
4935 else
4937 if (variable_template_p (field))
4938 field = DECL_TEMPLATE_RESULT (field);
4940 if (DECL_CONTEXT (field) != context)
4942 if (!same_type_p (DECL_CONTEXT (field), context))
4943 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
4944 "to be defined as %<%T::%D%>",
4945 DECL_CONTEXT (field), DECL_NAME (decl),
4946 context, DECL_NAME (decl));
4947 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
4949 /* Static data member are tricky; an in-class initialization
4950 still doesn't provide a definition, so the in-class
4951 declaration will have DECL_EXTERNAL set, but will have an
4952 initialization. Thus, duplicate_decls won't warn
4953 about this situation, and so we check here. */
4954 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
4955 error ("duplicate initialization of %qD", decl);
4956 if (duplicate_decls (decl, field, /*newdecl_is_friend=*/false))
4957 decl = field;
4958 if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr)
4959 && !DECL_DECLARED_CONSTEXPR_P (field))
4960 error ("%qD declared %<constexpr%> outside its class", field);
4963 else
4965 tree field = check_classfn (context, decl,
4966 this_tmpl
4967 ? current_template_parms
4968 : NULL_TREE);
4969 if (field && field != error_mark_node
4970 && duplicate_decls (decl, field,
4971 /*newdecl_is_friend=*/false))
4972 decl = field;
4975 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
4976 DECL_IN_AGGR_P (decl) = 0;
4977 /* Do not mark DECL as an explicit specialization if it was not
4978 already marked as an instantiation; a declaration should
4979 never be marked as a specialization unless we know what
4980 template is being specialized. */
4981 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
4983 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
4984 if (TREE_CODE (decl) == FUNCTION_DECL)
4985 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
4986 && DECL_DECLARED_INLINE_P (decl));
4987 else
4988 DECL_COMDAT (decl) = false;
4990 /* [temp.expl.spec] An explicit specialization of a static data
4991 member of a template is a definition if the declaration
4992 includes an initializer; otherwise, it is a declaration.
4994 We check for processing_specialization so this only applies
4995 to the new specialization syntax. */
4996 if (!initialized && processing_specialization)
4997 DECL_EXTERNAL (decl) = 1;
5000 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
5001 /* Aliases are definitions. */
5002 && !alias)
5003 permerror (input_location, "declaration of %q#D outside of class is not definition",
5004 decl);
5007 was_public = TREE_PUBLIC (decl);
5009 /* Enter this declaration into the symbol table. Don't push the plain
5010 VAR_DECL for a variable template. */
5011 if (!template_parm_scope_p ()
5012 || !VAR_P (decl))
5013 decl = maybe_push_decl (decl);
5015 if (processing_template_decl)
5016 decl = push_template_decl (decl);
5017 if (decl == error_mark_node)
5018 return error_mark_node;
5020 if (VAR_P (decl)
5021 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
5022 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
5024 /* This is a const variable with implicit 'static'. Set
5025 DECL_THIS_STATIC so we can tell it from variables that are
5026 !TREE_PUBLIC because of the anonymous namespace. */
5027 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
5028 DECL_THIS_STATIC (decl) = 1;
5031 if (current_function_decl && VAR_P (decl)
5032 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
5034 bool ok = false;
5035 if (CP_DECL_THREAD_LOCAL_P (decl))
5036 error ("%qD declared %<thread_local%> in %<constexpr%> function",
5037 decl);
5038 else if (TREE_STATIC (decl))
5039 error ("%qD declared %<static%> in %<constexpr%> function", decl);
5040 else
5041 ok = true;
5042 if (!ok)
5043 cp_function_chain->invalid_constexpr = true;
5046 if (!processing_template_decl && VAR_P (decl))
5047 start_decl_1 (decl, initialized);
5049 return decl;
5052 /* Process the declaration of a variable DECL. INITIALIZED is true
5053 iff DECL is explicitly initialized. (INITIALIZED is false if the
5054 variable is initialized via an implicitly-called constructor.)
5055 This function must be called for ordinary variables (including, for
5056 example, implicit instantiations of templates), but must not be
5057 called for template declarations. */
5059 void
5060 start_decl_1 (tree decl, bool initialized)
5062 tree type;
5063 bool complete_p;
5064 bool aggregate_definition_p;
5066 gcc_assert (!processing_template_decl);
5068 if (error_operand_p (decl))
5069 return;
5071 gcc_assert (VAR_P (decl));
5073 type = TREE_TYPE (decl);
5074 complete_p = COMPLETE_TYPE_P (type);
5075 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
5077 /* If an explicit initializer is present, or if this is a definition
5078 of an aggregate, then we need a complete type at this point.
5079 (Scalars are always complete types, so there is nothing to
5080 check.) This code just sets COMPLETE_P; errors (if necessary)
5081 are issued below. */
5082 if ((initialized || aggregate_definition_p)
5083 && !complete_p
5084 && COMPLETE_TYPE_P (complete_type (type)))
5086 complete_p = true;
5087 /* We will not yet have set TREE_READONLY on DECL if the type
5088 was "const", but incomplete, before this point. But, now, we
5089 have a complete type, so we can try again. */
5090 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
5093 if (initialized)
5094 /* Is it valid for this decl to have an initializer at all? */
5096 /* Don't allow initializations for incomplete types except for
5097 arrays which might be completed by the initialization. */
5098 if (complete_p)
5099 ; /* A complete type is ok. */
5100 else if (type_uses_auto (type))
5101 ; /* An auto type is ok. */
5102 else if (TREE_CODE (type) != ARRAY_TYPE)
5104 error ("variable %q#D has initializer but incomplete type", decl);
5105 type = TREE_TYPE (decl) = error_mark_node;
5107 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
5109 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5110 error ("elements of array %q#D have incomplete type", decl);
5111 /* else we already gave an error in start_decl. */
5114 else if (aggregate_definition_p && !complete_p)
5116 if (type_uses_auto (type))
5117 error ("declaration of %q#D has no initializer", decl);
5118 else
5119 error ("aggregate %q#D has incomplete type and cannot be defined",
5120 decl);
5121 /* Change the type so that assemble_variable will give
5122 DECL an rtl we can live with: (mem (const_int 0)). */
5123 type = TREE_TYPE (decl) = error_mark_node;
5126 /* Create a new scope to hold this declaration if necessary.
5127 Whether or not a new scope is necessary cannot be determined
5128 until after the type has been completed; if the type is a
5129 specialization of a class template it is not until after
5130 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5131 will be set correctly. */
5132 maybe_push_cleanup_level (type);
5135 /* Handle initialization of references. DECL, TYPE, and INIT have the
5136 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
5137 but will be set to a new CLEANUP_STMT if a temporary is created
5138 that must be destroyed subsequently.
5140 Returns an initializer expression to use to initialize DECL, or
5141 NULL if the initialization can be performed statically.
5143 Quotes on semantics can be found in ARM 8.4.3. */
5145 static tree
5146 grok_reference_init (tree decl, tree type, tree init, int flags)
5148 if (init == NULL_TREE)
5150 if ((DECL_LANG_SPECIFIC (decl) == 0
5151 || DECL_IN_AGGR_P (decl) == 0)
5152 && ! DECL_THIS_EXTERN (decl))
5153 error ("%qD declared as reference but not initialized", decl);
5154 return NULL_TREE;
5157 if (TREE_CODE (init) == TREE_LIST)
5158 init = build_x_compound_expr_from_list (init, ELK_INIT,
5159 tf_warning_or_error);
5161 tree ttype = TREE_TYPE (type);
5162 if (TREE_CODE (ttype) != ARRAY_TYPE
5163 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
5164 /* Note: default conversion is only called in very special cases. */
5165 init = decay_conversion (init, tf_warning_or_error);
5167 /* check_initializer handles this for non-reference variables, but for
5168 references we need to do it here or the initializer will get the
5169 incomplete array type and confuse later calls to
5170 cp_complete_array_type. */
5171 if (TREE_CODE (ttype) == ARRAY_TYPE
5172 && TYPE_DOMAIN (ttype) == NULL_TREE
5173 && (BRACE_ENCLOSED_INITIALIZER_P (init)
5174 || TREE_CODE (init) == STRING_CST))
5176 cp_complete_array_type (&ttype, init, false);
5177 if (ttype != TREE_TYPE (type))
5178 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
5181 /* Convert INIT to the reference type TYPE. This may involve the
5182 creation of a temporary, whose lifetime must be the same as that
5183 of the reference. If so, a DECL_EXPR for the temporary will be
5184 added just after the DECL_EXPR for DECL. That's why we don't set
5185 DECL_INITIAL for local references (instead assigning to them
5186 explicitly); we need to allow the temporary to be initialized
5187 first. */
5188 return initialize_reference (type, init, flags,
5189 tf_warning_or_error);
5192 /* Designated initializers in arrays are not supported in GNU C++.
5193 The parser cannot detect this error since it does not know whether
5194 a given brace-enclosed initializer is for a class type or for an
5195 array. This function checks that CE does not use a designated
5196 initializer. If it does, an error is issued. Returns true if CE
5197 is valid, i.e., does not have a designated initializer. */
5199 static bool
5200 check_array_designated_initializer (constructor_elt *ce,
5201 unsigned HOST_WIDE_INT index)
5203 /* Designated initializers for array elements are not supported. */
5204 if (ce->index)
5206 /* The parser only allows identifiers as designated
5207 initializers. */
5208 if (ce->index == error_mark_node)
5210 error ("name used in a GNU-style designated "
5211 "initializer for an array");
5212 return false;
5214 else if (identifier_p (ce->index))
5216 error ("name %qD used in a GNU-style designated "
5217 "initializer for an array", ce->index);
5218 return false;
5221 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5222 ce->index, true);
5223 if (ce_index
5224 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
5225 && (TREE_CODE (ce_index = maybe_constant_value (ce_index))
5226 == INTEGER_CST))
5228 /* A C99 designator is OK if it matches the current index. */
5229 if (wi::eq_p (ce_index, index))
5230 return true;
5231 else
5232 sorry ("non-trivial designated initializers not supported");
5234 else
5235 error ("C99 designator %qE is not an integral constant-expression",
5236 ce->index);
5238 return false;
5241 return true;
5244 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5245 array until we finish parsing the initializer. If that's the
5246 situation we're in, update DECL accordingly. */
5248 static void
5249 maybe_deduce_size_from_array_init (tree decl, tree init)
5251 tree type = TREE_TYPE (decl);
5253 if (TREE_CODE (type) == ARRAY_TYPE
5254 && TYPE_DOMAIN (type) == NULL_TREE
5255 && TREE_CODE (decl) != TYPE_DECL)
5257 /* do_default is really a C-ism to deal with tentative definitions.
5258 But let's leave it here to ease the eventual merge. */
5259 int do_default = !DECL_EXTERNAL (decl);
5260 tree initializer = init ? init : DECL_INITIAL (decl);
5261 int failure = 0;
5263 /* Check that there are no designated initializers in INIT, as
5264 those are not supported in GNU C++, and as the middle-end
5265 will crash if presented with a non-numeric designated
5266 initializer. */
5267 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
5269 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
5270 constructor_elt *ce;
5271 HOST_WIDE_INT i;
5272 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
5273 if (!check_array_designated_initializer (ce, i))
5274 failure = 1;
5277 if (!failure)
5279 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
5280 do_default);
5281 if (failure == 1)
5283 error_at (EXPR_LOC_OR_LOC (initializer,
5284 DECL_SOURCE_LOCATION (decl)),
5285 "initializer fails to determine size of %qD", decl);
5287 else if (failure == 2)
5289 if (do_default)
5291 error_at (DECL_SOURCE_LOCATION (decl),
5292 "array size missing in %qD", decl);
5294 /* If a `static' var's size isn't known, make it extern as
5295 well as static, so it does not get allocated. If it's not
5296 `static', then don't mark it extern; finish_incomplete_decl
5297 will give it a default size and it will get allocated. */
5298 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
5299 DECL_EXTERNAL (decl) = 1;
5301 else if (failure == 3)
5303 error_at (DECL_SOURCE_LOCATION (decl),
5304 "zero-size array %qD", decl);
5308 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
5310 relayout_decl (decl);
5314 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5315 any appropriate error messages regarding the layout. */
5317 static void
5318 layout_var_decl (tree decl)
5320 tree type;
5322 type = TREE_TYPE (decl);
5323 if (type == error_mark_node)
5324 return;
5326 /* If we haven't already laid out this declaration, do so now.
5327 Note that we must not call complete type for an external object
5328 because it's type might involve templates that we are not
5329 supposed to instantiate yet. (And it's perfectly valid to say
5330 `extern X x' for some incomplete type `X'.) */
5331 if (!DECL_EXTERNAL (decl))
5332 complete_type (type);
5333 if (!DECL_SIZE (decl)
5334 && TREE_TYPE (decl) != error_mark_node
5335 && complete_or_array_type_p (type))
5336 layout_decl (decl, 0);
5338 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
5340 /* An automatic variable with an incomplete type: that is an error.
5341 Don't talk about array types here, since we took care of that
5342 message in grokdeclarator. */
5343 error_at (DECL_SOURCE_LOCATION (decl),
5344 "storage size of %qD isn%'t known", decl);
5345 TREE_TYPE (decl) = error_mark_node;
5347 #if 0
5348 /* Keep this code around in case we later want to control debug info
5349 based on whether a type is "used". (jason 1999-11-11) */
5351 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
5352 /* Let debugger know it should output info for this type. */
5353 note_debug_info_needed (ttype);
5355 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
5356 note_debug_info_needed (DECL_CONTEXT (decl));
5357 #endif
5359 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
5360 && DECL_SIZE (decl) != NULL_TREE
5361 && ! TREE_CONSTANT (DECL_SIZE (decl)))
5363 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
5364 constant_expression_warning (DECL_SIZE (decl));
5365 else
5367 error_at (DECL_SOURCE_LOCATION (decl),
5368 "storage size of %qD isn%'t constant", decl);
5369 TREE_TYPE (decl) = error_mark_node;
5374 /* If a local static variable is declared in an inline function, or if
5375 we have a weak definition, we must endeavor to create only one
5376 instance of the variable at link-time. */
5378 void
5379 maybe_commonize_var (tree decl)
5381 /* Static data in a function with comdat linkage also has comdat
5382 linkage. */
5383 if (TREE_STATIC (decl)
5384 /* Don't mess with __FUNCTION__. */
5385 && ! DECL_ARTIFICIAL (decl)
5386 && DECL_FUNCTION_SCOPE_P (decl)
5387 && vague_linkage_p (DECL_CONTEXT (decl)))
5389 if (flag_weak)
5391 /* With weak symbols, we simply make the variable COMDAT;
5392 that will cause copies in multiple translations units to
5393 be merged. */
5394 comdat_linkage (decl);
5396 else
5398 if (DECL_INITIAL (decl) == NULL_TREE
5399 || DECL_INITIAL (decl) == error_mark_node)
5401 /* Without weak symbols, we can use COMMON to merge
5402 uninitialized variables. */
5403 TREE_PUBLIC (decl) = 1;
5404 DECL_COMMON (decl) = 1;
5406 else
5408 /* While for initialized variables, we must use internal
5409 linkage -- which means that multiple copies will not
5410 be merged. */
5411 TREE_PUBLIC (decl) = 0;
5412 DECL_COMMON (decl) = 0;
5413 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
5414 "sorry: semantics of inline function static "
5415 "data %q#D are wrong (you%'ll wind up "
5416 "with multiple copies)", decl))
5417 inform (DECL_SOURCE_LOCATION (decl),
5418 "you can work around this by removing the initializer");
5424 /* Issue an error message if DECL is an uninitialized const variable. */
5426 static void
5427 check_for_uninitialized_const_var (tree decl)
5429 tree type = strip_array_types (TREE_TYPE (decl));
5431 /* ``Unless explicitly declared extern, a const object does not have
5432 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5433 7.1.6 */
5434 if (VAR_P (decl)
5435 && TREE_CODE (type) != REFERENCE_TYPE
5436 && (CP_TYPE_CONST_P (type) || var_in_constexpr_fn (decl))
5437 && !DECL_INITIAL (decl))
5439 tree field = default_init_uninitialized_part (type);
5440 if (!field)
5441 return;
5443 if (CP_TYPE_CONST_P (type))
5444 permerror (DECL_SOURCE_LOCATION (decl),
5445 "uninitialized const %qD", decl);
5446 else
5448 error_at (DECL_SOURCE_LOCATION (decl),
5449 "uninitialized variable %qD in %<constexpr%> function",
5450 decl);
5451 cp_function_chain->invalid_constexpr = true;
5454 if (CLASS_TYPE_P (type))
5456 tree defaulted_ctor;
5458 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5459 "%q#T has no user-provided default constructor", type);
5460 defaulted_ctor = in_class_defaulted_default_constructor (type);
5461 if (defaulted_ctor)
5462 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5463 "constructor is not user-provided because it is "
5464 "explicitly defaulted in the class body");
5465 inform (DECL_SOURCE_LOCATION (field),
5466 "and the implicitly-defined constructor does not "
5467 "initialize %q#D", field);
5472 /* Structure holding the current initializer being processed by reshape_init.
5473 CUR is a pointer to the current element being processed, END is a pointer
5474 after the last element present in the initializer. */
5475 struct reshape_iter
5477 constructor_elt *cur;
5478 constructor_elt *end;
5481 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5483 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5484 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5485 initialized. If there are no more such fields, the return value
5486 will be NULL. */
5488 tree
5489 next_initializable_field (tree field)
5491 while (field
5492 && (TREE_CODE (field) != FIELD_DECL
5493 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
5494 || DECL_ARTIFICIAL (field)))
5495 field = DECL_CHAIN (field);
5497 return field;
5500 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5501 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5502 INTEGER_CST representing the size of the array minus one (the maximum index),
5503 or NULL_TREE if the array was declared without specifying the size. D is
5504 the iterator within the constructor. */
5506 static tree
5507 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5508 tsubst_flags_t complain)
5510 tree new_init;
5511 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5512 unsigned HOST_WIDE_INT max_index_cst = 0;
5513 unsigned HOST_WIDE_INT index;
5515 /* The initializer for an array is always a CONSTRUCTOR. */
5516 new_init = build_constructor (init_list_type_node, NULL);
5518 if (sized_array_p)
5520 /* Minus 1 is used for zero sized arrays. */
5521 if (integer_all_onesp (max_index))
5522 return new_init;
5524 if (tree_fits_uhwi_p (max_index))
5525 max_index_cst = tree_to_uhwi (max_index);
5526 /* sizetype is sign extended, not zero extended. */
5527 else
5528 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5531 /* Loop until there are no more initializers. */
5532 for (index = 0;
5533 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5534 ++index)
5536 tree elt_init;
5537 constructor_elt *old_cur = d->cur;
5539 check_array_designated_initializer (d->cur, index);
5540 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5541 complain);
5542 if (elt_init == error_mark_node)
5543 return error_mark_node;
5544 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5545 size_int (index), elt_init);
5546 if (!TREE_CONSTANT (elt_init))
5547 TREE_CONSTANT (new_init) = false;
5549 /* This can happen with an invalid initializer (c++/54501). */
5550 if (d->cur == old_cur && !sized_array_p)
5551 break;
5554 return new_init;
5557 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5558 Parameters are the same of reshape_init_r. */
5560 static tree
5561 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5563 tree max_index = NULL_TREE;
5565 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5567 if (TYPE_DOMAIN (type))
5568 max_index = array_type_nelts (type);
5570 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5573 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5574 Parameters are the same of reshape_init_r. */
5576 static tree
5577 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5579 tree max_index = NULL_TREE;
5581 gcc_assert (VECTOR_TYPE_P (type));
5583 if (COMPOUND_LITERAL_P (d->cur->value))
5585 tree value = d->cur->value;
5586 if (!same_type_p (TREE_TYPE (value), type))
5588 if (complain & tf_error)
5589 error ("invalid type %qT as initializer for a vector of type %qT",
5590 TREE_TYPE (d->cur->value), type);
5591 value = error_mark_node;
5593 ++d->cur;
5594 return value;
5597 /* For a vector, we initialize it as an array of the appropriate size. */
5598 if (VECTOR_TYPE_P (type))
5599 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5601 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5604 /* Subroutine of reshape_init_r, processes the initializers for classes
5605 or union. Parameters are the same of reshape_init_r. */
5607 static tree
5608 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
5609 tsubst_flags_t complain)
5611 tree field;
5612 tree new_init;
5614 gcc_assert (CLASS_TYPE_P (type));
5616 /* The initializer for a class is always a CONSTRUCTOR. */
5617 new_init = build_constructor (init_list_type_node, NULL);
5618 field = next_initializable_field (TYPE_FIELDS (type));
5620 if (!field)
5622 /* [dcl.init.aggr]
5624 An initializer for an aggregate member that is an
5625 empty class shall have the form of an empty
5626 initializer-list {}. */
5627 if (!first_initializer_p)
5629 if (complain & tf_error)
5630 error ("initializer for %qT must be brace-enclosed", type);
5631 return error_mark_node;
5633 return new_init;
5636 /* Loop through the initializable fields, gathering initializers. */
5637 while (d->cur != d->end)
5639 tree field_init;
5640 constructor_elt *old_cur = d->cur;
5642 /* Handle designated initializers, as an extension. */
5643 if (d->cur->index)
5645 if (d->cur->index == error_mark_node)
5646 return error_mark_node;
5648 if (TREE_CODE (d->cur->index) == FIELD_DECL)
5649 /* We already reshaped this. */
5650 gcc_assert (d->cur->index == field);
5651 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
5652 field = lookup_field_1 (type, d->cur->index, /*want_type=*/false);
5653 else
5655 if (complain & tf_error)
5656 error ("%<[%E] =%> used in a GNU-style designated initializer"
5657 " for class %qT", d->cur->index, type);
5658 return error_mark_node;
5661 if (!field || TREE_CODE (field) != FIELD_DECL)
5663 if (complain & tf_error)
5664 error ("%qT has no non-static data member named %qD", type,
5665 d->cur->index);
5666 return error_mark_node;
5670 /* If we processed all the member of the class, we are done. */
5671 if (!field)
5672 break;
5674 field_init = reshape_init_r (TREE_TYPE (field), d,
5675 /*first_initializer_p=*/false, complain);
5676 if (field_init == error_mark_node)
5677 return error_mark_node;
5679 if (d->cur == old_cur && d->cur->index)
5681 /* This can happen with an invalid initializer for a flexible
5682 array member (c++/54441). */
5683 if (complain & tf_error)
5684 error ("invalid initializer for %q#D", field);
5685 return error_mark_node;
5688 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
5690 /* [dcl.init.aggr]
5692 When a union is initialized with a brace-enclosed
5693 initializer, the braces shall only contain an
5694 initializer for the first member of the union. */
5695 if (TREE_CODE (type) == UNION_TYPE)
5696 break;
5698 field = next_initializable_field (DECL_CHAIN (field));
5701 return new_init;
5704 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5705 designators are not valid; either complain or return true to indicate
5706 that reshape_init_r should return error_mark_node. */
5708 static bool
5709 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
5711 if (d->cur->index)
5713 if (complain & tf_error)
5714 error ("C99 designator %qE outside aggregate initializer",
5715 d->cur->index);
5716 else
5717 return true;
5719 return false;
5722 /* Subroutine of reshape_init, which processes a single initializer (part of
5723 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5724 iterator within the CONSTRUCTOR which points to the initializer to process.
5725 FIRST_INITIALIZER_P is true if this is the first initializer of the
5726 outermost CONSTRUCTOR node. */
5728 static tree
5729 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
5730 tsubst_flags_t complain)
5732 tree init = d->cur->value;
5734 if (error_operand_p (init))
5735 return error_mark_node;
5737 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
5738 && has_designator_problem (d, complain))
5739 return error_mark_node;
5741 if (TREE_CODE (type) == COMPLEX_TYPE)
5743 /* A complex type can be initialized from one or two initializers,
5744 but braces are not elided. */
5745 d->cur++;
5746 if (BRACE_ENCLOSED_INITIALIZER_P (init))
5748 if (CONSTRUCTOR_NELTS (init) > 2)
5750 if (complain & tf_error)
5751 error ("too many initializers for %qT", type);
5752 else
5753 return error_mark_node;
5756 else if (first_initializer_p && d->cur != d->end)
5758 vec<constructor_elt, va_gc> *v = 0;
5759 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
5760 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
5761 if (has_designator_problem (d, complain))
5762 return error_mark_node;
5763 d->cur++;
5764 init = build_constructor (init_list_type_node, v);
5766 return init;
5769 /* A non-aggregate type is always initialized with a single
5770 initializer. */
5771 if (!CP_AGGREGATE_TYPE_P (type))
5773 /* It is invalid to initialize a non-aggregate type with a
5774 brace-enclosed initializer before C++0x.
5775 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
5776 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
5777 a CONSTRUCTOR (with a record type). */
5778 if (TREE_CODE (init) == CONSTRUCTOR
5779 /* Don't complain about a capture-init. */
5780 && !CONSTRUCTOR_IS_DIRECT_INIT (init)
5781 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
5783 if (SCALAR_TYPE_P (type))
5785 if (cxx_dialect < cxx11
5786 /* Isn't value-initialization. */
5787 || CONSTRUCTOR_NELTS (init) > 0)
5789 if (complain & tf_error)
5790 error ("braces around scalar initializer for type %qT",
5791 type);
5792 init = error_mark_node;
5795 else
5796 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5799 d->cur++;
5800 return init;
5803 /* "If T is a class type and the initializer list has a single element of
5804 type cv U, where U is T or a class derived from T, the object is
5805 initialized from that element." Even if T is an aggregate. */
5806 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
5807 && first_initializer_p
5808 && d->end - d->cur == 1
5809 && reference_related_p (type, TREE_TYPE (init)))
5811 d->cur++;
5812 return init;
5815 /* [dcl.init.aggr]
5817 All implicit type conversions (clause _conv_) are considered when
5818 initializing the aggregate member with an initializer from an
5819 initializer-list. If the initializer can initialize a member,
5820 the member is initialized. Otherwise, if the member is itself a
5821 non-empty subaggregate, brace elision is assumed and the
5822 initializer is considered for the initialization of the first
5823 member of the subaggregate. */
5824 if (TREE_CODE (init) != CONSTRUCTOR
5825 /* But don't try this for the first initializer, since that would be
5826 looking through the outermost braces; A a2 = { a1 }; is not a
5827 valid aggregate initialization. */
5828 && !first_initializer_p
5829 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
5830 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
5831 complain)))
5833 d->cur++;
5834 return init;
5837 /* [dcl.init.string]
5839 A char array (whether plain char, signed char, or unsigned char)
5840 can be initialized by a string-literal (optionally enclosed in
5841 braces); a wchar_t array can be initialized by a wide
5842 string-literal (optionally enclosed in braces). */
5843 if (TREE_CODE (type) == ARRAY_TYPE
5844 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
5846 tree str_init = init;
5848 /* Strip one level of braces if and only if they enclose a single
5849 element (as allowed by [dcl.init.string]). */
5850 if (!first_initializer_p
5851 && TREE_CODE (str_init) == CONSTRUCTOR
5852 && vec_safe_length (CONSTRUCTOR_ELTS (str_init)) == 1)
5854 str_init = (*CONSTRUCTOR_ELTS (str_init))[0].value;
5857 /* If it's a string literal, then it's the initializer for the array
5858 as a whole. Otherwise, continue with normal initialization for
5859 array types (one value per array element). */
5860 if (TREE_CODE (str_init) == STRING_CST)
5862 if (has_designator_problem (d, complain))
5863 return error_mark_node;
5864 d->cur++;
5865 return str_init;
5869 /* The following cases are about aggregates. If we are not within a full
5870 initializer already, and there is not a CONSTRUCTOR, it means that there
5871 is a missing set of braces (that is, we are processing the case for
5872 which reshape_init exists). */
5873 if (!first_initializer_p)
5875 if (TREE_CODE (init) == CONSTRUCTOR)
5877 if (TREE_TYPE (init) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init)))
5878 /* There is no need to reshape pointer-to-member function
5879 initializers, as they are always constructed correctly
5880 by the front end. */
5882 else if (COMPOUND_LITERAL_P (init))
5883 /* For a nested compound literal, there is no need to reshape since
5884 brace elision is not allowed. Even if we decided to allow it,
5885 we should add a call to reshape_init in finish_compound_literal,
5886 before calling digest_init, so changing this code would still
5887 not be necessary. */
5888 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
5889 else
5891 ++d->cur;
5892 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5893 return reshape_init (type, init, complain);
5897 if (complain & tf_warning)
5898 warning (OPT_Wmissing_braces,
5899 "missing braces around initializer for %qT",
5900 type);
5903 /* Dispatch to specialized routines. */
5904 if (CLASS_TYPE_P (type))
5905 return reshape_init_class (type, d, first_initializer_p, complain);
5906 else if (TREE_CODE (type) == ARRAY_TYPE)
5907 return reshape_init_array (type, d, complain);
5908 else if (VECTOR_TYPE_P (type))
5909 return reshape_init_vector (type, d, complain);
5910 else
5911 gcc_unreachable();
5914 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
5915 brace-enclosed aggregate initializer.
5917 INIT is the CONSTRUCTOR containing the list of initializers describing
5918 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
5919 It may not presently match the shape of the TYPE; for example:
5921 struct S { int a; int b; };
5922 struct S a[] = { 1, 2, 3, 4 };
5924 Here INIT will hold a vector of four elements, rather than a
5925 vector of two elements, each itself a vector of two elements. This
5926 routine transforms INIT from the former form into the latter. The
5927 revised CONSTRUCTOR node is returned. */
5929 tree
5930 reshape_init (tree type, tree init, tsubst_flags_t complain)
5932 vec<constructor_elt, va_gc> *v;
5933 reshape_iter d;
5934 tree new_init;
5936 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5938 v = CONSTRUCTOR_ELTS (init);
5940 /* An empty constructor does not need reshaping, and it is always a valid
5941 initializer. */
5942 if (vec_safe_is_empty (v))
5943 return init;
5945 /* Recurse on this CONSTRUCTOR. */
5946 d.cur = &(*v)[0];
5947 d.end = d.cur + v->length ();
5949 new_init = reshape_init_r (type, &d, true, complain);
5950 if (new_init == error_mark_node)
5951 return error_mark_node;
5953 /* Make sure all the element of the constructor were used. Otherwise,
5954 issue an error about exceeding initializers. */
5955 if (d.cur != d.end)
5957 if (complain & tf_error)
5958 error ("too many initializers for %qT", type);
5959 else
5960 return error_mark_node;
5963 return new_init;
5966 /* Verify array initializer. Returns true if errors have been reported. */
5968 bool
5969 check_array_initializer (tree decl, tree type, tree init)
5971 tree element_type = TREE_TYPE (type);
5973 /* The array type itself need not be complete, because the
5974 initializer may tell us how many elements are in the array.
5975 But, the elements of the array must be complete. */
5976 if (!COMPLETE_TYPE_P (complete_type (element_type)))
5978 if (decl)
5979 error_at (DECL_SOURCE_LOCATION (decl),
5980 "elements of array %q#D have incomplete type", decl);
5981 else
5982 error ("elements of array %q#T have incomplete type", type);
5983 return true;
5985 /* A compound literal can't have variable size. */
5986 if (init && !decl
5987 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
5988 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
5990 error ("variable-sized compound literal");
5991 return true;
5993 return false;
5996 /* Subroutine of check_initializer; args are passed down from that function.
5997 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
5999 static tree
6000 build_aggr_init_full_exprs (tree decl, tree init, int flags)
6003 gcc_assert (stmts_are_full_exprs_p ());
6004 return build_aggr_init (decl, init, flags, tf_warning_or_error);
6007 /* Verify INIT (the initializer for DECL), and record the
6008 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
6009 grok_reference_init.
6011 If the return value is non-NULL, it is an expression that must be
6012 evaluated dynamically to initialize DECL. */
6014 static tree
6015 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
6017 tree type = TREE_TYPE (decl);
6018 tree init_code = NULL;
6019 tree core_type;
6021 /* Things that are going to be initialized need to have complete
6022 type. */
6023 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
6025 if (DECL_HAS_VALUE_EXPR_P (decl))
6027 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
6028 it doesn't have storage to be initialized. */
6029 gcc_assert (init == NULL_TREE);
6030 return NULL_TREE;
6033 if (type == error_mark_node)
6034 /* We will have already complained. */
6035 return NULL_TREE;
6037 if (TREE_CODE (type) == ARRAY_TYPE)
6039 if (check_array_initializer (decl, type, init))
6040 return NULL_TREE;
6042 else if (!COMPLETE_TYPE_P (type))
6044 error_at (DECL_SOURCE_LOCATION (decl),
6045 "%q#D has incomplete type", decl);
6046 TREE_TYPE (decl) = error_mark_node;
6047 return NULL_TREE;
6049 else
6050 /* There is no way to make a variable-sized class type in GNU C++. */
6051 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
6053 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
6055 int init_len = vec_safe_length (CONSTRUCTOR_ELTS (init));
6056 if (SCALAR_TYPE_P (type))
6058 if (init_len == 0)
6060 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6061 init = build_zero_init (type, NULL_TREE, false);
6063 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
6065 error_at (EXPR_LOC_OR_LOC (init, DECL_SOURCE_LOCATION (decl)),
6066 "scalar object %qD requires one element in "
6067 "initializer", decl);
6068 TREE_TYPE (decl) = error_mark_node;
6069 return NULL_TREE;
6074 if (TREE_CODE (decl) == CONST_DECL)
6076 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
6078 DECL_INITIAL (decl) = init;
6080 gcc_assert (init != NULL_TREE);
6081 init = NULL_TREE;
6083 else if (!init && DECL_REALLY_EXTERN (decl))
6085 else if (init || type_build_ctor_call (type)
6086 || TREE_CODE (type) == REFERENCE_TYPE)
6088 if (TREE_CODE (type) == REFERENCE_TYPE)
6090 init = grok_reference_init (decl, type, init, flags);
6091 flags |= LOOKUP_ALREADY_DIGESTED;
6093 else if (!init)
6094 check_for_uninitialized_const_var (decl);
6095 /* Do not reshape constructors of vectors (they don't need to be
6096 reshaped. */
6097 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
6099 if (is_std_init_list (type))
6101 init = perform_implicit_conversion (type, init,
6102 tf_warning_or_error);
6103 flags |= LOOKUP_ALREADY_DIGESTED;
6105 else if (TYPE_NON_AGGREGATE_CLASS (type))
6107 /* Don't reshape if the class has constructors. */
6108 if (cxx_dialect == cxx98)
6109 error_at (EXPR_LOC_OR_LOC (init, DECL_SOURCE_LOCATION (decl)),
6110 "in C++98 %qD must be initialized by "
6111 "constructor, not by %<{...}%>",
6112 decl);
6114 else if (VECTOR_TYPE_P (type) && TYPE_VECTOR_OPAQUE (type))
6116 error ("opaque vector types cannot be initialized");
6117 init = error_mark_node;
6119 else
6121 init = reshape_init (type, init, tf_warning_or_error);
6122 flags |= LOOKUP_NO_NARROWING;
6125 else if (TREE_CODE (init) == TREE_LIST
6126 && TREE_TYPE (init) != unknown_type_node
6127 && !MAYBE_CLASS_TYPE_P (type))
6129 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6131 /* We get here with code like `int a (2);' */
6132 init = build_x_compound_expr_from_list (init, ELK_INIT,
6133 tf_warning_or_error);
6136 /* If DECL has an array type without a specific bound, deduce the
6137 array size from the initializer. */
6138 maybe_deduce_size_from_array_init (decl, init);
6139 type = TREE_TYPE (decl);
6140 if (type == error_mark_node)
6141 return NULL_TREE;
6143 if ((type_build_ctor_call (type) || CLASS_TYPE_P (type))
6144 && !(flags & LOOKUP_ALREADY_DIGESTED)
6145 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
6146 && CP_AGGREGATE_TYPE_P (type)
6147 && (CLASS_TYPE_P (type)
6148 || !TYPE_NEEDS_CONSTRUCTING (type)
6149 || type_has_extended_temps (type))))
6151 init_code = build_aggr_init_full_exprs (decl, init, flags);
6153 /* A constructor call is a non-trivial initializer even if
6154 it isn't explicitly written. */
6155 if (TREE_SIDE_EFFECTS (init_code))
6156 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
6158 /* If this is a constexpr initializer, expand_default_init will
6159 have returned an INIT_EXPR rather than a CALL_EXPR. In that
6160 case, pull the initializer back out and pass it down into
6161 store_init_value. */
6162 while (TREE_CODE (init_code) == EXPR_STMT
6163 || TREE_CODE (init_code) == CONVERT_EXPR)
6164 init_code = TREE_OPERAND (init_code, 0);
6165 if (TREE_CODE (init_code) == INIT_EXPR)
6167 init = TREE_OPERAND (init_code, 1);
6168 init_code = NULL_TREE;
6169 /* Don't call digest_init; it's unnecessary and will complain
6170 about aggregate initialization of non-aggregate classes. */
6171 flags |= LOOKUP_ALREADY_DIGESTED;
6173 else if (DECL_DECLARED_CONSTEXPR_P (decl))
6175 /* Declared constexpr, but no suitable initializer; massage
6176 init appropriately so we can pass it into store_init_value
6177 for the error. */
6178 if (CLASS_TYPE_P (type)
6179 && (!init || TREE_CODE (init) == TREE_LIST))
6181 init = build_functional_cast (type, init, tf_none);
6182 if (TREE_CODE (init) == TARGET_EXPR)
6183 TARGET_EXPR_DIRECT_INIT_P (init) = true;
6185 init_code = NULL_TREE;
6187 else
6188 init = NULL_TREE;
6191 if (init && TREE_CODE (init) != TREE_VEC)
6193 /* In aggregate initialization of a variable, each element
6194 initialization is a full-expression because there is no
6195 enclosing expression. */
6196 gcc_assert (stmts_are_full_exprs_p ());
6198 init_code = store_init_value (decl, init, cleanups, flags);
6200 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
6201 && DECL_INITIAL (decl)
6202 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
6203 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
6204 warning_at (EXPR_LOC_OR_LOC (DECL_INITIAL (decl),
6205 DECL_SOURCE_LOCATION (decl)),
6206 0, "array %qD initialized by parenthesized "
6207 "string literal %qE",
6208 decl, DECL_INITIAL (decl));
6209 init = NULL;
6212 else
6214 if (CLASS_TYPE_P (core_type = strip_array_types (type))
6215 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
6216 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
6217 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
6218 /*complain=*/true);
6220 check_for_uninitialized_const_var (decl);
6223 if (init && init != error_mark_node)
6224 init_code = build2 (INIT_EXPR, type, decl, init);
6226 if (init_code)
6228 /* We might have set these in cp_finish_decl. */
6229 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
6230 TREE_CONSTANT (decl) = false;
6233 if (init_code && DECL_IN_AGGR_P (decl))
6235 static int explained = 0;
6237 if (cxx_dialect < cxx11)
6238 error ("initializer invalid for static member with constructor");
6239 else
6240 error ("non-constant in-class initialization invalid for static "
6241 "member %qD", decl);
6242 if (!explained)
6244 inform (input_location,
6245 "(an out of class initialization is required)");
6246 explained = 1;
6248 return NULL_TREE;
6251 return init_code;
6254 /* If DECL is not a local variable, give it RTL. */
6256 static void
6257 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
6259 int toplev = toplevel_bindings_p ();
6260 int defer_p;
6262 /* Set the DECL_ASSEMBLER_NAME for the object. */
6263 if (asmspec)
6265 /* The `register' keyword, when used together with an
6266 asm-specification, indicates that the variable should be
6267 placed in a particular register. */
6268 if (VAR_P (decl) && DECL_REGISTER (decl))
6270 set_user_assembler_name (decl, asmspec);
6271 DECL_HARD_REGISTER (decl) = 1;
6273 else
6275 if (TREE_CODE (decl) == FUNCTION_DECL
6276 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
6277 set_builtin_user_assembler_name (decl, asmspec);
6278 set_user_assembler_name (decl, asmspec);
6282 /* Handle non-variables up front. */
6283 if (!VAR_P (decl))
6285 rest_of_decl_compilation (decl, toplev, at_eof);
6286 return;
6289 /* If we see a class member here, it should be a static data
6290 member. */
6291 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
6293 gcc_assert (TREE_STATIC (decl));
6294 /* An in-class declaration of a static data member should be
6295 external; it is only a declaration, and not a definition. */
6296 if (init == NULL_TREE)
6297 gcc_assert (DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl));
6300 /* We don't create any RTL for local variables. */
6301 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6302 return;
6304 /* We defer emission of local statics until the corresponding
6305 DECL_EXPR is expanded. But with constexpr its function might never
6306 be expanded, so go ahead and tell cgraph about the variable now. */
6307 defer_p = ((DECL_FUNCTION_SCOPE_P (decl)
6308 && !DECL_DECLARED_CONSTEXPR_P (DECL_CONTEXT (decl)))
6309 || DECL_VIRTUAL_P (decl));
6311 /* Defer template instantiations. */
6312 if (DECL_LANG_SPECIFIC (decl)
6313 && DECL_IMPLICIT_INSTANTIATION (decl))
6314 defer_p = 1;
6316 /* If we're not deferring, go ahead and assemble the variable. */
6317 if (!defer_p)
6318 rest_of_decl_compilation (decl, toplev, at_eof);
6321 /* walk_tree helper for wrap_temporary_cleanups, below. */
6323 static tree
6324 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
6326 /* Stop at types or full-expression boundaries. */
6327 if (TYPE_P (*stmt_p)
6328 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
6330 *walk_subtrees = 0;
6331 return NULL_TREE;
6334 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
6336 tree guard = (tree)data;
6337 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
6339 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
6340 /* Tell honor_protect_cleanup_actions to handle this as a separate
6341 cleanup. */
6342 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
6344 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
6347 return NULL_TREE;
6350 /* We're initializing a local variable which has a cleanup GUARD. If there
6351 are any temporaries used in the initializer INIT of this variable, we
6352 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6353 variable will be cleaned up properly if one of them throws.
6355 Unfortunately, there's no way to express this properly in terms of
6356 nesting, as the regions for the temporaries overlap the region for the
6357 variable itself; if there are two temporaries, the variable needs to be
6358 the first thing destroyed if either of them throws. However, we only
6359 want to run the variable's cleanup if it actually got constructed. So
6360 we need to guard the temporary cleanups with the variable's cleanup if
6361 they are run on the normal path, but not if they are run on the
6362 exceptional path. We implement this by telling
6363 honor_protect_cleanup_actions to strip the variable cleanup from the
6364 exceptional path. */
6366 static void
6367 wrap_temporary_cleanups (tree init, tree guard)
6369 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
6372 /* Generate code to initialize DECL (a local variable). */
6374 static void
6375 initialize_local_var (tree decl, tree init)
6377 tree type = TREE_TYPE (decl);
6378 tree cleanup;
6379 int already_used;
6381 gcc_assert (VAR_P (decl)
6382 || TREE_CODE (decl) == RESULT_DECL);
6383 gcc_assert (!TREE_STATIC (decl));
6385 if (DECL_SIZE (decl) == NULL_TREE)
6387 /* If we used it already as memory, it must stay in memory. */
6388 DECL_INITIAL (decl) = NULL_TREE;
6389 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6390 return;
6393 if (type == error_mark_node)
6394 return;
6396 /* Compute and store the initial value. */
6397 already_used = TREE_USED (decl) || TREE_USED (type);
6398 if (TREE_USED (type))
6399 DECL_READ_P (decl) = 1;
6401 /* Generate a cleanup, if necessary. */
6402 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6404 /* Perform the initialization. */
6405 if (init)
6407 tree rinit = (TREE_CODE (init) == INIT_EXPR
6408 ? TREE_OPERAND (init, 1) : NULL_TREE);
6409 if (rinit && !TREE_SIDE_EFFECTS (rinit))
6411 /* Stick simple initializers in DECL_INITIAL so that
6412 -Wno-init-self works (c++/34772). */
6413 gcc_assert (TREE_OPERAND (init, 0) == decl);
6414 DECL_INITIAL (decl) = rinit;
6416 if (warn_init_self && TREE_CODE (type) == REFERENCE_TYPE)
6418 STRIP_NOPS (rinit);
6419 if (rinit == decl)
6420 warning_at (DECL_SOURCE_LOCATION (decl),
6421 OPT_Winit_self,
6422 "reference %qD is initialized with itself", decl);
6425 else
6427 int saved_stmts_are_full_exprs_p;
6429 /* If we're only initializing a single object, guard the
6430 destructors of any temporaries used in its initializer with
6431 its destructor. This isn't right for arrays because each
6432 element initialization is a full-expression. */
6433 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6434 wrap_temporary_cleanups (init, cleanup);
6436 gcc_assert (building_stmt_list_p ());
6437 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6438 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6439 finish_expr_stmt (init);
6440 current_stmt_tree ()->stmts_are_full_exprs_p =
6441 saved_stmts_are_full_exprs_p;
6445 /* Set this to 0 so we can tell whether an aggregate which was
6446 initialized was ever used. Don't do this if it has a
6447 destructor, so we don't complain about the 'resource
6448 allocation is initialization' idiom. Now set
6449 attribute((unused)) on types so decls of that type will be
6450 marked used. (see TREE_USED, above.) */
6451 if (TYPE_NEEDS_CONSTRUCTING (type)
6452 && ! already_used
6453 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6454 && DECL_NAME (decl))
6455 TREE_USED (decl) = 0;
6456 else if (already_used)
6457 TREE_USED (decl) = 1;
6459 if (cleanup)
6460 finish_decl_cleanup (decl, cleanup);
6463 /* DECL is a VAR_DECL for a compiler-generated variable with static
6464 storage duration (like a virtual table) whose initializer is a
6465 compile-time constant. Initialize the variable and provide it to the
6466 back end. */
6468 void
6469 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6471 tree init;
6472 gcc_assert (DECL_ARTIFICIAL (decl));
6473 init = build_constructor (TREE_TYPE (decl), v);
6474 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6475 DECL_INITIAL (decl) = init;
6476 DECL_INITIALIZED_P (decl) = 1;
6477 determine_visibility (decl);
6478 layout_var_decl (decl);
6479 maybe_commonize_var (decl);
6480 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6483 /* INIT is the initializer for a variable, as represented by the
6484 parser. Returns true iff INIT is type-dependent. */
6486 static bool
6487 type_dependent_init_p (tree init)
6489 if (TREE_CODE (init) == TREE_LIST)
6490 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6491 return any_type_dependent_elements_p (init);
6492 else if (TREE_CODE (init) == CONSTRUCTOR)
6493 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6495 vec<constructor_elt, va_gc> *elts;
6496 size_t nelts;
6497 size_t i;
6499 elts = CONSTRUCTOR_ELTS (init);
6500 nelts = vec_safe_length (elts);
6501 for (i = 0; i < nelts; ++i)
6502 if (type_dependent_init_p ((*elts)[i].value))
6503 return true;
6505 else
6506 /* It must be a simple expression, e.g., int i = 3; */
6507 return type_dependent_expression_p (init);
6509 return false;
6512 /* INIT is the initializer for a variable, as represented by the
6513 parser. Returns true iff INIT is value-dependent. */
6515 static bool
6516 value_dependent_init_p (tree init)
6518 if (TREE_CODE (init) == TREE_LIST)
6519 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6520 return any_value_dependent_elements_p (init);
6521 else if (TREE_CODE (init) == CONSTRUCTOR)
6522 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6524 vec<constructor_elt, va_gc> *elts;
6525 size_t nelts;
6526 size_t i;
6528 elts = CONSTRUCTOR_ELTS (init);
6529 nelts = vec_safe_length (elts);
6530 for (i = 0; i < nelts; ++i)
6531 if (value_dependent_init_p ((*elts)[i].value))
6532 return true;
6534 else
6535 /* It must be a simple expression, e.g., int i = 3; */
6536 return value_dependent_expression_p (init);
6538 return false;
6541 // Returns true if a DECL is VAR_DECL with the concept specifier.
6542 static inline bool
6543 is_concept_var (tree decl)
6545 return (VAR_P (decl)
6546 // Not all variables have DECL_LANG_SPECIFIC.
6547 && DECL_LANG_SPECIFIC (decl)
6548 && DECL_DECLARED_CONCEPT_P (decl));
6551 /* A helper function to be called via walk_tree. If any label exists
6552 under *TP, it is (going to be) forced. Set has_forced_label_in_static. */
6554 static tree
6555 notice_forced_label_r (tree *tp, int *walk_subtrees, void *)
6557 if (TYPE_P (*tp))
6558 *walk_subtrees = 0;
6559 if (TREE_CODE (*tp) == LABEL_DECL)
6560 cfun->has_forced_label_in_static = 1;
6561 return NULL_TREE;
6564 /* Finish processing of a declaration;
6565 install its line number and initial value.
6566 If the length of an array type is not known before,
6567 it must be determined now, from the initial value, or it is an error.
6569 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6570 true, then INIT is an integral constant expression.
6572 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6573 if the (init) syntax was used. */
6575 void
6576 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
6577 tree asmspec_tree, int flags)
6579 tree type;
6580 vec<tree, va_gc> *cleanups = NULL;
6581 const char *asmspec = NULL;
6582 int was_readonly = 0;
6583 bool var_definition_p = false;
6584 tree auto_node;
6586 if (decl == error_mark_node)
6587 return;
6588 else if (! decl)
6590 if (init)
6591 error ("assignment (not initialization) in declaration");
6592 return;
6595 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6596 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6597 gcc_assert (TREE_CODE (decl) != PARM_DECL);
6599 type = TREE_TYPE (decl);
6600 if (type == error_mark_node)
6601 return;
6603 /* If a name was specified, get the string. */
6604 if (at_namespace_scope_p ())
6605 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
6606 if (asmspec_tree && asmspec_tree != error_mark_node)
6607 asmspec = TREE_STRING_POINTER (asmspec_tree);
6609 if (current_class_type
6610 && CP_DECL_CONTEXT (decl) == current_class_type
6611 && TYPE_BEING_DEFINED (current_class_type)
6612 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
6613 && (DECL_INITIAL (decl) || init))
6614 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
6616 if (TREE_CODE (decl) != FUNCTION_DECL
6617 && (auto_node = type_uses_auto (type)))
6619 tree d_init;
6620 if (init == NULL_TREE)
6622 if (DECL_LANG_SPECIFIC (decl)
6623 && DECL_TEMPLATE_INSTANTIATION (decl)
6624 && !DECL_TEMPLATE_INSTANTIATED (decl))
6626 /* init is null because we're deferring instantiating the
6627 initializer until we need it. Well, we need it now. */
6628 instantiate_decl (decl, /*defer_ok*/true, /*expl*/false);
6629 return;
6632 error ("declaration of %q#D has no initializer", decl);
6633 TREE_TYPE (decl) = error_mark_node;
6634 return;
6636 d_init = init;
6637 if (TREE_CODE (d_init) == TREE_LIST)
6638 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
6639 tf_warning_or_error);
6640 d_init = resolve_nondeduced_context (d_init, tf_warning_or_error);
6641 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init,
6642 auto_node,
6643 tf_warning_or_error,
6644 adc_variable_type);
6645 if (type == error_mark_node)
6646 return;
6647 if (TREE_CODE (type) == FUNCTION_TYPE)
6649 error ("initializer for %<decltype(auto) %D%> has function type "
6650 "(did you forget the %<()%> ?)", decl);
6651 TREE_TYPE (decl) = error_mark_node;
6652 return;
6654 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
6657 if (!ensure_literal_type_for_constexpr_object (decl))
6658 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
6660 if (VAR_P (decl)
6661 && DECL_CLASS_SCOPE_P (decl)
6662 && DECL_INITIALIZED_IN_CLASS_P (decl))
6663 check_static_variable_definition (decl, type);
6665 if (init && TREE_CODE (decl) == FUNCTION_DECL)
6667 tree clone;
6668 if (init == ridpointers[(int)RID_DELETE])
6670 /* FIXME check this is 1st decl. */
6671 DECL_DELETED_FN (decl) = 1;
6672 DECL_DECLARED_INLINE_P (decl) = 1;
6673 DECL_INITIAL (decl) = error_mark_node;
6674 FOR_EACH_CLONE (clone, decl)
6676 DECL_DELETED_FN (clone) = 1;
6677 DECL_DECLARED_INLINE_P (clone) = 1;
6678 DECL_INITIAL (clone) = error_mark_node;
6680 init = NULL_TREE;
6682 else if (init == ridpointers[(int)RID_DEFAULT])
6684 if (defaultable_fn_check (decl))
6685 DECL_DEFAULTED_FN (decl) = 1;
6686 else
6687 DECL_INITIAL (decl) = NULL_TREE;
6691 if (init && VAR_P (decl))
6693 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
6694 /* If DECL is a reference, then we want to know whether init is a
6695 reference constant; init_const_expr_p as passed tells us whether
6696 it's an rvalue constant. */
6697 if (TREE_CODE (type) == REFERENCE_TYPE)
6698 init_const_expr_p = potential_constant_expression (init);
6699 if (init_const_expr_p)
6701 /* Set these flags now for templates. We'll update the flags in
6702 store_init_value for instantiations. */
6703 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
6704 if (decl_maybe_constant_var_p (decl))
6705 TREE_CONSTANT (decl) = 1;
6709 if (processing_template_decl)
6711 bool type_dependent_p;
6713 /* Add this declaration to the statement-tree. */
6714 if (at_function_scope_p ())
6715 add_decl_expr (decl);
6717 type_dependent_p = dependent_type_p (type);
6719 if (check_for_bare_parameter_packs (init))
6721 init = NULL_TREE;
6722 DECL_INITIAL (decl) = NULL_TREE;
6725 /* Generally, initializers in templates are expanded when the
6726 template is instantiated. But, if DECL is a variable constant
6727 then it can be used in future constant expressions, so its value
6728 must be available. */
6730 if (!VAR_P (decl) || type_dependent_p)
6731 /* We can't do anything if the decl has dependent type. */;
6732 else if (init
6733 && init_const_expr_p
6734 && TREE_CODE (type) != REFERENCE_TYPE
6735 && decl_maybe_constant_var_p (decl)
6736 && !type_dependent_init_p (init)
6737 && !value_dependent_init_p (init))
6739 /* This variable seems to be a non-dependent constant, so process
6740 its initializer. If check_initializer returns non-null the
6741 initialization wasn't constant after all. */
6742 tree init_code;
6743 cleanups = make_tree_vector ();
6744 init_code = check_initializer (decl, init, flags, &cleanups);
6745 if (init_code == NULL_TREE)
6746 init = NULL_TREE;
6747 release_tree_vector (cleanups);
6749 else if (!init && is_concept_var (decl))
6750 error ("variable concept has no initializer");
6751 else if (!DECL_PRETTY_FUNCTION_P (decl))
6753 /* Deduce array size even if the initializer is dependent. */
6754 maybe_deduce_size_from_array_init (decl, init);
6755 /* And complain about multiple initializers. */
6756 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
6757 && !MAYBE_CLASS_TYPE_P (type))
6758 init = build_x_compound_expr_from_list (init, ELK_INIT,
6759 tf_warning_or_error);
6762 if (init)
6763 DECL_INITIAL (decl) = init;
6764 return;
6767 /* Just store non-static data member initializers for later. */
6768 if (init && TREE_CODE (decl) == FIELD_DECL)
6769 DECL_INITIAL (decl) = init;
6771 /* Take care of TYPE_DECLs up front. */
6772 if (TREE_CODE (decl) == TYPE_DECL)
6774 if (type != error_mark_node
6775 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
6777 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
6778 warning (0, "shadowing previous type declaration of %q#D", decl);
6779 set_identifier_type_value (DECL_NAME (decl), decl);
6782 /* If we have installed this as the canonical typedef for this
6783 type, and that type has not been defined yet, delay emitting
6784 the debug information for it, as we will emit it later. */
6785 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
6786 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
6787 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
6789 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
6790 at_eof);
6791 return;
6794 /* A reference will be modified here, as it is initialized. */
6795 if (! DECL_EXTERNAL (decl)
6796 && TREE_READONLY (decl)
6797 && TREE_CODE (type) == REFERENCE_TYPE)
6799 was_readonly = 1;
6800 TREE_READONLY (decl) = 0;
6803 if (VAR_P (decl))
6805 /* If this is a local variable that will need a mangled name,
6806 register it now. We must do this before processing the
6807 initializer for the variable, since the initialization might
6808 require a guard variable, and since the mangled name of the
6809 guard variable will depend on the mangled name of this
6810 variable. */
6811 if (DECL_FUNCTION_SCOPE_P (decl)
6812 && TREE_STATIC (decl)
6813 && !DECL_ARTIFICIAL (decl))
6815 push_local_name (decl);
6816 /* Normally has_forced_label_in_static is set during GIMPLE
6817 lowering, but [cd]tors are never actually compiled directly.
6818 We need to set this early so we can deal with the label
6819 address extension. */
6820 if ((DECL_CONSTRUCTOR_P (current_function_decl)
6821 || DECL_DESTRUCTOR_P (current_function_decl))
6822 && init)
6824 walk_tree (&init, notice_forced_label_r, NULL, NULL);
6825 add_local_decl (cfun, decl);
6827 /* And make sure it's in the symbol table for
6828 c_parse_final_cleanups to find. */
6829 varpool_node::get_create (decl);
6832 /* Convert the initializer to the type of DECL, if we have not
6833 already initialized DECL. */
6834 if (!DECL_INITIALIZED_P (decl)
6835 /* If !DECL_EXTERNAL then DECL is being defined. In the
6836 case of a static data member initialized inside the
6837 class-specifier, there can be an initializer even if DECL
6838 is *not* defined. */
6839 && (!DECL_EXTERNAL (decl) || init))
6841 if (TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6843 tree jclass
6844 = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jclass"));
6845 /* Allow libjava/prims.cc define primitive classes. */
6846 if (init != NULL_TREE
6847 || jclass == NULL_TREE
6848 || TREE_CODE (jclass) != TYPE_DECL
6849 || !POINTER_TYPE_P (TREE_TYPE (jclass))
6850 || !same_type_ignoring_top_level_qualifiers_p
6851 (type, TREE_TYPE (TREE_TYPE (jclass))))
6852 error ("Java object %qD not allocated with %<new%>", decl);
6853 init = NULL_TREE;
6855 cleanups = make_tree_vector ();
6856 init = check_initializer (decl, init, flags, &cleanups);
6858 /* Handle:
6860 [dcl.init]
6862 The memory occupied by any object of static storage
6863 duration is zero-initialized at program startup before
6864 any other initialization takes place.
6866 We cannot create an appropriate initializer until after
6867 the type of DECL is finalized. If DECL_INITIAL is set,
6868 then the DECL is statically initialized, and any
6869 necessary zero-initialization has already been performed. */
6870 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
6871 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
6872 /*nelts=*/NULL_TREE,
6873 /*static_storage_p=*/true);
6874 /* Remember that the initialization for this variable has
6875 taken place. */
6876 DECL_INITIALIZED_P (decl) = 1;
6877 /* This declaration is the definition of this variable,
6878 unless we are initializing a static data member within
6879 the class specifier. */
6880 if (!DECL_EXTERNAL (decl))
6881 var_definition_p = true;
6883 /* If the variable has an array type, lay out the type, even if
6884 there is no initializer. It is valid to index through the
6885 array, and we must get TYPE_ALIGN set correctly on the array
6886 type. */
6887 else if (TREE_CODE (type) == ARRAY_TYPE)
6888 layout_type (type);
6890 if (TREE_STATIC (decl)
6891 && !at_function_scope_p ()
6892 && current_function_decl == NULL)
6893 /* So decl is a global variable or a static member of a
6894 non local class. Record the types it uses
6895 so that we can decide later to emit debug info for them. */
6896 record_types_used_by_current_var_decl (decl);
6898 else if (TREE_CODE (decl) == FIELD_DECL
6899 && TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6900 error ("non-static data member %qD has Java class type", decl);
6902 /* Add this declaration to the statement-tree. This needs to happen
6903 after the call to check_initializer so that the DECL_EXPR for a
6904 reference temp is added before the DECL_EXPR for the reference itself. */
6905 if (DECL_FUNCTION_SCOPE_P (decl))
6907 /* If we're building a variable sized type, and we might be
6908 reachable other than via the top of the current binding
6909 level, then create a new BIND_EXPR so that we deallocate
6910 the object at the right time. */
6911 if (VAR_P (decl)
6912 && DECL_SIZE (decl)
6913 && !TREE_CONSTANT (DECL_SIZE (decl))
6914 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
6916 tree bind;
6917 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6918 TREE_SIDE_EFFECTS (bind) = 1;
6919 add_stmt (bind);
6920 BIND_EXPR_BODY (bind) = push_stmt_list ();
6922 add_decl_expr (decl);
6925 /* Let the middle end know about variables and functions -- but not
6926 static data members in uninstantiated class templates. */
6927 if (VAR_OR_FUNCTION_DECL_P (decl))
6929 if (VAR_P (decl))
6931 layout_var_decl (decl);
6932 maybe_commonize_var (decl);
6935 /* This needs to happen after the linkage is set. */
6936 determine_visibility (decl);
6938 if (var_definition_p && TREE_STATIC (decl))
6940 /* If a TREE_READONLY variable needs initialization
6941 at runtime, it is no longer readonly and we need to
6942 avoid MEM_READONLY_P being set on RTL created for it. */
6943 if (init)
6945 if (TREE_READONLY (decl))
6946 TREE_READONLY (decl) = 0;
6947 was_readonly = 0;
6949 else if (was_readonly)
6950 TREE_READONLY (decl) = 1;
6952 /* Likewise if it needs destruction. */
6953 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
6954 TREE_READONLY (decl) = 0;
6957 make_rtl_for_nonlocal_decl (decl, init, asmspec);
6959 /* Check for abstractness of the type. Notice that there is no
6960 need to strip array types here since the check for those types
6961 is already done within create_array_type_for_decl. */
6962 abstract_virtuals_error (decl, type);
6964 if (TREE_TYPE (decl) == error_mark_node)
6965 /* No initialization required. */
6967 else if (TREE_CODE (decl) == FUNCTION_DECL)
6969 if (init)
6971 if (init == ridpointers[(int)RID_DEFAULT])
6973 /* An out-of-class default definition is defined at
6974 the point where it is explicitly defaulted. */
6975 if (DECL_DELETED_FN (decl))
6976 maybe_explain_implicit_delete (decl);
6977 else if (DECL_INITIAL (decl) == error_mark_node)
6978 synthesize_method (decl);
6980 else
6981 error ("function %q#D is initialized like a variable", decl);
6983 /* else no initialization required. */
6985 else if (DECL_EXTERNAL (decl)
6986 && ! (DECL_LANG_SPECIFIC (decl)
6987 && DECL_NOT_REALLY_EXTERN (decl)))
6989 if (init)
6990 DECL_INITIAL (decl) = init;
6992 /* A variable definition. */
6993 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6994 /* Initialize the local variable. */
6995 initialize_local_var (decl, init);
6997 /* If a variable is defined, and then a subsequent
6998 definition with external linkage is encountered, we will
6999 get here twice for the same variable. We want to avoid
7000 calling expand_static_init more than once. For variables
7001 that are not static data members, we can call
7002 expand_static_init only when we actually process the
7003 initializer. It is not legal to redeclare a static data
7004 member, so this issue does not arise in that case. */
7005 else if (var_definition_p && TREE_STATIC (decl))
7006 expand_static_init (decl, init);
7009 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
7010 reference, insert it in the statement-tree now. */
7011 if (cleanups)
7013 unsigned i; tree t;
7014 FOR_EACH_VEC_ELT (*cleanups, i, t)
7015 push_cleanup (decl, t, false);
7016 release_tree_vector (cleanups);
7019 if (was_readonly)
7020 TREE_READONLY (decl) = 1;
7022 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
7025 /* Returns a declaration for a VAR_DECL as if:
7027 extern "C" TYPE NAME;
7029 had been seen. Used to create compiler-generated global
7030 variables. */
7032 static tree
7033 declare_global_var (tree name, tree type)
7035 tree decl;
7037 push_to_top_level ();
7038 decl = build_decl (input_location, VAR_DECL, name, type);
7039 TREE_PUBLIC (decl) = 1;
7040 DECL_EXTERNAL (decl) = 1;
7041 DECL_ARTIFICIAL (decl) = 1;
7042 /* If the user has explicitly declared this variable (perhaps
7043 because the code we are compiling is part of a low-level runtime
7044 library), then it is possible that our declaration will be merged
7045 with theirs by pushdecl. */
7046 decl = pushdecl (decl);
7047 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
7048 pop_from_top_level ();
7050 return decl;
7053 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
7054 if "__cxa_atexit" is not being used) corresponding to the function
7055 to be called when the program exits. */
7057 static tree
7058 get_atexit_fn_ptr_type (void)
7060 tree fn_type;
7062 if (!atexit_fn_ptr_type_node)
7064 tree arg_type;
7065 if (flag_use_cxa_atexit
7066 && !targetm.cxx.use_atexit_for_cxa_atexit ())
7067 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
7068 arg_type = ptr_type_node;
7069 else
7070 /* The parameter to "atexit" is "void (*)(void)". */
7071 arg_type = NULL_TREE;
7073 fn_type = build_function_type_list (void_type_node,
7074 arg_type, NULL_TREE);
7075 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
7078 return atexit_fn_ptr_type_node;
7081 /* Returns a pointer to the `atexit' function. Note that if
7082 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
7083 `__cxa_atexit' function specified in the IA64 C++ ABI. */
7085 static tree
7086 get_atexit_node (void)
7088 tree atexit_fndecl;
7089 tree fn_type;
7090 tree fn_ptr_type;
7091 const char *name;
7092 bool use_aeabi_atexit;
7094 if (atexit_node)
7095 return atexit_node;
7097 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
7099 /* The declaration for `__cxa_atexit' is:
7101 int __cxa_atexit (void (*)(void *), void *, void *)
7103 We build up the argument types and then the function type
7104 itself. */
7105 tree argtype0, argtype1, argtype2;
7107 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
7108 /* First, build the pointer-to-function type for the first
7109 argument. */
7110 fn_ptr_type = get_atexit_fn_ptr_type ();
7111 /* Then, build the rest of the argument types. */
7112 argtype2 = ptr_type_node;
7113 if (use_aeabi_atexit)
7115 argtype1 = fn_ptr_type;
7116 argtype0 = ptr_type_node;
7118 else
7120 argtype1 = ptr_type_node;
7121 argtype0 = fn_ptr_type;
7123 /* And the final __cxa_atexit type. */
7124 fn_type = build_function_type_list (integer_type_node,
7125 argtype0, argtype1, argtype2,
7126 NULL_TREE);
7127 if (use_aeabi_atexit)
7128 name = "__aeabi_atexit";
7129 else
7130 name = "__cxa_atexit";
7132 else
7134 /* The declaration for `atexit' is:
7136 int atexit (void (*)());
7138 We build up the argument types and then the function type
7139 itself. */
7140 fn_ptr_type = get_atexit_fn_ptr_type ();
7141 /* Build the final atexit type. */
7142 fn_type = build_function_type_list (integer_type_node,
7143 fn_ptr_type, NULL_TREE);
7144 name = "atexit";
7147 /* Now, build the function declaration. */
7148 push_lang_context (lang_name_c);
7149 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
7150 mark_used (atexit_fndecl);
7151 pop_lang_context ();
7152 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
7154 return atexit_node;
7157 /* Like get_atexit_node, but for thread-local cleanups. */
7159 static tree
7160 get_thread_atexit_node (void)
7162 /* The declaration for `__cxa_thread_atexit' is:
7164 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
7165 tree fn_type = build_function_type_list (integer_type_node,
7166 get_atexit_fn_ptr_type (),
7167 ptr_type_node, ptr_type_node,
7168 NULL_TREE);
7170 /* Now, build the function declaration. */
7171 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
7172 ECF_LEAF | ECF_NOTHROW);
7173 return decay_conversion (atexit_fndecl, tf_warning_or_error);
7176 /* Returns the __dso_handle VAR_DECL. */
7178 static tree
7179 get_dso_handle_node (void)
7181 if (dso_handle_node)
7182 return dso_handle_node;
7184 /* Declare the variable. */
7185 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
7186 ptr_type_node);
7188 #ifdef HAVE_GAS_HIDDEN
7189 if (dso_handle_node != error_mark_node)
7191 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
7192 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
7194 #endif
7196 return dso_handle_node;
7199 /* Begin a new function with internal linkage whose job will be simply
7200 to destroy some particular variable. */
7202 static GTY(()) int start_cleanup_cnt;
7204 static tree
7205 start_cleanup_fn (void)
7207 char name[32];
7208 tree fntype;
7209 tree fndecl;
7210 bool use_cxa_atexit = flag_use_cxa_atexit
7211 && !targetm.cxx.use_atexit_for_cxa_atexit ();
7213 push_to_top_level ();
7215 /* No need to mangle this. */
7216 push_lang_context (lang_name_c);
7218 /* Build the name of the function. */
7219 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
7220 /* Build the function declaration. */
7221 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
7222 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
7223 /* It's a function with internal linkage, generated by the
7224 compiler. */
7225 TREE_PUBLIC (fndecl) = 0;
7226 DECL_ARTIFICIAL (fndecl) = 1;
7227 /* Make the function `inline' so that it is only emitted if it is
7228 actually needed. It is unlikely that it will be inlined, since
7229 it is only called via a function pointer, but we avoid unnecessary
7230 emissions this way. */
7231 DECL_DECLARED_INLINE_P (fndecl) = 1;
7232 DECL_INTERFACE_KNOWN (fndecl) = 1;
7233 /* Build the parameter. */
7234 if (use_cxa_atexit)
7236 tree parmdecl;
7238 parmdecl = cp_build_parm_decl (NULL_TREE, ptr_type_node);
7239 DECL_CONTEXT (parmdecl) = fndecl;
7240 TREE_USED (parmdecl) = 1;
7241 DECL_READ_P (parmdecl) = 1;
7242 DECL_ARGUMENTS (fndecl) = parmdecl;
7245 pushdecl (fndecl);
7246 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
7248 pop_lang_context ();
7250 return current_function_decl;
7253 /* Finish the cleanup function begun by start_cleanup_fn. */
7255 static void
7256 end_cleanup_fn (void)
7258 expand_or_defer_fn (finish_function (0));
7260 pop_from_top_level ();
7263 /* Generate code to handle the destruction of DECL, an object with
7264 static storage duration. */
7266 tree
7267 register_dtor_fn (tree decl)
7269 tree cleanup;
7270 tree addr;
7271 tree compound_stmt;
7272 tree fcall;
7273 tree type;
7274 bool ob_parm, dso_parm, use_dtor;
7275 tree arg0, arg1, arg2;
7276 tree atex_node;
7278 type = TREE_TYPE (decl);
7279 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
7280 return void_node;
7282 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
7283 "__aeabi_atexit"), and DECL is a class object, we can just pass the
7284 destructor to "__cxa_atexit"; we don't have to build a temporary
7285 function to do the cleanup. */
7286 dso_parm = (flag_use_cxa_atexit
7287 && !targetm.cxx.use_atexit_for_cxa_atexit ());
7288 ob_parm = (CP_DECL_THREAD_LOCAL_P (decl) || dso_parm);
7289 use_dtor = ob_parm && CLASS_TYPE_P (type);
7290 if (use_dtor)
7292 int idx;
7294 /* Find the destructor. */
7295 idx = lookup_fnfields_1 (type, complete_dtor_identifier);
7296 gcc_assert (idx >= 0);
7297 cleanup = (*CLASSTYPE_METHOD_VEC (type))[idx];
7298 /* Make sure it is accessible. */
7299 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
7300 tf_warning_or_error);
7302 else
7304 /* Call build_cleanup before we enter the anonymous function so
7305 that any access checks will be done relative to the current
7306 scope, rather than the scope of the anonymous function. */
7307 build_cleanup (decl);
7309 /* Now start the function. */
7310 cleanup = start_cleanup_fn ();
7312 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
7313 to the original function, rather than the anonymous one. That
7314 will make the back end think that nested functions are in use,
7315 which causes confusion. */
7316 push_deferring_access_checks (dk_no_check);
7317 fcall = build_cleanup (decl);
7318 pop_deferring_access_checks ();
7320 /* Create the body of the anonymous function. */
7321 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
7322 finish_expr_stmt (fcall);
7323 finish_compound_stmt (compound_stmt);
7324 end_cleanup_fn ();
7327 /* Call atexit with the cleanup function. */
7328 mark_used (cleanup);
7329 cleanup = build_address (cleanup);
7331 if (CP_DECL_THREAD_LOCAL_P (decl))
7332 atex_node = get_thread_atexit_node ();
7333 else
7334 atex_node = get_atexit_node ();
7336 if (use_dtor)
7338 /* We must convert CLEANUP to the type that "__cxa_atexit"
7339 expects. */
7340 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
7341 /* "__cxa_atexit" will pass the address of DECL to the
7342 cleanup function. */
7343 mark_used (decl);
7344 addr = build_address (decl);
7345 /* The declared type of the parameter to "__cxa_atexit" is
7346 "void *". For plain "T*", we could just let the
7347 machinery in cp_build_function_call convert it -- but if the
7348 type is "cv-qualified T *", then we need to convert it
7349 before passing it in, to avoid spurious errors. */
7350 addr = build_nop (ptr_type_node, addr);
7352 else
7353 /* Since the cleanup functions we build ignore the address
7354 they're given, there's no reason to pass the actual address
7355 in, and, in general, it's cheaper to pass NULL than any
7356 other value. */
7357 addr = null_pointer_node;
7359 if (dso_parm)
7360 arg2 = cp_build_addr_expr (get_dso_handle_node (),
7361 tf_warning_or_error);
7362 else if (ob_parm)
7363 /* Just pass NULL to the dso handle parm if we don't actually
7364 have a DSO handle on this target. */
7365 arg2 = null_pointer_node;
7366 else
7367 arg2 = NULL_TREE;
7369 if (ob_parm)
7371 if (!CP_DECL_THREAD_LOCAL_P (decl)
7372 && targetm.cxx.use_aeabi_atexit ())
7374 arg1 = cleanup;
7375 arg0 = addr;
7377 else
7379 arg1 = addr;
7380 arg0 = cleanup;
7383 else
7385 arg0 = cleanup;
7386 arg1 = NULL_TREE;
7388 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
7389 arg0, arg1, arg2, NULL_TREE);
7392 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
7393 is its initializer. Generate code to handle the construction
7394 and destruction of DECL. */
7396 static void
7397 expand_static_init (tree decl, tree init)
7399 gcc_assert (VAR_P (decl));
7400 gcc_assert (TREE_STATIC (decl));
7402 /* Some variables require no dynamic initialization. */
7403 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
7405 /* Make sure the destructor is callable. */
7406 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
7407 if (!init)
7408 return;
7411 if (CP_DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
7412 && !DECL_FUNCTION_SCOPE_P (decl))
7414 if (init)
7415 error ("non-local variable %qD declared %<__thread%> "
7416 "needs dynamic initialization", decl);
7417 else
7418 error ("non-local variable %qD declared %<__thread%> "
7419 "has a non-trivial destructor", decl);
7420 static bool informed;
7421 if (!informed)
7423 inform (DECL_SOURCE_LOCATION (decl),
7424 "C++11 %<thread_local%> allows dynamic initialization "
7425 "and destruction");
7426 informed = true;
7428 return;
7431 if (DECL_FUNCTION_SCOPE_P (decl))
7433 /* Emit code to perform this initialization but once. */
7434 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
7435 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
7436 tree guard, guard_addr;
7437 tree flag, begin;
7438 /* We don't need thread-safety code for thread-local vars. */
7439 bool thread_guard = (flag_threadsafe_statics
7440 && !CP_DECL_THREAD_LOCAL_P (decl));
7442 /* Emit code to perform this initialization but once. This code
7443 looks like:
7445 static <type> guard;
7446 if (!__atomic_load (guard.first_byte)) {
7447 if (__cxa_guard_acquire (&guard)) {
7448 bool flag = false;
7449 try {
7450 // Do initialization.
7451 flag = true; __cxa_guard_release (&guard);
7452 // Register variable for destruction at end of program.
7453 } catch {
7454 if (!flag) __cxa_guard_abort (&guard);
7458 Note that the `flag' variable is only set to 1 *after* the
7459 initialization is complete. This ensures that an exception,
7460 thrown during the construction, will cause the variable to
7461 reinitialized when we pass through this code again, as per:
7463 [stmt.dcl]
7465 If the initialization exits by throwing an exception, the
7466 initialization is not complete, so it will be tried again
7467 the next time control enters the declaration.
7469 This process should be thread-safe, too; multiple threads
7470 should not be able to initialize the variable more than
7471 once. */
7473 /* Create the guard variable. */
7474 guard = get_guard (decl);
7476 /* Begin the conditional initialization. */
7477 if_stmt = begin_if_stmt ();
7479 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
7480 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7482 if (thread_guard)
7484 tree vfntype = NULL_TREE;
7485 tree acquire_name, release_name, abort_name;
7486 tree acquire_fn, release_fn, abort_fn;
7487 guard_addr = build_address (guard);
7489 acquire_name = get_identifier ("__cxa_guard_acquire");
7490 release_name = get_identifier ("__cxa_guard_release");
7491 abort_name = get_identifier ("__cxa_guard_abort");
7492 acquire_fn = identifier_global_value (acquire_name);
7493 release_fn = identifier_global_value (release_name);
7494 abort_fn = identifier_global_value (abort_name);
7495 if (!acquire_fn)
7496 acquire_fn = push_library_fn
7497 (acquire_name, build_function_type_list (integer_type_node,
7498 TREE_TYPE (guard_addr),
7499 NULL_TREE),
7500 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
7501 if (!release_fn || !abort_fn)
7502 vfntype = build_function_type_list (void_type_node,
7503 TREE_TYPE (guard_addr),
7504 NULL_TREE);
7505 if (!release_fn)
7506 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
7507 ECF_NOTHROW | ECF_LEAF);
7508 if (!abort_fn)
7509 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
7510 ECF_NOTHROW | ECF_LEAF);
7512 inner_if_stmt = begin_if_stmt ();
7513 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
7514 inner_if_stmt);
7516 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7517 begin = get_target_expr (boolean_false_node);
7518 flag = TARGET_EXPR_SLOT (begin);
7520 TARGET_EXPR_CLEANUP (begin)
7521 = build3 (COND_EXPR, void_type_node, flag,
7522 void_node,
7523 build_call_n (abort_fn, 1, guard_addr));
7524 CLEANUP_EH_ONLY (begin) = 1;
7526 /* Do the initialization itself. */
7527 init = add_stmt_to_compound (begin, init);
7528 init = add_stmt_to_compound
7529 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
7530 init = add_stmt_to_compound
7531 (init, build_call_n (release_fn, 1, guard_addr));
7533 else
7534 init = add_stmt_to_compound (init, set_guard (guard));
7536 /* Use atexit to register a function for destroying this static
7537 variable. */
7538 init = add_stmt_to_compound (init, register_dtor_fn (decl));
7540 finish_expr_stmt (init);
7542 if (thread_guard)
7544 finish_compound_stmt (inner_then_clause);
7545 finish_then_clause (inner_if_stmt);
7546 finish_if_stmt (inner_if_stmt);
7549 finish_compound_stmt (then_clause);
7550 finish_then_clause (if_stmt);
7551 finish_if_stmt (if_stmt);
7553 else if (CP_DECL_THREAD_LOCAL_P (decl))
7554 tls_aggregates = tree_cons (init, decl, tls_aggregates);
7555 else
7556 static_aggregates = tree_cons (init, decl, static_aggregates);
7560 /* Make TYPE a complete type based on INITIAL_VALUE.
7561 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
7562 2 if there was no information (in which case assume 0 if DO_DEFAULT),
7563 3 if the initializer list is empty (in pedantic mode). */
7566 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
7568 int failure;
7569 tree type, elt_type;
7571 /* Don't get confused by a CONSTRUCTOR for some other type. */
7572 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
7573 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value)
7574 && TREE_CODE (TREE_TYPE (initial_value)) != ARRAY_TYPE)
7575 return 1;
7577 if (initial_value)
7579 unsigned HOST_WIDE_INT i;
7580 tree value;
7582 /* An array of character type can be initialized from a
7583 brace-enclosed string constant.
7585 FIXME: this code is duplicated from reshape_init. Probably
7586 we should just call reshape_init here? */
7587 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
7588 && TREE_CODE (initial_value) == CONSTRUCTOR
7589 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
7591 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
7592 tree value = (*v)[0].value;
7594 if (TREE_CODE (value) == STRING_CST
7595 && v->length () == 1)
7596 initial_value = value;
7599 /* If any of the elements are parameter packs, we can't actually
7600 complete this type now because the array size is dependent. */
7601 if (TREE_CODE (initial_value) == CONSTRUCTOR)
7603 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
7604 i, value)
7606 if (PACK_EXPANSION_P (value))
7607 return 0;
7612 failure = complete_array_type (ptype, initial_value, do_default);
7614 /* We can create the array before the element type is complete, which
7615 means that we didn't have these two bits set in the original type
7616 either. In completing the type, we are expected to propagate these
7617 bits. See also complete_type which does the same thing for arrays
7618 of fixed size. */
7619 type = *ptype;
7620 if (TYPE_DOMAIN (type))
7622 elt_type = TREE_TYPE (type);
7623 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
7624 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
7625 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
7628 return failure;
7631 /* As above, but either give an error or reject zero-size arrays, depending
7632 on COMPLAIN. */
7635 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
7636 bool do_default, tsubst_flags_t complain)
7638 int failure;
7639 bool sfinae = !(complain & tf_error);
7640 /* In SFINAE context we can't be lenient about zero-size arrays. */
7641 if (sfinae)
7642 ++pedantic;
7643 failure = cp_complete_array_type (ptype, initial_value, do_default);
7644 if (sfinae)
7645 --pedantic;
7646 if (failure)
7648 if (sfinae)
7649 /* Not an error. */;
7650 else if (failure == 1)
7651 error ("initializer fails to determine size of %qT", *ptype);
7652 else if (failure == 2)
7654 if (do_default)
7655 error ("array size missing in %qT", *ptype);
7657 else if (failure == 3)
7658 error ("zero-size array %qT", *ptype);
7659 *ptype = error_mark_node;
7661 return failure;
7664 /* Return zero if something is declared to be a member of type
7665 CTYPE when in the context of CUR_TYPE. STRING is the error
7666 message to print in that case. Otherwise, quietly return 1. */
7668 static int
7669 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
7671 if (ctype && ctype != cur_type)
7673 if (flags == DTOR_FLAG)
7674 error ("destructor for alien class %qT cannot be a member", ctype);
7675 else
7676 error ("constructor for alien class %qT cannot be a member", ctype);
7677 return 0;
7679 return 1;
7682 /* Subroutine of `grokdeclarator'. */
7684 /* Generate errors possibly applicable for a given set of specifiers.
7685 This is for ARM $7.1.2. */
7687 static void
7688 bad_specifiers (tree object,
7689 enum bad_spec_place type,
7690 int virtualp,
7691 int quals,
7692 int inlinep,
7693 int friendp,
7694 int raises)
7696 switch (type)
7698 case BSP_VAR:
7699 if (virtualp)
7700 error ("%qD declared as a %<virtual%> variable", object);
7701 if (inlinep)
7702 error ("%qD declared as an %<inline%> variable", object);
7703 if (quals)
7704 error ("%<const%> and %<volatile%> function specifiers on "
7705 "%qD invalid in variable declaration", object);
7706 break;
7707 case BSP_PARM:
7708 if (virtualp)
7709 error ("%qD declared as a %<virtual%> parameter", object);
7710 if (inlinep)
7711 error ("%qD declared as an %<inline%> parameter", object);
7712 if (quals)
7713 error ("%<const%> and %<volatile%> function specifiers on "
7714 "%qD invalid in parameter declaration", object);
7715 break;
7716 case BSP_TYPE:
7717 if (virtualp)
7718 error ("%qD declared as a %<virtual%> type", object);
7719 if (inlinep)
7720 error ("%qD declared as an %<inline%> type", object);
7721 if (quals)
7722 error ("%<const%> and %<volatile%> function specifiers on "
7723 "%qD invalid in type declaration", object);
7724 break;
7725 case BSP_FIELD:
7726 if (virtualp)
7727 error ("%qD declared as a %<virtual%> field", object);
7728 if (inlinep)
7729 error ("%qD declared as an %<inline%> field", object);
7730 if (quals)
7731 error ("%<const%> and %<volatile%> function specifiers on "
7732 "%qD invalid in field declaration", object);
7733 break;
7734 default:
7735 gcc_unreachable();
7737 if (friendp)
7738 error ("%q+D declared as a friend", object);
7739 if (raises
7740 && (TREE_CODE (object) == TYPE_DECL
7741 || (!TYPE_PTRFN_P (TREE_TYPE (object))
7742 && !TYPE_REFFN_P (TREE_TYPE (object))
7743 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
7744 error ("%q+D declared with an exception specification", object);
7747 /* DECL is a member function or static data member and is presently
7748 being defined. Check that the definition is taking place in a
7749 valid namespace. */
7751 static void
7752 check_class_member_definition_namespace (tree decl)
7754 /* These checks only apply to member functions and static data
7755 members. */
7756 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
7757 /* We check for problems with specializations in pt.c in
7758 check_specialization_namespace, where we can issue better
7759 diagnostics. */
7760 if (processing_specialization)
7761 return;
7762 /* There are no restrictions on the placement of
7763 explicit instantiations. */
7764 if (processing_explicit_instantiation)
7765 return;
7766 /* [class.mfct]
7768 A member function definition that appears outside of the
7769 class definition shall appear in a namespace scope enclosing
7770 the class definition.
7772 [class.static.data]
7774 The definition for a static data member shall appear in a
7775 namespace scope enclosing the member's class definition. */
7776 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
7777 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
7778 decl, DECL_CONTEXT (decl));
7781 /* Build a PARM_DECL for the "this" parameter. TYPE is the
7782 METHOD_TYPE for a non-static member function; QUALS are the
7783 cv-qualifiers that apply to the function. */
7785 tree
7786 build_this_parm (tree type, cp_cv_quals quals)
7788 tree this_type;
7789 tree qual_type;
7790 tree parm;
7791 cp_cv_quals this_quals;
7793 if (CLASS_TYPE_P (type))
7795 this_type
7796 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
7797 this_type = build_pointer_type (this_type);
7799 else
7800 this_type = type_of_this_parm (type);
7801 /* The `this' parameter is implicitly `const'; it cannot be
7802 assigned to. */
7803 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
7804 qual_type = cp_build_qualified_type (this_type, this_quals);
7805 parm = build_artificial_parm (this_identifier, qual_type);
7806 cp_apply_type_quals_to_decl (this_quals, parm);
7807 return parm;
7810 /* DECL is a static member function. Complain if it was declared
7811 with function-cv-quals. */
7813 static void
7814 check_static_quals (tree decl, cp_cv_quals quals)
7816 if (quals != TYPE_UNQUALIFIED)
7817 error ("static member function %q#D declared with type qualifiers",
7818 decl);
7821 // Check that FN takes no arguments and returns bool.
7822 static void
7823 check_concept_fn (tree fn)
7825 // A constraint is nullary.
7826 if (DECL_ARGUMENTS (fn))
7827 error ("concept %q#D declared with function parameters", fn);
7829 // The declared return type of the concept shall be bool, and
7830 // it shall not be deduced from it definition.
7831 tree type = TREE_TYPE (TREE_TYPE (fn));
7832 if (is_auto (type))
7833 error ("concept %q#D declared with a deduced return type", fn);
7834 else if (type != boolean_type_node)
7835 error ("concept %q#D with non-%<bool%> return type %qT", fn, type);
7838 /* Helper function. Replace the temporary this parameter injected
7839 during cp_finish_omp_declare_simd with the real this parameter. */
7841 static tree
7842 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
7844 tree this_parm = (tree) data;
7845 if (TREE_CODE (*tp) == PARM_DECL
7846 && DECL_NAME (*tp) == this_identifier
7847 && *tp != this_parm)
7848 *tp = this_parm;
7849 else if (TYPE_P (*tp))
7850 *walk_subtrees = 0;
7851 return NULL_TREE;
7854 /* CTYPE is class type, or null if non-class.
7855 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
7856 or METHOD_TYPE.
7857 DECLARATOR is the function's name.
7858 PARMS is a chain of PARM_DECLs for the function.
7859 VIRTUALP is truthvalue of whether the function is virtual or not.
7860 FLAGS are to be passed through to `grokclassfn'.
7861 QUALS are qualifiers indicating whether the function is `const'
7862 or `volatile'.
7863 RAISES is a list of exceptions that this function can raise.
7864 CHECK is 1 if we must find this method in CTYPE, 0 if we should
7865 not look, and -1 if we should not call `grokclassfn' at all.
7867 SFK is the kind of special function (if any) for the new function.
7869 Returns `NULL_TREE' if something goes wrong, after issuing
7870 applicable error messages. */
7872 static tree
7873 grokfndecl (tree ctype,
7874 tree type,
7875 tree declarator,
7876 tree parms,
7877 tree orig_declarator,
7878 tree decl_reqs,
7879 int virtualp,
7880 enum overload_flags flags,
7881 cp_cv_quals quals,
7882 cp_ref_qualifier rqual,
7883 tree raises,
7884 int check,
7885 int friendp,
7886 int publicp,
7887 int inlinep,
7888 bool deletedp,
7889 special_function_kind sfk,
7890 bool funcdef_flag,
7891 int template_count,
7892 tree in_namespace,
7893 tree* attrlist,
7894 location_t location)
7896 tree decl;
7897 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
7898 tree t;
7900 // Was the concept specifier present?
7901 bool concept_p = inlinep & 4;
7903 // Concept declarations must have a corresponding definition.
7904 if (concept_p && !funcdef_flag)
7906 error ("concept %qD has no definition", declarator);
7907 return NULL_TREE;
7910 if (rqual)
7911 type = build_ref_qualified_type (type, rqual);
7912 if (raises)
7913 type = build_exception_variant (type, raises);
7915 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
7917 /* Set the constraints on the declaration. */
7918 if (flag_concepts)
7920 tree tmpl_reqs = NULL_TREE;
7921 if (processing_template_decl > template_class_depth (ctype))
7922 tmpl_reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
7924 /* Adjust the required expression into a constraint. */
7925 if (decl_reqs)
7926 decl_reqs = normalize_expression (decl_reqs);
7928 tree ci = build_constraints (tmpl_reqs, decl_reqs);
7929 set_constraints (decl, ci);
7932 /* If we have an explicit location, use it, otherwise use whatever
7933 build_lang_decl used (probably input_location). */
7934 if (location != UNKNOWN_LOCATION)
7935 DECL_SOURCE_LOCATION (decl) = location;
7937 if (TREE_CODE (type) == METHOD_TYPE)
7939 tree parm;
7940 parm = build_this_parm (type, quals);
7941 DECL_CHAIN (parm) = parms;
7942 parms = parm;
7944 /* Allocate space to hold the vptr bit if needed. */
7945 SET_DECL_ALIGN (decl, MINIMUM_METHOD_BOUNDARY);
7947 DECL_ARGUMENTS (decl) = parms;
7948 for (t = parms; t; t = DECL_CHAIN (t))
7949 DECL_CONTEXT (t) = decl;
7950 /* Propagate volatile out from type to decl. */
7951 if (TYPE_VOLATILE (type))
7952 TREE_THIS_VOLATILE (decl) = 1;
7954 /* Setup decl according to sfk. */
7955 switch (sfk)
7957 case sfk_constructor:
7958 case sfk_copy_constructor:
7959 case sfk_move_constructor:
7960 DECL_CONSTRUCTOR_P (decl) = 1;
7961 break;
7962 case sfk_destructor:
7963 DECL_DESTRUCTOR_P (decl) = 1;
7964 break;
7965 default:
7966 break;
7969 if (friendp
7970 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
7972 if (funcdef_flag)
7973 error
7974 ("defining explicit specialization %qD in friend declaration",
7975 orig_declarator);
7976 else
7978 tree fns = TREE_OPERAND (orig_declarator, 0);
7979 tree args = TREE_OPERAND (orig_declarator, 1);
7981 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
7983 /* Something like `template <class T> friend void f<T>()'. */
7984 error ("invalid use of template-id %qD in declaration "
7985 "of primary template",
7986 orig_declarator);
7987 return NULL_TREE;
7991 /* A friend declaration of the form friend void f<>(). Record
7992 the information in the TEMPLATE_ID_EXPR. */
7993 SET_DECL_IMPLICIT_INSTANTIATION (decl);
7995 gcc_assert (identifier_p (fns) || TREE_CODE (fns) == OVERLOAD);
7996 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
7998 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
7999 if (TREE_PURPOSE (t)
8000 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
8002 error ("default arguments are not allowed in declaration "
8003 "of friend template specialization %qD",
8004 decl);
8005 return NULL_TREE;
8008 if (inlinep & 1)
8010 error ("%<inline%> is not allowed in declaration of friend "
8011 "template specialization %qD",
8012 decl);
8013 return NULL_TREE;
8018 /* If this decl has namespace scope, set that up. */
8019 if (in_namespace)
8020 set_decl_namespace (decl, in_namespace, friendp);
8021 else if (!ctype)
8022 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
8024 /* `main' and builtins have implicit 'C' linkage. */
8025 if ((MAIN_NAME_P (declarator)
8026 || (IDENTIFIER_LENGTH (declarator) > 10
8027 && IDENTIFIER_POINTER (declarator)[0] == '_'
8028 && IDENTIFIER_POINTER (declarator)[1] == '_'
8029 && strncmp (IDENTIFIER_POINTER (declarator)+2, "builtin_", 8) == 0)
8030 || (targetcm.cxx_implicit_extern_c
8031 && targetcm.cxx_implicit_extern_c(IDENTIFIER_POINTER (declarator))))
8032 && current_lang_name == lang_name_cplusplus
8033 && ctype == NULL_TREE
8034 && DECL_FILE_SCOPE_P (decl))
8035 SET_DECL_LANGUAGE (decl, lang_c);
8037 /* Should probably propagate const out from type to decl I bet (mrs). */
8038 if (staticp)
8040 DECL_STATIC_FUNCTION_P (decl) = 1;
8041 DECL_CONTEXT (decl) = ctype;
8044 if (deletedp)
8045 DECL_DELETED_FN (decl) = 1;
8047 if (ctype)
8049 DECL_CONTEXT (decl) = ctype;
8050 if (funcdef_flag)
8051 check_class_member_definition_namespace (decl);
8054 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8056 if (PROCESSING_REAL_TEMPLATE_DECL_P())
8057 error ("cannot declare %<::main%> to be a template");
8058 if (inlinep & 1)
8059 error ("cannot declare %<::main%> to be inline");
8060 if (inlinep & 2)
8061 error ("cannot declare %<::main%> to be constexpr");
8062 if (!publicp)
8063 error ("cannot declare %<::main%> to be static");
8064 inlinep = 0;
8065 publicp = 1;
8068 /* Members of anonymous types and local classes have no linkage; make
8069 them internal. If a typedef is made later, this will be changed. */
8070 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
8071 || decl_function_context (TYPE_MAIN_DECL (ctype))))
8072 publicp = 0;
8074 if (publicp && cxx_dialect == cxx98)
8076 /* [basic.link]: A name with no linkage (notably, the name of a class
8077 or enumeration declared in a local scope) shall not be used to
8078 declare an entity with linkage.
8080 DR 757 relaxes this restriction for C++0x. */
8081 no_linkage_error (decl);
8084 TREE_PUBLIC (decl) = publicp;
8085 if (! publicp)
8087 DECL_INTERFACE_KNOWN (decl) = 1;
8088 DECL_NOT_REALLY_EXTERN (decl) = 1;
8091 /* If the declaration was declared inline, mark it as such. */
8092 if (inlinep)
8094 DECL_DECLARED_INLINE_P (decl) = 1;
8095 if (publicp)
8096 DECL_COMDAT (decl) = 1;
8098 if (inlinep & 2)
8099 DECL_DECLARED_CONSTEXPR_P (decl) = true;
8101 // If the concept declaration specifier was found, check
8102 // that the declaration satisfies the necessary requirements.
8103 if (concept_p)
8105 DECL_DECLARED_CONCEPT_P (decl) = true;
8106 check_concept_fn (decl);
8109 DECL_EXTERNAL (decl) = 1;
8110 if (TREE_CODE (type) == FUNCTION_TYPE)
8112 if (quals || rqual)
8113 TREE_TYPE (decl) = apply_memfn_quals (TREE_TYPE (decl),
8114 TYPE_UNQUALIFIED,
8115 REF_QUAL_NONE);
8117 if (quals)
8119 error (ctype
8120 ? G_("static member function %qD cannot have cv-qualifier")
8121 : G_("non-member function %qD cannot have cv-qualifier"),
8122 decl);
8123 quals = TYPE_UNQUALIFIED;
8126 if (rqual)
8128 error (ctype
8129 ? G_("static member function %qD cannot have ref-qualifier")
8130 : G_("non-member function %qD cannot have ref-qualifier"),
8131 decl);
8132 rqual = REF_QUAL_NONE;
8136 if (IDENTIFIER_OPNAME_P (DECL_NAME (decl))
8137 && !grok_op_properties (decl, /*complain=*/true))
8138 return NULL_TREE;
8139 else if (UDLIT_OPER_P (DECL_NAME (decl)))
8141 bool long_long_unsigned_p;
8142 bool long_double_p;
8143 const char *suffix = NULL;
8144 /* [over.literal]/6: Literal operators shall not have C linkage. */
8145 if (DECL_LANGUAGE (decl) == lang_c)
8147 error ("literal operator with C linkage");
8148 return NULL_TREE;
8151 if (DECL_NAMESPACE_SCOPE_P (decl))
8153 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
8154 &long_double_p))
8156 error ("%qD has invalid argument list", decl);
8157 return NULL_TREE;
8160 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
8161 if (long_long_unsigned_p)
8163 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
8164 warning (0, "integer suffix %<%s%>"
8165 " shadowed by implementation", suffix);
8167 else if (long_double_p)
8169 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
8170 warning (0, "floating point suffix %<%s%>"
8171 " shadowed by implementation", suffix);
8174 else
8176 error ("%qD must be a non-member function", decl);
8177 return NULL_TREE;
8181 if (funcdef_flag)
8182 /* Make the init_value nonzero so pushdecl knows this is not
8183 tentative. error_mark_node is replaced later with the BLOCK. */
8184 DECL_INITIAL (decl) = error_mark_node;
8186 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
8187 TREE_NOTHROW (decl) = 1;
8189 if (flag_openmp || flag_openmp_simd || flag_cilkplus)
8191 /* Adjust "omp declare simd" attributes. */
8192 tree ods = lookup_attribute ("omp declare simd", *attrlist);
8193 if (ods)
8195 tree attr;
8196 for (attr = ods; attr;
8197 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
8199 if (TREE_CODE (type) == METHOD_TYPE)
8200 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
8201 DECL_ARGUMENTS (decl), NULL);
8202 if (TREE_VALUE (attr) != NULL_TREE)
8204 tree cl = TREE_VALUE (TREE_VALUE (attr));
8205 cl = c_omp_declare_simd_clauses_to_numbers
8206 (DECL_ARGUMENTS (decl), cl);
8207 if (cl)
8208 TREE_VALUE (TREE_VALUE (attr)) = cl;
8209 else
8210 TREE_VALUE (attr) = NULL_TREE;
8216 /* Caller will do the rest of this. */
8217 if (check < 0)
8218 return decl;
8220 if (ctype != NULL_TREE)
8221 grokclassfn (ctype, decl, flags);
8223 /* 12.4/3 */
8224 if (cxx_dialect >= cxx11
8225 && DECL_DESTRUCTOR_P (decl)
8226 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
8227 && !processing_template_decl)
8228 deduce_noexcept_on_destructor (decl);
8230 decl = check_explicit_specialization (orig_declarator, decl,
8231 template_count,
8232 2 * funcdef_flag +
8233 4 * (friendp != 0) +
8234 8 * concept_p);
8235 if (decl == error_mark_node)
8236 return NULL_TREE;
8238 if (DECL_STATIC_FUNCTION_P (decl))
8239 check_static_quals (decl, quals);
8241 if (attrlist)
8243 cplus_decl_attributes (&decl, *attrlist, 0);
8244 *attrlist = NULL_TREE;
8247 /* Check main's type after attributes have been applied. */
8248 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8250 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
8251 integer_type_node))
8253 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
8254 tree newtype;
8255 error ("%<::main%> must return %<int%>");
8256 newtype = build_function_type (integer_type_node, oldtypeargs);
8257 TREE_TYPE (decl) = newtype;
8259 if (warn_main)
8260 check_main_parameter_types (decl);
8263 if (ctype != NULL_TREE
8264 && (! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
8265 && check)
8267 tree old_decl = check_classfn (ctype, decl,
8268 (processing_template_decl
8269 > template_class_depth (ctype))
8270 ? current_template_parms
8271 : NULL_TREE);
8273 if (old_decl == error_mark_node)
8274 return NULL_TREE;
8276 if (old_decl)
8278 tree ok;
8279 tree pushed_scope;
8281 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
8282 /* Because grokfndecl is always supposed to return a
8283 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
8284 here. We depend on our callers to figure out that its
8285 really a template that's being returned. */
8286 old_decl = DECL_TEMPLATE_RESULT (old_decl);
8288 if (DECL_STATIC_FUNCTION_P (old_decl)
8289 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
8291 /* Remove the `this' parm added by grokclassfn. */
8292 revert_static_member_fn (decl);
8293 check_static_quals (decl, quals);
8295 if (DECL_ARTIFICIAL (old_decl))
8297 error ("definition of implicitly-declared %qD", old_decl);
8298 return NULL_TREE;
8300 else if (DECL_DEFAULTED_FN (old_decl))
8302 error ("definition of explicitly-defaulted %q+D", decl);
8303 inform (DECL_SOURCE_LOCATION (old_decl),
8304 "%q#D explicitly defaulted here", old_decl);
8305 return NULL_TREE;
8308 /* Since we've smashed OLD_DECL to its
8309 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
8310 if (TREE_CODE (decl) == TEMPLATE_DECL)
8311 decl = DECL_TEMPLATE_RESULT (decl);
8313 /* Attempt to merge the declarations. This can fail, in
8314 the case of some invalid specialization declarations. */
8315 pushed_scope = push_scope (ctype);
8316 ok = duplicate_decls (decl, old_decl, friendp);
8317 if (pushed_scope)
8318 pop_scope (pushed_scope);
8319 if (!ok)
8321 error ("no %q#D member function declared in class %qT",
8322 decl, ctype);
8323 return NULL_TREE;
8325 if (ok == error_mark_node)
8326 return NULL_TREE;
8327 return old_decl;
8331 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
8332 return NULL_TREE;
8334 if (ctype == NULL_TREE || check)
8335 return decl;
8337 if (virtualp)
8338 DECL_VIRTUAL_P (decl) = 1;
8340 return decl;
8343 /* decl is a FUNCTION_DECL.
8344 specifiers are the parsed virt-specifiers.
8346 Set flags to reflect the virt-specifiers.
8348 Returns decl. */
8350 static tree
8351 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
8353 if (decl == NULL_TREE)
8354 return decl;
8355 if (specifiers & VIRT_SPEC_OVERRIDE)
8356 DECL_OVERRIDE_P (decl) = 1;
8357 if (specifiers & VIRT_SPEC_FINAL)
8358 DECL_FINAL_P (decl) = 1;
8359 return decl;
8362 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
8363 the linkage that DECL will receive in the object file. */
8365 static void
8366 set_linkage_for_static_data_member (tree decl)
8368 /* A static data member always has static storage duration and
8369 external linkage. Note that static data members are forbidden in
8370 local classes -- the only situation in which a class has
8371 non-external linkage. */
8372 TREE_PUBLIC (decl) = 1;
8373 TREE_STATIC (decl) = 1;
8374 /* For non-template classes, static data members are always put
8375 out in exactly those files where they are defined, just as
8376 with ordinary namespace-scope variables. */
8377 if (!processing_template_decl)
8378 DECL_INTERFACE_KNOWN (decl) = 1;
8381 /* Create a VAR_DECL named NAME with the indicated TYPE.
8383 If SCOPE is non-NULL, it is the class type or namespace containing
8384 the variable. If SCOPE is NULL, the variable should is created in
8385 the innermost enclosing scope. */
8387 static tree
8388 grokvardecl (tree type,
8389 tree name,
8390 tree orig_declarator,
8391 const cp_decl_specifier_seq *declspecs,
8392 int initialized,
8393 int flags,
8394 int template_count,
8395 tree scope)
8397 tree decl;
8398 tree explicit_scope;
8400 gcc_assert (!name || identifier_p (name));
8402 bool constp = flags&1;
8403 bool conceptp = flags&2;
8405 /* Compute the scope in which to place the variable, but remember
8406 whether or not that scope was explicitly specified by the user. */
8407 explicit_scope = scope;
8408 if (!scope)
8410 /* An explicit "extern" specifier indicates a namespace-scope
8411 variable. */
8412 if (declspecs->storage_class == sc_extern)
8413 scope = current_decl_namespace ();
8414 else if (!at_function_scope_p ())
8415 scope = current_scope ();
8418 if (scope
8419 && (/* If the variable is a namespace-scope variable declared in a
8420 template, we need DECL_LANG_SPECIFIC. */
8421 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
8422 /* Similarly for namespace-scope variables with language linkage
8423 other than C++. */
8424 || (TREE_CODE (scope) == NAMESPACE_DECL
8425 && current_lang_name != lang_name_cplusplus)
8426 /* Similarly for static data members. */
8427 || TYPE_P (scope)
8428 /* Similarly for explicit specializations. */
8429 || (orig_declarator
8430 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
8431 decl = build_lang_decl (VAR_DECL, name, type);
8432 else
8433 decl = build_decl (input_location, VAR_DECL, name, type);
8435 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
8436 set_decl_namespace (decl, explicit_scope, 0);
8437 else
8438 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
8440 if (declspecs->storage_class == sc_extern)
8442 DECL_THIS_EXTERN (decl) = 1;
8443 DECL_EXTERNAL (decl) = !initialized;
8446 if (DECL_CLASS_SCOPE_P (decl))
8448 set_linkage_for_static_data_member (decl);
8449 /* This function is only called with out-of-class definitions. */
8450 DECL_EXTERNAL (decl) = 0;
8451 check_class_member_definition_namespace (decl);
8453 /* At top level, either `static' or no s.c. makes a definition
8454 (perhaps tentative), and absence of `static' makes it public. */
8455 else if (toplevel_bindings_p ())
8457 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
8458 && (DECL_THIS_EXTERN (decl) || ! constp));
8459 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
8461 /* Not at top level, only `static' makes a static definition. */
8462 else
8464 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
8465 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
8468 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
8470 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
8472 CP_DECL_THREAD_LOCAL_P (decl) = true;
8473 if (!processing_template_decl)
8474 set_decl_tls_model (decl, decl_default_tls_model (decl));
8476 if (declspecs->gnu_thread_keyword_p)
8477 SET_DECL_GNU_TLS_P (decl);
8480 /* If the type of the decl has no linkage, make sure that we'll
8481 notice that in mark_used. */
8482 if (cxx_dialect > cxx98
8483 && decl_linkage (decl) != lk_none
8484 && DECL_LANG_SPECIFIC (decl) == NULL
8485 && !DECL_EXTERN_C_P (decl)
8486 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
8487 retrofit_lang_decl (decl);
8489 if (TREE_PUBLIC (decl))
8491 /* [basic.link]: A name with no linkage (notably, the name of a class
8492 or enumeration declared in a local scope) shall not be used to
8493 declare an entity with linkage.
8495 DR 757 relaxes this restriction for C++0x. */
8496 if (cxx_dialect < cxx11)
8497 no_linkage_error (decl);
8499 else
8500 DECL_INTERFACE_KNOWN (decl) = 1;
8502 if (DECL_NAME (decl)
8503 && MAIN_NAME_P (DECL_NAME (decl))
8504 && scope == global_namespace)
8505 error ("cannot declare %<::main%> to be a global variable");
8507 /* Check that the variable can be safely declared as a concept.
8508 Note that this also forbids explicit specializations. */
8509 if (conceptp)
8511 if (!processing_template_decl)
8513 error ("a non-template variable cannot be %<concept%>");
8514 return NULL_TREE;
8516 else
8517 DECL_DECLARED_CONCEPT_P (decl) = true;
8518 if (!same_type_ignoring_top_level_qualifiers_p (type, boolean_type_node))
8519 error_at (declspecs->locations[ds_type_spec],
8520 "concept must have type %<bool%>");
8522 else if (flag_concepts
8523 && processing_template_decl > template_class_depth (scope))
8525 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
8526 tree ci = build_constraints (reqs, NULL_TREE);
8527 set_constraints (decl, ci);
8530 // Handle explicit specializations and instantiations of variable templates.
8531 if (orig_declarator)
8532 decl = check_explicit_specialization (orig_declarator, decl,
8533 template_count, conceptp * 8);
8535 return decl != error_mark_node ? decl : NULL_TREE;
8538 /* Create and return a canonical pointer to member function type, for
8539 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
8541 tree
8542 build_ptrmemfunc_type (tree type)
8544 tree field, fields;
8545 tree t;
8547 if (type == error_mark_node)
8548 return type;
8550 /* Make sure that we always have the unqualified pointer-to-member
8551 type first. */
8552 if (cp_cv_quals quals = cp_type_quals (type))
8554 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
8555 return cp_build_qualified_type (unqual, quals);
8558 /* If a canonical type already exists for this type, use it. We use
8559 this method instead of type_hash_canon, because it only does a
8560 simple equality check on the list of field members. */
8562 if ((t = TYPE_GET_PTRMEMFUNC_TYPE (type)))
8563 return t;
8565 t = make_node (RECORD_TYPE);
8567 /* Let the front end know this is a pointer to member function. */
8568 TYPE_PTRMEMFUNC_FLAG (t) = 1;
8570 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
8571 fields = field;
8573 field = build_decl (input_location, FIELD_DECL, delta_identifier,
8574 delta_type_node);
8575 DECL_CHAIN (field) = fields;
8576 fields = field;
8578 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
8580 /* Zap out the name so that the back end will give us the debugging
8581 information for this anonymous RECORD_TYPE. */
8582 TYPE_NAME (t) = NULL_TREE;
8584 /* Cache this pointer-to-member type so that we can find it again
8585 later. */
8586 TYPE_SET_PTRMEMFUNC_TYPE (type, t);
8588 if (TYPE_STRUCTURAL_EQUALITY_P (type))
8589 SET_TYPE_STRUCTURAL_EQUALITY (t);
8590 else if (TYPE_CANONICAL (type) != type)
8591 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
8593 return t;
8596 /* Create and return a pointer to data member type. */
8598 tree
8599 build_ptrmem_type (tree class_type, tree member_type)
8601 if (TREE_CODE (member_type) == METHOD_TYPE)
8603 cp_cv_quals quals = type_memfn_quals (member_type);
8604 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
8605 member_type = build_memfn_type (member_type, class_type, quals, rqual);
8606 return build_ptrmemfunc_type (build_pointer_type (member_type));
8608 else
8610 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
8611 return build_offset_type (class_type, member_type);
8615 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
8616 Check to see that the definition is valid. Issue appropriate error
8617 messages. Return 1 if the definition is particularly bad, or 0
8618 otherwise. */
8620 static int
8621 check_static_variable_definition (tree decl, tree type)
8623 /* Avoid redundant diagnostics on out-of-class definitions. */
8624 if (!current_class_type || !TYPE_BEING_DEFINED (current_class_type))
8625 return 0;
8626 /* Can't check yet if we don't know the type. */
8627 if (dependent_type_p (type))
8628 return 0;
8629 /* If DECL is declared constexpr, we'll do the appropriate checks
8630 in check_initializer. */
8631 if (DECL_P (decl) && DECL_DECLARED_CONSTEXPR_P (decl))
8632 return 0;
8633 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8635 if (!COMPLETE_TYPE_P (type))
8636 error_at (DECL_SOURCE_LOCATION (decl),
8637 "in-class initialization of static data member %q#D of "
8638 "incomplete type", decl);
8639 else if (literal_type_p (type))
8640 permerror (DECL_SOURCE_LOCATION (decl),
8641 "%<constexpr%> needed for in-class initialization of "
8642 "static data member %q#D of non-integral type", decl);
8643 else
8644 error_at (DECL_SOURCE_LOCATION (decl),
8645 "in-class initialization of static data member %q#D of "
8646 "non-literal type", decl);
8647 return 1;
8650 /* Motion 10 at San Diego: If a static const integral data member is
8651 initialized with an integral constant expression, the initializer
8652 may appear either in the declaration (within the class), or in
8653 the definition, but not both. If it appears in the class, the
8654 member is a member constant. The file-scope definition is always
8655 required. */
8656 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
8658 error_at (DECL_SOURCE_LOCATION (decl),
8659 "invalid in-class initialization of static data member "
8660 "of non-integral type %qT",
8661 type);
8662 return 1;
8664 else if (!CP_TYPE_CONST_P (type))
8665 error_at (DECL_SOURCE_LOCATION (decl),
8666 "ISO C++ forbids in-class initialization of non-const "
8667 "static member %qD",
8668 decl);
8669 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8670 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
8671 "ISO C++ forbids initialization of member constant "
8672 "%qD of non-integral type %qT", decl, type);
8674 return 0;
8677 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
8678 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
8679 expressions out into temporary variables so that walk_tree doesn't
8680 step into them (c++/15764). */
8682 static tree
8683 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
8685 hash_set<tree> *pset = (hash_set<tree> *)data;
8686 tree expr = *expr_p;
8687 if (TREE_CODE (expr) == SAVE_EXPR)
8689 tree op = TREE_OPERAND (expr, 0);
8690 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
8691 if (TREE_SIDE_EFFECTS (op))
8692 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
8693 *walk_subtrees = 0;
8695 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
8696 *walk_subtrees = 0;
8697 return NULL;
8700 /* Entry point for the above. */
8702 static void
8703 stabilize_vla_size (tree size)
8705 hash_set<tree> pset;
8706 /* Break out any function calls into temporary variables. */
8707 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
8710 /* Reduce a SIZEOF_EXPR to its value. */
8712 tree
8713 fold_sizeof_expr (tree t)
8715 tree r;
8716 if (SIZEOF_EXPR_TYPE_P (t))
8717 r = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (t, 0)),
8718 SIZEOF_EXPR, false);
8719 else if (TYPE_P (TREE_OPERAND (t, 0)))
8720 r = cxx_sizeof_or_alignof_type (TREE_OPERAND (t, 0), SIZEOF_EXPR,
8721 false);
8722 else
8723 r = cxx_sizeof_or_alignof_expr (TREE_OPERAND (t, 0), SIZEOF_EXPR,
8724 false);
8725 if (r == error_mark_node)
8726 r = size_one_node;
8727 return r;
8730 /* Given the SIZE (i.e., number of elements) in an array, compute
8731 an appropriate index type for the array. If non-NULL, NAME is
8732 the name of the entity being declared. */
8734 tree
8735 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
8737 tree itype;
8738 tree osize = size;
8740 if (error_operand_p (size))
8741 return error_mark_node;
8743 if (!type_dependent_expression_p (size))
8745 tree type = TREE_TYPE (size);
8747 mark_rvalue_use (size);
8749 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
8750 && TREE_SIDE_EFFECTS (size))
8751 /* In C++98, we mark a non-constant array bound with a magic
8752 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
8753 else
8755 size = instantiate_non_dependent_expr_sfinae (size, complain);
8757 if (CLASS_TYPE_P (type)
8758 && CLASSTYPE_LITERAL_P (type))
8760 size = build_expr_type_conversion (WANT_INT, size, true);
8761 if (!size)
8763 if (!(complain & tf_error))
8764 return error_mark_node;
8765 if (name)
8766 error ("size of array %qD has non-integral type %qT",
8767 name, type);
8768 else
8769 error ("size of array has non-integral type %qT", type);
8770 size = integer_one_node;
8772 if (size == error_mark_node)
8773 return error_mark_node;
8774 type = TREE_TYPE (size);
8777 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8778 size = maybe_constant_value (size);
8780 if (!TREE_CONSTANT (size))
8781 size = osize;
8784 if (error_operand_p (size))
8785 return error_mark_node;
8787 /* The array bound must be an integer type. */
8788 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8790 if (!(complain & tf_error))
8791 return error_mark_node;
8792 if (name)
8793 error ("size of array %qD has non-integral type %qT", name, type);
8794 else
8795 error ("size of array has non-integral type %qT", type);
8796 size = integer_one_node;
8797 type = TREE_TYPE (size);
8801 /* A type is dependent if it is...an array type constructed from any
8802 dependent type or whose size is specified by a constant expression
8803 that is value-dependent. */
8804 /* We can only call value_dependent_expression_p on integral constant
8805 expressions; treat non-constant expressions as dependent, too. */
8806 if (processing_template_decl
8807 && (type_dependent_expression_p (size)
8808 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
8810 /* We cannot do any checking for a SIZE that isn't known to be
8811 constant. Just build the index type and mark that it requires
8812 structural equality checks. */
8813 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
8814 size, size_one_node));
8815 TYPE_DEPENDENT_P (itype) = 1;
8816 TYPE_DEPENDENT_P_VALID (itype) = 1;
8817 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8818 return itype;
8821 if (TREE_CODE (size) != INTEGER_CST)
8823 tree folded = cp_fully_fold (size);
8824 if (TREE_CODE (folded) == INTEGER_CST)
8825 pedwarn (location_of (size), OPT_Wpedantic,
8826 "size of array is not an integral constant-expression");
8827 /* Use the folded result for VLAs, too; it will have resolved
8828 SIZEOF_EXPR. */
8829 size = folded;
8832 /* Normally, the array-bound will be a constant. */
8833 if (TREE_CODE (size) == INTEGER_CST)
8835 /* Check to see if the array bound overflowed. Make that an
8836 error, no matter how generous we're being. */
8837 constant_expression_error (size);
8839 /* An array must have a positive number of elements. */
8840 if (tree_int_cst_lt (size, integer_zero_node))
8842 if (!(complain & tf_error))
8843 return error_mark_node;
8844 if (name)
8845 error ("size of array %qD is negative", name);
8846 else
8847 error ("size of array is negative");
8848 size = integer_one_node;
8850 /* As an extension we allow zero-sized arrays. */
8851 else if (integer_zerop (size))
8853 if (!(complain & tf_error))
8854 /* We must fail if performing argument deduction (as
8855 indicated by the state of complain), so that
8856 another substitution can be found. */
8857 return error_mark_node;
8858 else if (in_system_header_at (input_location))
8859 /* Allow them in system headers because glibc uses them. */;
8860 else if (name)
8861 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array %qD", name);
8862 else
8863 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array");
8866 else if (TREE_CONSTANT (size)
8867 /* We don't allow VLAs at non-function scopes, or during
8868 tentative template substitution. */
8869 || !at_function_scope_p ()
8870 || !(complain & tf_error))
8872 if (!(complain & tf_error))
8873 return error_mark_node;
8874 /* `(int) &fn' is not a valid array bound. */
8875 if (name)
8876 error ("size of array %qD is not an integral constant-expression",
8877 name);
8878 else
8879 error ("size of array is not an integral constant-expression");
8880 size = integer_one_node;
8882 else if (pedantic && warn_vla != 0)
8884 if (name)
8885 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array %qD", name);
8886 else
8887 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array");
8889 else if (warn_vla > 0)
8891 if (name)
8892 warning (OPT_Wvla,
8893 "variable length array %qD is used", name);
8894 else
8895 warning (OPT_Wvla,
8896 "variable length array is used");
8899 if (processing_template_decl && !TREE_CONSTANT (size))
8900 /* A variable sized array. */
8901 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
8902 else
8904 HOST_WIDE_INT saved_processing_template_decl;
8906 /* Compute the index of the largest element in the array. It is
8907 one less than the number of elements in the array. We save
8908 and restore PROCESSING_TEMPLATE_DECL so that computations in
8909 cp_build_binary_op will be appropriately folded. */
8910 saved_processing_template_decl = processing_template_decl;
8911 processing_template_decl = 0;
8912 itype = cp_build_binary_op (input_location,
8913 MINUS_EXPR,
8914 cp_convert (ssizetype, size, complain),
8915 cp_convert (ssizetype, integer_one_node,
8916 complain),
8917 complain);
8918 itype = maybe_constant_value (itype);
8919 processing_template_decl = saved_processing_template_decl;
8921 if (!TREE_CONSTANT (itype))
8923 /* A variable sized array. */
8924 itype = variable_size (itype);
8926 stabilize_vla_size (itype);
8928 if (flag_sanitize & SANITIZE_VLA
8929 && do_ubsan_in_current_function ())
8931 /* We have to add 1 -- in the ubsan routine we generate
8932 LE_EXPR rather than LT_EXPR. */
8933 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
8934 build_one_cst (TREE_TYPE (itype)));
8935 t = ubsan_instrument_vla (input_location, t);
8936 finish_expr_stmt (t);
8939 /* Make sure that there was no overflow when creating to a signed
8940 index type. (For example, on a 32-bit machine, an array with
8941 size 2^32 - 1 is too big.) */
8942 else if (TREE_CODE (itype) == INTEGER_CST
8943 && TREE_OVERFLOW (itype))
8945 if (!(complain & tf_error))
8946 return error_mark_node;
8947 error ("overflow in array dimension");
8948 TREE_OVERFLOW (itype) = 0;
8952 /* Create and return the appropriate index type. */
8953 itype = build_index_type (itype);
8955 /* If the index type were dependent, we would have returned early, so
8956 remember that it isn't. */
8957 TYPE_DEPENDENT_P (itype) = 0;
8958 TYPE_DEPENDENT_P_VALID (itype) = 1;
8959 return itype;
8962 /* Returns the scope (if any) in which the entity declared by
8963 DECLARATOR will be located. If the entity was declared with an
8964 unqualified name, NULL_TREE is returned. */
8966 tree
8967 get_scope_of_declarator (const cp_declarator *declarator)
8969 while (declarator && declarator->kind != cdk_id)
8970 declarator = declarator->declarator;
8972 /* If the declarator-id is a SCOPE_REF, the scope in which the
8973 declaration occurs is the first operand. */
8974 if (declarator
8975 && declarator->u.id.qualifying_scope)
8976 return declarator->u.id.qualifying_scope;
8978 /* Otherwise, the declarator is not a qualified name; the entity will
8979 be declared in the current scope. */
8980 return NULL_TREE;
8983 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
8984 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
8985 with this type. */
8987 static tree
8988 create_array_type_for_decl (tree name, tree type, tree size)
8990 tree itype = NULL_TREE;
8992 /* If things have already gone awry, bail now. */
8993 if (type == error_mark_node || size == error_mark_node)
8994 return error_mark_node;
8996 /* 8.3.4/1: If the type of the identifier of D contains the auto
8997 type-specifier, the program is ill-formed. */
8998 if (type_uses_auto (type))
9000 error ("%qD declared as array of %qT", name, type);
9001 return error_mark_node;
9004 /* If there are some types which cannot be array elements,
9005 issue an error-message and return. */
9006 switch (TREE_CODE (type))
9008 case VOID_TYPE:
9009 if (name)
9010 error ("declaration of %qD as array of void", name);
9011 else
9012 error ("creating array of void");
9013 return error_mark_node;
9015 case FUNCTION_TYPE:
9016 if (name)
9017 error ("declaration of %qD as array of functions", name);
9018 else
9019 error ("creating array of functions");
9020 return error_mark_node;
9022 case REFERENCE_TYPE:
9023 if (name)
9024 error ("declaration of %qD as array of references", name);
9025 else
9026 error ("creating array of references");
9027 return error_mark_node;
9029 case METHOD_TYPE:
9030 if (name)
9031 error ("declaration of %qD as array of function members", name);
9032 else
9033 error ("creating array of function members");
9034 return error_mark_node;
9036 default:
9037 break;
9040 /* [dcl.array]
9042 The constant expressions that specify the bounds of the arrays
9043 can be omitted only for the first member of the sequence. */
9044 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
9046 if (name)
9047 error ("declaration of %qD as multidimensional array must "
9048 "have bounds for all dimensions except the first",
9049 name);
9050 else
9051 error ("multidimensional array must have bounds for all "
9052 "dimensions except the first");
9054 return error_mark_node;
9057 /* Figure out the index type for the array. */
9058 if (size)
9059 itype = compute_array_index_type (name, size, tf_warning_or_error);
9061 /* [dcl.array]
9062 T is called the array element type; this type shall not be [...] an
9063 abstract class type. */
9064 abstract_virtuals_error (name, type);
9066 return build_cplus_array_type (type, itype);
9069 /* Returns the smallest location != UNKNOWN_LOCATION among the
9070 three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile],
9071 and LOCATIONS[ds_restrict]. */
9073 static location_t
9074 smallest_type_quals_location (int type_quals, const location_t* locations)
9076 location_t loc = UNKNOWN_LOCATION;
9078 if (type_quals & TYPE_QUAL_CONST)
9079 loc = locations[ds_const];
9081 if ((type_quals & TYPE_QUAL_VOLATILE)
9082 && (loc == UNKNOWN_LOCATION || locations[ds_volatile] < loc))
9083 loc = locations[ds_volatile];
9085 if ((type_quals & TYPE_QUAL_RESTRICT)
9086 && (loc == UNKNOWN_LOCATION || locations[ds_restrict] < loc))
9087 loc = locations[ds_restrict];
9089 return loc;
9092 /* Check that it's OK to declare a function with the indicated TYPE
9093 and TYPE_QUALS. SFK indicates the kind of special function (if any)
9094 that this function is. OPTYPE is the type given in a conversion
9095 operator declaration, or the class type for a constructor/destructor.
9096 Returns the actual return type of the function; that may be different
9097 than TYPE if an error occurs, or for certain special functions. */
9099 static tree
9100 check_special_function_return_type (special_function_kind sfk,
9101 tree type,
9102 tree optype,
9103 int type_quals,
9104 const location_t* locations)
9106 switch (sfk)
9108 case sfk_constructor:
9109 if (type)
9110 error ("return type specification for constructor invalid");
9111 else if (type_quals != TYPE_UNQUALIFIED)
9112 error_at (smallest_type_quals_location (type_quals, locations),
9113 "qualifiers are not allowed on constructor declaration");
9115 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
9116 type = build_pointer_type (optype);
9117 else
9118 type = void_type_node;
9119 break;
9121 case sfk_destructor:
9122 if (type)
9123 error ("return type specification for destructor invalid");
9124 else if (type_quals != TYPE_UNQUALIFIED)
9125 error_at (smallest_type_quals_location (type_quals, locations),
9126 "qualifiers are not allowed on destructor declaration");
9128 /* We can't use the proper return type here because we run into
9129 problems with ambiguous bases and covariant returns.
9130 Java classes are left unchanged because (void *) isn't a valid
9131 Java type, and we don't want to change the Java ABI. */
9132 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
9133 type = build_pointer_type (void_type_node);
9134 else
9135 type = void_type_node;
9136 break;
9138 case sfk_conversion:
9139 if (type)
9140 error ("return type specified for %<operator %T%>", optype);
9141 else if (type_quals != TYPE_UNQUALIFIED)
9142 error_at (smallest_type_quals_location (type_quals, locations),
9143 "qualifiers are not allowed on declaration of "
9144 "%<operator %T%>", optype);
9146 type = optype;
9147 break;
9149 default:
9150 gcc_unreachable ();
9153 return type;
9156 /* A variable or data member (whose unqualified name is IDENTIFIER)
9157 has been declared with the indicated TYPE. If the TYPE is not
9158 acceptable, issue an error message and return a type to use for
9159 error-recovery purposes. */
9161 tree
9162 check_var_type (tree identifier, tree type)
9164 if (VOID_TYPE_P (type))
9166 if (!identifier)
9167 error ("unnamed variable or field declared void");
9168 else if (identifier_p (identifier))
9170 gcc_assert (!IDENTIFIER_OPNAME_P (identifier));
9171 error ("variable or field %qE declared void", identifier);
9173 else
9174 error ("variable or field declared void");
9175 type = error_mark_node;
9178 return type;
9181 /* Given declspecs and a declarator (abstract or otherwise), determine
9182 the name and type of the object declared and construct a DECL node
9183 for it.
9185 DECLSPECS points to the representation of declaration-specifier
9186 sequence that precedes declarator.
9188 DECL_CONTEXT says which syntactic context this declaration is in:
9189 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
9190 FUNCDEF for a function definition. Like NORMAL but a few different
9191 error messages in each case. Return value may be zero meaning
9192 this definition is too screwy to try to parse.
9193 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
9194 handle member functions (which have FIELD context).
9195 Return value may be zero meaning this definition is too screwy to
9196 try to parse.
9197 PARM for a parameter declaration (either within a function prototype
9198 or before a function body). Make a PARM_DECL, or return void_type_node.
9199 TPARM for a template parameter declaration.
9200 CATCHPARM for a parameter declaration before a catch clause.
9201 TYPENAME if for a typename (in a cast or sizeof).
9202 Don't make a DECL node; just return the ..._TYPE node.
9203 FIELD for a struct or union field; make a FIELD_DECL.
9204 BITFIELD for a field with specified width.
9206 INITIALIZED is as for start_decl.
9208 ATTRLIST is a pointer to the list of attributes, which may be NULL
9209 if there are none; *ATTRLIST may be modified if attributes from inside
9210 the declarator should be applied to the declaration.
9212 When this function is called, scoping variables (such as
9213 CURRENT_CLASS_TYPE) should reflect the scope in which the
9214 declaration occurs, not the scope in which the new declaration will
9215 be placed. For example, on:
9217 void S::f() { ... }
9219 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
9220 should not be `S'.
9222 Returns a DECL (if a declarator is present), a TYPE (if there is no
9223 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
9224 error occurs. */
9226 tree
9227 grokdeclarator (const cp_declarator *declarator,
9228 cp_decl_specifier_seq *declspecs,
9229 enum decl_context decl_context,
9230 int initialized,
9231 tree* attrlist)
9233 tree type = NULL_TREE;
9234 int longlong = 0;
9235 int explicit_intN = 0;
9236 int virtualp, explicitp, friendp, inlinep, staticp;
9237 int explicit_int = 0;
9238 int explicit_char = 0;
9239 int defaulted_int = 0;
9241 tree typedef_decl = NULL_TREE;
9242 const char *name = NULL;
9243 tree typedef_type = NULL_TREE;
9244 /* True if this declarator is a function definition. */
9245 bool funcdef_flag = false;
9246 cp_declarator_kind innermost_code = cdk_error;
9247 int bitfield = 0;
9248 #if 0
9249 /* See the code below that used this. */
9250 tree decl_attr = NULL_TREE;
9251 #endif
9253 /* Keep track of what sort of function is being processed
9254 so that we can warn about default return values, or explicit
9255 return values which do not match prescribed defaults. */
9256 special_function_kind sfk = sfk_none;
9258 tree dname = NULL_TREE;
9259 tree ctor_return_type = NULL_TREE;
9260 enum overload_flags flags = NO_SPECIAL;
9261 /* cv-qualifiers that apply to the declarator, for a declaration of
9262 a member function. */
9263 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
9264 /* virt-specifiers that apply to the declarator, for a declaration of
9265 a member function. */
9266 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
9267 /* ref-qualifier that applies to the declarator, for a declaration of
9268 a member function. */
9269 cp_ref_qualifier rqual = REF_QUAL_NONE;
9270 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
9271 int type_quals = TYPE_UNQUALIFIED;
9272 tree raises = NULL_TREE;
9273 int template_count = 0;
9274 tree returned_attrs = NULL_TREE;
9275 tree parms = NULL_TREE;
9276 const cp_declarator *id_declarator;
9277 /* The unqualified name of the declarator; either an
9278 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
9279 tree unqualified_id;
9280 /* The class type, if any, in which this entity is located,
9281 or NULL_TREE if none. Note that this value may be different from
9282 the current class type; for example if an attempt is made to declare
9283 "A::f" inside "B", this value will be "A". */
9284 tree ctype = current_class_type;
9285 /* The NAMESPACE_DECL for the namespace in which this entity is
9286 located. If an unqualified name is used to declare the entity,
9287 this value will be NULL_TREE, even if the entity is located at
9288 namespace scope. */
9289 tree in_namespace = NULL_TREE;
9290 cp_storage_class storage_class;
9291 bool unsigned_p, signed_p, short_p, long_p, thread_p;
9292 bool type_was_error_mark_node = false;
9293 bool parameter_pack_p = declarator? declarator->parameter_pack_p : false;
9294 bool template_type_arg = false;
9295 bool template_parm_flag = false;
9296 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
9297 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
9298 bool late_return_type_p = false;
9299 bool array_parameter_p = false;
9300 source_location saved_loc = input_location;
9301 tree reqs = NULL_TREE;
9303 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
9304 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
9305 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
9306 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
9307 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
9308 explicit_intN = declspecs->explicit_intN_p;
9309 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
9311 // Was concept_p specified? Note that ds_concept
9312 // implies ds_constexpr!
9313 bool concept_p = decl_spec_seq_has_spec_p (declspecs, ds_concept);
9314 if (concept_p)
9315 constexpr_p = true;
9317 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
9318 type_quals |= TYPE_QUAL_CONST;
9319 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
9320 type_quals |= TYPE_QUAL_VOLATILE;
9321 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
9322 type_quals |= TYPE_QUAL_RESTRICT;
9324 if (decl_context == FUNCDEF)
9325 funcdef_flag = true, decl_context = NORMAL;
9326 else if (decl_context == MEMFUNCDEF)
9327 funcdef_flag = true, decl_context = FIELD;
9328 else if (decl_context == BITFIELD)
9329 bitfield = 1, decl_context = FIELD;
9330 else if (decl_context == TEMPLATE_TYPE_ARG)
9331 template_type_arg = true, decl_context = TYPENAME;
9332 else if (decl_context == TPARM)
9333 template_parm_flag = true, decl_context = PARM;
9335 if (initialized > 1)
9336 funcdef_flag = true;
9338 /* Look inside a declarator for the name being declared
9339 and get it as a string, for an error message. */
9340 for (id_declarator = declarator;
9341 id_declarator;
9342 id_declarator = id_declarator->declarator)
9344 if (id_declarator->kind != cdk_id)
9345 innermost_code = id_declarator->kind;
9347 switch (id_declarator->kind)
9349 case cdk_function:
9350 if (id_declarator->declarator
9351 && id_declarator->declarator->kind == cdk_id)
9353 sfk = id_declarator->declarator->u.id.sfk;
9354 if (sfk == sfk_destructor)
9355 flags = DTOR_FLAG;
9357 break;
9359 case cdk_id:
9361 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
9362 tree decl = id_declarator->u.id.unqualified_name;
9363 if (!decl)
9364 break;
9365 if (qualifying_scope)
9367 if (at_function_scope_p ())
9369 /* [dcl.meaning]
9371 A declarator-id shall not be qualified except
9372 for ...
9374 None of the cases are permitted in block
9375 scope. */
9376 if (qualifying_scope == global_namespace)
9377 error ("invalid use of qualified-name %<::%D%>",
9378 decl);
9379 else if (TYPE_P (qualifying_scope))
9380 error ("invalid use of qualified-name %<%T::%D%>",
9381 qualifying_scope, decl);
9382 else
9383 error ("invalid use of qualified-name %<%D::%D%>",
9384 qualifying_scope, decl);
9385 return error_mark_node;
9387 else if (TYPE_P (qualifying_scope))
9389 ctype = qualifying_scope;
9390 if (!MAYBE_CLASS_TYPE_P (ctype))
9392 error ("%q#T is not a class or a namespace", ctype);
9393 ctype = NULL_TREE;
9395 else if (innermost_code != cdk_function
9396 && current_class_type
9397 && !uniquely_derived_from_p (ctype,
9398 current_class_type))
9400 error ("invalid use of qualified-name %<%T::%D%>",
9401 qualifying_scope, decl);
9402 return error_mark_node;
9405 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
9406 in_namespace = qualifying_scope;
9408 switch (TREE_CODE (decl))
9410 case BIT_NOT_EXPR:
9412 tree type;
9414 if (innermost_code != cdk_function)
9416 error ("declaration of %qD as non-function", decl);
9417 return error_mark_node;
9419 else if (!qualifying_scope
9420 && !(current_class_type && at_class_scope_p ()))
9422 error ("declaration of %qD as non-member", decl);
9423 return error_mark_node;
9426 type = TREE_OPERAND (decl, 0);
9427 if (TYPE_P (type))
9428 type = constructor_name (type);
9429 name = identifier_to_locale (IDENTIFIER_POINTER (type));
9430 dname = decl;
9432 break;
9434 case TEMPLATE_ID_EXPR:
9436 tree fns = TREE_OPERAND (decl, 0);
9438 dname = fns;
9439 if (!identifier_p (dname))
9441 if (variable_template_p (dname))
9442 dname = DECL_NAME (dname);
9443 else
9445 gcc_assert (is_overloaded_fn (dname));
9446 dname = DECL_NAME (get_first_fn (dname));
9450 /* Fall through. */
9452 case IDENTIFIER_NODE:
9453 if (identifier_p (decl))
9454 dname = decl;
9456 if (C_IS_RESERVED_WORD (dname))
9458 error ("declarator-id missing; using reserved word %qD",
9459 dname);
9460 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9462 else if (!IDENTIFIER_TYPENAME_P (dname))
9463 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9464 else
9466 gcc_assert (flags == NO_SPECIAL);
9467 flags = TYPENAME_FLAG;
9468 ctor_return_type = TREE_TYPE (dname);
9469 sfk = sfk_conversion;
9470 if (is_typename_at_global_scope (dname))
9471 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9472 else
9473 name = "<invalid operator>";
9475 break;
9477 default:
9478 gcc_unreachable ();
9480 break;
9483 case cdk_array:
9484 case cdk_pointer:
9485 case cdk_reference:
9486 case cdk_ptrmem:
9487 break;
9489 case cdk_error:
9490 return error_mark_node;
9492 default:
9493 gcc_unreachable ();
9495 if (id_declarator->kind == cdk_id)
9496 break;
9499 /* [dcl.fct.edf]
9501 The declarator in a function-definition shall have the form
9502 D1 ( parameter-declaration-clause) ... */
9503 if (funcdef_flag && innermost_code != cdk_function)
9505 error ("function definition does not declare parameters");
9506 return error_mark_node;
9509 if (flags == TYPENAME_FLAG
9510 && innermost_code != cdk_function
9511 && ! (ctype && !declspecs->any_specifiers_p))
9513 error ("declaration of %qD as non-function", dname);
9514 return error_mark_node;
9517 if (dname
9518 && identifier_p (dname)
9519 && UDLIT_OPER_P (dname)
9520 && innermost_code != cdk_function)
9522 error ("declaration of %qD as non-function", dname);
9523 return error_mark_node;
9526 if (dname && IDENTIFIER_OPNAME_P (dname))
9528 if (typedef_p)
9530 error ("declaration of %qD as %<typedef%>", dname);
9531 return error_mark_node;
9533 else if (decl_context == PARM || decl_context == CATCHPARM)
9535 error ("declaration of %qD as parameter", dname);
9536 return error_mark_node;
9540 /* Anything declared one level down from the top level
9541 must be one of the parameters of a function
9542 (because the body is at least two levels down). */
9544 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
9545 by not allowing C++ class definitions to specify their parameters
9546 with xdecls (must be spec.d in the parmlist).
9548 Since we now wait to push a class scope until we are sure that
9549 we are in a legitimate method context, we must set oldcname
9550 explicitly (since current_class_name is not yet alive).
9552 We also want to avoid calling this a PARM if it is in a namespace. */
9554 if (decl_context == NORMAL && !toplevel_bindings_p ())
9556 cp_binding_level *b = current_binding_level;
9557 current_binding_level = b->level_chain;
9558 if (current_binding_level != 0 && toplevel_bindings_p ())
9559 decl_context = PARM;
9560 current_binding_level = b;
9563 if (name == NULL)
9564 name = decl_context == PARM ? "parameter" : "type name";
9566 if (concept_p && typedef_p)
9568 error ("%<concept%> cannot appear in a typedef declaration");
9569 return error_mark_node;
9572 if (constexpr_p && typedef_p)
9574 error ("%<constexpr%> cannot appear in a typedef declaration");
9575 return error_mark_node;
9578 /* If there were multiple types specified in the decl-specifier-seq,
9579 issue an error message. */
9580 if (declspecs->multiple_types_p)
9582 error ("two or more data types in declaration of %qs", name);
9583 return error_mark_node;
9586 if (declspecs->conflicting_specifiers_p)
9588 error ("conflicting specifiers in declaration of %qs", name);
9589 return error_mark_node;
9592 /* Extract the basic type from the decl-specifier-seq. */
9593 type = declspecs->type;
9594 if (type == error_mark_node)
9596 type = NULL_TREE;
9597 type_was_error_mark_node = true;
9599 /* If the entire declaration is itself tagged as deprecated then
9600 suppress reports of deprecated items. */
9601 if (type && TREE_DEPRECATED (type)
9602 && deprecated_state != DEPRECATED_SUPPRESS)
9603 warn_deprecated_use (type, NULL_TREE);
9604 if (type && TREE_CODE (type) == TYPE_DECL)
9606 typedef_decl = type;
9607 type = TREE_TYPE (typedef_decl);
9608 if (TREE_DEPRECATED (type)
9609 && DECL_ARTIFICIAL (typedef_decl)
9610 && deprecated_state != DEPRECATED_SUPPRESS)
9611 warn_deprecated_use (type, NULL_TREE);
9613 /* No type at all: default to `int', and set DEFAULTED_INT
9614 because it was not a user-defined typedef. */
9615 if (type == NULL_TREE)
9617 if (signed_p || unsigned_p || long_p || short_p)
9619 /* These imply 'int'. */
9620 type = integer_type_node;
9621 defaulted_int = 1;
9623 /* If we just have "complex", it is equivalent to "complex double". */
9624 else if (!longlong && !explicit_intN
9625 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
9627 type = double_type_node;
9628 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
9629 "ISO C++ does not support plain %<complex%> meaning "
9630 "%<double complex%>");
9633 /* Gather flags. */
9634 explicit_int = declspecs->explicit_int_p;
9635 explicit_char = declspecs->explicit_char_p;
9637 #if 0
9638 /* See the code below that used this. */
9639 if (typedef_decl)
9640 decl_attr = DECL_ATTRIBUTES (typedef_decl);
9641 #endif
9642 typedef_type = type;
9645 if (sfk != sfk_conversion)
9646 ctor_return_type = ctype;
9648 if (sfk != sfk_none)
9650 type = check_special_function_return_type (sfk, type,
9651 ctor_return_type,
9652 type_quals,
9653 declspecs->locations);
9654 type_quals = TYPE_UNQUALIFIED;
9656 else if (type == NULL_TREE)
9658 int is_main;
9660 explicit_int = -1;
9662 /* We handle `main' specially here, because 'main () { }' is so
9663 common. With no options, it is allowed. With -Wreturn-type,
9664 it is a warning. It is only an error with -pedantic-errors. */
9665 is_main = (funcdef_flag
9666 && dname && identifier_p (dname)
9667 && MAIN_NAME_P (dname)
9668 && ctype == NULL_TREE
9669 && in_namespace == NULL_TREE
9670 && current_namespace == global_namespace);
9672 if (type_was_error_mark_node)
9673 /* We've already issued an error, don't complain more. */;
9674 else if (in_system_header_at (input_location) || flag_ms_extensions)
9675 /* Allow it, sigh. */;
9676 else if (! is_main)
9677 permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
9678 else if (pedantic)
9679 pedwarn (input_location, OPT_Wpedantic,
9680 "ISO C++ forbids declaration of %qs with no type", name);
9681 else
9682 warning (OPT_Wreturn_type,
9683 "ISO C++ forbids declaration of %qs with no type", name);
9685 if (type_was_error_mark_node && template_parm_flag)
9686 /* FIXME we should be able to propagate the error_mark_node as is
9687 for other contexts too. */
9688 type = error_mark_node;
9689 else
9690 type = integer_type_node;
9693 ctype = NULL_TREE;
9695 if (explicit_intN)
9697 if (! int_n_enabled_p[declspecs->int_n_idx])
9699 error ("%<__int%d%> is not supported by this target",
9700 int_n_data[declspecs->int_n_idx].bitsize);
9701 explicit_intN = false;
9703 else if (pedantic && ! in_system_header_at (input_location))
9704 pedwarn (input_location, OPT_Wpedantic,
9705 "ISO C++ does not support %<__int%d%> for %qs",
9706 int_n_data[declspecs->int_n_idx].bitsize, name);
9709 /* Now process the modifiers that were specified
9710 and check for invalid combinations. */
9712 /* Long double is a special combination. */
9713 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
9715 long_p = false;
9716 type = cp_build_qualified_type (long_double_type_node,
9717 cp_type_quals (type));
9720 /* Check all other uses of type modifiers. */
9722 if (unsigned_p || signed_p || long_p || short_p)
9724 int ok = 0;
9726 if ((signed_p || unsigned_p) && TREE_CODE (type) != INTEGER_TYPE)
9727 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9728 else if (signed_p && unsigned_p)
9729 error ("%<signed%> and %<unsigned%> specified together for %qs", name);
9730 else if (longlong && TREE_CODE (type) != INTEGER_TYPE)
9731 error ("%<long long%> invalid for %qs", name);
9732 else if (long_p && TREE_CODE (type) == REAL_TYPE)
9733 error ("%<long%> invalid for %qs", name);
9734 else if (short_p && TREE_CODE (type) == REAL_TYPE)
9735 error ("%<short%> invalid for %qs", name);
9736 else if ((long_p || short_p) && TREE_CODE (type) != INTEGER_TYPE)
9737 error ("%<long%> or %<short%> invalid for %qs", name);
9738 else if ((long_p || short_p || explicit_char || explicit_int) && explicit_intN)
9739 error ("%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs", name);
9740 else if ((long_p || short_p) && explicit_char)
9741 error ("%<long%> or %<short%> specified with char for %qs", name);
9742 else if (long_p && short_p)
9743 error ("%<long%> and %<short%> specified together for %qs", name);
9744 else if (type == char16_type_node || type == char32_type_node)
9746 if (signed_p || unsigned_p)
9747 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9748 else if (short_p || long_p)
9749 error ("%<short%> or %<long%> invalid for %qs", name);
9751 else
9753 ok = 1;
9754 if (!explicit_int && !defaulted_int && !explicit_char && !explicit_intN && pedantic)
9756 pedwarn (input_location, OPT_Wpedantic,
9757 "long, short, signed or unsigned used invalidly for %qs",
9758 name);
9759 if (flag_pedantic_errors)
9760 ok = 0;
9764 /* Discard the type modifiers if they are invalid. */
9765 if (! ok)
9767 unsigned_p = false;
9768 signed_p = false;
9769 long_p = false;
9770 short_p = false;
9771 longlong = 0;
9775 /* Decide whether an integer type is signed or not.
9776 Optionally treat bitfields as signed by default. */
9777 if (unsigned_p
9778 /* [class.bit]
9780 It is implementation-defined whether a plain (neither
9781 explicitly signed or unsigned) char, short, int, or long
9782 bit-field is signed or unsigned.
9784 Naturally, we extend this to long long as well. Note that
9785 this does not include wchar_t. */
9786 || (bitfield && !flag_signed_bitfields
9787 && !signed_p
9788 /* A typedef for plain `int' without `signed' can be
9789 controlled just like plain `int', but a typedef for
9790 `signed int' cannot be so controlled. */
9791 && !(typedef_decl
9792 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
9793 && TREE_CODE (type) == INTEGER_TYPE
9794 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
9796 if (explicit_intN)
9797 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
9798 else if (longlong)
9799 type = long_long_unsigned_type_node;
9800 else if (long_p)
9801 type = long_unsigned_type_node;
9802 else if (short_p)
9803 type = short_unsigned_type_node;
9804 else if (type == char_type_node)
9805 type = unsigned_char_type_node;
9806 else if (typedef_decl)
9807 type = unsigned_type_for (type);
9808 else
9809 type = unsigned_type_node;
9811 else if (signed_p && type == char_type_node)
9812 type = signed_char_type_node;
9813 else if (explicit_intN)
9814 type = int_n_trees[declspecs->int_n_idx].signed_type;
9815 else if (longlong)
9816 type = long_long_integer_type_node;
9817 else if (long_p)
9818 type = long_integer_type_node;
9819 else if (short_p)
9820 type = short_integer_type_node;
9822 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
9824 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
9825 error ("complex invalid for %qs", name);
9826 /* If a modifier is specified, the resulting complex is the complex
9827 form of TYPE. E.g, "complex short" is "complex short int". */
9828 else if (type == integer_type_node)
9829 type = complex_integer_type_node;
9830 else if (type == float_type_node)
9831 type = complex_float_type_node;
9832 else if (type == double_type_node)
9833 type = complex_double_type_node;
9834 else if (type == long_double_type_node)
9835 type = complex_long_double_type_node;
9836 else
9837 type = build_complex_type (type);
9840 /* If we're using the injected-class-name to form a compound type or a
9841 declaration, replace it with the underlying class so we don't get
9842 redundant typedefs in the debug output. But if we are returning the
9843 type unchanged, leave it alone so that it's available to
9844 maybe_get_template_decl_from_type_decl. */
9845 if (CLASS_TYPE_P (type)
9846 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
9847 && type == TREE_TYPE (TYPE_NAME (type))
9848 && (declarator || type_quals))
9849 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
9851 type_quals |= cp_type_quals (type);
9852 type = cp_build_qualified_type_real
9853 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
9854 || declspecs->decltype_p)
9855 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
9856 /* We might have ignored or rejected some of the qualifiers. */
9857 type_quals = cp_type_quals (type);
9859 staticp = 0;
9860 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
9861 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
9862 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
9864 storage_class = declspecs->storage_class;
9865 if (storage_class == sc_static)
9866 staticp = 1 + (decl_context == FIELD);
9868 if (virtualp)
9870 if (staticp == 2)
9872 error ("member %qD cannot be declared both %<virtual%> "
9873 "and %<static%>", dname);
9874 storage_class = sc_none;
9875 staticp = 0;
9877 if (constexpr_p)
9878 error ("member %qD cannot be declared both %<virtual%> "
9879 "and %<constexpr%>", dname);
9881 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
9883 /* Issue errors about use of storage classes for parameters. */
9884 if (decl_context == PARM)
9886 if (typedef_p)
9888 error ("typedef declaration invalid in parameter declaration");
9889 return error_mark_node;
9891 else if (template_parm_flag && storage_class != sc_none)
9893 error ("storage class specified for template parameter %qs", name);
9894 return error_mark_node;
9896 else if (storage_class == sc_static
9897 || storage_class == sc_extern
9898 || thread_p)
9899 error ("storage class specifiers invalid in parameter declarations");
9901 /* Function parameters cannot be concept. */
9902 if (concept_p)
9903 error ("a parameter cannot be declared %<concept%>");
9904 /* Function parameters cannot be constexpr. If we saw one, moan
9905 and pretend it wasn't there. */
9906 else if (constexpr_p)
9908 error ("a parameter cannot be declared %<constexpr%>");
9909 constexpr_p = 0;
9913 /* Give error if `virtual' is used outside of class declaration. */
9914 if (virtualp
9915 && (current_class_name == NULL_TREE || decl_context != FIELD))
9917 error_at (declspecs->locations[ds_virtual],
9918 "%<virtual%> outside class declaration");
9919 virtualp = 0;
9922 /* Static anonymous unions are dealt with here. */
9923 if (staticp && decl_context == TYPENAME
9924 && declspecs->type
9925 && ANON_AGGR_TYPE_P (declspecs->type))
9926 decl_context = FIELD;
9928 /* Warn about storage classes that are invalid for certain
9929 kinds of declarations (parameters, typenames, etc.). */
9930 if (thread_p
9931 && ((storage_class
9932 && storage_class != sc_extern
9933 && storage_class != sc_static)
9934 || typedef_p))
9936 error ("multiple storage classes in declaration of %qs", name);
9937 thread_p = false;
9939 if (decl_context != NORMAL
9940 && ((storage_class != sc_none
9941 && storage_class != sc_mutable)
9942 || thread_p))
9944 if ((decl_context == PARM || decl_context == CATCHPARM)
9945 && (storage_class == sc_register
9946 || storage_class == sc_auto))
9948 else if (typedef_p)
9950 else if (decl_context == FIELD
9951 /* C++ allows static class elements. */
9952 && storage_class == sc_static)
9953 /* C++ also allows inlines and signed and unsigned elements,
9954 but in those cases we don't come in here. */
9956 else
9958 if (decl_context == FIELD)
9959 error ("storage class specified for %qs", name);
9960 else
9962 if (decl_context == PARM || decl_context == CATCHPARM)
9963 error ("storage class specified for parameter %qs", name);
9964 else
9965 error ("storage class specified for typename");
9967 if (storage_class == sc_register
9968 || storage_class == sc_auto
9969 || storage_class == sc_extern
9970 || thread_p)
9971 storage_class = sc_none;
9974 else if (storage_class == sc_extern && funcdef_flag
9975 && ! toplevel_bindings_p ())
9976 error ("nested function %qs declared %<extern%>", name);
9977 else if (toplevel_bindings_p ())
9979 if (storage_class == sc_auto)
9980 error ("top-level declaration of %qs specifies %<auto%>", name);
9982 else if (thread_p
9983 && storage_class != sc_extern
9984 && storage_class != sc_static)
9986 if (declspecs->gnu_thread_keyword_p)
9987 pedwarn (input_location, 0, "function-scope %qs implicitly auto and "
9988 "declared %<__thread%>", name);
9990 /* When thread_local is applied to a variable of block scope the
9991 storage-class-specifier static is implied if it does not appear
9992 explicitly. */
9993 storage_class = declspecs->storage_class = sc_static;
9994 staticp = 1;
9997 if (storage_class && friendp)
9999 error ("storage class specifiers invalid in friend function declarations");
10000 storage_class = sc_none;
10001 staticp = 0;
10004 if (!id_declarator)
10005 unqualified_id = NULL_TREE;
10006 else
10008 unqualified_id = id_declarator->u.id.unqualified_name;
10009 switch (TREE_CODE (unqualified_id))
10011 case BIT_NOT_EXPR:
10012 unqualified_id = TREE_OPERAND (unqualified_id, 0);
10013 if (TYPE_P (unqualified_id))
10014 unqualified_id = constructor_name (unqualified_id);
10015 break;
10017 case IDENTIFIER_NODE:
10018 case TEMPLATE_ID_EXPR:
10019 break;
10021 default:
10022 gcc_unreachable ();
10026 if (declspecs->std_attributes)
10028 /* Apply the c++11 attributes to the type preceding them. */
10029 input_location = declspecs->locations[ds_std_attribute];
10030 decl_attributes (&type, declspecs->std_attributes, 0);
10031 input_location = saved_loc;
10034 /* Determine the type of the entity declared by recurring on the
10035 declarator. */
10036 for (; declarator; declarator = declarator->declarator)
10038 const cp_declarator *inner_declarator;
10039 tree attrs;
10041 if (type == error_mark_node)
10042 return error_mark_node;
10044 attrs = declarator->attributes;
10045 if (attrs)
10047 int attr_flags;
10049 attr_flags = 0;
10050 if (declarator == NULL || declarator->kind == cdk_id)
10051 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
10052 if (declarator->kind == cdk_function)
10053 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
10054 if (declarator->kind == cdk_array)
10055 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
10056 returned_attrs = decl_attributes (&type,
10057 chainon (returned_attrs, attrs),
10058 attr_flags);
10061 if (declarator->kind == cdk_id)
10062 break;
10064 inner_declarator = declarator->declarator;
10066 switch (declarator->kind)
10068 case cdk_array:
10069 type = create_array_type_for_decl (dname, type,
10070 declarator->u.array.bounds);
10071 if (!valid_array_size_p (input_location, type, dname))
10072 type = error_mark_node;
10074 if (declarator->std_attributes)
10075 /* [dcl.array]/1:
10077 The optional attribute-specifier-seq appertains to the
10078 array. */
10079 returned_attrs = chainon (returned_attrs,
10080 declarator->std_attributes);
10081 break;
10083 case cdk_function:
10085 tree arg_types;
10086 int funcdecl_p;
10088 /* Declaring a function type.
10089 Make sure we have a valid type for the function to return. */
10091 if (type_quals != TYPE_UNQUALIFIED)
10093 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
10094 warning (OPT_Wignored_qualifiers,
10095 "type qualifiers ignored on function return type");
10096 /* We now know that the TYPE_QUALS don't apply to the
10097 decl, but to its return type. */
10098 type_quals = TYPE_UNQUALIFIED;
10101 /* Error about some types functions can't return. */
10103 if (TREE_CODE (type) == FUNCTION_TYPE)
10105 error ("%qs declared as function returning a function", name);
10106 return error_mark_node;
10108 if (TREE_CODE (type) == ARRAY_TYPE)
10110 error ("%qs declared as function returning an array", name);
10111 return error_mark_node;
10114 input_location = declspecs->locations[ds_type_spec];
10115 abstract_virtuals_error (ACU_RETURN, type);
10116 input_location = saved_loc;
10118 /* Pick up type qualifiers which should be applied to `this'. */
10119 memfn_quals = declarator->u.function.qualifiers;
10120 /* Pick up virt-specifiers. */
10121 virt_specifiers = declarator->u.function.virt_specifiers;
10122 /* And ref-qualifier, too */
10123 rqual = declarator->u.function.ref_qualifier;
10124 /* And tx-qualifier. */
10125 tree tx_qual = declarator->u.function.tx_qualifier;
10126 /* Pick up the exception specifications. */
10127 raises = declarator->u.function.exception_specification;
10128 /* If the exception-specification is ill-formed, let's pretend
10129 there wasn't one. */
10130 if (raises == error_mark_node)
10131 raises = NULL_TREE;
10133 if (reqs)
10134 error_at (location_of (reqs), "requires-clause on return type");
10135 reqs = declarator->u.function.requires_clause;
10137 /* Say it's a definition only for the CALL_EXPR
10138 closest to the identifier. */
10139 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
10141 /* Handle a late-specified return type. */
10142 if (funcdecl_p)
10144 if (type_uses_auto (type))
10146 if (!declarator->u.function.late_return_type)
10148 if (current_class_type
10149 && LAMBDA_TYPE_P (current_class_type))
10150 /* OK for C++11 lambdas. */;
10151 else if (cxx_dialect < cxx14)
10153 error ("%qs function uses "
10154 "%<auto%> type specifier without trailing "
10155 "return type", name);
10156 inform (input_location, "deduced return type "
10157 "only available with -std=c++14 or "
10158 "-std=gnu++14");
10160 else if (virtualp)
10162 error ("virtual function cannot "
10163 "have deduced return type");
10164 virtualp = false;
10167 else if (!is_auto (type) && sfk != sfk_conversion)
10169 error ("%qs function with trailing return type has"
10170 " %qT as its type rather than plain %<auto%>",
10171 name, type);
10172 return error_mark_node;
10175 else if (declarator->u.function.late_return_type
10176 && sfk != sfk_conversion)
10178 if (cxx_dialect < cxx11)
10179 /* Not using maybe_warn_cpp0x because this should
10180 always be an error. */
10181 error ("trailing return type only available with "
10182 "-std=c++11 or -std=gnu++11");
10183 else
10184 error ("%qs function with trailing return type not "
10185 "declared with %<auto%> type specifier", name);
10186 return error_mark_node;
10189 type = splice_late_return_type
10190 (type, declarator->u.function.late_return_type);
10191 if (type == error_mark_node)
10192 return error_mark_node;
10194 if (declarator->u.function.late_return_type)
10195 late_return_type_p = true;
10197 if (ctype == NULL_TREE
10198 && decl_context == FIELD
10199 && funcdecl_p
10200 && friendp == 0)
10201 ctype = current_class_type;
10203 if (ctype && (sfk == sfk_constructor
10204 || sfk == sfk_destructor))
10206 /* We are within a class's scope. If our declarator name
10207 is the same as the class name, and we are defining
10208 a function, then it is a constructor/destructor, and
10209 therefore returns a void type. */
10211 /* ISO C++ 12.4/2. A destructor may not be declared
10212 const or volatile. A destructor may not be static.
10213 A destructor may not be declared with ref-qualifier.
10215 ISO C++ 12.1. A constructor may not be declared
10216 const or volatile. A constructor may not be
10217 virtual. A constructor may not be static.
10218 A constructor may not be declared with ref-qualifier. */
10219 if (staticp == 2)
10220 error ((flags == DTOR_FLAG)
10221 ? G_("destructor cannot be static member function")
10222 : G_("constructor cannot be static member function"));
10223 if (memfn_quals)
10225 error ((flags == DTOR_FLAG)
10226 ? G_("destructors may not be cv-qualified")
10227 : G_("constructors may not be cv-qualified"));
10228 memfn_quals = TYPE_UNQUALIFIED;
10231 if (rqual)
10233 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
10234 error ((flags == DTOR_FLAG)
10235 ? "destructors may not be ref-qualified"
10236 : "constructors may not be ref-qualified");
10237 rqual = REF_QUAL_NONE;
10240 if (decl_context == FIELD
10241 && !member_function_or_else (ctype,
10242 current_class_type,
10243 flags))
10244 return error_mark_node;
10246 if (flags != DTOR_FLAG)
10248 /* It's a constructor. */
10249 if (explicitp == 1)
10250 explicitp = 2;
10251 if (virtualp)
10253 permerror (input_location,
10254 "constructors cannot be declared %<virtual%>");
10255 virtualp = 0;
10257 if (decl_context == FIELD
10258 && sfk != sfk_constructor)
10259 return error_mark_node;
10261 if (decl_context == FIELD)
10262 staticp = 0;
10264 else if (friendp)
10266 if (virtualp)
10268 /* Cannot be both friend and virtual. */
10269 error ("virtual functions cannot be friends");
10270 friendp = 0;
10272 if (decl_context == NORMAL)
10273 error ("friend declaration not in class definition");
10274 if (current_function_decl && funcdef_flag)
10275 error ("can%'t define friend function %qs in a local "
10276 "class definition",
10277 name);
10279 else if (ctype && sfk == sfk_conversion)
10281 if (explicitp == 1)
10283 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
10284 explicitp = 2;
10286 if (late_return_type_p)
10287 error ("a conversion function cannot have a trailing return type");
10290 arg_types = grokparms (declarator->u.function.parameters,
10291 &parms);
10293 if (inner_declarator
10294 && inner_declarator->kind == cdk_id
10295 && inner_declarator->u.id.sfk == sfk_destructor
10296 && arg_types != void_list_node)
10298 error ("destructors may not have parameters");
10299 arg_types = void_list_node;
10300 parms = NULL_TREE;
10303 type = build_function_type (type, arg_types);
10305 tree attrs = declarator->std_attributes;
10306 if (tx_qual)
10308 tree att = build_tree_list (tx_qual, NULL_TREE);
10309 /* transaction_safe applies to the type, but
10310 transaction_safe_dynamic applies to the function. */
10311 if (is_attribute_p ("transaction_safe", tx_qual))
10312 attrs = chainon (attrs, att);
10313 else
10314 returned_attrs = chainon (returned_attrs, att);
10316 if (attrs)
10317 /* [dcl.fct]/2:
10319 The optional attribute-specifier-seq appertains to
10320 the function type. */
10321 decl_attributes (&type, attrs, 0);
10323 break;
10325 case cdk_pointer:
10326 case cdk_reference:
10327 case cdk_ptrmem:
10328 /* Filter out pointers-to-references and references-to-references.
10329 We can get these if a TYPE_DECL is used. */
10331 if (TREE_CODE (type) == REFERENCE_TYPE)
10333 if (declarator->kind != cdk_reference)
10335 error ("cannot declare pointer to %q#T", type);
10336 type = TREE_TYPE (type);
10339 /* In C++0x, we allow reference to reference declarations
10340 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
10341 and template type arguments [14.3.1/4 temp.arg.type]. The
10342 check for direct reference to reference declarations, which
10343 are still forbidden, occurs below. Reasoning behind the change
10344 can be found in DR106, DR540, and the rvalue reference
10345 proposals. */
10346 else if (cxx_dialect == cxx98)
10348 error ("cannot declare reference to %q#T", type);
10349 type = TREE_TYPE (type);
10352 else if (VOID_TYPE_P (type))
10354 if (declarator->kind == cdk_reference)
10355 error ("cannot declare reference to %q#T", type);
10356 else if (declarator->kind == cdk_ptrmem)
10357 error ("cannot declare pointer to %q#T member", type);
10360 /* We now know that the TYPE_QUALS don't apply to the decl,
10361 but to the target of the pointer. */
10362 type_quals = TYPE_UNQUALIFIED;
10364 /* This code used to handle METHOD_TYPE, but I don't think it's
10365 possible to get it here anymore. */
10366 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
10367 if (declarator->kind == cdk_ptrmem
10368 && TREE_CODE (type) == FUNCTION_TYPE)
10370 memfn_quals |= type_memfn_quals (type);
10371 type = build_memfn_type (type,
10372 declarator->u.pointer.class_type,
10373 memfn_quals,
10374 rqual);
10375 if (type == error_mark_node)
10376 return error_mark_node;
10378 rqual = REF_QUAL_NONE;
10379 memfn_quals = TYPE_UNQUALIFIED;
10382 if (TREE_CODE (type) == FUNCTION_TYPE
10383 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
10384 || type_memfn_rqual (type) != REF_QUAL_NONE))
10385 error (declarator->kind == cdk_reference
10386 ? G_("cannot declare reference to qualified function type %qT")
10387 : G_("cannot declare pointer to qualified function type %qT"),
10388 type);
10390 /* When the pointed-to type involves components of variable size,
10391 care must be taken to ensure that the size evaluation code is
10392 emitted early enough to dominate all the possible later uses
10393 and late enough for the variables on which it depends to have
10394 been assigned.
10396 This is expected to happen automatically when the pointed-to
10397 type has a name/declaration of it's own, but special attention
10398 is required if the type is anonymous.
10400 We handle the NORMAL and FIELD contexts here by inserting a
10401 dummy statement that just evaluates the size at a safe point
10402 and ensures it is not deferred until e.g. within a deeper
10403 conditional context (c++/43555).
10405 We expect nothing to be needed here for PARM or TYPENAME.
10406 Evaluating the size at this point for TYPENAME would
10407 actually be incorrect, as we might be in the middle of an
10408 expression with side effects on the pointed-to type size
10409 "arguments" prior to the pointer declaration point and the
10410 size evaluation could end up prior to the side effects. */
10412 if (!TYPE_NAME (type)
10413 && (decl_context == NORMAL || decl_context == FIELD)
10414 && at_function_scope_p ()
10415 && variably_modified_type_p (type, NULL_TREE))
10417 TYPE_NAME (type) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
10418 NULL_TREE, type);
10419 add_decl_expr (TYPE_NAME (type));
10422 if (declarator->kind == cdk_reference)
10424 /* In C++0x, the type we are creating a reference to might be
10425 a typedef which is itself a reference type. In that case,
10426 we follow the reference collapsing rules in
10427 [7.1.3/8 dcl.typedef] to create the final reference type:
10429 "If a typedef TD names a type that is a reference to a type
10430 T, an attempt to create the type 'lvalue reference to cv TD'
10431 creates the type 'lvalue reference to T,' while an attempt
10432 to create the type "rvalue reference to cv TD' creates the
10433 type TD."
10435 if (VOID_TYPE_P (type))
10436 /* We already gave an error. */;
10437 else if (TREE_CODE (type) == REFERENCE_TYPE)
10439 if (declarator->u.reference.rvalue_ref)
10440 /* Leave type alone. */;
10441 else
10442 type = cp_build_reference_type (TREE_TYPE (type), false);
10444 else
10445 type = cp_build_reference_type
10446 (type, declarator->u.reference.rvalue_ref);
10448 /* In C++0x, we need this check for direct reference to
10449 reference declarations, which are forbidden by
10450 [8.3.2/5 dcl.ref]. Reference to reference declarations
10451 are only allowed indirectly through typedefs and template
10452 type arguments. Example:
10454 void foo(int & &); // invalid ref-to-ref decl
10456 typedef int & int_ref;
10457 void foo(int_ref &); // valid ref-to-ref decl
10459 if (inner_declarator && inner_declarator->kind == cdk_reference)
10460 error ("cannot declare reference to %q#T, which is not "
10461 "a typedef or a template type argument", type);
10463 else if (TREE_CODE (type) == METHOD_TYPE)
10464 type = build_ptrmemfunc_type (build_pointer_type (type));
10465 else if (declarator->kind == cdk_ptrmem)
10467 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
10468 != NAMESPACE_DECL);
10469 if (declarator->u.pointer.class_type == error_mark_node)
10470 /* We will already have complained. */
10471 type = error_mark_node;
10472 else
10473 type = build_ptrmem_type (declarator->u.pointer.class_type,
10474 type);
10476 else
10477 type = build_pointer_type (type);
10479 /* Process a list of type modifier keywords (such as
10480 const or volatile) that were given inside the `*' or `&'. */
10482 if (declarator->u.pointer.qualifiers)
10484 type
10485 = cp_build_qualified_type (type,
10486 declarator->u.pointer.qualifiers);
10487 type_quals = cp_type_quals (type);
10490 /* Apply C++11 attributes to the pointer, and not to the
10491 type pointed to. This is unlike what is done for GNU
10492 attributes above. It is to comply with [dcl.ptr]/1:
10494 [the optional attribute-specifier-seq (7.6.1) appertains
10495 to the pointer and not to the object pointed to]. */
10496 if (declarator->std_attributes)
10497 decl_attributes (&type, declarator->std_attributes,
10500 ctype = NULL_TREE;
10501 break;
10503 case cdk_error:
10504 break;
10506 default:
10507 gcc_unreachable ();
10511 /* A `constexpr' specifier used in an object declaration declares
10512 the object as `const'. */
10513 if (constexpr_p && innermost_code != cdk_function)
10515 /* DR1688 says that a `constexpr' specifier in combination with
10516 `volatile' is valid. */
10518 if (TREE_CODE (type) != REFERENCE_TYPE)
10520 type_quals |= TYPE_QUAL_CONST;
10521 type = cp_build_qualified_type (type, type_quals);
10525 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
10526 && TREE_CODE (type) != FUNCTION_TYPE
10527 && TREE_CODE (type) != METHOD_TYPE
10528 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
10530 error ("template-id %qD used as a declarator",
10531 unqualified_id);
10532 unqualified_id = dname;
10535 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
10536 qualified with a class-name, turn it into a METHOD_TYPE, unless
10537 we know that the function is static. We take advantage of this
10538 opportunity to do other processing that pertains to entities
10539 explicitly declared to be class members. Note that if DECLARATOR
10540 is non-NULL, we know it is a cdk_id declarator; otherwise, we
10541 would not have exited the loop above. */
10542 if (declarator
10543 && declarator->u.id.qualifying_scope
10544 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
10546 ctype = declarator->u.id.qualifying_scope;
10547 ctype = TYPE_MAIN_VARIANT (ctype);
10548 template_count = num_template_headers_for_class (ctype);
10550 if (ctype == current_class_type)
10552 if (friendp)
10554 permerror (input_location, "member functions are implicitly friends of their class");
10555 friendp = 0;
10557 else
10558 permerror (declarator->id_loc,
10559 "extra qualification %<%T::%> on member %qs",
10560 ctype, name);
10562 else if (/* If the qualifying type is already complete, then we
10563 can skip the following checks. */
10564 !COMPLETE_TYPE_P (ctype)
10565 && (/* If the function is being defined, then
10566 qualifying type must certainly be complete. */
10567 funcdef_flag
10568 /* A friend declaration of "T::f" is OK, even if
10569 "T" is a template parameter. But, if this
10570 function is not a friend, the qualifying type
10571 must be a class. */
10572 || (!friendp && !CLASS_TYPE_P (ctype))
10573 /* For a declaration, the type need not be
10574 complete, if either it is dependent (since there
10575 is no meaningful definition of complete in that
10576 case) or the qualifying class is currently being
10577 defined. */
10578 || !(dependent_type_p (ctype)
10579 || currently_open_class (ctype)))
10580 /* Check that the qualifying type is complete. */
10581 && !complete_type_or_else (ctype, NULL_TREE))
10582 return error_mark_node;
10583 else if (TREE_CODE (type) == FUNCTION_TYPE)
10585 if (current_class_type
10586 && (!friendp || funcdef_flag))
10588 error (funcdef_flag
10589 ? G_("cannot define member function %<%T::%s%> "
10590 "within %<%T%>")
10591 : G_("cannot declare member function %<%T::%s%> "
10592 "within %<%T%>"),
10593 ctype, name, current_class_type);
10594 return error_mark_node;
10597 else if (typedef_p && current_class_type)
10599 error ("cannot declare member %<%T::%s%> within %qT",
10600 ctype, name, current_class_type);
10601 return error_mark_node;
10605 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
10606 ctype = current_class_type;
10608 /* Now TYPE has the actual type. */
10610 if (returned_attrs)
10612 if (attrlist)
10613 *attrlist = chainon (returned_attrs, *attrlist);
10614 else
10615 attrlist = &returned_attrs;
10618 if (declarator
10619 && declarator->kind == cdk_id
10620 && declarator->std_attributes)
10621 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
10622 a declarator-id appertains to the entity that is declared. */
10623 *attrlist = chainon (*attrlist, declarator->std_attributes);
10625 /* Handle parameter packs. */
10626 if (parameter_pack_p)
10628 if (decl_context == PARM)
10629 /* Turn the type into a pack expansion.*/
10630 type = make_pack_expansion (type);
10631 else
10632 error ("non-parameter %qs cannot be a parameter pack", name);
10635 if ((decl_context == FIELD || decl_context == PARM)
10636 && !processing_template_decl
10637 && variably_modified_type_p (type, NULL_TREE))
10639 if (decl_context == FIELD)
10640 error ("data member may not have variably modified type %qT", type);
10641 else
10642 error ("parameter may not have variably modified type %qT", type);
10643 type = error_mark_node;
10646 if (explicitp == 1 || (explicitp && friendp))
10648 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
10649 in the declaration of a constructor or conversion function within
10650 a class definition. */
10651 if (!current_class_type)
10652 error_at (declspecs->locations[ds_explicit],
10653 "%<explicit%> outside class declaration");
10654 else if (friendp)
10655 error_at (declspecs->locations[ds_explicit],
10656 "%<explicit%> in friend declaration");
10657 else
10658 error_at (declspecs->locations[ds_explicit],
10659 "only declarations of constructors and conversion operators "
10660 "can be %<explicit%>");
10661 explicitp = 0;
10664 if (storage_class == sc_mutable)
10666 if (decl_context != FIELD || friendp)
10668 error ("non-member %qs cannot be declared %<mutable%>", name);
10669 storage_class = sc_none;
10671 else if (decl_context == TYPENAME || typedef_p)
10673 error ("non-object member %qs cannot be declared %<mutable%>", name);
10674 storage_class = sc_none;
10676 else if (TREE_CODE (type) == FUNCTION_TYPE
10677 || TREE_CODE (type) == METHOD_TYPE)
10679 error ("function %qs cannot be declared %<mutable%>", name);
10680 storage_class = sc_none;
10682 else if (staticp)
10684 error ("static %qs cannot be declared %<mutable%>", name);
10685 storage_class = sc_none;
10687 else if (type_quals & TYPE_QUAL_CONST)
10689 error ("const %qs cannot be declared %<mutable%>", name);
10690 storage_class = sc_none;
10692 else if (TREE_CODE (type) == REFERENCE_TYPE)
10694 permerror (input_location, "reference %qs cannot be declared "
10695 "%<mutable%>", name);
10696 storage_class = sc_none;
10700 /* If this is declaring a typedef name, return a TYPE_DECL. */
10701 if (typedef_p && decl_context != TYPENAME)
10703 tree decl;
10705 /* Note that the grammar rejects storage classes
10706 in typenames, fields or parameters. */
10707 if (current_lang_name == lang_name_java)
10708 TYPE_FOR_JAVA (type) = 1;
10710 /* This declaration:
10712 typedef void f(int) const;
10714 declares a function type which is not a member of any
10715 particular class, but which is cv-qualified; for
10716 example "f S::*" declares a pointer to a const-qualified
10717 member function of S. We record the cv-qualification in the
10718 function type. */
10719 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
10721 type = apply_memfn_quals (type, memfn_quals, rqual);
10723 /* We have now dealt with these qualifiers. */
10724 memfn_quals = TYPE_UNQUALIFIED;
10725 rqual = REF_QUAL_NONE;
10728 if (type_uses_auto (type))
10730 error ("typedef declared %<auto%>");
10731 type = error_mark_node;
10734 if (reqs)
10735 error_at (location_of (reqs), "requires-clause on typedef");
10737 if (decl_context == FIELD)
10738 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
10739 else
10740 decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
10741 if (id_declarator && declarator->u.id.qualifying_scope) {
10742 error_at (DECL_SOURCE_LOCATION (decl),
10743 "typedef name may not be a nested-name-specifier");
10744 TREE_TYPE (decl) = error_mark_node;
10747 if (decl_context != FIELD)
10749 if (!current_function_decl)
10750 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
10751 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl)
10752 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
10753 (current_function_decl)))
10754 /* The TYPE_DECL is "abstract" because there will be
10755 clones of this constructor/destructor, and there will
10756 be copies of this TYPE_DECL generated in those
10757 clones. The decloning optimization (for space) may
10758 revert this subsequently if it determines that
10759 the clones should share a common implementation. */
10760 DECL_ABSTRACT_P (decl) = true;
10762 else if (current_class_type
10763 && constructor_name_p (unqualified_id, current_class_type))
10764 permerror (input_location, "ISO C++ forbids nested type %qD with same name "
10765 "as enclosing class",
10766 unqualified_id);
10768 /* If the user declares "typedef struct {...} foo" then the
10769 struct will have an anonymous name. Fill that name in now.
10770 Nothing can refer to it, so nothing needs know about the name
10771 change. */
10772 if (type != error_mark_node
10773 && unqualified_id
10774 && TYPE_NAME (type)
10775 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10776 && TYPE_ANONYMOUS_P (type)
10777 && declspecs->type_definition_p
10778 && attributes_naming_typedef_ok (*attrlist)
10779 && cp_type_quals (type) == TYPE_UNQUALIFIED)
10781 tree t;
10783 /* Replace the anonymous name with the real name everywhere. */
10784 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
10786 if (anon_aggrname_p (TYPE_IDENTIFIER (t)))
10787 /* We do not rename the debug info representing the
10788 anonymous tagged type because the standard says in
10789 [dcl.typedef] that the naming applies only for
10790 linkage purposes. */
10791 /*debug_hooks->set_name (t, decl);*/
10792 TYPE_NAME (t) = decl;
10795 if (TYPE_LANG_SPECIFIC (type))
10796 TYPE_WAS_ANONYMOUS (type) = 1;
10798 /* If this is a typedef within a template class, the nested
10799 type is a (non-primary) template. The name for the
10800 template needs updating as well. */
10801 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
10802 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
10803 = TYPE_IDENTIFIER (type);
10805 /* Adjust linkage now that we aren't anonymous anymore. */
10806 reset_type_linkage (type);
10808 /* FIXME remangle member functions; member functions of a
10809 type with external linkage have external linkage. */
10812 if (signed_p
10813 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
10814 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
10816 bad_specifiers (decl, BSP_TYPE, virtualp,
10817 memfn_quals != TYPE_UNQUALIFIED,
10818 inlinep, friendp, raises != NULL_TREE);
10820 if (decl_spec_seq_has_spec_p (declspecs, ds_alias))
10821 /* Acknowledge that this was written:
10822 `using analias = atype;'. */
10823 TYPE_DECL_ALIAS_P (decl) = 1;
10825 return decl;
10828 /* Detect the case of an array type of unspecified size
10829 which came, as such, direct from a typedef name.
10830 We must copy the type, so that the array's domain can be
10831 individually set by the object's initializer. */
10833 if (type && typedef_type
10834 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
10835 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
10836 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
10838 /* Detect where we're using a typedef of function type to declare a
10839 function. PARMS will not be set, so we must create it now. */
10841 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
10843 tree decls = NULL_TREE;
10844 tree args;
10846 for (args = TYPE_ARG_TYPES (type);
10847 args && args != void_list_node;
10848 args = TREE_CHAIN (args))
10850 tree decl = cp_build_parm_decl (NULL_TREE, TREE_VALUE (args));
10852 DECL_CHAIN (decl) = decls;
10853 decls = decl;
10856 parms = nreverse (decls);
10858 if (decl_context != TYPENAME)
10860 /* The qualifiers on the function type become the qualifiers on
10861 the non-static member function. */
10862 memfn_quals |= type_memfn_quals (type);
10863 rqual = type_memfn_rqual (type);
10864 type_quals = TYPE_UNQUALIFIED;
10868 /* If this is a type name (such as, in a cast or sizeof),
10869 compute the type and return it now. */
10871 if (decl_context == TYPENAME)
10873 /* Note that here we don't care about type_quals. */
10875 /* Special case: "friend class foo" looks like a TYPENAME context. */
10876 if (friendp)
10878 if (inlinep)
10880 error ("%<inline%> specified for friend class declaration");
10881 inlinep = 0;
10884 if (!current_aggr)
10886 /* Don't allow friend declaration without a class-key. */
10887 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
10888 permerror (input_location, "template parameters cannot be friends");
10889 else if (TREE_CODE (type) == TYPENAME_TYPE)
10890 permerror (input_location, "friend declaration requires class-key, "
10891 "i.e. %<friend class %T::%D%>",
10892 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
10893 else
10894 permerror (input_location, "friend declaration requires class-key, "
10895 "i.e. %<friend %#T%>",
10896 type);
10899 /* Only try to do this stuff if we didn't already give up. */
10900 if (type != integer_type_node)
10902 /* A friendly class? */
10903 if (current_class_type)
10904 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
10905 /*complain=*/true);
10906 else
10907 error ("trying to make class %qT a friend of global scope",
10908 type);
10910 type = void_type_node;
10913 else if (memfn_quals || rqual)
10915 if (ctype == NULL_TREE
10916 && TREE_CODE (type) == METHOD_TYPE)
10917 ctype = TYPE_METHOD_BASETYPE (type);
10919 if (ctype)
10920 type = build_memfn_type (type, ctype, memfn_quals, rqual);
10921 /* Core issue #547: need to allow this in template type args.
10922 Allow it in general in C++11 for alias-declarations. */
10923 else if ((template_type_arg || cxx_dialect >= cxx11)
10924 && TREE_CODE (type) == FUNCTION_TYPE)
10925 type = apply_memfn_quals (type, memfn_quals, rqual);
10926 else
10927 error ("invalid qualifiers on non-member function type");
10930 if (reqs)
10931 error_at (location_of (reqs), "requires-clause on type-id");
10933 return type;
10935 else if (unqualified_id == NULL_TREE && decl_context != PARM
10936 && decl_context != CATCHPARM
10937 && TREE_CODE (type) != UNION_TYPE
10938 && ! bitfield)
10940 error ("abstract declarator %qT used as declaration", type);
10941 return error_mark_node;
10944 /* Only functions may be declared using an operator-function-id. */
10945 if (unqualified_id
10946 && IDENTIFIER_OPNAME_P (unqualified_id)
10947 && TREE_CODE (type) != FUNCTION_TYPE
10948 && TREE_CODE (type) != METHOD_TYPE)
10950 error ("declaration of %qD as non-function", unqualified_id);
10951 return error_mark_node;
10954 if (reqs
10955 && TREE_CODE (type) != FUNCTION_TYPE
10956 && TREE_CODE (type) != METHOD_TYPE)
10957 error_at (location_of (reqs),
10958 "requires-clause on declaration of non-function type %qT",
10959 type);
10961 /* We don't check parameter types here because we can emit a better
10962 error message later. */
10963 if (decl_context != PARM)
10965 type = check_var_type (unqualified_id, type);
10966 if (type == error_mark_node)
10967 return error_mark_node;
10970 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
10971 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
10973 if (decl_context == PARM || decl_context == CATCHPARM)
10975 if (ctype || in_namespace)
10976 error ("cannot use %<::%> in parameter declaration");
10978 if (type_uses_auto (type))
10980 if (cxx_dialect >= cxx14)
10981 error ("%<auto%> parameter not permitted in this context");
10982 else
10983 error ("parameter declared %<auto%>");
10984 type = error_mark_node;
10987 /* A parameter declared as an array of T is really a pointer to T.
10988 One declared as a function is really a pointer to a function.
10989 One declared as a member is really a pointer to member. */
10991 if (TREE_CODE (type) == ARRAY_TYPE)
10993 /* Transfer const-ness of array into that of type pointed to. */
10994 type = build_pointer_type (TREE_TYPE (type));
10995 type_quals = TYPE_UNQUALIFIED;
10996 array_parameter_p = true;
10998 else if (TREE_CODE (type) == FUNCTION_TYPE)
10999 type = build_pointer_type (type);
11002 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
11003 && !NEW_DELETE_OPNAME_P (unqualified_id))
11005 cp_cv_quals real_quals = memfn_quals;
11006 if (cxx_dialect < cxx14 && constexpr_p
11007 && sfk != sfk_constructor && sfk != sfk_destructor)
11008 real_quals |= TYPE_QUAL_CONST;
11009 type = build_memfn_type (type, ctype, real_quals, rqual);
11013 tree decl = NULL_TREE;
11015 if (decl_context == PARM)
11017 decl = cp_build_parm_decl (unqualified_id, type);
11018 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
11020 bad_specifiers (decl, BSP_PARM, virtualp,
11021 memfn_quals != TYPE_UNQUALIFIED,
11022 inlinep, friendp, raises != NULL_TREE);
11024 else if (decl_context == FIELD)
11026 if (!staticp && !friendp && TREE_CODE (type) != METHOD_TYPE
11027 && type_uses_auto (type))
11029 error ("non-static data member declared %<auto%>");
11030 type = error_mark_node;
11033 /* The C99 flexible array extension. */
11034 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
11035 && TYPE_DOMAIN (type) == NULL_TREE)
11037 if (ctype
11038 && (TREE_CODE (ctype) == UNION_TYPE
11039 || TREE_CODE (ctype) == QUAL_UNION_TYPE))
11041 error ("flexible array member in union");
11042 type = error_mark_node;
11044 else
11046 /* Flexible array member has a null domain. */
11047 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
11051 if (type == error_mark_node)
11053 /* Happens when declaring arrays of sizes which
11054 are error_mark_node, for example. */
11055 decl = NULL_TREE;
11057 else if (in_namespace && !friendp)
11059 /* Something like struct S { int N::j; }; */
11060 error ("invalid use of %<::%>");
11061 return error_mark_node;
11063 else if (TREE_CODE (type) == FUNCTION_TYPE
11064 || TREE_CODE (type) == METHOD_TYPE)
11066 int publicp = 0;
11067 tree function_context;
11069 if (friendp == 0)
11071 /* This should never happen in pure C++ (the check
11072 could be an assert). It could happen in
11073 Objective-C++ if someone writes invalid code that
11074 uses a function declaration for an instance
11075 variable or property (instance variables and
11076 properties are parsed as FIELD_DECLs, but they are
11077 part of an Objective-C class, not a C++ class).
11078 That code is invalid and is caught by this
11079 check. */
11080 if (!ctype)
11082 error ("declaration of function %qD in invalid context",
11083 unqualified_id);
11084 return error_mark_node;
11087 /* ``A union may [ ... ] not [ have ] virtual functions.''
11088 ARM 9.5 */
11089 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
11091 error ("function %qD declared %<virtual%> inside a union",
11092 unqualified_id);
11093 return error_mark_node;
11096 if (NEW_DELETE_OPNAME_P (unqualified_id))
11098 if (virtualp)
11100 error ("%qD cannot be declared %<virtual%>, since it "
11101 "is always static",
11102 unqualified_id);
11103 virtualp = 0;
11108 /* Check that the name used for a destructor makes sense. */
11109 if (sfk == sfk_destructor)
11111 tree uqname = id_declarator->u.id.unqualified_name;
11113 if (!ctype)
11115 gcc_assert (friendp);
11116 error ("expected qualified name in friend declaration "
11117 "for destructor %qD", uqname);
11118 return error_mark_node;
11121 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
11123 error ("declaration of %qD as member of %qT",
11124 uqname, ctype);
11125 return error_mark_node;
11127 if (concept_p)
11129 error ("a destructor cannot be %<concept%>");
11130 return error_mark_node;
11132 if (constexpr_p)
11134 error ("a destructor cannot be %<constexpr%>");
11135 return error_mark_node;
11138 else if (sfk == sfk_constructor && friendp && !ctype)
11140 error ("expected qualified name in friend declaration "
11141 "for constructor %qD",
11142 id_declarator->u.id.unqualified_name);
11143 return error_mark_node;
11145 if (sfk == sfk_constructor)
11146 if (concept_p)
11148 error ("a constructor cannot be %<concept%>");
11149 return error_mark_node;
11151 if (concept_p)
11153 error ("a concept cannot be a member function");
11154 concept_p = false;
11157 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
11159 tree tmpl = TREE_OPERAND (unqualified_id, 0);
11160 if (variable_template_p (tmpl))
11162 error ("specialization of variable template %qD "
11163 "declared as function", tmpl);
11164 inform (DECL_SOURCE_LOCATION (tmpl),
11165 "variable template declared here");
11166 return error_mark_node;
11170 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
11171 function_context = (ctype != NULL_TREE) ?
11172 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
11173 publicp = (! friendp || ! staticp)
11174 && function_context == NULL_TREE;
11176 if (late_return_type_p)
11177 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
11179 decl = grokfndecl (ctype, type,
11180 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
11181 ? unqualified_id : dname,
11182 parms,
11183 unqualified_id,
11184 reqs,
11185 virtualp, flags, memfn_quals, rqual, raises,
11186 friendp ? -1 : 0, friendp, publicp,
11187 inlinep | (2 * constexpr_p) | (4 * concept_p),
11188 initialized == SD_DELETED, sfk,
11189 funcdef_flag, template_count, in_namespace,
11190 attrlist, declarator->id_loc);
11191 decl = set_virt_specifiers (decl, virt_specifiers);
11192 if (decl == NULL_TREE)
11193 return error_mark_node;
11194 #if 0
11195 /* This clobbers the attrs stored in `decl' from `attrlist'. */
11196 /* The decl and setting of decl_attr is also turned off. */
11197 decl = build_decl_attribute_variant (decl, decl_attr);
11198 #endif
11200 /* [class.conv.ctor]
11202 A constructor declared without the function-specifier
11203 explicit that can be called with a single parameter
11204 specifies a conversion from the type of its first
11205 parameter to the type of its class. Such a constructor
11206 is called a converting constructor. */
11207 if (explicitp == 2)
11208 DECL_NONCONVERTING_P (decl) = 1;
11210 else if (!staticp && !dependent_type_p (type)
11211 && !COMPLETE_TYPE_P (complete_type (type))
11212 && (!complete_or_array_type_p (type)
11213 || initialized == 0))
11215 if (TREE_CODE (type) != ARRAY_TYPE
11216 || !COMPLETE_TYPE_P (TREE_TYPE (type)))
11218 if (unqualified_id)
11220 error ("field %qD has incomplete type %qT",
11221 unqualified_id, type);
11222 cxx_incomplete_type_inform (strip_array_types (type));
11224 else
11225 error ("name %qT has incomplete type", type);
11227 type = error_mark_node;
11228 decl = NULL_TREE;
11231 else
11233 if (friendp)
11235 error ("%qE is neither function nor member function; "
11236 "cannot be declared friend", unqualified_id);
11237 friendp = 0;
11239 decl = NULL_TREE;
11242 if (friendp)
11244 /* Friends are treated specially. */
11245 if (ctype == current_class_type)
11246 ; /* We already issued a permerror. */
11247 else if (decl && DECL_NAME (decl))
11249 if (template_class_depth (current_class_type) == 0)
11251 decl = check_explicit_specialization
11252 (unqualified_id, decl, template_count,
11253 2 * funcdef_flag + 4);
11254 if (decl == error_mark_node)
11255 return error_mark_node;
11258 decl = do_friend (ctype, unqualified_id, decl,
11259 *attrlist, flags,
11260 funcdef_flag);
11261 return decl;
11263 else
11264 return error_mark_node;
11267 /* Structure field. It may not be a function, except for C++. */
11269 if (decl == NULL_TREE)
11271 if (staticp)
11273 /* C++ allows static class members. All other work
11274 for this is done by grokfield. */
11275 decl = build_lang_decl_loc (declarator
11276 ? declarator->id_loc
11277 : input_location,
11278 VAR_DECL, unqualified_id, type);
11279 set_linkage_for_static_data_member (decl);
11280 /* Even if there is an in-class initialization, DECL
11281 is considered undefined until an out-of-class
11282 definition is provided. */
11283 DECL_EXTERNAL (decl) = 1;
11285 if (thread_p)
11287 CP_DECL_THREAD_LOCAL_P (decl) = true;
11288 if (!processing_template_decl)
11289 set_decl_tls_model (decl, decl_default_tls_model (decl));
11290 if (declspecs->gnu_thread_keyword_p)
11291 SET_DECL_GNU_TLS_P (decl);
11293 if (concept_p)
11294 error ("static data member %qE declared %<concept%>",
11295 unqualified_id);
11296 else if (constexpr_p && !initialized)
11298 error ("constexpr static data member %qD must have an "
11299 "initializer", decl);
11300 constexpr_p = false;
11303 else
11305 if (concept_p)
11306 error ("non-static data member %qE declared %<concept%>",
11307 unqualified_id);
11308 else if (constexpr_p)
11310 error ("non-static data member %qE declared %<constexpr%>",
11311 unqualified_id);
11312 constexpr_p = false;
11314 decl = build_decl (input_location,
11315 FIELD_DECL, unqualified_id, type);
11316 DECL_NONADDRESSABLE_P (decl) = bitfield;
11317 if (bitfield && !unqualified_id)
11318 TREE_NO_WARNING (decl) = 1;
11320 if (storage_class == sc_mutable)
11322 DECL_MUTABLE_P (decl) = 1;
11323 storage_class = sc_none;
11326 if (initialized)
11328 /* An attempt is being made to initialize a non-static
11329 member. This is new in C++11. */
11330 maybe_warn_cpp0x (CPP0X_NSDMI);
11332 /* If this has been parsed with static storage class, but
11333 errors forced staticp to be cleared, ensure NSDMI is
11334 not present. */
11335 if (declspecs->storage_class == sc_static)
11336 DECL_INITIAL (decl) = error_mark_node;
11340 bad_specifiers (decl, BSP_FIELD, virtualp,
11341 memfn_quals != TYPE_UNQUALIFIED,
11342 inlinep, friendp, raises != NULL_TREE);
11345 else if (TREE_CODE (type) == FUNCTION_TYPE
11346 || TREE_CODE (type) == METHOD_TYPE)
11348 tree original_name;
11349 int publicp = 0;
11351 if (!unqualified_id)
11352 return error_mark_node;
11354 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
11355 original_name = dname;
11356 else
11357 original_name = unqualified_id;
11359 if (storage_class == sc_auto)
11360 error ("storage class %<auto%> invalid for function %qs", name);
11361 else if (storage_class == sc_register)
11362 error ("storage class %<register%> invalid for function %qs", name);
11363 else if (thread_p)
11365 if (declspecs->gnu_thread_keyword_p)
11366 error ("storage class %<__thread%> invalid for function %qs",
11367 name);
11368 else
11369 error ("storage class %<thread_local%> invalid for function %qs",
11370 name);
11373 if (virt_specifiers)
11374 error ("virt-specifiers in %qs not allowed outside a class definition", name);
11375 /* Function declaration not at top level.
11376 Storage classes other than `extern' are not allowed
11377 and `extern' makes no difference. */
11378 if (! toplevel_bindings_p ()
11379 && (storage_class == sc_static
11380 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
11381 && pedantic)
11383 if (storage_class == sc_static)
11384 pedwarn (input_location, OPT_Wpedantic,
11385 "%<static%> specifier invalid for function %qs "
11386 "declared out of global scope", name);
11387 else
11388 pedwarn (input_location, OPT_Wpedantic,
11389 "%<inline%> specifier invalid for function %qs "
11390 "declared out of global scope", name);
11393 if (ctype == NULL_TREE)
11395 if (virtualp)
11397 error ("virtual non-class function %qs", name);
11398 virtualp = 0;
11400 else if (sfk == sfk_constructor
11401 || sfk == sfk_destructor)
11403 error (funcdef_flag
11404 ? G_("%qs defined in a non-class scope")
11405 : G_("%qs declared in a non-class scope"), name);
11406 sfk = sfk_none;
11410 /* Record whether the function is public. */
11411 publicp = (ctype != NULL_TREE
11412 || storage_class != sc_static);
11414 if (late_return_type_p)
11415 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
11417 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
11418 reqs, virtualp, flags, memfn_quals, rqual, raises,
11419 1, friendp,
11420 publicp,
11421 inlinep | (2 * constexpr_p) | (4 * concept_p),
11422 initialized == SD_DELETED,
11423 sfk,
11424 funcdef_flag,
11425 template_count, in_namespace, attrlist,
11426 declarator->id_loc);
11427 if (decl == NULL_TREE)
11428 return error_mark_node;
11430 if (staticp == 1)
11432 int invalid_static = 0;
11434 /* Don't allow a static member function in a class, and forbid
11435 declaring main to be static. */
11436 if (TREE_CODE (type) == METHOD_TYPE)
11438 permerror (input_location, "cannot declare member function %qD to have "
11439 "static linkage", decl);
11440 invalid_static = 1;
11442 else if (current_function_decl)
11444 /* 7.1.1: There can be no static function declarations within a
11445 block. */
11446 error ("cannot declare static function inside another function");
11447 invalid_static = 1;
11450 if (invalid_static)
11452 staticp = 0;
11453 storage_class = sc_none;
11457 else
11459 /* It's a variable. */
11461 /* An uninitialized decl with `extern' is a reference. */
11462 decl = grokvardecl (type, dname, unqualified_id,
11463 declspecs,
11464 initialized,
11465 ((type_quals & TYPE_QUAL_CONST) != 0) | (2 * concept_p),
11466 template_count,
11467 ctype ? ctype : in_namespace);
11468 if (decl == NULL_TREE)
11469 return error_mark_node;
11471 bad_specifiers (decl, BSP_VAR, virtualp,
11472 memfn_quals != TYPE_UNQUALIFIED,
11473 inlinep, friendp, raises != NULL_TREE);
11475 if (ctype)
11477 DECL_CONTEXT (decl) = ctype;
11478 if (staticp == 1)
11480 permerror (input_location, "%<static%> may not be used when defining "
11481 "(as opposed to declaring) a static data member");
11482 staticp = 0;
11483 storage_class = sc_none;
11485 if (storage_class == sc_register && TREE_STATIC (decl))
11487 error ("static member %qD declared %<register%>", decl);
11488 storage_class = sc_none;
11490 if (storage_class == sc_extern && pedantic)
11492 pedwarn (input_location, OPT_Wpedantic,
11493 "cannot explicitly declare member %q#D to have "
11494 "extern linkage", decl);
11495 storage_class = sc_none;
11498 else if (constexpr_p && DECL_EXTERNAL (decl))
11500 error ("declaration of constexpr variable %qD is not a definition",
11501 decl);
11502 constexpr_p = false;
11506 if (storage_class == sc_extern && initialized && !funcdef_flag)
11508 if (toplevel_bindings_p ())
11510 /* It's common practice (and completely valid) to have a const
11511 be initialized and declared extern. */
11512 if (!(type_quals & TYPE_QUAL_CONST))
11513 warning (0, "%qs initialized and declared %<extern%>", name);
11515 else
11517 error ("%qs has both %<extern%> and initializer", name);
11518 return error_mark_node;
11522 /* Record `register' declaration for warnings on &
11523 and in case doing stupid register allocation. */
11525 if (storage_class == sc_register)
11526 DECL_REGISTER (decl) = 1;
11527 else if (storage_class == sc_extern)
11528 DECL_THIS_EXTERN (decl) = 1;
11529 else if (storage_class == sc_static)
11530 DECL_THIS_STATIC (decl) = 1;
11532 /* Set constexpr flag on vars (functions got it in grokfndecl). */
11533 if (constexpr_p && VAR_P (decl))
11534 DECL_DECLARED_CONSTEXPR_P (decl) = true;
11536 /* Record constancy and volatility on the DECL itself . There's
11537 no need to do this when processing a template; we'll do this
11538 for the instantiated declaration based on the type of DECL. */
11539 if (!processing_template_decl)
11540 cp_apply_type_quals_to_decl (type_quals, decl);
11542 return decl;
11546 /* Subroutine of start_function. Ensure that each of the parameter
11547 types (as listed in PARMS) is complete, as is required for a
11548 function definition. */
11550 static void
11551 require_complete_types_for_parms (tree parms)
11553 for (; parms; parms = DECL_CHAIN (parms))
11555 if (dependent_type_p (TREE_TYPE (parms)))
11556 continue;
11557 if (!VOID_TYPE_P (TREE_TYPE (parms))
11558 && complete_type_or_else (TREE_TYPE (parms), parms))
11560 relayout_decl (parms);
11561 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
11563 else
11564 /* grokparms or complete_type_or_else will have already issued
11565 an error. */
11566 TREE_TYPE (parms) = error_mark_node;
11570 /* Returns nonzero if T is a local variable. */
11573 local_variable_p (const_tree t)
11575 if ((VAR_P (t)
11576 /* A VAR_DECL with a context that is a _TYPE is a static data
11577 member. */
11578 && !TYPE_P (CP_DECL_CONTEXT (t))
11579 /* Any other non-local variable must be at namespace scope. */
11580 && !DECL_NAMESPACE_SCOPE_P (t))
11581 || (TREE_CODE (t) == PARM_DECL))
11582 return 1;
11584 return 0;
11587 /* Like local_variable_p, but suitable for use as a tree-walking
11588 function. */
11590 static tree
11591 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
11592 void * /*data*/)
11594 if (local_variable_p (*tp)
11595 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
11596 return *tp;
11597 else if (TYPE_P (*tp))
11598 *walk_subtrees = 0;
11600 return NULL_TREE;
11603 /* Check that ARG, which is a default-argument expression for a
11604 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
11605 something goes wrong. DECL may also be a _TYPE node, rather than a
11606 DECL, if there is no DECL available. */
11608 tree
11609 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
11611 tree var;
11612 tree decl_type;
11614 if (TREE_CODE (arg) == DEFAULT_ARG)
11615 /* We get a DEFAULT_ARG when looking at an in-class declaration
11616 with a default argument. Ignore the argument for now; we'll
11617 deal with it after the class is complete. */
11618 return arg;
11620 if (TYPE_P (decl))
11622 decl_type = decl;
11623 decl = NULL_TREE;
11625 else
11626 decl_type = TREE_TYPE (decl);
11628 if (arg == error_mark_node
11629 || decl == error_mark_node
11630 || TREE_TYPE (arg) == error_mark_node
11631 || decl_type == error_mark_node)
11632 /* Something already went wrong. There's no need to check
11633 further. */
11634 return error_mark_node;
11636 /* [dcl.fct.default]
11638 A default argument expression is implicitly converted to the
11639 parameter type. */
11640 ++cp_unevaluated_operand;
11641 perform_implicit_conversion_flags (decl_type, arg, complain,
11642 LOOKUP_IMPLICIT);
11643 --cp_unevaluated_operand;
11645 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
11646 the call sites. */
11647 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
11648 && null_ptr_cst_p (arg))
11649 return nullptr_node;
11651 /* [dcl.fct.default]
11653 Local variables shall not be used in default argument
11654 expressions.
11656 The keyword `this' shall not be used in a default argument of a
11657 member function. */
11658 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
11659 if (var)
11661 if (complain & tf_warning_or_error)
11663 if (DECL_NAME (var) == this_identifier)
11664 permerror (input_location, "default argument %qE uses %qD",
11665 arg, var);
11666 else
11667 error ("default argument %qE uses local variable %qD", arg, var);
11669 return error_mark_node;
11672 /* All is well. */
11673 return arg;
11676 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
11678 static tree
11679 type_is_deprecated (tree type)
11681 enum tree_code code;
11682 if (TREE_DEPRECATED (type))
11683 return type;
11684 if (TYPE_NAME (type))
11686 if (TREE_DEPRECATED (TYPE_NAME (type)))
11687 return type;
11688 else
11689 return NULL_TREE;
11692 /* Do warn about using typedefs to a deprecated class. */
11693 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
11694 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
11696 code = TREE_CODE (type);
11698 if (code == POINTER_TYPE || code == REFERENCE_TYPE
11699 || code == OFFSET_TYPE || code == FUNCTION_TYPE
11700 || code == METHOD_TYPE || code == ARRAY_TYPE)
11701 return type_is_deprecated (TREE_TYPE (type));
11703 if (TYPE_PTRMEMFUNC_P (type))
11704 return type_is_deprecated
11705 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
11707 return NULL_TREE;
11710 /* Decode the list of parameter types for a function type.
11711 Given the list of things declared inside the parens,
11712 return a list of types.
11714 If this parameter does not end with an ellipsis, we append
11715 void_list_node.
11717 *PARMS is set to the chain of PARM_DECLs created. */
11719 tree
11720 grokparms (tree parmlist, tree *parms)
11722 tree result = NULL_TREE;
11723 tree decls = NULL_TREE;
11724 tree parm;
11725 int any_error = 0;
11727 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
11729 tree type = NULL_TREE;
11730 tree init = TREE_PURPOSE (parm);
11731 tree decl = TREE_VALUE (parm);
11733 if (parm == void_list_node)
11734 break;
11736 if (! decl || TREE_TYPE (decl) == error_mark_node)
11737 continue;
11739 type = TREE_TYPE (decl);
11740 if (VOID_TYPE_P (type))
11742 if (same_type_p (type, void_type_node)
11743 && !init
11744 && !DECL_NAME (decl) && !result
11745 && TREE_CHAIN (parm) == void_list_node)
11746 /* DR 577: A parameter list consisting of a single
11747 unnamed parameter of non-dependent type 'void'. */
11748 break;
11749 else if (cv_qualified_p (type))
11750 error_at (DECL_SOURCE_LOCATION (decl),
11751 "invalid use of cv-qualified type %qT in "
11752 "parameter declaration", type);
11753 else
11754 error_at (DECL_SOURCE_LOCATION (decl),
11755 "invalid use of type %<void%> in parameter "
11756 "declaration");
11757 /* It's not a good idea to actually create parameters of
11758 type `void'; other parts of the compiler assume that a
11759 void type terminates the parameter list. */
11760 type = error_mark_node;
11761 TREE_TYPE (decl) = error_mark_node;
11764 if (type != error_mark_node
11765 && TYPE_FOR_JAVA (type)
11766 && MAYBE_CLASS_TYPE_P (type))
11768 error ("parameter %qD has Java class type", decl);
11769 type = error_mark_node;
11770 TREE_TYPE (decl) = error_mark_node;
11771 init = NULL_TREE;
11774 if (type != error_mark_node)
11776 if (deprecated_state != DEPRECATED_SUPPRESS)
11778 tree deptype = type_is_deprecated (type);
11779 if (deptype)
11780 warn_deprecated_use (deptype, NULL_TREE);
11783 /* Top-level qualifiers on the parameters are
11784 ignored for function types. */
11785 type = cp_build_qualified_type (type, 0);
11786 if (TREE_CODE (type) == METHOD_TYPE)
11788 error ("parameter %qD invalidly declared method type", decl);
11789 type = build_pointer_type (type);
11790 TREE_TYPE (decl) = type;
11792 else if (abstract_virtuals_error (decl, type))
11793 any_error = 1; /* Seems like a good idea. */
11794 else if (POINTER_TYPE_P (type))
11796 /* [dcl.fct]/6, parameter types cannot contain pointers
11797 (references) to arrays of unknown bound. */
11798 tree t = TREE_TYPE (type);
11799 int ptr = TYPE_PTR_P (type);
11801 while (1)
11803 if (TYPE_PTR_P (t))
11804 ptr = 1;
11805 else if (TREE_CODE (t) != ARRAY_TYPE)
11806 break;
11807 else if (!TYPE_DOMAIN (t))
11808 break;
11809 t = TREE_TYPE (t);
11811 if (TREE_CODE (t) == ARRAY_TYPE)
11812 error (ptr
11813 ? G_("parameter %qD includes pointer to array of "
11814 "unknown bound %qT")
11815 : G_("parameter %qD includes reference to array of "
11816 "unknown bound %qT"),
11817 decl, t);
11820 if (any_error)
11821 init = NULL_TREE;
11822 else if (init && !processing_template_decl)
11823 init = check_default_argument (decl, init, tf_warning_or_error);
11826 DECL_CHAIN (decl) = decls;
11827 decls = decl;
11828 result = tree_cons (init, type, result);
11830 decls = nreverse (decls);
11831 result = nreverse (result);
11832 if (parm)
11833 result = chainon (result, void_list_node);
11834 *parms = decls;
11836 return result;
11840 /* D is a constructor or overloaded `operator='.
11842 Let T be the class in which D is declared. Then, this function
11843 returns:
11845 -1 if D's is an ill-formed constructor or copy assignment operator
11846 whose first parameter is of type `T'.
11847 0 if D is not a copy constructor or copy assignment
11848 operator.
11849 1 if D is a copy constructor or copy assignment operator whose
11850 first parameter is a reference to non-const qualified T.
11851 2 if D is a copy constructor or copy assignment operator whose
11852 first parameter is a reference to const qualified T.
11854 This function can be used as a predicate. Positive values indicate
11855 a copy constructor and nonzero values indicate a copy assignment
11856 operator. */
11859 copy_fn_p (const_tree d)
11861 tree args;
11862 tree arg_type;
11863 int result = 1;
11865 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11867 if (TREE_CODE (d) == TEMPLATE_DECL
11868 || (DECL_TEMPLATE_INFO (d)
11869 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11870 /* Instantiations of template member functions are never copy
11871 functions. Note that member functions of templated classes are
11872 represented as template functions internally, and we must
11873 accept those as copy functions. */
11874 return 0;
11876 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11877 if (!args)
11878 return 0;
11880 arg_type = TREE_VALUE (args);
11881 if (arg_type == error_mark_node)
11882 return 0;
11884 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
11886 /* Pass by value copy assignment operator. */
11887 result = -1;
11889 else if (TREE_CODE (arg_type) == REFERENCE_TYPE
11890 && !TYPE_REF_IS_RVALUE (arg_type)
11891 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
11893 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
11894 result = 2;
11896 else
11897 return 0;
11899 args = TREE_CHAIN (args);
11901 if (args && args != void_list_node && !TREE_PURPOSE (args))
11902 /* There are more non-optional args. */
11903 return 0;
11905 return result;
11908 /* D is a constructor or overloaded `operator='.
11910 Let T be the class in which D is declared. Then, this function
11911 returns true when D is a move constructor or move assignment
11912 operator, false otherwise. */
11914 bool
11915 move_fn_p (const_tree d)
11917 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11919 if (cxx_dialect == cxx98)
11920 /* There are no move constructors if we are in C++98 mode. */
11921 return false;
11923 if (TREE_CODE (d) == TEMPLATE_DECL
11924 || (DECL_TEMPLATE_INFO (d)
11925 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11926 /* Instantiations of template member functions are never move
11927 functions. Note that member functions of templated classes are
11928 represented as template functions internally, and we must
11929 accept those as move functions. */
11930 return 0;
11932 return move_signature_fn_p (d);
11935 /* D is a constructor or overloaded `operator='.
11937 Then, this function returns true when D has the same signature as a move
11938 constructor or move assignment operator (because either it is such a
11939 ctor/op= or it is a template specialization with the same signature),
11940 false otherwise. */
11942 bool
11943 move_signature_fn_p (const_tree d)
11945 tree args;
11946 tree arg_type;
11947 bool result = false;
11949 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11950 if (!args)
11951 return 0;
11953 arg_type = TREE_VALUE (args);
11954 if (arg_type == error_mark_node)
11955 return 0;
11957 if (TREE_CODE (arg_type) == REFERENCE_TYPE
11958 && TYPE_REF_IS_RVALUE (arg_type)
11959 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
11960 DECL_CONTEXT (d)))
11961 result = true;
11963 args = TREE_CHAIN (args);
11965 if (args && args != void_list_node && !TREE_PURPOSE (args))
11966 /* There are more non-optional args. */
11967 return false;
11969 return result;
11972 /* Remember any special properties of member function DECL. */
11974 void
11975 grok_special_member_properties (tree decl)
11977 tree class_type;
11979 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
11980 return;
11982 class_type = DECL_CONTEXT (decl);
11983 if (DECL_CONSTRUCTOR_P (decl))
11985 int ctor = copy_fn_p (decl);
11987 if (!DECL_ARTIFICIAL (decl))
11988 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
11990 if (ctor > 0)
11992 /* [class.copy]
11994 A non-template constructor for class X is a copy
11995 constructor if its first parameter is of type X&, const
11996 X&, volatile X& or const volatile X&, and either there
11997 are no other parameters or else all other parameters have
11998 default arguments. */
11999 TYPE_HAS_COPY_CTOR (class_type) = 1;
12000 if (user_provided_p (decl))
12001 TYPE_HAS_COMPLEX_COPY_CTOR (class_type) = 1;
12002 if (ctor > 1)
12003 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
12005 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
12006 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
12007 else if (move_fn_p (decl) && user_provided_p (decl))
12008 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type) = 1;
12009 else if (is_list_ctor (decl))
12010 TYPE_HAS_LIST_CTOR (class_type) = 1;
12012 if (DECL_DECLARED_CONSTEXPR_P (decl)
12013 && !copy_fn_p (decl) && !move_fn_p (decl))
12014 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
12016 else if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
12018 /* [class.copy]
12020 A non-template assignment operator for class X is a copy
12021 assignment operator if its parameter is of type X, X&, const
12022 X&, volatile X& or const volatile X&. */
12024 int assop = copy_fn_p (decl);
12026 if (assop)
12028 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
12029 if (user_provided_p (decl))
12030 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type) = 1;
12031 if (assop != 1)
12032 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
12034 else if (move_fn_p (decl) && user_provided_p (decl))
12035 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type) = 1;
12037 /* Destructors are handled in check_methods. */
12040 /* Check a constructor DECL has the correct form. Complains
12041 if the class has a constructor of the form X(X). */
12044 grok_ctor_properties (const_tree ctype, const_tree decl)
12046 int ctor_parm = copy_fn_p (decl);
12048 if (ctor_parm < 0)
12050 /* [class.copy]
12052 A declaration of a constructor for a class X is ill-formed if
12053 its first parameter is of type (optionally cv-qualified) X
12054 and either there are no other parameters or else all other
12055 parameters have default arguments.
12057 We *don't* complain about member template instantiations that
12058 have this form, though; they can occur as we try to decide
12059 what constructor to use during overload resolution. Since
12060 overload resolution will never prefer such a constructor to
12061 the non-template copy constructor (which is either explicitly
12062 or implicitly defined), there's no need to worry about their
12063 existence. Theoretically, they should never even be
12064 instantiated, but that's hard to forestall. */
12065 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
12066 ctype, ctype);
12067 return 0;
12070 return 1;
12073 /* An operator with this code is unary, but can also be binary. */
12075 static int
12076 ambi_op_p (enum tree_code code)
12078 return (code == INDIRECT_REF
12079 || code == ADDR_EXPR
12080 || code == UNARY_PLUS_EXPR
12081 || code == NEGATE_EXPR
12082 || code == PREINCREMENT_EXPR
12083 || code == PREDECREMENT_EXPR);
12086 /* An operator with this name can only be unary. */
12088 static int
12089 unary_op_p (enum tree_code code)
12091 return (code == TRUTH_NOT_EXPR
12092 || code == BIT_NOT_EXPR
12093 || code == COMPONENT_REF
12094 || code == TYPE_EXPR);
12097 /* DECL is a declaration for an overloaded operator. If COMPLAIN is true,
12098 errors are issued for invalid declarations. */
12100 bool
12101 grok_op_properties (tree decl, bool complain)
12103 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
12104 tree argtype;
12105 int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
12106 tree name = DECL_NAME (decl);
12107 enum tree_code operator_code;
12108 int arity;
12109 bool ellipsis_p;
12110 tree class_type;
12112 /* Count the number of arguments and check for ellipsis. */
12113 for (argtype = argtypes, arity = 0;
12114 argtype && argtype != void_list_node;
12115 argtype = TREE_CHAIN (argtype))
12116 ++arity;
12117 ellipsis_p = !argtype;
12119 class_type = DECL_CONTEXT (decl);
12120 if (class_type && !CLASS_TYPE_P (class_type))
12121 class_type = NULL_TREE;
12123 if (DECL_CONV_FN_P (decl))
12124 operator_code = TYPE_EXPR;
12125 else
12128 #define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P) \
12129 if (ansi_opname (CODE) == name) \
12131 operator_code = (CODE); \
12132 break; \
12134 else if (ansi_assopname (CODE) == name) \
12136 operator_code = (CODE); \
12137 DECL_ASSIGNMENT_OPERATOR_P (decl) = 1; \
12138 break; \
12141 #include "operators.def"
12142 #undef DEF_OPERATOR
12144 gcc_unreachable ();
12146 while (0);
12147 gcc_assert (operator_code != MAX_TREE_CODES);
12148 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
12150 if (class_type)
12151 switch (operator_code)
12153 case NEW_EXPR:
12154 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
12155 break;
12157 case DELETE_EXPR:
12158 TYPE_GETS_DELETE (class_type) |= 1;
12159 break;
12161 case VEC_NEW_EXPR:
12162 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
12163 break;
12165 case VEC_DELETE_EXPR:
12166 TYPE_GETS_DELETE (class_type) |= 2;
12167 break;
12169 default:
12170 break;
12173 /* [basic.std.dynamic.allocation]/1:
12175 A program is ill-formed if an allocation function is declared
12176 in a namespace scope other than global scope or declared static
12177 in global scope.
12179 The same also holds true for deallocation functions. */
12180 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR
12181 || operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
12183 if (DECL_NAMESPACE_SCOPE_P (decl))
12185 if (CP_DECL_CONTEXT (decl) != global_namespace)
12187 error ("%qD may not be declared within a namespace", decl);
12188 return false;
12190 else if (!TREE_PUBLIC (decl))
12192 error ("%qD may not be declared as static", decl);
12193 return false;
12198 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR)
12200 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
12201 DECL_IS_OPERATOR_NEW (decl) = 1;
12203 else if (operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
12204 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
12205 else
12207 /* An operator function must either be a non-static member function
12208 or have at least one parameter of a class, a reference to a class,
12209 an enumeration, or a reference to an enumeration. 13.4.0.6 */
12210 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
12212 if (operator_code == TYPE_EXPR
12213 || operator_code == CALL_EXPR
12214 || operator_code == COMPONENT_REF
12215 || operator_code == ARRAY_REF
12216 || operator_code == NOP_EXPR)
12218 error ("%qD must be a nonstatic member function", decl);
12219 return false;
12221 else
12223 tree p;
12225 if (DECL_STATIC_FUNCTION_P (decl))
12227 error ("%qD must be either a non-static member "
12228 "function or a non-member function", decl);
12229 return false;
12232 for (p = argtypes; p && p != void_list_node; p = TREE_CHAIN (p))
12234 tree arg = non_reference (TREE_VALUE (p));
12235 if (arg == error_mark_node)
12236 return false;
12238 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
12239 because these checks are performed even on
12240 template functions. */
12241 if (MAYBE_CLASS_TYPE_P (arg)
12242 || TREE_CODE (arg) == ENUMERAL_TYPE)
12243 break;
12246 if (!p || p == void_list_node)
12248 if (complain)
12249 error ("%qD must have an argument of class or "
12250 "enumerated type", decl);
12251 return false;
12256 /* There are no restrictions on the arguments to an overloaded
12257 "operator ()". */
12258 if (operator_code == CALL_EXPR)
12259 return true;
12261 /* Warn about conversion operators that will never be used. */
12262 if (IDENTIFIER_TYPENAME_P (name)
12263 && ! DECL_TEMPLATE_INFO (decl)
12264 && warn_conversion
12265 /* Warn only declaring the function; there is no need to
12266 warn again about out-of-class definitions. */
12267 && class_type == current_class_type)
12269 tree t = TREE_TYPE (name);
12270 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
12272 if (ref)
12273 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
12275 if (VOID_TYPE_P (t))
12276 warning (OPT_Wconversion,
12278 ? G_("conversion to a reference to void "
12279 "will never use a type conversion operator")
12280 : G_("conversion to void "
12281 "will never use a type conversion operator"));
12282 else if (class_type)
12284 if (t == class_type)
12285 warning (OPT_Wconversion,
12287 ? G_("conversion to a reference to the same type "
12288 "will never use a type conversion operator")
12289 : G_("conversion to the same type "
12290 "will never use a type conversion operator"));
12291 /* Don't force t to be complete here. */
12292 else if (MAYBE_CLASS_TYPE_P (t)
12293 && COMPLETE_TYPE_P (t)
12294 && DERIVED_FROM_P (t, class_type))
12295 warning (OPT_Wconversion,
12297 ? G_("conversion to a reference to a base class "
12298 "will never use a type conversion operator")
12299 : G_("conversion to a base class "
12300 "will never use a type conversion operator"));
12305 if (operator_code == COND_EXPR)
12307 /* 13.4.0.3 */
12308 error ("ISO C++ prohibits overloading operator ?:");
12309 return false;
12311 else if (ellipsis_p)
12313 error ("%qD must not have variable number of arguments", decl);
12314 return false;
12316 else if (ambi_op_p (operator_code))
12318 if (arity == 1)
12319 /* We pick the one-argument operator codes by default, so
12320 we don't have to change anything. */
12322 else if (arity == 2)
12324 /* If we thought this was a unary operator, we now know
12325 it to be a binary operator. */
12326 switch (operator_code)
12328 case INDIRECT_REF:
12329 operator_code = MULT_EXPR;
12330 break;
12332 case ADDR_EXPR:
12333 operator_code = BIT_AND_EXPR;
12334 break;
12336 case UNARY_PLUS_EXPR:
12337 operator_code = PLUS_EXPR;
12338 break;
12340 case NEGATE_EXPR:
12341 operator_code = MINUS_EXPR;
12342 break;
12344 case PREINCREMENT_EXPR:
12345 operator_code = POSTINCREMENT_EXPR;
12346 break;
12348 case PREDECREMENT_EXPR:
12349 operator_code = POSTDECREMENT_EXPR;
12350 break;
12352 default:
12353 gcc_unreachable ();
12356 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
12358 if ((operator_code == POSTINCREMENT_EXPR
12359 || operator_code == POSTDECREMENT_EXPR)
12360 && ! processing_template_decl
12361 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)), integer_type_node))
12363 if (methodp)
12364 error ("postfix %qD must take %<int%> as its argument",
12365 decl);
12366 else
12367 error ("postfix %qD must take %<int%> as its second "
12368 "argument", decl);
12369 return false;
12372 else
12374 if (methodp)
12375 error ("%qD must take either zero or one argument", decl);
12376 else
12377 error ("%qD must take either one or two arguments", decl);
12378 return false;
12381 /* More Effective C++ rule 6. */
12382 if (warn_ecpp
12383 && (operator_code == POSTINCREMENT_EXPR
12384 || operator_code == POSTDECREMENT_EXPR
12385 || operator_code == PREINCREMENT_EXPR
12386 || operator_code == PREDECREMENT_EXPR))
12388 tree arg = TREE_VALUE (argtypes);
12389 tree ret = TREE_TYPE (TREE_TYPE (decl));
12390 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
12391 arg = TREE_TYPE (arg);
12392 arg = TYPE_MAIN_VARIANT (arg);
12393 if (operator_code == PREINCREMENT_EXPR
12394 || operator_code == PREDECREMENT_EXPR)
12396 if (TREE_CODE (ret) != REFERENCE_TYPE
12397 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)),
12398 arg))
12399 warning (OPT_Weffc__, "prefix %qD should return %qT", decl,
12400 build_reference_type (arg));
12402 else
12404 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
12405 warning (OPT_Weffc__, "postfix %qD should return %qT", decl, arg);
12409 else if (unary_op_p (operator_code))
12411 if (arity != 1)
12413 if (methodp)
12414 error ("%qD must take %<void%>", decl);
12415 else
12416 error ("%qD must take exactly one argument", decl);
12417 return false;
12420 else /* if (binary_op_p (operator_code)) */
12422 if (arity != 2)
12424 if (methodp)
12425 error ("%qD must take exactly one argument", decl);
12426 else
12427 error ("%qD must take exactly two arguments", decl);
12428 return false;
12431 /* More Effective C++ rule 7. */
12432 if (warn_ecpp
12433 && (operator_code == TRUTH_ANDIF_EXPR
12434 || operator_code == TRUTH_ORIF_EXPR
12435 || operator_code == COMPOUND_EXPR))
12436 warning (OPT_Weffc__, "user-defined %qD always evaluates both arguments",
12437 decl);
12440 /* Effective C++ rule 23. */
12441 if (warn_ecpp
12442 && arity == 2
12443 && !DECL_ASSIGNMENT_OPERATOR_P (decl)
12444 && (operator_code == PLUS_EXPR
12445 || operator_code == MINUS_EXPR
12446 || operator_code == TRUNC_DIV_EXPR
12447 || operator_code == MULT_EXPR
12448 || operator_code == TRUNC_MOD_EXPR)
12449 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
12450 warning (OPT_Weffc__, "%qD should return by value", decl);
12452 /* [over.oper]/8 */
12453 for (; argtypes && argtypes != void_list_node;
12454 argtypes = TREE_CHAIN (argtypes))
12455 if (TREE_PURPOSE (argtypes))
12457 TREE_PURPOSE (argtypes) = NULL_TREE;
12458 if (operator_code == POSTINCREMENT_EXPR
12459 || operator_code == POSTDECREMENT_EXPR)
12461 pedwarn (input_location, OPT_Wpedantic, "%qD cannot have default arguments",
12462 decl);
12464 else
12466 error ("%qD cannot have default arguments", decl);
12467 return false;
12471 return true;
12474 /* Return a string giving the keyword associate with CODE. */
12476 static const char *
12477 tag_name (enum tag_types code)
12479 switch (code)
12481 case record_type:
12482 return "struct";
12483 case class_type:
12484 return "class";
12485 case union_type:
12486 return "union";
12487 case enum_type:
12488 return "enum";
12489 case typename_type:
12490 return "typename";
12491 default:
12492 gcc_unreachable ();
12496 /* Name lookup in an elaborated-type-specifier (after the keyword
12497 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
12498 elaborated-type-specifier is invalid, issue a diagnostic and return
12499 error_mark_node; otherwise, return the *_TYPE to which it referred.
12500 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
12502 tree
12503 check_elaborated_type_specifier (enum tag_types tag_code,
12504 tree decl,
12505 bool allow_template_p)
12507 tree type;
12509 /* In the case of:
12511 struct S { struct S *p; };
12513 name lookup will find the TYPE_DECL for the implicit "S::S"
12514 typedef. Adjust for that here. */
12515 if (DECL_SELF_REFERENCE_P (decl))
12516 decl = TYPE_NAME (TREE_TYPE (decl));
12518 type = TREE_TYPE (decl);
12520 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
12521 is false for this case as well. */
12522 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
12524 error ("using template type parameter %qT after %qs",
12525 type, tag_name (tag_code));
12526 return error_mark_node;
12528 /* Accept template template parameters. */
12529 else if (allow_template_p
12530 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
12531 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
12533 /* [dcl.type.elab]
12535 If the identifier resolves to a typedef-name or the
12536 simple-template-id resolves to an alias template
12537 specialization, the elaborated-type-specifier is ill-formed.
12539 In other words, the only legitimate declaration to use in the
12540 elaborated type specifier is the implicit typedef created when
12541 the type is declared. */
12542 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
12543 && !DECL_SELF_REFERENCE_P (decl)
12544 && tag_code != typename_type)
12546 if (alias_template_specialization_p (type))
12547 error ("using alias template specialization %qT after %qs",
12548 type, tag_name (tag_code));
12549 else
12550 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
12551 inform (DECL_SOURCE_LOCATION (decl),
12552 "%qD has a previous declaration here", decl);
12553 return error_mark_node;
12555 else if (TREE_CODE (type) != RECORD_TYPE
12556 && TREE_CODE (type) != UNION_TYPE
12557 && tag_code != enum_type
12558 && tag_code != typename_type)
12560 error ("%qT referred to as %qs", type, tag_name (tag_code));
12561 inform (location_of (type), "%qT has a previous declaration here", type);
12562 return error_mark_node;
12564 else if (TREE_CODE (type) != ENUMERAL_TYPE
12565 && tag_code == enum_type)
12567 error ("%qT referred to as enum", type);
12568 inform (location_of (type), "%qT has a previous declaration here", type);
12569 return error_mark_node;
12571 else if (!allow_template_p
12572 && TREE_CODE (type) == RECORD_TYPE
12573 && CLASSTYPE_IS_TEMPLATE (type))
12575 /* If a class template appears as elaborated type specifier
12576 without a template header such as:
12578 template <class T> class C {};
12579 void f(class C); // No template header here
12581 then the required template argument is missing. */
12582 error ("template argument required for %<%s %T%>",
12583 tag_name (tag_code),
12584 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
12585 return error_mark_node;
12588 return type;
12591 /* Lookup NAME in elaborate type specifier in scope according to
12592 SCOPE and issue diagnostics if necessary.
12593 Return *_TYPE node upon success, NULL_TREE when the NAME is not
12594 found, and ERROR_MARK_NODE for type error. */
12596 static tree
12597 lookup_and_check_tag (enum tag_types tag_code, tree name,
12598 tag_scope scope, bool template_header_p)
12600 tree t;
12601 tree decl;
12602 if (scope == ts_global)
12604 /* First try ordinary name lookup, ignoring hidden class name
12605 injected via friend declaration. */
12606 decl = lookup_name_prefer_type (name, 2);
12607 decl = strip_using_decl (decl);
12608 /* If that fails, the name will be placed in the smallest
12609 non-class, non-function-prototype scope according to 3.3.1/5.
12610 We may already have a hidden name declared as friend in this
12611 scope. So lookup again but not ignoring hidden names.
12612 If we find one, that name will be made visible rather than
12613 creating a new tag. */
12614 if (!decl)
12615 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
12617 else
12618 decl = lookup_type_scope (name, scope);
12620 if (decl
12621 && (DECL_CLASS_TEMPLATE_P (decl)
12622 /* If scope is ts_current we're defining a class, so ignore a
12623 template template parameter. */
12624 || (scope != ts_current
12625 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
12626 decl = DECL_TEMPLATE_RESULT (decl);
12628 if (decl && TREE_CODE (decl) == TYPE_DECL)
12630 /* Look for invalid nested type:
12631 class C {
12632 class C {};
12633 }; */
12634 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
12636 error ("%qD has the same name as the class in which it is "
12637 "declared",
12638 decl);
12639 return error_mark_node;
12642 /* Two cases we need to consider when deciding if a class
12643 template is allowed as an elaborated type specifier:
12644 1. It is a self reference to its own class.
12645 2. It comes with a template header.
12647 For example:
12649 template <class T> class C {
12650 class C *c1; // DECL_SELF_REFERENCE_P is true
12651 class D;
12653 template <class U> class C; // template_header_p is true
12654 template <class T> class C<T>::D {
12655 class C *c2; // DECL_SELF_REFERENCE_P is true
12656 }; */
12658 t = check_elaborated_type_specifier (tag_code,
12659 decl,
12660 template_header_p
12661 | DECL_SELF_REFERENCE_P (decl));
12662 if (template_header_p && t && CLASS_TYPE_P (t)
12663 && (!CLASSTYPE_TEMPLATE_INFO (t)
12664 || (!PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))))
12666 error ("%qT is not a template", t);
12667 inform (location_of (t), "previous declaration here");
12668 if (TYPE_CLASS_SCOPE_P (t)
12669 && CLASSTYPE_TEMPLATE_INFO (TYPE_CONTEXT (t)))
12670 inform (input_location,
12671 "perhaps you want to explicitly add %<%T::%>",
12672 TYPE_CONTEXT (t));
12673 t = error_mark_node;
12676 return t;
12678 else if (decl && TREE_CODE (decl) == TREE_LIST)
12680 error ("reference to %qD is ambiguous", name);
12681 print_candidates (decl);
12682 return error_mark_node;
12684 else
12685 return NULL_TREE;
12688 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
12689 Define the tag as a forward-reference if it is not defined.
12691 If a declaration is given, process it here, and report an error if
12692 multiple declarations are not identical.
12694 SCOPE is TS_CURRENT when this is also a definition. Only look in
12695 the current frame for the name (since C++ allows new names in any
12696 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
12697 declaration. Only look beginning from the current scope outward up
12698 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
12700 TEMPLATE_HEADER_P is true when this declaration is preceded by
12701 a set of template parameters. */
12703 static tree
12704 xref_tag_1 (enum tag_types tag_code, tree name,
12705 tag_scope orig_scope, bool template_header_p)
12707 enum tree_code code;
12708 tree t;
12709 tree context = NULL_TREE;
12710 tag_scope scope;
12712 gcc_assert (identifier_p (name));
12714 switch (tag_code)
12716 case record_type:
12717 case class_type:
12718 code = RECORD_TYPE;
12719 break;
12720 case union_type:
12721 code = UNION_TYPE;
12722 break;
12723 case enum_type:
12724 code = ENUMERAL_TYPE;
12725 break;
12726 default:
12727 gcc_unreachable ();
12730 if (orig_scope == ts_lambda)
12731 scope = ts_current;
12732 else
12733 scope = orig_scope;
12735 /* In case of anonymous name, xref_tag is only called to
12736 make type node and push name. Name lookup is not required. */
12737 if (anon_aggrname_p (name))
12738 t = NULL_TREE;
12739 else
12740 t = lookup_and_check_tag (tag_code, name,
12741 scope, template_header_p);
12743 if (t == error_mark_node)
12744 return error_mark_node;
12746 if (scope != ts_current && t && current_class_type
12747 && template_class_depth (current_class_type)
12748 && template_header_p)
12750 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
12751 return t;
12753 /* Since SCOPE is not TS_CURRENT, we are not looking at a
12754 definition of this tag. Since, in addition, we are currently
12755 processing a (member) template declaration of a template
12756 class, we must be very careful; consider:
12758 template <class X>
12759 struct S1
12761 template <class U>
12762 struct S2
12763 { template <class V>
12764 friend struct S1; };
12766 Here, the S2::S1 declaration should not be confused with the
12767 outer declaration. In particular, the inner version should
12768 have a template parameter of level 2, not level 1. This
12769 would be particularly important if the member declaration
12770 were instead:
12772 template <class V = U> friend struct S1;
12774 say, when we should tsubst into `U' when instantiating
12775 S2. On the other hand, when presented with:
12777 template <class T>
12778 struct S1 {
12779 template <class U>
12780 struct S2 {};
12781 template <class U>
12782 friend struct S2;
12785 we must find the inner binding eventually. We
12786 accomplish this by making sure that the new type we
12787 create to represent this declaration has the right
12788 TYPE_CONTEXT. */
12789 context = TYPE_CONTEXT (t);
12790 t = NULL_TREE;
12793 if (! t)
12795 /* If no such tag is yet defined, create a forward-reference node
12796 and record it as the "definition".
12797 When a real declaration of this type is found,
12798 the forward-reference will be altered into a real type. */
12799 if (code == ENUMERAL_TYPE)
12801 error ("use of enum %q#D without previous declaration", name);
12802 return error_mark_node;
12804 else
12806 t = make_class_type (code);
12807 TYPE_CONTEXT (t) = context;
12808 if (orig_scope == ts_lambda)
12809 /* Remember that we're declaring a lambda to avoid bogus errors
12810 in push_template_decl. */
12811 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
12812 t = pushtag (name, t, scope);
12815 else
12817 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
12819 /* Check that we aren't trying to overload a class with different
12820 constraints. */
12821 tree constr = NULL_TREE;
12822 if (current_template_parms)
12824 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
12825 constr = build_constraints (reqs, NULL_TREE);
12827 if (!redeclare_class_template (t, current_template_parms, constr))
12828 return error_mark_node;
12830 else if (!processing_template_decl
12831 && CLASS_TYPE_P (t)
12832 && CLASSTYPE_IS_TEMPLATE (t))
12834 error ("redeclaration of %qT as a non-template", t);
12835 inform (location_of (t), "previous declaration %qD", t);
12836 return error_mark_node;
12839 /* Make injected friend class visible. */
12840 if (scope != ts_within_enclosing_non_class
12841 && hidden_name_p (TYPE_NAME (t)))
12843 DECL_ANTICIPATED (TYPE_NAME (t)) = 0;
12844 DECL_FRIEND_P (TYPE_NAME (t)) = 0;
12846 if (TYPE_TEMPLATE_INFO (t))
12848 DECL_ANTICIPATED (TYPE_TI_TEMPLATE (t)) = 0;
12849 DECL_FRIEND_P (TYPE_TI_TEMPLATE (t)) = 0;
12854 return t;
12857 /* Wrapper for xref_tag_1. */
12859 tree
12860 xref_tag (enum tag_types tag_code, tree name,
12861 tag_scope scope, bool template_header_p)
12863 tree ret;
12864 bool subtime;
12865 subtime = timevar_cond_start (TV_NAME_LOOKUP);
12866 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
12867 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
12868 return ret;
12872 tree
12873 xref_tag_from_type (tree old, tree id, tag_scope scope)
12875 enum tag_types tag_kind;
12877 if (TREE_CODE (old) == RECORD_TYPE)
12878 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
12879 else
12880 tag_kind = union_type;
12882 if (id == NULL_TREE)
12883 id = TYPE_IDENTIFIER (old);
12885 return xref_tag (tag_kind, id, scope, false);
12888 /* Create the binfo hierarchy for REF with (possibly NULL) base list
12889 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
12890 access_* node, and the TREE_VALUE is the type of the base-class.
12891 Non-NULL TREE_TYPE indicates virtual inheritance. */
12893 void
12894 xref_basetypes (tree ref, tree base_list)
12896 tree *basep;
12897 tree binfo, base_binfo;
12898 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
12899 unsigned max_bases = 0; /* Maximum direct bases. */
12900 unsigned max_dvbases = 0; /* Maximum direct virtual bases. */
12901 int i;
12902 tree default_access;
12903 tree igo_prev; /* Track Inheritance Graph Order. */
12905 if (ref == error_mark_node)
12906 return;
12908 /* The base of a derived class is private by default, all others are
12909 public. */
12910 default_access = (TREE_CODE (ref) == RECORD_TYPE
12911 && CLASSTYPE_DECLARED_CLASS (ref)
12912 ? access_private_node : access_public_node);
12914 /* First, make sure that any templates in base-classes are
12915 instantiated. This ensures that if we call ourselves recursively
12916 we do not get confused about which classes are marked and which
12917 are not. */
12918 basep = &base_list;
12919 while (*basep)
12921 tree basetype = TREE_VALUE (*basep);
12923 /* The dependent_type_p call below should really be dependent_scope_p
12924 so that we give a hard error about using an incomplete type as a
12925 base, but we allow it with a pedwarn for backward
12926 compatibility. */
12927 if (processing_template_decl
12928 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
12929 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
12930 if (!dependent_type_p (basetype)
12931 && !complete_type_or_else (basetype, NULL))
12932 /* An incomplete type. Remove it from the list. */
12933 *basep = TREE_CHAIN (*basep);
12934 else
12936 max_bases++;
12937 if (TREE_TYPE (*basep))
12938 max_dvbases++;
12939 if (CLASS_TYPE_P (basetype))
12940 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
12941 basep = &TREE_CHAIN (*basep);
12944 max_vbases += max_dvbases;
12946 TYPE_MARKED_P (ref) = 1;
12948 /* The binfo slot should be empty, unless this is an (ill-formed)
12949 redefinition. */
12950 gcc_assert (!TYPE_BINFO (ref) || TYPE_SIZE (ref));
12952 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
12954 binfo = make_tree_binfo (max_bases);
12956 TYPE_BINFO (ref) = binfo;
12957 BINFO_OFFSET (binfo) = size_zero_node;
12958 BINFO_TYPE (binfo) = ref;
12960 /* Apply base-class info set up to the variants of this type. */
12961 fixup_type_variants (ref);
12963 if (max_bases)
12965 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
12966 /* An aggregate cannot have baseclasses. */
12967 CLASSTYPE_NON_AGGREGATE (ref) = 1;
12969 if (TREE_CODE (ref) == UNION_TYPE)
12970 error ("derived union %qT invalid", ref);
12973 if (max_bases > 1)
12975 if (TYPE_FOR_JAVA (ref))
12976 error ("Java class %qT cannot have multiple bases", ref);
12977 else
12978 warning (OPT_Wmultiple_inheritance,
12979 "%qT defined with multiple direct bases", ref);
12982 if (max_vbases)
12984 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
12986 if (TYPE_FOR_JAVA (ref))
12987 error ("Java class %qT cannot have virtual bases", ref);
12988 else if (max_dvbases)
12989 warning (OPT_Wvirtual_inheritance,
12990 "%qT defined with direct virtual base", ref);
12993 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
12995 tree access = TREE_PURPOSE (base_list);
12996 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
12997 tree basetype = TREE_VALUE (base_list);
12999 if (access == access_default_node)
13000 access = default_access;
13002 if (PACK_EXPANSION_P (basetype))
13003 basetype = PACK_EXPANSION_PATTERN (basetype);
13004 if (TREE_CODE (basetype) == TYPE_DECL)
13005 basetype = TREE_TYPE (basetype);
13006 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
13008 error ("base type %qT fails to be a struct or class type",
13009 basetype);
13010 goto dropped_base;
13013 if (TYPE_FOR_JAVA (basetype) && (current_lang_depth () == 0))
13014 TYPE_FOR_JAVA (ref) = 1;
13016 base_binfo = NULL_TREE;
13017 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
13019 base_binfo = TYPE_BINFO (basetype);
13020 /* The original basetype could have been a typedef'd type. */
13021 basetype = BINFO_TYPE (base_binfo);
13023 /* Inherit flags from the base. */
13024 TYPE_HAS_NEW_OPERATOR (ref)
13025 |= TYPE_HAS_NEW_OPERATOR (basetype);
13026 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
13027 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
13028 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
13029 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
13030 CLASSTYPE_DIAMOND_SHAPED_P (ref)
13031 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
13032 CLASSTYPE_REPEATED_BASE_P (ref)
13033 |= CLASSTYPE_REPEATED_BASE_P (basetype);
13036 /* We must do this test after we've seen through a typedef
13037 type. */
13038 if (TYPE_MARKED_P (basetype))
13040 if (basetype == ref)
13041 error ("recursive type %qT undefined", basetype);
13042 else
13043 error ("duplicate base type %qT invalid", basetype);
13044 goto dropped_base;
13047 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
13048 /* Regenerate the pack expansion for the bases. */
13049 basetype = make_pack_expansion (basetype);
13051 TYPE_MARKED_P (basetype) = 1;
13053 base_binfo = copy_binfo (base_binfo, basetype, ref,
13054 &igo_prev, via_virtual);
13055 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
13056 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
13058 BINFO_BASE_APPEND (binfo, base_binfo);
13059 BINFO_BASE_ACCESS_APPEND (binfo, access);
13060 continue;
13062 dropped_base:
13063 /* Update max_vbases to reflect the reality that we are dropping
13064 this base: if it reaches zero we want to undo the vec_alloc
13065 above to avoid inconsistencies during error-recovery: eg, in
13066 build_special_member_call, CLASSTYPE_VBASECLASSES non null
13067 and vtt null (c++/27952). */
13068 if (via_virtual)
13069 max_vbases--;
13070 if (CLASS_TYPE_P (basetype))
13071 max_vbases
13072 -= vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
13075 if (CLASSTYPE_VBASECLASSES (ref)
13076 && max_vbases == 0)
13077 vec_free (CLASSTYPE_VBASECLASSES (ref));
13079 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
13080 /* If we didn't get max_vbases vbases, we must have shared at
13081 least one of them, and are therefore diamond shaped. */
13082 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
13084 /* Unmark all the types. */
13085 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
13086 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
13087 TYPE_MARKED_P (ref) = 0;
13089 /* Now see if we have a repeated base type. */
13090 if (!CLASSTYPE_REPEATED_BASE_P (ref))
13092 for (base_binfo = binfo; base_binfo;
13093 base_binfo = TREE_CHAIN (base_binfo))
13095 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
13097 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
13098 break;
13100 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
13102 for (base_binfo = binfo; base_binfo;
13103 base_binfo = TREE_CHAIN (base_binfo))
13104 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
13105 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
13106 else
13107 break;
13112 /* Copies the enum-related properties from type SRC to type DST.
13113 Used with the underlying type of an enum and the enum itself. */
13114 static void
13115 copy_type_enum (tree dst, tree src)
13117 tree t;
13118 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
13120 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
13121 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
13122 TYPE_SIZE (t) = TYPE_SIZE (src);
13123 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
13124 SET_TYPE_MODE (dst, TYPE_MODE (src));
13125 TYPE_PRECISION (t) = TYPE_PRECISION (src);
13126 unsigned valign = TYPE_ALIGN (src);
13127 if (TYPE_USER_ALIGN (t))
13128 valign = MAX (valign, TYPE_ALIGN (t));
13129 else
13130 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
13131 SET_TYPE_ALIGN (t, valign);
13132 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
13136 /* Begin compiling the definition of an enumeration type.
13137 NAME is its name,
13139 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
13141 UNDERLYING_TYPE is the type that will be used as the storage for
13142 the enumeration type. This should be NULL_TREE if no storage type
13143 was specified.
13145 ATTRIBUTES are any attributes specified after the enum-key.
13147 SCOPED_ENUM_P is true if this is a scoped enumeration type.
13149 if IS_NEW is not NULL, gets TRUE iff a new type is created.
13151 Returns the type object, as yet incomplete.
13152 Also records info about it so that build_enumerator
13153 may be used to declare the individual values as they are read. */
13155 tree
13156 start_enum (tree name, tree enumtype, tree underlying_type,
13157 tree attributes, bool scoped_enum_p, bool *is_new)
13159 tree prevtype = NULL_TREE;
13160 gcc_assert (identifier_p (name));
13162 if (is_new)
13163 *is_new = false;
13164 /* [C++0x dcl.enum]p5:
13166 If not explicitly specified, the underlying type of a scoped
13167 enumeration type is int. */
13168 if (!underlying_type && scoped_enum_p)
13169 underlying_type = integer_type_node;
13171 if (underlying_type)
13172 underlying_type = cv_unqualified (underlying_type);
13174 /* If this is the real definition for a previous forward reference,
13175 fill in the contents in the same object that used to be the
13176 forward reference. */
13177 if (!enumtype)
13178 enumtype = lookup_and_check_tag (enum_type, name,
13179 /*tag_scope=*/ts_current,
13180 /*template_header_p=*/false);
13182 /* In case of a template_decl, the only check that should be deferred
13183 to instantiation time is the comparison of underlying types. */
13184 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
13186 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
13188 error_at (input_location, "scoped/unscoped mismatch "
13189 "in enum %q#T", enumtype);
13190 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13191 "previous definition here");
13192 enumtype = error_mark_node;
13194 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
13196 error_at (input_location, "underlying type mismatch "
13197 "in enum %q#T", enumtype);
13198 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13199 "previous definition here");
13200 enumtype = error_mark_node;
13202 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
13203 && !dependent_type_p (underlying_type)
13204 && !dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))
13205 && !same_type_p (underlying_type,
13206 ENUM_UNDERLYING_TYPE (enumtype)))
13208 error_at (input_location, "different underlying type "
13209 "in enum %q#T", enumtype);
13210 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13211 "previous definition here");
13212 underlying_type = NULL_TREE;
13216 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
13217 || processing_template_decl)
13219 /* In case of error, make a dummy enum to allow parsing to
13220 continue. */
13221 if (enumtype == error_mark_node)
13223 name = make_anon_name ();
13224 enumtype = NULL_TREE;
13227 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
13228 of an opaque enum, or an opaque enum of an already defined
13229 enumeration (C++0x only).
13230 In any other case, it'll be NULL_TREE. */
13231 if (!enumtype)
13233 if (is_new)
13234 *is_new = true;
13236 prevtype = enumtype;
13238 /* Do not push the decl more than once, unless we need to
13239 compare underlying types at instantiation time */
13240 if (!enumtype
13241 || TREE_CODE (enumtype) != ENUMERAL_TYPE
13242 || (underlying_type
13243 && dependent_type_p (underlying_type))
13244 || (ENUM_UNDERLYING_TYPE (enumtype)
13245 && dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))))
13247 enumtype = cxx_make_type (ENUMERAL_TYPE);
13248 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
13250 else
13251 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
13252 false);
13254 if (enumtype == error_mark_node)
13255 return error_mark_node;
13257 /* The enum is considered opaque until the opening '{' of the
13258 enumerator list. */
13259 SET_OPAQUE_ENUM_P (enumtype, true);
13260 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
13263 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
13265 cplus_decl_attributes (&enumtype, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
13267 if (underlying_type)
13269 if (ENUM_UNDERLYING_TYPE (enumtype))
13270 /* We already checked that it matches, don't change it to a different
13271 typedef variant. */;
13272 else if (CP_INTEGRAL_TYPE_P (underlying_type))
13274 copy_type_enum (enumtype, underlying_type);
13275 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
13277 else if (dependent_type_p (underlying_type))
13278 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
13279 else
13280 error ("underlying type %<%T%> of %<%T%> must be an integral type",
13281 underlying_type, enumtype);
13284 /* If into a template class, the returned enum is always the first
13285 declaration (opaque or not) seen. This way all the references to
13286 this type will be to the same declaration. The following ones are used
13287 only to check for definition errors. */
13288 if (prevtype && processing_template_decl)
13289 return prevtype;
13290 else
13291 return enumtype;
13294 /* After processing and defining all the values of an enumeration type,
13295 install their decls in the enumeration type.
13296 ENUMTYPE is the type object. */
13298 void
13299 finish_enum_value_list (tree enumtype)
13301 tree values;
13302 tree underlying_type;
13303 tree decl;
13304 tree value;
13305 tree minnode, maxnode;
13306 tree t;
13308 bool fixed_underlying_type_p
13309 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
13311 /* We built up the VALUES in reverse order. */
13312 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
13314 /* For an enum defined in a template, just set the type of the values;
13315 all further processing is postponed until the template is
13316 instantiated. We need to set the type so that tsubst of a CONST_DECL
13317 works. */
13318 if (processing_template_decl)
13320 for (values = TYPE_VALUES (enumtype);
13321 values;
13322 values = TREE_CHAIN (values))
13323 TREE_TYPE (TREE_VALUE (values)) = enumtype;
13324 return;
13327 /* Determine the minimum and maximum values of the enumerators. */
13328 if (TYPE_VALUES (enumtype))
13330 minnode = maxnode = NULL_TREE;
13332 for (values = TYPE_VALUES (enumtype);
13333 values;
13334 values = TREE_CHAIN (values))
13336 decl = TREE_VALUE (values);
13338 /* [dcl.enum]: Following the closing brace of an enum-specifier,
13339 each enumerator has the type of its enumeration. Prior to the
13340 closing brace, the type of each enumerator is the type of its
13341 initializing value. */
13342 TREE_TYPE (decl) = enumtype;
13344 /* Update the minimum and maximum values, if appropriate. */
13345 value = DECL_INITIAL (decl);
13346 if (value == error_mark_node)
13347 value = integer_zero_node;
13348 /* Figure out what the minimum and maximum values of the
13349 enumerators are. */
13350 if (!minnode)
13351 minnode = maxnode = value;
13352 else if (tree_int_cst_lt (maxnode, value))
13353 maxnode = value;
13354 else if (tree_int_cst_lt (value, minnode))
13355 minnode = value;
13358 else
13359 /* [dcl.enum]
13361 If the enumerator-list is empty, the underlying type is as if
13362 the enumeration had a single enumerator with value 0. */
13363 minnode = maxnode = integer_zero_node;
13365 if (!fixed_underlying_type_p)
13367 /* Compute the number of bits require to represent all values of the
13368 enumeration. We must do this before the type of MINNODE and
13369 MAXNODE are transformed, since tree_int_cst_min_precision relies
13370 on the TREE_TYPE of the value it is passed. */
13371 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
13372 int lowprec = tree_int_cst_min_precision (minnode, sgn);
13373 int highprec = tree_int_cst_min_precision (maxnode, sgn);
13374 int precision = MAX (lowprec, highprec);
13375 unsigned int itk;
13376 bool use_short_enum;
13378 /* Determine the underlying type of the enumeration.
13380 [dcl.enum]
13382 The underlying type of an enumeration is an integral type that
13383 can represent all the enumerator values defined in the
13384 enumeration. It is implementation-defined which integral type is
13385 used as the underlying type for an enumeration except that the
13386 underlying type shall not be larger than int unless the value of
13387 an enumerator cannot fit in an int or unsigned int.
13389 We use "int" or an "unsigned int" as the underlying type, even if
13390 a smaller integral type would work, unless the user has
13391 explicitly requested that we use the smallest possible type. The
13392 user can request that for all enumerations with a command line
13393 flag, or for just one enumeration with an attribute. */
13395 use_short_enum = flag_short_enums
13396 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
13398 /* If the precision of the type was specified with an attribute and it
13399 was too small, give an error. Otherwise, use it. */
13400 if (TYPE_PRECISION (enumtype))
13402 if (precision > TYPE_PRECISION (enumtype))
13403 error ("specified mode too small for enumeral values");
13404 else
13406 use_short_enum = true;
13407 precision = TYPE_PRECISION (enumtype);
13411 for (itk = (use_short_enum ? itk_char : itk_int);
13412 itk != itk_none;
13413 itk++)
13415 underlying_type = integer_types[itk];
13416 if (underlying_type != NULL_TREE
13417 && TYPE_PRECISION (underlying_type) >= precision
13418 && TYPE_SIGN (underlying_type) == sgn)
13419 break;
13421 if (itk == itk_none)
13423 /* DR 377
13425 IF no integral type can represent all the enumerator values, the
13426 enumeration is ill-formed. */
13427 error ("no integral type can represent all of the enumerator values "
13428 "for %qT", enumtype);
13429 precision = TYPE_PRECISION (long_long_integer_type_node);
13430 underlying_type = integer_types[itk_unsigned_long_long];
13433 /* [dcl.enum]
13435 The value of sizeof() applied to an enumeration type, an object
13436 of an enumeration type, or an enumerator, is the value of sizeof()
13437 applied to the underlying type. */
13438 copy_type_enum (enumtype, underlying_type);
13440 /* Compute the minimum and maximum values for the type.
13442 [dcl.enum]
13444 For an enumeration where emin is the smallest enumerator and emax
13445 is the largest, the values of the enumeration are the values of the
13446 underlying type in the range bmin to bmax, where bmin and bmax are,
13447 respectively, the smallest and largest values of the smallest bit-
13448 field that can store emin and emax. */
13450 /* The middle-end currently assumes that types with TYPE_PRECISION
13451 narrower than their underlying type are suitably zero or sign
13452 extended to fill their mode. Similarly, it assumes that the front
13453 end assures that a value of a particular type must be within
13454 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
13456 We used to set these fields based on bmin and bmax, but that led
13457 to invalid assumptions like optimizing away bounds checking. So
13458 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
13459 TYPE_MAX_VALUE to the values for the mode above and only restrict
13460 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
13461 ENUM_UNDERLYING_TYPE (enumtype)
13462 = build_distinct_type_copy (underlying_type);
13463 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
13464 set_min_and_max_values_for_integral_type
13465 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
13467 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
13468 if (flag_strict_enums)
13469 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
13471 else
13472 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
13474 /* Convert each of the enumerators to the type of the underlying
13475 type of the enumeration. */
13476 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
13478 location_t saved_location;
13480 decl = TREE_VALUE (values);
13481 saved_location = input_location;
13482 input_location = DECL_SOURCE_LOCATION (decl);
13483 if (fixed_underlying_type_p)
13484 /* If the enumeration type has a fixed underlying type, we
13485 already checked all of the enumerator values. */
13486 value = DECL_INITIAL (decl);
13487 else
13488 value = perform_implicit_conversion (underlying_type,
13489 DECL_INITIAL (decl),
13490 tf_warning_or_error);
13491 input_location = saved_location;
13493 /* Do not clobber shared ints. */
13494 value = copy_node (value);
13496 TREE_TYPE (value) = enumtype;
13497 DECL_INITIAL (decl) = value;
13500 /* Fix up all variant types of this enum type. */
13501 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
13502 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
13504 if (at_class_scope_p ()
13505 && COMPLETE_TYPE_P (current_class_type)
13506 && UNSCOPED_ENUM_P (enumtype))
13507 insert_late_enum_def_into_classtype_sorted_fields (enumtype,
13508 current_class_type);
13510 /* Finish debugging output for this type. */
13511 rest_of_type_compilation (enumtype, namespace_bindings_p ());
13513 /* Each enumerator now has the type of its enumeration. Clear the cache
13514 so that this change in types doesn't confuse us later on. */
13515 clear_cv_and_fold_caches ();
13518 /* Finishes the enum type. This is called only the first time an
13519 enumeration is seen, be it opaque or odinary.
13520 ENUMTYPE is the type object. */
13522 void
13523 finish_enum (tree enumtype)
13525 if (processing_template_decl)
13527 if (at_function_scope_p ())
13528 add_stmt (build_min (TAG_DEFN, enumtype));
13529 return;
13532 /* If this is a forward declaration, there should not be any variants,
13533 though we can get a variant in the middle of an enum-specifier with
13534 wacky code like 'enum E { e = sizeof(const E*) };' */
13535 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
13536 && (TYPE_VALUES (enumtype)
13537 || !TYPE_NEXT_VARIANT (enumtype)));
13540 /* Build and install a CONST_DECL for an enumeration constant of the
13541 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
13542 Apply ATTRIBUTES if available. LOC is the location of NAME.
13543 Assignment of sequential values by default is handled here. */
13545 void
13546 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
13547 location_t loc)
13549 tree decl;
13550 tree context;
13551 tree type;
13553 /* scalar_constant_value will pull out this expression, so make sure
13554 it's folded as appropriate. */
13555 if (processing_template_decl)
13556 value = fold_non_dependent_expr (value);
13558 /* If the VALUE was erroneous, pretend it wasn't there; that will
13559 result in the enum being assigned the next value in sequence. */
13560 if (value == error_mark_node)
13561 value = NULL_TREE;
13563 /* Remove no-op casts from the value. */
13564 if (value)
13565 STRIP_TYPE_NOPS (value);
13567 if (! processing_template_decl)
13569 /* Validate and default VALUE. */
13570 if (value != NULL_TREE)
13572 if (!ENUM_UNDERLYING_TYPE (enumtype))
13574 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
13575 value, true);
13576 if (tmp_value)
13577 value = tmp_value;
13579 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
13580 (TREE_TYPE (value)))
13581 value = perform_implicit_conversion_flags
13582 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
13583 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
13585 if (value == error_mark_node)
13586 value = NULL_TREE;
13588 if (value != NULL_TREE)
13590 if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
13591 (TREE_TYPE (value)))
13593 error ("enumerator for %qD must have integral or "
13594 "unscoped enumeration type", name);
13595 value = NULL_TREE;
13597 else
13599 value = cxx_constant_value (value);
13601 if (TREE_CODE (value) != INTEGER_CST)
13603 error ("enumerator value for %qD is not an integer "
13604 "constant", name);
13605 value = NULL_TREE;
13611 /* Default based on previous value. */
13612 if (value == NULL_TREE)
13614 if (TYPE_VALUES (enumtype))
13616 tree prev_value;
13617 bool overflowed;
13619 /* C++03 7.2/4: If no initializer is specified for the first
13620 enumerator, the type is an unspecified integral
13621 type. Otherwise the type is the same as the type of the
13622 initializing value of the preceding enumerator unless the
13623 incremented value is not representable in that type, in
13624 which case the type is an unspecified integral type
13625 sufficient to contain the incremented value. */
13626 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
13627 if (error_operand_p (prev_value))
13628 value = error_mark_node;
13629 else
13631 tree type = TREE_TYPE (prev_value);
13632 signop sgn = TYPE_SIGN (type);
13633 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
13634 &overflowed);
13635 if (!overflowed)
13637 bool pos = !wi::neg_p (wi, sgn);
13638 if (!wi::fits_to_tree_p (wi, type))
13640 unsigned int itk;
13641 for (itk = itk_int; itk != itk_none; itk++)
13643 type = integer_types[itk];
13644 if (type != NULL_TREE
13645 && (pos || !TYPE_UNSIGNED (type))
13646 && wi::fits_to_tree_p (wi, type))
13647 break;
13649 if (type && cxx_dialect < cxx11
13650 && itk > itk_unsigned_long)
13651 pedwarn (input_location, OPT_Wlong_long, pos ? "\
13652 incremented enumerator value is too large for %<unsigned long%>" : "\
13653 incremented enumerator value is too large for %<long%>");
13655 if (type == NULL_TREE)
13656 overflowed = true;
13657 else
13658 value = wide_int_to_tree (type, wi);
13661 if (overflowed)
13663 error ("overflow in enumeration values at %qD", name);
13664 value = error_mark_node;
13668 else
13669 value = integer_zero_node;
13672 /* Remove no-op casts from the value. */
13673 STRIP_TYPE_NOPS (value);
13675 /* If the underlying type of the enum is fixed, check whether
13676 the enumerator values fits in the underlying type. If it
13677 does not fit, the program is ill-formed [C++0x dcl.enum]. */
13678 if (ENUM_UNDERLYING_TYPE (enumtype)
13679 && value
13680 && TREE_CODE (value) == INTEGER_CST)
13682 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
13683 error ("enumerator value %E is outside the range of underlying "
13684 "type %<%T%>", value, ENUM_UNDERLYING_TYPE (enumtype));
13686 /* Convert the value to the appropriate type. */
13687 value = fold_convert (ENUM_UNDERLYING_TYPE (enumtype), value);
13691 /* C++ associates enums with global, function, or class declarations. */
13692 context = current_scope ();
13694 /* Build the actual enumeration constant. Note that the enumeration
13695 constants have the underlying type of the enum (if it is fixed)
13696 or the type of their initializer (if the underlying type of the
13697 enum is not fixed):
13699 [ C++0x dcl.enum ]
13701 If the underlying type is fixed, the type of each enumerator
13702 prior to the closing brace is the underlying type; if the
13703 initializing value of an enumerator cannot be represented by
13704 the underlying type, the program is ill-formed. If the
13705 underlying type is not fixed, the type of each enumerator is
13706 the type of its initializing value.
13708 If the underlying type is not fixed, it will be computed by
13709 finish_enum and we will reset the type of this enumerator. Of
13710 course, if we're processing a template, there may be no value. */
13711 type = value ? TREE_TYPE (value) : NULL_TREE;
13713 decl = build_decl (loc, CONST_DECL, name, type);
13715 DECL_CONTEXT (decl) = enumtype;
13716 TREE_CONSTANT (decl) = 1;
13717 TREE_READONLY (decl) = 1;
13718 DECL_INITIAL (decl) = value;
13720 if (attributes)
13721 cplus_decl_attributes (&decl, attributes, 0);
13723 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
13725 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
13726 on the TYPE_FIELDS list for `S'. (That's so that you can say
13727 things like `S::i' later.) */
13729 /* The enumerator may be getting declared outside of its enclosing
13730 class, like so:
13732 class S { public: enum E : int; }; enum S::E : int { i = 7; };
13734 For which case we need to make sure that the access of `S::i'
13735 matches the access of `S::E'. */
13736 tree saved_cas = current_access_specifier;
13737 if (TREE_PRIVATE (TYPE_NAME (enumtype)))
13738 current_access_specifier = access_private_node;
13739 else if (TREE_PROTECTED (TYPE_NAME (enumtype)))
13740 current_access_specifier = access_protected_node;
13741 else
13742 current_access_specifier = access_public_node;
13744 finish_member_declaration (decl);
13746 current_access_specifier = saved_cas;
13748 else
13749 pushdecl (decl);
13751 /* Add this enumeration constant to the list for this type. */
13752 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
13755 /* Look for an enumerator with the given NAME within the enumeration
13756 type ENUMTYPE. This routine is used primarily for qualified name
13757 lookup into an enumerator in C++0x, e.g.,
13759 enum class Color { Red, Green, Blue };
13761 Color color = Color::Red;
13763 Returns the value corresponding to the enumerator, or
13764 NULL_TREE if no such enumerator was found. */
13765 tree
13766 lookup_enumerator (tree enumtype, tree name)
13768 tree e;
13769 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
13771 e = purpose_member (name, TYPE_VALUES (enumtype));
13772 return e? TREE_VALUE (e) : NULL_TREE;
13776 /* We're defining DECL. Make sure that its type is OK. */
13778 static void
13779 check_function_type (tree decl, tree current_function_parms)
13781 tree fntype = TREE_TYPE (decl);
13782 tree return_type = complete_type (TREE_TYPE (fntype));
13784 /* In a function definition, arg types must be complete. */
13785 require_complete_types_for_parms (current_function_parms);
13787 if (dependent_type_p (return_type)
13788 || type_uses_auto (return_type))
13789 return;
13790 if (!COMPLETE_OR_VOID_TYPE_P (return_type)
13791 || (TYPE_FOR_JAVA (return_type) && MAYBE_CLASS_TYPE_P (return_type)))
13793 tree args = TYPE_ARG_TYPES (fntype);
13795 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
13796 error ("return type %q#T is incomplete", return_type);
13797 else
13798 error ("return type has Java class type %q#T", return_type);
13800 /* Make it return void instead. */
13801 if (TREE_CODE (fntype) == METHOD_TYPE)
13802 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
13803 void_type_node,
13804 TREE_CHAIN (args));
13805 else
13806 fntype = build_function_type (void_type_node, args);
13807 fntype
13808 = build_exception_variant (fntype,
13809 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)));
13810 fntype = (cp_build_type_attribute_variant
13811 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
13812 TREE_TYPE (decl) = fntype;
13814 else
13815 abstract_virtuals_error (decl, TREE_TYPE (fntype));
13818 /* True iff FN is an implicitly-defined default constructor. */
13820 static bool
13821 implicit_default_ctor_p (tree fn)
13823 return (DECL_CONSTRUCTOR_P (fn)
13824 && !user_provided_p (fn)
13825 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)));
13828 /* Clobber the contents of *this to let the back end know that the object
13829 storage is dead when we enter the constructor or leave the destructor. */
13831 static tree
13832 build_clobber_this ()
13834 /* Clobbering an empty base is pointless, and harmful if its one byte
13835 TYPE_SIZE overlays real data. */
13836 if (is_empty_class (current_class_type))
13837 return void_node;
13839 /* If we have virtual bases, clobber the whole object, but only if we're in
13840 charge. If we don't have virtual bases, clobber the as-base type so we
13841 don't mess with tail padding. */
13842 bool vbases = CLASSTYPE_VBASECLASSES (current_class_type);
13844 tree ctype = current_class_type;
13845 if (!vbases)
13846 ctype = CLASSTYPE_AS_BASE (ctype);
13848 tree clobber = build_constructor (ctype, NULL);
13849 TREE_THIS_VOLATILE (clobber) = true;
13851 tree thisref = current_class_ref;
13852 if (ctype != current_class_type)
13854 thisref = build_nop (build_reference_type (ctype), current_class_ptr);
13855 thisref = convert_from_reference (thisref);
13858 tree exprstmt = build2 (MODIFY_EXPR, void_type_node, thisref, clobber);
13859 if (vbases)
13860 exprstmt = build_if_in_charge (exprstmt);
13862 return exprstmt;
13865 /* Create the FUNCTION_DECL for a function definition.
13866 DECLSPECS and DECLARATOR are the parts of the declaration;
13867 they describe the function's name and the type it returns,
13868 but twisted together in a fashion that parallels the syntax of C.
13870 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
13871 DECLARATOR is really the DECL for the function we are about to
13872 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
13873 indicating that the function is an inline defined in-class.
13875 This function creates a binding context for the function body
13876 as well as setting up the FUNCTION_DECL in current_function_decl.
13878 For C++, we must first check whether that datum makes any sense.
13879 For example, "class A local_a(1,2);" means that variable local_a
13880 is an aggregate of type A, which should have a constructor
13881 applied to it with the argument list [1, 2].
13883 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
13884 or may be a BLOCK if the function has been defined previously
13885 in this translation unit. On exit, DECL_INITIAL (decl1) will be
13886 error_mark_node if the function has never been defined, or
13887 a BLOCK if the function has been defined somewhere. */
13889 bool
13890 start_preparsed_function (tree decl1, tree attrs, int flags)
13892 tree ctype = NULL_TREE;
13893 tree fntype;
13894 tree restype;
13895 int doing_friend = 0;
13896 cp_binding_level *bl;
13897 tree current_function_parms;
13898 struct c_fileinfo *finfo
13899 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
13900 bool honor_interface;
13902 /* Sanity check. */
13903 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
13904 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
13906 fntype = TREE_TYPE (decl1);
13907 if (TREE_CODE (fntype) == METHOD_TYPE)
13908 ctype = TYPE_METHOD_BASETYPE (fntype);
13910 /* ISO C++ 11.4/5. A friend function defined in a class is in
13911 the (lexical) scope of the class in which it is defined. */
13912 if (!ctype && DECL_FRIEND_P (decl1))
13914 ctype = DECL_FRIEND_CONTEXT (decl1);
13916 /* CTYPE could be null here if we're dealing with a template;
13917 for example, `inline friend float foo()' inside a template
13918 will have no CTYPE set. */
13919 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
13920 ctype = NULL_TREE;
13921 else
13922 doing_friend = 1;
13925 if (DECL_DECLARED_INLINE_P (decl1)
13926 && lookup_attribute ("noinline", attrs))
13927 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
13928 "inline function %qD given attribute noinline", decl1);
13930 /* Handle gnu_inline attribute. */
13931 if (GNU_INLINE_P (decl1))
13933 DECL_EXTERNAL (decl1) = 1;
13934 DECL_NOT_REALLY_EXTERN (decl1) = 0;
13935 DECL_INTERFACE_KNOWN (decl1) = 1;
13936 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
13939 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
13940 /* This is a constructor, we must ensure that any default args
13941 introduced by this definition are propagated to the clones
13942 now. The clones are used directly in overload resolution. */
13943 adjust_clone_args (decl1);
13945 /* Sometimes we don't notice that a function is a static member, and
13946 build a METHOD_TYPE for it. Fix that up now. */
13947 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
13948 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
13950 /* Set up current_class_type, and enter the scope of the class, if
13951 appropriate. */
13952 if (ctype)
13953 push_nested_class (ctype);
13954 else if (DECL_STATIC_FUNCTION_P (decl1))
13955 push_nested_class (DECL_CONTEXT (decl1));
13957 /* Now that we have entered the scope of the class, we must restore
13958 the bindings for any template parameters surrounding DECL1, if it
13959 is an inline member template. (Order is important; consider the
13960 case where a template parameter has the same name as a field of
13961 the class.) It is not until after this point that
13962 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
13963 if (flags & SF_INCLASS_INLINE)
13964 maybe_begin_member_template_processing (decl1);
13966 /* Effective C++ rule 15. */
13967 if (warn_ecpp
13968 && DECL_OVERLOADED_OPERATOR_P (decl1) == NOP_EXPR
13969 && VOID_TYPE_P (TREE_TYPE (fntype)))
13970 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
13972 /* Make the init_value nonzero so pushdecl knows this is not tentative.
13973 error_mark_node is replaced below (in poplevel) with the BLOCK. */
13974 if (!DECL_INITIAL (decl1))
13975 DECL_INITIAL (decl1) = error_mark_node;
13977 /* This function exists in static storage.
13978 (This does not mean `static' in the C sense!) */
13979 TREE_STATIC (decl1) = 1;
13981 /* We must call push_template_decl after current_class_type is set
13982 up. (If we are processing inline definitions after exiting a
13983 class scope, current_class_type will be NULL_TREE until set above
13984 by push_nested_class.) */
13985 if (processing_template_decl)
13987 tree newdecl1 = push_template_decl (decl1);
13988 if (newdecl1 == error_mark_node)
13990 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
13991 pop_nested_class ();
13992 return false;
13994 decl1 = newdecl1;
13997 /* We are now in the scope of the function being defined. */
13998 current_function_decl = decl1;
14000 /* Save the parm names or decls from this function's declarator
14001 where store_parm_decls will find them. */
14002 current_function_parms = DECL_ARGUMENTS (decl1);
14004 /* Make sure the parameter and return types are reasonable. When
14005 you declare a function, these types can be incomplete, but they
14006 must be complete when you define the function. */
14007 check_function_type (decl1, current_function_parms);
14009 /* Build the return declaration for the function. */
14010 restype = TREE_TYPE (fntype);
14012 if (DECL_RESULT (decl1) == NULL_TREE)
14014 tree resdecl;
14016 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
14017 DECL_ARTIFICIAL (resdecl) = 1;
14018 DECL_IGNORED_P (resdecl) = 1;
14019 DECL_RESULT (decl1) = resdecl;
14021 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
14024 /* Let the user know we're compiling this function. */
14025 announce_function (decl1);
14027 /* Record the decl so that the function name is defined.
14028 If we already have a decl for this name, and it is a FUNCTION_DECL,
14029 use the old decl. */
14030 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
14032 /* A specialization is not used to guide overload resolution. */
14033 if (!DECL_FUNCTION_MEMBER_P (decl1)
14034 && !(DECL_USE_TEMPLATE (decl1) &&
14035 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
14037 tree olddecl = pushdecl (decl1);
14039 if (olddecl == error_mark_node)
14040 /* If something went wrong when registering the declaration,
14041 use DECL1; we have to have a FUNCTION_DECL to use when
14042 parsing the body of the function. */
14044 else
14046 /* Otherwise, OLDDECL is either a previous declaration
14047 of the same function or DECL1 itself. */
14049 if (warn_missing_declarations
14050 && olddecl == decl1
14051 && !DECL_MAIN_P (decl1)
14052 && TREE_PUBLIC (decl1)
14053 && !DECL_DECLARED_INLINE_P (decl1))
14055 tree context;
14057 /* Check whether DECL1 is in an anonymous
14058 namespace. */
14059 for (context = DECL_CONTEXT (decl1);
14060 context;
14061 context = DECL_CONTEXT (context))
14063 if (TREE_CODE (context) == NAMESPACE_DECL
14064 && DECL_NAME (context) == NULL_TREE)
14065 break;
14068 if (context == NULL)
14069 warning_at (DECL_SOURCE_LOCATION (decl1),
14070 OPT_Wmissing_declarations,
14071 "no previous declaration for %qD", decl1);
14074 decl1 = olddecl;
14077 else
14079 /* We need to set the DECL_CONTEXT. */
14080 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
14081 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
14083 fntype = TREE_TYPE (decl1);
14084 restype = TREE_TYPE (fntype);
14086 /* If #pragma weak applies, mark the decl appropriately now.
14087 The pragma only applies to global functions. Because
14088 determining whether or not the #pragma applies involves
14089 computing the mangled name for the declaration, we cannot
14090 apply the pragma until after we have merged this declaration
14091 with any previous declarations; if the original declaration
14092 has a linkage specification, that specification applies to
14093 the definition as well, and may affect the mangled name. */
14094 if (DECL_FILE_SCOPE_P (decl1))
14095 maybe_apply_pragma_weak (decl1);
14098 /* Reset this in case the call to pushdecl changed it. */
14099 current_function_decl = decl1;
14101 gcc_assert (DECL_INITIAL (decl1));
14103 /* This function may already have been parsed, in which case just
14104 return; our caller will skip over the body without parsing. */
14105 if (DECL_INITIAL (decl1) != error_mark_node)
14106 return true;
14108 /* Initialize RTL machinery. We cannot do this until
14109 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
14110 even when processing a template; this is how we get
14111 CFUN set up, and our per-function variables initialized.
14112 FIXME factor out the non-RTL stuff. */
14113 bl = current_binding_level;
14114 allocate_struct_function (decl1, processing_template_decl);
14116 /* Initialize the language data structures. Whenever we start
14117 a new function, we destroy temporaries in the usual way. */
14118 cfun->language = ggc_cleared_alloc<language_function> ();
14119 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
14120 current_binding_level = bl;
14122 if (!processing_template_decl && type_uses_auto (restype))
14124 FNDECL_USED_AUTO (decl1) = true;
14125 current_function_auto_return_pattern = restype;
14128 /* Start the statement-tree, start the tree now. */
14129 DECL_SAVED_TREE (decl1) = push_stmt_list ();
14131 /* If we are (erroneously) defining a function that we have already
14132 defined before, wipe out what we knew before. */
14133 if (!DECL_PENDING_INLINE_P (decl1))
14134 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
14136 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
14138 /* We know that this was set up by `grokclassfn'. We do not
14139 wait until `store_parm_decls', since evil parse errors may
14140 never get us to that point. Here we keep the consistency
14141 between `current_class_type' and `current_class_ptr'. */
14142 tree t = DECL_ARGUMENTS (decl1);
14144 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
14145 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
14147 cp_function_chain->x_current_class_ref
14148 = cp_build_indirect_ref (t, RO_NULL, tf_warning_or_error);
14149 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
14150 cp_function_chain->x_current_class_ptr = t;
14152 /* Constructors and destructors need to know whether they're "in
14153 charge" of initializing virtual base classes. */
14154 t = DECL_CHAIN (t);
14155 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
14157 current_in_charge_parm = t;
14158 t = DECL_CHAIN (t);
14160 if (DECL_HAS_VTT_PARM_P (decl1))
14162 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
14163 current_vtt_parm = t;
14167 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
14168 /* Implicitly-defined methods (like the
14169 destructor for a class in which no destructor
14170 is explicitly declared) must not be defined
14171 until their definition is needed. So, we
14172 ignore interface specifications for
14173 compiler-generated functions. */
14174 && !DECL_ARTIFICIAL (decl1));
14176 if (processing_template_decl)
14177 /* Don't mess with interface flags. */;
14178 else if (DECL_INTERFACE_KNOWN (decl1))
14180 tree ctx = decl_function_context (decl1);
14182 if (DECL_NOT_REALLY_EXTERN (decl1))
14183 DECL_EXTERNAL (decl1) = 0;
14185 if (ctx != NULL_TREE && vague_linkage_p (ctx))
14186 /* This is a function in a local class in an extern inline
14187 or template function. */
14188 comdat_linkage (decl1);
14190 /* If this function belongs to an interface, it is public.
14191 If it belongs to someone else's interface, it is also external.
14192 This only affects inlines and template instantiations. */
14193 else if (!finfo->interface_unknown && honor_interface)
14195 if (DECL_DECLARED_INLINE_P (decl1)
14196 || DECL_TEMPLATE_INSTANTIATION (decl1))
14198 DECL_EXTERNAL (decl1)
14199 = (finfo->interface_only
14200 || (DECL_DECLARED_INLINE_P (decl1)
14201 && ! flag_implement_inlines
14202 && !DECL_VINDEX (decl1)));
14204 /* For WIN32 we also want to put these in linkonce sections. */
14205 maybe_make_one_only (decl1);
14207 else
14208 DECL_EXTERNAL (decl1) = 0;
14209 DECL_INTERFACE_KNOWN (decl1) = 1;
14210 /* If this function is in an interface implemented in this file,
14211 make sure that the back end knows to emit this function
14212 here. */
14213 if (!DECL_EXTERNAL (decl1))
14214 mark_needed (decl1);
14216 else if (finfo->interface_unknown && finfo->interface_only
14217 && honor_interface)
14219 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
14220 interface, we will have both finfo->interface_unknown and
14221 finfo->interface_only set. In that case, we don't want to
14222 use the normal heuristics because someone will supply a
14223 #pragma implementation elsewhere, and deducing it here would
14224 produce a conflict. */
14225 comdat_linkage (decl1);
14226 DECL_EXTERNAL (decl1) = 0;
14227 DECL_INTERFACE_KNOWN (decl1) = 1;
14228 DECL_DEFER_OUTPUT (decl1) = 1;
14230 else
14232 /* This is a definition, not a reference.
14233 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
14234 if (!GNU_INLINE_P (decl1))
14235 DECL_EXTERNAL (decl1) = 0;
14237 if ((DECL_DECLARED_INLINE_P (decl1)
14238 || DECL_TEMPLATE_INSTANTIATION (decl1))
14239 && ! DECL_INTERFACE_KNOWN (decl1))
14240 DECL_DEFER_OUTPUT (decl1) = 1;
14241 else
14242 DECL_INTERFACE_KNOWN (decl1) = 1;
14245 /* Determine the ELF visibility attribute for the function. We must not
14246 do this before calling "pushdecl", as we must allow "duplicate_decls"
14247 to merge any attributes appropriately. We also need to wait until
14248 linkage is set. */
14249 if (!DECL_CLONED_FUNCTION_P (decl1))
14250 determine_visibility (decl1);
14252 if (!processing_template_decl)
14253 maybe_instantiate_noexcept (decl1);
14255 begin_scope (sk_function_parms, decl1);
14257 ++function_depth;
14259 if (DECL_DESTRUCTOR_P (decl1)
14260 || (DECL_CONSTRUCTOR_P (decl1)
14261 && targetm.cxx.cdtor_returns_this ()))
14262 cdtor_label = create_artificial_label (input_location);
14264 start_fname_decls ();
14266 store_parm_decls (current_function_parms);
14268 if (!processing_template_decl
14269 && (flag_lifetime_dse > 1)
14270 && DECL_CONSTRUCTOR_P (decl1)
14271 && !DECL_CLONED_FUNCTION_P (decl1)
14272 /* Clobbering an empty base is harmful if it overlays real data. */
14273 && !is_empty_class (current_class_type)
14274 /* We can't clobber safely for an implicitly-defined default constructor
14275 because part of the initialization might happen before we enter the
14276 constructor, via AGGR_INIT_ZERO_FIRST (c++/68006). */
14277 && !implicit_default_ctor_p (decl1))
14278 finish_expr_stmt (build_clobber_this ());
14280 if (!processing_template_decl
14281 && DECL_CONSTRUCTOR_P (decl1)
14282 && (flag_sanitize & SANITIZE_VPTR)
14283 && !DECL_CLONED_FUNCTION_P (decl1)
14284 && !implicit_default_ctor_p (decl1))
14285 cp_ubsan_maybe_initialize_vtbl_ptrs (current_class_ptr);
14287 return true;
14291 /* Like start_preparsed_function, except that instead of a
14292 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
14294 Returns true on success. If the DECLARATOR is not suitable
14295 for a function, we return false, which tells the parser to
14296 skip the entire function. */
14298 bool
14299 start_function (cp_decl_specifier_seq *declspecs,
14300 const cp_declarator *declarator,
14301 tree attrs)
14303 tree decl1;
14305 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
14306 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
14307 if (decl1 == error_mark_node)
14308 return false;
14309 /* If the declarator is not suitable for a function definition,
14310 cause a syntax error. */
14311 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
14313 error ("invalid function declaration");
14314 return false;
14317 if (DECL_MAIN_P (decl1))
14318 /* main must return int. grokfndecl should have corrected it
14319 (and issued a diagnostic) if the user got it wrong. */
14320 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
14321 integer_type_node));
14323 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
14326 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
14327 FN. */
14329 static bool
14330 use_eh_spec_block (tree fn)
14332 return (flag_exceptions && flag_enforce_eh_specs
14333 && !processing_template_decl
14334 && !type_throw_all_p (TREE_TYPE (fn))
14335 /* We insert the EH_SPEC_BLOCK only in the original
14336 function; then, it is copied automatically to the
14337 clones. */
14338 && !DECL_CLONED_FUNCTION_P (fn)
14339 /* Implicitly-generated constructors and destructors have
14340 exception specifications. However, those specifications
14341 are the union of the possible exceptions specified by the
14342 constructors/destructors for bases and members, so no
14343 unallowed exception will ever reach this function. By
14344 not creating the EH_SPEC_BLOCK we save a little memory,
14345 and we avoid spurious warnings about unreachable
14346 code. */
14347 && !DECL_DEFAULTED_FN (fn));
14350 /* Store the parameter declarations into the current function declaration.
14351 This is called after parsing the parameter declarations, before
14352 digesting the body of the function.
14354 Also install to binding contour return value identifier, if any. */
14356 static void
14357 store_parm_decls (tree current_function_parms)
14359 tree fndecl = current_function_decl;
14360 tree parm;
14362 /* This is a chain of any other decls that came in among the parm
14363 declarations. If a parm is declared with enum {foo, bar} x;
14364 then CONST_DECLs for foo and bar are put here. */
14365 tree nonparms = NULL_TREE;
14367 if (current_function_parms)
14369 /* This case is when the function was defined with an ANSI prototype.
14370 The parms already have decls, so we need not do anything here
14371 except record them as in effect
14372 and complain if any redundant old-style parm decls were written. */
14374 tree specparms = current_function_parms;
14375 tree next;
14377 /* Must clear this because it might contain TYPE_DECLs declared
14378 at class level. */
14379 current_binding_level->names = NULL;
14381 /* If we're doing semantic analysis, then we'll call pushdecl
14382 for each of these. We must do them in reverse order so that
14383 they end in the correct forward order. */
14384 specparms = nreverse (specparms);
14386 for (parm = specparms; parm; parm = next)
14388 next = DECL_CHAIN (parm);
14389 if (TREE_CODE (parm) == PARM_DECL)
14390 pushdecl (parm);
14391 else
14393 /* If we find an enum constant or a type tag,
14394 put it aside for the moment. */
14395 TREE_CHAIN (parm) = NULL_TREE;
14396 nonparms = chainon (nonparms, parm);
14400 /* Get the decls in their original chain order and record in the
14401 function. This is all and only the PARM_DECLs that were
14402 pushed into scope by the loop above. */
14403 DECL_ARGUMENTS (fndecl) = getdecls ();
14405 else
14406 DECL_ARGUMENTS (fndecl) = NULL_TREE;
14408 /* Now store the final chain of decls for the arguments
14409 as the decl-chain of the current lexical scope.
14410 Put the enumerators in as well, at the front so that
14411 DECL_ARGUMENTS is not modified. */
14412 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
14414 if (use_eh_spec_block (current_function_decl))
14415 current_eh_spec_block = begin_eh_spec_block ();
14419 /* We have finished doing semantic analysis on DECL, but have not yet
14420 generated RTL for its body. Save away our current state, so that
14421 when we want to generate RTL later we know what to do. */
14423 static void
14424 save_function_data (tree decl)
14426 struct language_function *f;
14428 /* Save the language-specific per-function data so that we can
14429 get it back when we really expand this function. */
14430 gcc_assert (!DECL_PENDING_INLINE_P (decl));
14432 /* Make a copy. */
14433 f = ggc_alloc<language_function> ();
14434 memcpy (f, cp_function_chain, sizeof (struct language_function));
14435 DECL_SAVED_FUNCTION_DATA (decl) = f;
14437 /* Clear out the bits we don't need. */
14438 f->base.x_stmt_tree.x_cur_stmt_list = NULL;
14439 f->bindings = NULL;
14440 f->x_local_names = NULL;
14441 f->base.local_typedefs = NULL;
14445 /* Set the return value of the constructor (if present). */
14447 static void
14448 finish_constructor_body (void)
14450 tree val;
14451 tree exprstmt;
14453 if (targetm.cxx.cdtor_returns_this ()
14454 && (! TYPE_FOR_JAVA (current_class_type)))
14456 /* Any return from a constructor will end up here. */
14457 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
14459 val = DECL_ARGUMENTS (current_function_decl);
14460 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
14461 DECL_RESULT (current_function_decl), val);
14462 /* Return the address of the object. */
14463 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
14464 add_stmt (exprstmt);
14468 /* Do all the processing for the beginning of a destructor; set up the
14469 vtable pointers and cleanups for bases and members. */
14471 static void
14472 begin_destructor_body (void)
14474 tree compound_stmt;
14476 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
14477 issued an error message. We still want to try to process the
14478 body of the function, but initialize_vtbl_ptrs will crash if
14479 TYPE_BINFO is NULL. */
14480 if (COMPLETE_TYPE_P (current_class_type))
14482 compound_stmt = begin_compound_stmt (0);
14483 /* Make all virtual function table pointers in non-virtual base
14484 classes point to CURRENT_CLASS_TYPE's virtual function
14485 tables. */
14486 initialize_vtbl_ptrs (current_class_ptr);
14487 finish_compound_stmt (compound_stmt);
14489 if (flag_lifetime_dse
14490 /* Clobbering an empty base is harmful if it overlays real data. */
14491 && !is_empty_class (current_class_type))
14492 finish_decl_cleanup (NULL_TREE, build_clobber_this ());
14494 /* And insert cleanups for our bases and members so that they
14495 will be properly destroyed if we throw. */
14496 push_base_cleanups ();
14500 /* At the end of every destructor we generate code to delete the object if
14501 necessary. Do that now. */
14503 static void
14504 finish_destructor_body (void)
14506 tree exprstmt;
14508 /* Any return from a destructor will end up here; that way all base
14509 and member cleanups will be run when the function returns. */
14510 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
14512 if (targetm.cxx.cdtor_returns_this ())
14514 tree val;
14516 val = DECL_ARGUMENTS (current_function_decl);
14517 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
14518 DECL_RESULT (current_function_decl), val);
14519 /* Return the address of the object. */
14520 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
14521 add_stmt (exprstmt);
14525 /* Do the necessary processing for the beginning of a function body, which
14526 in this case includes member-initializers, but not the catch clauses of
14527 a function-try-block. Currently, this means opening a binding level
14528 for the member-initializers (in a ctor), member cleanups (in a dtor),
14529 and capture proxies (in a lambda operator()). */
14531 tree
14532 begin_function_body (void)
14534 tree stmt;
14536 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
14537 return NULL_TREE;
14539 if (processing_template_decl)
14540 /* Do nothing now. */;
14541 else
14542 /* Always keep the BLOCK node associated with the outermost pair of
14543 curly braces of a function. These are needed for correct
14544 operation of dwarfout.c. */
14545 keep_next_level (true);
14547 stmt = begin_compound_stmt (BCS_FN_BODY);
14549 if (processing_template_decl)
14550 /* Do nothing now. */;
14551 else if (DECL_DESTRUCTOR_P (current_function_decl))
14552 begin_destructor_body ();
14554 return stmt;
14557 /* Do the processing for the end of a function body. Currently, this means
14558 closing out the cleanups for fully-constructed bases and members, and in
14559 the case of the destructor, deleting the object if desired. Again, this
14560 is only meaningful for [cd]tors, since they are the only functions where
14561 there is a significant distinction between the main body and any
14562 function catch clauses. Handling, say, main() return semantics here
14563 would be wrong, as flowing off the end of a function catch clause for
14564 main() would also need to return 0. */
14566 void
14567 finish_function_body (tree compstmt)
14569 if (compstmt == NULL_TREE)
14570 return;
14572 /* Close the block. */
14573 finish_compound_stmt (compstmt);
14575 if (processing_template_decl)
14576 /* Do nothing now. */;
14577 else if (DECL_CONSTRUCTOR_P (current_function_decl))
14578 finish_constructor_body ();
14579 else if (DECL_DESTRUCTOR_P (current_function_decl))
14580 finish_destructor_body ();
14583 /* Given a function, returns the BLOCK corresponding to the outermost level
14584 of curly braces, skipping the artificial block created for constructor
14585 initializers. */
14587 tree
14588 outer_curly_brace_block (tree fndecl)
14590 tree block = DECL_INITIAL (fndecl);
14591 if (BLOCK_OUTER_CURLY_BRACE_P (block))
14592 return block;
14593 block = BLOCK_SUBBLOCKS (block);
14594 if (BLOCK_OUTER_CURLY_BRACE_P (block))
14595 return block;
14596 block = BLOCK_SUBBLOCKS (block);
14597 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
14598 return block;
14601 /* If FNDECL is a class's key method, add the class to the list of
14602 keyed classes that should be emitted. */
14604 static void
14605 record_key_method_defined (tree fndecl)
14607 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
14608 && DECL_VIRTUAL_P (fndecl)
14609 && !processing_template_decl)
14611 tree fnclass = DECL_CONTEXT (fndecl);
14612 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
14613 keyed_classes = tree_cons (NULL_TREE, fnclass, keyed_classes);
14617 /* Subroutine of finish_function.
14618 Save the body of constexpr functions for possible
14619 future compile time evaluation. */
14621 static void
14622 maybe_save_function_definition (tree fun)
14624 if (!processing_template_decl
14625 && DECL_DECLARED_CONSTEXPR_P (fun)
14626 && !cp_function_chain->invalid_constexpr
14627 && !DECL_CLONED_FUNCTION_P (fun))
14628 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
14631 /* Finish up a function declaration and compile that function
14632 all the way to assembler language output. The free the storage
14633 for the function definition.
14635 FLAGS is a bitwise or of the following values:
14636 2 - INCLASS_INLINE
14637 We just finished processing the body of an in-class inline
14638 function definition. (This processing will have taken place
14639 after the class definition is complete.) */
14641 tree
14642 finish_function (int flags)
14644 tree fndecl = current_function_decl;
14645 tree fntype, ctype = NULL_TREE;
14646 int inclass_inline = (flags & 2) != 0;
14648 /* When we get some parse errors, we can end up without a
14649 current_function_decl, so cope. */
14650 if (fndecl == NULL_TREE)
14651 return error_mark_node;
14653 if (c_dialect_objc ())
14654 objc_finish_function ();
14656 record_key_method_defined (fndecl);
14658 fntype = TREE_TYPE (fndecl);
14660 /* TREE_READONLY (fndecl) = 1;
14661 This caused &foo to be of type ptr-to-const-function
14662 which then got a warning when stored in a ptr-to-function variable. */
14664 gcc_assert (building_stmt_list_p ());
14665 /* The current function is being defined, so its DECL_INITIAL should
14666 be set, and unless there's a multiple definition, it should be
14667 error_mark_node. */
14668 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
14670 /* For a cloned function, we've already got all the code we need;
14671 there's no need to add any extra bits. */
14672 if (!DECL_CLONED_FUNCTION_P (fndecl))
14674 /* Make it so that `main' always returns 0 by default. */
14675 if (DECL_MAIN_P (current_function_decl))
14676 finish_return_stmt (integer_zero_node);
14678 if (use_eh_spec_block (current_function_decl))
14679 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
14680 (TREE_TYPE (current_function_decl)),
14681 current_eh_spec_block);
14684 /* If we're saving up tree structure, tie off the function now. */
14685 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
14687 if (fn_contains_cilk_spawn_p (cfun) && !processing_template_decl)
14688 cfun->cilk_frame_decl = insert_cilk_frame (fndecl);
14690 finish_fname_decls ();
14692 /* If this function can't throw any exceptions, remember that. */
14693 if (!processing_template_decl
14694 && !cp_function_chain->can_throw
14695 && !flag_non_call_exceptions
14696 && !decl_replaceable_p (fndecl))
14697 TREE_NOTHROW (fndecl) = 1;
14699 /* This must come after expand_function_end because cleanups might
14700 have declarations (from inline functions) that need to go into
14701 this function's blocks. */
14703 /* If the current binding level isn't the outermost binding level
14704 for this function, either there is a bug, or we have experienced
14705 syntax errors and the statement tree is malformed. */
14706 if (current_binding_level->kind != sk_function_parms)
14708 /* Make sure we have already experienced errors. */
14709 gcc_assert (errorcount);
14711 /* Throw away the broken statement tree and extra binding
14712 levels. */
14713 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
14715 while (current_binding_level->kind != sk_function_parms)
14717 if (current_binding_level->kind == sk_class)
14718 pop_nested_class ();
14719 else
14720 poplevel (0, 0, 0);
14723 poplevel (1, 0, 1);
14725 /* Statements should always be full-expressions at the outermost set
14726 of curly braces for a function. */
14727 gcc_assert (stmts_are_full_exprs_p ());
14729 /* If there are no return statements in a function with auto return type,
14730 the return type is void. But if the declared type is something like
14731 auto*, this is an error. */
14732 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
14733 && TREE_TYPE (fntype) == current_function_auto_return_pattern)
14735 if (!is_auto (current_function_auto_return_pattern)
14736 && !current_function_returns_value && !current_function_returns_null)
14738 error ("no return statements in function returning %qT",
14739 current_function_auto_return_pattern);
14740 inform (input_location, "only plain %<auto%> return type can be "
14741 "deduced to %<void%>");
14743 apply_deduced_return_type (fndecl, void_type_node);
14744 fntype = TREE_TYPE (fndecl);
14747 // If this is a concept, check that the definition is reasonable.
14748 if (DECL_DECLARED_CONCEPT_P (fndecl))
14749 check_function_concept (fndecl);
14751 /* Save constexpr function body before it gets munged by
14752 the NRV transformation. */
14753 maybe_save_function_definition (fndecl);
14755 /* Invoke the pre-genericize plugin before we start munging things. */
14756 if (!processing_template_decl)
14757 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
14759 /* Perform delayed folding before NRV transformation. */
14760 if (!processing_template_decl)
14761 cp_fold_function (fndecl);
14763 /* Set up the named return value optimization, if we can. Candidate
14764 variables are selected in check_return_expr. */
14765 if (current_function_return_value)
14767 tree r = current_function_return_value;
14768 tree outer;
14770 if (r != error_mark_node
14771 /* This is only worth doing for fns that return in memory--and
14772 simpler, since we don't have to worry about promoted modes. */
14773 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
14774 /* Only allow this for variables declared in the outer scope of
14775 the function so we know that their lifetime always ends with a
14776 return; see g++.dg/opt/nrv6.C. We could be more flexible if
14777 we were to do this optimization in tree-ssa. */
14778 && (outer = outer_curly_brace_block (fndecl))
14779 && chain_member (r, BLOCK_VARS (outer)))
14780 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
14782 current_function_return_value = NULL_TREE;
14785 /* Remember that we were in class scope. */
14786 if (current_class_name)
14787 ctype = current_class_type;
14789 /* Must mark the RESULT_DECL as being in this function. */
14790 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
14792 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
14793 to the FUNCTION_DECL node itself. */
14794 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
14796 /* Save away current state, if appropriate. */
14797 if (!processing_template_decl)
14798 save_function_data (fndecl);
14800 /* Complain if there's just no return statement. */
14801 if (warn_return_type
14802 && !VOID_TYPE_P (TREE_TYPE (fntype))
14803 && !dependent_type_p (TREE_TYPE (fntype))
14804 && !current_function_returns_value && !current_function_returns_null
14805 /* Don't complain if we abort or throw. */
14806 && !current_function_returns_abnormally
14807 /* Don't complain if there's an infinite loop. */
14808 && !current_function_infinite_loop
14809 /* Don't complain if we are declared noreturn. */
14810 && !TREE_THIS_VOLATILE (fndecl)
14811 && !DECL_NAME (DECL_RESULT (fndecl))
14812 && !TREE_NO_WARNING (fndecl)
14813 /* Structor return values (if any) are set by the compiler. */
14814 && !DECL_CONSTRUCTOR_P (fndecl)
14815 && !DECL_DESTRUCTOR_P (fndecl)
14816 && targetm.warn_func_return (fndecl))
14818 warning (OPT_Wreturn_type,
14819 "no return statement in function returning non-void");
14820 TREE_NO_WARNING (fndecl) = 1;
14823 /* Store the end of the function, so that we get good line number
14824 info for the epilogue. */
14825 cfun->function_end_locus = input_location;
14827 /* Complain about parameters that are only set, but never otherwise used. */
14828 if (warn_unused_but_set_parameter
14829 && !processing_template_decl
14830 && errorcount == unused_but_set_errorcount
14831 && !DECL_CLONED_FUNCTION_P (fndecl))
14833 tree decl;
14835 for (decl = DECL_ARGUMENTS (fndecl);
14836 decl;
14837 decl = DECL_CHAIN (decl))
14838 if (TREE_USED (decl)
14839 && TREE_CODE (decl) == PARM_DECL
14840 && !DECL_READ_P (decl)
14841 && DECL_NAME (decl)
14842 && !DECL_ARTIFICIAL (decl)
14843 && !TREE_NO_WARNING (decl)
14844 && !DECL_IN_SYSTEM_HEADER (decl)
14845 && TREE_TYPE (decl) != error_mark_node
14846 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
14847 && (!CLASS_TYPE_P (TREE_TYPE (decl))
14848 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
14849 warning_at (DECL_SOURCE_LOCATION (decl),
14850 OPT_Wunused_but_set_parameter,
14851 "parameter %qD set but not used", decl);
14852 unused_but_set_errorcount = errorcount;
14855 /* Complain about locally defined typedefs that are not used in this
14856 function. */
14857 maybe_warn_unused_local_typedefs ();
14859 /* Possibly warn about unused parameters. */
14860 if (warn_unused_parameter
14861 && !processing_template_decl
14862 && !DECL_CLONED_FUNCTION_P (fndecl))
14863 do_warn_unused_parameter (fndecl);
14865 /* Genericize before inlining. */
14866 if (!processing_template_decl)
14868 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
14869 cp_genericize (fndecl);
14870 /* Clear out the bits we don't need. */
14871 f->x_current_class_ptr = NULL;
14872 f->x_current_class_ref = NULL;
14873 f->x_eh_spec_block = NULL;
14874 f->x_in_charge_parm = NULL;
14875 f->x_vtt_parm = NULL;
14876 f->x_return_value = NULL;
14877 f->bindings = NULL;
14878 f->extern_decl_map = NULL;
14879 f->infinite_loops = NULL;
14881 /* Clear out the bits we don't need. */
14882 local_names = NULL;
14884 /* We're leaving the context of this function, so zap cfun. It's still in
14885 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
14886 set_cfun (NULL);
14887 current_function_decl = NULL;
14889 /* If this is an in-class inline definition, we may have to pop the
14890 bindings for the template parameters that we added in
14891 maybe_begin_member_template_processing when start_function was
14892 called. */
14893 if (inclass_inline)
14894 maybe_end_member_template_processing ();
14896 /* Leave the scope of the class. */
14897 if (ctype)
14898 pop_nested_class ();
14900 --function_depth;
14902 /* Clean up. */
14903 current_function_decl = NULL_TREE;
14905 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
14906 return fndecl;
14909 /* Create the FUNCTION_DECL for a function definition.
14910 DECLSPECS and DECLARATOR are the parts of the declaration;
14911 they describe the return type and the name of the function,
14912 but twisted together in a fashion that parallels the syntax of C.
14914 This function creates a binding context for the function body
14915 as well as setting up the FUNCTION_DECL in current_function_decl.
14917 Returns a FUNCTION_DECL on success.
14919 If the DECLARATOR is not suitable for a function (it defines a datum
14920 instead), we return 0, which tells yyparse to report a parse error.
14922 May return void_type_node indicating that this method is actually
14923 a friend. See grokfield for more details.
14925 Came here with a `.pushlevel' .
14927 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
14928 CHANGES TO CODE IN `grokfield'. */
14930 tree
14931 grokmethod (cp_decl_specifier_seq *declspecs,
14932 const cp_declarator *declarator, tree attrlist)
14934 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
14935 &attrlist);
14937 if (fndecl == error_mark_node)
14938 return error_mark_node;
14940 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
14942 error ("invalid member function declaration");
14943 return error_mark_node;
14946 if (attrlist)
14947 cplus_decl_attributes (&fndecl, attrlist, 0);
14949 /* Pass friends other than inline friend functions back. */
14950 if (fndecl == void_type_node)
14951 return fndecl;
14953 if (DECL_IN_AGGR_P (fndecl))
14955 if (DECL_CLASS_SCOPE_P (fndecl))
14956 error ("%qD is already defined in class %qT", fndecl,
14957 DECL_CONTEXT (fndecl));
14958 return error_mark_node;
14961 check_template_shadow (fndecl);
14963 if (TREE_PUBLIC (fndecl))
14964 DECL_COMDAT (fndecl) = 1;
14965 DECL_DECLARED_INLINE_P (fndecl) = 1;
14966 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
14968 /* We process method specializations in finish_struct_1. */
14969 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
14971 fndecl = push_template_decl (fndecl);
14972 if (fndecl == error_mark_node)
14973 return fndecl;
14976 if (! DECL_FRIEND_P (fndecl))
14978 if (DECL_CHAIN (fndecl))
14980 fndecl = copy_node (fndecl);
14981 TREE_CHAIN (fndecl) = NULL_TREE;
14985 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
14987 DECL_IN_AGGR_P (fndecl) = 1;
14988 return fndecl;
14992 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
14993 we can lay it out later, when and if its type becomes complete.
14995 Also handle constexpr variables where the initializer involves
14996 an unlowered PTRMEM_CST because the class isn't complete yet. */
14998 void
14999 maybe_register_incomplete_var (tree var)
15001 gcc_assert (VAR_P (var));
15003 /* Keep track of variables with incomplete types. */
15004 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
15005 && DECL_EXTERNAL (var))
15007 tree inner_type = TREE_TYPE (var);
15009 while (TREE_CODE (inner_type) == ARRAY_TYPE)
15010 inner_type = TREE_TYPE (inner_type);
15011 inner_type = TYPE_MAIN_VARIANT (inner_type);
15013 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
15014 /* RTTI TD entries are created while defining the type_info. */
15015 || (TYPE_LANG_SPECIFIC (inner_type)
15016 && TYPE_BEING_DEFINED (inner_type)))
15018 incomplete_var iv = {var, inner_type};
15019 vec_safe_push (incomplete_vars, iv);
15021 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
15022 && decl_constant_var_p (var)
15023 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
15025 /* When the outermost open class is complete we can resolve any
15026 pointers-to-members. */
15027 tree context = outermost_open_class ();
15028 incomplete_var iv = {var, context};
15029 vec_safe_push (incomplete_vars, iv);
15034 /* Called when a class type (given by TYPE) is defined. If there are
15035 any existing VAR_DECLs whose type has been completed by this
15036 declaration, update them now. */
15038 void
15039 complete_vars (tree type)
15041 unsigned ix;
15042 incomplete_var *iv;
15044 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
15046 if (same_type_p (type, iv->incomplete_type))
15048 tree var = iv->decl;
15049 tree type = TREE_TYPE (var);
15051 if (type != error_mark_node
15052 && (TYPE_MAIN_VARIANT (strip_array_types (type))
15053 == iv->incomplete_type))
15055 /* Complete the type of the variable. The VAR_DECL itself
15056 will be laid out in expand_expr. */
15057 complete_type (type);
15058 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
15061 /* Remove this entry from the list. */
15062 incomplete_vars->unordered_remove (ix);
15064 else
15065 ix++;
15068 /* Check for pending declarations which may have abstract type. */
15069 complete_type_check_abstract (type);
15072 /* If DECL is of a type which needs a cleanup, build and return an
15073 expression to perform that cleanup here. Return NULL_TREE if no
15074 cleanup need be done. DECL can also be a _REF when called from
15075 split_nonconstant_init_1. */
15077 tree
15078 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
15080 tree type;
15081 tree attr;
15082 tree cleanup;
15084 /* Assume no cleanup is required. */
15085 cleanup = NULL_TREE;
15087 if (error_operand_p (decl))
15088 return cleanup;
15090 /* Handle "__attribute__((cleanup))". We run the cleanup function
15091 before the destructor since the destructor is what actually
15092 terminates the lifetime of the object. */
15093 if (DECL_P (decl))
15094 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
15095 else
15096 attr = NULL_TREE;
15097 if (attr)
15099 tree id;
15100 tree fn;
15101 tree arg;
15103 /* Get the name specified by the user for the cleanup function. */
15104 id = TREE_VALUE (TREE_VALUE (attr));
15105 /* Look up the name to find the cleanup function to call. It is
15106 important to use lookup_name here because that is what is
15107 used in c-common.c:handle_cleanup_attribute when performing
15108 initial checks on the attribute. Note that those checks
15109 include ensuring that the function found is not an overloaded
15110 function, or an object with an overloaded call operator,
15111 etc.; we can rely on the fact that the function found is an
15112 ordinary FUNCTION_DECL. */
15113 fn = lookup_name (id);
15114 arg = build_address (decl);
15115 if (!mark_used (decl, complain) && !(complain & tf_error))
15116 return error_mark_node;
15117 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
15118 if (cleanup == error_mark_node)
15119 return error_mark_node;
15121 /* Handle ordinary C++ destructors. */
15122 type = TREE_TYPE (decl);
15123 if (type_build_dtor_call (type))
15125 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
15126 tree addr;
15127 tree call;
15129 if (TREE_CODE (type) == ARRAY_TYPE)
15130 addr = decl;
15131 else
15132 addr = build_address (decl);
15134 call = build_delete (TREE_TYPE (addr), addr,
15135 sfk_complete_destructor, flags, 0, complain);
15136 if (call == error_mark_node)
15137 cleanup = error_mark_node;
15138 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
15139 /* Discard the call. */;
15140 else if (cleanup)
15141 cleanup = cp_build_compound_expr (cleanup, call, complain);
15142 else
15143 cleanup = call;
15146 /* build_delete sets the location of the destructor call to the
15147 current location, even though the destructor is going to be
15148 called later, at the end of the current scope. This can lead to
15149 a "jumpy" behavior for users of debuggers when they step around
15150 the end of the block. So let's unset the location of the
15151 destructor call instead. */
15152 protected_set_expr_location (cleanup, UNKNOWN_LOCATION);
15154 if (cleanup
15155 && DECL_P (decl)
15156 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
15157 /* Treat objects with destructors as used; the destructor may do
15158 something substantive. */
15159 && !mark_used (decl, complain) && !(complain & tf_error))
15160 return error_mark_node;
15162 return cleanup;
15166 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
15167 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
15168 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
15170 tree
15171 static_fn_type (tree memfntype)
15173 tree fntype;
15174 tree args;
15176 if (TYPE_PTRMEMFUNC_P (memfntype))
15177 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
15178 if (POINTER_TYPE_P (memfntype)
15179 || TREE_CODE (memfntype) == FUNCTION_DECL)
15180 memfntype = TREE_TYPE (memfntype);
15181 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
15182 return memfntype;
15183 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
15184 args = TYPE_ARG_TYPES (memfntype);
15185 cp_ref_qualifier rqual = type_memfn_rqual (memfntype);
15186 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
15187 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype), rqual);
15188 fntype = (cp_build_type_attribute_variant
15189 (fntype, TYPE_ATTRIBUTES (memfntype)));
15190 fntype = (build_exception_variant
15191 (fntype, TYPE_RAISES_EXCEPTIONS (memfntype)));
15192 if (TYPE_HAS_LATE_RETURN_TYPE (memfntype))
15193 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
15194 return fntype;
15197 /* DECL was originally constructed as a non-static member function,
15198 but turned out to be static. Update it accordingly. */
15200 void
15201 revert_static_member_fn (tree decl)
15203 tree stype = static_fn_type (decl);
15204 cp_cv_quals quals = type_memfn_quals (stype);
15205 cp_ref_qualifier rqual = type_memfn_rqual (stype);
15207 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
15208 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
15210 TREE_TYPE (decl) = stype;
15212 if (DECL_ARGUMENTS (decl))
15213 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
15214 DECL_STATIC_FUNCTION_P (decl) = 1;
15217 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
15218 one of the language-independent trees. */
15220 enum cp_tree_node_structure_enum
15221 cp_tree_node_structure (union lang_tree_node * t)
15223 switch (TREE_CODE (&t->generic))
15225 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
15226 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
15227 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
15228 case OVERLOAD: return TS_CP_OVERLOAD;
15229 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
15230 case PTRMEM_CST: return TS_CP_PTRMEM;
15231 case BASELINK: return TS_CP_BASELINK;
15232 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
15233 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
15234 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
15235 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
15236 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
15237 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
15238 case CONSTRAINT_INFO: return TS_CP_CONSTRAINT_INFO;
15239 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
15240 default: return TS_CP_GENERIC;
15244 /* Build the void_list_node (void_type_node having been created). */
15245 tree
15246 build_void_list_node (void)
15248 tree t = build_tree_list (NULL_TREE, void_type_node);
15249 return t;
15252 bool
15253 cp_missing_noreturn_ok_p (tree decl)
15255 /* A missing noreturn is ok for the `main' function. */
15256 return DECL_MAIN_P (decl);
15259 /* Return the decl used to identify the COMDAT group into which DECL should
15260 be placed. */
15262 tree
15263 cxx_comdat_group (tree decl)
15265 /* Virtual tables, construction virtual tables, and virtual table
15266 tables all go in a single COMDAT group, named after the primary
15267 virtual table. */
15268 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
15269 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
15270 /* For all other DECLs, the COMDAT group is the mangled name of the
15271 declaration itself. */
15272 else
15274 while (DECL_THUNK_P (decl))
15276 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
15277 into the same section as the target function. In that case
15278 we must return target's name. */
15279 tree target = THUNK_TARGET (decl);
15280 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
15281 && DECL_SECTION_NAME (target) != NULL
15282 && DECL_ONE_ONLY (target))
15283 decl = target;
15284 else
15285 break;
15289 return decl;
15292 /* Returns the return type for FN as written by the user, which may include
15293 a placeholder for a deduced return type. */
15295 tree
15296 fndecl_declared_return_type (tree fn)
15298 fn = STRIP_TEMPLATE (fn);
15299 if (FNDECL_USED_AUTO (fn))
15301 struct language_function *f = NULL;
15302 if (DECL_STRUCT_FUNCTION (fn))
15303 f = DECL_STRUCT_FUNCTION (fn)->language;
15304 if (f == NULL)
15305 f = DECL_SAVED_FUNCTION_DATA (fn);
15306 return f->x_auto_return_pattern;
15308 return TREE_TYPE (TREE_TYPE (fn));
15311 /* Returns true iff DECL was declared with an auto return type and it has
15312 not yet been deduced to a real type. */
15314 bool
15315 undeduced_auto_decl (tree decl)
15317 if (cxx_dialect < cxx14)
15318 return false;
15319 return type_uses_auto (TREE_TYPE (decl));
15322 /* Complain if DECL has an undeduced return type. */
15324 void
15325 require_deduced_type (tree decl)
15327 if (undeduced_auto_decl (decl))
15328 error ("use of %qD before deduction of %<auto%>", decl);
15331 #include "gt-cp-decl.h"