* hsa-gen.c (hsa_op_immed::hsa_op_immed Use CONSTRUCTOR_NELTS (...)
[official-gcc.git] / gcc / cp / decl.c
blob24f71ce4f7236fcc14030e87e2034a94f4bc0448
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;
221 bool in_constexpr_if;
224 #define named_labels cp_function_chain->x_named_labels
226 /* The number of function bodies which we are currently processing.
227 (Zero if we are at namespace scope, one inside the body of a
228 function, two inside the body of a function in a local class, etc.) */
229 int function_depth;
231 /* States indicating how grokdeclarator() should handle declspecs marked
232 with __attribute__((deprecated)). An object declared as
233 __attribute__((deprecated)) suppresses warnings of uses of other
234 deprecated items. */
235 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
238 /* A list of VAR_DECLs whose type was incomplete at the time the
239 variable was declared. */
241 struct GTY(()) incomplete_var {
242 tree decl;
243 tree incomplete_type;
247 static GTY(()) vec<incomplete_var, va_gc> *incomplete_vars;
249 /* Returns the kind of template specialization we are currently
250 processing, given that it's declaration contained N_CLASS_SCOPES
251 explicit scope qualifications. */
253 tmpl_spec_kind
254 current_tmpl_spec_kind (int n_class_scopes)
256 int n_template_parm_scopes = 0;
257 int seen_specialization_p = 0;
258 int innermost_specialization_p = 0;
259 cp_binding_level *b;
261 /* Scan through the template parameter scopes. */
262 for (b = current_binding_level;
263 b->kind == sk_template_parms;
264 b = b->level_chain)
266 /* If we see a specialization scope inside a parameter scope,
267 then something is wrong. That corresponds to a declaration
268 like:
270 template <class T> template <> ...
272 which is always invalid since [temp.expl.spec] forbids the
273 specialization of a class member template if the enclosing
274 class templates are not explicitly specialized as well. */
275 if (b->explicit_spec_p)
277 if (n_template_parm_scopes == 0)
278 innermost_specialization_p = 1;
279 else
280 seen_specialization_p = 1;
282 else if (seen_specialization_p == 1)
283 return tsk_invalid_member_spec;
285 ++n_template_parm_scopes;
288 /* Handle explicit instantiations. */
289 if (processing_explicit_instantiation)
291 if (n_template_parm_scopes != 0)
292 /* We've seen a template parameter list during an explicit
293 instantiation. For example:
295 template <class T> template void f(int);
297 This is erroneous. */
298 return tsk_invalid_expl_inst;
299 else
300 return tsk_expl_inst;
303 if (n_template_parm_scopes < n_class_scopes)
304 /* We've not seen enough template headers to match all the
305 specialized classes present. For example:
307 template <class T> void R<T>::S<T>::f(int);
309 This is invalid; there needs to be one set of template
310 parameters for each class. */
311 return tsk_insufficient_parms;
312 else if (n_template_parm_scopes == n_class_scopes)
313 /* We're processing a non-template declaration (even though it may
314 be a member of a template class.) For example:
316 template <class T> void S<T>::f(int);
318 The `class T' matches the `S<T>', leaving no template headers
319 corresponding to the `f'. */
320 return tsk_none;
321 else if (n_template_parm_scopes > n_class_scopes + 1)
322 /* We've got too many template headers. For example:
324 template <> template <class T> void f (T);
326 There need to be more enclosing classes. */
327 return tsk_excessive_parms;
328 else
329 /* This must be a template. It's of the form:
331 template <class T> template <class U> void S<T>::f(U);
333 This is a specialization if the innermost level was a
334 specialization; otherwise it's just a definition of the
335 template. */
336 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
339 /* Exit the current scope. */
341 void
342 finish_scope (void)
344 poplevel (0, 0, 0);
347 /* When a label goes out of scope, check to see if that label was used
348 in a valid manner, and issue any appropriate warnings or errors. */
350 static void
351 pop_label (tree label, tree old_value)
353 if (!processing_template_decl)
355 if (DECL_INITIAL (label) == NULL_TREE)
357 location_t location;
359 error ("label %q+D used but not defined", label);
360 location = input_location;
361 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
362 /* Avoid crashing later. */
363 define_label (location, DECL_NAME (label));
365 else
366 warn_for_unused_label (label);
369 SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), old_value);
372 /* Push all named labels into a vector, so that we can sort it on DECL_UID
373 to avoid code generation differences. */
376 note_label (named_label_entry **slot, vec<named_label_entry **> &labels)
378 labels.quick_push (slot);
379 return 1;
382 /* Helper function to sort named label entries in a vector by DECL_UID. */
384 static int
385 sort_labels (const void *a, const void *b)
387 named_label_entry **slot1 = *(named_label_entry **const *) a;
388 named_label_entry **slot2 = *(named_label_entry **const *) b;
389 if (DECL_UID ((*slot1)->label_decl) < DECL_UID ((*slot2)->label_decl))
390 return -1;
391 if (DECL_UID ((*slot1)->label_decl) > DECL_UID ((*slot2)->label_decl))
392 return 1;
393 return 0;
396 /* At the end of a function, all labels declared within the function
397 go out of scope. BLOCK is the top-level block for the
398 function. */
400 static void
401 pop_labels (tree block)
403 if (named_labels)
405 auto_vec<named_label_entry **, 32> labels;
406 named_label_entry **slot;
407 unsigned int i;
409 /* Push all the labels into a vector and sort them by DECL_UID,
410 so that gaps between DECL_UIDs don't affect code generation. */
411 labels.reserve_exact (named_labels->elements ());
412 named_labels->traverse<vec<named_label_entry **> &, note_label> (labels);
413 labels.qsort (sort_labels);
414 FOR_EACH_VEC_ELT (labels, i, slot)
416 struct named_label_entry *ent = *slot;
418 pop_label (ent->label_decl, NULL_TREE);
420 /* Put the labels into the "variables" of the top-level block,
421 so debugger can see them. */
422 DECL_CHAIN (ent->label_decl) = BLOCK_VARS (block);
423 BLOCK_VARS (block) = ent->label_decl;
425 named_labels->clear_slot (slot);
427 named_labels = NULL;
431 /* At the end of a block with local labels, restore the outer definition. */
433 static void
434 pop_local_label (tree label, tree old_value)
436 struct named_label_entry dummy;
438 pop_label (label, old_value);
440 dummy.label_decl = label;
441 named_label_entry **slot = named_labels->find_slot (&dummy, NO_INSERT);
442 named_labels->clear_slot (slot);
445 /* The following two routines are used to interface to Objective-C++.
446 The binding level is purposely treated as an opaque type. */
448 void *
449 objc_get_current_scope (void)
451 return current_binding_level;
454 /* The following routine is used by the NeXT-style SJLJ exceptions;
455 variables get marked 'volatile' so as to not be clobbered by
456 _setjmp()/_longjmp() calls. All variables in the current scope,
457 as well as parent scopes up to (but not including) ENCLOSING_BLK
458 shall be thusly marked. */
460 void
461 objc_mark_locals_volatile (void *enclosing_blk)
463 cp_binding_level *scope;
465 for (scope = current_binding_level;
466 scope && scope != enclosing_blk;
467 scope = scope->level_chain)
469 tree decl;
471 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
472 objc_volatilize_decl (decl);
474 /* Do not climb up past the current function. */
475 if (scope->kind == sk_function_parms)
476 break;
480 /* True if B is the level for the condition of a constexpr if. */
482 static bool
483 level_for_constexpr_if (cp_binding_level *b)
485 return (b->kind == sk_cond && b->this_entity
486 && TREE_CODE (b->this_entity) == IF_STMT
487 && IF_STMT_CONSTEXPR_P (b->this_entity));
490 /* Update data for defined and undefined labels when leaving a scope. */
493 poplevel_named_label_1 (named_label_entry **slot, cp_binding_level *bl)
495 named_label_entry *ent = *slot;
496 cp_binding_level *obl = bl->level_chain;
498 if (ent->binding_level == bl)
500 tree decl;
502 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
503 TREE_LISTs representing OVERLOADs, so be careful. */
504 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
505 ? DECL_CHAIN (decl)
506 : TREE_CHAIN (decl)))
507 if (decl_jump_unsafe (decl))
508 vec_safe_push (ent->bad_decls, decl);
510 ent->binding_level = obl;
511 ent->names_in_scope = obl->names;
512 switch (bl->kind)
514 case sk_try:
515 ent->in_try_scope = true;
516 break;
517 case sk_catch:
518 ent->in_catch_scope = true;
519 break;
520 case sk_omp:
521 ent->in_omp_scope = true;
522 break;
523 case sk_transaction:
524 ent->in_transaction_scope = true;
525 break;
526 case sk_block:
527 if (level_for_constexpr_if (bl->level_chain))
528 ent->in_constexpr_if = true;
529 break;
530 default:
531 break;
534 else if (ent->uses)
536 struct named_label_use_entry *use;
538 for (use = ent->uses; use ; use = use->next)
539 if (use->binding_level == bl)
541 use->binding_level = obl;
542 use->names_in_scope = obl->names;
543 if (bl->kind == sk_omp)
544 use->in_omp_scope = true;
548 return 1;
551 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
552 when errors were reported, except for -Werror-unused-but-set-*. */
553 static int unused_but_set_errorcount;
555 /* Exit a binding level.
556 Pop the level off, and restore the state of the identifier-decl mappings
557 that were in effect when this level was entered.
559 If KEEP == 1, this level had explicit declarations, so
560 and create a "block" (a BLOCK node) for the level
561 to record its declarations and subblocks for symbol table output.
563 If FUNCTIONBODY is nonzero, this level is the body of a function,
564 so create a block as if KEEP were set and also clear out all
565 label names.
567 If REVERSE is nonzero, reverse the order of decls before putting
568 them into the BLOCK. */
570 tree
571 poplevel (int keep, int reverse, int functionbody)
573 tree link;
574 /* The chain of decls was accumulated in reverse order.
575 Put it into forward order, just for cleanliness. */
576 tree decls;
577 tree subblocks;
578 tree block;
579 tree decl;
580 int leaving_for_scope;
581 scope_kind kind;
582 unsigned ix;
583 cp_label_binding *label_bind;
585 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
586 restart:
588 block = NULL_TREE;
590 gcc_assert (current_binding_level->kind != sk_class);
592 if (current_binding_level->kind == sk_cleanup)
593 functionbody = 0;
594 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
596 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
598 /* We used to use KEEP == 2 to indicate that the new block should go
599 at the beginning of the list of blocks at this binding level,
600 rather than the end. This hack is no longer used. */
601 gcc_assert (keep == 0 || keep == 1);
603 if (current_binding_level->keep)
604 keep = 1;
606 /* Any uses of undefined labels, and any defined labels, now operate
607 under constraints of next binding contour. */
608 if (cfun && !functionbody && named_labels)
609 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
610 (current_binding_level);
612 /* Get the decls in the order they were written.
613 Usually current_binding_level->names is in reverse order.
614 But parameter decls were previously put in forward order. */
616 if (reverse)
617 current_binding_level->names
618 = decls = nreverse (current_binding_level->names);
619 else
620 decls = current_binding_level->names;
622 /* If there were any declarations or structure tags in that level,
623 or if this level is a function body,
624 create a BLOCK to record them for the life of this function. */
625 block = NULL_TREE;
626 /* Avoid function body block if possible. */
627 if (functionbody && subblocks && BLOCK_CHAIN (subblocks) == NULL_TREE)
628 keep = 0;
629 else if (keep == 1 || functionbody)
630 block = make_node (BLOCK);
631 if (block != NULL_TREE)
633 BLOCK_VARS (block) = decls;
634 BLOCK_SUBBLOCKS (block) = subblocks;
637 /* In each subblock, record that this is its superior. */
638 if (keep >= 0)
639 for (link = subblocks; link; link = BLOCK_CHAIN (link))
640 BLOCK_SUPERCONTEXT (link) = block;
642 /* We still support the old for-scope rules, whereby the variables
643 in a for-init statement were in scope after the for-statement
644 ended. We only use the new rules if flag_new_for_scope is
645 nonzero. */
646 leaving_for_scope
647 = current_binding_level->kind == sk_for && flag_new_for_scope == 1;
649 /* Before we remove the declarations first check for unused variables. */
650 if ((warn_unused_variable || warn_unused_but_set_variable)
651 && current_binding_level->kind != sk_template_parms
652 && !processing_template_decl)
653 for (tree d = getdecls (); d; d = TREE_CHAIN (d))
655 /* There are cases where D itself is a TREE_LIST. See in
656 push_local_binding where the list of decls returned by
657 getdecls is built. */
658 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
659 tree type = TREE_TYPE (decl);
660 if (VAR_P (decl)
661 && (! TREE_USED (decl) || !DECL_READ_P (decl))
662 && ! DECL_IN_SYSTEM_HEADER (decl)
663 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl)
664 && type != error_mark_node
665 && (!CLASS_TYPE_P (type)
666 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
667 || lookup_attribute ("warn_unused",
668 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
670 if (! TREE_USED (decl))
671 warning_at (DECL_SOURCE_LOCATION (decl),
672 OPT_Wunused_variable, "unused variable %qD", decl);
673 else if (DECL_CONTEXT (decl) == current_function_decl
674 // For -Wunused-but-set-variable leave references alone.
675 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
676 && errorcount == unused_but_set_errorcount)
678 warning_at (DECL_SOURCE_LOCATION (decl),
679 OPT_Wunused_but_set_variable,
680 "variable %qD set but not used", decl);
681 unused_but_set_errorcount = errorcount;
686 /* Remove declarations for all the DECLs in this level. */
687 for (link = decls; link; link = TREE_CHAIN (link))
689 if (leaving_for_scope && VAR_P (link)
690 /* It's hard to make this ARM compatibility hack play nicely with
691 lambdas, and it really isn't necessary in C++11 mode. */
692 && cxx_dialect < cxx11
693 && DECL_NAME (link))
695 tree name = DECL_NAME (link);
696 cxx_binding *ob;
697 tree ns_binding;
699 ob = outer_binding (name,
700 IDENTIFIER_BINDING (name),
701 /*class_p=*/true);
702 if (!ob)
703 ns_binding = IDENTIFIER_NAMESPACE_VALUE (name);
704 else
705 ns_binding = NULL_TREE;
707 if (ob && ob->scope == current_binding_level->level_chain)
708 /* We have something like:
710 int i;
711 for (int i; ;);
713 and we are leaving the `for' scope. There's no reason to
714 keep the binding of the inner `i' in this case. */
715 pop_binding (name, link);
716 else if ((ob && (TREE_CODE (ob->value) == TYPE_DECL))
717 || (ns_binding && TREE_CODE (ns_binding) == TYPE_DECL))
718 /* Here, we have something like:
720 typedef int I;
722 void f () {
723 for (int I; ;);
726 We must pop the for-scope binding so we know what's a
727 type and what isn't. */
728 pop_binding (name, link);
729 else
731 /* Mark this VAR_DECL as dead so that we can tell we left it
732 there only for backward compatibility. */
733 DECL_DEAD_FOR_LOCAL (link) = 1;
735 /* Keep track of what should have happened when we
736 popped the binding. */
737 if (ob && ob->value)
739 SET_DECL_SHADOWED_FOR_VAR (link, ob->value);
740 DECL_HAS_SHADOWED_FOR_VAR_P (link) = 1;
743 /* Add it to the list of dead variables in the next
744 outermost binding to that we can remove these when we
745 leave that binding. */
746 vec_safe_push (
747 current_binding_level->level_chain->dead_vars_from_for,
748 link);
750 /* Although we don't pop the cxx_binding, we do clear
751 its SCOPE since the scope is going away now. */
752 IDENTIFIER_BINDING (name)->scope
753 = current_binding_level->level_chain;
756 else
758 tree name;
760 /* Remove the binding. */
761 decl = link;
763 if (TREE_CODE (decl) == TREE_LIST)
764 decl = TREE_VALUE (decl);
765 name = decl;
767 if (TREE_CODE (name) == OVERLOAD)
768 name = OVL_FUNCTION (name);
770 gcc_assert (DECL_P (name));
771 pop_binding (DECL_NAME (name), decl);
775 /* Remove declarations for any `for' variables from inner scopes
776 that we kept around. */
777 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->dead_vars_from_for,
778 ix, decl)
779 pop_binding (DECL_NAME (decl), decl);
781 /* Restore the IDENTIFIER_TYPE_VALUEs. */
782 for (link = current_binding_level->type_shadowed;
783 link; link = TREE_CHAIN (link))
784 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
786 /* Restore the IDENTIFIER_LABEL_VALUEs for local labels. */
787 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->shadowed_labels,
788 ix, label_bind)
789 pop_local_label (label_bind->label, label_bind->prev_value);
791 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
792 list if a `using' declaration put them there. The debugging
793 back ends won't understand OVERLOAD, so we remove them here.
794 Because the BLOCK_VARS are (temporarily) shared with
795 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
796 popped all the bindings. */
797 if (block)
799 tree* d;
801 for (d = &BLOCK_VARS (block); *d; )
803 if (TREE_CODE (*d) == TREE_LIST)
804 *d = TREE_CHAIN (*d);
805 else
806 d = &DECL_CHAIN (*d);
810 /* If the level being exited is the top level of a function,
811 check over all the labels. */
812 if (functionbody)
814 if (block)
816 /* Since this is the top level block of a function, the vars are
817 the function's parameters. Don't leave them in the BLOCK
818 because they are found in the FUNCTION_DECL instead. */
819 BLOCK_VARS (block) = 0;
820 pop_labels (block);
822 else
823 pop_labels (subblocks);
826 kind = current_binding_level->kind;
827 if (kind == sk_cleanup)
829 tree stmt;
831 /* If this is a temporary binding created for a cleanup, then we'll
832 have pushed a statement list level. Pop that, create a new
833 BIND_EXPR for the block, and insert it into the stream. */
834 stmt = pop_stmt_list (current_binding_level->statement_list);
835 stmt = c_build_bind_expr (input_location, block, stmt);
836 add_stmt (stmt);
839 leave_scope ();
840 if (functionbody)
842 /* The current function is being defined, so its DECL_INITIAL
843 should be error_mark_node. */
844 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
845 DECL_INITIAL (current_function_decl) = block ? block : subblocks;
846 if (subblocks)
848 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
850 if (BLOCK_SUBBLOCKS (subblocks))
851 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks)) = 1;
853 else
854 BLOCK_OUTER_CURLY_BRACE_P (subblocks) = 1;
857 else if (block)
858 current_binding_level->blocks
859 = block_chainon (current_binding_level->blocks, block);
861 /* If we did not make a block for the level just exited,
862 any blocks made for inner levels
863 (since they cannot be recorded as subblocks in that level)
864 must be carried forward so they will later become subblocks
865 of something else. */
866 else if (subblocks)
867 current_binding_level->blocks
868 = block_chainon (current_binding_level->blocks, subblocks);
870 /* Each and every BLOCK node created here in `poplevel' is important
871 (e.g. for proper debugging information) so if we created one
872 earlier, mark it as "used". */
873 if (block)
874 TREE_USED (block) = 1;
876 /* All temporary bindings created for cleanups are popped silently. */
877 if (kind == sk_cleanup)
878 goto restart;
880 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
881 return block;
884 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
885 itself, calling F for each. The DATA is passed to F as well. */
887 static int
888 walk_namespaces_r (tree name_space, walk_namespaces_fn f, void* data)
890 int result = 0;
891 tree current = NAMESPACE_LEVEL (name_space)->namespaces;
893 result |= (*f) (name_space, data);
895 for (; current; current = DECL_CHAIN (current))
896 result |= walk_namespaces_r (current, f, data);
898 return result;
901 /* Walk all the namespaces, calling F for each. The DATA is passed to
902 F as well. */
905 walk_namespaces (walk_namespaces_fn f, void* data)
907 return walk_namespaces_r (global_namespace, f, data);
910 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
913 wrapup_globals_for_namespace (tree name_space, void* data ATTRIBUTE_UNUSED)
915 cp_binding_level *level = NAMESPACE_LEVEL (name_space);
916 vec<tree, va_gc> *statics = level->static_decls;
917 tree *vec = statics->address ();
918 int len = statics->length ();
920 if (warn_unused_function)
922 tree decl;
923 unsigned int i;
924 FOR_EACH_VEC_SAFE_ELT (statics, i, decl)
925 if (TREE_CODE (decl) == FUNCTION_DECL
926 && DECL_INITIAL (decl) == 0
927 && DECL_EXTERNAL (decl)
928 && !TREE_PUBLIC (decl)
929 && !DECL_ARTIFICIAL (decl)
930 && !TREE_NO_WARNING (decl))
932 warning_at (DECL_SOURCE_LOCATION (decl),
933 OPT_Wunused_function,
934 "%qF declared %<static%> but never defined", decl);
935 TREE_NO_WARNING (decl) = 1;
939 /* Write out any globals that need to be output. */
940 return wrapup_global_declarations (vec, len);
943 /* In C++, you don't have to write `struct S' to refer to `S'; you
944 can just use `S'. We accomplish this by creating a TYPE_DECL as
945 if the user had written `typedef struct S S'. Create and return
946 the TYPE_DECL for TYPE. */
948 tree
949 create_implicit_typedef (tree name, tree type)
951 tree decl;
953 decl = build_decl (input_location, TYPE_DECL, name, type);
954 DECL_ARTIFICIAL (decl) = 1;
955 /* There are other implicit type declarations, like the one *within*
956 a class that allows you to write `S::S'. We must distinguish
957 amongst these. */
958 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
959 TYPE_NAME (type) = decl;
960 TYPE_STUB_DECL (type) = decl;
962 return decl;
965 /* Remember a local name for name-mangling purposes. */
967 static void
968 push_local_name (tree decl)
970 size_t i, nelts;
971 tree t, name;
973 timevar_start (TV_NAME_LOOKUP);
975 name = DECL_NAME (decl);
977 nelts = vec_safe_length (local_names);
978 for (i = 0; i < nelts; i++)
980 t = (*local_names)[i];
981 if (DECL_NAME (t) == name)
983 if (!DECL_LANG_SPECIFIC (decl))
984 retrofit_lang_decl (decl);
985 DECL_LANG_SPECIFIC (decl)->u.base.u2sel = 1;
986 if (DECL_DISCRIMINATOR_SET_P (t))
987 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
988 else
989 DECL_DISCRIMINATOR (decl) = 1;
991 (*local_names)[i] = decl;
992 timevar_stop (TV_NAME_LOOKUP);
993 return;
997 vec_safe_push (local_names, decl);
998 timevar_stop (TV_NAME_LOOKUP);
1001 /* Subroutine of duplicate_decls: return truthvalue of whether
1002 or not types of these decls match.
1004 For C++, we must compare the parameter list so that `int' can match
1005 `int&' in a parameter position, but `int&' is not confused with
1006 `const int&'. */
1009 decls_match (tree newdecl, tree olddecl)
1011 int types_match;
1013 if (newdecl == olddecl)
1014 return 1;
1016 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
1017 /* If the two DECLs are not even the same kind of thing, we're not
1018 interested in their types. */
1019 return 0;
1021 gcc_assert (DECL_P (newdecl));
1023 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1025 tree f1 = TREE_TYPE (newdecl);
1026 tree f2 = TREE_TYPE (olddecl);
1027 tree p1 = TYPE_ARG_TYPES (f1);
1028 tree p2 = TYPE_ARG_TYPES (f2);
1029 tree r2;
1031 /* Specializations of different templates are different functions
1032 even if they have the same type. */
1033 tree t1 = (DECL_USE_TEMPLATE (newdecl)
1034 ? DECL_TI_TEMPLATE (newdecl)
1035 : NULL_TREE);
1036 tree t2 = (DECL_USE_TEMPLATE (olddecl)
1037 ? DECL_TI_TEMPLATE (olddecl)
1038 : NULL_TREE);
1039 if (t1 != t2)
1040 return 0;
1042 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1043 && ! (DECL_EXTERN_C_P (newdecl)
1044 && DECL_EXTERN_C_P (olddecl)))
1045 return 0;
1047 /* A new declaration doesn't match a built-in one unless it
1048 is also extern "C". */
1049 if (DECL_IS_BUILTIN (olddecl)
1050 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
1051 return 0;
1053 if (TREE_CODE (f1) != TREE_CODE (f2))
1054 return 0;
1056 /* A declaration with deduced return type should use its pre-deduction
1057 type for declaration matching. */
1058 r2 = fndecl_declared_return_type (olddecl);
1060 if (same_type_p (TREE_TYPE (f1), r2))
1062 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
1063 && (DECL_BUILT_IN (olddecl)
1064 #ifndef NO_IMPLICIT_EXTERN_C
1065 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
1066 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
1067 #endif
1070 types_match = self_promoting_args_p (p1);
1071 if (p1 == void_list_node)
1072 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1074 #ifndef NO_IMPLICIT_EXTERN_C
1075 else if (!prototype_p (f1)
1076 && (DECL_EXTERN_C_P (olddecl)
1077 && DECL_IN_SYSTEM_HEADER (olddecl)
1078 && !DECL_CLASS_SCOPE_P (olddecl))
1079 && (DECL_EXTERN_C_P (newdecl)
1080 && DECL_IN_SYSTEM_HEADER (newdecl)
1081 && !DECL_CLASS_SCOPE_P (newdecl)))
1083 types_match = self_promoting_args_p (p2);
1084 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1086 #endif
1087 else
1088 types_match =
1089 compparms (p1, p2)
1090 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
1091 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
1092 || comp_type_attributes (TREE_TYPE (newdecl),
1093 TREE_TYPE (olddecl)) != 0);
1095 else
1096 types_match = 0;
1098 /* The decls dont match if they correspond to two different versions
1099 of the same function. Disallow extern "C" functions to be
1100 versions for now. */
1101 if (types_match
1102 && !DECL_EXTERN_C_P (newdecl)
1103 && !DECL_EXTERN_C_P (olddecl)
1104 && targetm.target_option.function_versions (newdecl, olddecl))
1106 /* Mark functions as versions if necessary. Modify the mangled decl
1107 name if necessary. */
1108 if (DECL_FUNCTION_VERSIONED (newdecl)
1109 && DECL_FUNCTION_VERSIONED (olddecl))
1110 return 0;
1111 if (!DECL_FUNCTION_VERSIONED (newdecl))
1113 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1114 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1115 mangle_decl (newdecl);
1117 if (!DECL_FUNCTION_VERSIONED (olddecl))
1119 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1120 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1121 mangle_decl (olddecl);
1123 cgraph_node::record_function_versions (olddecl, newdecl);
1124 return 0;
1127 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1129 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1130 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1132 if (TREE_CODE (newres) != TREE_CODE (oldres))
1133 return 0;
1135 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1136 DECL_TEMPLATE_PARMS (olddecl)))
1137 return 0;
1139 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1140 types_match = (same_type_p (TREE_TYPE (oldres), TREE_TYPE (newres))
1141 && equivalently_constrained (olddecl, newdecl));
1142 else
1143 // We don't need to check equivalently_constrained for variable and
1144 // function templates because we check it on the results.
1145 types_match = decls_match (oldres, newres);
1147 else
1149 /* Need to check scope for variable declaration (VAR_DECL).
1150 For typedef (TYPE_DECL), scope is ignored. */
1151 if (VAR_P (newdecl)
1152 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1153 /* [dcl.link]
1154 Two declarations for an object with C language linkage
1155 with the same name (ignoring the namespace that qualify
1156 it) that appear in different namespace scopes refer to
1157 the same object. */
1158 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1159 return 0;
1161 if (TREE_TYPE (newdecl) == error_mark_node)
1162 types_match = TREE_TYPE (olddecl) == error_mark_node;
1163 else if (TREE_TYPE (olddecl) == NULL_TREE)
1164 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1165 else if (TREE_TYPE (newdecl) == NULL_TREE)
1166 types_match = 0;
1167 else
1168 types_match = comptypes (TREE_TYPE (newdecl),
1169 TREE_TYPE (olddecl),
1170 COMPARE_REDECLARATION);
1173 // Normal functions can be constrained, as can variable partial
1174 // specializations.
1175 if (types_match && VAR_OR_FUNCTION_DECL_P (newdecl))
1176 types_match = equivalently_constrained (newdecl, olddecl);
1178 return types_match;
1181 /* If NEWDECL is `static' and an `extern' was seen previously,
1182 warn about it. OLDDECL is the previous declaration.
1184 Note that this does not apply to the C++ case of declaring
1185 a variable `extern const' and then later `const'.
1187 Don't complain about built-in functions, since they are beyond
1188 the user's control. */
1190 void
1191 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1193 if (TREE_CODE (newdecl) == TYPE_DECL
1194 || TREE_CODE (newdecl) == TEMPLATE_DECL
1195 || TREE_CODE (newdecl) == CONST_DECL
1196 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1197 return;
1199 /* Don't get confused by static member functions; that's a different
1200 use of `static'. */
1201 if (TREE_CODE (newdecl) == FUNCTION_DECL
1202 && DECL_STATIC_FUNCTION_P (newdecl))
1203 return;
1205 /* If the old declaration was `static', or the new one isn't, then
1206 everything is OK. */
1207 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1208 return;
1210 /* It's OK to declare a builtin function as `static'. */
1211 if (TREE_CODE (olddecl) == FUNCTION_DECL
1212 && DECL_ARTIFICIAL (olddecl))
1213 return;
1215 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1216 "%qD was declared %<extern%> and later %<static%>", newdecl))
1217 inform (DECL_SOURCE_LOCATION (olddecl),
1218 "previous declaration of %qD", olddecl);
1221 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1222 function templates. If their exception specifications do not
1223 match, issue a diagnostic. */
1225 static void
1226 check_redeclaration_exception_specification (tree new_decl,
1227 tree old_decl)
1229 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1230 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1232 /* Two default specs are equivalent, don't force evaluation. */
1233 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1234 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1235 return;
1237 maybe_instantiate_noexcept (new_decl);
1238 maybe_instantiate_noexcept (old_decl);
1239 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1240 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1242 /* [except.spec]
1244 If any declaration of a function has an exception-specification,
1245 all declarations, including the definition and an explicit
1246 specialization, of that function shall have an
1247 exception-specification with the same set of type-ids. */
1248 if (! DECL_IS_BUILTIN (old_decl)
1249 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1251 const char *msg
1252 = "declaration of %qF has a different exception specifier";
1253 bool complained = true;
1254 location_t new_loc = DECL_SOURCE_LOCATION (new_decl);
1255 if (DECL_IN_SYSTEM_HEADER (old_decl))
1256 complained = pedwarn (new_loc, OPT_Wsystem_headers, msg, new_decl);
1257 else if (!flag_exceptions)
1258 /* We used to silently permit mismatched eh specs with
1259 -fno-exceptions, so make them a pedwarn now. */
1260 complained = pedwarn (new_loc, OPT_Wpedantic, msg, new_decl);
1261 else
1262 error_at (new_loc, msg, new_decl);
1263 if (complained)
1264 inform (DECL_SOURCE_LOCATION (old_decl),
1265 "from previous declaration %qF", old_decl);
1269 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1270 Otherwise issue diagnostics. */
1272 static bool
1273 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1275 old_decl = STRIP_TEMPLATE (old_decl);
1276 new_decl = STRIP_TEMPLATE (new_decl);
1277 if (!VAR_OR_FUNCTION_DECL_P (old_decl)
1278 || !VAR_OR_FUNCTION_DECL_P (new_decl))
1279 return true;
1280 if (DECL_DECLARED_CONSTEXPR_P (old_decl)
1281 == DECL_DECLARED_CONSTEXPR_P (new_decl))
1282 return true;
1283 if (TREE_CODE (old_decl) == FUNCTION_DECL)
1285 if (DECL_BUILT_IN (old_decl))
1287 /* Hide a built-in declaration. */
1288 DECL_DECLARED_CONSTEXPR_P (old_decl)
1289 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1290 return true;
1292 /* 7.1.5 [dcl.constexpr]
1293 Note: An explicit specialization can differ from the template
1294 declaration with respect to the constexpr specifier. */
1295 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl)
1296 && DECL_TEMPLATE_SPECIALIZATION (new_decl))
1297 return true;
1299 error_at (DECL_SOURCE_LOCATION (new_decl),
1300 "redeclaration %qD differs in %<constexpr%> "
1301 "from previous declaration", new_decl);
1302 inform (DECL_SOURCE_LOCATION (old_decl),
1303 "previous declaration %qD", old_decl);
1304 return false;
1306 return true;
1309 // If OLDDECL and NEWDECL are concept declarations with the same type
1310 // (i.e., and template parameters), but different requirements,
1311 // emit diagnostics and return true. Otherwise, return false.
1312 static inline bool
1313 check_concept_refinement (tree olddecl, tree newdecl)
1315 if (!DECL_DECLARED_CONCEPT_P (olddecl) || !DECL_DECLARED_CONCEPT_P (newdecl))
1316 return false;
1318 tree d1 = DECL_TEMPLATE_RESULT (olddecl);
1319 tree d2 = DECL_TEMPLATE_RESULT (newdecl);
1320 if (TREE_CODE (d1) != TREE_CODE (d2))
1321 return false;
1323 tree t1 = TREE_TYPE (d1);
1324 tree t2 = TREE_TYPE (d2);
1325 if (TREE_CODE (d1) == FUNCTION_DECL)
1327 if (compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2))
1328 && comp_template_parms (DECL_TEMPLATE_PARMS (olddecl),
1329 DECL_TEMPLATE_PARMS (newdecl))
1330 && !equivalently_constrained (olddecl, newdecl))
1332 error ("cannot specialize concept %q#D", olddecl);
1333 return true;
1336 return false;
1339 /* DECL is a redeclaration of a function or function template. If
1340 it does have default arguments issue a diagnostic. Note: this
1341 function is used to enforce the requirements in C++11 8.3.6 about
1342 no default arguments in redeclarations. */
1344 static void
1345 check_redeclaration_no_default_args (tree decl)
1347 gcc_assert (DECL_DECLARES_FUNCTION_P (decl));
1349 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
1350 t && t != void_list_node; t = TREE_CHAIN (t))
1351 if (TREE_PURPOSE (t))
1353 permerror (DECL_SOURCE_LOCATION (decl),
1354 "redeclaration of %q#D may not have default "
1355 "arguments", decl);
1356 return;
1360 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1361 && lookup_attribute ("gnu_inline", \
1362 DECL_ATTRIBUTES (fn)))
1364 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1365 If the redeclaration is invalid, a diagnostic is issued, and the
1366 error_mark_node is returned. Otherwise, OLDDECL is returned.
1368 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1369 returned.
1371 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1373 tree
1374 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1376 unsigned olddecl_uid = DECL_UID (olddecl);
1377 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1378 int new_defines_function = 0;
1379 tree new_template_info;
1381 if (newdecl == olddecl)
1382 return olddecl;
1384 types_match = decls_match (newdecl, olddecl);
1386 /* If either the type of the new decl or the type of the old decl is an
1387 error_mark_node, then that implies that we have already issued an
1388 error (earlier) for some bogus type specification, and in that case,
1389 it is rather pointless to harass the user with yet more error message
1390 about the same declaration, so just pretend the types match here. */
1391 if (TREE_TYPE (newdecl) == error_mark_node
1392 || TREE_TYPE (olddecl) == error_mark_node)
1393 return error_mark_node;
1395 if (UDLIT_OPER_P (DECL_NAME (newdecl))
1396 && UDLIT_OPER_P (DECL_NAME (olddecl)))
1398 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1399 && TREE_CODE (olddecl) != TEMPLATE_DECL
1400 && check_raw_literal_operator (olddecl))
1401 error ("literal operator template %q+D conflicts with"
1402 " raw literal operator %qD", newdecl, olddecl);
1403 else if (TREE_CODE (newdecl) != TEMPLATE_DECL
1404 && TREE_CODE (olddecl) == TEMPLATE_DECL
1405 && check_raw_literal_operator (newdecl))
1406 error ("raw literal operator %q+D conflicts with"
1407 " literal operator template %qD", newdecl, olddecl);
1410 if (DECL_P (olddecl)
1411 && TREE_CODE (newdecl) == FUNCTION_DECL
1412 && TREE_CODE (olddecl) == FUNCTION_DECL
1413 && diagnose_mismatched_attributes (olddecl, newdecl))
1415 if (DECL_INITIAL (olddecl))
1416 inform (DECL_SOURCE_LOCATION (olddecl),
1417 "previous definition of %qD was here", olddecl);
1418 else
1419 inform (DECL_SOURCE_LOCATION (olddecl),
1420 "previous declaration of %qD was here", olddecl);
1423 /* Check for redeclaration and other discrepancies. */
1424 if (TREE_CODE (olddecl) == FUNCTION_DECL
1425 && DECL_ARTIFICIAL (olddecl))
1427 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1428 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1430 /* Avoid warnings redeclaring built-ins which have not been
1431 explicitly declared. */
1432 if (DECL_ANTICIPATED (olddecl))
1433 return NULL_TREE;
1435 /* If you declare a built-in or predefined function name as static,
1436 the old definition is overridden, but optionally warn this was a
1437 bad choice of name. */
1438 if (! TREE_PUBLIC (newdecl))
1440 warning (OPT_Wshadow,
1441 DECL_BUILT_IN (olddecl)
1442 ? G_("shadowing built-in function %q#D")
1443 : G_("shadowing library function %q#D"), olddecl);
1444 /* Discard the old built-in function. */
1445 return NULL_TREE;
1447 /* If the built-in is not ansi, then programs can override
1448 it even globally without an error. */
1449 else if (! DECL_BUILT_IN (olddecl))
1450 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1451 "library function %q#D redeclared as non-function %q#D",
1452 olddecl, newdecl);
1453 else
1454 error ("declaration of %q+#D conflicts with built-in "
1455 "declaration %q#D", newdecl, olddecl);
1456 return NULL_TREE;
1458 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1460 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1461 error_at (DECL_SOURCE_LOCATION (newdecl),
1462 "redeclaration of %<pragma omp declare reduction%>");
1463 inform (DECL_SOURCE_LOCATION (olddecl),
1464 "previous %<pragma omp declare reduction%> declaration");
1465 return error_mark_node;
1467 else if (!types_match)
1469 /* Avoid warnings redeclaring built-ins which have not been
1470 explicitly declared. */
1471 if (DECL_ANTICIPATED (olddecl))
1473 /* Deal with fileptr_type_node. FILE type is not known
1474 at the time we create the builtins. */
1475 tree t1, t2;
1477 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1478 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1479 t1 || t2;
1480 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1481 if (!t1 || !t2)
1482 break;
1483 else if (TREE_VALUE (t2) == fileptr_type_node)
1485 tree t = TREE_VALUE (t1);
1487 if (TYPE_PTR_P (t)
1488 && TYPE_IDENTIFIER (TREE_TYPE (t))
1489 == get_identifier ("FILE")
1490 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1492 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1494 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1495 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1496 types_match = decls_match (newdecl, olddecl);
1497 if (types_match)
1498 return duplicate_decls (newdecl, olddecl,
1499 newdecl_is_friend);
1500 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1503 else if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1504 break;
1506 else if ((DECL_EXTERN_C_P (newdecl)
1507 && DECL_EXTERN_C_P (olddecl))
1508 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1509 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1511 /* A near match; override the builtin. */
1513 if (TREE_PUBLIC (newdecl))
1514 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1515 "new declaration %q#D ambiguates built-in "
1516 "declaration %q#D", newdecl, olddecl);
1517 else
1518 warning (OPT_Wshadow,
1519 DECL_BUILT_IN (olddecl)
1520 ? G_("shadowing built-in function %q#D")
1521 : G_("shadowing library function %q#D"), olddecl);
1523 else
1524 /* Discard the old built-in function. */
1525 return NULL_TREE;
1527 /* Replace the old RTL to avoid problems with inlining. */
1528 COPY_DECL_RTL (newdecl, olddecl);
1530 /* Even if the types match, prefer the new declarations type for
1531 built-ins which have not been explicitly declared, for
1532 exception lists, etc... */
1533 else if (DECL_IS_BUILTIN (olddecl))
1535 tree type = TREE_TYPE (newdecl);
1536 tree attribs = (*targetm.merge_type_attributes)
1537 (TREE_TYPE (olddecl), type);
1539 type = cp_build_type_attribute_variant (type, attribs);
1540 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1543 /* If a function is explicitly declared "throw ()", propagate that to
1544 the corresponding builtin. */
1545 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1546 && DECL_ANTICIPATED (olddecl)
1547 && TREE_NOTHROW (newdecl)
1548 && !TREE_NOTHROW (olddecl))
1550 enum built_in_function fncode = DECL_FUNCTION_CODE (olddecl);
1551 tree tmpdecl = builtin_decl_explicit (fncode);
1552 if (tmpdecl && tmpdecl != olddecl && types_match)
1553 TREE_NOTHROW (tmpdecl) = 1;
1556 /* Whether or not the builtin can throw exceptions has no
1557 bearing on this declarator. */
1558 TREE_NOTHROW (olddecl) = 0;
1560 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1562 /* If a builtin function is redeclared as `static', merge
1563 the declarations, but make the original one static. */
1564 DECL_THIS_STATIC (olddecl) = 1;
1565 TREE_PUBLIC (olddecl) = 0;
1567 /* Make the old declaration consistent with the new one so
1568 that all remnants of the builtin-ness of this function
1569 will be banished. */
1570 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1571 COPY_DECL_RTL (newdecl, olddecl);
1574 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1576 /* C++ Standard, 3.3, clause 4:
1577 "[Note: a namespace name or a class template name must be unique
1578 in its declarative region (7.3.2, clause 14). ]" */
1579 if (TREE_CODE (olddecl) != NAMESPACE_DECL
1580 && TREE_CODE (newdecl) != NAMESPACE_DECL
1581 && (TREE_CODE (olddecl) != TEMPLATE_DECL
1582 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) != TYPE_DECL)
1583 && (TREE_CODE (newdecl) != TEMPLATE_DECL
1584 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != TYPE_DECL))
1586 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1587 && TREE_CODE (newdecl) != TYPE_DECL)
1588 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1589 && TREE_CODE (olddecl) != TYPE_DECL))
1591 /* We do nothing special here, because C++ does such nasty
1592 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1593 get shadowed, and know that if we need to find a TYPE_DECL
1594 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1595 slot of the identifier. */
1596 return NULL_TREE;
1599 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1600 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1601 || (TREE_CODE (olddecl) == FUNCTION_DECL
1602 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1603 return NULL_TREE;
1606 error ("%q#D redeclared as different kind of symbol", newdecl);
1607 if (TREE_CODE (olddecl) == TREE_LIST)
1608 olddecl = TREE_VALUE (olddecl);
1609 inform (DECL_SOURCE_LOCATION (olddecl),
1610 "previous declaration %q#D", olddecl);
1612 return error_mark_node;
1614 else if (!types_match)
1616 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1617 /* These are certainly not duplicate declarations; they're
1618 from different scopes. */
1619 return NULL_TREE;
1621 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1623 /* The name of a class template may not be declared to refer to
1624 any other template, class, function, object, namespace, value,
1625 or type in the same scope. */
1626 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1627 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1629 error ("conflicting declaration of template %q+#D", newdecl);
1630 inform (DECL_SOURCE_LOCATION (olddecl),
1631 "previous declaration %q#D", olddecl);
1632 return error_mark_node;
1634 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1635 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1636 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1637 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1638 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1639 DECL_TEMPLATE_PARMS (olddecl))
1640 /* Template functions can be disambiguated by
1641 return type. */
1642 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1643 TREE_TYPE (TREE_TYPE (olddecl)))
1644 // Template functions can also be disambiguated by
1645 // constraints.
1646 && equivalently_constrained (olddecl, newdecl))
1648 error ("ambiguating new declaration %q+#D", newdecl);
1649 inform (DECL_SOURCE_LOCATION (olddecl),
1650 "old declaration %q#D", olddecl);
1652 else if (check_concept_refinement (olddecl, newdecl))
1653 return error_mark_node;
1654 return NULL_TREE;
1656 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1658 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1660 error ("conflicting declaration of C function %q+#D",
1661 newdecl);
1662 inform (DECL_SOURCE_LOCATION (olddecl),
1663 "previous declaration %q#D", olddecl);
1664 return NULL_TREE;
1666 /* For function versions, params and types match, but they
1667 are not ambiguous. */
1668 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1669 && !DECL_FUNCTION_VERSIONED (olddecl))
1670 // The functions have the same parameter types.
1671 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1672 TYPE_ARG_TYPES (TREE_TYPE (olddecl)))
1673 // And the same constraints.
1674 && equivalently_constrained (newdecl, olddecl))
1676 error ("ambiguating new declaration of %q+#D", newdecl);
1677 inform (DECL_SOURCE_LOCATION (olddecl),
1678 "old declaration %q#D", olddecl);
1679 return error_mark_node;
1681 else
1682 return NULL_TREE;
1684 else
1686 error ("conflicting declaration %q+#D", newdecl);
1687 inform (DECL_SOURCE_LOCATION (olddecl),
1688 "previous declaration as %q#D", olddecl);
1689 return error_mark_node;
1692 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1693 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1694 && (!DECL_TEMPLATE_INFO (newdecl)
1695 || (DECL_TI_TEMPLATE (newdecl)
1696 != DECL_TI_TEMPLATE (olddecl))))
1697 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1698 && (!DECL_TEMPLATE_INFO (olddecl)
1699 || (DECL_TI_TEMPLATE (olddecl)
1700 != DECL_TI_TEMPLATE (newdecl))))))
1701 /* It's OK to have a template specialization and a non-template
1702 with the same type, or to have specializations of two
1703 different templates with the same type. Note that if one is a
1704 specialization, and the other is an instantiation of the same
1705 template, that we do not exit at this point. That situation
1706 can occur if we instantiate a template class, and then
1707 specialize one of its methods. This situation is valid, but
1708 the declarations must be merged in the usual way. */
1709 return NULL_TREE;
1710 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1711 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1712 && !DECL_USE_TEMPLATE (newdecl))
1713 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1714 && !DECL_USE_TEMPLATE (olddecl))))
1715 /* One of the declarations is a template instantiation, and the
1716 other is not a template at all. That's OK. */
1717 return NULL_TREE;
1718 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1720 /* In [namespace.alias] we have:
1722 In a declarative region, a namespace-alias-definition can be
1723 used to redefine a namespace-alias declared in that declarative
1724 region to refer only to the namespace to which it already
1725 refers.
1727 Therefore, if we encounter a second alias directive for the same
1728 alias, we can just ignore the second directive. */
1729 if (DECL_NAMESPACE_ALIAS (newdecl)
1730 && (DECL_NAMESPACE_ALIAS (newdecl)
1731 == DECL_NAMESPACE_ALIAS (olddecl)))
1732 return olddecl;
1733 /* [namespace.alias]
1735 A namespace-name or namespace-alias shall not be declared as
1736 the name of any other entity in the same declarative region.
1737 A namespace-name defined at global scope shall not be
1738 declared as the name of any other entity in any global scope
1739 of the program. */
1740 error ("conflicting declaration of namespace %q+D", newdecl);
1741 inform (DECL_SOURCE_LOCATION (olddecl),
1742 "previous declaration of namespace %qD here", olddecl);
1743 return error_mark_node;
1745 else
1747 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1748 if (errmsg)
1750 error_at (DECL_SOURCE_LOCATION (newdecl), errmsg, newdecl);
1751 if (DECL_NAME (olddecl) != NULL_TREE)
1752 inform (DECL_SOURCE_LOCATION (olddecl),
1753 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1754 ? G_("%q#D previously defined here")
1755 : G_("%q#D previously declared here"), olddecl);
1756 return error_mark_node;
1758 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1759 && DECL_INITIAL (olddecl) != NULL_TREE
1760 && !prototype_p (TREE_TYPE (olddecl))
1761 && prototype_p (TREE_TYPE (newdecl)))
1763 /* Prototype decl follows defn w/o prototype. */
1764 if (warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1765 "prototype specified for %q#D", newdecl))
1766 inform (DECL_SOURCE_LOCATION (olddecl),
1767 "previous non-prototype definition here");
1769 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1770 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1772 /* [dcl.link]
1773 If two declarations of the same function or object
1774 specify different linkage-specifications ..., the program
1775 is ill-formed.... Except for functions with C++ linkage,
1776 a function declaration without a linkage specification
1777 shall not precede the first linkage specification for
1778 that function. A function can be declared without a
1779 linkage specification after an explicit linkage
1780 specification has been seen; the linkage explicitly
1781 specified in the earlier declaration is not affected by
1782 such a function declaration.
1784 DR 563 raises the question why the restrictions on
1785 functions should not also apply to objects. Older
1786 versions of G++ silently ignore the linkage-specification
1787 for this example:
1789 namespace N {
1790 extern int i;
1791 extern "C" int i;
1794 which is clearly wrong. Therefore, we now treat objects
1795 like functions. */
1796 if (current_lang_depth () == 0)
1798 /* There is no explicit linkage-specification, so we use
1799 the linkage from the previous declaration. */
1800 if (!DECL_LANG_SPECIFIC (newdecl))
1801 retrofit_lang_decl (newdecl);
1802 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1804 else
1806 error ("conflicting declaration of %q+#D with %qL linkage",
1807 newdecl, DECL_LANGUAGE (newdecl));
1808 inform (DECL_SOURCE_LOCATION (olddecl),
1809 "previous declaration with %qL linkage",
1810 DECL_LANGUAGE (olddecl));
1814 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1816 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1818 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1819 if (DECL_FUNCTION_MEMBER_P (olddecl)
1820 && (/* grokfndecl passes member function templates too
1821 as FUNCTION_DECLs. */
1822 DECL_TEMPLATE_INFO (olddecl)
1823 /* C++11 8.3.6/6.
1824 Default arguments for a member function of a class
1825 template shall be specified on the initial declaration
1826 of the member function within the class template. */
1827 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
1828 check_redeclaration_no_default_args (newdecl);
1829 else
1831 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1832 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1833 int i = 1;
1835 for (; t1 && t1 != void_list_node;
1836 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1837 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1839 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
1840 TREE_PURPOSE (t2)))
1842 if (permerror (input_location,
1843 "default argument given for parameter "
1844 "%d of %q#D", i, newdecl))
1845 inform (DECL_SOURCE_LOCATION (olddecl),
1846 "previous specification in %q#D here",
1847 olddecl);
1849 else
1851 error ("default argument given for parameter %d "
1852 "of %q#D", i, newdecl);
1853 inform (DECL_SOURCE_LOCATION (olddecl),
1854 "previous specification in %q#D here",
1855 olddecl);
1862 /* Do not merge an implicit typedef with an explicit one. In:
1864 class A;
1866 typedef class A A __attribute__ ((foo));
1868 the attribute should apply only to the typedef. */
1869 if (TREE_CODE (olddecl) == TYPE_DECL
1870 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1871 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1872 return NULL_TREE;
1874 /* If new decl is `static' and an `extern' was seen previously,
1875 warn about it. */
1876 warn_extern_redeclared_static (newdecl, olddecl);
1878 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1879 return error_mark_node;
1881 /* We have committed to returning 1 at this point. */
1882 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1884 /* Now that functions must hold information normally held
1885 by field decls, there is extra work to do so that
1886 declaration information does not get destroyed during
1887 definition. */
1888 if (DECL_VINDEX (olddecl))
1889 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1890 if (DECL_CONTEXT (olddecl))
1891 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1892 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1893 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1894 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1895 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1896 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1897 DECL_FINAL_P (newdecl) |= DECL_FINAL_P (olddecl);
1898 DECL_OVERRIDE_P (newdecl) |= DECL_OVERRIDE_P (olddecl);
1899 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1900 if (DECL_OVERLOADED_OPERATOR_P (olddecl) != ERROR_MARK)
1901 SET_OVERLOADED_OPERATOR_CODE
1902 (newdecl, DECL_OVERLOADED_OPERATOR_P (olddecl));
1903 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1905 /* Optionally warn about more than one declaration for the same
1906 name, but don't warn about a function declaration followed by a
1907 definition. */
1908 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1909 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1910 /* Don't warn about extern decl followed by definition. */
1911 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1912 /* Don't warn about friends, let add_friend take care of it. */
1913 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1914 /* Don't warn about declaration followed by specialization. */
1915 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1916 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1918 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1919 OPT_Wredundant_decls,
1920 "redundant redeclaration of %qD in same scope",
1921 newdecl))
1922 inform (DECL_SOURCE_LOCATION (olddecl),
1923 "previous declaration of %qD", olddecl);
1926 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1927 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1929 if (DECL_DELETED_FN (newdecl))
1931 error ("deleted definition of %q+D", newdecl);
1932 inform (DECL_SOURCE_LOCATION (olddecl),
1933 "previous declaration of %qD", olddecl);
1935 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
1939 /* Deal with C++: must preserve virtual function table size. */
1940 if (TREE_CODE (olddecl) == TYPE_DECL)
1942 tree newtype = TREE_TYPE (newdecl);
1943 tree oldtype = TREE_TYPE (olddecl);
1945 if (newtype != error_mark_node && oldtype != error_mark_node
1946 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1947 CLASSTYPE_FRIEND_CLASSES (newtype)
1948 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1950 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1953 /* Copy all the DECL_... slots specified in the new decl
1954 except for any that we copy here from the old type. */
1955 DECL_ATTRIBUTES (newdecl)
1956 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1958 if (DECL_DECLARES_FUNCTION_P (olddecl) && DECL_DECLARES_FUNCTION_P (newdecl))
1960 olddecl_friend = DECL_FRIEND_P (olddecl);
1961 hidden_friend = (DECL_ANTICIPATED (olddecl)
1962 && DECL_HIDDEN_FRIEND_P (olddecl)
1963 && newdecl_is_friend);
1964 if (!hidden_friend)
1966 DECL_ANTICIPATED (olddecl) = 0;
1967 DECL_HIDDEN_FRIEND_P (olddecl) = 0;
1971 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1973 tree old_result;
1974 tree new_result;
1975 old_result = DECL_TEMPLATE_RESULT (olddecl);
1976 new_result = DECL_TEMPLATE_RESULT (newdecl);
1977 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
1978 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
1979 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
1980 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
1982 DECL_ATTRIBUTES (old_result)
1983 = (*targetm.merge_decl_attributes) (old_result, new_result);
1985 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1987 /* Per C++11 8.3.6/4, default arguments cannot be added in later
1988 declarations of a function template. */
1989 if (DECL_SOURCE_LOCATION (newdecl)
1990 != DECL_SOURCE_LOCATION (olddecl))
1991 check_redeclaration_no_default_args (newdecl);
1993 check_default_args (newdecl);
1995 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
1996 && DECL_INITIAL (new_result))
1998 if (DECL_INITIAL (old_result))
1999 DECL_UNINLINABLE (old_result) = 1;
2000 else
2001 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
2002 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
2003 DECL_NOT_REALLY_EXTERN (old_result)
2004 = DECL_NOT_REALLY_EXTERN (new_result);
2005 DECL_INTERFACE_KNOWN (old_result)
2006 = DECL_INTERFACE_KNOWN (new_result);
2007 DECL_DECLARED_INLINE_P (old_result)
2008 = DECL_DECLARED_INLINE_P (new_result);
2009 DECL_DISREGARD_INLINE_LIMITS (old_result)
2010 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2013 else
2015 DECL_DECLARED_INLINE_P (old_result)
2016 |= DECL_DECLARED_INLINE_P (new_result);
2017 DECL_DISREGARD_INLINE_LIMITS (old_result)
2018 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2019 check_redeclaration_exception_specification (newdecl, olddecl);
2023 /* If the new declaration is a definition, update the file and
2024 line information on the declaration, and also make
2025 the old declaration the same definition. */
2026 if (DECL_INITIAL (new_result) != NULL_TREE)
2028 DECL_SOURCE_LOCATION (olddecl)
2029 = DECL_SOURCE_LOCATION (old_result)
2030 = DECL_SOURCE_LOCATION (newdecl);
2031 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
2032 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2034 tree parm;
2035 DECL_ARGUMENTS (old_result)
2036 = DECL_ARGUMENTS (new_result);
2037 for (parm = DECL_ARGUMENTS (old_result); parm;
2038 parm = DECL_CHAIN (parm))
2039 DECL_CONTEXT (parm) = old_result;
2043 return olddecl;
2046 if (types_match)
2048 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2049 check_redeclaration_exception_specification (newdecl, olddecl);
2051 /* Automatically handles default parameters. */
2052 tree oldtype = TREE_TYPE (olddecl);
2053 tree newtype;
2055 /* For typedefs use the old type, as the new type's DECL_NAME points
2056 at newdecl, which will be ggc_freed. */
2057 if (TREE_CODE (newdecl) == TYPE_DECL)
2059 /* But NEWTYPE might have an attribute, honor that. */
2060 tree tem = TREE_TYPE (newdecl);
2061 newtype = oldtype;
2063 if (TYPE_USER_ALIGN (tem))
2065 if (TYPE_ALIGN (tem) > TYPE_ALIGN (newtype))
2066 SET_TYPE_ALIGN (newtype, TYPE_ALIGN (tem));
2067 TYPE_USER_ALIGN (newtype) = true;
2070 /* And remove the new type from the variants list. */
2071 if (TYPE_NAME (TREE_TYPE (newdecl)) == newdecl)
2073 tree remove = TREE_TYPE (newdecl);
2074 for (tree t = TYPE_MAIN_VARIANT (remove); ;
2075 t = TYPE_NEXT_VARIANT (t))
2076 if (TYPE_NEXT_VARIANT (t) == remove)
2078 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (remove);
2079 break;
2083 else
2084 /* Merge the data types specified in the two decls. */
2085 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
2087 if (VAR_P (newdecl))
2089 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
2090 /* For already initialized vars, TREE_READONLY could have been
2091 cleared in cp_finish_decl, because the var needs runtime
2092 initialization or destruction. Make sure not to set
2093 TREE_READONLY on it again. */
2094 if (DECL_INITIALIZED_P (olddecl)
2095 && !DECL_EXTERNAL (olddecl)
2096 && !TREE_READONLY (olddecl))
2097 TREE_READONLY (newdecl) = 0;
2098 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
2099 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
2100 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
2101 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
2102 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
2104 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
2105 if (DECL_LANG_SPECIFIC (olddecl)
2106 && CP_DECL_THREADPRIVATE_P (olddecl))
2108 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
2109 if (!DECL_LANG_SPECIFIC (newdecl))
2110 retrofit_lang_decl (newdecl);
2112 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
2116 /* An explicit specialization of a function template or of a member
2117 function of a class template can be declared transaction_safe
2118 independently of whether the corresponding template entity is declared
2119 transaction_safe. */
2120 if (flag_tm && TREE_CODE (newdecl) == FUNCTION_DECL
2121 && DECL_TEMPLATE_INSTANTIATION (olddecl)
2122 && DECL_TEMPLATE_SPECIALIZATION (newdecl)
2123 && tx_safe_fn_type_p (newtype)
2124 && !tx_safe_fn_type_p (TREE_TYPE (newdecl)))
2125 newtype = tx_unsafe_fn_variant (newtype);
2127 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2129 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2130 check_default_args (newdecl);
2132 /* Lay the type out, unless already done. */
2133 if (! same_type_p (newtype, oldtype)
2134 && TREE_TYPE (newdecl) != error_mark_node
2135 && !(processing_template_decl && uses_template_parms (newdecl)))
2136 layout_type (TREE_TYPE (newdecl));
2138 if ((VAR_P (newdecl)
2139 || TREE_CODE (newdecl) == PARM_DECL
2140 || TREE_CODE (newdecl) == RESULT_DECL
2141 || TREE_CODE (newdecl) == FIELD_DECL
2142 || TREE_CODE (newdecl) == TYPE_DECL)
2143 && !(processing_template_decl && uses_template_parms (newdecl)))
2144 layout_decl (newdecl, 0);
2146 /* Merge the type qualifiers. */
2147 if (TREE_READONLY (newdecl))
2148 TREE_READONLY (olddecl) = 1;
2149 if (TREE_THIS_VOLATILE (newdecl))
2150 TREE_THIS_VOLATILE (olddecl) = 1;
2151 if (TREE_NOTHROW (newdecl))
2152 TREE_NOTHROW (olddecl) = 1;
2154 /* Merge deprecatedness. */
2155 if (TREE_DEPRECATED (newdecl))
2156 TREE_DEPRECATED (olddecl) = 1;
2158 /* Preserve function specific target and optimization options */
2159 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2161 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2162 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2163 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2164 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2166 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2167 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2168 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2169 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2172 /* Merge the initialization information. */
2173 if (DECL_INITIAL (newdecl) == NULL_TREE
2174 && DECL_INITIAL (olddecl) != NULL_TREE)
2176 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2177 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2178 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2180 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2181 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2185 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2187 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2188 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2189 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2190 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2191 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
2192 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2193 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2194 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2195 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2196 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2197 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2198 /* Keep the old RTL. */
2199 COPY_DECL_RTL (olddecl, newdecl);
2201 else if (VAR_P (newdecl)
2202 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2204 /* Keep the old RTL. We cannot keep the old RTL if the old
2205 declaration was for an incomplete object and the new
2206 declaration is not since many attributes of the RTL will
2207 change. */
2208 COPY_DECL_RTL (olddecl, newdecl);
2211 /* If cannot merge, then use the new type and qualifiers,
2212 and don't preserve the old rtl. */
2213 else
2215 /* Clean out any memory we had of the old declaration. */
2216 tree oldstatic = value_member (olddecl, static_aggregates);
2217 if (oldstatic)
2218 TREE_VALUE (oldstatic) = error_mark_node;
2220 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2221 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2222 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2223 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2226 /* Merge the storage class information. */
2227 merge_weak (newdecl, olddecl);
2229 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2230 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2231 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2232 if (! DECL_EXTERNAL (olddecl))
2233 DECL_EXTERNAL (newdecl) = 0;
2234 if (! DECL_COMDAT (olddecl))
2235 DECL_COMDAT (newdecl) = 0;
2237 new_template_info = NULL_TREE;
2238 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2240 bool new_redefines_gnu_inline = false;
2242 if (new_defines_function
2243 && ((DECL_INTERFACE_KNOWN (olddecl)
2244 && TREE_CODE (olddecl) == FUNCTION_DECL)
2245 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2246 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2247 == FUNCTION_DECL))))
2249 tree fn = olddecl;
2251 if (TREE_CODE (fn) == TEMPLATE_DECL)
2252 fn = DECL_TEMPLATE_RESULT (olddecl);
2254 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2257 if (!new_redefines_gnu_inline)
2259 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2260 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2261 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2263 DECL_TEMPLATE_INSTANTIATED (newdecl)
2264 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2265 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2267 /* If the OLDDECL is an instantiation and/or specialization,
2268 then the NEWDECL must be too. But, it may not yet be marked
2269 as such if the caller has created NEWDECL, but has not yet
2270 figured out that it is a redeclaration. */
2271 if (!DECL_USE_TEMPLATE (newdecl))
2272 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2274 /* Don't really know how much of the language-specific
2275 values we should copy from old to new. */
2276 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2277 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
2278 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2279 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2281 if (LANG_DECL_HAS_MIN (newdecl))
2283 DECL_LANG_SPECIFIC (newdecl)->u.min.u2 =
2284 DECL_LANG_SPECIFIC (olddecl)->u.min.u2;
2285 if (DECL_TEMPLATE_INFO (newdecl))
2287 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2288 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2289 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2290 /* Remember the presence of explicit specialization args. */
2291 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2292 = TINFO_USED_TEMPLATE_ID (new_template_info);
2294 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2296 /* Only functions have these fields. */
2297 if (DECL_DECLARES_FUNCTION_P (newdecl))
2299 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2300 DECL_BEFRIENDING_CLASSES (newdecl)
2301 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2302 DECL_BEFRIENDING_CLASSES (olddecl));
2303 /* DECL_THUNKS is only valid for virtual functions,
2304 otherwise it is a DECL_FRIEND_CONTEXT. */
2305 if (DECL_VIRTUAL_P (newdecl))
2306 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2308 /* Only variables have this field. */
2309 else if (VAR_P (newdecl)
2310 && VAR_HAD_UNKNOWN_BOUND (olddecl))
2311 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2314 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2316 tree parm;
2318 /* Merge parameter attributes. */
2319 tree oldarg, newarg;
2320 for (oldarg = DECL_ARGUMENTS(olddecl),
2321 newarg = DECL_ARGUMENTS(newdecl);
2322 oldarg && newarg;
2323 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg)) {
2324 DECL_ATTRIBUTES (newarg)
2325 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2326 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2329 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2330 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2332 /* If newdecl is not a specialization, then it is not a
2333 template-related function at all. And that means that we
2334 should have exited above, returning 0. */
2335 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2337 if (DECL_ODR_USED (olddecl))
2338 /* From [temp.expl.spec]:
2340 If a template, a member template or the member of a class
2341 template is explicitly specialized then that
2342 specialization shall be declared before the first use of
2343 that specialization that would cause an implicit
2344 instantiation to take place, in every translation unit in
2345 which such a use occurs. */
2346 error ("explicit specialization of %qD after first use",
2347 olddecl);
2349 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2350 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2351 && DECL_DECLARED_INLINE_P (newdecl));
2353 /* Don't propagate visibility from the template to the
2354 specialization here. We'll do that in determine_visibility if
2355 appropriate. */
2356 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2358 /* [temp.expl.spec/14] We don't inline explicit specialization
2359 just because the primary template says so. */
2361 /* But still keep DECL_DISREGARD_INLINE_LIMITS in sync with
2362 the always_inline attribute. */
2363 if (DECL_DISREGARD_INLINE_LIMITS (olddecl)
2364 && !DECL_DISREGARD_INLINE_LIMITS (newdecl))
2366 if (DECL_DECLARED_INLINE_P (newdecl))
2367 DECL_DISREGARD_INLINE_LIMITS (newdecl) = true;
2368 else
2369 DECL_ATTRIBUTES (newdecl)
2370 = remove_attribute ("always_inline",
2371 DECL_ATTRIBUTES (newdecl));
2374 else if (new_defines_function && DECL_INITIAL (olddecl))
2376 /* Never inline re-defined extern inline functions.
2377 FIXME: this could be better handled by keeping both
2378 function as separate declarations. */
2379 DECL_UNINLINABLE (newdecl) = 1;
2381 else
2383 if (DECL_PENDING_INLINE_P (olddecl))
2385 DECL_PENDING_INLINE_P (newdecl) = 1;
2386 DECL_PENDING_INLINE_INFO (newdecl)
2387 = DECL_PENDING_INLINE_INFO (olddecl);
2389 else if (DECL_PENDING_INLINE_P (newdecl))
2391 else if (DECL_SAVED_FUNCTION_DATA (newdecl) == NULL)
2392 DECL_SAVED_FUNCTION_DATA (newdecl)
2393 = DECL_SAVED_FUNCTION_DATA (olddecl);
2395 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2397 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2398 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2400 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2401 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2402 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2403 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2406 /* Preserve abstractness on cloned [cd]tors. */
2407 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2409 /* Update newdecl's parms to point at olddecl. */
2410 for (parm = DECL_ARGUMENTS (newdecl); parm;
2411 parm = DECL_CHAIN (parm))
2412 DECL_CONTEXT (parm) = olddecl;
2414 if (! types_match)
2416 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2417 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2418 COPY_DECL_RTL (newdecl, olddecl);
2420 if (! types_match || new_defines_function)
2422 /* These need to be copied so that the names are available.
2423 Note that if the types do match, we'll preserve inline
2424 info and other bits, but if not, we won't. */
2425 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2426 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2428 /* If redeclaring a builtin function, it stays built in
2429 if newdecl is a gnu_inline definition, or if newdecl is just
2430 a declaration. */
2431 if (DECL_BUILT_IN (olddecl)
2432 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2434 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2435 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2436 /* If we're keeping the built-in definition, keep the rtl,
2437 regardless of declaration matches. */
2438 COPY_DECL_RTL (olddecl, newdecl);
2439 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2441 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2442 switch (fncode)
2444 /* If a compatible prototype of these builtin functions
2445 is seen, assume the runtime implements it with the
2446 expected semantics. */
2447 case BUILT_IN_STPCPY:
2448 if (builtin_decl_explicit_p (fncode))
2449 set_builtin_decl_implicit_p (fncode, true);
2450 break;
2451 default:
2452 if (builtin_decl_explicit_p (fncode))
2453 set_builtin_decl_declared_p (fncode, true);
2454 break;
2458 if (new_defines_function)
2459 /* If defining a function declared with other language
2460 linkage, use the previously declared language linkage. */
2461 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2462 else if (types_match)
2464 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2465 /* Don't clear out the arguments if we're just redeclaring a
2466 function. */
2467 if (DECL_ARGUMENTS (olddecl))
2468 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2471 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2472 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2474 /* Now preserve various other info from the definition. */
2475 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2476 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2477 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2478 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2480 /* Warn about conflicting visibility specifications. */
2481 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2482 && DECL_VISIBILITY_SPECIFIED (newdecl)
2483 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2485 if (warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wattributes,
2486 "%qD: visibility attribute ignored because it "
2487 "conflicts with previous declaration", newdecl))
2488 inform (DECL_SOURCE_LOCATION (olddecl),
2489 "previous declaration of %qD", olddecl);
2491 /* Choose the declaration which specified visibility. */
2492 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2494 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2495 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2497 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2498 so keep this behavior. */
2499 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2501 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2502 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2504 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2505 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2507 SET_DECL_ALIGN (newdecl, DECL_ALIGN (olddecl));
2508 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2510 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2511 if (TREE_CODE (newdecl) == FIELD_DECL)
2512 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2514 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2515 with that from NEWDECL below. */
2516 if (DECL_LANG_SPECIFIC (olddecl))
2518 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2519 != DECL_LANG_SPECIFIC (newdecl));
2520 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2523 /* Merge the USED information. */
2524 if (TREE_USED (olddecl))
2525 TREE_USED (newdecl) = 1;
2526 else if (TREE_USED (newdecl))
2527 TREE_USED (olddecl) = 1;
2528 if (VAR_P (newdecl))
2530 if (DECL_READ_P (olddecl))
2531 DECL_READ_P (newdecl) = 1;
2532 else if (DECL_READ_P (newdecl))
2533 DECL_READ_P (olddecl) = 1;
2535 if (DECL_PRESERVE_P (olddecl))
2536 DECL_PRESERVE_P (newdecl) = 1;
2537 else if (DECL_PRESERVE_P (newdecl))
2538 DECL_PRESERVE_P (olddecl) = 1;
2540 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2541 to olddecl and deleted. */
2542 if (TREE_CODE (newdecl) == FUNCTION_DECL
2543 && DECL_FUNCTION_VERSIONED (olddecl))
2545 /* Set the flag for newdecl so that it gets copied to olddecl. */
2546 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2547 /* newdecl will be purged after copying to olddecl and is no longer
2548 a version. */
2549 cgraph_node::delete_function_version (newdecl);
2552 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2554 int function_size;
2555 struct symtab_node *snode = symtab_node::get (olddecl);
2557 function_size = sizeof (struct tree_decl_common);
2559 memcpy ((char *) olddecl + sizeof (struct tree_common),
2560 (char *) newdecl + sizeof (struct tree_common),
2561 function_size - sizeof (struct tree_common));
2563 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2564 (char *) newdecl + sizeof (struct tree_decl_common),
2565 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2567 /* Preserve symtab node mapping. */
2568 olddecl->decl_with_vis.symtab_node = snode;
2570 if (new_template_info)
2571 /* If newdecl is a template instantiation, it is possible that
2572 the following sequence of events has occurred:
2574 o A friend function was declared in a class template. The
2575 class template was instantiated.
2577 o The instantiation of the friend declaration was
2578 recorded on the instantiation list, and is newdecl.
2580 o Later, however, instantiate_class_template called pushdecl
2581 on the newdecl to perform name injection. But, pushdecl in
2582 turn called duplicate_decls when it discovered that another
2583 declaration of a global function with the same name already
2584 existed.
2586 o Here, in duplicate_decls, we decided to clobber newdecl.
2588 If we're going to do that, we'd better make sure that
2589 olddecl, and not newdecl, is on the list of
2590 instantiations so that if we try to do the instantiation
2591 again we won't get the clobbered declaration. */
2592 reregister_specialization (newdecl,
2593 new_template_info,
2594 olddecl);
2596 else
2598 size_t size = tree_code_size (TREE_CODE (newdecl));
2600 memcpy ((char *) olddecl + sizeof (struct tree_common),
2601 (char *) newdecl + sizeof (struct tree_common),
2602 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2603 switch (TREE_CODE (newdecl))
2605 case LABEL_DECL:
2606 case VAR_DECL:
2607 case RESULT_DECL:
2608 case PARM_DECL:
2609 case FIELD_DECL:
2610 case TYPE_DECL:
2611 case CONST_DECL:
2613 struct symtab_node *snode = NULL;
2615 if (VAR_P (newdecl)
2616 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl)
2617 || DECL_EXTERNAL (olddecl)))
2618 snode = symtab_node::get (olddecl);
2619 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2620 (char *) newdecl + sizeof (struct tree_decl_common),
2621 size - sizeof (struct tree_decl_common)
2622 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2623 if (VAR_P (newdecl))
2624 olddecl->decl_with_vis.symtab_node = snode;
2626 break;
2627 default:
2628 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2629 (char *) newdecl + sizeof (struct tree_decl_common),
2630 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2631 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2632 break;
2636 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2638 if (DECL_EXTERNAL (olddecl)
2639 || TREE_PUBLIC (olddecl)
2640 || TREE_STATIC (olddecl))
2642 /* Merge the section attribute.
2643 We want to issue an error if the sections conflict but that must be
2644 done later in decl_attributes since we are called before attributes
2645 are assigned. */
2646 if (DECL_SECTION_NAME (newdecl) != NULL)
2647 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2649 if (DECL_ONE_ONLY (newdecl))
2651 struct symtab_node *oldsym, *newsym;
2652 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2653 oldsym = cgraph_node::get_create (olddecl);
2654 else
2655 oldsym = varpool_node::get_create (olddecl);
2656 newsym = symtab_node::get (newdecl);
2657 oldsym->set_comdat_group (newsym->get_comdat_group ());
2661 if (VAR_P (newdecl)
2662 && CP_DECL_THREAD_LOCAL_P (newdecl))
2664 CP_DECL_THREAD_LOCAL_P (olddecl) = true;
2665 if (!processing_template_decl)
2666 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2670 DECL_UID (olddecl) = olddecl_uid;
2671 if (olddecl_friend)
2672 DECL_FRIEND_P (olddecl) = 1;
2673 if (hidden_friend)
2675 DECL_ANTICIPATED (olddecl) = 1;
2676 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2679 /* NEWDECL contains the merged attribute lists.
2680 Update OLDDECL to be the same. */
2681 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2683 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2684 so that encode_section_info has a chance to look at the new decl
2685 flags and attributes. */
2686 if (DECL_RTL_SET_P (olddecl)
2687 && (TREE_CODE (olddecl) == FUNCTION_DECL
2688 || (VAR_P (olddecl)
2689 && TREE_STATIC (olddecl))))
2690 make_decl_rtl (olddecl);
2692 /* The NEWDECL will no longer be needed. Because every out-of-class
2693 declaration of a member results in a call to duplicate_decls,
2694 freeing these nodes represents in a significant savings.
2696 Before releasing the node, be sore to remove function from symbol
2697 table that might have been inserted there to record comdat group.
2698 Be sure to however do not free DECL_STRUCT_FUNCTION because this
2699 structure is shared in between newdecl and oldecl. */
2700 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2701 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2702 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2704 struct symtab_node *snode = symtab_node::get (newdecl);
2705 if (snode)
2706 snode->remove ();
2709 /* Remove the associated constraints for newdecl, if any, before
2710 reclaiming memory. */
2711 if (flag_concepts)
2712 remove_constraints (newdecl);
2714 ggc_free (newdecl);
2716 return olddecl;
2719 /* Return zero if the declaration NEWDECL is valid
2720 when the declaration OLDDECL (assumed to be for the same name)
2721 has already been seen.
2722 Otherwise return an error message format string with a %s
2723 where the identifier should go. */
2725 static const char *
2726 redeclaration_error_message (tree newdecl, tree olddecl)
2728 if (TREE_CODE (newdecl) == TYPE_DECL)
2730 /* Because C++ can put things into name space for free,
2731 constructs like "typedef struct foo { ... } foo"
2732 would look like an erroneous redeclaration. */
2733 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2734 return NULL;
2735 else
2736 return G_("redefinition of %q#D");
2738 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2740 /* If this is a pure function, its olddecl will actually be
2741 the original initialization to `0' (which we force to call
2742 abort()). Don't complain about redefinition in this case. */
2743 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2744 && DECL_INITIAL (olddecl) == NULL_TREE)
2745 return NULL;
2747 /* If both functions come from different namespaces, this is not
2748 a redeclaration - this is a conflict with a used function. */
2749 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2750 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2751 && ! decls_match (olddecl, newdecl))
2752 return G_("%qD conflicts with used function");
2754 /* We'll complain about linkage mismatches in
2755 warn_extern_redeclared_static. */
2757 /* Defining the same name twice is no good. */
2758 if (DECL_INITIAL (olddecl) != NULL_TREE
2759 && DECL_INITIAL (newdecl) != NULL_TREE)
2761 if (DECL_NAME (olddecl) == NULL_TREE)
2762 return G_("%q#D not declared in class");
2763 else if (!GNU_INLINE_P (olddecl)
2764 || GNU_INLINE_P (newdecl))
2765 return G_("redefinition of %q#D");
2768 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2770 bool olda = GNU_INLINE_P (olddecl);
2771 bool newa = GNU_INLINE_P (newdecl);
2773 if (olda != newa)
2775 if (newa)
2776 return G_("%q+D redeclared inline with "
2777 "%<gnu_inline%> attribute");
2778 else
2779 return G_("%q+D redeclared inline without "
2780 "%<gnu_inline%> attribute");
2784 check_abi_tag_redeclaration
2785 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2786 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2788 return NULL;
2790 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2792 tree nt, ot;
2794 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2796 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2797 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2798 return G_("redefinition of %q#D");
2799 return NULL;
2802 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2803 || (DECL_TEMPLATE_RESULT (newdecl)
2804 == DECL_TEMPLATE_RESULT (olddecl)))
2805 return NULL;
2807 nt = DECL_TEMPLATE_RESULT (newdecl);
2808 if (DECL_TEMPLATE_INFO (nt))
2809 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2810 ot = DECL_TEMPLATE_RESULT (olddecl);
2811 if (DECL_TEMPLATE_INFO (ot))
2812 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2813 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2814 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2815 return G_("redefinition of %q#D");
2817 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2819 bool olda = GNU_INLINE_P (ot);
2820 bool newa = GNU_INLINE_P (nt);
2822 if (olda != newa)
2824 if (newa)
2825 return G_("%q+D redeclared inline with "
2826 "%<gnu_inline%> attribute");
2827 else
2828 return G_("%q+D redeclared inline without "
2829 "%<gnu_inline%> attribute");
2833 /* Core issue #226 (C++0x):
2835 If a friend function template declaration specifies a
2836 default template-argument, that declaration shall be a
2837 definition and shall be the only declaration of the
2838 function template in the translation unit. */
2839 if ((cxx_dialect != cxx98)
2840 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2841 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2842 /*is_primary=*/true,
2843 /*is_partial=*/false,
2844 /*is_friend_decl=*/2))
2845 return G_("redeclaration of friend %q#D "
2846 "may not have default template arguments");
2848 return NULL;
2850 else if (VAR_P (newdecl)
2851 && CP_DECL_THREAD_LOCAL_P (newdecl) != CP_DECL_THREAD_LOCAL_P (olddecl)
2852 && (! DECL_LANG_SPECIFIC (olddecl)
2853 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2854 || CP_DECL_THREAD_LOCAL_P (newdecl)))
2856 /* Only variables can be thread-local, and all declarations must
2857 agree on this property. */
2858 if (CP_DECL_THREAD_LOCAL_P (newdecl))
2859 return G_("thread-local declaration of %q#D follows "
2860 "non-thread-local declaration");
2861 else
2862 return G_("non-thread-local declaration of %q#D follows "
2863 "thread-local declaration");
2865 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2867 /* The objects have been declared at namespace scope. If either
2868 is a member of an anonymous union, then this is an invalid
2869 redeclaration. For example:
2871 int i;
2872 union { int i; };
2874 is invalid. */
2875 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2876 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2877 return G_("redeclaration of %q#D");
2878 /* If at least one declaration is a reference, there is no
2879 conflict. For example:
2881 int i = 3;
2882 extern int i;
2884 is valid. */
2885 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2886 return NULL;
2887 /* Reject two definitions. */
2888 return G_("redefinition of %q#D");
2890 else
2892 /* Objects declared with block scope: */
2893 /* Reject two definitions, and reject a definition
2894 together with an external reference. */
2895 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2896 return G_("redeclaration of %q#D");
2897 return NULL;
2901 /* Hash and equality functions for the named_label table. */
2903 hashval_t
2904 named_label_hasher::hash (named_label_entry *ent)
2906 return DECL_UID (ent->label_decl);
2909 bool
2910 named_label_hasher::equal (named_label_entry *a, named_label_entry *b)
2912 return a->label_decl == b->label_decl;
2915 /* Create a new label, named ID. */
2917 static tree
2918 make_label_decl (tree id, int local_p)
2920 struct named_label_entry *ent;
2921 tree decl;
2923 decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
2925 DECL_CONTEXT (decl) = current_function_decl;
2926 DECL_MODE (decl) = VOIDmode;
2927 C_DECLARED_LABEL_FLAG (decl) = local_p;
2929 /* Say where one reference is to the label, for the sake of the
2930 error if it is not defined. */
2931 DECL_SOURCE_LOCATION (decl) = input_location;
2933 /* Record the fact that this identifier is bound to this label. */
2934 SET_IDENTIFIER_LABEL_VALUE (id, decl);
2936 /* Create the label htab for the function on demand. */
2937 if (!named_labels)
2938 named_labels = hash_table<named_label_hasher>::create_ggc (13);
2940 /* Record this label on the list of labels used in this function.
2941 We do this before calling make_label_decl so that we get the
2942 IDENTIFIER_LABEL_VALUE before the new label is declared. */
2943 ent = ggc_cleared_alloc<named_label_entry> ();
2944 ent->label_decl = decl;
2946 named_label_entry **slot = named_labels->find_slot (ent, INSERT);
2947 gcc_assert (*slot == NULL);
2948 *slot = ent;
2950 return decl;
2953 /* Look for a label named ID in the current function. If one cannot
2954 be found, create one. (We keep track of used, but undefined,
2955 labels, and complain about them at the end of a function.) */
2957 static tree
2958 lookup_label_1 (tree id)
2960 tree decl;
2962 /* You can't use labels at global scope. */
2963 if (current_function_decl == NULL_TREE)
2965 error ("label %qE referenced outside of any function", id);
2966 return NULL_TREE;
2969 /* See if we've already got this label. */
2970 decl = IDENTIFIER_LABEL_VALUE (id);
2971 if (decl != NULL_TREE && DECL_CONTEXT (decl) == current_function_decl)
2972 return decl;
2974 decl = make_label_decl (id, /*local_p=*/0);
2975 return decl;
2978 /* Wrapper for lookup_label_1. */
2980 tree
2981 lookup_label (tree id)
2983 tree ret;
2984 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
2985 ret = lookup_label_1 (id);
2986 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
2987 return ret;
2990 /* Declare a local label named ID. */
2992 tree
2993 declare_local_label (tree id)
2995 tree decl;
2996 cp_label_binding bind;
2998 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
2999 this scope we can restore the old value of IDENTIFIER_TYPE_VALUE. */
3000 bind.prev_value = IDENTIFIER_LABEL_VALUE (id);
3002 decl = make_label_decl (id, /*local_p=*/1);
3003 bind.label = decl;
3004 vec_safe_push (current_binding_level->shadowed_labels, bind);
3006 return decl;
3009 /* Returns nonzero if it is ill-formed to jump past the declaration of
3010 DECL. Returns 2 if it's also a real problem. */
3012 static int
3013 decl_jump_unsafe (tree decl)
3015 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
3016 with automatic storage duration is not in scope to a point where it is
3017 in scope is ill-formed unless the variable has scalar type, class type
3018 with a trivial default constructor and a trivial destructor, a
3019 cv-qualified version of one of these types, or an array of one of the
3020 preceding types and is declared without an initializer (8.5). */
3021 tree type = TREE_TYPE (decl);
3023 if (!VAR_P (decl) || TREE_STATIC (decl)
3024 || type == error_mark_node)
3025 return 0;
3027 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
3028 || variably_modified_type_p (type, NULL_TREE))
3029 return 2;
3031 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3032 return 1;
3034 return 0;
3037 /* A subroutine of check_previous_goto_1 and check_goto to identify a branch
3038 to the user. */
3040 static bool
3041 identify_goto (tree decl, location_t loc, const location_t *locus,
3042 diagnostic_t diag_kind)
3044 bool complained
3045 = (decl ? emit_diagnostic (diag_kind, loc, 0, "jump to label %qD", decl)
3046 : emit_diagnostic (diag_kind, loc, 0, "jump to case label"));
3047 if (complained && locus)
3048 inform (*locus, " from here");
3049 return complained;
3052 /* Check that a single previously seen jump to a newly defined label
3053 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
3054 the jump context; NAMES are the names in scope in LEVEL at the jump
3055 context; LOCUS is the source position of the jump or 0. Returns
3056 true if all is well. */
3058 static bool
3059 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
3060 bool exited_omp, const location_t *locus)
3062 cp_binding_level *b;
3063 bool complained = false;
3064 int identified = 0;
3065 bool saw_eh = false, saw_omp = false, saw_tm = false, saw_cxif = false;
3067 if (exited_omp)
3069 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3070 if (complained)
3071 inform (input_location, " exits OpenMP structured block");
3072 saw_omp = true;
3073 identified = 2;
3076 for (b = current_binding_level; b ; b = b->level_chain)
3078 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
3080 for (new_decls = b->names; new_decls != old_decls;
3081 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
3082 : TREE_CHAIN (new_decls)))
3084 int problem = decl_jump_unsafe (new_decls);
3085 if (! problem)
3086 continue;
3088 if (!identified)
3090 complained = identify_goto (decl, input_location, locus,
3091 DK_PERMERROR);
3092 identified = 1;
3094 if (complained)
3096 if (problem > 1)
3097 inform (DECL_SOURCE_LOCATION (new_decls),
3098 " crosses initialization of %q#D", new_decls);
3099 else
3100 inform (DECL_SOURCE_LOCATION (new_decls),
3101 " enters scope of %q#D which has "
3102 "non-trivial destructor", new_decls);
3106 if (b == level)
3107 break;
3108 if ((b->kind == sk_try || b->kind == sk_catch) && !saw_eh)
3110 if (identified < 2)
3112 complained = identify_goto (decl, input_location, locus,
3113 DK_ERROR);
3114 identified = 2;
3116 if (complained)
3118 if (b->kind == sk_try)
3119 inform (input_location, " enters try block");
3120 else
3121 inform (input_location, " enters catch block");
3123 saw_eh = true;
3125 if (b->kind == sk_omp && !saw_omp)
3127 if (identified < 2)
3129 complained = identify_goto (decl, input_location, locus,
3130 DK_ERROR);
3131 identified = 2;
3133 if (complained)
3134 inform (input_location, " enters OpenMP structured block");
3135 saw_omp = true;
3137 if (b->kind == sk_transaction && !saw_tm)
3139 if (identified < 2)
3141 complained = identify_goto (decl, input_location, locus,
3142 DK_ERROR);
3143 identified = 2;
3145 if (complained)
3146 inform (input_location,
3147 " enters synchronized or atomic statement");
3148 saw_tm = true;
3150 if (!saw_cxif && b->kind == sk_block
3151 && level_for_constexpr_if (b->level_chain))
3153 if (identified < 2)
3155 complained = identify_goto (decl, input_location, locus,
3156 DK_ERROR);
3157 identified = 2;
3159 if (complained)
3160 inform (EXPR_LOCATION (b->level_chain->this_entity),
3161 " enters constexpr if statement");
3162 saw_cxif = true;
3166 return !identified;
3169 static void
3170 check_previous_goto (tree decl, struct named_label_use_entry *use)
3172 check_previous_goto_1 (decl, use->binding_level,
3173 use->names_in_scope, use->in_omp_scope,
3174 &use->o_goto_locus);
3177 static bool
3178 check_switch_goto (cp_binding_level* level)
3180 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
3183 /* Check that a new jump to a label DECL is OK. Called by
3184 finish_goto_stmt. */
3186 void
3187 check_goto (tree decl)
3189 struct named_label_entry *ent, dummy;
3190 bool saw_catch = false, complained = false;
3191 int identified = 0;
3192 tree bad;
3193 unsigned ix;
3195 /* We can't know where a computed goto is jumping.
3196 So we assume that it's OK. */
3197 if (TREE_CODE (decl) != LABEL_DECL)
3198 return;
3200 /* We didn't record any information about this label when we created it,
3201 and there's not much point since it's trivial to analyze as a return. */
3202 if (decl == cdtor_label)
3203 return;
3205 dummy.label_decl = decl;
3206 ent = named_labels->find (&dummy);
3207 gcc_assert (ent != NULL);
3209 /* If the label hasn't been defined yet, defer checking. */
3210 if (! DECL_INITIAL (decl))
3212 struct named_label_use_entry *new_use;
3214 /* Don't bother creating another use if the last goto had the
3215 same data, and will therefore create the same set of errors. */
3216 if (ent->uses
3217 && ent->uses->names_in_scope == current_binding_level->names)
3218 return;
3220 new_use = ggc_alloc<named_label_use_entry> ();
3221 new_use->binding_level = current_binding_level;
3222 new_use->names_in_scope = current_binding_level->names;
3223 new_use->o_goto_locus = input_location;
3224 new_use->in_omp_scope = false;
3226 new_use->next = ent->uses;
3227 ent->uses = new_use;
3228 return;
3231 if (ent->in_try_scope || ent->in_catch_scope || ent->in_transaction_scope
3232 || ent->in_constexpr_if
3233 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3235 diagnostic_t diag_kind = DK_PERMERROR;
3236 if (ent->in_try_scope || ent->in_catch_scope || ent->in_constexpr_if
3237 || ent->in_transaction_scope || ent->in_omp_scope)
3238 diag_kind = DK_ERROR;
3239 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3240 &input_location, diag_kind);
3241 identified = 1 + (diag_kind == DK_ERROR);
3244 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3246 int u = decl_jump_unsafe (bad);
3248 if (u > 1 && DECL_ARTIFICIAL (bad))
3250 /* Can't skip init of __exception_info. */
3251 if (identified == 1)
3253 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3254 &input_location, DK_ERROR);
3255 identified = 2;
3257 if (complained)
3258 inform (DECL_SOURCE_LOCATION (bad), " enters catch block");
3259 saw_catch = true;
3261 else if (complained)
3263 if (u > 1)
3264 inform (DECL_SOURCE_LOCATION (bad),
3265 " skips initialization of %q#D", bad);
3266 else
3267 inform (DECL_SOURCE_LOCATION (bad),
3268 " enters scope of %q#D which has "
3269 "non-trivial destructor", bad);
3273 if (complained)
3275 if (ent->in_try_scope)
3276 inform (input_location, " enters try block");
3277 else if (ent->in_catch_scope && !saw_catch)
3278 inform (input_location, " enters catch block");
3279 else if (ent->in_transaction_scope)
3280 inform (input_location, " enters synchronized or atomic statement");
3281 else if (ent->in_constexpr_if)
3282 inform (input_location, " enters constexpr if statement");
3285 if (ent->in_omp_scope)
3287 if (complained)
3288 inform (input_location, " enters OpenMP structured block");
3290 else if (flag_openmp)
3292 cp_binding_level *b;
3293 for (b = current_binding_level; b ; b = b->level_chain)
3295 if (b == ent->binding_level)
3296 break;
3297 if (b->kind == sk_omp)
3299 if (identified < 2)
3301 complained = identify_goto (decl,
3302 DECL_SOURCE_LOCATION (decl),
3303 &input_location, DK_ERROR);
3304 identified = 2;
3306 if (complained)
3307 inform (input_location, " exits OpenMP structured block");
3308 break;
3314 /* Check that a return is ok wrt OpenMP structured blocks.
3315 Called by finish_return_stmt. Returns true if all is well. */
3317 bool
3318 check_omp_return (void)
3320 cp_binding_level *b;
3321 for (b = current_binding_level; b ; b = b->level_chain)
3322 if (b->kind == sk_omp)
3324 error ("invalid exit from OpenMP structured block");
3325 return false;
3327 else if (b->kind == sk_function_parms)
3328 break;
3329 return true;
3332 /* Define a label, specifying the location in the source file.
3333 Return the LABEL_DECL node for the label. */
3335 static tree
3336 define_label_1 (location_t location, tree name)
3338 struct named_label_entry *ent, dummy;
3339 cp_binding_level *p;
3340 tree decl;
3342 decl = lookup_label (name);
3344 dummy.label_decl = decl;
3345 ent = named_labels->find (&dummy);
3346 gcc_assert (ent != NULL);
3348 /* After labels, make any new cleanups in the function go into their
3349 own new (temporary) binding contour. */
3350 for (p = current_binding_level;
3351 p->kind != sk_function_parms;
3352 p = p->level_chain)
3353 p->more_cleanups_ok = 0;
3355 if (name == get_identifier ("wchar_t"))
3356 permerror (input_location, "label named wchar_t");
3358 if (DECL_INITIAL (decl) != NULL_TREE)
3360 error ("duplicate label %qD", decl);
3361 return error_mark_node;
3363 else
3365 struct named_label_use_entry *use;
3367 /* Mark label as having been defined. */
3368 DECL_INITIAL (decl) = error_mark_node;
3369 /* Say where in the source. */
3370 DECL_SOURCE_LOCATION (decl) = location;
3372 ent->binding_level = current_binding_level;
3373 ent->names_in_scope = current_binding_level->names;
3375 for (use = ent->uses; use ; use = use->next)
3376 check_previous_goto (decl, use);
3377 ent->uses = NULL;
3380 return decl;
3383 /* Wrapper for define_label_1. */
3385 tree
3386 define_label (location_t location, tree name)
3388 tree ret;
3389 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3390 ret = define_label_1 (location, name);
3391 timevar_cond_stop (TV_NAME_LOOKUP, running);
3392 return ret;
3396 struct cp_switch
3398 cp_binding_level *level;
3399 struct cp_switch *next;
3400 /* The SWITCH_STMT being built. */
3401 tree switch_stmt;
3402 /* A splay-tree mapping the low element of a case range to the high
3403 element, or NULL_TREE if there is no high element. Used to
3404 determine whether or not a new case label duplicates an old case
3405 label. We need a tree, rather than simply a hash table, because
3406 of the GNU case range extension. */
3407 splay_tree cases;
3408 /* Remember whether there was a case value that is outside the
3409 range of the original type of the controlling expression. */
3410 bool outside_range_p;
3413 /* A stack of the currently active switch statements. The innermost
3414 switch statement is on the top of the stack. There is no need to
3415 mark the stack for garbage collection because it is only active
3416 during the processing of the body of a function, and we never
3417 collect at that point. */
3419 static struct cp_switch *switch_stack;
3421 /* Called right after a switch-statement condition is parsed.
3422 SWITCH_STMT is the switch statement being parsed. */
3424 void
3425 push_switch (tree switch_stmt)
3427 struct cp_switch *p = XNEW (struct cp_switch);
3428 p->level = current_binding_level;
3429 p->next = switch_stack;
3430 p->switch_stmt = switch_stmt;
3431 p->cases = splay_tree_new (case_compare, NULL, NULL);
3432 p->outside_range_p = false;
3433 switch_stack = p;
3436 void
3437 pop_switch (void)
3439 struct cp_switch *cs = switch_stack;
3440 location_t switch_location;
3442 /* Emit warnings as needed. */
3443 switch_location = EXPR_LOC_OR_LOC (cs->switch_stmt, input_location);
3444 const bool bool_cond_p
3445 = (SWITCH_STMT_TYPE (cs->switch_stmt)
3446 && TREE_CODE (SWITCH_STMT_TYPE (cs->switch_stmt)) == BOOLEAN_TYPE);
3447 if (!processing_template_decl)
3448 c_do_switch_warnings (cs->cases, switch_location,
3449 SWITCH_STMT_TYPE (cs->switch_stmt),
3450 SWITCH_STMT_COND (cs->switch_stmt),
3451 bool_cond_p, cs->outside_range_p);
3453 splay_tree_delete (cs->cases);
3454 switch_stack = switch_stack->next;
3455 free (cs);
3458 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3459 condition. Note that if TYPE and VALUE are already integral we don't
3460 really do the conversion because the language-independent
3461 warning/optimization code will work better that way. */
3463 static tree
3464 case_conversion (tree type, tree value)
3466 if (value == NULL_TREE)
3467 return value;
3469 if (cxx_dialect >= cxx11
3470 && (SCOPED_ENUM_P (type)
3471 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))))
3473 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3474 type = type_promotes_to (type);
3475 value = (perform_implicit_conversion_flags
3476 (type, value, tf_warning_or_error,
3477 LOOKUP_IMPLICIT | LOOKUP_NO_NON_INTEGRAL));
3479 return cxx_constant_value (value);
3482 /* Note that we've seen a definition of a case label, and complain if this
3483 is a bad place for one. */
3485 tree
3486 finish_case_label (location_t loc, tree low_value, tree high_value)
3488 tree cond, r;
3489 cp_binding_level *p;
3490 tree type;
3492 if (processing_template_decl)
3494 tree label;
3496 /* For templates, just add the case label; we'll do semantic
3497 analysis at instantiation-time. */
3498 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
3499 return add_stmt (build_case_label (low_value, high_value, label));
3502 /* Find the condition on which this switch statement depends. */
3503 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3504 if (cond && TREE_CODE (cond) == TREE_LIST)
3505 cond = TREE_VALUE (cond);
3507 if (!check_switch_goto (switch_stack->level))
3508 return error_mark_node;
3510 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3512 low_value = case_conversion (type, low_value);
3513 high_value = case_conversion (type, high_value);
3515 r = c_add_case_label (loc, switch_stack->cases, cond, type,
3516 low_value, high_value,
3517 &switch_stack->outside_range_p);
3519 /* After labels, make any new cleanups in the function go into their
3520 own new (temporary) binding contour. */
3521 for (p = current_binding_level;
3522 p->kind != sk_function_parms;
3523 p = p->level_chain)
3524 p->more_cleanups_ok = 0;
3526 return r;
3529 struct typename_info {
3530 tree scope;
3531 tree name;
3532 tree template_id;
3533 bool enum_p;
3534 bool class_p;
3537 struct typename_hasher : ggc_ptr_hash<tree_node>
3539 typedef typename_info *compare_type;
3541 /* Hash a TYPENAME_TYPE. */
3543 static hashval_t
3544 hash (tree t)
3546 hashval_t hash;
3548 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3549 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3551 return hash;
3554 /* Compare two TYPENAME_TYPEs. */
3556 static bool
3557 equal (tree t1, const typename_info *t2)
3559 return (TYPE_IDENTIFIER (t1) == t2->name
3560 && TYPE_CONTEXT (t1) == t2->scope
3561 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3562 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3563 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3567 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3568 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3570 Returns the new TYPENAME_TYPE. */
3572 static GTY (()) hash_table<typename_hasher> *typename_htab;
3574 static tree
3575 build_typename_type (tree context, tree name, tree fullname,
3576 enum tag_types tag_type)
3578 tree t;
3579 tree d;
3580 typename_info ti;
3581 tree *e;
3582 hashval_t hash;
3584 if (typename_htab == NULL)
3585 typename_htab = hash_table<typename_hasher>::create_ggc (61);
3587 ti.scope = FROB_CONTEXT (context);
3588 ti.name = name;
3589 ti.template_id = fullname;
3590 ti.enum_p = tag_type == enum_type;
3591 ti.class_p = (tag_type == class_type
3592 || tag_type == record_type
3593 || tag_type == union_type);
3594 hash = (htab_hash_pointer (ti.scope)
3595 ^ htab_hash_pointer (ti.name));
3597 /* See if we already have this type. */
3598 e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
3599 if (*e)
3600 t = *e;
3601 else
3603 /* Build the TYPENAME_TYPE. */
3604 t = cxx_make_type (TYPENAME_TYPE);
3605 TYPE_CONTEXT (t) = ti.scope;
3606 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3607 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3608 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3610 /* Build the corresponding TYPE_DECL. */
3611 d = build_decl (input_location, TYPE_DECL, name, t);
3612 TYPE_NAME (TREE_TYPE (d)) = d;
3613 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3614 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3615 DECL_ARTIFICIAL (d) = 1;
3617 /* Store it in the hash table. */
3618 *e = t;
3620 /* TYPENAME_TYPEs must always be compared structurally, because
3621 they may or may not resolve down to another type depending on
3622 the currently open classes. */
3623 SET_TYPE_STRUCTURAL_EQUALITY (t);
3626 return t;
3629 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3630 provided to name the type. Returns an appropriate type, unless an
3631 error occurs, in which case error_mark_node is returned. If we
3632 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3633 return that, rather than the _TYPE it corresponds to, in other
3634 cases we look through the type decl. If TF_ERROR is set, complain
3635 about errors, otherwise be quiet. */
3637 tree
3638 make_typename_type (tree context, tree name, enum tag_types tag_type,
3639 tsubst_flags_t complain)
3641 tree fullname;
3642 tree t;
3643 bool want_template;
3645 if (name == error_mark_node
3646 || context == NULL_TREE
3647 || context == error_mark_node)
3648 return error_mark_node;
3650 if (TYPE_P (name))
3652 if (!(TYPE_LANG_SPECIFIC (name)
3653 && (CLASSTYPE_IS_TEMPLATE (name)
3654 || CLASSTYPE_USE_TEMPLATE (name))))
3655 name = TYPE_IDENTIFIER (name);
3656 else
3657 /* Create a TEMPLATE_ID_EXPR for the type. */
3658 name = build_nt (TEMPLATE_ID_EXPR,
3659 CLASSTYPE_TI_TEMPLATE (name),
3660 CLASSTYPE_TI_ARGS (name));
3662 else if (TREE_CODE (name) == TYPE_DECL)
3663 name = DECL_NAME (name);
3665 fullname = name;
3667 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3669 name = TREE_OPERAND (name, 0);
3670 if (DECL_TYPE_TEMPLATE_P (name))
3671 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3672 if (TREE_CODE (name) != IDENTIFIER_NODE)
3674 if (complain & tf_error)
3675 error ("%qD is not a type", name);
3676 return error_mark_node;
3679 if (TREE_CODE (name) == TEMPLATE_DECL)
3681 if (complain & tf_error)
3682 error ("%qD used without template parameters", name);
3683 return error_mark_node;
3685 gcc_assert (identifier_p (name));
3686 gcc_assert (TYPE_P (context));
3688 if (!MAYBE_CLASS_TYPE_P (context))
3690 if (complain & tf_error)
3691 error ("%q#T is not a class", context);
3692 return error_mark_node;
3695 /* When the CONTEXT is a dependent type, NAME could refer to a
3696 dependent base class of CONTEXT. But look inside it anyway
3697 if CONTEXT is a currently open scope, in case it refers to a
3698 member of the current instantiation or a non-dependent base;
3699 lookup will stop when we hit a dependent base. */
3700 if (!dependent_scope_p (context))
3701 /* We should only set WANT_TYPE when we're a nested typename type.
3702 Then we can give better diagnostics if we find a non-type. */
3703 t = lookup_field (context, name, 2, /*want_type=*/true);
3704 else
3705 t = NULL_TREE;
3707 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3708 return build_typename_type (context, name, fullname, tag_type);
3710 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3712 if (!t)
3714 if (complain & tf_error)
3715 error (want_template ? G_("no class template named %q#T in %q#T")
3716 : G_("no type named %q#T in %q#T"), name, context);
3717 return error_mark_node;
3720 /* Pull out the template from an injected-class-name (or multiple). */
3721 if (want_template)
3722 t = maybe_get_template_decl_from_type_decl (t);
3724 if (TREE_CODE (t) == TREE_LIST)
3726 if (complain & tf_error)
3728 error ("lookup of %qT in %qT is ambiguous", name, context);
3729 print_candidates (t);
3731 return error_mark_node;
3734 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3736 if (complain & tf_error)
3737 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3738 context, name, t);
3739 return error_mark_node;
3741 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3743 if (complain & tf_error)
3744 error ("%<typename %T::%D%> names %q#T, which is not a type",
3745 context, name, t);
3746 return error_mark_node;
3749 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3750 return error_mark_node;
3752 /* If we are currently parsing a template and if T is a typedef accessed
3753 through CONTEXT then we need to remember and check access of T at
3754 template instantiation time. */
3755 add_typedef_to_current_template_for_access_check (t, context, input_location);
3757 if (want_template)
3758 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3759 NULL_TREE, context,
3760 /*entering_scope=*/0,
3761 complain | tf_user);
3763 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3764 t = TREE_TYPE (t);
3766 maybe_record_typedef_use (t);
3768 return t;
3771 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3772 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3773 in which case error_mark_node is returned.
3775 If PARM_LIST is non-NULL, also make sure that the template parameter
3776 list of TEMPLATE_DECL matches.
3778 If COMPLAIN zero, don't complain about any errors that occur. */
3780 tree
3781 make_unbound_class_template (tree context, tree name, tree parm_list,
3782 tsubst_flags_t complain)
3784 tree t;
3785 tree d;
3787 if (TYPE_P (name))
3788 name = TYPE_IDENTIFIER (name);
3789 else if (DECL_P (name))
3790 name = DECL_NAME (name);
3791 gcc_assert (identifier_p (name));
3793 if (!dependent_type_p (context)
3794 || currently_open_class (context))
3796 tree tmpl = NULL_TREE;
3798 if (MAYBE_CLASS_TYPE_P (context))
3799 tmpl = lookup_field (context, name, 0, false);
3801 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3802 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3804 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3806 if (complain & tf_error)
3807 error ("no class template named %q#T in %q#T", name, context);
3808 return error_mark_node;
3811 if (parm_list
3812 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3814 if (complain & tf_error)
3816 error ("template parameters do not match template %qD", tmpl);
3817 inform (DECL_SOURCE_LOCATION (tmpl),
3818 "%qD declared here", tmpl);
3820 return error_mark_node;
3823 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
3824 complain))
3825 return error_mark_node;
3827 return tmpl;
3830 /* Build the UNBOUND_CLASS_TEMPLATE. */
3831 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3832 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3833 TREE_TYPE (t) = NULL_TREE;
3834 SET_TYPE_STRUCTURAL_EQUALITY (t);
3836 /* Build the corresponding TEMPLATE_DECL. */
3837 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3838 TYPE_NAME (TREE_TYPE (d)) = d;
3839 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3840 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3841 DECL_ARTIFICIAL (d) = 1;
3842 DECL_TEMPLATE_PARMS (d) = parm_list;
3844 return t;
3849 /* Push the declarations of builtin types into the namespace.
3850 RID_INDEX is the index of the builtin type in the array
3851 RID_POINTERS. NAME is the name used when looking up the builtin
3852 type. TYPE is the _TYPE node for the builtin type. */
3854 void
3855 record_builtin_type (enum rid rid_index,
3856 const char* name,
3857 tree type)
3859 tree rname = NULL_TREE, tname = NULL_TREE;
3860 tree tdecl = NULL_TREE;
3862 if ((int) rid_index < (int) RID_MAX)
3863 rname = ridpointers[(int) rid_index];
3864 if (name)
3865 tname = get_identifier (name);
3867 /* The calls to SET_IDENTIFIER_GLOBAL_VALUE below should be
3868 eliminated. Built-in types should not be looked up name; their
3869 names are keywords that the parser can recognize. However, there
3870 is code in c-common.c that uses identifier_global_value to look
3871 up built-in types by name. */
3872 if (tname)
3874 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
3875 DECL_ARTIFICIAL (tdecl) = 1;
3876 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
3878 if (rname)
3880 if (!tdecl)
3882 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
3883 DECL_ARTIFICIAL (tdecl) = 1;
3885 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
3888 if (!TYPE_NAME (type))
3889 TYPE_NAME (type) = tdecl;
3891 if (tdecl)
3892 debug_hooks->type_decl (tdecl, 0);
3895 /* Record one of the standard Java types.
3896 * Declare it as having the given NAME.
3897 * If SIZE > 0, it is the size of one of the integral types;
3898 * otherwise it is the negative of the size of one of the other types. */
3900 static tree
3901 record_builtin_java_type (const char* name, int size)
3903 tree type, decl;
3904 if (size > 0)
3906 type = build_nonstandard_integer_type (size, 0);
3907 type = build_distinct_type_copy (type);
3909 else if (size > -32)
3911 tree stype;
3912 /* "__java_char" or ""__java_boolean". */
3913 type = build_nonstandard_integer_type (-size, 1);
3914 type = build_distinct_type_copy (type);
3915 /* Get the signed type cached and attached to the unsigned type,
3916 so it doesn't get garbage-collected at "random" times,
3917 causing potential codegen differences out of different UIDs
3918 and different alias set numbers. */
3919 stype = build_nonstandard_integer_type (-size, 0);
3920 stype = build_distinct_type_copy (stype);
3921 TREE_CHAIN (type) = stype;
3922 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
3924 else
3925 { /* "__java_float" or ""__java_double". */
3926 type = make_node (REAL_TYPE);
3927 TYPE_PRECISION (type) = - size;
3928 layout_type (type);
3930 record_builtin_type (RID_MAX, name, type);
3931 decl = TYPE_NAME (type);
3933 /* Suppress generate debug symbol entries for these types,
3934 since for normal C++ they are just clutter.
3935 However, push_lang_context undoes this if extern "Java" is seen. */
3936 DECL_IGNORED_P (decl) = 1;
3938 TYPE_FOR_JAVA (type) = 1;
3939 return type;
3942 /* Push a type into the namespace so that the back ends ignore it. */
3944 static void
3945 record_unknown_type (tree type, const char* name)
3947 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
3948 TYPE_DECL, get_identifier (name), type));
3949 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3950 DECL_IGNORED_P (decl) = 1;
3951 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
3952 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
3953 SET_TYPE_ALIGN (type, 1);
3954 TYPE_USER_ALIGN (type) = 0;
3955 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
3958 /* A string for which we should create an IDENTIFIER_NODE at
3959 startup. */
3961 struct predefined_identifier
3963 /* The name of the identifier. */
3964 const char *const name;
3965 /* The place where the IDENTIFIER_NODE should be stored. */
3966 tree *const node;
3967 /* Nonzero if this is the name of a constructor or destructor. */
3968 const int ctor_or_dtor_p;
3971 /* Create all the predefined identifiers. */
3973 static void
3974 initialize_predefined_identifiers (void)
3976 const predefined_identifier *pid;
3978 /* A table of identifiers to create at startup. */
3979 static const predefined_identifier predefined_identifiers[] = {
3980 { "C++", &lang_name_cplusplus, 0 },
3981 { "C", &lang_name_c, 0 },
3982 { "Java", &lang_name_java, 0 },
3983 /* Some of these names have a trailing space so that it is
3984 impossible for them to conflict with names written by users. */
3985 { "__ct ", &ctor_identifier, 1 },
3986 { "__base_ctor ", &base_ctor_identifier, 1 },
3987 { "__comp_ctor ", &complete_ctor_identifier, 1 },
3988 { "__dt ", &dtor_identifier, 1 },
3989 { "__comp_dtor ", &complete_dtor_identifier, 1 },
3990 { "__base_dtor ", &base_dtor_identifier, 1 },
3991 { "__deleting_dtor ", &deleting_dtor_identifier, 1 },
3992 { IN_CHARGE_NAME, &in_charge_identifier, 0 },
3993 { "nelts", &nelts_identifier, 0 },
3994 { THIS_NAME, &this_identifier, 0 },
3995 { VTABLE_DELTA_NAME, &delta_identifier, 0 },
3996 { VTABLE_PFN_NAME, &pfn_identifier, 0 },
3997 { "_vptr", &vptr_identifier, 0 },
3998 { "__vtt_parm", &vtt_parm_identifier, 0 },
3999 { "::", &global_scope_name, 0 },
4000 { "std", &std_identifier, 0 },
4001 { NULL, NULL, 0 }
4004 for (pid = predefined_identifiers; pid->name; ++pid)
4006 *pid->node = get_identifier (pid->name);
4007 if (pid->ctor_or_dtor_p)
4008 IDENTIFIER_CTOR_OR_DTOR_P (*pid->node) = 1;
4012 /* Create the predefined scalar types of C,
4013 and some nodes representing standard constants (0, 1, (void *)0).
4014 Initialize the global binding level.
4015 Make definitions for built-in primitive functions. */
4017 void
4018 cxx_init_decl_processing (void)
4020 tree void_ftype;
4021 tree void_ftype_ptr;
4023 /* Create all the identifiers we need. */
4024 initialize_predefined_identifiers ();
4026 /* Create the global variables. */
4027 push_to_top_level ();
4029 current_function_decl = NULL_TREE;
4030 current_binding_level = NULL;
4031 /* Enter the global namespace. */
4032 gcc_assert (global_namespace == NULL_TREE);
4033 global_namespace = build_lang_decl (NAMESPACE_DECL, global_scope_name,
4034 void_type_node);
4035 DECL_CONTEXT (global_namespace) = build_translation_unit_decl (NULL_TREE);
4036 debug_hooks->register_main_translation_unit
4037 (DECL_CONTEXT (global_namespace));
4038 TREE_PUBLIC (global_namespace) = 1;
4039 begin_scope (sk_namespace, global_namespace);
4041 if (flag_visibility_ms_compat)
4042 default_visibility = VISIBILITY_HIDDEN;
4044 /* Initially, C. */
4045 current_lang_name = lang_name_c;
4047 /* Create the `std' namespace. */
4048 push_namespace (std_identifier);
4049 std_node = current_namespace;
4050 pop_namespace ();
4052 c_common_nodes_and_builtins ();
4054 java_byte_type_node = record_builtin_java_type ("__java_byte", 8);
4055 java_short_type_node = record_builtin_java_type ("__java_short", 16);
4056 java_int_type_node = record_builtin_java_type ("__java_int", 32);
4057 java_long_type_node = record_builtin_java_type ("__java_long", 64);
4058 java_float_type_node = record_builtin_java_type ("__java_float", -32);
4059 java_double_type_node = record_builtin_java_type ("__java_double", -64);
4060 java_char_type_node = record_builtin_java_type ("__java_char", -16);
4061 java_boolean_type_node = record_builtin_java_type ("__java_boolean", -1);
4063 integer_two_node = build_int_cst (NULL_TREE, 2);
4065 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
4066 truthvalue_type_node = boolean_type_node;
4067 truthvalue_false_node = boolean_false_node;
4068 truthvalue_true_node = boolean_true_node;
4070 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
4071 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
4072 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
4074 #if 0
4075 record_builtin_type (RID_MAX, NULL, string_type_node);
4076 #endif
4078 delta_type_node = ptrdiff_type_node;
4079 vtable_index_type = ptrdiff_type_node;
4081 vtt_parm_type = build_pointer_type (const_ptr_type_node);
4082 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
4083 void_ftype_ptr = build_function_type_list (void_type_node,
4084 ptr_type_node, NULL_TREE);
4085 void_ftype_ptr
4086 = build_exception_variant (void_ftype_ptr, empty_except_spec);
4088 /* C++ extensions */
4090 unknown_type_node = make_node (LANG_TYPE);
4091 record_unknown_type (unknown_type_node, "unknown type");
4093 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
4094 TREE_TYPE (unknown_type_node) = unknown_type_node;
4096 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
4097 result. */
4098 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
4099 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
4101 init_list_type_node = make_node (LANG_TYPE);
4102 record_unknown_type (init_list_type_node, "init list");
4105 /* Make sure we get a unique function type, so we can give
4106 its pointer type a name. (This wins for gdb.) */
4107 tree vfunc_type = make_node (FUNCTION_TYPE);
4108 TREE_TYPE (vfunc_type) = integer_type_node;
4109 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
4110 layout_type (vfunc_type);
4112 vtable_entry_type = build_pointer_type (vfunc_type);
4114 record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
4116 vtbl_type_node
4117 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
4118 layout_type (vtbl_type_node);
4119 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
4120 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
4121 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
4122 layout_type (vtbl_ptr_type_node);
4123 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
4125 push_namespace (get_identifier ("__cxxabiv1"));
4126 abi_node = current_namespace;
4127 pop_namespace ();
4129 global_type_node = make_node (LANG_TYPE);
4130 record_unknown_type (global_type_node, "global type");
4132 /* Now, C++. */
4133 current_lang_name = lang_name_cplusplus;
4135 if (aligned_new_threshold > 1
4136 && !pow2p_hwi (aligned_new_threshold))
4138 error ("-faligned-new=%d is not a power of two", aligned_new_threshold);
4139 aligned_new_threshold = 1;
4141 if (aligned_new_threshold == -1)
4142 aligned_new_threshold = (cxx_dialect >= cxx1z) ? 1 : 0;
4143 if (aligned_new_threshold == 1)
4144 aligned_new_threshold = max_align_t_align () / BITS_PER_UNIT;
4147 tree newattrs, extvisattr;
4148 tree newtype, deltype;
4149 tree ptr_ftype_sizetype;
4150 tree new_eh_spec;
4152 ptr_ftype_sizetype
4153 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
4154 if (cxx_dialect == cxx98)
4156 tree bad_alloc_id;
4157 tree bad_alloc_type_node;
4158 tree bad_alloc_decl;
4160 push_namespace (std_identifier);
4161 bad_alloc_id = get_identifier ("bad_alloc");
4162 bad_alloc_type_node = make_class_type (RECORD_TYPE);
4163 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
4164 bad_alloc_decl
4165 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
4166 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
4167 pop_namespace ();
4169 new_eh_spec
4170 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
4172 else
4173 new_eh_spec = noexcept_false_spec;
4175 /* Ensure attribs.c is initialized. */
4176 init_attributes ();
4178 /* Ensure constraint.cc is initialized. */
4179 init_constraint_processing ();
4181 extvisattr = build_tree_list (get_identifier ("externally_visible"),
4182 NULL_TREE);
4183 newattrs = tree_cons (get_identifier ("alloc_size"),
4184 build_tree_list (NULL_TREE, integer_one_node),
4185 extvisattr);
4186 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
4187 newtype = build_exception_variant (newtype, new_eh_spec);
4188 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
4189 deltype = build_exception_variant (deltype, empty_except_spec);
4190 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4191 DECL_IS_MALLOC (opnew) = 1;
4192 DECL_IS_OPERATOR_NEW (opnew) = 1;
4193 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4194 DECL_IS_MALLOC (opnew) = 1;
4195 DECL_IS_OPERATOR_NEW (opnew) = 1;
4196 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4197 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4198 if (flag_sized_deallocation)
4200 /* Also push the sized deallocation variants:
4201 void operator delete(void*, std::size_t) throw();
4202 void operator delete[](void*, std::size_t) throw(); */
4203 tree void_ftype_ptr_size
4204 = build_function_type_list (void_type_node, ptr_type_node,
4205 size_type_node, NULL_TREE);
4206 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
4207 extvisattr);
4208 deltype = build_exception_variant (deltype, empty_except_spec);
4209 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4210 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4213 if (aligned_new_threshold)
4215 push_namespace (std_identifier);
4216 tree align_id = get_identifier ("align_val_t");
4217 align_type_node = start_enum (align_id, NULL_TREE, size_type_node,
4218 NULL_TREE, /*scoped*/true, NULL);
4219 pop_namespace ();
4221 /* operator new (size_t, align_val_t); */
4222 newtype = build_function_type_list (ptr_type_node, size_type_node,
4223 align_type_node, NULL_TREE);
4224 newtype = cp_build_type_attribute_variant (newtype, newattrs);
4225 newtype = build_exception_variant (newtype, new_eh_spec);
4226 opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4227 DECL_IS_MALLOC (opnew) = 1;
4228 DECL_IS_OPERATOR_NEW (opnew) = 1;
4229 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4230 DECL_IS_MALLOC (opnew) = 1;
4231 DECL_IS_OPERATOR_NEW (opnew) = 1;
4233 /* operator delete (void *, align_val_t); */
4234 deltype = build_function_type_list (void_type_node, ptr_type_node,
4235 align_type_node, NULL_TREE);
4236 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4237 deltype = build_exception_variant (deltype, empty_except_spec);
4238 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4239 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4241 if (flag_sized_deallocation)
4243 /* operator delete (void *, size_t, align_val_t); */
4244 deltype = build_function_type_list (void_type_node, ptr_type_node,
4245 size_type_node, align_type_node,
4246 NULL_TREE);
4247 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4248 deltype = build_exception_variant (deltype, empty_except_spec);
4249 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4250 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4254 nullptr_type_node = make_node (NULLPTR_TYPE);
4255 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
4256 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
4257 TYPE_UNSIGNED (nullptr_type_node) = 1;
4258 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
4259 if (abi_version_at_least (9))
4260 SET_TYPE_ALIGN (nullptr_type_node, GET_MODE_ALIGNMENT (ptr_mode));
4261 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
4262 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4263 nullptr_node = build_int_cst (nullptr_type_node, 0);
4266 abort_fndecl
4267 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4268 ECF_NORETURN | ECF_NOTHROW);
4270 /* Perform other language dependent initializations. */
4271 init_class_processing ();
4272 init_rtti_processing ();
4273 init_template_processing ();
4275 if (flag_exceptions)
4276 init_exception_processing ();
4278 if (! supports_one_only ())
4279 flag_weak = 0;
4281 make_fname_decl = cp_make_fname_decl;
4282 start_fname_decls ();
4284 /* Show we use EH for cleanups. */
4285 if (flag_exceptions)
4286 using_eh_for_cleanups ();
4289 /* Generate an initializer for a function naming variable from
4290 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4291 filled in with the type of the init. */
4293 tree
4294 cp_fname_init (const char* name, tree *type_p)
4296 tree domain = NULL_TREE;
4297 tree type;
4298 tree init = NULL_TREE;
4299 size_t length = 0;
4301 if (name)
4303 length = strlen (name);
4304 domain = build_index_type (size_int (length));
4305 init = build_string (length + 1, name);
4308 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4309 type = build_cplus_array_type (type, domain);
4311 *type_p = type;
4313 if (init)
4314 TREE_TYPE (init) = type;
4315 else
4316 init = error_mark_node;
4318 return init;
4321 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4322 the decl, LOC is the location to give the decl, NAME is the
4323 initialization string and TYPE_DEP indicates whether NAME depended
4324 on the type of the function. We make use of that to detect
4325 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4326 at the point of first use, so we mustn't push the decl now. */
4328 static tree
4329 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4331 const char *const name = (type_dep && processing_template_decl
4332 ? NULL : fname_as_string (type_dep));
4333 tree type;
4334 tree init = cp_fname_init (name, &type);
4335 tree decl = build_decl (loc, VAR_DECL, id, type);
4337 if (name)
4338 free (CONST_CAST (char *, name));
4340 /* As we're using pushdecl_with_scope, we must set the context. */
4341 DECL_CONTEXT (decl) = current_function_decl;
4343 TREE_STATIC (decl) = 1;
4344 TREE_READONLY (decl) = 1;
4345 DECL_ARTIFICIAL (decl) = 1;
4347 TREE_USED (decl) = 1;
4349 if (current_function_decl)
4351 cp_binding_level *b = current_binding_level;
4352 if (b->kind == sk_function_parms)
4353 return error_mark_node;
4354 while (b->level_chain->kind != sk_function_parms)
4355 b = b->level_chain;
4356 pushdecl_with_scope (decl, b, /*is_friend=*/false);
4357 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
4358 LOOKUP_ONLYCONVERTING);
4360 else
4362 DECL_THIS_STATIC (decl) = true;
4363 pushdecl_top_level_and_finish (decl, init);
4366 return decl;
4369 static tree
4370 builtin_function_1 (tree decl, tree context, bool is_global)
4372 tree id = DECL_NAME (decl);
4373 const char *name = IDENTIFIER_POINTER (id);
4375 retrofit_lang_decl (decl);
4377 DECL_ARTIFICIAL (decl) = 1;
4378 SET_OVERLOADED_OPERATOR_CODE (decl, ERROR_MARK);
4379 SET_DECL_LANGUAGE (decl, lang_c);
4380 /* Runtime library routines are, by definition, available in an
4381 external shared object. */
4382 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4383 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4385 DECL_CONTEXT (decl) = context;
4387 if (is_global)
4388 pushdecl_top_level (decl);
4389 else
4390 pushdecl (decl);
4392 /* A function in the user's namespace should have an explicit
4393 declaration before it is used. Mark the built-in function as
4394 anticipated but not actually declared. */
4395 if (name[0] != '_' || name[1] != '_')
4396 DECL_ANTICIPATED (decl) = 1;
4397 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
4399 size_t len = strlen (name);
4401 /* Treat __*_chk fortification functions as anticipated as well,
4402 unless they are __builtin_*. */
4403 if (len > strlen ("___chk")
4404 && memcmp (name + len - strlen ("_chk"),
4405 "_chk", strlen ("_chk") + 1) == 0)
4406 DECL_ANTICIPATED (decl) = 1;
4409 return decl;
4412 tree
4413 cxx_builtin_function (tree decl)
4415 tree id = DECL_NAME (decl);
4416 const char *name = IDENTIFIER_POINTER (id);
4417 /* All builtins that don't begin with an '_' should additionally
4418 go in the 'std' namespace. */
4419 if (name[0] != '_')
4421 tree decl2 = copy_node(decl);
4422 push_namespace (std_identifier);
4423 builtin_function_1 (decl2, std_node, false);
4424 pop_namespace ();
4427 return builtin_function_1 (decl, NULL_TREE, false);
4430 /* Like cxx_builtin_function, but guarantee the function is added to the global
4431 scope. This is to allow function specific options to add new machine
4432 dependent builtins when the target ISA changes via attribute((target(...)))
4433 which saves space on program startup if the program does not use non-generic
4434 ISAs. */
4436 tree
4437 cxx_builtin_function_ext_scope (tree decl)
4440 tree id = DECL_NAME (decl);
4441 const char *name = IDENTIFIER_POINTER (id);
4442 /* All builtins that don't begin with an '_' should additionally
4443 go in the 'std' namespace. */
4444 if (name[0] != '_')
4446 tree decl2 = copy_node(decl);
4447 push_namespace (std_identifier);
4448 builtin_function_1 (decl2, std_node, true);
4449 pop_namespace ();
4452 return builtin_function_1 (decl, NULL_TREE, true);
4455 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4456 function. Not called directly. */
4458 static tree
4459 build_library_fn (tree name, enum tree_code operator_code, tree type,
4460 int ecf_flags)
4462 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4463 DECL_EXTERNAL (fn) = 1;
4464 TREE_PUBLIC (fn) = 1;
4465 DECL_ARTIFICIAL (fn) = 1;
4466 SET_OVERLOADED_OPERATOR_CODE (fn, operator_code);
4467 SET_DECL_LANGUAGE (fn, lang_c);
4468 /* Runtime library routines are, by definition, available in an
4469 external shared object. */
4470 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4471 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4472 set_call_expr_flags (fn, ecf_flags);
4473 return fn;
4476 /* Returns the _DECL for a library function with C++ linkage. */
4478 static tree
4479 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4480 int ecf_flags)
4482 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4483 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4484 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4485 return fn;
4488 /* Like build_library_fn, but takes a C string instead of an
4489 IDENTIFIER_NODE. */
4491 tree
4492 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4494 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4497 /* Like build_cp_library_fn, but takes a C string instead of an
4498 IDENTIFIER_NODE. */
4500 tree
4501 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4503 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4504 ecf_flags);
4507 /* Like build_library_fn, but also pushes the function so that we will
4508 be able to find it via IDENTIFIER_GLOBAL_VALUE. Also, the function
4509 may throw exceptions listed in RAISES. */
4511 tree
4512 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4514 tree fn;
4516 if (raises)
4517 type = build_exception_variant (type, raises);
4519 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4520 pushdecl_top_level (fn);
4521 return fn;
4524 /* Like build_cp_library_fn, but also pushes the function so that it
4525 will be found by normal lookup. */
4527 static tree
4528 push_cp_library_fn (enum tree_code operator_code, tree type,
4529 int ecf_flags)
4531 tree fn = build_cp_library_fn (ansi_opname (operator_code),
4532 operator_code,
4533 type, ecf_flags);
4534 pushdecl (fn);
4535 if (flag_tm)
4536 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4537 return fn;
4540 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4541 a FUNCTION_TYPE. */
4543 tree
4544 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4546 tree type = build_function_type (void_type_node, parmtypes);
4547 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4550 /* Like push_library_fn, but also note that this function throws
4551 and does not return. Used for __throw_foo and the like. */
4553 tree
4554 push_throw_library_fn (tree name, tree type)
4556 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN);
4557 return fn;
4560 /* When we call finish_struct for an anonymous union, we create
4561 default copy constructors and such. But, an anonymous union
4562 shouldn't have such things; this function undoes the damage to the
4563 anonymous union type T.
4565 (The reason that we create the synthesized methods is that we don't
4566 distinguish `union { int i; }' from `typedef union { int i; } U'.
4567 The first is an anonymous union; the second is just an ordinary
4568 union type.) */
4570 void
4571 fixup_anonymous_aggr (tree t)
4573 tree *q;
4575 /* Wipe out memory of synthesized methods. */
4576 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4577 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4578 TYPE_HAS_COPY_CTOR (t) = 0;
4579 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4580 TYPE_HAS_COPY_ASSIGN (t) = 0;
4581 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4583 /* Splice the implicitly generated functions out of the TYPE_METHODS
4584 list. */
4585 q = &TYPE_METHODS (t);
4586 while (*q)
4588 if (DECL_ARTIFICIAL (*q))
4589 *q = TREE_CHAIN (*q);
4590 else
4591 q = &DECL_CHAIN (*q);
4594 /* ISO C++ 9.5.3. Anonymous unions may not have function members. */
4595 if (TYPE_METHODS (t))
4597 tree decl = TYPE_MAIN_DECL (t);
4599 if (TREE_CODE (t) != UNION_TYPE)
4600 error_at (DECL_SOURCE_LOCATION (decl),
4601 "an anonymous struct cannot have function members");
4602 else
4603 error_at (DECL_SOURCE_LOCATION (decl),
4604 "an anonymous union cannot have function members");
4607 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4608 assignment operators (because they cannot have these methods themselves).
4609 For anonymous unions this is already checked because they are not allowed
4610 in any union, otherwise we have to check it. */
4611 if (TREE_CODE (t) != UNION_TYPE)
4613 tree field, type;
4615 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4616 if (TREE_CODE (field) == FIELD_DECL)
4618 type = TREE_TYPE (field);
4619 if (CLASS_TYPE_P (type))
4621 if (TYPE_NEEDS_CONSTRUCTING (type))
4622 error ("member %q+#D with constructor not allowed "
4623 "in anonymous aggregate", field);
4624 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4625 error ("member %q+#D with destructor not allowed "
4626 "in anonymous aggregate", field);
4627 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4628 error ("member %q+#D with copy assignment operator "
4629 "not allowed in anonymous aggregate", field);
4635 /* Warn for an attribute located at LOCATION that appertains to the
4636 class type CLASS_TYPE that has not been properly placed after its
4637 class-key, in it class-specifier. */
4639 void
4640 warn_misplaced_attr_for_class_type (source_location location,
4641 tree class_type)
4643 gcc_assert (OVERLOAD_TYPE_P (class_type));
4645 if (warning_at (location, OPT_Wattributes,
4646 "attribute ignored in declaration "
4647 "of %q#T", class_type))
4648 inform (location,
4649 "attribute for %q#T must follow the %qs keyword",
4650 class_type, class_key_or_enum_as_string (class_type));
4653 /* Make sure that a declaration with no declarator is well-formed, i.e.
4654 just declares a tagged type or anonymous union.
4656 Returns the type declared; or NULL_TREE if none. */
4658 tree
4659 check_tag_decl (cp_decl_specifier_seq *declspecs,
4660 bool explicit_type_instantiation_p)
4662 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4663 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4664 /* If a class, struct, or enum type is declared by the DECLSPECS
4665 (i.e, if a class-specifier, enum-specifier, or non-typename
4666 elaborated-type-specifier appears in the DECLSPECS),
4667 DECLARED_TYPE is set to the corresponding type. */
4668 tree declared_type = NULL_TREE;
4669 bool error_p = false;
4671 if (declspecs->multiple_types_p)
4672 error ("multiple types in one declaration");
4673 else if (declspecs->redefined_builtin_type)
4675 if (!in_system_header_at (input_location))
4676 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4677 "redeclaration of C++ built-in type %qT",
4678 declspecs->redefined_builtin_type);
4679 return NULL_TREE;
4682 if (declspecs->type
4683 && TYPE_P (declspecs->type)
4684 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4685 && MAYBE_CLASS_TYPE_P (declspecs->type))
4686 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4687 declared_type = declspecs->type;
4688 else if (declspecs->type == error_mark_node)
4689 error_p = true;
4690 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
4691 permerror (input_location, "declaration does not declare anything");
4692 else if (declared_type != NULL_TREE && type_uses_auto (declared_type))
4694 error_at (declspecs->locations[ds_type_spec],
4695 "%<auto%> can only be specified for variables "
4696 "or function declarations");
4697 return error_mark_node;
4699 /* Check for an anonymous union. */
4700 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4701 && TYPE_UNNAMED_P (declared_type))
4703 /* 7/3 In a simple-declaration, the optional init-declarator-list
4704 can be omitted only when declaring a class (clause 9) or
4705 enumeration (7.2), that is, when the decl-specifier-seq contains
4706 either a class-specifier, an elaborated-type-specifier with
4707 a class-key (9.1), or an enum-specifier. In these cases and
4708 whenever a class-specifier or enum-specifier is present in the
4709 decl-specifier-seq, the identifiers in these specifiers are among
4710 the names being declared by the declaration (as class-name,
4711 enum-names, or enumerators, depending on the syntax). In such
4712 cases, and except for the declaration of an unnamed bit-field (9.6),
4713 the decl-specifier-seq shall introduce one or more names into the
4714 program, or shall redeclare a name introduced by a previous
4715 declaration. [Example:
4716 enum { }; // ill-formed
4717 typedef class { }; // ill-formed
4718 --end example] */
4719 if (saw_typedef)
4721 error ("missing type-name in typedef-declaration");
4722 return NULL_TREE;
4724 /* Anonymous unions are objects, so they can have specifiers. */;
4725 SET_ANON_AGGR_TYPE_P (declared_type);
4727 if (TREE_CODE (declared_type) != UNION_TYPE
4728 && !in_system_header_at (input_location))
4729 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4732 else
4734 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
4735 error_at (declspecs->locations[ds_inline],
4736 "%<inline%> can only be specified for functions");
4737 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4738 error_at (declspecs->locations[ds_virtual],
4739 "%<virtual%> can only be specified for functions");
4740 else if (saw_friend
4741 && (!current_class_type
4742 || current_scope () != current_class_type))
4743 error_at (declspecs->locations[ds_friend],
4744 "%<friend%> can only be specified inside a class");
4745 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4746 error_at (declspecs->locations[ds_explicit],
4747 "%<explicit%> can only be specified for constructors");
4748 else if (declspecs->storage_class)
4749 error_at (declspecs->locations[ds_storage_class],
4750 "a storage class can only be specified for objects "
4751 "and functions");
4752 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
4753 error_at (declspecs->locations[ds_const],
4754 "%<const%> can only be specified for objects and "
4755 "functions");
4756 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
4757 error_at (declspecs->locations[ds_volatile],
4758 "%<volatile%> can only be specified for objects and "
4759 "functions");
4760 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
4761 error_at (declspecs->locations[ds_restrict],
4762 "%<__restrict%> can only be specified for objects and "
4763 "functions");
4764 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
4765 error_at (declspecs->locations[ds_thread],
4766 "%<__thread%> can only be specified for objects "
4767 "and functions");
4768 else if (saw_typedef)
4769 warning_at (declspecs->locations[ds_typedef], 0,
4770 "%<typedef%> was ignored in this declaration");
4771 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4772 error_at (declspecs->locations[ds_constexpr],
4773 "%<constexpr%> cannot be used for type declarations");
4776 if (declspecs->attributes && warn_attributes && declared_type)
4778 location_t loc;
4779 if (!CLASS_TYPE_P (declared_type)
4780 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4781 /* For a non-template class, use the name location. */
4782 loc = location_of (declared_type);
4783 else
4784 /* For a template class (an explicit instantiation), use the
4785 current location. */
4786 loc = input_location;
4788 if (explicit_type_instantiation_p)
4789 /* [dcl.attr.grammar]/4:
4791 No attribute-specifier-seq shall appertain to an explicit
4792 instantiation. */
4794 if (warning_at (loc, OPT_Wattributes,
4795 "attribute ignored in explicit instantiation %q#T",
4796 declared_type))
4797 inform (loc,
4798 "no attribute can be applied to "
4799 "an explicit instantiation");
4801 else
4802 warn_misplaced_attr_for_class_type (loc, declared_type);
4805 return declared_type;
4808 /* Called when a declaration is seen that contains no names to declare.
4809 If its type is a reference to a structure, union or enum inherited
4810 from a containing scope, shadow that tag name for the current scope
4811 with a forward reference.
4812 If its type defines a new named structure or union
4813 or defines an enum, it is valid but we need not do anything here.
4814 Otherwise, it is an error.
4816 C++: may have to grok the declspecs to learn about static,
4817 complain for anonymous unions.
4819 Returns the TYPE declared -- or NULL_TREE if none. */
4821 tree
4822 shadow_tag (cp_decl_specifier_seq *declspecs)
4824 tree t = check_tag_decl (declspecs,
4825 /*explicit_type_instantiation_p=*/false);
4827 if (!t)
4828 return NULL_TREE;
4830 if (maybe_process_partial_specialization (t) == error_mark_node)
4831 return NULL_TREE;
4833 /* This is where the variables in an anonymous union are
4834 declared. An anonymous union declaration looks like:
4835 union { ... } ;
4836 because there is no declarator after the union, the parser
4837 sends that declaration here. */
4838 if (ANON_AGGR_TYPE_P (t))
4840 fixup_anonymous_aggr (t);
4842 if (TYPE_FIELDS (t))
4844 tree decl = grokdeclarator (/*declarator=*/NULL,
4845 declspecs, NORMAL, 0, NULL);
4846 finish_anon_union (decl);
4850 return t;
4853 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4855 tree
4856 groktypename (cp_decl_specifier_seq *type_specifiers,
4857 const cp_declarator *declarator,
4858 bool is_template_arg)
4860 tree attrs;
4861 tree type;
4862 enum decl_context context
4863 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
4864 attrs = type_specifiers->attributes;
4865 type_specifiers->attributes = NULL_TREE;
4866 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
4867 if (attrs && type != error_mark_node)
4869 if (CLASS_TYPE_P (type))
4870 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
4871 "outside of definition", type);
4872 else if (MAYBE_CLASS_TYPE_P (type))
4873 /* A template type parameter or other dependent type. */
4874 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
4875 "type %qT without an associated declaration", type);
4876 else
4877 cplus_decl_attributes (&type, attrs, 0);
4879 return type;
4882 /* Process a DECLARATOR for a function-scope variable declaration,
4883 namespace-scope variable declaration, or function declaration.
4884 (Function definitions go through start_function; class member
4885 declarations appearing in the body of the class go through
4886 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4887 If an error occurs, the error_mark_node is returned instead.
4889 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
4890 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
4891 for an explicitly defaulted function, or SD_DELETED for an explicitly
4892 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
4893 implicitly initialized via a default constructor. ATTRIBUTES and
4894 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
4896 The scope represented by the context of the returned DECL is pushed
4897 (if it is not the global namespace) and is assigned to
4898 *PUSHED_SCOPE_P. The caller is then responsible for calling
4899 pop_scope on *PUSHED_SCOPE_P if it is set. */
4901 tree
4902 start_decl (const cp_declarator *declarator,
4903 cp_decl_specifier_seq *declspecs,
4904 int initialized,
4905 tree attributes,
4906 tree prefix_attributes,
4907 tree *pushed_scope_p)
4909 tree decl;
4910 tree context;
4911 bool was_public;
4912 int flags;
4913 bool alias;
4915 *pushed_scope_p = NULL_TREE;
4917 /* An object declared as __attribute__((deprecated)) suppresses
4918 warnings of uses of other deprecated items. */
4919 if (lookup_attribute ("deprecated", attributes))
4920 deprecated_state = DEPRECATED_SUPPRESS;
4922 attributes = chainon (attributes, prefix_attributes);
4924 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
4925 &attributes);
4927 deprecated_state = DEPRECATED_NORMAL;
4929 if (decl == NULL_TREE || VOID_TYPE_P (decl)
4930 || decl == error_mark_node)
4931 return error_mark_node;
4933 context = CP_DECL_CONTEXT (decl);
4934 if (context != global_namespace)
4935 *pushed_scope_p = push_scope (context);
4937 /* Is it valid for this decl to have an initializer at all?
4938 If not, set INITIALIZED to zero, which will indirectly
4939 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4940 if (initialized
4941 && TREE_CODE (decl) == TYPE_DECL)
4943 error ("typedef %qD is initialized (use decltype instead)", decl);
4944 return error_mark_node;
4947 if (initialized)
4949 if (! toplevel_bindings_p ()
4950 && DECL_EXTERNAL (decl))
4951 warning (0, "declaration of %q#D has %<extern%> and is initialized",
4952 decl);
4953 DECL_EXTERNAL (decl) = 0;
4954 if (toplevel_bindings_p ())
4955 TREE_STATIC (decl) = 1;
4957 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
4959 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
4960 record_key_method_defined (decl);
4962 /* If this is a typedef that names the class for linkage purposes
4963 (7.1.3p8), apply any attributes directly to the type. */
4964 if (TREE_CODE (decl) == TYPE_DECL
4965 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
4966 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
4967 flags = ATTR_FLAG_TYPE_IN_PLACE;
4968 else
4969 flags = 0;
4971 /* Set attributes here so if duplicate decl, will have proper attributes. */
4972 cplus_decl_attributes (&decl, attributes, flags);
4974 /* Dllimported symbols cannot be defined. Static data members (which
4975 can be initialized in-class and dllimported) go through grokfield,
4976 not here, so we don't need to exclude those decls when checking for
4977 a definition. */
4978 if (initialized && DECL_DLLIMPORT_P (decl))
4980 error ("definition of %q#D is marked %<dllimport%>", decl);
4981 DECL_DLLIMPORT_P (decl) = 0;
4984 /* If #pragma weak was used, mark the decl weak now. */
4985 if (!processing_template_decl)
4986 maybe_apply_pragma_weak (decl);
4988 if (TREE_CODE (decl) == FUNCTION_DECL
4989 && DECL_DECLARED_INLINE_P (decl)
4990 && DECL_UNINLINABLE (decl)
4991 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4992 warning_at (DECL_SOURCE_LOCATION (decl), 0,
4993 "inline function %qD given attribute noinline", decl);
4995 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
4997 bool this_tmpl = (processing_template_decl
4998 > template_class_depth (context));
4999 if (VAR_P (decl))
5001 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
5002 if (field == NULL_TREE
5003 || !(VAR_P (field) || variable_template_p (field)))
5004 error ("%q+#D is not a static data member of %q#T", decl, context);
5005 else if (variable_template_p (field) && !this_tmpl)
5007 if (DECL_LANG_SPECIFIC (decl)
5008 && DECL_TEMPLATE_SPECIALIZATION (decl))
5009 /* OK, specialization was already checked. */;
5010 else
5012 error_at (DECL_SOURCE_LOCATION (decl),
5013 "non-member-template declaration of %qD", decl);
5014 inform (DECL_SOURCE_LOCATION (field), "does not match "
5015 "member template declaration here");
5016 return error_mark_node;
5019 else
5021 if (variable_template_p (field))
5022 field = DECL_TEMPLATE_RESULT (field);
5024 if (DECL_CONTEXT (field) != context)
5026 if (!same_type_p (DECL_CONTEXT (field), context))
5027 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
5028 "to be defined as %<%T::%D%>",
5029 DECL_CONTEXT (field), DECL_NAME (decl),
5030 context, DECL_NAME (decl));
5031 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
5033 /* Static data member are tricky; an in-class initialization
5034 still doesn't provide a definition, so the in-class
5035 declaration will have DECL_EXTERNAL set, but will have an
5036 initialization. Thus, duplicate_decls won't warn
5037 about this situation, and so we check here. */
5038 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
5039 error ("duplicate initialization of %qD", decl);
5040 if (duplicate_decls (decl, field, /*newdecl_is_friend=*/false))
5041 decl = field;
5042 if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr)
5043 && !DECL_DECLARED_CONSTEXPR_P (field))
5044 error ("%qD declared %<constexpr%> outside its class", field);
5047 else
5049 tree field = check_classfn (context, decl,
5050 this_tmpl
5051 ? current_template_parms
5052 : NULL_TREE);
5053 if (field && field != error_mark_node
5054 && duplicate_decls (decl, field,
5055 /*newdecl_is_friend=*/false))
5056 decl = field;
5059 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
5060 DECL_IN_AGGR_P (decl) = 0;
5061 /* Do not mark DECL as an explicit specialization if it was not
5062 already marked as an instantiation; a declaration should
5063 never be marked as a specialization unless we know what
5064 template is being specialized. */
5065 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
5067 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
5068 if (TREE_CODE (decl) == FUNCTION_DECL)
5069 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
5070 && DECL_DECLARED_INLINE_P (decl));
5071 else
5072 DECL_COMDAT (decl) = false;
5074 /* [temp.expl.spec] An explicit specialization of a static data
5075 member of a template is a definition if the declaration
5076 includes an initializer; otherwise, it is a declaration.
5078 We check for processing_specialization so this only applies
5079 to the new specialization syntax. */
5080 if (!initialized && processing_specialization)
5081 DECL_EXTERNAL (decl) = 1;
5084 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
5085 /* Aliases are definitions. */
5086 && !alias)
5087 permerror (input_location, "declaration of %q#D outside of class is not definition",
5088 decl);
5091 was_public = TREE_PUBLIC (decl);
5093 /* Enter this declaration into the symbol table. Don't push the plain
5094 VAR_DECL for a variable template. */
5095 if (!template_parm_scope_p ()
5096 || !VAR_P (decl))
5097 decl = maybe_push_decl (decl);
5099 if (processing_template_decl)
5100 decl = push_template_decl (decl);
5101 if (decl == error_mark_node)
5102 return error_mark_node;
5104 if (VAR_P (decl)
5105 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
5106 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
5108 /* This is a const variable with implicit 'static'. Set
5109 DECL_THIS_STATIC so we can tell it from variables that are
5110 !TREE_PUBLIC because of the anonymous namespace. */
5111 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
5112 DECL_THIS_STATIC (decl) = 1;
5115 if (current_function_decl && VAR_P (decl)
5116 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
5118 bool ok = false;
5119 if (CP_DECL_THREAD_LOCAL_P (decl))
5120 error ("%qD declared %<thread_local%> in %<constexpr%> function",
5121 decl);
5122 else if (TREE_STATIC (decl))
5123 error ("%qD declared %<static%> in %<constexpr%> function", decl);
5124 else
5125 ok = true;
5126 if (!ok)
5127 cp_function_chain->invalid_constexpr = true;
5130 if (!processing_template_decl && VAR_P (decl))
5131 start_decl_1 (decl, initialized);
5133 return decl;
5136 /* Process the declaration of a variable DECL. INITIALIZED is true
5137 iff DECL is explicitly initialized. (INITIALIZED is false if the
5138 variable is initialized via an implicitly-called constructor.)
5139 This function must be called for ordinary variables (including, for
5140 example, implicit instantiations of templates), but must not be
5141 called for template declarations. */
5143 void
5144 start_decl_1 (tree decl, bool initialized)
5146 tree type;
5147 bool complete_p;
5148 bool aggregate_definition_p;
5150 gcc_assert (!processing_template_decl);
5152 if (error_operand_p (decl))
5153 return;
5155 gcc_assert (VAR_P (decl));
5157 type = TREE_TYPE (decl);
5158 complete_p = COMPLETE_TYPE_P (type);
5159 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
5161 /* If an explicit initializer is present, or if this is a definition
5162 of an aggregate, then we need a complete type at this point.
5163 (Scalars are always complete types, so there is nothing to
5164 check.) This code just sets COMPLETE_P; errors (if necessary)
5165 are issued below. */
5166 if ((initialized || aggregate_definition_p)
5167 && !complete_p
5168 && COMPLETE_TYPE_P (complete_type (type)))
5170 complete_p = true;
5171 /* We will not yet have set TREE_READONLY on DECL if the type
5172 was "const", but incomplete, before this point. But, now, we
5173 have a complete type, so we can try again. */
5174 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
5177 if (initialized)
5178 /* Is it valid for this decl to have an initializer at all? */
5180 /* Don't allow initializations for incomplete types except for
5181 arrays which might be completed by the initialization. */
5182 if (complete_p)
5183 ; /* A complete type is ok. */
5184 else if (type_uses_auto (type))
5185 ; /* An auto type is ok. */
5186 else if (TREE_CODE (type) != ARRAY_TYPE)
5188 error ("variable %q#D has initializer but incomplete type", decl);
5189 type = TREE_TYPE (decl) = error_mark_node;
5191 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
5193 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5194 error ("elements of array %q#D have incomplete type", decl);
5195 /* else we already gave an error in start_decl. */
5198 else if (aggregate_definition_p && !complete_p)
5200 if (type_uses_auto (type))
5201 error ("declaration of %q#D has no initializer", decl);
5202 else
5203 error ("aggregate %q#D has incomplete type and cannot be defined",
5204 decl);
5205 /* Change the type so that assemble_variable will give
5206 DECL an rtl we can live with: (mem (const_int 0)). */
5207 type = TREE_TYPE (decl) = error_mark_node;
5210 /* Create a new scope to hold this declaration if necessary.
5211 Whether or not a new scope is necessary cannot be determined
5212 until after the type has been completed; if the type is a
5213 specialization of a class template it is not until after
5214 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5215 will be set correctly. */
5216 maybe_push_cleanup_level (type);
5219 /* Handle initialization of references. DECL, TYPE, and INIT have the
5220 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
5221 but will be set to a new CLEANUP_STMT if a temporary is created
5222 that must be destroyed subsequently.
5224 Returns an initializer expression to use to initialize DECL, or
5225 NULL if the initialization can be performed statically.
5227 Quotes on semantics can be found in ARM 8.4.3. */
5229 static tree
5230 grok_reference_init (tree decl, tree type, tree init, int flags)
5232 if (init == NULL_TREE)
5234 if ((DECL_LANG_SPECIFIC (decl) == 0
5235 || DECL_IN_AGGR_P (decl) == 0)
5236 && ! DECL_THIS_EXTERN (decl))
5237 error ("%qD declared as reference but not initialized", decl);
5238 return NULL_TREE;
5241 if (TREE_CODE (init) == TREE_LIST)
5242 init = build_x_compound_expr_from_list (init, ELK_INIT,
5243 tf_warning_or_error);
5245 tree ttype = TREE_TYPE (type);
5246 if (TREE_CODE (ttype) != ARRAY_TYPE
5247 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
5248 /* Note: default conversion is only called in very special cases. */
5249 init = decay_conversion (init, tf_warning_or_error);
5251 /* check_initializer handles this for non-reference variables, but for
5252 references we need to do it here or the initializer will get the
5253 incomplete array type and confuse later calls to
5254 cp_complete_array_type. */
5255 if (TREE_CODE (ttype) == ARRAY_TYPE
5256 && TYPE_DOMAIN (ttype) == NULL_TREE
5257 && (BRACE_ENCLOSED_INITIALIZER_P (init)
5258 || TREE_CODE (init) == STRING_CST))
5260 cp_complete_array_type (&ttype, init, false);
5261 if (ttype != TREE_TYPE (type))
5262 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
5265 /* Convert INIT to the reference type TYPE. This may involve the
5266 creation of a temporary, whose lifetime must be the same as that
5267 of the reference. If so, a DECL_EXPR for the temporary will be
5268 added just after the DECL_EXPR for DECL. That's why we don't set
5269 DECL_INITIAL for local references (instead assigning to them
5270 explicitly); we need to allow the temporary to be initialized
5271 first. */
5272 return initialize_reference (type, init, flags,
5273 tf_warning_or_error);
5276 /* Designated initializers in arrays are not supported in GNU C++.
5277 The parser cannot detect this error since it does not know whether
5278 a given brace-enclosed initializer is for a class type or for an
5279 array. This function checks that CE does not use a designated
5280 initializer. If it does, an error is issued. Returns true if CE
5281 is valid, i.e., does not have a designated initializer. */
5283 static bool
5284 check_array_designated_initializer (constructor_elt *ce,
5285 unsigned HOST_WIDE_INT index)
5287 /* Designated initializers for array elements are not supported. */
5288 if (ce->index)
5290 /* The parser only allows identifiers as designated
5291 initializers. */
5292 if (ce->index == error_mark_node)
5294 error ("name used in a GNU-style designated "
5295 "initializer for an array");
5296 return false;
5298 else if (identifier_p (ce->index))
5300 error ("name %qD used in a GNU-style designated "
5301 "initializer for an array", ce->index);
5302 return false;
5305 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5306 ce->index, true);
5307 if (ce_index
5308 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
5309 && (TREE_CODE (ce_index = maybe_constant_value (ce_index))
5310 == INTEGER_CST))
5312 /* A C99 designator is OK if it matches the current index. */
5313 if (wi::eq_p (ce_index, index))
5314 return true;
5315 else
5316 sorry ("non-trivial designated initializers not supported");
5318 else
5319 error ("C99 designator %qE is not an integral constant-expression",
5320 ce->index);
5322 return false;
5325 return true;
5328 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5329 array until we finish parsing the initializer. If that's the
5330 situation we're in, update DECL accordingly. */
5332 static void
5333 maybe_deduce_size_from_array_init (tree decl, tree init)
5335 tree type = TREE_TYPE (decl);
5337 if (TREE_CODE (type) == ARRAY_TYPE
5338 && TYPE_DOMAIN (type) == NULL_TREE
5339 && TREE_CODE (decl) != TYPE_DECL)
5341 /* do_default is really a C-ism to deal with tentative definitions.
5342 But let's leave it here to ease the eventual merge. */
5343 int do_default = !DECL_EXTERNAL (decl);
5344 tree initializer = init ? init : DECL_INITIAL (decl);
5345 int failure = 0;
5347 /* Check that there are no designated initializers in INIT, as
5348 those are not supported in GNU C++, and as the middle-end
5349 will crash if presented with a non-numeric designated
5350 initializer. */
5351 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
5353 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
5354 constructor_elt *ce;
5355 HOST_WIDE_INT i;
5356 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
5357 if (!check_array_designated_initializer (ce, i))
5358 failure = 1;
5361 if (!failure)
5363 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
5364 do_default);
5365 if (failure == 1)
5367 error_at (EXPR_LOC_OR_LOC (initializer,
5368 DECL_SOURCE_LOCATION (decl)),
5369 "initializer fails to determine size of %qD", decl);
5371 else if (failure == 2)
5373 if (do_default)
5375 error_at (DECL_SOURCE_LOCATION (decl),
5376 "array size missing in %qD", decl);
5378 /* If a `static' var's size isn't known, make it extern as
5379 well as static, so it does not get allocated. If it's not
5380 `static', then don't mark it extern; finish_incomplete_decl
5381 will give it a default size and it will get allocated. */
5382 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
5383 DECL_EXTERNAL (decl) = 1;
5385 else if (failure == 3)
5387 error_at (DECL_SOURCE_LOCATION (decl),
5388 "zero-size array %qD", decl);
5392 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
5394 relayout_decl (decl);
5398 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5399 any appropriate error messages regarding the layout. */
5401 static void
5402 layout_var_decl (tree decl)
5404 tree type;
5406 type = TREE_TYPE (decl);
5407 if (type == error_mark_node)
5408 return;
5410 /* If we haven't already laid out this declaration, do so now.
5411 Note that we must not call complete type for an external object
5412 because it's type might involve templates that we are not
5413 supposed to instantiate yet. (And it's perfectly valid to say
5414 `extern X x' for some incomplete type `X'.) */
5415 if (!DECL_EXTERNAL (decl))
5416 complete_type (type);
5417 if (!DECL_SIZE (decl)
5418 && TREE_TYPE (decl) != error_mark_node
5419 && complete_or_array_type_p (type))
5420 layout_decl (decl, 0);
5422 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
5424 /* An automatic variable with an incomplete type: that is an error.
5425 Don't talk about array types here, since we took care of that
5426 message in grokdeclarator. */
5427 error_at (DECL_SOURCE_LOCATION (decl),
5428 "storage size of %qD isn%'t known", decl);
5429 TREE_TYPE (decl) = error_mark_node;
5431 #if 0
5432 /* Keep this code around in case we later want to control debug info
5433 based on whether a type is "used". (jason 1999-11-11) */
5435 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
5436 /* Let debugger know it should output info for this type. */
5437 note_debug_info_needed (ttype);
5439 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
5440 note_debug_info_needed (DECL_CONTEXT (decl));
5441 #endif
5443 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
5444 && DECL_SIZE (decl) != NULL_TREE
5445 && ! TREE_CONSTANT (DECL_SIZE (decl)))
5447 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
5448 constant_expression_warning (DECL_SIZE (decl));
5449 else
5451 error_at (DECL_SOURCE_LOCATION (decl),
5452 "storage size of %qD isn%'t constant", decl);
5453 TREE_TYPE (decl) = error_mark_node;
5458 /* If a local static variable is declared in an inline function, or if
5459 we have a weak definition, we must endeavor to create only one
5460 instance of the variable at link-time. */
5462 void
5463 maybe_commonize_var (tree decl)
5465 /* Static data in a function with comdat linkage also has comdat
5466 linkage. */
5467 if (TREE_STATIC (decl)
5468 /* Don't mess with __FUNCTION__. */
5469 && ! DECL_ARTIFICIAL (decl)
5470 && DECL_FUNCTION_SCOPE_P (decl)
5471 && vague_linkage_p (DECL_CONTEXT (decl)))
5473 if (flag_weak)
5475 /* With weak symbols, we simply make the variable COMDAT;
5476 that will cause copies in multiple translations units to
5477 be merged. */
5478 comdat_linkage (decl);
5480 else
5482 if (DECL_INITIAL (decl) == NULL_TREE
5483 || DECL_INITIAL (decl) == error_mark_node)
5485 /* Without weak symbols, we can use COMMON to merge
5486 uninitialized variables. */
5487 TREE_PUBLIC (decl) = 1;
5488 DECL_COMMON (decl) = 1;
5490 else
5492 /* While for initialized variables, we must use internal
5493 linkage -- which means that multiple copies will not
5494 be merged. */
5495 TREE_PUBLIC (decl) = 0;
5496 DECL_COMMON (decl) = 0;
5497 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
5498 "sorry: semantics of inline function static "
5499 "data %q#D are wrong (you%'ll wind up "
5500 "with multiple copies)", decl))
5501 inform (DECL_SOURCE_LOCATION (decl),
5502 "you can work around this by removing the initializer");
5508 /* Issue an error message if DECL is an uninitialized const variable. */
5510 static void
5511 check_for_uninitialized_const_var (tree decl)
5513 tree type = strip_array_types (TREE_TYPE (decl));
5515 /* ``Unless explicitly declared extern, a const object does not have
5516 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5517 7.1.6 */
5518 if (VAR_P (decl)
5519 && TREE_CODE (type) != REFERENCE_TYPE
5520 && (CP_TYPE_CONST_P (type) || var_in_constexpr_fn (decl))
5521 && !DECL_INITIAL (decl))
5523 tree field = default_init_uninitialized_part (type);
5524 if (!field)
5525 return;
5527 if (CP_TYPE_CONST_P (type))
5528 permerror (DECL_SOURCE_LOCATION (decl),
5529 "uninitialized const %qD", decl);
5530 else
5532 error_at (DECL_SOURCE_LOCATION (decl),
5533 "uninitialized variable %qD in %<constexpr%> function",
5534 decl);
5535 cp_function_chain->invalid_constexpr = true;
5538 if (CLASS_TYPE_P (type))
5540 tree defaulted_ctor;
5542 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5543 "%q#T has no user-provided default constructor", type);
5544 defaulted_ctor = in_class_defaulted_default_constructor (type);
5545 if (defaulted_ctor)
5546 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5547 "constructor is not user-provided because it is "
5548 "explicitly defaulted in the class body");
5549 inform (DECL_SOURCE_LOCATION (field),
5550 "and the implicitly-defined constructor does not "
5551 "initialize %q#D", field);
5556 /* Structure holding the current initializer being processed by reshape_init.
5557 CUR is a pointer to the current element being processed, END is a pointer
5558 after the last element present in the initializer. */
5559 struct reshape_iter
5561 constructor_elt *cur;
5562 constructor_elt *end;
5565 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5567 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5568 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5569 initialized. If there are no more such fields, the return value
5570 will be NULL. */
5572 tree
5573 next_initializable_field (tree field)
5575 while (field
5576 && (TREE_CODE (field) != FIELD_DECL
5577 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
5578 || DECL_ARTIFICIAL (field)))
5579 field = DECL_CHAIN (field);
5581 return field;
5584 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5585 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5586 INTEGER_CST representing the size of the array minus one (the maximum index),
5587 or NULL_TREE if the array was declared without specifying the size. D is
5588 the iterator within the constructor. */
5590 static tree
5591 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5592 tsubst_flags_t complain)
5594 tree new_init;
5595 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5596 unsigned HOST_WIDE_INT max_index_cst = 0;
5597 unsigned HOST_WIDE_INT index;
5599 /* The initializer for an array is always a CONSTRUCTOR. */
5600 new_init = build_constructor (init_list_type_node, NULL);
5602 if (sized_array_p)
5604 /* Minus 1 is used for zero sized arrays. */
5605 if (integer_all_onesp (max_index))
5606 return new_init;
5608 if (tree_fits_uhwi_p (max_index))
5609 max_index_cst = tree_to_uhwi (max_index);
5610 /* sizetype is sign extended, not zero extended. */
5611 else
5612 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5615 /* Loop until there are no more initializers. */
5616 for (index = 0;
5617 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5618 ++index)
5620 tree elt_init;
5621 constructor_elt *old_cur = d->cur;
5623 check_array_designated_initializer (d->cur, index);
5624 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5625 complain);
5626 if (elt_init == error_mark_node)
5627 return error_mark_node;
5628 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5629 size_int (index), elt_init);
5630 if (!TREE_CONSTANT (elt_init))
5631 TREE_CONSTANT (new_init) = false;
5633 /* This can happen with an invalid initializer (c++/54501). */
5634 if (d->cur == old_cur && !sized_array_p)
5635 break;
5638 return new_init;
5641 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5642 Parameters are the same of reshape_init_r. */
5644 static tree
5645 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5647 tree max_index = NULL_TREE;
5649 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5651 if (TYPE_DOMAIN (type))
5652 max_index = array_type_nelts (type);
5654 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5657 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5658 Parameters are the same of reshape_init_r. */
5660 static tree
5661 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5663 tree max_index = NULL_TREE;
5665 gcc_assert (VECTOR_TYPE_P (type));
5667 if (COMPOUND_LITERAL_P (d->cur->value))
5669 tree value = d->cur->value;
5670 if (!same_type_p (TREE_TYPE (value), type))
5672 if (complain & tf_error)
5673 error ("invalid type %qT as initializer for a vector of type %qT",
5674 TREE_TYPE (d->cur->value), type);
5675 value = error_mark_node;
5677 ++d->cur;
5678 return value;
5681 /* For a vector, we initialize it as an array of the appropriate size. */
5682 if (VECTOR_TYPE_P (type))
5683 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5685 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5688 /* Subroutine of reshape_init_r, processes the initializers for classes
5689 or union. Parameters are the same of reshape_init_r. */
5691 static tree
5692 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
5693 tsubst_flags_t complain)
5695 tree field;
5696 tree new_init;
5698 gcc_assert (CLASS_TYPE_P (type));
5700 /* The initializer for a class is always a CONSTRUCTOR. */
5701 new_init = build_constructor (init_list_type_node, NULL);
5702 field = next_initializable_field (TYPE_FIELDS (type));
5704 if (!field)
5706 /* [dcl.init.aggr]
5708 An initializer for an aggregate member that is an
5709 empty class shall have the form of an empty
5710 initializer-list {}. */
5711 if (!first_initializer_p)
5713 if (complain & tf_error)
5714 error ("initializer for %qT must be brace-enclosed", type);
5715 return error_mark_node;
5717 return new_init;
5720 /* Loop through the initializable fields, gathering initializers. */
5721 while (d->cur != d->end)
5723 tree field_init;
5724 constructor_elt *old_cur = d->cur;
5726 /* Handle designated initializers, as an extension. */
5727 if (d->cur->index)
5729 if (d->cur->index == error_mark_node)
5730 return error_mark_node;
5732 if (TREE_CODE (d->cur->index) == FIELD_DECL)
5733 /* We already reshaped this. */
5734 gcc_assert (d->cur->index == field);
5735 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
5736 field = lookup_field_1 (type, d->cur->index, /*want_type=*/false);
5737 else
5739 if (complain & tf_error)
5740 error ("%<[%E] =%> used in a GNU-style designated initializer"
5741 " for class %qT", d->cur->index, type);
5742 return error_mark_node;
5745 if (!field || TREE_CODE (field) != FIELD_DECL)
5747 if (complain & tf_error)
5748 error ("%qT has no non-static data member named %qD", type,
5749 d->cur->index);
5750 return error_mark_node;
5754 /* If we processed all the member of the class, we are done. */
5755 if (!field)
5756 break;
5758 field_init = reshape_init_r (TREE_TYPE (field), d,
5759 /*first_initializer_p=*/false, complain);
5760 if (field_init == error_mark_node)
5761 return error_mark_node;
5763 if (d->cur == old_cur && d->cur->index)
5765 /* This can happen with an invalid initializer for a flexible
5766 array member (c++/54441). */
5767 if (complain & tf_error)
5768 error ("invalid initializer for %q#D", field);
5769 return error_mark_node;
5772 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
5774 /* [dcl.init.aggr]
5776 When a union is initialized with a brace-enclosed
5777 initializer, the braces shall only contain an
5778 initializer for the first member of the union. */
5779 if (TREE_CODE (type) == UNION_TYPE)
5780 break;
5782 field = next_initializable_field (DECL_CHAIN (field));
5785 return new_init;
5788 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5789 designators are not valid; either complain or return true to indicate
5790 that reshape_init_r should return error_mark_node. */
5792 static bool
5793 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
5795 if (d->cur->index)
5797 if (complain & tf_error)
5798 error ("C99 designator %qE outside aggregate initializer",
5799 d->cur->index);
5800 else
5801 return true;
5803 return false;
5806 /* Subroutine of reshape_init, which processes a single initializer (part of
5807 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5808 iterator within the CONSTRUCTOR which points to the initializer to process.
5809 FIRST_INITIALIZER_P is true if this is the first initializer of the
5810 outermost CONSTRUCTOR node. */
5812 static tree
5813 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
5814 tsubst_flags_t complain)
5816 tree init = d->cur->value;
5818 if (error_operand_p (init))
5819 return error_mark_node;
5821 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
5822 && has_designator_problem (d, complain))
5823 return error_mark_node;
5825 if (TREE_CODE (type) == COMPLEX_TYPE)
5827 /* A complex type can be initialized from one or two initializers,
5828 but braces are not elided. */
5829 d->cur++;
5830 if (BRACE_ENCLOSED_INITIALIZER_P (init))
5832 if (CONSTRUCTOR_NELTS (init) > 2)
5834 if (complain & tf_error)
5835 error ("too many initializers for %qT", type);
5836 else
5837 return error_mark_node;
5840 else if (first_initializer_p && d->cur != d->end)
5842 vec<constructor_elt, va_gc> *v = 0;
5843 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
5844 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
5845 if (has_designator_problem (d, complain))
5846 return error_mark_node;
5847 d->cur++;
5848 init = build_constructor (init_list_type_node, v);
5850 return init;
5853 /* A non-aggregate type is always initialized with a single
5854 initializer. */
5855 if (!CP_AGGREGATE_TYPE_P (type))
5857 /* It is invalid to initialize a non-aggregate type with a
5858 brace-enclosed initializer before C++0x.
5859 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
5860 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
5861 a CONSTRUCTOR (with a record type). */
5862 if (TREE_CODE (init) == CONSTRUCTOR
5863 /* Don't complain about a capture-init. */
5864 && !CONSTRUCTOR_IS_DIRECT_INIT (init)
5865 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
5867 if (SCALAR_TYPE_P (type))
5869 if (cxx_dialect < cxx11
5870 /* Isn't value-initialization. */
5871 || CONSTRUCTOR_NELTS (init) > 0)
5873 if (complain & tf_error)
5874 error ("braces around scalar initializer for type %qT",
5875 type);
5876 init = error_mark_node;
5879 else
5880 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5883 d->cur++;
5884 return init;
5887 /* "If T is a class type and the initializer list has a single element of
5888 type cv U, where U is T or a class derived from T, the object is
5889 initialized from that element." Even if T is an aggregate. */
5890 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
5891 && first_initializer_p
5892 && d->end - d->cur == 1
5893 && reference_related_p (type, TREE_TYPE (init)))
5895 d->cur++;
5896 return init;
5899 /* [dcl.init.aggr]
5901 All implicit type conversions (clause _conv_) are considered when
5902 initializing the aggregate member with an initializer from an
5903 initializer-list. If the initializer can initialize a member,
5904 the member is initialized. Otherwise, if the member is itself a
5905 non-empty subaggregate, brace elision is assumed and the
5906 initializer is considered for the initialization of the first
5907 member of the subaggregate. */
5908 if (TREE_CODE (init) != CONSTRUCTOR
5909 /* But don't try this for the first initializer, since that would be
5910 looking through the outermost braces; A a2 = { a1 }; is not a
5911 valid aggregate initialization. */
5912 && !first_initializer_p
5913 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
5914 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
5915 complain)))
5917 d->cur++;
5918 return init;
5921 /* [dcl.init.string]
5923 A char array (whether plain char, signed char, or unsigned char)
5924 can be initialized by a string-literal (optionally enclosed in
5925 braces); a wchar_t array can be initialized by a wide
5926 string-literal (optionally enclosed in braces). */
5927 if (TREE_CODE (type) == ARRAY_TYPE
5928 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
5930 tree str_init = init;
5932 /* Strip one level of braces if and only if they enclose a single
5933 element (as allowed by [dcl.init.string]). */
5934 if (!first_initializer_p
5935 && TREE_CODE (str_init) == CONSTRUCTOR
5936 && CONSTRUCTOR_NELTS (str_init) == 1)
5938 str_init = (*CONSTRUCTOR_ELTS (str_init))[0].value;
5941 /* If it's a string literal, then it's the initializer for the array
5942 as a whole. Otherwise, continue with normal initialization for
5943 array types (one value per array element). */
5944 if (TREE_CODE (str_init) == STRING_CST)
5946 if (has_designator_problem (d, complain))
5947 return error_mark_node;
5948 d->cur++;
5949 return str_init;
5953 /* The following cases are about aggregates. If we are not within a full
5954 initializer already, and there is not a CONSTRUCTOR, it means that there
5955 is a missing set of braces (that is, we are processing the case for
5956 which reshape_init exists). */
5957 if (!first_initializer_p)
5959 if (TREE_CODE (init) == CONSTRUCTOR)
5961 if (TREE_TYPE (init) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init)))
5962 /* There is no need to reshape pointer-to-member function
5963 initializers, as they are always constructed correctly
5964 by the front end. */
5966 else if (COMPOUND_LITERAL_P (init))
5967 /* For a nested compound literal, there is no need to reshape since
5968 brace elision is not allowed. Even if we decided to allow it,
5969 we should add a call to reshape_init in finish_compound_literal,
5970 before calling digest_init, so changing this code would still
5971 not be necessary. */
5972 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
5973 else
5975 ++d->cur;
5976 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5977 return reshape_init (type, init, complain);
5981 if (complain & tf_warning)
5982 warning (OPT_Wmissing_braces,
5983 "missing braces around initializer for %qT",
5984 type);
5987 /* Dispatch to specialized routines. */
5988 if (CLASS_TYPE_P (type))
5989 return reshape_init_class (type, d, first_initializer_p, complain);
5990 else if (TREE_CODE (type) == ARRAY_TYPE)
5991 return reshape_init_array (type, d, complain);
5992 else if (VECTOR_TYPE_P (type))
5993 return reshape_init_vector (type, d, complain);
5994 else
5995 gcc_unreachable();
5998 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
5999 brace-enclosed aggregate initializer.
6001 INIT is the CONSTRUCTOR containing the list of initializers describing
6002 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
6003 It may not presently match the shape of the TYPE; for example:
6005 struct S { int a; int b; };
6006 struct S a[] = { 1, 2, 3, 4 };
6008 Here INIT will hold a vector of four elements, rather than a
6009 vector of two elements, each itself a vector of two elements. This
6010 routine transforms INIT from the former form into the latter. The
6011 revised CONSTRUCTOR node is returned. */
6013 tree
6014 reshape_init (tree type, tree init, tsubst_flags_t complain)
6016 vec<constructor_elt, va_gc> *v;
6017 reshape_iter d;
6018 tree new_init;
6020 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
6022 v = CONSTRUCTOR_ELTS (init);
6024 /* An empty constructor does not need reshaping, and it is always a valid
6025 initializer. */
6026 if (vec_safe_is_empty (v))
6027 return init;
6029 /* Recurse on this CONSTRUCTOR. */
6030 d.cur = &(*v)[0];
6031 d.end = d.cur + v->length ();
6033 new_init = reshape_init_r (type, &d, true, complain);
6034 if (new_init == error_mark_node)
6035 return error_mark_node;
6037 /* Make sure all the element of the constructor were used. Otherwise,
6038 issue an error about exceeding initializers. */
6039 if (d.cur != d.end)
6041 if (complain & tf_error)
6042 error ("too many initializers for %qT", type);
6043 else
6044 return error_mark_node;
6047 return new_init;
6050 /* Verify array initializer. Returns true if errors have been reported. */
6052 bool
6053 check_array_initializer (tree decl, tree type, tree init)
6055 tree element_type = TREE_TYPE (type);
6057 /* The array type itself need not be complete, because the
6058 initializer may tell us how many elements are in the array.
6059 But, the elements of the array must be complete. */
6060 if (!COMPLETE_TYPE_P (complete_type (element_type)))
6062 if (decl)
6063 error_at (DECL_SOURCE_LOCATION (decl),
6064 "elements of array %q#D have incomplete type", decl);
6065 else
6066 error ("elements of array %q#T have incomplete type", type);
6067 return true;
6069 /* A compound literal can't have variable size. */
6070 if (init && !decl
6071 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
6072 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
6074 error ("variable-sized compound literal");
6075 return true;
6077 return false;
6080 /* Subroutine of check_initializer; args are passed down from that function.
6081 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
6083 static tree
6084 build_aggr_init_full_exprs (tree decl, tree init, int flags)
6087 gcc_assert (stmts_are_full_exprs_p ());
6088 return build_aggr_init (decl, init, flags, tf_warning_or_error);
6091 /* Verify INIT (the initializer for DECL), and record the
6092 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
6093 grok_reference_init.
6095 If the return value is non-NULL, it is an expression that must be
6096 evaluated dynamically to initialize DECL. */
6098 static tree
6099 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
6101 tree type = TREE_TYPE (decl);
6102 tree init_code = NULL;
6103 tree core_type;
6105 /* Things that are going to be initialized need to have complete
6106 type. */
6107 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
6109 if (DECL_HAS_VALUE_EXPR_P (decl))
6111 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
6112 it doesn't have storage to be initialized. */
6113 gcc_assert (init == NULL_TREE);
6114 return NULL_TREE;
6117 if (type == error_mark_node)
6118 /* We will have already complained. */
6119 return NULL_TREE;
6121 if (TREE_CODE (type) == ARRAY_TYPE)
6123 if (check_array_initializer (decl, type, init))
6124 return NULL_TREE;
6126 else if (!COMPLETE_TYPE_P (type))
6128 error_at (DECL_SOURCE_LOCATION (decl),
6129 "%q#D has incomplete type", decl);
6130 TREE_TYPE (decl) = error_mark_node;
6131 return NULL_TREE;
6133 else
6134 /* There is no way to make a variable-sized class type in GNU C++. */
6135 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
6137 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
6139 int init_len = CONSTRUCTOR_NELTS (init);
6140 if (SCALAR_TYPE_P (type))
6142 if (init_len == 0)
6144 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6145 init = build_zero_init (type, NULL_TREE, false);
6147 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
6149 error_at (EXPR_LOC_OR_LOC (init, DECL_SOURCE_LOCATION (decl)),
6150 "scalar object %qD requires one element in "
6151 "initializer", decl);
6152 TREE_TYPE (decl) = error_mark_node;
6153 return NULL_TREE;
6158 if (TREE_CODE (decl) == CONST_DECL)
6160 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
6162 DECL_INITIAL (decl) = init;
6164 gcc_assert (init != NULL_TREE);
6165 init = NULL_TREE;
6167 else if (!init && DECL_REALLY_EXTERN (decl))
6169 else if (init || type_build_ctor_call (type)
6170 || TREE_CODE (type) == REFERENCE_TYPE)
6172 if (TREE_CODE (type) == REFERENCE_TYPE)
6174 init = grok_reference_init (decl, type, init, flags);
6175 flags |= LOOKUP_ALREADY_DIGESTED;
6177 else if (!init)
6178 check_for_uninitialized_const_var (decl);
6179 /* Do not reshape constructors of vectors (they don't need to be
6180 reshaped. */
6181 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
6183 if (is_std_init_list (type))
6185 init = perform_implicit_conversion (type, init,
6186 tf_warning_or_error);
6187 flags |= LOOKUP_ALREADY_DIGESTED;
6189 else if (TYPE_NON_AGGREGATE_CLASS (type))
6191 /* Don't reshape if the class has constructors. */
6192 if (cxx_dialect == cxx98)
6193 error_at (EXPR_LOC_OR_LOC (init, DECL_SOURCE_LOCATION (decl)),
6194 "in C++98 %qD must be initialized by "
6195 "constructor, not by %<{...}%>",
6196 decl);
6198 else if (VECTOR_TYPE_P (type) && TYPE_VECTOR_OPAQUE (type))
6200 error ("opaque vector types cannot be initialized");
6201 init = error_mark_node;
6203 else
6205 init = reshape_init (type, init, tf_warning_or_error);
6206 flags |= LOOKUP_NO_NARROWING;
6209 else if (TREE_CODE (init) == TREE_LIST
6210 && TREE_TYPE (init) != unknown_type_node
6211 && !MAYBE_CLASS_TYPE_P (type))
6213 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6215 /* We get here with code like `int a (2);' */
6216 init = build_x_compound_expr_from_list (init, ELK_INIT,
6217 tf_warning_or_error);
6220 /* If DECL has an array type without a specific bound, deduce the
6221 array size from the initializer. */
6222 maybe_deduce_size_from_array_init (decl, init);
6223 type = TREE_TYPE (decl);
6224 if (type == error_mark_node)
6225 return NULL_TREE;
6227 if ((type_build_ctor_call (type) || CLASS_TYPE_P (type))
6228 && !(flags & LOOKUP_ALREADY_DIGESTED)
6229 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
6230 && CP_AGGREGATE_TYPE_P (type)
6231 && (CLASS_TYPE_P (type)
6232 || !TYPE_NEEDS_CONSTRUCTING (type)
6233 || type_has_extended_temps (type))))
6235 init_code = build_aggr_init_full_exprs (decl, init, flags);
6237 /* A constructor call is a non-trivial initializer even if
6238 it isn't explicitly written. */
6239 if (TREE_SIDE_EFFECTS (init_code))
6240 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
6242 /* If this is a constexpr initializer, expand_default_init will
6243 have returned an INIT_EXPR rather than a CALL_EXPR. In that
6244 case, pull the initializer back out and pass it down into
6245 store_init_value. */
6246 while (TREE_CODE (init_code) == EXPR_STMT
6247 || TREE_CODE (init_code) == CONVERT_EXPR)
6248 init_code = TREE_OPERAND (init_code, 0);
6249 if (TREE_CODE (init_code) == INIT_EXPR)
6251 init = TREE_OPERAND (init_code, 1);
6252 init_code = NULL_TREE;
6253 /* Don't call digest_init; it's unnecessary and will complain
6254 about aggregate initialization of non-aggregate classes. */
6255 flags |= LOOKUP_ALREADY_DIGESTED;
6257 else if (DECL_DECLARED_CONSTEXPR_P (decl))
6259 /* Declared constexpr, but no suitable initializer; massage
6260 init appropriately so we can pass it into store_init_value
6261 for the error. */
6262 if (CLASS_TYPE_P (type)
6263 && (!init || TREE_CODE (init) == TREE_LIST))
6265 init = build_functional_cast (type, init, tf_none);
6266 if (TREE_CODE (init) == TARGET_EXPR)
6267 TARGET_EXPR_DIRECT_INIT_P (init) = true;
6269 init_code = NULL_TREE;
6271 else
6272 init = NULL_TREE;
6275 if (init && TREE_CODE (init) != TREE_VEC)
6277 /* In aggregate initialization of a variable, each element
6278 initialization is a full-expression because there is no
6279 enclosing expression. */
6280 gcc_assert (stmts_are_full_exprs_p ());
6282 init_code = store_init_value (decl, init, cleanups, flags);
6284 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
6285 && DECL_INITIAL (decl)
6286 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
6287 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
6288 warning_at (EXPR_LOC_OR_LOC (DECL_INITIAL (decl),
6289 DECL_SOURCE_LOCATION (decl)),
6290 0, "array %qD initialized by parenthesized "
6291 "string literal %qE",
6292 decl, DECL_INITIAL (decl));
6293 init = NULL;
6296 else
6298 if (CLASS_TYPE_P (core_type = strip_array_types (type))
6299 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
6300 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
6301 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
6302 /*complain=*/true);
6304 check_for_uninitialized_const_var (decl);
6307 if (init && init != error_mark_node)
6308 init_code = build2 (INIT_EXPR, type, decl, init);
6310 if (init_code)
6312 /* We might have set these in cp_finish_decl. */
6313 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
6314 TREE_CONSTANT (decl) = false;
6317 if (init_code && DECL_IN_AGGR_P (decl))
6319 static int explained = 0;
6321 if (cxx_dialect < cxx11)
6322 error ("initializer invalid for static member with constructor");
6323 else
6324 error ("non-constant in-class initialization invalid for static "
6325 "member %qD", decl);
6326 if (!explained)
6328 inform (input_location,
6329 "(an out of class initialization is required)");
6330 explained = 1;
6332 return NULL_TREE;
6335 return init_code;
6338 /* If DECL is not a local variable, give it RTL. */
6340 static void
6341 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
6343 int toplev = toplevel_bindings_p ();
6344 int defer_p;
6346 /* Set the DECL_ASSEMBLER_NAME for the object. */
6347 if (asmspec)
6349 /* The `register' keyword, when used together with an
6350 asm-specification, indicates that the variable should be
6351 placed in a particular register. */
6352 if (VAR_P (decl) && DECL_REGISTER (decl))
6354 set_user_assembler_name (decl, asmspec);
6355 DECL_HARD_REGISTER (decl) = 1;
6357 else
6359 if (TREE_CODE (decl) == FUNCTION_DECL
6360 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
6361 set_builtin_user_assembler_name (decl, asmspec);
6362 set_user_assembler_name (decl, asmspec);
6366 /* Handle non-variables up front. */
6367 if (!VAR_P (decl))
6369 rest_of_decl_compilation (decl, toplev, at_eof);
6370 return;
6373 /* If we see a class member here, it should be a static data
6374 member. */
6375 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
6377 gcc_assert (TREE_STATIC (decl));
6378 /* An in-class declaration of a static data member should be
6379 external; it is only a declaration, and not a definition. */
6380 if (init == NULL_TREE)
6381 gcc_assert (DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl));
6384 /* We don't create any RTL for local variables. */
6385 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6386 return;
6388 /* We defer emission of local statics until the corresponding
6389 DECL_EXPR is expanded. But with constexpr its function might never
6390 be expanded, so go ahead and tell cgraph about the variable now. */
6391 defer_p = ((DECL_FUNCTION_SCOPE_P (decl)
6392 && !var_in_maybe_constexpr_fn (decl))
6393 || DECL_VIRTUAL_P (decl));
6395 /* Defer template instantiations. */
6396 if (DECL_LANG_SPECIFIC (decl)
6397 && DECL_IMPLICIT_INSTANTIATION (decl))
6398 defer_p = 1;
6400 /* If we're not deferring, go ahead and assemble the variable. */
6401 if (!defer_p)
6402 rest_of_decl_compilation (decl, toplev, at_eof);
6405 /* walk_tree helper for wrap_temporary_cleanups, below. */
6407 static tree
6408 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
6410 /* Stop at types or full-expression boundaries. */
6411 if (TYPE_P (*stmt_p)
6412 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
6414 *walk_subtrees = 0;
6415 return NULL_TREE;
6418 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
6420 tree guard = (tree)data;
6421 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
6423 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
6424 /* Tell honor_protect_cleanup_actions to handle this as a separate
6425 cleanup. */
6426 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
6428 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
6431 return NULL_TREE;
6434 /* We're initializing a local variable which has a cleanup GUARD. If there
6435 are any temporaries used in the initializer INIT of this variable, we
6436 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6437 variable will be cleaned up properly if one of them throws.
6439 Unfortunately, there's no way to express this properly in terms of
6440 nesting, as the regions for the temporaries overlap the region for the
6441 variable itself; if there are two temporaries, the variable needs to be
6442 the first thing destroyed if either of them throws. However, we only
6443 want to run the variable's cleanup if it actually got constructed. So
6444 we need to guard the temporary cleanups with the variable's cleanup if
6445 they are run on the normal path, but not if they are run on the
6446 exceptional path. We implement this by telling
6447 honor_protect_cleanup_actions to strip the variable cleanup from the
6448 exceptional path. */
6450 static void
6451 wrap_temporary_cleanups (tree init, tree guard)
6453 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
6456 /* Generate code to initialize DECL (a local variable). */
6458 static void
6459 initialize_local_var (tree decl, tree init)
6461 tree type = TREE_TYPE (decl);
6462 tree cleanup;
6463 int already_used;
6465 gcc_assert (VAR_P (decl)
6466 || TREE_CODE (decl) == RESULT_DECL);
6467 gcc_assert (!TREE_STATIC (decl));
6469 if (DECL_SIZE (decl) == NULL_TREE)
6471 /* If we used it already as memory, it must stay in memory. */
6472 DECL_INITIAL (decl) = NULL_TREE;
6473 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6474 return;
6477 if (type == error_mark_node)
6478 return;
6480 /* Compute and store the initial value. */
6481 already_used = TREE_USED (decl) || TREE_USED (type);
6482 if (TREE_USED (type))
6483 DECL_READ_P (decl) = 1;
6485 /* Generate a cleanup, if necessary. */
6486 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6488 /* Perform the initialization. */
6489 if (init)
6491 tree rinit = (TREE_CODE (init) == INIT_EXPR
6492 ? TREE_OPERAND (init, 1) : NULL_TREE);
6493 if (rinit && !TREE_SIDE_EFFECTS (rinit))
6495 /* Stick simple initializers in DECL_INITIAL so that
6496 -Wno-init-self works (c++/34772). */
6497 gcc_assert (TREE_OPERAND (init, 0) == decl);
6498 DECL_INITIAL (decl) = rinit;
6500 if (warn_init_self && TREE_CODE (type) == REFERENCE_TYPE)
6502 STRIP_NOPS (rinit);
6503 if (rinit == decl)
6504 warning_at (DECL_SOURCE_LOCATION (decl),
6505 OPT_Winit_self,
6506 "reference %qD is initialized with itself", decl);
6509 else
6511 int saved_stmts_are_full_exprs_p;
6513 /* If we're only initializing a single object, guard the
6514 destructors of any temporaries used in its initializer with
6515 its destructor. This isn't right for arrays because each
6516 element initialization is a full-expression. */
6517 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6518 wrap_temporary_cleanups (init, cleanup);
6520 gcc_assert (building_stmt_list_p ());
6521 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6522 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6523 finish_expr_stmt (init);
6524 current_stmt_tree ()->stmts_are_full_exprs_p =
6525 saved_stmts_are_full_exprs_p;
6529 /* Set this to 0 so we can tell whether an aggregate which was
6530 initialized was ever used. Don't do this if it has a
6531 destructor, so we don't complain about the 'resource
6532 allocation is initialization' idiom. Now set
6533 attribute((unused)) on types so decls of that type will be
6534 marked used. (see TREE_USED, above.) */
6535 if (TYPE_NEEDS_CONSTRUCTING (type)
6536 && ! already_used
6537 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6538 && DECL_NAME (decl))
6539 TREE_USED (decl) = 0;
6540 else if (already_used)
6541 TREE_USED (decl) = 1;
6543 if (cleanup)
6544 finish_decl_cleanup (decl, cleanup);
6547 /* DECL is a VAR_DECL for a compiler-generated variable with static
6548 storage duration (like a virtual table) whose initializer is a
6549 compile-time constant. Initialize the variable and provide it to the
6550 back end. */
6552 void
6553 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6555 tree init;
6556 gcc_assert (DECL_ARTIFICIAL (decl));
6557 init = build_constructor (TREE_TYPE (decl), v);
6558 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6559 DECL_INITIAL (decl) = init;
6560 DECL_INITIALIZED_P (decl) = 1;
6561 determine_visibility (decl);
6562 layout_var_decl (decl);
6563 maybe_commonize_var (decl);
6564 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6567 /* INIT is the initializer for a variable, as represented by the
6568 parser. Returns true iff INIT is type-dependent. */
6570 static bool
6571 type_dependent_init_p (tree init)
6573 if (TREE_CODE (init) == TREE_LIST)
6574 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6575 return any_type_dependent_elements_p (init);
6576 else if (TREE_CODE (init) == CONSTRUCTOR)
6577 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6579 vec<constructor_elt, va_gc> *elts;
6580 size_t nelts;
6581 size_t i;
6583 elts = CONSTRUCTOR_ELTS (init);
6584 nelts = vec_safe_length (elts);
6585 for (i = 0; i < nelts; ++i)
6586 if (type_dependent_init_p ((*elts)[i].value))
6587 return true;
6589 else
6590 /* It must be a simple expression, e.g., int i = 3; */
6591 return type_dependent_expression_p (init);
6593 return false;
6596 /* INIT is the initializer for a variable, as represented by the
6597 parser. Returns true iff INIT is value-dependent. */
6599 static bool
6600 value_dependent_init_p (tree init)
6602 if (TREE_CODE (init) == TREE_LIST)
6603 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6604 return any_value_dependent_elements_p (init);
6605 else if (TREE_CODE (init) == CONSTRUCTOR)
6606 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6608 vec<constructor_elt, va_gc> *elts;
6609 size_t nelts;
6610 size_t i;
6612 elts = CONSTRUCTOR_ELTS (init);
6613 nelts = vec_safe_length (elts);
6614 for (i = 0; i < nelts; ++i)
6615 if (value_dependent_init_p ((*elts)[i].value))
6616 return true;
6618 else
6619 /* It must be a simple expression, e.g., int i = 3; */
6620 return value_dependent_expression_p (init);
6622 return false;
6625 // Returns true if a DECL is VAR_DECL with the concept specifier.
6626 static inline bool
6627 is_concept_var (tree decl)
6629 return (VAR_P (decl)
6630 // Not all variables have DECL_LANG_SPECIFIC.
6631 && DECL_LANG_SPECIFIC (decl)
6632 && DECL_DECLARED_CONCEPT_P (decl));
6635 /* A helper function to be called via walk_tree. If any label exists
6636 under *TP, it is (going to be) forced. Set has_forced_label_in_static. */
6638 static tree
6639 notice_forced_label_r (tree *tp, int *walk_subtrees, void *)
6641 if (TYPE_P (*tp))
6642 *walk_subtrees = 0;
6643 if (TREE_CODE (*tp) == LABEL_DECL)
6644 cfun->has_forced_label_in_static = 1;
6645 return NULL_TREE;
6648 /* Finish processing of a declaration;
6649 install its line number and initial value.
6650 If the length of an array type is not known before,
6651 it must be determined now, from the initial value, or it is an error.
6653 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6654 true, then INIT is an integral constant expression.
6656 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6657 if the (init) syntax was used. */
6659 void
6660 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
6661 tree asmspec_tree, int flags)
6663 tree type;
6664 vec<tree, va_gc> *cleanups = NULL;
6665 const char *asmspec = NULL;
6666 int was_readonly = 0;
6667 bool var_definition_p = false;
6668 tree auto_node;
6670 if (decl == error_mark_node)
6671 return;
6672 else if (! decl)
6674 if (init)
6675 error ("assignment (not initialization) in declaration");
6676 return;
6679 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6680 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6681 gcc_assert (TREE_CODE (decl) != PARM_DECL);
6683 type = TREE_TYPE (decl);
6684 if (type == error_mark_node)
6685 return;
6687 /* If a name was specified, get the string. */
6688 if (at_namespace_scope_p ())
6689 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
6690 if (asmspec_tree && asmspec_tree != error_mark_node)
6691 asmspec = TREE_STRING_POINTER (asmspec_tree);
6693 if (current_class_type
6694 && CP_DECL_CONTEXT (decl) == current_class_type
6695 && TYPE_BEING_DEFINED (current_class_type)
6696 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
6697 && (DECL_INITIAL (decl) || init))
6698 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
6700 if (TREE_CODE (decl) != FUNCTION_DECL
6701 && (auto_node = type_uses_auto (type)))
6703 tree d_init;
6704 if (init == NULL_TREE)
6706 if (DECL_LANG_SPECIFIC (decl)
6707 && DECL_TEMPLATE_INSTANTIATION (decl)
6708 && !DECL_TEMPLATE_INSTANTIATED (decl))
6710 /* init is null because we're deferring instantiating the
6711 initializer until we need it. Well, we need it now. */
6712 instantiate_decl (decl, /*defer_ok*/true, /*expl*/false);
6713 return;
6716 error ("declaration of %q#D has no initializer", decl);
6717 TREE_TYPE (decl) = error_mark_node;
6718 return;
6720 d_init = init;
6721 if (TREE_CODE (d_init) == TREE_LIST)
6722 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
6723 tf_warning_or_error);
6724 d_init = resolve_nondeduced_context (d_init, tf_warning_or_error);
6725 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init,
6726 auto_node,
6727 tf_warning_or_error,
6728 adc_variable_type);
6729 if (type == error_mark_node)
6730 return;
6731 if (TREE_CODE (type) == FUNCTION_TYPE)
6733 error ("initializer for %<decltype(auto) %D%> has function type "
6734 "(did you forget the %<()%> ?)", decl);
6735 TREE_TYPE (decl) = error_mark_node;
6736 return;
6738 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
6741 if (!ensure_literal_type_for_constexpr_object (decl))
6742 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
6744 if (VAR_P (decl)
6745 && DECL_CLASS_SCOPE_P (decl)
6746 && DECL_INITIALIZED_IN_CLASS_P (decl))
6747 check_static_variable_definition (decl, type);
6749 if (init && TREE_CODE (decl) == FUNCTION_DECL)
6751 tree clone;
6752 if (init == ridpointers[(int)RID_DELETE])
6754 /* FIXME check this is 1st decl. */
6755 DECL_DELETED_FN (decl) = 1;
6756 DECL_DECLARED_INLINE_P (decl) = 1;
6757 DECL_INITIAL (decl) = error_mark_node;
6758 FOR_EACH_CLONE (clone, decl)
6760 DECL_DELETED_FN (clone) = 1;
6761 DECL_DECLARED_INLINE_P (clone) = 1;
6762 DECL_INITIAL (clone) = error_mark_node;
6764 init = NULL_TREE;
6766 else if (init == ridpointers[(int)RID_DEFAULT])
6768 if (defaultable_fn_check (decl))
6769 DECL_DEFAULTED_FN (decl) = 1;
6770 else
6771 DECL_INITIAL (decl) = NULL_TREE;
6775 if (init && VAR_P (decl))
6777 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
6778 /* If DECL is a reference, then we want to know whether init is a
6779 reference constant; init_const_expr_p as passed tells us whether
6780 it's an rvalue constant. */
6781 if (TREE_CODE (type) == REFERENCE_TYPE)
6782 init_const_expr_p = potential_constant_expression (init);
6783 if (init_const_expr_p)
6785 /* Set these flags now for templates. We'll update the flags in
6786 store_init_value for instantiations. */
6787 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
6788 if (decl_maybe_constant_var_p (decl))
6789 TREE_CONSTANT (decl) = 1;
6793 if (processing_template_decl)
6795 bool type_dependent_p;
6797 /* Add this declaration to the statement-tree. */
6798 if (at_function_scope_p ())
6799 add_decl_expr (decl);
6801 type_dependent_p = dependent_type_p (type);
6803 if (check_for_bare_parameter_packs (init))
6805 init = NULL_TREE;
6806 DECL_INITIAL (decl) = NULL_TREE;
6809 /* Generally, initializers in templates are expanded when the
6810 template is instantiated. But, if DECL is a variable constant
6811 then it can be used in future constant expressions, so its value
6812 must be available. */
6814 if (!VAR_P (decl) || type_dependent_p)
6815 /* We can't do anything if the decl has dependent type. */;
6816 else if (init
6817 && init_const_expr_p
6818 && TREE_CODE (type) != REFERENCE_TYPE
6819 && decl_maybe_constant_var_p (decl)
6820 && !type_dependent_init_p (init)
6821 && !value_dependent_init_p (init))
6823 /* This variable seems to be a non-dependent constant, so process
6824 its initializer. If check_initializer returns non-null the
6825 initialization wasn't constant after all. */
6826 tree init_code;
6827 cleanups = make_tree_vector ();
6828 init_code = check_initializer (decl, init, flags, &cleanups);
6829 if (init_code == NULL_TREE)
6830 init = NULL_TREE;
6831 release_tree_vector (cleanups);
6833 else if (!init && is_concept_var (decl))
6834 error ("variable concept has no initializer");
6835 else if (!DECL_PRETTY_FUNCTION_P (decl))
6837 /* Deduce array size even if the initializer is dependent. */
6838 maybe_deduce_size_from_array_init (decl, init);
6839 /* And complain about multiple initializers. */
6840 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
6841 && !MAYBE_CLASS_TYPE_P (type))
6842 init = build_x_compound_expr_from_list (init, ELK_INIT,
6843 tf_warning_or_error);
6846 if (init)
6847 DECL_INITIAL (decl) = init;
6848 return;
6851 /* Just store non-static data member initializers for later. */
6852 if (init && TREE_CODE (decl) == FIELD_DECL)
6853 DECL_INITIAL (decl) = init;
6855 /* Take care of TYPE_DECLs up front. */
6856 if (TREE_CODE (decl) == TYPE_DECL)
6858 if (type != error_mark_node
6859 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
6861 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
6862 warning (0, "shadowing previous type declaration of %q#D", decl);
6863 set_identifier_type_value (DECL_NAME (decl), decl);
6866 /* If we have installed this as the canonical typedef for this
6867 type, and that type has not been defined yet, delay emitting
6868 the debug information for it, as we will emit it later. */
6869 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
6870 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
6871 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
6873 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
6874 at_eof);
6875 return;
6878 /* A reference will be modified here, as it is initialized. */
6879 if (! DECL_EXTERNAL (decl)
6880 && TREE_READONLY (decl)
6881 && TREE_CODE (type) == REFERENCE_TYPE)
6883 was_readonly = 1;
6884 TREE_READONLY (decl) = 0;
6887 if (VAR_P (decl))
6889 /* If this is a local variable that will need a mangled name,
6890 register it now. We must do this before processing the
6891 initializer for the variable, since the initialization might
6892 require a guard variable, and since the mangled name of the
6893 guard variable will depend on the mangled name of this
6894 variable. */
6895 if (DECL_FUNCTION_SCOPE_P (decl)
6896 && TREE_STATIC (decl)
6897 && !DECL_ARTIFICIAL (decl))
6899 push_local_name (decl);
6900 /* Normally has_forced_label_in_static is set during GIMPLE
6901 lowering, but [cd]tors are never actually compiled directly.
6902 We need to set this early so we can deal with the label
6903 address extension. */
6904 if ((DECL_CONSTRUCTOR_P (current_function_decl)
6905 || DECL_DESTRUCTOR_P (current_function_decl))
6906 && init)
6908 walk_tree (&init, notice_forced_label_r, NULL, NULL);
6909 add_local_decl (cfun, decl);
6911 /* And make sure it's in the symbol table for
6912 c_parse_final_cleanups to find. */
6913 varpool_node::get_create (decl);
6916 /* Convert the initializer to the type of DECL, if we have not
6917 already initialized DECL. */
6918 if (!DECL_INITIALIZED_P (decl)
6919 /* If !DECL_EXTERNAL then DECL is being defined. In the
6920 case of a static data member initialized inside the
6921 class-specifier, there can be an initializer even if DECL
6922 is *not* defined. */
6923 && (!DECL_EXTERNAL (decl) || init))
6925 if (TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6927 tree jclass
6928 = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jclass"));
6929 /* Allow libjava/prims.cc define primitive classes. */
6930 if (init != NULL_TREE
6931 || jclass == NULL_TREE
6932 || TREE_CODE (jclass) != TYPE_DECL
6933 || !POINTER_TYPE_P (TREE_TYPE (jclass))
6934 || !same_type_ignoring_top_level_qualifiers_p
6935 (type, TREE_TYPE (TREE_TYPE (jclass))))
6936 error ("Java object %qD not allocated with %<new%>", decl);
6937 init = NULL_TREE;
6939 cleanups = make_tree_vector ();
6940 init = check_initializer (decl, init, flags, &cleanups);
6942 /* Handle:
6944 [dcl.init]
6946 The memory occupied by any object of static storage
6947 duration is zero-initialized at program startup before
6948 any other initialization takes place.
6950 We cannot create an appropriate initializer until after
6951 the type of DECL is finalized. If DECL_INITIAL is set,
6952 then the DECL is statically initialized, and any
6953 necessary zero-initialization has already been performed. */
6954 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
6955 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
6956 /*nelts=*/NULL_TREE,
6957 /*static_storage_p=*/true);
6958 /* Remember that the initialization for this variable has
6959 taken place. */
6960 DECL_INITIALIZED_P (decl) = 1;
6961 /* This declaration is the definition of this variable,
6962 unless we are initializing a static data member within
6963 the class specifier. */
6964 if (!DECL_EXTERNAL (decl))
6965 var_definition_p = true;
6967 /* If the variable has an array type, lay out the type, even if
6968 there is no initializer. It is valid to index through the
6969 array, and we must get TYPE_ALIGN set correctly on the array
6970 type. */
6971 else if (TREE_CODE (type) == ARRAY_TYPE)
6972 layout_type (type);
6974 if (TREE_STATIC (decl)
6975 && !at_function_scope_p ()
6976 && current_function_decl == NULL)
6977 /* So decl is a global variable or a static member of a
6978 non local class. Record the types it uses
6979 so that we can decide later to emit debug info for them. */
6980 record_types_used_by_current_var_decl (decl);
6982 else if (TREE_CODE (decl) == FIELD_DECL
6983 && TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6984 error ("non-static data member %qD has Java class type", decl);
6986 /* Add this declaration to the statement-tree. This needs to happen
6987 after the call to check_initializer so that the DECL_EXPR for a
6988 reference temp is added before the DECL_EXPR for the reference itself. */
6989 if (DECL_FUNCTION_SCOPE_P (decl))
6991 /* If we're building a variable sized type, and we might be
6992 reachable other than via the top of the current binding
6993 level, then create a new BIND_EXPR so that we deallocate
6994 the object at the right time. */
6995 if (VAR_P (decl)
6996 && DECL_SIZE (decl)
6997 && !TREE_CONSTANT (DECL_SIZE (decl))
6998 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
7000 tree bind;
7001 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
7002 TREE_SIDE_EFFECTS (bind) = 1;
7003 add_stmt (bind);
7004 BIND_EXPR_BODY (bind) = push_stmt_list ();
7006 add_decl_expr (decl);
7009 /* Let the middle end know about variables and functions -- but not
7010 static data members in uninstantiated class templates. */
7011 if (VAR_OR_FUNCTION_DECL_P (decl))
7013 if (VAR_P (decl))
7015 layout_var_decl (decl);
7016 maybe_commonize_var (decl);
7019 /* This needs to happen after the linkage is set. */
7020 determine_visibility (decl);
7022 if (var_definition_p && TREE_STATIC (decl))
7024 /* If a TREE_READONLY variable needs initialization
7025 at runtime, it is no longer readonly and we need to
7026 avoid MEM_READONLY_P being set on RTL created for it. */
7027 if (init)
7029 if (TREE_READONLY (decl))
7030 TREE_READONLY (decl) = 0;
7031 was_readonly = 0;
7033 else if (was_readonly)
7034 TREE_READONLY (decl) = 1;
7036 /* Likewise if it needs destruction. */
7037 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
7038 TREE_READONLY (decl) = 0;
7041 make_rtl_for_nonlocal_decl (decl, init, asmspec);
7043 /* Check for abstractness of the type. Notice that there is no
7044 need to strip array types here since the check for those types
7045 is already done within create_array_type_for_decl. */
7046 abstract_virtuals_error (decl, type);
7048 if (TREE_TYPE (decl) == error_mark_node)
7049 /* No initialization required. */
7051 else if (TREE_CODE (decl) == FUNCTION_DECL)
7053 if (init)
7055 if (init == ridpointers[(int)RID_DEFAULT])
7057 /* An out-of-class default definition is defined at
7058 the point where it is explicitly defaulted. */
7059 if (DECL_DELETED_FN (decl))
7060 maybe_explain_implicit_delete (decl);
7061 else if (DECL_INITIAL (decl) == error_mark_node)
7062 synthesize_method (decl);
7064 else
7065 error ("function %q#D is initialized like a variable", decl);
7067 /* else no initialization required. */
7069 else if (DECL_EXTERNAL (decl)
7070 && ! (DECL_LANG_SPECIFIC (decl)
7071 && DECL_NOT_REALLY_EXTERN (decl)))
7073 if (init)
7074 DECL_INITIAL (decl) = init;
7076 /* A variable definition. */
7077 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
7078 /* Initialize the local variable. */
7079 initialize_local_var (decl, init);
7081 /* If a variable is defined, and then a subsequent
7082 definition with external linkage is encountered, we will
7083 get here twice for the same variable. We want to avoid
7084 calling expand_static_init more than once. For variables
7085 that are not static data members, we can call
7086 expand_static_init only when we actually process the
7087 initializer. It is not legal to redeclare a static data
7088 member, so this issue does not arise in that case. */
7089 else if (var_definition_p && TREE_STATIC (decl))
7090 expand_static_init (decl, init);
7093 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
7094 reference, insert it in the statement-tree now. */
7095 if (cleanups)
7097 unsigned i; tree t;
7098 FOR_EACH_VEC_ELT (*cleanups, i, t)
7099 push_cleanup (decl, t, false);
7100 release_tree_vector (cleanups);
7103 if (was_readonly)
7104 TREE_READONLY (decl) = 1;
7106 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
7109 /* Returns a declaration for a VAR_DECL as if:
7111 extern "C" TYPE NAME;
7113 had been seen. Used to create compiler-generated global
7114 variables. */
7116 static tree
7117 declare_global_var (tree name, tree type)
7119 tree decl;
7121 push_to_top_level ();
7122 decl = build_decl (input_location, VAR_DECL, name, type);
7123 TREE_PUBLIC (decl) = 1;
7124 DECL_EXTERNAL (decl) = 1;
7125 DECL_ARTIFICIAL (decl) = 1;
7126 /* If the user has explicitly declared this variable (perhaps
7127 because the code we are compiling is part of a low-level runtime
7128 library), then it is possible that our declaration will be merged
7129 with theirs by pushdecl. */
7130 decl = pushdecl (decl);
7131 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
7132 pop_from_top_level ();
7134 return decl;
7137 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
7138 if "__cxa_atexit" is not being used) corresponding to the function
7139 to be called when the program exits. */
7141 static tree
7142 get_atexit_fn_ptr_type (void)
7144 tree fn_type;
7146 if (!atexit_fn_ptr_type_node)
7148 tree arg_type;
7149 if (flag_use_cxa_atexit
7150 && !targetm.cxx.use_atexit_for_cxa_atexit ())
7151 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
7152 arg_type = ptr_type_node;
7153 else
7154 /* The parameter to "atexit" is "void (*)(void)". */
7155 arg_type = NULL_TREE;
7157 fn_type = build_function_type_list (void_type_node,
7158 arg_type, NULL_TREE);
7159 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
7162 return atexit_fn_ptr_type_node;
7165 /* Returns a pointer to the `atexit' function. Note that if
7166 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
7167 `__cxa_atexit' function specified in the IA64 C++ ABI. */
7169 static tree
7170 get_atexit_node (void)
7172 tree atexit_fndecl;
7173 tree fn_type;
7174 tree fn_ptr_type;
7175 const char *name;
7176 bool use_aeabi_atexit;
7178 if (atexit_node)
7179 return atexit_node;
7181 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
7183 /* The declaration for `__cxa_atexit' is:
7185 int __cxa_atexit (void (*)(void *), void *, void *)
7187 We build up the argument types and then the function type
7188 itself. */
7189 tree argtype0, argtype1, argtype2;
7191 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
7192 /* First, build the pointer-to-function type for the first
7193 argument. */
7194 fn_ptr_type = get_atexit_fn_ptr_type ();
7195 /* Then, build the rest of the argument types. */
7196 argtype2 = ptr_type_node;
7197 if (use_aeabi_atexit)
7199 argtype1 = fn_ptr_type;
7200 argtype0 = ptr_type_node;
7202 else
7204 argtype1 = ptr_type_node;
7205 argtype0 = fn_ptr_type;
7207 /* And the final __cxa_atexit type. */
7208 fn_type = build_function_type_list (integer_type_node,
7209 argtype0, argtype1, argtype2,
7210 NULL_TREE);
7211 if (use_aeabi_atexit)
7212 name = "__aeabi_atexit";
7213 else
7214 name = "__cxa_atexit";
7216 else
7218 /* The declaration for `atexit' is:
7220 int atexit (void (*)());
7222 We build up the argument types and then the function type
7223 itself. */
7224 fn_ptr_type = get_atexit_fn_ptr_type ();
7225 /* Build the final atexit type. */
7226 fn_type = build_function_type_list (integer_type_node,
7227 fn_ptr_type, NULL_TREE);
7228 name = "atexit";
7231 /* Now, build the function declaration. */
7232 push_lang_context (lang_name_c);
7233 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
7234 mark_used (atexit_fndecl);
7235 pop_lang_context ();
7236 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
7238 return atexit_node;
7241 /* Like get_atexit_node, but for thread-local cleanups. */
7243 static tree
7244 get_thread_atexit_node (void)
7246 /* The declaration for `__cxa_thread_atexit' is:
7248 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
7249 tree fn_type = build_function_type_list (integer_type_node,
7250 get_atexit_fn_ptr_type (),
7251 ptr_type_node, ptr_type_node,
7252 NULL_TREE);
7254 /* Now, build the function declaration. */
7255 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
7256 ECF_LEAF | ECF_NOTHROW);
7257 return decay_conversion (atexit_fndecl, tf_warning_or_error);
7260 /* Returns the __dso_handle VAR_DECL. */
7262 static tree
7263 get_dso_handle_node (void)
7265 if (dso_handle_node)
7266 return dso_handle_node;
7268 /* Declare the variable. */
7269 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
7270 ptr_type_node);
7272 #ifdef HAVE_GAS_HIDDEN
7273 if (dso_handle_node != error_mark_node)
7275 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
7276 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
7278 #endif
7280 return dso_handle_node;
7283 /* Begin a new function with internal linkage whose job will be simply
7284 to destroy some particular variable. */
7286 static GTY(()) int start_cleanup_cnt;
7288 static tree
7289 start_cleanup_fn (void)
7291 char name[32];
7292 tree fntype;
7293 tree fndecl;
7294 bool use_cxa_atexit = flag_use_cxa_atexit
7295 && !targetm.cxx.use_atexit_for_cxa_atexit ();
7297 push_to_top_level ();
7299 /* No need to mangle this. */
7300 push_lang_context (lang_name_c);
7302 /* Build the name of the function. */
7303 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
7304 /* Build the function declaration. */
7305 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
7306 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
7307 /* It's a function with internal linkage, generated by the
7308 compiler. */
7309 TREE_PUBLIC (fndecl) = 0;
7310 DECL_ARTIFICIAL (fndecl) = 1;
7311 /* Make the function `inline' so that it is only emitted if it is
7312 actually needed. It is unlikely that it will be inlined, since
7313 it is only called via a function pointer, but we avoid unnecessary
7314 emissions this way. */
7315 DECL_DECLARED_INLINE_P (fndecl) = 1;
7316 DECL_INTERFACE_KNOWN (fndecl) = 1;
7317 /* Build the parameter. */
7318 if (use_cxa_atexit)
7320 tree parmdecl;
7322 parmdecl = cp_build_parm_decl (NULL_TREE, ptr_type_node);
7323 DECL_CONTEXT (parmdecl) = fndecl;
7324 TREE_USED (parmdecl) = 1;
7325 DECL_READ_P (parmdecl) = 1;
7326 DECL_ARGUMENTS (fndecl) = parmdecl;
7329 pushdecl (fndecl);
7330 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
7332 pop_lang_context ();
7334 return current_function_decl;
7337 /* Finish the cleanup function begun by start_cleanup_fn. */
7339 static void
7340 end_cleanup_fn (void)
7342 expand_or_defer_fn (finish_function (0));
7344 pop_from_top_level ();
7347 /* Generate code to handle the destruction of DECL, an object with
7348 static storage duration. */
7350 tree
7351 register_dtor_fn (tree decl)
7353 tree cleanup;
7354 tree addr;
7355 tree compound_stmt;
7356 tree fcall;
7357 tree type;
7358 bool ob_parm, dso_parm, use_dtor;
7359 tree arg0, arg1, arg2;
7360 tree atex_node;
7362 type = TREE_TYPE (decl);
7363 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
7364 return void_node;
7366 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
7367 "__aeabi_atexit"), and DECL is a class object, we can just pass the
7368 destructor to "__cxa_atexit"; we don't have to build a temporary
7369 function to do the cleanup. */
7370 dso_parm = (flag_use_cxa_atexit
7371 && !targetm.cxx.use_atexit_for_cxa_atexit ());
7372 ob_parm = (CP_DECL_THREAD_LOCAL_P (decl) || dso_parm);
7373 use_dtor = ob_parm && CLASS_TYPE_P (type);
7374 if (use_dtor)
7376 int idx;
7378 /* Find the destructor. */
7379 idx = lookup_fnfields_1 (type, complete_dtor_identifier);
7380 gcc_assert (idx >= 0);
7381 cleanup = (*CLASSTYPE_METHOD_VEC (type))[idx];
7382 /* Make sure it is accessible. */
7383 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
7384 tf_warning_or_error);
7386 else
7388 /* Call build_cleanup before we enter the anonymous function so
7389 that any access checks will be done relative to the current
7390 scope, rather than the scope of the anonymous function. */
7391 build_cleanup (decl);
7393 /* Now start the function. */
7394 cleanup = start_cleanup_fn ();
7396 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
7397 to the original function, rather than the anonymous one. That
7398 will make the back end think that nested functions are in use,
7399 which causes confusion. */
7400 push_deferring_access_checks (dk_no_check);
7401 fcall = build_cleanup (decl);
7402 pop_deferring_access_checks ();
7404 /* Create the body of the anonymous function. */
7405 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
7406 finish_expr_stmt (fcall);
7407 finish_compound_stmt (compound_stmt);
7408 end_cleanup_fn ();
7411 /* Call atexit with the cleanup function. */
7412 mark_used (cleanup);
7413 cleanup = build_address (cleanup);
7415 if (CP_DECL_THREAD_LOCAL_P (decl))
7416 atex_node = get_thread_atexit_node ();
7417 else
7418 atex_node = get_atexit_node ();
7420 if (use_dtor)
7422 /* We must convert CLEANUP to the type that "__cxa_atexit"
7423 expects. */
7424 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
7425 /* "__cxa_atexit" will pass the address of DECL to the
7426 cleanup function. */
7427 mark_used (decl);
7428 addr = build_address (decl);
7429 /* The declared type of the parameter to "__cxa_atexit" is
7430 "void *". For plain "T*", we could just let the
7431 machinery in cp_build_function_call convert it -- but if the
7432 type is "cv-qualified T *", then we need to convert it
7433 before passing it in, to avoid spurious errors. */
7434 addr = build_nop (ptr_type_node, addr);
7436 else
7437 /* Since the cleanup functions we build ignore the address
7438 they're given, there's no reason to pass the actual address
7439 in, and, in general, it's cheaper to pass NULL than any
7440 other value. */
7441 addr = null_pointer_node;
7443 if (dso_parm)
7444 arg2 = cp_build_addr_expr (get_dso_handle_node (),
7445 tf_warning_or_error);
7446 else if (ob_parm)
7447 /* Just pass NULL to the dso handle parm if we don't actually
7448 have a DSO handle on this target. */
7449 arg2 = null_pointer_node;
7450 else
7451 arg2 = NULL_TREE;
7453 if (ob_parm)
7455 if (!CP_DECL_THREAD_LOCAL_P (decl)
7456 && targetm.cxx.use_aeabi_atexit ())
7458 arg1 = cleanup;
7459 arg0 = addr;
7461 else
7463 arg1 = addr;
7464 arg0 = cleanup;
7467 else
7469 arg0 = cleanup;
7470 arg1 = NULL_TREE;
7472 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
7473 arg0, arg1, arg2, NULL_TREE);
7476 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
7477 is its initializer. Generate code to handle the construction
7478 and destruction of DECL. */
7480 static void
7481 expand_static_init (tree decl, tree init)
7483 gcc_assert (VAR_P (decl));
7484 gcc_assert (TREE_STATIC (decl));
7486 /* Some variables require no dynamic initialization. */
7487 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
7489 /* Make sure the destructor is callable. */
7490 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
7491 if (!init)
7492 return;
7495 if (CP_DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
7496 && !DECL_FUNCTION_SCOPE_P (decl))
7498 if (init)
7499 error ("non-local variable %qD declared %<__thread%> "
7500 "needs dynamic initialization", decl);
7501 else
7502 error ("non-local variable %qD declared %<__thread%> "
7503 "has a non-trivial destructor", decl);
7504 static bool informed;
7505 if (!informed)
7507 inform (DECL_SOURCE_LOCATION (decl),
7508 "C++11 %<thread_local%> allows dynamic initialization "
7509 "and destruction");
7510 informed = true;
7512 return;
7515 if (DECL_FUNCTION_SCOPE_P (decl))
7517 /* Emit code to perform this initialization but once. */
7518 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
7519 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
7520 tree guard, guard_addr;
7521 tree flag, begin;
7522 /* We don't need thread-safety code for thread-local vars. */
7523 bool thread_guard = (flag_threadsafe_statics
7524 && !CP_DECL_THREAD_LOCAL_P (decl));
7526 /* Emit code to perform this initialization but once. This code
7527 looks like:
7529 static <type> guard;
7530 if (!__atomic_load (guard.first_byte)) {
7531 if (__cxa_guard_acquire (&guard)) {
7532 bool flag = false;
7533 try {
7534 // Do initialization.
7535 flag = true; __cxa_guard_release (&guard);
7536 // Register variable for destruction at end of program.
7537 } catch {
7538 if (!flag) __cxa_guard_abort (&guard);
7542 Note that the `flag' variable is only set to 1 *after* the
7543 initialization is complete. This ensures that an exception,
7544 thrown during the construction, will cause the variable to
7545 reinitialized when we pass through this code again, as per:
7547 [stmt.dcl]
7549 If the initialization exits by throwing an exception, the
7550 initialization is not complete, so it will be tried again
7551 the next time control enters the declaration.
7553 This process should be thread-safe, too; multiple threads
7554 should not be able to initialize the variable more than
7555 once. */
7557 /* Create the guard variable. */
7558 guard = get_guard (decl);
7560 /* Begin the conditional initialization. */
7561 if_stmt = begin_if_stmt ();
7563 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
7564 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7566 if (thread_guard)
7568 tree vfntype = NULL_TREE;
7569 tree acquire_name, release_name, abort_name;
7570 tree acquire_fn, release_fn, abort_fn;
7571 guard_addr = build_address (guard);
7573 acquire_name = get_identifier ("__cxa_guard_acquire");
7574 release_name = get_identifier ("__cxa_guard_release");
7575 abort_name = get_identifier ("__cxa_guard_abort");
7576 acquire_fn = identifier_global_value (acquire_name);
7577 release_fn = identifier_global_value (release_name);
7578 abort_fn = identifier_global_value (abort_name);
7579 if (!acquire_fn)
7580 acquire_fn = push_library_fn
7581 (acquire_name, build_function_type_list (integer_type_node,
7582 TREE_TYPE (guard_addr),
7583 NULL_TREE),
7584 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
7585 if (!release_fn || !abort_fn)
7586 vfntype = build_function_type_list (void_type_node,
7587 TREE_TYPE (guard_addr),
7588 NULL_TREE);
7589 if (!release_fn)
7590 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
7591 ECF_NOTHROW | ECF_LEAF);
7592 if (!abort_fn)
7593 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
7594 ECF_NOTHROW | ECF_LEAF);
7596 inner_if_stmt = begin_if_stmt ();
7597 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
7598 inner_if_stmt);
7600 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7601 begin = get_target_expr (boolean_false_node);
7602 flag = TARGET_EXPR_SLOT (begin);
7604 TARGET_EXPR_CLEANUP (begin)
7605 = build3 (COND_EXPR, void_type_node, flag,
7606 void_node,
7607 build_call_n (abort_fn, 1, guard_addr));
7608 CLEANUP_EH_ONLY (begin) = 1;
7610 /* Do the initialization itself. */
7611 init = add_stmt_to_compound (begin, init);
7612 init = add_stmt_to_compound
7613 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
7614 init = add_stmt_to_compound
7615 (init, build_call_n (release_fn, 1, guard_addr));
7617 else
7618 init = add_stmt_to_compound (init, set_guard (guard));
7620 /* Use atexit to register a function for destroying this static
7621 variable. */
7622 init = add_stmt_to_compound (init, register_dtor_fn (decl));
7624 finish_expr_stmt (init);
7626 if (thread_guard)
7628 finish_compound_stmt (inner_then_clause);
7629 finish_then_clause (inner_if_stmt);
7630 finish_if_stmt (inner_if_stmt);
7633 finish_compound_stmt (then_clause);
7634 finish_then_clause (if_stmt);
7635 finish_if_stmt (if_stmt);
7637 else if (CP_DECL_THREAD_LOCAL_P (decl))
7638 tls_aggregates = tree_cons (init, decl, tls_aggregates);
7639 else
7640 static_aggregates = tree_cons (init, decl, static_aggregates);
7644 /* Make TYPE a complete type based on INITIAL_VALUE.
7645 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
7646 2 if there was no information (in which case assume 0 if DO_DEFAULT),
7647 3 if the initializer list is empty (in pedantic mode). */
7650 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
7652 int failure;
7653 tree type, elt_type;
7655 /* Don't get confused by a CONSTRUCTOR for some other type. */
7656 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
7657 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value)
7658 && TREE_CODE (TREE_TYPE (initial_value)) != ARRAY_TYPE)
7659 return 1;
7661 if (initial_value)
7663 unsigned HOST_WIDE_INT i;
7664 tree value;
7666 /* An array of character type can be initialized from a
7667 brace-enclosed string constant.
7669 FIXME: this code is duplicated from reshape_init. Probably
7670 we should just call reshape_init here? */
7671 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
7672 && TREE_CODE (initial_value) == CONSTRUCTOR
7673 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
7675 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
7676 tree value = (*v)[0].value;
7678 if (TREE_CODE (value) == STRING_CST
7679 && v->length () == 1)
7680 initial_value = value;
7683 /* If any of the elements are parameter packs, we can't actually
7684 complete this type now because the array size is dependent. */
7685 if (TREE_CODE (initial_value) == CONSTRUCTOR)
7687 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
7688 i, value)
7690 if (PACK_EXPANSION_P (value))
7691 return 0;
7696 failure = complete_array_type (ptype, initial_value, do_default);
7698 /* We can create the array before the element type is complete, which
7699 means that we didn't have these two bits set in the original type
7700 either. In completing the type, we are expected to propagate these
7701 bits. See also complete_type which does the same thing for arrays
7702 of fixed size. */
7703 type = *ptype;
7704 if (TYPE_DOMAIN (type))
7706 elt_type = TREE_TYPE (type);
7707 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
7708 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
7709 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
7712 return failure;
7715 /* As above, but either give an error or reject zero-size arrays, depending
7716 on COMPLAIN. */
7719 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
7720 bool do_default, tsubst_flags_t complain)
7722 int failure;
7723 bool sfinae = !(complain & tf_error);
7724 /* In SFINAE context we can't be lenient about zero-size arrays. */
7725 if (sfinae)
7726 ++pedantic;
7727 failure = cp_complete_array_type (ptype, initial_value, do_default);
7728 if (sfinae)
7729 --pedantic;
7730 if (failure)
7732 if (sfinae)
7733 /* Not an error. */;
7734 else if (failure == 1)
7735 error ("initializer fails to determine size of %qT", *ptype);
7736 else if (failure == 2)
7738 if (do_default)
7739 error ("array size missing in %qT", *ptype);
7741 else if (failure == 3)
7742 error ("zero-size array %qT", *ptype);
7743 *ptype = error_mark_node;
7745 return failure;
7748 /* Return zero if something is declared to be a member of type
7749 CTYPE when in the context of CUR_TYPE. STRING is the error
7750 message to print in that case. Otherwise, quietly return 1. */
7752 static int
7753 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
7755 if (ctype && ctype != cur_type)
7757 if (flags == DTOR_FLAG)
7758 error ("destructor for alien class %qT cannot be a member", ctype);
7759 else
7760 error ("constructor for alien class %qT cannot be a member", ctype);
7761 return 0;
7763 return 1;
7766 /* Subroutine of `grokdeclarator'. */
7768 /* Generate errors possibly applicable for a given set of specifiers.
7769 This is for ARM $7.1.2. */
7771 static void
7772 bad_specifiers (tree object,
7773 enum bad_spec_place type,
7774 int virtualp,
7775 int quals,
7776 int inlinep,
7777 int friendp,
7778 int raises)
7780 switch (type)
7782 case BSP_VAR:
7783 if (virtualp)
7784 error ("%qD declared as a %<virtual%> variable", object);
7785 if (inlinep)
7786 error ("%qD declared as an %<inline%> variable", object);
7787 if (quals)
7788 error ("%<const%> and %<volatile%> function specifiers on "
7789 "%qD invalid in variable declaration", object);
7790 break;
7791 case BSP_PARM:
7792 if (virtualp)
7793 error ("%qD declared as a %<virtual%> parameter", object);
7794 if (inlinep)
7795 error ("%qD declared as an %<inline%> parameter", object);
7796 if (quals)
7797 error ("%<const%> and %<volatile%> function specifiers on "
7798 "%qD invalid in parameter declaration", object);
7799 break;
7800 case BSP_TYPE:
7801 if (virtualp)
7802 error ("%qD declared as a %<virtual%> type", object);
7803 if (inlinep)
7804 error ("%qD declared as an %<inline%> type", object);
7805 if (quals)
7806 error ("%<const%> and %<volatile%> function specifiers on "
7807 "%qD invalid in type declaration", object);
7808 break;
7809 case BSP_FIELD:
7810 if (virtualp)
7811 error ("%qD declared as a %<virtual%> field", object);
7812 if (inlinep)
7813 error ("%qD declared as an %<inline%> field", object);
7814 if (quals)
7815 error ("%<const%> and %<volatile%> function specifiers on "
7816 "%qD invalid in field declaration", object);
7817 break;
7818 default:
7819 gcc_unreachable();
7821 if (friendp)
7822 error ("%q+D declared as a friend", object);
7823 if (raises
7824 && (TREE_CODE (object) == TYPE_DECL
7825 || (!TYPE_PTRFN_P (TREE_TYPE (object))
7826 && !TYPE_REFFN_P (TREE_TYPE (object))
7827 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
7828 error ("%q+D declared with an exception specification", object);
7831 /* DECL is a member function or static data member and is presently
7832 being defined. Check that the definition is taking place in a
7833 valid namespace. */
7835 static void
7836 check_class_member_definition_namespace (tree decl)
7838 /* These checks only apply to member functions and static data
7839 members. */
7840 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
7841 /* We check for problems with specializations in pt.c in
7842 check_specialization_namespace, where we can issue better
7843 diagnostics. */
7844 if (processing_specialization)
7845 return;
7846 /* There are no restrictions on the placement of
7847 explicit instantiations. */
7848 if (processing_explicit_instantiation)
7849 return;
7850 /* [class.mfct]
7852 A member function definition that appears outside of the
7853 class definition shall appear in a namespace scope enclosing
7854 the class definition.
7856 [class.static.data]
7858 The definition for a static data member shall appear in a
7859 namespace scope enclosing the member's class definition. */
7860 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
7861 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
7862 decl, DECL_CONTEXT (decl));
7865 /* Build a PARM_DECL for the "this" parameter. TYPE is the
7866 METHOD_TYPE for a non-static member function; QUALS are the
7867 cv-qualifiers that apply to the function. */
7869 tree
7870 build_this_parm (tree type, cp_cv_quals quals)
7872 tree this_type;
7873 tree qual_type;
7874 tree parm;
7875 cp_cv_quals this_quals;
7877 if (CLASS_TYPE_P (type))
7879 this_type
7880 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
7881 this_type = build_pointer_type (this_type);
7883 else
7884 this_type = type_of_this_parm (type);
7885 /* The `this' parameter is implicitly `const'; it cannot be
7886 assigned to. */
7887 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
7888 qual_type = cp_build_qualified_type (this_type, this_quals);
7889 parm = build_artificial_parm (this_identifier, qual_type);
7890 cp_apply_type_quals_to_decl (this_quals, parm);
7891 return parm;
7894 /* DECL is a static member function. Complain if it was declared
7895 with function-cv-quals. */
7897 static void
7898 check_static_quals (tree decl, cp_cv_quals quals)
7900 if (quals != TYPE_UNQUALIFIED)
7901 error ("static member function %q#D declared with type qualifiers",
7902 decl);
7905 // Check that FN takes no arguments and returns bool.
7906 static void
7907 check_concept_fn (tree fn)
7909 // A constraint is nullary.
7910 if (DECL_ARGUMENTS (fn))
7911 error ("concept %q#D declared with function parameters", fn);
7913 // The declared return type of the concept shall be bool, and
7914 // it shall not be deduced from it definition.
7915 tree type = TREE_TYPE (TREE_TYPE (fn));
7916 if (is_auto (type))
7917 error ("concept %q#D declared with a deduced return type", fn);
7918 else if (type != boolean_type_node)
7919 error ("concept %q#D with non-%<bool%> return type %qT", fn, type);
7922 /* Helper function. Replace the temporary this parameter injected
7923 during cp_finish_omp_declare_simd with the real this parameter. */
7925 static tree
7926 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
7928 tree this_parm = (tree) data;
7929 if (TREE_CODE (*tp) == PARM_DECL
7930 && DECL_NAME (*tp) == this_identifier
7931 && *tp != this_parm)
7932 *tp = this_parm;
7933 else if (TYPE_P (*tp))
7934 *walk_subtrees = 0;
7935 return NULL_TREE;
7938 /* CTYPE is class type, or null if non-class.
7939 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
7940 or METHOD_TYPE.
7941 DECLARATOR is the function's name.
7942 PARMS is a chain of PARM_DECLs for the function.
7943 VIRTUALP is truthvalue of whether the function is virtual or not.
7944 FLAGS are to be passed through to `grokclassfn'.
7945 QUALS are qualifiers indicating whether the function is `const'
7946 or `volatile'.
7947 RAISES is a list of exceptions that this function can raise.
7948 CHECK is 1 if we must find this method in CTYPE, 0 if we should
7949 not look, and -1 if we should not call `grokclassfn' at all.
7951 SFK is the kind of special function (if any) for the new function.
7953 Returns `NULL_TREE' if something goes wrong, after issuing
7954 applicable error messages. */
7956 static tree
7957 grokfndecl (tree ctype,
7958 tree type,
7959 tree declarator,
7960 tree parms,
7961 tree orig_declarator,
7962 tree decl_reqs,
7963 int virtualp,
7964 enum overload_flags flags,
7965 cp_cv_quals quals,
7966 cp_ref_qualifier rqual,
7967 tree raises,
7968 int check,
7969 int friendp,
7970 int publicp,
7971 int inlinep,
7972 bool deletedp,
7973 special_function_kind sfk,
7974 bool funcdef_flag,
7975 int template_count,
7976 tree in_namespace,
7977 tree* attrlist,
7978 location_t location)
7980 tree decl;
7981 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
7982 tree t;
7984 // Was the concept specifier present?
7985 bool concept_p = inlinep & 4;
7987 // Concept declarations must have a corresponding definition.
7988 if (concept_p && !funcdef_flag)
7990 error ("concept %qD has no definition", declarator);
7991 return NULL_TREE;
7994 if (rqual)
7995 type = build_ref_qualified_type (type, rqual);
7996 if (raises)
7997 type = build_exception_variant (type, raises);
7999 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
8001 /* Set the constraints on the declaration. */
8002 if (flag_concepts)
8004 tree tmpl_reqs = NULL_TREE;
8005 if (processing_template_decl > template_class_depth (ctype))
8006 tmpl_reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
8008 /* Adjust the required expression into a constraint. */
8009 if (decl_reqs)
8010 decl_reqs = normalize_expression (decl_reqs);
8012 tree ci = build_constraints (tmpl_reqs, decl_reqs);
8013 set_constraints (decl, ci);
8016 /* If we have an explicit location, use it, otherwise use whatever
8017 build_lang_decl used (probably input_location). */
8018 if (location != UNKNOWN_LOCATION)
8019 DECL_SOURCE_LOCATION (decl) = location;
8021 if (TREE_CODE (type) == METHOD_TYPE)
8023 tree parm;
8024 parm = build_this_parm (type, quals);
8025 DECL_CHAIN (parm) = parms;
8026 parms = parm;
8028 /* Allocate space to hold the vptr bit if needed. */
8029 SET_DECL_ALIGN (decl, MINIMUM_METHOD_BOUNDARY);
8031 DECL_ARGUMENTS (decl) = parms;
8032 for (t = parms; t; t = DECL_CHAIN (t))
8033 DECL_CONTEXT (t) = decl;
8034 /* Propagate volatile out from type to decl. */
8035 if (TYPE_VOLATILE (type))
8036 TREE_THIS_VOLATILE (decl) = 1;
8038 /* Setup decl according to sfk. */
8039 switch (sfk)
8041 case sfk_constructor:
8042 case sfk_copy_constructor:
8043 case sfk_move_constructor:
8044 DECL_CONSTRUCTOR_P (decl) = 1;
8045 break;
8046 case sfk_destructor:
8047 DECL_DESTRUCTOR_P (decl) = 1;
8048 break;
8049 default:
8050 break;
8053 if (friendp
8054 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
8056 if (funcdef_flag)
8057 error
8058 ("defining explicit specialization %qD in friend declaration",
8059 orig_declarator);
8060 else
8062 tree fns = TREE_OPERAND (orig_declarator, 0);
8063 tree args = TREE_OPERAND (orig_declarator, 1);
8065 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
8067 /* Something like `template <class T> friend void f<T>()'. */
8068 error ("invalid use of template-id %qD in declaration "
8069 "of primary template",
8070 orig_declarator);
8071 return NULL_TREE;
8075 /* A friend declaration of the form friend void f<>(). Record
8076 the information in the TEMPLATE_ID_EXPR. */
8077 SET_DECL_IMPLICIT_INSTANTIATION (decl);
8079 gcc_assert (identifier_p (fns) || TREE_CODE (fns) == OVERLOAD);
8080 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
8082 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
8083 if (TREE_PURPOSE (t)
8084 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
8086 error ("default arguments are not allowed in declaration "
8087 "of friend template specialization %qD",
8088 decl);
8089 return NULL_TREE;
8092 if (inlinep & 1)
8094 error ("%<inline%> is not allowed in declaration of friend "
8095 "template specialization %qD",
8096 decl);
8097 return NULL_TREE;
8102 /* If this decl has namespace scope, set that up. */
8103 if (in_namespace)
8104 set_decl_namespace (decl, in_namespace, friendp);
8105 else if (!ctype)
8106 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
8108 /* `main' and builtins have implicit 'C' linkage. */
8109 if ((MAIN_NAME_P (declarator)
8110 || (IDENTIFIER_LENGTH (declarator) > 10
8111 && IDENTIFIER_POINTER (declarator)[0] == '_'
8112 && IDENTIFIER_POINTER (declarator)[1] == '_'
8113 && strncmp (IDENTIFIER_POINTER (declarator)+2, "builtin_", 8) == 0)
8114 || (targetcm.cxx_implicit_extern_c
8115 && targetcm.cxx_implicit_extern_c(IDENTIFIER_POINTER (declarator))))
8116 && current_lang_name == lang_name_cplusplus
8117 && ctype == NULL_TREE
8118 && DECL_FILE_SCOPE_P (decl))
8119 SET_DECL_LANGUAGE (decl, lang_c);
8121 /* Should probably propagate const out from type to decl I bet (mrs). */
8122 if (staticp)
8124 DECL_STATIC_FUNCTION_P (decl) = 1;
8125 DECL_CONTEXT (decl) = ctype;
8128 if (deletedp)
8129 DECL_DELETED_FN (decl) = 1;
8131 if (ctype)
8133 DECL_CONTEXT (decl) = ctype;
8134 if (funcdef_flag)
8135 check_class_member_definition_namespace (decl);
8138 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8140 if (PROCESSING_REAL_TEMPLATE_DECL_P())
8141 error ("cannot declare %<::main%> to be a template");
8142 if (inlinep & 1)
8143 error ("cannot declare %<::main%> to be inline");
8144 if (inlinep & 2)
8145 error ("cannot declare %<::main%> to be constexpr");
8146 if (!publicp)
8147 error ("cannot declare %<::main%> to be static");
8148 inlinep = 0;
8149 publicp = 1;
8152 /* Members of anonymous types and local classes have no linkage; make
8153 them internal. If a typedef is made later, this will be changed. */
8154 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
8155 || decl_function_context (TYPE_MAIN_DECL (ctype))))
8156 publicp = 0;
8158 if (publicp && cxx_dialect == cxx98)
8160 /* [basic.link]: A name with no linkage (notably, the name of a class
8161 or enumeration declared in a local scope) shall not be used to
8162 declare an entity with linkage.
8164 DR 757 relaxes this restriction for C++0x. */
8165 no_linkage_error (decl);
8168 TREE_PUBLIC (decl) = publicp;
8169 if (! publicp)
8171 DECL_INTERFACE_KNOWN (decl) = 1;
8172 DECL_NOT_REALLY_EXTERN (decl) = 1;
8175 /* If the declaration was declared inline, mark it as such. */
8176 if (inlinep)
8178 DECL_DECLARED_INLINE_P (decl) = 1;
8179 if (publicp)
8180 DECL_COMDAT (decl) = 1;
8182 if (inlinep & 2)
8183 DECL_DECLARED_CONSTEXPR_P (decl) = true;
8185 // If the concept declaration specifier was found, check
8186 // that the declaration satisfies the necessary requirements.
8187 if (concept_p)
8189 DECL_DECLARED_CONCEPT_P (decl) = true;
8190 check_concept_fn (decl);
8193 DECL_EXTERNAL (decl) = 1;
8194 if (TREE_CODE (type) == FUNCTION_TYPE)
8196 if (quals || rqual)
8197 TREE_TYPE (decl) = apply_memfn_quals (TREE_TYPE (decl),
8198 TYPE_UNQUALIFIED,
8199 REF_QUAL_NONE);
8201 if (quals)
8203 error (ctype
8204 ? G_("static member function %qD cannot have cv-qualifier")
8205 : G_("non-member function %qD cannot have cv-qualifier"),
8206 decl);
8207 quals = TYPE_UNQUALIFIED;
8210 if (rqual)
8212 error (ctype
8213 ? G_("static member function %qD cannot have ref-qualifier")
8214 : G_("non-member function %qD cannot have ref-qualifier"),
8215 decl);
8216 rqual = REF_QUAL_NONE;
8220 if (IDENTIFIER_OPNAME_P (DECL_NAME (decl))
8221 && !grok_op_properties (decl, /*complain=*/true))
8222 return NULL_TREE;
8223 else if (UDLIT_OPER_P (DECL_NAME (decl)))
8225 bool long_long_unsigned_p;
8226 bool long_double_p;
8227 const char *suffix = NULL;
8228 /* [over.literal]/6: Literal operators shall not have C linkage. */
8229 if (DECL_LANGUAGE (decl) == lang_c)
8231 error ("literal operator with C linkage");
8232 return NULL_TREE;
8235 if (DECL_NAMESPACE_SCOPE_P (decl))
8237 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
8238 &long_double_p))
8240 error ("%qD has invalid argument list", decl);
8241 return NULL_TREE;
8244 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
8245 if (long_long_unsigned_p)
8247 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
8248 warning (0, "integer suffix %<%s%>"
8249 " shadowed by implementation", suffix);
8251 else if (long_double_p)
8253 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
8254 warning (0, "floating point suffix %<%s%>"
8255 " shadowed by implementation", suffix);
8258 else
8260 error ("%qD must be a non-member function", decl);
8261 return NULL_TREE;
8265 if (funcdef_flag)
8266 /* Make the init_value nonzero so pushdecl knows this is not
8267 tentative. error_mark_node is replaced later with the BLOCK. */
8268 DECL_INITIAL (decl) = error_mark_node;
8270 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
8271 TREE_NOTHROW (decl) = 1;
8273 if (flag_openmp || flag_openmp_simd || flag_cilkplus)
8275 /* Adjust "omp declare simd" attributes. */
8276 tree ods = lookup_attribute ("omp declare simd", *attrlist);
8277 if (ods)
8279 tree attr;
8280 for (attr = ods; attr;
8281 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
8283 if (TREE_CODE (type) == METHOD_TYPE)
8284 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
8285 DECL_ARGUMENTS (decl), NULL);
8286 if (TREE_VALUE (attr) != NULL_TREE)
8288 tree cl = TREE_VALUE (TREE_VALUE (attr));
8289 cl = c_omp_declare_simd_clauses_to_numbers
8290 (DECL_ARGUMENTS (decl), cl);
8291 if (cl)
8292 TREE_VALUE (TREE_VALUE (attr)) = cl;
8293 else
8294 TREE_VALUE (attr) = NULL_TREE;
8300 /* Caller will do the rest of this. */
8301 if (check < 0)
8302 return decl;
8304 if (ctype != NULL_TREE)
8305 grokclassfn (ctype, decl, flags);
8307 /* 12.4/3 */
8308 if (cxx_dialect >= cxx11
8309 && DECL_DESTRUCTOR_P (decl)
8310 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
8311 && !processing_template_decl)
8312 deduce_noexcept_on_destructor (decl);
8314 decl = check_explicit_specialization (orig_declarator, decl,
8315 template_count,
8316 2 * funcdef_flag +
8317 4 * (friendp != 0) +
8318 8 * concept_p);
8319 if (decl == error_mark_node)
8320 return NULL_TREE;
8322 if (DECL_STATIC_FUNCTION_P (decl))
8323 check_static_quals (decl, quals);
8325 if (attrlist)
8327 cplus_decl_attributes (&decl, *attrlist, 0);
8328 *attrlist = NULL_TREE;
8331 /* Check main's type after attributes have been applied. */
8332 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8334 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
8335 integer_type_node))
8337 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
8338 tree newtype;
8339 error ("%<::main%> must return %<int%>");
8340 newtype = build_function_type (integer_type_node, oldtypeargs);
8341 TREE_TYPE (decl) = newtype;
8343 if (warn_main)
8344 check_main_parameter_types (decl);
8347 if (ctype != NULL_TREE
8348 && (! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
8349 && check)
8351 tree old_decl = check_classfn (ctype, decl,
8352 (processing_template_decl
8353 > template_class_depth (ctype))
8354 ? current_template_parms
8355 : NULL_TREE);
8357 if (old_decl == error_mark_node)
8358 return NULL_TREE;
8360 if (old_decl)
8362 tree ok;
8363 tree pushed_scope;
8365 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
8366 /* Because grokfndecl is always supposed to return a
8367 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
8368 here. We depend on our callers to figure out that its
8369 really a template that's being returned. */
8370 old_decl = DECL_TEMPLATE_RESULT (old_decl);
8372 if (DECL_STATIC_FUNCTION_P (old_decl)
8373 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
8375 /* Remove the `this' parm added by grokclassfn. */
8376 revert_static_member_fn (decl);
8377 check_static_quals (decl, quals);
8379 if (DECL_ARTIFICIAL (old_decl))
8381 error ("definition of implicitly-declared %qD", old_decl);
8382 return NULL_TREE;
8384 else if (DECL_DEFAULTED_FN (old_decl))
8386 error ("definition of explicitly-defaulted %q+D", decl);
8387 inform (DECL_SOURCE_LOCATION (old_decl),
8388 "%q#D explicitly defaulted here", old_decl);
8389 return NULL_TREE;
8392 /* Since we've smashed OLD_DECL to its
8393 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
8394 if (TREE_CODE (decl) == TEMPLATE_DECL)
8395 decl = DECL_TEMPLATE_RESULT (decl);
8397 /* Attempt to merge the declarations. This can fail, in
8398 the case of some invalid specialization declarations. */
8399 pushed_scope = push_scope (ctype);
8400 ok = duplicate_decls (decl, old_decl, friendp);
8401 if (pushed_scope)
8402 pop_scope (pushed_scope);
8403 if (!ok)
8405 error ("no %q#D member function declared in class %qT",
8406 decl, ctype);
8407 return NULL_TREE;
8409 if (ok == error_mark_node)
8410 return NULL_TREE;
8411 return old_decl;
8415 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
8416 return NULL_TREE;
8418 if (ctype == NULL_TREE || check)
8419 return decl;
8421 if (virtualp)
8422 DECL_VIRTUAL_P (decl) = 1;
8424 return decl;
8427 /* decl is a FUNCTION_DECL.
8428 specifiers are the parsed virt-specifiers.
8430 Set flags to reflect the virt-specifiers.
8432 Returns decl. */
8434 static tree
8435 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
8437 if (decl == NULL_TREE)
8438 return decl;
8439 if (specifiers & VIRT_SPEC_OVERRIDE)
8440 DECL_OVERRIDE_P (decl) = 1;
8441 if (specifiers & VIRT_SPEC_FINAL)
8442 DECL_FINAL_P (decl) = 1;
8443 return decl;
8446 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
8447 the linkage that DECL will receive in the object file. */
8449 static void
8450 set_linkage_for_static_data_member (tree decl)
8452 /* A static data member always has static storage duration and
8453 external linkage. Note that static data members are forbidden in
8454 local classes -- the only situation in which a class has
8455 non-external linkage. */
8456 TREE_PUBLIC (decl) = 1;
8457 TREE_STATIC (decl) = 1;
8458 /* For non-template classes, static data members are always put
8459 out in exactly those files where they are defined, just as
8460 with ordinary namespace-scope variables. */
8461 if (!processing_template_decl)
8462 DECL_INTERFACE_KNOWN (decl) = 1;
8465 /* Create a VAR_DECL named NAME with the indicated TYPE.
8467 If SCOPE is non-NULL, it is the class type or namespace containing
8468 the variable. If SCOPE is NULL, the variable should is created in
8469 the innermost enclosing scope. */
8471 static tree
8472 grokvardecl (tree type,
8473 tree name,
8474 tree orig_declarator,
8475 const cp_decl_specifier_seq *declspecs,
8476 int initialized,
8477 int flags,
8478 int template_count,
8479 tree scope)
8481 tree decl;
8482 tree explicit_scope;
8484 gcc_assert (!name || identifier_p (name));
8486 bool constp = flags&1;
8487 bool conceptp = flags&2;
8489 /* Compute the scope in which to place the variable, but remember
8490 whether or not that scope was explicitly specified by the user. */
8491 explicit_scope = scope;
8492 if (!scope)
8494 /* An explicit "extern" specifier indicates a namespace-scope
8495 variable. */
8496 if (declspecs->storage_class == sc_extern)
8497 scope = current_decl_namespace ();
8498 else if (!at_function_scope_p ())
8499 scope = current_scope ();
8502 if (scope
8503 && (/* If the variable is a namespace-scope variable declared in a
8504 template, we need DECL_LANG_SPECIFIC. */
8505 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
8506 /* Similarly for namespace-scope variables with language linkage
8507 other than C++. */
8508 || (TREE_CODE (scope) == NAMESPACE_DECL
8509 && current_lang_name != lang_name_cplusplus)
8510 /* Similarly for static data members. */
8511 || TYPE_P (scope)
8512 /* Similarly for explicit specializations. */
8513 || (orig_declarator
8514 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
8515 decl = build_lang_decl (VAR_DECL, name, type);
8516 else
8517 decl = build_decl (input_location, VAR_DECL, name, type);
8519 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
8520 set_decl_namespace (decl, explicit_scope, 0);
8521 else
8522 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
8524 if (declspecs->storage_class == sc_extern)
8526 DECL_THIS_EXTERN (decl) = 1;
8527 DECL_EXTERNAL (decl) = !initialized;
8530 if (DECL_CLASS_SCOPE_P (decl))
8532 set_linkage_for_static_data_member (decl);
8533 /* This function is only called with out-of-class definitions. */
8534 DECL_EXTERNAL (decl) = 0;
8535 check_class_member_definition_namespace (decl);
8537 /* At top level, either `static' or no s.c. makes a definition
8538 (perhaps tentative), and absence of `static' makes it public. */
8539 else if (toplevel_bindings_p ())
8541 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
8542 && (DECL_THIS_EXTERN (decl) || ! constp));
8543 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
8545 /* Not at top level, only `static' makes a static definition. */
8546 else
8548 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
8549 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
8552 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
8554 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
8556 CP_DECL_THREAD_LOCAL_P (decl) = true;
8557 if (!processing_template_decl)
8558 set_decl_tls_model (decl, decl_default_tls_model (decl));
8560 if (declspecs->gnu_thread_keyword_p)
8561 SET_DECL_GNU_TLS_P (decl);
8564 /* If the type of the decl has no linkage, make sure that we'll
8565 notice that in mark_used. */
8566 if (cxx_dialect > cxx98
8567 && decl_linkage (decl) != lk_none
8568 && DECL_LANG_SPECIFIC (decl) == NULL
8569 && !DECL_EXTERN_C_P (decl)
8570 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
8571 retrofit_lang_decl (decl);
8573 if (TREE_PUBLIC (decl))
8575 /* [basic.link]: A name with no linkage (notably, the name of a class
8576 or enumeration declared in a local scope) shall not be used to
8577 declare an entity with linkage.
8579 DR 757 relaxes this restriction for C++0x. */
8580 if (cxx_dialect < cxx11)
8581 no_linkage_error (decl);
8583 else
8584 DECL_INTERFACE_KNOWN (decl) = 1;
8586 if (DECL_NAME (decl)
8587 && MAIN_NAME_P (DECL_NAME (decl))
8588 && scope == global_namespace)
8589 error ("cannot declare %<::main%> to be a global variable");
8591 /* Check that the variable can be safely declared as a concept.
8592 Note that this also forbids explicit specializations. */
8593 if (conceptp)
8595 if (!processing_template_decl)
8597 error ("a non-template variable cannot be %<concept%>");
8598 return NULL_TREE;
8600 else
8601 DECL_DECLARED_CONCEPT_P (decl) = true;
8602 if (!same_type_ignoring_top_level_qualifiers_p (type, boolean_type_node))
8603 error_at (declspecs->locations[ds_type_spec],
8604 "concept must have type %<bool%>");
8606 else if (flag_concepts
8607 && processing_template_decl > template_class_depth (scope))
8609 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
8610 tree ci = build_constraints (reqs, NULL_TREE);
8611 set_constraints (decl, ci);
8614 // Handle explicit specializations and instantiations of variable templates.
8615 if (orig_declarator)
8616 decl = check_explicit_specialization (orig_declarator, decl,
8617 template_count, conceptp * 8);
8619 return decl != error_mark_node ? decl : NULL_TREE;
8622 /* Create and return a canonical pointer to member function type, for
8623 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
8625 tree
8626 build_ptrmemfunc_type (tree type)
8628 tree field, fields;
8629 tree t;
8631 if (type == error_mark_node)
8632 return type;
8634 /* Make sure that we always have the unqualified pointer-to-member
8635 type first. */
8636 if (cp_cv_quals quals = cp_type_quals (type))
8638 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
8639 return cp_build_qualified_type (unqual, quals);
8642 /* If a canonical type already exists for this type, use it. We use
8643 this method instead of type_hash_canon, because it only does a
8644 simple equality check on the list of field members. */
8646 if ((t = TYPE_GET_PTRMEMFUNC_TYPE (type)))
8647 return t;
8649 t = make_node (RECORD_TYPE);
8651 /* Let the front end know this is a pointer to member function. */
8652 TYPE_PTRMEMFUNC_FLAG (t) = 1;
8654 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
8655 fields = field;
8657 field = build_decl (input_location, FIELD_DECL, delta_identifier,
8658 delta_type_node);
8659 DECL_CHAIN (field) = fields;
8660 fields = field;
8662 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
8664 /* Zap out the name so that the back end will give us the debugging
8665 information for this anonymous RECORD_TYPE. */
8666 TYPE_NAME (t) = NULL_TREE;
8668 /* Cache this pointer-to-member type so that we can find it again
8669 later. */
8670 TYPE_SET_PTRMEMFUNC_TYPE (type, t);
8672 if (TYPE_STRUCTURAL_EQUALITY_P (type))
8673 SET_TYPE_STRUCTURAL_EQUALITY (t);
8674 else if (TYPE_CANONICAL (type) != type)
8675 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
8677 return t;
8680 /* Create and return a pointer to data member type. */
8682 tree
8683 build_ptrmem_type (tree class_type, tree member_type)
8685 if (TREE_CODE (member_type) == METHOD_TYPE)
8687 cp_cv_quals quals = type_memfn_quals (member_type);
8688 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
8689 member_type = build_memfn_type (member_type, class_type, quals, rqual);
8690 return build_ptrmemfunc_type (build_pointer_type (member_type));
8692 else
8694 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
8695 return build_offset_type (class_type, member_type);
8699 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
8700 Check to see that the definition is valid. Issue appropriate error
8701 messages. Return 1 if the definition is particularly bad, or 0
8702 otherwise. */
8704 static int
8705 check_static_variable_definition (tree decl, tree type)
8707 /* Avoid redundant diagnostics on out-of-class definitions. */
8708 if (!current_class_type || !TYPE_BEING_DEFINED (current_class_type))
8709 return 0;
8710 /* Can't check yet if we don't know the type. */
8711 if (dependent_type_p (type))
8712 return 0;
8713 /* If DECL is declared constexpr, we'll do the appropriate checks
8714 in check_initializer. */
8715 if (DECL_P (decl) && DECL_DECLARED_CONSTEXPR_P (decl))
8716 return 0;
8717 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8719 if (!COMPLETE_TYPE_P (type))
8720 error_at (DECL_SOURCE_LOCATION (decl),
8721 "in-class initialization of static data member %q#D of "
8722 "incomplete type", decl);
8723 else if (literal_type_p (type))
8724 permerror (DECL_SOURCE_LOCATION (decl),
8725 "%<constexpr%> needed for in-class initialization of "
8726 "static data member %q#D of non-integral type", decl);
8727 else
8728 error_at (DECL_SOURCE_LOCATION (decl),
8729 "in-class initialization of static data member %q#D of "
8730 "non-literal type", decl);
8731 return 1;
8734 /* Motion 10 at San Diego: If a static const integral data member is
8735 initialized with an integral constant expression, the initializer
8736 may appear either in the declaration (within the class), or in
8737 the definition, but not both. If it appears in the class, the
8738 member is a member constant. The file-scope definition is always
8739 required. */
8740 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
8742 error_at (DECL_SOURCE_LOCATION (decl),
8743 "invalid in-class initialization of static data member "
8744 "of non-integral type %qT",
8745 type);
8746 return 1;
8748 else if (!CP_TYPE_CONST_P (type))
8749 error_at (DECL_SOURCE_LOCATION (decl),
8750 "ISO C++ forbids in-class initialization of non-const "
8751 "static member %qD",
8752 decl);
8753 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8754 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
8755 "ISO C++ forbids initialization of member constant "
8756 "%qD of non-integral type %qT", decl, type);
8758 return 0;
8761 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
8762 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
8763 expressions out into temporary variables so that walk_tree doesn't
8764 step into them (c++/15764). */
8766 static tree
8767 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
8769 hash_set<tree> *pset = (hash_set<tree> *)data;
8770 tree expr = *expr_p;
8771 if (TREE_CODE (expr) == SAVE_EXPR)
8773 tree op = TREE_OPERAND (expr, 0);
8774 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
8775 if (TREE_SIDE_EFFECTS (op))
8776 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
8777 *walk_subtrees = 0;
8779 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
8780 *walk_subtrees = 0;
8781 return NULL;
8784 /* Entry point for the above. */
8786 static void
8787 stabilize_vla_size (tree size)
8789 hash_set<tree> pset;
8790 /* Break out any function calls into temporary variables. */
8791 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
8794 /* Reduce a SIZEOF_EXPR to its value. */
8796 tree
8797 fold_sizeof_expr (tree t)
8799 tree r;
8800 if (SIZEOF_EXPR_TYPE_P (t))
8801 r = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (t, 0)),
8802 SIZEOF_EXPR, false);
8803 else if (TYPE_P (TREE_OPERAND (t, 0)))
8804 r = cxx_sizeof_or_alignof_type (TREE_OPERAND (t, 0), SIZEOF_EXPR,
8805 false);
8806 else
8807 r = cxx_sizeof_or_alignof_expr (TREE_OPERAND (t, 0), SIZEOF_EXPR,
8808 false);
8809 if (r == error_mark_node)
8810 r = size_one_node;
8811 return r;
8814 /* Given the SIZE (i.e., number of elements) in an array, compute
8815 an appropriate index type for the array. If non-NULL, NAME is
8816 the name of the entity being declared. */
8818 tree
8819 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
8821 tree itype;
8822 tree osize = size;
8824 if (error_operand_p (size))
8825 return error_mark_node;
8827 if (!type_dependent_expression_p (size))
8829 tree type = TREE_TYPE (size);
8831 mark_rvalue_use (size);
8833 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
8834 && TREE_SIDE_EFFECTS (size))
8835 /* In C++98, we mark a non-constant array bound with a magic
8836 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
8837 else
8839 size = instantiate_non_dependent_expr_sfinae (size, complain);
8841 if (CLASS_TYPE_P (type)
8842 && CLASSTYPE_LITERAL_P (type))
8844 size = build_expr_type_conversion (WANT_INT, size, true);
8845 if (!size)
8847 if (!(complain & tf_error))
8848 return error_mark_node;
8849 if (name)
8850 error ("size of array %qD has non-integral type %qT",
8851 name, type);
8852 else
8853 error ("size of array has non-integral type %qT", type);
8854 size = integer_one_node;
8856 if (size == error_mark_node)
8857 return error_mark_node;
8858 type = TREE_TYPE (size);
8861 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8862 size = maybe_constant_value (size);
8864 if (!TREE_CONSTANT (size))
8865 size = osize;
8868 if (error_operand_p (size))
8869 return error_mark_node;
8871 /* The array bound must be an integer type. */
8872 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8874 if (!(complain & tf_error))
8875 return error_mark_node;
8876 if (name)
8877 error ("size of array %qD has non-integral type %qT", name, type);
8878 else
8879 error ("size of array has non-integral type %qT", type);
8880 size = integer_one_node;
8881 type = TREE_TYPE (size);
8885 /* A type is dependent if it is...an array type constructed from any
8886 dependent type or whose size is specified by a constant expression
8887 that is value-dependent. */
8888 /* We can only call value_dependent_expression_p on integral constant
8889 expressions; treat non-constant expressions as dependent, too. */
8890 if (processing_template_decl
8891 && (type_dependent_expression_p (size)
8892 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
8894 /* We cannot do any checking for a SIZE that isn't known to be
8895 constant. Just build the index type and mark that it requires
8896 structural equality checks. */
8897 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
8898 size, size_one_node));
8899 TYPE_DEPENDENT_P (itype) = 1;
8900 TYPE_DEPENDENT_P_VALID (itype) = 1;
8901 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8902 return itype;
8905 if (TREE_CODE (size) != INTEGER_CST)
8907 tree folded = cp_fully_fold (size);
8908 if (TREE_CODE (folded) == INTEGER_CST)
8909 pedwarn (location_of (size), OPT_Wpedantic,
8910 "size of array is not an integral constant-expression");
8911 /* Use the folded result for VLAs, too; it will have resolved
8912 SIZEOF_EXPR. */
8913 size = folded;
8916 /* Normally, the array-bound will be a constant. */
8917 if (TREE_CODE (size) == INTEGER_CST)
8919 /* Check to see if the array bound overflowed. Make that an
8920 error, no matter how generous we're being. */
8921 constant_expression_error (size);
8923 /* An array must have a positive number of elements. */
8924 if (tree_int_cst_lt (size, integer_zero_node))
8926 if (!(complain & tf_error))
8927 return error_mark_node;
8928 if (name)
8929 error ("size of array %qD is negative", name);
8930 else
8931 error ("size of array is negative");
8932 size = integer_one_node;
8934 /* As an extension we allow zero-sized arrays. */
8935 else if (integer_zerop (size))
8937 if (!(complain & tf_error))
8938 /* We must fail if performing argument deduction (as
8939 indicated by the state of complain), so that
8940 another substitution can be found. */
8941 return error_mark_node;
8942 else if (in_system_header_at (input_location))
8943 /* Allow them in system headers because glibc uses them. */;
8944 else if (name)
8945 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array %qD", name);
8946 else
8947 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array");
8950 else if (TREE_CONSTANT (size)
8951 /* We don't allow VLAs at non-function scopes, or during
8952 tentative template substitution. */
8953 || !at_function_scope_p ()
8954 || !(complain & tf_error))
8956 if (!(complain & tf_error))
8957 return error_mark_node;
8958 /* `(int) &fn' is not a valid array bound. */
8959 if (name)
8960 error ("size of array %qD is not an integral constant-expression",
8961 name);
8962 else
8963 error ("size of array is not an integral constant-expression");
8964 size = integer_one_node;
8966 else if (pedantic && warn_vla != 0)
8968 if (name)
8969 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array %qD", name);
8970 else
8971 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array");
8973 else if (warn_vla > 0)
8975 if (name)
8976 warning (OPT_Wvla,
8977 "variable length array %qD is used", name);
8978 else
8979 warning (OPT_Wvla,
8980 "variable length array is used");
8983 if (processing_template_decl && !TREE_CONSTANT (size))
8984 /* A variable sized array. */
8985 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
8986 else
8988 HOST_WIDE_INT saved_processing_template_decl;
8990 /* Compute the index of the largest element in the array. It is
8991 one less than the number of elements in the array. We save
8992 and restore PROCESSING_TEMPLATE_DECL so that computations in
8993 cp_build_binary_op will be appropriately folded. */
8994 saved_processing_template_decl = processing_template_decl;
8995 processing_template_decl = 0;
8996 itype = cp_build_binary_op (input_location,
8997 MINUS_EXPR,
8998 cp_convert (ssizetype, size, complain),
8999 cp_convert (ssizetype, integer_one_node,
9000 complain),
9001 complain);
9002 itype = maybe_constant_value (itype);
9003 processing_template_decl = saved_processing_template_decl;
9005 if (!TREE_CONSTANT (itype))
9007 /* A variable sized array. */
9008 itype = variable_size (itype);
9010 stabilize_vla_size (itype);
9012 if (flag_sanitize & SANITIZE_VLA
9013 && do_ubsan_in_current_function ())
9015 /* We have to add 1 -- in the ubsan routine we generate
9016 LE_EXPR rather than LT_EXPR. */
9017 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
9018 build_one_cst (TREE_TYPE (itype)));
9019 t = ubsan_instrument_vla (input_location, t);
9020 finish_expr_stmt (t);
9023 /* Make sure that there was no overflow when creating to a signed
9024 index type. (For example, on a 32-bit machine, an array with
9025 size 2^32 - 1 is too big.) */
9026 else if (TREE_CODE (itype) == INTEGER_CST
9027 && TREE_OVERFLOW (itype))
9029 if (!(complain & tf_error))
9030 return error_mark_node;
9031 error ("overflow in array dimension");
9032 TREE_OVERFLOW (itype) = 0;
9036 /* Create and return the appropriate index type. */
9037 itype = build_index_type (itype);
9039 /* If the index type were dependent, we would have returned early, so
9040 remember that it isn't. */
9041 TYPE_DEPENDENT_P (itype) = 0;
9042 TYPE_DEPENDENT_P_VALID (itype) = 1;
9043 return itype;
9046 /* Returns the scope (if any) in which the entity declared by
9047 DECLARATOR will be located. If the entity was declared with an
9048 unqualified name, NULL_TREE is returned. */
9050 tree
9051 get_scope_of_declarator (const cp_declarator *declarator)
9053 while (declarator && declarator->kind != cdk_id)
9054 declarator = declarator->declarator;
9056 /* If the declarator-id is a SCOPE_REF, the scope in which the
9057 declaration occurs is the first operand. */
9058 if (declarator
9059 && declarator->u.id.qualifying_scope)
9060 return declarator->u.id.qualifying_scope;
9062 /* Otherwise, the declarator is not a qualified name; the entity will
9063 be declared in the current scope. */
9064 return NULL_TREE;
9067 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
9068 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
9069 with this type. */
9071 static tree
9072 create_array_type_for_decl (tree name, tree type, tree size)
9074 tree itype = NULL_TREE;
9076 /* If things have already gone awry, bail now. */
9077 if (type == error_mark_node || size == error_mark_node)
9078 return error_mark_node;
9080 /* 8.3.4/1: If the type of the identifier of D contains the auto
9081 type-specifier, the program is ill-formed. */
9082 if (type_uses_auto (type))
9084 error ("%qD declared as array of %qT", name, type);
9085 return error_mark_node;
9088 /* If there are some types which cannot be array elements,
9089 issue an error-message and return. */
9090 switch (TREE_CODE (type))
9092 case VOID_TYPE:
9093 if (name)
9094 error ("declaration of %qD as array of void", name);
9095 else
9096 error ("creating array of void");
9097 return error_mark_node;
9099 case FUNCTION_TYPE:
9100 if (name)
9101 error ("declaration of %qD as array of functions", name);
9102 else
9103 error ("creating array of functions");
9104 return error_mark_node;
9106 case REFERENCE_TYPE:
9107 if (name)
9108 error ("declaration of %qD as array of references", name);
9109 else
9110 error ("creating array of references");
9111 return error_mark_node;
9113 case METHOD_TYPE:
9114 if (name)
9115 error ("declaration of %qD as array of function members", name);
9116 else
9117 error ("creating array of function members");
9118 return error_mark_node;
9120 default:
9121 break;
9124 /* [dcl.array]
9126 The constant expressions that specify the bounds of the arrays
9127 can be omitted only for the first member of the sequence. */
9128 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
9130 if (name)
9131 error ("declaration of %qD as multidimensional array must "
9132 "have bounds for all dimensions except the first",
9133 name);
9134 else
9135 error ("multidimensional array must have bounds for all "
9136 "dimensions except the first");
9138 return error_mark_node;
9141 /* Figure out the index type for the array. */
9142 if (size)
9143 itype = compute_array_index_type (name, size, tf_warning_or_error);
9145 /* [dcl.array]
9146 T is called the array element type; this type shall not be [...] an
9147 abstract class type. */
9148 abstract_virtuals_error (name, type);
9150 return build_cplus_array_type (type, itype);
9153 /* Returns the smallest location != UNKNOWN_LOCATION among the
9154 three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile],
9155 and LOCATIONS[ds_restrict]. */
9157 static location_t
9158 smallest_type_quals_location (int type_quals, const location_t* locations)
9160 location_t loc = UNKNOWN_LOCATION;
9162 if (type_quals & TYPE_QUAL_CONST)
9163 loc = locations[ds_const];
9165 if ((type_quals & TYPE_QUAL_VOLATILE)
9166 && (loc == UNKNOWN_LOCATION || locations[ds_volatile] < loc))
9167 loc = locations[ds_volatile];
9169 if ((type_quals & TYPE_QUAL_RESTRICT)
9170 && (loc == UNKNOWN_LOCATION || locations[ds_restrict] < loc))
9171 loc = locations[ds_restrict];
9173 return loc;
9176 /* Check that it's OK to declare a function with the indicated TYPE
9177 and TYPE_QUALS. SFK indicates the kind of special function (if any)
9178 that this function is. OPTYPE is the type given in a conversion
9179 operator declaration, or the class type for a constructor/destructor.
9180 Returns the actual return type of the function; that may be different
9181 than TYPE if an error occurs, or for certain special functions. */
9183 static tree
9184 check_special_function_return_type (special_function_kind sfk,
9185 tree type,
9186 tree optype,
9187 int type_quals,
9188 const location_t* locations)
9190 switch (sfk)
9192 case sfk_constructor:
9193 if (type)
9194 error ("return type specification for constructor invalid");
9195 else if (type_quals != TYPE_UNQUALIFIED)
9196 error_at (smallest_type_quals_location (type_quals, locations),
9197 "qualifiers are not allowed on constructor declaration");
9199 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
9200 type = build_pointer_type (optype);
9201 else
9202 type = void_type_node;
9203 break;
9205 case sfk_destructor:
9206 if (type)
9207 error ("return type specification for destructor invalid");
9208 else if (type_quals != TYPE_UNQUALIFIED)
9209 error_at (smallest_type_quals_location (type_quals, locations),
9210 "qualifiers are not allowed on destructor declaration");
9212 /* We can't use the proper return type here because we run into
9213 problems with ambiguous bases and covariant returns.
9214 Java classes are left unchanged because (void *) isn't a valid
9215 Java type, and we don't want to change the Java ABI. */
9216 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
9217 type = build_pointer_type (void_type_node);
9218 else
9219 type = void_type_node;
9220 break;
9222 case sfk_conversion:
9223 if (type)
9224 error ("return type specified for %<operator %T%>", optype);
9225 else if (type_quals != TYPE_UNQUALIFIED)
9226 error_at (smallest_type_quals_location (type_quals, locations),
9227 "qualifiers are not allowed on declaration of "
9228 "%<operator %T%>", optype);
9230 type = optype;
9231 break;
9233 default:
9234 gcc_unreachable ();
9237 return type;
9240 /* A variable or data member (whose unqualified name is IDENTIFIER)
9241 has been declared with the indicated TYPE. If the TYPE is not
9242 acceptable, issue an error message and return a type to use for
9243 error-recovery purposes. */
9245 tree
9246 check_var_type (tree identifier, tree type)
9248 if (VOID_TYPE_P (type))
9250 if (!identifier)
9251 error ("unnamed variable or field declared void");
9252 else if (identifier_p (identifier))
9254 gcc_assert (!IDENTIFIER_OPNAME_P (identifier));
9255 error ("variable or field %qE declared void", identifier);
9257 else
9258 error ("variable or field declared void");
9259 type = error_mark_node;
9262 return type;
9265 /* Given declspecs and a declarator (abstract or otherwise), determine
9266 the name and type of the object declared and construct a DECL node
9267 for it.
9269 DECLSPECS points to the representation of declaration-specifier
9270 sequence that precedes declarator.
9272 DECL_CONTEXT says which syntactic context this declaration is in:
9273 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
9274 FUNCDEF for a function definition. Like NORMAL but a few different
9275 error messages in each case. Return value may be zero meaning
9276 this definition is too screwy to try to parse.
9277 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
9278 handle member functions (which have FIELD context).
9279 Return value may be zero meaning this definition is too screwy to
9280 try to parse.
9281 PARM for a parameter declaration (either within a function prototype
9282 or before a function body). Make a PARM_DECL, or return void_type_node.
9283 TPARM for a template parameter declaration.
9284 CATCHPARM for a parameter declaration before a catch clause.
9285 TYPENAME if for a typename (in a cast or sizeof).
9286 Don't make a DECL node; just return the ..._TYPE node.
9287 FIELD for a struct or union field; make a FIELD_DECL.
9288 BITFIELD for a field with specified width.
9290 INITIALIZED is as for start_decl.
9292 ATTRLIST is a pointer to the list of attributes, which may be NULL
9293 if there are none; *ATTRLIST may be modified if attributes from inside
9294 the declarator should be applied to the declaration.
9296 When this function is called, scoping variables (such as
9297 CURRENT_CLASS_TYPE) should reflect the scope in which the
9298 declaration occurs, not the scope in which the new declaration will
9299 be placed. For example, on:
9301 void S::f() { ... }
9303 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
9304 should not be `S'.
9306 Returns a DECL (if a declarator is present), a TYPE (if there is no
9307 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
9308 error occurs. */
9310 tree
9311 grokdeclarator (const cp_declarator *declarator,
9312 cp_decl_specifier_seq *declspecs,
9313 enum decl_context decl_context,
9314 int initialized,
9315 tree* attrlist)
9317 tree type = NULL_TREE;
9318 int longlong = 0;
9319 int explicit_intN = 0;
9320 int virtualp, explicitp, friendp, inlinep, staticp;
9321 int explicit_int = 0;
9322 int explicit_char = 0;
9323 int defaulted_int = 0;
9325 tree typedef_decl = NULL_TREE;
9326 const char *name = NULL;
9327 tree typedef_type = NULL_TREE;
9328 /* True if this declarator is a function definition. */
9329 bool funcdef_flag = false;
9330 cp_declarator_kind innermost_code = cdk_error;
9331 int bitfield = 0;
9332 #if 0
9333 /* See the code below that used this. */
9334 tree decl_attr = NULL_TREE;
9335 #endif
9337 /* Keep track of what sort of function is being processed
9338 so that we can warn about default return values, or explicit
9339 return values which do not match prescribed defaults. */
9340 special_function_kind sfk = sfk_none;
9342 tree dname = NULL_TREE;
9343 tree ctor_return_type = NULL_TREE;
9344 enum overload_flags flags = NO_SPECIAL;
9345 /* cv-qualifiers that apply to the declarator, for a declaration of
9346 a member function. */
9347 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
9348 /* virt-specifiers that apply to the declarator, for a declaration of
9349 a member function. */
9350 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
9351 /* ref-qualifier that applies to the declarator, for a declaration of
9352 a member function. */
9353 cp_ref_qualifier rqual = REF_QUAL_NONE;
9354 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
9355 int type_quals = TYPE_UNQUALIFIED;
9356 tree raises = NULL_TREE;
9357 int template_count = 0;
9358 tree returned_attrs = NULL_TREE;
9359 tree parms = NULL_TREE;
9360 const cp_declarator *id_declarator;
9361 /* The unqualified name of the declarator; either an
9362 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
9363 tree unqualified_id;
9364 /* The class type, if any, in which this entity is located,
9365 or NULL_TREE if none. Note that this value may be different from
9366 the current class type; for example if an attempt is made to declare
9367 "A::f" inside "B", this value will be "A". */
9368 tree ctype = current_class_type;
9369 /* The NAMESPACE_DECL for the namespace in which this entity is
9370 located. If an unqualified name is used to declare the entity,
9371 this value will be NULL_TREE, even if the entity is located at
9372 namespace scope. */
9373 tree in_namespace = NULL_TREE;
9374 cp_storage_class storage_class;
9375 bool unsigned_p, signed_p, short_p, long_p, thread_p;
9376 bool type_was_error_mark_node = false;
9377 bool parameter_pack_p = declarator? declarator->parameter_pack_p : false;
9378 bool template_type_arg = false;
9379 bool template_parm_flag = false;
9380 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
9381 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
9382 bool late_return_type_p = false;
9383 bool array_parameter_p = false;
9384 source_location saved_loc = input_location;
9385 tree reqs = NULL_TREE;
9387 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
9388 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
9389 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
9390 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
9391 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
9392 explicit_intN = declspecs->explicit_intN_p;
9393 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
9395 // Was concept_p specified? Note that ds_concept
9396 // implies ds_constexpr!
9397 bool concept_p = decl_spec_seq_has_spec_p (declspecs, ds_concept);
9398 if (concept_p)
9399 constexpr_p = true;
9401 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
9402 type_quals |= TYPE_QUAL_CONST;
9403 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
9404 type_quals |= TYPE_QUAL_VOLATILE;
9405 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
9406 type_quals |= TYPE_QUAL_RESTRICT;
9408 if (decl_context == FUNCDEF)
9409 funcdef_flag = true, decl_context = NORMAL;
9410 else if (decl_context == MEMFUNCDEF)
9411 funcdef_flag = true, decl_context = FIELD;
9412 else if (decl_context == BITFIELD)
9413 bitfield = 1, decl_context = FIELD;
9414 else if (decl_context == TEMPLATE_TYPE_ARG)
9415 template_type_arg = true, decl_context = TYPENAME;
9416 else if (decl_context == TPARM)
9417 template_parm_flag = true, decl_context = PARM;
9419 if (initialized > 1)
9420 funcdef_flag = true;
9422 /* Look inside a declarator for the name being declared
9423 and get it as a string, for an error message. */
9424 for (id_declarator = declarator;
9425 id_declarator;
9426 id_declarator = id_declarator->declarator)
9428 if (id_declarator->kind != cdk_id)
9429 innermost_code = id_declarator->kind;
9431 switch (id_declarator->kind)
9433 case cdk_function:
9434 if (id_declarator->declarator
9435 && id_declarator->declarator->kind == cdk_id)
9437 sfk = id_declarator->declarator->u.id.sfk;
9438 if (sfk == sfk_destructor)
9439 flags = DTOR_FLAG;
9441 break;
9443 case cdk_id:
9445 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
9446 tree decl = id_declarator->u.id.unqualified_name;
9447 if (!decl)
9448 break;
9449 if (qualifying_scope)
9451 if (at_function_scope_p ())
9453 /* [dcl.meaning]
9455 A declarator-id shall not be qualified except
9456 for ...
9458 None of the cases are permitted in block
9459 scope. */
9460 if (qualifying_scope == global_namespace)
9461 error ("invalid use of qualified-name %<::%D%>",
9462 decl);
9463 else if (TYPE_P (qualifying_scope))
9464 error ("invalid use of qualified-name %<%T::%D%>",
9465 qualifying_scope, decl);
9466 else
9467 error ("invalid use of qualified-name %<%D::%D%>",
9468 qualifying_scope, decl);
9469 return error_mark_node;
9471 else if (TYPE_P (qualifying_scope))
9473 ctype = qualifying_scope;
9474 if (!MAYBE_CLASS_TYPE_P (ctype))
9476 error ("%q#T is not a class or a namespace", ctype);
9477 ctype = NULL_TREE;
9479 else if (innermost_code != cdk_function
9480 && current_class_type
9481 && !uniquely_derived_from_p (ctype,
9482 current_class_type))
9484 error ("invalid use of qualified-name %<%T::%D%>",
9485 qualifying_scope, decl);
9486 return error_mark_node;
9489 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
9490 in_namespace = qualifying_scope;
9492 switch (TREE_CODE (decl))
9494 case BIT_NOT_EXPR:
9496 tree type;
9498 if (innermost_code != cdk_function)
9500 error ("declaration of %qD as non-function", decl);
9501 return error_mark_node;
9503 else if (!qualifying_scope
9504 && !(current_class_type && at_class_scope_p ()))
9506 error ("declaration of %qD as non-member", decl);
9507 return error_mark_node;
9510 type = TREE_OPERAND (decl, 0);
9511 if (TYPE_P (type))
9512 type = constructor_name (type);
9513 name = identifier_to_locale (IDENTIFIER_POINTER (type));
9514 dname = decl;
9516 break;
9518 case TEMPLATE_ID_EXPR:
9520 tree fns = TREE_OPERAND (decl, 0);
9522 dname = fns;
9523 if (!identifier_p (dname))
9525 if (variable_template_p (dname))
9526 dname = DECL_NAME (dname);
9527 else
9529 gcc_assert (is_overloaded_fn (dname));
9530 dname = DECL_NAME (get_first_fn (dname));
9534 /* Fall through. */
9536 case IDENTIFIER_NODE:
9537 if (identifier_p (decl))
9538 dname = decl;
9540 if (C_IS_RESERVED_WORD (dname))
9542 error ("declarator-id missing; using reserved word %qD",
9543 dname);
9544 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9546 else if (!IDENTIFIER_TYPENAME_P (dname))
9547 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9548 else
9550 gcc_assert (flags == NO_SPECIAL);
9551 flags = TYPENAME_FLAG;
9552 ctor_return_type = TREE_TYPE (dname);
9553 sfk = sfk_conversion;
9554 if (is_typename_at_global_scope (dname))
9555 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9556 else
9557 name = "<invalid operator>";
9559 break;
9561 default:
9562 gcc_unreachable ();
9564 break;
9567 case cdk_array:
9568 case cdk_pointer:
9569 case cdk_reference:
9570 case cdk_ptrmem:
9571 break;
9573 case cdk_error:
9574 return error_mark_node;
9576 default:
9577 gcc_unreachable ();
9579 if (id_declarator->kind == cdk_id)
9580 break;
9583 /* [dcl.fct.edf]
9585 The declarator in a function-definition shall have the form
9586 D1 ( parameter-declaration-clause) ... */
9587 if (funcdef_flag && innermost_code != cdk_function)
9589 error ("function definition does not declare parameters");
9590 return error_mark_node;
9593 if (flags == TYPENAME_FLAG
9594 && innermost_code != cdk_function
9595 && ! (ctype && !declspecs->any_specifiers_p))
9597 error ("declaration of %qD as non-function", dname);
9598 return error_mark_node;
9601 if (dname
9602 && identifier_p (dname)
9603 && UDLIT_OPER_P (dname)
9604 && innermost_code != cdk_function)
9606 error ("declaration of %qD as non-function", dname);
9607 return error_mark_node;
9610 if (dname && IDENTIFIER_OPNAME_P (dname))
9612 if (typedef_p)
9614 error ("declaration of %qD as %<typedef%>", dname);
9615 return error_mark_node;
9617 else if (decl_context == PARM || decl_context == CATCHPARM)
9619 error ("declaration of %qD as parameter", dname);
9620 return error_mark_node;
9624 /* Anything declared one level down from the top level
9625 must be one of the parameters of a function
9626 (because the body is at least two levels down). */
9628 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
9629 by not allowing C++ class definitions to specify their parameters
9630 with xdecls (must be spec.d in the parmlist).
9632 Since we now wait to push a class scope until we are sure that
9633 we are in a legitimate method context, we must set oldcname
9634 explicitly (since current_class_name is not yet alive).
9636 We also want to avoid calling this a PARM if it is in a namespace. */
9638 if (decl_context == NORMAL && !toplevel_bindings_p ())
9640 cp_binding_level *b = current_binding_level;
9641 current_binding_level = b->level_chain;
9642 if (current_binding_level != 0 && toplevel_bindings_p ())
9643 decl_context = PARM;
9644 current_binding_level = b;
9647 if (name == NULL)
9648 name = decl_context == PARM ? "parameter" : "type name";
9650 if (concept_p && typedef_p)
9652 error ("%<concept%> cannot appear in a typedef declaration");
9653 return error_mark_node;
9656 if (constexpr_p && typedef_p)
9658 error ("%<constexpr%> cannot appear in a typedef declaration");
9659 return error_mark_node;
9662 /* If there were multiple types specified in the decl-specifier-seq,
9663 issue an error message. */
9664 if (declspecs->multiple_types_p)
9666 error ("two or more data types in declaration of %qs", name);
9667 return error_mark_node;
9670 if (declspecs->conflicting_specifiers_p)
9672 error ("conflicting specifiers in declaration of %qs", name);
9673 return error_mark_node;
9676 /* Extract the basic type from the decl-specifier-seq. */
9677 type = declspecs->type;
9678 if (type == error_mark_node)
9680 type = NULL_TREE;
9681 type_was_error_mark_node = true;
9683 /* If the entire declaration is itself tagged as deprecated then
9684 suppress reports of deprecated items. */
9685 if (type && TREE_DEPRECATED (type)
9686 && deprecated_state != DEPRECATED_SUPPRESS)
9687 warn_deprecated_use (type, NULL_TREE);
9688 if (type && TREE_CODE (type) == TYPE_DECL)
9690 typedef_decl = type;
9691 type = TREE_TYPE (typedef_decl);
9692 if (TREE_DEPRECATED (type)
9693 && DECL_ARTIFICIAL (typedef_decl)
9694 && deprecated_state != DEPRECATED_SUPPRESS)
9695 warn_deprecated_use (type, NULL_TREE);
9697 /* No type at all: default to `int', and set DEFAULTED_INT
9698 because it was not a user-defined typedef. */
9699 if (type == NULL_TREE)
9701 if (signed_p || unsigned_p || long_p || short_p)
9703 /* These imply 'int'. */
9704 type = integer_type_node;
9705 defaulted_int = 1;
9707 /* If we just have "complex", it is equivalent to "complex double". */
9708 else if (!longlong && !explicit_intN
9709 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
9711 type = double_type_node;
9712 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
9713 "ISO C++ does not support plain %<complex%> meaning "
9714 "%<double complex%>");
9717 /* Gather flags. */
9718 explicit_int = declspecs->explicit_int_p;
9719 explicit_char = declspecs->explicit_char_p;
9721 #if 0
9722 /* See the code below that used this. */
9723 if (typedef_decl)
9724 decl_attr = DECL_ATTRIBUTES (typedef_decl);
9725 #endif
9726 typedef_type = type;
9729 if (sfk != sfk_conversion)
9730 ctor_return_type = ctype;
9732 if (sfk != sfk_none)
9734 type = check_special_function_return_type (sfk, type,
9735 ctor_return_type,
9736 type_quals,
9737 declspecs->locations);
9738 type_quals = TYPE_UNQUALIFIED;
9740 else if (type == NULL_TREE)
9742 int is_main;
9744 explicit_int = -1;
9746 /* We handle `main' specially here, because 'main () { }' is so
9747 common. With no options, it is allowed. With -Wreturn-type,
9748 it is a warning. It is only an error with -pedantic-errors. */
9749 is_main = (funcdef_flag
9750 && dname && identifier_p (dname)
9751 && MAIN_NAME_P (dname)
9752 && ctype == NULL_TREE
9753 && in_namespace == NULL_TREE
9754 && current_namespace == global_namespace);
9756 if (type_was_error_mark_node)
9757 /* We've already issued an error, don't complain more. */;
9758 else if (in_system_header_at (input_location) || flag_ms_extensions)
9759 /* Allow it, sigh. */;
9760 else if (! is_main)
9761 permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
9762 else if (pedantic)
9763 pedwarn (input_location, OPT_Wpedantic,
9764 "ISO C++ forbids declaration of %qs with no type", name);
9765 else
9766 warning (OPT_Wreturn_type,
9767 "ISO C++ forbids declaration of %qs with no type", name);
9769 if (type_was_error_mark_node && template_parm_flag)
9770 /* FIXME we should be able to propagate the error_mark_node as is
9771 for other contexts too. */
9772 type = error_mark_node;
9773 else
9774 type = integer_type_node;
9777 ctype = NULL_TREE;
9779 if (explicit_intN)
9781 if (! int_n_enabled_p[declspecs->int_n_idx])
9783 error ("%<__int%d%> is not supported by this target",
9784 int_n_data[declspecs->int_n_idx].bitsize);
9785 explicit_intN = false;
9787 else if (pedantic && ! in_system_header_at (input_location))
9788 pedwarn (input_location, OPT_Wpedantic,
9789 "ISO C++ does not support %<__int%d%> for %qs",
9790 int_n_data[declspecs->int_n_idx].bitsize, name);
9793 /* Now process the modifiers that were specified
9794 and check for invalid combinations. */
9796 /* Long double is a special combination. */
9797 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
9799 long_p = false;
9800 type = cp_build_qualified_type (long_double_type_node,
9801 cp_type_quals (type));
9804 /* Check all other uses of type modifiers. */
9806 if (unsigned_p || signed_p || long_p || short_p)
9808 int ok = 0;
9810 if ((signed_p || unsigned_p) && TREE_CODE (type) != INTEGER_TYPE)
9811 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9812 else if (signed_p && unsigned_p)
9813 error ("%<signed%> and %<unsigned%> specified together for %qs", name);
9814 else if (longlong && TREE_CODE (type) != INTEGER_TYPE)
9815 error ("%<long long%> invalid for %qs", name);
9816 else if (long_p && TREE_CODE (type) == REAL_TYPE)
9817 error ("%<long%> invalid for %qs", name);
9818 else if (short_p && TREE_CODE (type) == REAL_TYPE)
9819 error ("%<short%> invalid for %qs", name);
9820 else if ((long_p || short_p) && TREE_CODE (type) != INTEGER_TYPE)
9821 error ("%<long%> or %<short%> invalid for %qs", name);
9822 else if ((long_p || short_p || explicit_char || explicit_int) && explicit_intN)
9823 error ("%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs", name);
9824 else if ((long_p || short_p) && explicit_char)
9825 error ("%<long%> or %<short%> specified with char for %qs", name);
9826 else if (long_p && short_p)
9827 error ("%<long%> and %<short%> specified together for %qs", name);
9828 else if (type == char16_type_node || type == char32_type_node)
9830 if (signed_p || unsigned_p)
9831 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9832 else if (short_p || long_p)
9833 error ("%<short%> or %<long%> invalid for %qs", name);
9835 else
9837 ok = 1;
9838 if (!explicit_int && !defaulted_int && !explicit_char && !explicit_intN && pedantic)
9840 pedwarn (input_location, OPT_Wpedantic,
9841 "long, short, signed or unsigned used invalidly for %qs",
9842 name);
9843 if (flag_pedantic_errors)
9844 ok = 0;
9848 /* Discard the type modifiers if they are invalid. */
9849 if (! ok)
9851 unsigned_p = false;
9852 signed_p = false;
9853 long_p = false;
9854 short_p = false;
9855 longlong = 0;
9859 /* Decide whether an integer type is signed or not.
9860 Optionally treat bitfields as signed by default. */
9861 if (unsigned_p
9862 /* [class.bit]
9864 It is implementation-defined whether a plain (neither
9865 explicitly signed or unsigned) char, short, int, or long
9866 bit-field is signed or unsigned.
9868 Naturally, we extend this to long long as well. Note that
9869 this does not include wchar_t. */
9870 || (bitfield && !flag_signed_bitfields
9871 && !signed_p
9872 /* A typedef for plain `int' without `signed' can be
9873 controlled just like plain `int', but a typedef for
9874 `signed int' cannot be so controlled. */
9875 && !(typedef_decl
9876 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
9877 && TREE_CODE (type) == INTEGER_TYPE
9878 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
9880 if (explicit_intN)
9881 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
9882 else if (longlong)
9883 type = long_long_unsigned_type_node;
9884 else if (long_p)
9885 type = long_unsigned_type_node;
9886 else if (short_p)
9887 type = short_unsigned_type_node;
9888 else if (type == char_type_node)
9889 type = unsigned_char_type_node;
9890 else if (typedef_decl)
9891 type = unsigned_type_for (type);
9892 else
9893 type = unsigned_type_node;
9895 else if (signed_p && type == char_type_node)
9896 type = signed_char_type_node;
9897 else if (explicit_intN)
9898 type = int_n_trees[declspecs->int_n_idx].signed_type;
9899 else if (longlong)
9900 type = long_long_integer_type_node;
9901 else if (long_p)
9902 type = long_integer_type_node;
9903 else if (short_p)
9904 type = short_integer_type_node;
9906 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
9908 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
9909 error ("complex invalid for %qs", name);
9910 /* If a modifier is specified, the resulting complex is the complex
9911 form of TYPE. E.g, "complex short" is "complex short int". */
9912 else if (type == integer_type_node)
9913 type = complex_integer_type_node;
9914 else if (type == float_type_node)
9915 type = complex_float_type_node;
9916 else if (type == double_type_node)
9917 type = complex_double_type_node;
9918 else if (type == long_double_type_node)
9919 type = complex_long_double_type_node;
9920 else
9921 type = build_complex_type (type);
9924 /* If we're using the injected-class-name to form a compound type or a
9925 declaration, replace it with the underlying class so we don't get
9926 redundant typedefs in the debug output. But if we are returning the
9927 type unchanged, leave it alone so that it's available to
9928 maybe_get_template_decl_from_type_decl. */
9929 if (CLASS_TYPE_P (type)
9930 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
9931 && type == TREE_TYPE (TYPE_NAME (type))
9932 && (declarator || type_quals))
9933 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
9935 type_quals |= cp_type_quals (type);
9936 type = cp_build_qualified_type_real
9937 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
9938 || declspecs->decltype_p)
9939 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
9940 /* We might have ignored or rejected some of the qualifiers. */
9941 type_quals = cp_type_quals (type);
9943 staticp = 0;
9944 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
9945 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
9946 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
9948 storage_class = declspecs->storage_class;
9949 if (storage_class == sc_static)
9950 staticp = 1 + (decl_context == FIELD);
9952 if (virtualp)
9954 if (staticp == 2)
9956 error ("member %qD cannot be declared both %<virtual%> "
9957 "and %<static%>", dname);
9958 storage_class = sc_none;
9959 staticp = 0;
9961 if (constexpr_p)
9962 error ("member %qD cannot be declared both %<virtual%> "
9963 "and %<constexpr%>", dname);
9965 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
9967 /* Issue errors about use of storage classes for parameters. */
9968 if (decl_context == PARM)
9970 if (typedef_p)
9972 error ("typedef declaration invalid in parameter declaration");
9973 return error_mark_node;
9975 else if (template_parm_flag && storage_class != sc_none)
9977 error ("storage class specified for template parameter %qs", name);
9978 return error_mark_node;
9980 else if (storage_class == sc_static
9981 || storage_class == sc_extern
9982 || thread_p)
9983 error ("storage class specifiers invalid in parameter declarations");
9985 /* Function parameters cannot be concept. */
9986 if (concept_p)
9987 error ("a parameter cannot be declared %<concept%>");
9988 /* Function parameters cannot be constexpr. If we saw one, moan
9989 and pretend it wasn't there. */
9990 else if (constexpr_p)
9992 error ("a parameter cannot be declared %<constexpr%>");
9993 constexpr_p = 0;
9997 /* Give error if `virtual' is used outside of class declaration. */
9998 if (virtualp
9999 && (current_class_name == NULL_TREE || decl_context != FIELD))
10001 error_at (declspecs->locations[ds_virtual],
10002 "%<virtual%> outside class declaration");
10003 virtualp = 0;
10006 /* Static anonymous unions are dealt with here. */
10007 if (staticp && decl_context == TYPENAME
10008 && declspecs->type
10009 && ANON_AGGR_TYPE_P (declspecs->type))
10010 decl_context = FIELD;
10012 /* Warn about storage classes that are invalid for certain
10013 kinds of declarations (parameters, typenames, etc.). */
10014 if (thread_p
10015 && ((storage_class
10016 && storage_class != sc_extern
10017 && storage_class != sc_static)
10018 || typedef_p))
10020 error ("multiple storage classes in declaration of %qs", name);
10021 thread_p = false;
10023 if (decl_context != NORMAL
10024 && ((storage_class != sc_none
10025 && storage_class != sc_mutable)
10026 || thread_p))
10028 if ((decl_context == PARM || decl_context == CATCHPARM)
10029 && (storage_class == sc_register
10030 || storage_class == sc_auto))
10032 else if (typedef_p)
10034 else if (decl_context == FIELD
10035 /* C++ allows static class elements. */
10036 && storage_class == sc_static)
10037 /* C++ also allows inlines and signed and unsigned elements,
10038 but in those cases we don't come in here. */
10040 else
10042 if (decl_context == FIELD)
10043 error ("storage class specified for %qs", name);
10044 else
10046 if (decl_context == PARM || decl_context == CATCHPARM)
10047 error ("storage class specified for parameter %qs", name);
10048 else
10049 error ("storage class specified for typename");
10051 if (storage_class == sc_register
10052 || storage_class == sc_auto
10053 || storage_class == sc_extern
10054 || thread_p)
10055 storage_class = sc_none;
10058 else if (storage_class == sc_extern && funcdef_flag
10059 && ! toplevel_bindings_p ())
10060 error ("nested function %qs declared %<extern%>", name);
10061 else if (toplevel_bindings_p ())
10063 if (storage_class == sc_auto)
10064 error ("top-level declaration of %qs specifies %<auto%>", name);
10066 else if (thread_p
10067 && storage_class != sc_extern
10068 && storage_class != sc_static)
10070 if (declspecs->gnu_thread_keyword_p)
10071 pedwarn (input_location, 0, "function-scope %qs implicitly auto and "
10072 "declared %<__thread%>", name);
10074 /* When thread_local is applied to a variable of block scope the
10075 storage-class-specifier static is implied if it does not appear
10076 explicitly. */
10077 storage_class = declspecs->storage_class = sc_static;
10078 staticp = 1;
10081 if (storage_class && friendp)
10083 error ("storage class specifiers invalid in friend function declarations");
10084 storage_class = sc_none;
10085 staticp = 0;
10088 if (!id_declarator)
10089 unqualified_id = NULL_TREE;
10090 else
10092 unqualified_id = id_declarator->u.id.unqualified_name;
10093 switch (TREE_CODE (unqualified_id))
10095 case BIT_NOT_EXPR:
10096 unqualified_id = TREE_OPERAND (unqualified_id, 0);
10097 if (TYPE_P (unqualified_id))
10098 unqualified_id = constructor_name (unqualified_id);
10099 break;
10101 case IDENTIFIER_NODE:
10102 case TEMPLATE_ID_EXPR:
10103 break;
10105 default:
10106 gcc_unreachable ();
10110 if (declspecs->std_attributes)
10112 /* Apply the c++11 attributes to the type preceding them. */
10113 input_location = declspecs->locations[ds_std_attribute];
10114 decl_attributes (&type, declspecs->std_attributes, 0);
10115 input_location = saved_loc;
10118 /* Determine the type of the entity declared by recurring on the
10119 declarator. */
10120 for (; declarator; declarator = declarator->declarator)
10122 const cp_declarator *inner_declarator;
10123 tree attrs;
10125 if (type == error_mark_node)
10126 return error_mark_node;
10128 attrs = declarator->attributes;
10129 if (attrs)
10131 int attr_flags;
10133 attr_flags = 0;
10134 if (declarator == NULL || declarator->kind == cdk_id)
10135 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
10136 if (declarator->kind == cdk_function)
10137 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
10138 if (declarator->kind == cdk_array)
10139 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
10140 returned_attrs = decl_attributes (&type,
10141 chainon (returned_attrs, attrs),
10142 attr_flags);
10145 if (declarator->kind == cdk_id)
10146 break;
10148 inner_declarator = declarator->declarator;
10150 switch (declarator->kind)
10152 case cdk_array:
10153 type = create_array_type_for_decl (dname, type,
10154 declarator->u.array.bounds);
10155 if (!valid_array_size_p (input_location, type, dname))
10156 type = error_mark_node;
10158 if (declarator->std_attributes)
10159 /* [dcl.array]/1:
10161 The optional attribute-specifier-seq appertains to the
10162 array. */
10163 returned_attrs = chainon (returned_attrs,
10164 declarator->std_attributes);
10165 break;
10167 case cdk_function:
10169 tree arg_types;
10170 int funcdecl_p;
10172 /* Declaring a function type.
10173 Make sure we have a valid type for the function to return. */
10175 if (type_quals != TYPE_UNQUALIFIED)
10177 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
10178 warning (OPT_Wignored_qualifiers,
10179 "type qualifiers ignored on function return type");
10180 /* We now know that the TYPE_QUALS don't apply to the
10181 decl, but to its return type. */
10182 type_quals = TYPE_UNQUALIFIED;
10185 /* Error about some types functions can't return. */
10187 if (TREE_CODE (type) == FUNCTION_TYPE)
10189 error ("%qs declared as function returning a function", name);
10190 return error_mark_node;
10192 if (TREE_CODE (type) == ARRAY_TYPE)
10194 error ("%qs declared as function returning an array", name);
10195 return error_mark_node;
10198 input_location = declspecs->locations[ds_type_spec];
10199 abstract_virtuals_error (ACU_RETURN, type);
10200 input_location = saved_loc;
10202 /* Pick up type qualifiers which should be applied to `this'. */
10203 memfn_quals = declarator->u.function.qualifiers;
10204 /* Pick up virt-specifiers. */
10205 virt_specifiers = declarator->u.function.virt_specifiers;
10206 /* And ref-qualifier, too */
10207 rqual = declarator->u.function.ref_qualifier;
10208 /* And tx-qualifier. */
10209 tree tx_qual = declarator->u.function.tx_qualifier;
10210 /* Pick up the exception specifications. */
10211 raises = declarator->u.function.exception_specification;
10212 /* If the exception-specification is ill-formed, let's pretend
10213 there wasn't one. */
10214 if (raises == error_mark_node)
10215 raises = NULL_TREE;
10217 if (reqs)
10218 error_at (location_of (reqs), "requires-clause on return type");
10219 reqs = declarator->u.function.requires_clause;
10221 /* Say it's a definition only for the CALL_EXPR
10222 closest to the identifier. */
10223 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
10225 /* Handle a late-specified return type. */
10226 if (funcdecl_p)
10228 if (type_uses_auto (type))
10230 if (!declarator->u.function.late_return_type)
10232 if (current_class_type
10233 && LAMBDA_TYPE_P (current_class_type))
10234 /* OK for C++11 lambdas. */;
10235 else if (cxx_dialect < cxx14)
10237 error ("%qs function uses "
10238 "%<auto%> type specifier without trailing "
10239 "return type", name);
10240 inform (input_location, "deduced return type "
10241 "only available with -std=c++14 or "
10242 "-std=gnu++14");
10244 else if (virtualp)
10246 error ("virtual function cannot "
10247 "have deduced return type");
10248 virtualp = false;
10251 else if (!is_auto (type) && sfk != sfk_conversion)
10253 error ("%qs function with trailing return type has"
10254 " %qT as its type rather than plain %<auto%>",
10255 name, type);
10256 return error_mark_node;
10259 else if (declarator->u.function.late_return_type
10260 && sfk != sfk_conversion)
10262 if (cxx_dialect < cxx11)
10263 /* Not using maybe_warn_cpp0x because this should
10264 always be an error. */
10265 error ("trailing return type only available with "
10266 "-std=c++11 or -std=gnu++11");
10267 else
10268 error ("%qs function with trailing return type not "
10269 "declared with %<auto%> type specifier", name);
10270 return error_mark_node;
10273 type = splice_late_return_type
10274 (type, declarator->u.function.late_return_type);
10275 if (type == error_mark_node)
10276 return error_mark_node;
10278 if (declarator->u.function.late_return_type)
10279 late_return_type_p = true;
10281 if (ctype == NULL_TREE
10282 && decl_context == FIELD
10283 && funcdecl_p
10284 && friendp == 0)
10285 ctype = current_class_type;
10287 if (ctype && (sfk == sfk_constructor
10288 || sfk == sfk_destructor))
10290 /* We are within a class's scope. If our declarator name
10291 is the same as the class name, and we are defining
10292 a function, then it is a constructor/destructor, and
10293 therefore returns a void type. */
10295 /* ISO C++ 12.4/2. A destructor may not be declared
10296 const or volatile. A destructor may not be static.
10297 A destructor may not be declared with ref-qualifier.
10299 ISO C++ 12.1. A constructor may not be declared
10300 const or volatile. A constructor may not be
10301 virtual. A constructor may not be static.
10302 A constructor may not be declared with ref-qualifier. */
10303 if (staticp == 2)
10304 error ((flags == DTOR_FLAG)
10305 ? G_("destructor cannot be static member function")
10306 : G_("constructor cannot be static member function"));
10307 if (memfn_quals)
10309 error ((flags == DTOR_FLAG)
10310 ? G_("destructors may not be cv-qualified")
10311 : G_("constructors may not be cv-qualified"));
10312 memfn_quals = TYPE_UNQUALIFIED;
10315 if (rqual)
10317 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
10318 error ((flags == DTOR_FLAG)
10319 ? "destructors may not be ref-qualified"
10320 : "constructors may not be ref-qualified");
10321 rqual = REF_QUAL_NONE;
10324 if (decl_context == FIELD
10325 && !member_function_or_else (ctype,
10326 current_class_type,
10327 flags))
10328 return error_mark_node;
10330 if (flags != DTOR_FLAG)
10332 /* It's a constructor. */
10333 if (explicitp == 1)
10334 explicitp = 2;
10335 if (virtualp)
10337 permerror (input_location,
10338 "constructors cannot be declared %<virtual%>");
10339 virtualp = 0;
10341 if (decl_context == FIELD
10342 && sfk != sfk_constructor)
10343 return error_mark_node;
10345 if (decl_context == FIELD)
10346 staticp = 0;
10348 else if (friendp)
10350 if (virtualp)
10352 /* Cannot be both friend and virtual. */
10353 error ("virtual functions cannot be friends");
10354 friendp = 0;
10356 if (decl_context == NORMAL)
10357 error ("friend declaration not in class definition");
10358 if (current_function_decl && funcdef_flag)
10359 error ("can%'t define friend function %qs in a local "
10360 "class definition",
10361 name);
10363 else if (ctype && sfk == sfk_conversion)
10365 if (explicitp == 1)
10367 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
10368 explicitp = 2;
10370 if (late_return_type_p)
10371 error ("a conversion function cannot have a trailing return type");
10374 arg_types = grokparms (declarator->u.function.parameters,
10375 &parms);
10377 if (inner_declarator
10378 && inner_declarator->kind == cdk_id
10379 && inner_declarator->u.id.sfk == sfk_destructor
10380 && arg_types != void_list_node)
10382 error ("destructors may not have parameters");
10383 arg_types = void_list_node;
10384 parms = NULL_TREE;
10387 type = build_function_type (type, arg_types);
10389 tree attrs = declarator->std_attributes;
10390 if (tx_qual)
10392 tree att = build_tree_list (tx_qual, NULL_TREE);
10393 /* transaction_safe applies to the type, but
10394 transaction_safe_dynamic applies to the function. */
10395 if (is_attribute_p ("transaction_safe", tx_qual))
10396 attrs = chainon (attrs, att);
10397 else
10398 returned_attrs = chainon (returned_attrs, att);
10400 if (attrs)
10401 /* [dcl.fct]/2:
10403 The optional attribute-specifier-seq appertains to
10404 the function type. */
10405 decl_attributes (&type, attrs, 0);
10407 break;
10409 case cdk_pointer:
10410 case cdk_reference:
10411 case cdk_ptrmem:
10412 /* Filter out pointers-to-references and references-to-references.
10413 We can get these if a TYPE_DECL is used. */
10415 if (TREE_CODE (type) == REFERENCE_TYPE)
10417 if (declarator->kind != cdk_reference)
10419 error ("cannot declare pointer to %q#T", type);
10420 type = TREE_TYPE (type);
10423 /* In C++0x, we allow reference to reference declarations
10424 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
10425 and template type arguments [14.3.1/4 temp.arg.type]. The
10426 check for direct reference to reference declarations, which
10427 are still forbidden, occurs below. Reasoning behind the change
10428 can be found in DR106, DR540, and the rvalue reference
10429 proposals. */
10430 else if (cxx_dialect == cxx98)
10432 error ("cannot declare reference to %q#T", type);
10433 type = TREE_TYPE (type);
10436 else if (VOID_TYPE_P (type))
10438 if (declarator->kind == cdk_reference)
10439 error ("cannot declare reference to %q#T", type);
10440 else if (declarator->kind == cdk_ptrmem)
10441 error ("cannot declare pointer to %q#T member", type);
10444 /* We now know that the TYPE_QUALS don't apply to the decl,
10445 but to the target of the pointer. */
10446 type_quals = TYPE_UNQUALIFIED;
10448 /* This code used to handle METHOD_TYPE, but I don't think it's
10449 possible to get it here anymore. */
10450 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
10451 if (declarator->kind == cdk_ptrmem
10452 && TREE_CODE (type) == FUNCTION_TYPE)
10454 memfn_quals |= type_memfn_quals (type);
10455 type = build_memfn_type (type,
10456 declarator->u.pointer.class_type,
10457 memfn_quals,
10458 rqual);
10459 if (type == error_mark_node)
10460 return error_mark_node;
10462 rqual = REF_QUAL_NONE;
10463 memfn_quals = TYPE_UNQUALIFIED;
10466 if (TREE_CODE (type) == FUNCTION_TYPE
10467 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
10468 || type_memfn_rqual (type) != REF_QUAL_NONE))
10469 error (declarator->kind == cdk_reference
10470 ? G_("cannot declare reference to qualified function type %qT")
10471 : G_("cannot declare pointer to qualified function type %qT"),
10472 type);
10474 /* When the pointed-to type involves components of variable size,
10475 care must be taken to ensure that the size evaluation code is
10476 emitted early enough to dominate all the possible later uses
10477 and late enough for the variables on which it depends to have
10478 been assigned.
10480 This is expected to happen automatically when the pointed-to
10481 type has a name/declaration of it's own, but special attention
10482 is required if the type is anonymous.
10484 We handle the NORMAL and FIELD contexts here by inserting a
10485 dummy statement that just evaluates the size at a safe point
10486 and ensures it is not deferred until e.g. within a deeper
10487 conditional context (c++/43555).
10489 We expect nothing to be needed here for PARM or TYPENAME.
10490 Evaluating the size at this point for TYPENAME would
10491 actually be incorrect, as we might be in the middle of an
10492 expression with side effects on the pointed-to type size
10493 "arguments" prior to the pointer declaration point and the
10494 size evaluation could end up prior to the side effects. */
10496 if (!TYPE_NAME (type)
10497 && (decl_context == NORMAL || decl_context == FIELD)
10498 && at_function_scope_p ()
10499 && variably_modified_type_p (type, NULL_TREE))
10501 TYPE_NAME (type) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
10502 NULL_TREE, type);
10503 add_decl_expr (TYPE_NAME (type));
10506 if (declarator->kind == cdk_reference)
10508 /* In C++0x, the type we are creating a reference to might be
10509 a typedef which is itself a reference type. In that case,
10510 we follow the reference collapsing rules in
10511 [7.1.3/8 dcl.typedef] to create the final reference type:
10513 "If a typedef TD names a type that is a reference to a type
10514 T, an attempt to create the type 'lvalue reference to cv TD'
10515 creates the type 'lvalue reference to T,' while an attempt
10516 to create the type "rvalue reference to cv TD' creates the
10517 type TD."
10519 if (VOID_TYPE_P (type))
10520 /* We already gave an error. */;
10521 else if (TREE_CODE (type) == REFERENCE_TYPE)
10523 if (declarator->u.reference.rvalue_ref)
10524 /* Leave type alone. */;
10525 else
10526 type = cp_build_reference_type (TREE_TYPE (type), false);
10528 else
10529 type = cp_build_reference_type
10530 (type, declarator->u.reference.rvalue_ref);
10532 /* In C++0x, we need this check for direct reference to
10533 reference declarations, which are forbidden by
10534 [8.3.2/5 dcl.ref]. Reference to reference declarations
10535 are only allowed indirectly through typedefs and template
10536 type arguments. Example:
10538 void foo(int & &); // invalid ref-to-ref decl
10540 typedef int & int_ref;
10541 void foo(int_ref &); // valid ref-to-ref decl
10543 if (inner_declarator && inner_declarator->kind == cdk_reference)
10544 error ("cannot declare reference to %q#T, which is not "
10545 "a typedef or a template type argument", type);
10547 else if (TREE_CODE (type) == METHOD_TYPE)
10548 type = build_ptrmemfunc_type (build_pointer_type (type));
10549 else if (declarator->kind == cdk_ptrmem)
10551 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
10552 != NAMESPACE_DECL);
10553 if (declarator->u.pointer.class_type == error_mark_node)
10554 /* We will already have complained. */
10555 type = error_mark_node;
10556 else
10557 type = build_ptrmem_type (declarator->u.pointer.class_type,
10558 type);
10560 else
10561 type = build_pointer_type (type);
10563 /* Process a list of type modifier keywords (such as
10564 const or volatile) that were given inside the `*' or `&'. */
10566 if (declarator->u.pointer.qualifiers)
10568 type
10569 = cp_build_qualified_type (type,
10570 declarator->u.pointer.qualifiers);
10571 type_quals = cp_type_quals (type);
10574 /* Apply C++11 attributes to the pointer, and not to the
10575 type pointed to. This is unlike what is done for GNU
10576 attributes above. It is to comply with [dcl.ptr]/1:
10578 [the optional attribute-specifier-seq (7.6.1) appertains
10579 to the pointer and not to the object pointed to]. */
10580 if (declarator->std_attributes)
10581 decl_attributes (&type, declarator->std_attributes,
10584 ctype = NULL_TREE;
10585 break;
10587 case cdk_error:
10588 break;
10590 default:
10591 gcc_unreachable ();
10595 /* A `constexpr' specifier used in an object declaration declares
10596 the object as `const'. */
10597 if (constexpr_p && innermost_code != cdk_function)
10599 /* DR1688 says that a `constexpr' specifier in combination with
10600 `volatile' is valid. */
10602 if (TREE_CODE (type) != REFERENCE_TYPE)
10604 type_quals |= TYPE_QUAL_CONST;
10605 type = cp_build_qualified_type (type, type_quals);
10609 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
10610 && TREE_CODE (type) != FUNCTION_TYPE
10611 && TREE_CODE (type) != METHOD_TYPE
10612 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
10614 error ("template-id %qD used as a declarator",
10615 unqualified_id);
10616 unqualified_id = dname;
10619 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
10620 qualified with a class-name, turn it into a METHOD_TYPE, unless
10621 we know that the function is static. We take advantage of this
10622 opportunity to do other processing that pertains to entities
10623 explicitly declared to be class members. Note that if DECLARATOR
10624 is non-NULL, we know it is a cdk_id declarator; otherwise, we
10625 would not have exited the loop above. */
10626 if (declarator
10627 && declarator->u.id.qualifying_scope
10628 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
10630 ctype = declarator->u.id.qualifying_scope;
10631 ctype = TYPE_MAIN_VARIANT (ctype);
10632 template_count = num_template_headers_for_class (ctype);
10634 if (ctype == current_class_type)
10636 if (friendp)
10638 permerror (input_location, "member functions are implicitly friends of their class");
10639 friendp = 0;
10641 else
10642 permerror (declarator->id_loc,
10643 "extra qualification %<%T::%> on member %qs",
10644 ctype, name);
10646 else if (/* If the qualifying type is already complete, then we
10647 can skip the following checks. */
10648 !COMPLETE_TYPE_P (ctype)
10649 && (/* If the function is being defined, then
10650 qualifying type must certainly be complete. */
10651 funcdef_flag
10652 /* A friend declaration of "T::f" is OK, even if
10653 "T" is a template parameter. But, if this
10654 function is not a friend, the qualifying type
10655 must be a class. */
10656 || (!friendp && !CLASS_TYPE_P (ctype))
10657 /* For a declaration, the type need not be
10658 complete, if either it is dependent (since there
10659 is no meaningful definition of complete in that
10660 case) or the qualifying class is currently being
10661 defined. */
10662 || !(dependent_type_p (ctype)
10663 || currently_open_class (ctype)))
10664 /* Check that the qualifying type is complete. */
10665 && !complete_type_or_else (ctype, NULL_TREE))
10666 return error_mark_node;
10667 else if (TREE_CODE (type) == FUNCTION_TYPE)
10669 if (current_class_type
10670 && (!friendp || funcdef_flag))
10672 error (funcdef_flag
10673 ? G_("cannot define member function %<%T::%s%> "
10674 "within %<%T%>")
10675 : G_("cannot declare member function %<%T::%s%> "
10676 "within %<%T%>"),
10677 ctype, name, current_class_type);
10678 return error_mark_node;
10681 else if (typedef_p && current_class_type)
10683 error ("cannot declare member %<%T::%s%> within %qT",
10684 ctype, name, current_class_type);
10685 return error_mark_node;
10689 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
10690 ctype = current_class_type;
10692 /* Now TYPE has the actual type. */
10694 if (returned_attrs)
10696 if (attrlist)
10697 *attrlist = chainon (returned_attrs, *attrlist);
10698 else
10699 attrlist = &returned_attrs;
10702 if (declarator
10703 && declarator->kind == cdk_id
10704 && declarator->std_attributes)
10705 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
10706 a declarator-id appertains to the entity that is declared. */
10707 *attrlist = chainon (*attrlist, declarator->std_attributes);
10709 /* Handle parameter packs. */
10710 if (parameter_pack_p)
10712 if (decl_context == PARM)
10713 /* Turn the type into a pack expansion.*/
10714 type = make_pack_expansion (type);
10715 else
10716 error ("non-parameter %qs cannot be a parameter pack", name);
10719 if ((decl_context == FIELD || decl_context == PARM)
10720 && !processing_template_decl
10721 && variably_modified_type_p (type, NULL_TREE))
10723 if (decl_context == FIELD)
10724 error ("data member may not have variably modified type %qT", type);
10725 else
10726 error ("parameter may not have variably modified type %qT", type);
10727 type = error_mark_node;
10730 if (explicitp == 1 || (explicitp && friendp))
10732 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
10733 in the declaration of a constructor or conversion function within
10734 a class definition. */
10735 if (!current_class_type)
10736 error_at (declspecs->locations[ds_explicit],
10737 "%<explicit%> outside class declaration");
10738 else if (friendp)
10739 error_at (declspecs->locations[ds_explicit],
10740 "%<explicit%> in friend declaration");
10741 else
10742 error_at (declspecs->locations[ds_explicit],
10743 "only declarations of constructors and conversion operators "
10744 "can be %<explicit%>");
10745 explicitp = 0;
10748 if (storage_class == sc_mutable)
10750 if (decl_context != FIELD || friendp)
10752 error ("non-member %qs cannot be declared %<mutable%>", name);
10753 storage_class = sc_none;
10755 else if (decl_context == TYPENAME || typedef_p)
10757 error ("non-object member %qs cannot be declared %<mutable%>", name);
10758 storage_class = sc_none;
10760 else if (TREE_CODE (type) == FUNCTION_TYPE
10761 || TREE_CODE (type) == METHOD_TYPE)
10763 error ("function %qs cannot be declared %<mutable%>", name);
10764 storage_class = sc_none;
10766 else if (staticp)
10768 error ("static %qs cannot be declared %<mutable%>", name);
10769 storage_class = sc_none;
10771 else if (type_quals & TYPE_QUAL_CONST)
10773 error ("const %qs cannot be declared %<mutable%>", name);
10774 storage_class = sc_none;
10776 else if (TREE_CODE (type) == REFERENCE_TYPE)
10778 permerror (input_location, "reference %qs cannot be declared "
10779 "%<mutable%>", name);
10780 storage_class = sc_none;
10784 /* If this is declaring a typedef name, return a TYPE_DECL. */
10785 if (typedef_p && decl_context != TYPENAME)
10787 tree decl;
10789 /* Note that the grammar rejects storage classes
10790 in typenames, fields or parameters. */
10791 if (current_lang_name == lang_name_java)
10792 TYPE_FOR_JAVA (type) = 1;
10794 /* This declaration:
10796 typedef void f(int) const;
10798 declares a function type which is not a member of any
10799 particular class, but which is cv-qualified; for
10800 example "f S::*" declares a pointer to a const-qualified
10801 member function of S. We record the cv-qualification in the
10802 function type. */
10803 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
10805 type = apply_memfn_quals (type, memfn_quals, rqual);
10807 /* We have now dealt with these qualifiers. */
10808 memfn_quals = TYPE_UNQUALIFIED;
10809 rqual = REF_QUAL_NONE;
10812 if (type_uses_auto (type))
10814 error ("typedef declared %<auto%>");
10815 type = error_mark_node;
10818 if (reqs)
10819 error_at (location_of (reqs), "requires-clause on typedef");
10821 if (decl_context == FIELD)
10822 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
10823 else
10824 decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
10825 if (id_declarator && declarator->u.id.qualifying_scope) {
10826 error_at (DECL_SOURCE_LOCATION (decl),
10827 "typedef name may not be a nested-name-specifier");
10828 TREE_TYPE (decl) = error_mark_node;
10831 if (decl_context != FIELD)
10833 if (!current_function_decl)
10834 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
10835 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl)
10836 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
10837 (current_function_decl)))
10838 /* The TYPE_DECL is "abstract" because there will be
10839 clones of this constructor/destructor, and there will
10840 be copies of this TYPE_DECL generated in those
10841 clones. The decloning optimization (for space) may
10842 revert this subsequently if it determines that
10843 the clones should share a common implementation. */
10844 DECL_ABSTRACT_P (decl) = true;
10846 else if (current_class_type
10847 && constructor_name_p (unqualified_id, current_class_type))
10848 permerror (input_location, "ISO C++ forbids nested type %qD with same name "
10849 "as enclosing class",
10850 unqualified_id);
10852 /* If the user declares "typedef struct {...} foo" then the
10853 struct will have an anonymous name. Fill that name in now.
10854 Nothing can refer to it, so nothing needs know about the name
10855 change. */
10856 if (type != error_mark_node
10857 && unqualified_id
10858 && TYPE_NAME (type)
10859 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10860 && TYPE_UNNAMED_P (type)
10861 && declspecs->type_definition_p
10862 && attributes_naming_typedef_ok (*attrlist)
10863 && cp_type_quals (type) == TYPE_UNQUALIFIED)
10865 tree t;
10867 /* Replace the anonymous name with the real name everywhere. */
10868 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
10870 if (anon_aggrname_p (TYPE_IDENTIFIER (t)))
10871 /* We do not rename the debug info representing the
10872 unnamed tagged type because the standard says in
10873 [dcl.typedef] that the naming applies only for
10874 linkage purposes. */
10875 /*debug_hooks->set_name (t, decl);*/
10876 TYPE_NAME (t) = decl;
10879 if (TYPE_LANG_SPECIFIC (type))
10880 TYPE_WAS_UNNAMED (type) = 1;
10882 /* If this is a typedef within a template class, the nested
10883 type is a (non-primary) template. The name for the
10884 template needs updating as well. */
10885 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
10886 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
10887 = TYPE_IDENTIFIER (type);
10889 /* Adjust linkage now that we aren't unnamed anymore. */
10890 reset_type_linkage (type);
10892 /* FIXME remangle member functions; member functions of a
10893 type with external linkage have external linkage. */
10896 if (signed_p
10897 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
10898 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
10900 bad_specifiers (decl, BSP_TYPE, virtualp,
10901 memfn_quals != TYPE_UNQUALIFIED,
10902 inlinep, friendp, raises != NULL_TREE);
10904 if (decl_spec_seq_has_spec_p (declspecs, ds_alias))
10905 /* Acknowledge that this was written:
10906 `using analias = atype;'. */
10907 TYPE_DECL_ALIAS_P (decl) = 1;
10909 return decl;
10912 /* Detect the case of an array type of unspecified size
10913 which came, as such, direct from a typedef name.
10914 We must copy the type, so that the array's domain can be
10915 individually set by the object's initializer. */
10917 if (type && typedef_type
10918 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
10919 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
10920 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
10922 /* Detect where we're using a typedef of function type to declare a
10923 function. PARMS will not be set, so we must create it now. */
10925 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
10927 tree decls = NULL_TREE;
10928 tree args;
10930 for (args = TYPE_ARG_TYPES (type);
10931 args && args != void_list_node;
10932 args = TREE_CHAIN (args))
10934 tree decl = cp_build_parm_decl (NULL_TREE, TREE_VALUE (args));
10936 DECL_CHAIN (decl) = decls;
10937 decls = decl;
10940 parms = nreverse (decls);
10942 if (decl_context != TYPENAME)
10944 /* The qualifiers on the function type become the qualifiers on
10945 the non-static member function. */
10946 memfn_quals |= type_memfn_quals (type);
10947 rqual = type_memfn_rqual (type);
10948 type_quals = TYPE_UNQUALIFIED;
10952 /* If this is a type name (such as, in a cast or sizeof),
10953 compute the type and return it now. */
10955 if (decl_context == TYPENAME)
10957 /* Note that here we don't care about type_quals. */
10959 /* Special case: "friend class foo" looks like a TYPENAME context. */
10960 if (friendp)
10962 if (inlinep)
10964 error ("%<inline%> specified for friend class declaration");
10965 inlinep = 0;
10968 if (!current_aggr)
10970 /* Don't allow friend declaration without a class-key. */
10971 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
10972 permerror (input_location, "template parameters cannot be friends");
10973 else if (TREE_CODE (type) == TYPENAME_TYPE)
10974 permerror (input_location, "friend declaration requires class-key, "
10975 "i.e. %<friend class %T::%D%>",
10976 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
10977 else
10978 permerror (input_location, "friend declaration requires class-key, "
10979 "i.e. %<friend %#T%>",
10980 type);
10983 /* Only try to do this stuff if we didn't already give up. */
10984 if (type != integer_type_node)
10986 /* A friendly class? */
10987 if (current_class_type)
10988 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
10989 /*complain=*/true);
10990 else
10991 error ("trying to make class %qT a friend of global scope",
10992 type);
10994 type = void_type_node;
10997 else if (memfn_quals || rqual)
10999 if (ctype == NULL_TREE
11000 && TREE_CODE (type) == METHOD_TYPE)
11001 ctype = TYPE_METHOD_BASETYPE (type);
11003 if (ctype)
11004 type = build_memfn_type (type, ctype, memfn_quals, rqual);
11005 /* Core issue #547: need to allow this in template type args.
11006 Allow it in general in C++11 for alias-declarations. */
11007 else if ((template_type_arg || cxx_dialect >= cxx11)
11008 && TREE_CODE (type) == FUNCTION_TYPE)
11009 type = apply_memfn_quals (type, memfn_quals, rqual);
11010 else
11011 error ("invalid qualifiers on non-member function type");
11014 if (reqs)
11015 error_at (location_of (reqs), "requires-clause on type-id");
11017 return type;
11019 else if (unqualified_id == NULL_TREE && decl_context != PARM
11020 && decl_context != CATCHPARM
11021 && TREE_CODE (type) != UNION_TYPE
11022 && ! bitfield)
11024 error ("abstract declarator %qT used as declaration", type);
11025 return error_mark_node;
11028 /* Only functions may be declared using an operator-function-id. */
11029 if (unqualified_id
11030 && IDENTIFIER_OPNAME_P (unqualified_id)
11031 && TREE_CODE (type) != FUNCTION_TYPE
11032 && TREE_CODE (type) != METHOD_TYPE)
11034 error ("declaration of %qD as non-function", unqualified_id);
11035 return error_mark_node;
11038 if (reqs
11039 && TREE_CODE (type) != FUNCTION_TYPE
11040 && TREE_CODE (type) != METHOD_TYPE)
11041 error_at (location_of (reqs),
11042 "requires-clause on declaration of non-function type %qT",
11043 type);
11045 /* We don't check parameter types here because we can emit a better
11046 error message later. */
11047 if (decl_context != PARM)
11049 type = check_var_type (unqualified_id, type);
11050 if (type == error_mark_node)
11051 return error_mark_node;
11054 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
11055 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
11057 if (decl_context == PARM || decl_context == CATCHPARM)
11059 if (ctype || in_namespace)
11060 error ("cannot use %<::%> in parameter declaration");
11062 if (type_uses_auto (type))
11064 if (cxx_dialect >= cxx14)
11065 error ("%<auto%> parameter not permitted in this context");
11066 else
11067 error ("parameter declared %<auto%>");
11068 type = error_mark_node;
11071 /* A parameter declared as an array of T is really a pointer to T.
11072 One declared as a function is really a pointer to a function.
11073 One declared as a member is really a pointer to member. */
11075 if (TREE_CODE (type) == ARRAY_TYPE)
11077 /* Transfer const-ness of array into that of type pointed to. */
11078 type = build_pointer_type (TREE_TYPE (type));
11079 type_quals = TYPE_UNQUALIFIED;
11080 array_parameter_p = true;
11082 else if (TREE_CODE (type) == FUNCTION_TYPE)
11083 type = build_pointer_type (type);
11086 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
11087 && !NEW_DELETE_OPNAME_P (unqualified_id))
11089 cp_cv_quals real_quals = memfn_quals;
11090 if (cxx_dialect < cxx14 && constexpr_p
11091 && sfk != sfk_constructor && sfk != sfk_destructor)
11092 real_quals |= TYPE_QUAL_CONST;
11093 type = build_memfn_type (type, ctype, real_quals, rqual);
11097 tree decl = NULL_TREE;
11099 if (decl_context == PARM)
11101 decl = cp_build_parm_decl (unqualified_id, type);
11102 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
11104 bad_specifiers (decl, BSP_PARM, virtualp,
11105 memfn_quals != TYPE_UNQUALIFIED,
11106 inlinep, friendp, raises != NULL_TREE);
11108 else if (decl_context == FIELD)
11110 if (!staticp && !friendp && TREE_CODE (type) != METHOD_TYPE
11111 && type_uses_auto (type))
11113 error ("non-static data member declared %<auto%>");
11114 type = error_mark_node;
11117 /* The C99 flexible array extension. */
11118 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
11119 && TYPE_DOMAIN (type) == NULL_TREE)
11121 if (ctype
11122 && (TREE_CODE (ctype) == UNION_TYPE
11123 || TREE_CODE (ctype) == QUAL_UNION_TYPE))
11125 error ("flexible array member in union");
11126 type = error_mark_node;
11128 else
11130 /* Flexible array member has a null domain. */
11131 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
11135 if (type == error_mark_node)
11137 /* Happens when declaring arrays of sizes which
11138 are error_mark_node, for example. */
11139 decl = NULL_TREE;
11141 else if (in_namespace && !friendp)
11143 /* Something like struct S { int N::j; }; */
11144 error ("invalid use of %<::%>");
11145 return error_mark_node;
11147 else if (TREE_CODE (type) == FUNCTION_TYPE
11148 || TREE_CODE (type) == METHOD_TYPE)
11150 int publicp = 0;
11151 tree function_context;
11153 if (friendp == 0)
11155 /* This should never happen in pure C++ (the check
11156 could be an assert). It could happen in
11157 Objective-C++ if someone writes invalid code that
11158 uses a function declaration for an instance
11159 variable or property (instance variables and
11160 properties are parsed as FIELD_DECLs, but they are
11161 part of an Objective-C class, not a C++ class).
11162 That code is invalid and is caught by this
11163 check. */
11164 if (!ctype)
11166 error ("declaration of function %qD in invalid context",
11167 unqualified_id);
11168 return error_mark_node;
11171 /* ``A union may [ ... ] not [ have ] virtual functions.''
11172 ARM 9.5 */
11173 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
11175 error ("function %qD declared %<virtual%> inside a union",
11176 unqualified_id);
11177 return error_mark_node;
11180 if (NEW_DELETE_OPNAME_P (unqualified_id))
11182 if (virtualp)
11184 error ("%qD cannot be declared %<virtual%>, since it "
11185 "is always static",
11186 unqualified_id);
11187 virtualp = 0;
11192 /* Check that the name used for a destructor makes sense. */
11193 if (sfk == sfk_destructor)
11195 tree uqname = id_declarator->u.id.unqualified_name;
11197 if (!ctype)
11199 gcc_assert (friendp);
11200 error ("expected qualified name in friend declaration "
11201 "for destructor %qD", uqname);
11202 return error_mark_node;
11205 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
11207 error ("declaration of %qD as member of %qT",
11208 uqname, ctype);
11209 return error_mark_node;
11211 if (concept_p)
11213 error ("a destructor cannot be %<concept%>");
11214 return error_mark_node;
11216 if (constexpr_p)
11218 error ("a destructor cannot be %<constexpr%>");
11219 return error_mark_node;
11222 else if (sfk == sfk_constructor && friendp && !ctype)
11224 error ("expected qualified name in friend declaration "
11225 "for constructor %qD",
11226 id_declarator->u.id.unqualified_name);
11227 return error_mark_node;
11229 if (sfk == sfk_constructor)
11230 if (concept_p)
11232 error ("a constructor cannot be %<concept%>");
11233 return error_mark_node;
11235 if (concept_p)
11237 error ("a concept cannot be a member function");
11238 concept_p = false;
11241 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
11243 tree tmpl = TREE_OPERAND (unqualified_id, 0);
11244 if (variable_template_p (tmpl))
11246 error ("specialization of variable template %qD "
11247 "declared as function", tmpl);
11248 inform (DECL_SOURCE_LOCATION (tmpl),
11249 "variable template declared here");
11250 return error_mark_node;
11254 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
11255 function_context = (ctype != NULL_TREE) ?
11256 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
11257 publicp = (! friendp || ! staticp)
11258 && function_context == NULL_TREE;
11260 if (late_return_type_p)
11261 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
11263 decl = grokfndecl (ctype, type,
11264 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
11265 ? unqualified_id : dname,
11266 parms,
11267 unqualified_id,
11268 reqs,
11269 virtualp, flags, memfn_quals, rqual, raises,
11270 friendp ? -1 : 0, friendp, publicp,
11271 inlinep | (2 * constexpr_p) | (4 * concept_p),
11272 initialized == SD_DELETED, sfk,
11273 funcdef_flag, template_count, in_namespace,
11274 attrlist, declarator->id_loc);
11275 decl = set_virt_specifiers (decl, virt_specifiers);
11276 if (decl == NULL_TREE)
11277 return error_mark_node;
11278 #if 0
11279 /* This clobbers the attrs stored in `decl' from `attrlist'. */
11280 /* The decl and setting of decl_attr is also turned off. */
11281 decl = build_decl_attribute_variant (decl, decl_attr);
11282 #endif
11284 /* [class.conv.ctor]
11286 A constructor declared without the function-specifier
11287 explicit that can be called with a single parameter
11288 specifies a conversion from the type of its first
11289 parameter to the type of its class. Such a constructor
11290 is called a converting constructor. */
11291 if (explicitp == 2)
11292 DECL_NONCONVERTING_P (decl) = 1;
11294 else if (!staticp && !dependent_type_p (type)
11295 && !COMPLETE_TYPE_P (complete_type (type))
11296 && (!complete_or_array_type_p (type)
11297 || initialized == 0))
11299 if (TREE_CODE (type) != ARRAY_TYPE
11300 || !COMPLETE_TYPE_P (TREE_TYPE (type)))
11302 if (unqualified_id)
11304 error ("field %qD has incomplete type %qT",
11305 unqualified_id, type);
11306 cxx_incomplete_type_inform (strip_array_types (type));
11308 else
11309 error ("name %qT has incomplete type", type);
11311 type = error_mark_node;
11312 decl = NULL_TREE;
11315 else
11317 if (friendp)
11319 error ("%qE is neither function nor member function; "
11320 "cannot be declared friend", unqualified_id);
11321 friendp = 0;
11323 decl = NULL_TREE;
11326 if (friendp)
11328 /* Friends are treated specially. */
11329 if (ctype == current_class_type)
11330 ; /* We already issued a permerror. */
11331 else if (decl && DECL_NAME (decl))
11333 if (template_class_depth (current_class_type) == 0)
11335 decl = check_explicit_specialization
11336 (unqualified_id, decl, template_count,
11337 2 * funcdef_flag + 4);
11338 if (decl == error_mark_node)
11339 return error_mark_node;
11342 decl = do_friend (ctype, unqualified_id, decl,
11343 *attrlist, flags,
11344 funcdef_flag);
11345 return decl;
11347 else
11348 return error_mark_node;
11351 /* Structure field. It may not be a function, except for C++. */
11353 if (decl == NULL_TREE)
11355 if (staticp)
11357 /* C++ allows static class members. All other work
11358 for this is done by grokfield. */
11359 decl = build_lang_decl_loc (declarator
11360 ? declarator->id_loc
11361 : input_location,
11362 VAR_DECL, unqualified_id, type);
11363 set_linkage_for_static_data_member (decl);
11364 /* Even if there is an in-class initialization, DECL
11365 is considered undefined until an out-of-class
11366 definition is provided. */
11367 DECL_EXTERNAL (decl) = 1;
11369 if (thread_p)
11371 CP_DECL_THREAD_LOCAL_P (decl) = true;
11372 if (!processing_template_decl)
11373 set_decl_tls_model (decl, decl_default_tls_model (decl));
11374 if (declspecs->gnu_thread_keyword_p)
11375 SET_DECL_GNU_TLS_P (decl);
11377 if (concept_p)
11378 error ("static data member %qE declared %<concept%>",
11379 unqualified_id);
11380 else if (constexpr_p && !initialized)
11382 error ("constexpr static data member %qD must have an "
11383 "initializer", decl);
11384 constexpr_p = false;
11387 else
11389 if (concept_p)
11390 error ("non-static data member %qE declared %<concept%>",
11391 unqualified_id);
11392 else if (constexpr_p)
11394 error ("non-static data member %qE declared %<constexpr%>",
11395 unqualified_id);
11396 constexpr_p = false;
11398 decl = build_decl (input_location,
11399 FIELD_DECL, unqualified_id, type);
11400 DECL_NONADDRESSABLE_P (decl) = bitfield;
11401 if (bitfield && !unqualified_id)
11402 TREE_NO_WARNING (decl) = 1;
11404 if (storage_class == sc_mutable)
11406 DECL_MUTABLE_P (decl) = 1;
11407 storage_class = sc_none;
11410 if (initialized)
11412 /* An attempt is being made to initialize a non-static
11413 member. This is new in C++11. */
11414 maybe_warn_cpp0x (CPP0X_NSDMI);
11416 /* If this has been parsed with static storage class, but
11417 errors forced staticp to be cleared, ensure NSDMI is
11418 not present. */
11419 if (declspecs->storage_class == sc_static)
11420 DECL_INITIAL (decl) = error_mark_node;
11424 bad_specifiers (decl, BSP_FIELD, virtualp,
11425 memfn_quals != TYPE_UNQUALIFIED,
11426 inlinep, friendp, raises != NULL_TREE);
11429 else if (TREE_CODE (type) == FUNCTION_TYPE
11430 || TREE_CODE (type) == METHOD_TYPE)
11432 tree original_name;
11433 int publicp = 0;
11435 if (!unqualified_id)
11436 return error_mark_node;
11438 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
11439 original_name = dname;
11440 else
11441 original_name = unqualified_id;
11443 if (storage_class == sc_auto)
11444 error ("storage class %<auto%> invalid for function %qs", name);
11445 else if (storage_class == sc_register)
11446 error ("storage class %<register%> invalid for function %qs", name);
11447 else if (thread_p)
11449 if (declspecs->gnu_thread_keyword_p)
11450 error ("storage class %<__thread%> invalid for function %qs",
11451 name);
11452 else
11453 error ("storage class %<thread_local%> invalid for function %qs",
11454 name);
11457 if (virt_specifiers)
11458 error ("virt-specifiers in %qs not allowed outside a class definition", name);
11459 /* Function declaration not at top level.
11460 Storage classes other than `extern' are not allowed
11461 and `extern' makes no difference. */
11462 if (! toplevel_bindings_p ()
11463 && (storage_class == sc_static
11464 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
11465 && pedantic)
11467 if (storage_class == sc_static)
11468 pedwarn (input_location, OPT_Wpedantic,
11469 "%<static%> specifier invalid for function %qs "
11470 "declared out of global scope", name);
11471 else
11472 pedwarn (input_location, OPT_Wpedantic,
11473 "%<inline%> specifier invalid for function %qs "
11474 "declared out of global scope", name);
11477 if (ctype == NULL_TREE)
11479 if (virtualp)
11481 error ("virtual non-class function %qs", name);
11482 virtualp = 0;
11484 else if (sfk == sfk_constructor
11485 || sfk == sfk_destructor)
11487 error (funcdef_flag
11488 ? G_("%qs defined in a non-class scope")
11489 : G_("%qs declared in a non-class scope"), name);
11490 sfk = sfk_none;
11494 /* Record whether the function is public. */
11495 publicp = (ctype != NULL_TREE
11496 || storage_class != sc_static);
11498 if (late_return_type_p)
11499 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
11501 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
11502 reqs, virtualp, flags, memfn_quals, rqual, raises,
11503 1, friendp,
11504 publicp,
11505 inlinep | (2 * constexpr_p) | (4 * concept_p),
11506 initialized == SD_DELETED,
11507 sfk,
11508 funcdef_flag,
11509 template_count, in_namespace, attrlist,
11510 declarator->id_loc);
11511 if (decl == NULL_TREE)
11512 return error_mark_node;
11514 if (staticp == 1)
11516 int invalid_static = 0;
11518 /* Don't allow a static member function in a class, and forbid
11519 declaring main to be static. */
11520 if (TREE_CODE (type) == METHOD_TYPE)
11522 permerror (input_location, "cannot declare member function %qD to have "
11523 "static linkage", decl);
11524 invalid_static = 1;
11526 else if (current_function_decl)
11528 /* 7.1.1: There can be no static function declarations within a
11529 block. */
11530 error ("cannot declare static function inside another function");
11531 invalid_static = 1;
11534 if (invalid_static)
11536 staticp = 0;
11537 storage_class = sc_none;
11541 else
11543 /* It's a variable. */
11545 /* An uninitialized decl with `extern' is a reference. */
11546 decl = grokvardecl (type, dname, unqualified_id,
11547 declspecs,
11548 initialized,
11549 ((type_quals & TYPE_QUAL_CONST) != 0) | (2 * concept_p),
11550 template_count,
11551 ctype ? ctype : in_namespace);
11552 if (decl == NULL_TREE)
11553 return error_mark_node;
11555 bad_specifiers (decl, BSP_VAR, virtualp,
11556 memfn_quals != TYPE_UNQUALIFIED,
11557 inlinep, friendp, raises != NULL_TREE);
11559 if (ctype)
11561 DECL_CONTEXT (decl) = ctype;
11562 if (staticp == 1)
11564 permerror (input_location, "%<static%> may not be used when defining "
11565 "(as opposed to declaring) a static data member");
11566 staticp = 0;
11567 storage_class = sc_none;
11569 if (storage_class == sc_register && TREE_STATIC (decl))
11571 error ("static member %qD declared %<register%>", decl);
11572 storage_class = sc_none;
11574 if (storage_class == sc_extern && pedantic)
11576 pedwarn (input_location, OPT_Wpedantic,
11577 "cannot explicitly declare member %q#D to have "
11578 "extern linkage", decl);
11579 storage_class = sc_none;
11582 else if (constexpr_p && DECL_EXTERNAL (decl))
11584 error ("declaration of constexpr variable %qD is not a definition",
11585 decl);
11586 constexpr_p = false;
11590 if (storage_class == sc_extern && initialized && !funcdef_flag)
11592 if (toplevel_bindings_p ())
11594 /* It's common practice (and completely valid) to have a const
11595 be initialized and declared extern. */
11596 if (!(type_quals & TYPE_QUAL_CONST))
11597 warning (0, "%qs initialized and declared %<extern%>", name);
11599 else
11601 error ("%qs has both %<extern%> and initializer", name);
11602 return error_mark_node;
11606 /* Record `register' declaration for warnings on &
11607 and in case doing stupid register allocation. */
11609 if (storage_class == sc_register)
11610 DECL_REGISTER (decl) = 1;
11611 else if (storage_class == sc_extern)
11612 DECL_THIS_EXTERN (decl) = 1;
11613 else if (storage_class == sc_static)
11614 DECL_THIS_STATIC (decl) = 1;
11616 /* Set constexpr flag on vars (functions got it in grokfndecl). */
11617 if (constexpr_p && VAR_P (decl))
11618 DECL_DECLARED_CONSTEXPR_P (decl) = true;
11620 /* Record constancy and volatility on the DECL itself . There's
11621 no need to do this when processing a template; we'll do this
11622 for the instantiated declaration based on the type of DECL. */
11623 if (!processing_template_decl)
11624 cp_apply_type_quals_to_decl (type_quals, decl);
11626 return decl;
11630 /* Subroutine of start_function. Ensure that each of the parameter
11631 types (as listed in PARMS) is complete, as is required for a
11632 function definition. */
11634 static void
11635 require_complete_types_for_parms (tree parms)
11637 for (; parms; parms = DECL_CHAIN (parms))
11639 if (dependent_type_p (TREE_TYPE (parms)))
11640 continue;
11641 if (!VOID_TYPE_P (TREE_TYPE (parms))
11642 && complete_type_or_else (TREE_TYPE (parms), parms))
11644 relayout_decl (parms);
11645 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
11647 else
11648 /* grokparms or complete_type_or_else will have already issued
11649 an error. */
11650 TREE_TYPE (parms) = error_mark_node;
11654 /* Returns nonzero if T is a local variable. */
11657 local_variable_p (const_tree t)
11659 if ((VAR_P (t)
11660 /* A VAR_DECL with a context that is a _TYPE is a static data
11661 member. */
11662 && !TYPE_P (CP_DECL_CONTEXT (t))
11663 /* Any other non-local variable must be at namespace scope. */
11664 && !DECL_NAMESPACE_SCOPE_P (t))
11665 || (TREE_CODE (t) == PARM_DECL))
11666 return 1;
11668 return 0;
11671 /* Like local_variable_p, but suitable for use as a tree-walking
11672 function. */
11674 static tree
11675 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
11676 void * /*data*/)
11678 if (local_variable_p (*tp)
11679 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
11680 return *tp;
11681 else if (TYPE_P (*tp))
11682 *walk_subtrees = 0;
11684 return NULL_TREE;
11687 /* Check that ARG, which is a default-argument expression for a
11688 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
11689 something goes wrong. DECL may also be a _TYPE node, rather than a
11690 DECL, if there is no DECL available. */
11692 tree
11693 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
11695 tree var;
11696 tree decl_type;
11698 if (TREE_CODE (arg) == DEFAULT_ARG)
11699 /* We get a DEFAULT_ARG when looking at an in-class declaration
11700 with a default argument. Ignore the argument for now; we'll
11701 deal with it after the class is complete. */
11702 return arg;
11704 if (TYPE_P (decl))
11706 decl_type = decl;
11707 decl = NULL_TREE;
11709 else
11710 decl_type = TREE_TYPE (decl);
11712 if (arg == error_mark_node
11713 || decl == error_mark_node
11714 || TREE_TYPE (arg) == error_mark_node
11715 || decl_type == error_mark_node)
11716 /* Something already went wrong. There's no need to check
11717 further. */
11718 return error_mark_node;
11720 /* [dcl.fct.default]
11722 A default argument expression is implicitly converted to the
11723 parameter type. */
11724 ++cp_unevaluated_operand;
11725 perform_implicit_conversion_flags (decl_type, arg, complain,
11726 LOOKUP_IMPLICIT);
11727 --cp_unevaluated_operand;
11729 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
11730 the call sites. */
11731 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
11732 && null_ptr_cst_p (arg))
11733 return nullptr_node;
11735 /* [dcl.fct.default]
11737 Local variables shall not be used in default argument
11738 expressions.
11740 The keyword `this' shall not be used in a default argument of a
11741 member function. */
11742 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
11743 if (var)
11745 if (complain & tf_warning_or_error)
11747 if (DECL_NAME (var) == this_identifier)
11748 permerror (input_location, "default argument %qE uses %qD",
11749 arg, var);
11750 else
11751 error ("default argument %qE uses local variable %qD", arg, var);
11753 return error_mark_node;
11756 /* All is well. */
11757 return arg;
11760 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
11762 static tree
11763 type_is_deprecated (tree type)
11765 enum tree_code code;
11766 if (TREE_DEPRECATED (type))
11767 return type;
11768 if (TYPE_NAME (type))
11770 if (TREE_DEPRECATED (TYPE_NAME (type)))
11771 return type;
11772 else
11773 return NULL_TREE;
11776 /* Do warn about using typedefs to a deprecated class. */
11777 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
11778 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
11780 code = TREE_CODE (type);
11782 if (code == POINTER_TYPE || code == REFERENCE_TYPE
11783 || code == OFFSET_TYPE || code == FUNCTION_TYPE
11784 || code == METHOD_TYPE || code == ARRAY_TYPE)
11785 return type_is_deprecated (TREE_TYPE (type));
11787 if (TYPE_PTRMEMFUNC_P (type))
11788 return type_is_deprecated
11789 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
11791 return NULL_TREE;
11794 /* Decode the list of parameter types for a function type.
11795 Given the list of things declared inside the parens,
11796 return a list of types.
11798 If this parameter does not end with an ellipsis, we append
11799 void_list_node.
11801 *PARMS is set to the chain of PARM_DECLs created. */
11803 tree
11804 grokparms (tree parmlist, tree *parms)
11806 tree result = NULL_TREE;
11807 tree decls = NULL_TREE;
11808 tree parm;
11809 int any_error = 0;
11811 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
11813 tree type = NULL_TREE;
11814 tree init = TREE_PURPOSE (parm);
11815 tree decl = TREE_VALUE (parm);
11817 if (parm == void_list_node)
11818 break;
11820 if (! decl || TREE_TYPE (decl) == error_mark_node)
11821 continue;
11823 type = TREE_TYPE (decl);
11824 if (VOID_TYPE_P (type))
11826 if (same_type_p (type, void_type_node)
11827 && !init
11828 && !DECL_NAME (decl) && !result
11829 && TREE_CHAIN (parm) == void_list_node)
11830 /* DR 577: A parameter list consisting of a single
11831 unnamed parameter of non-dependent type 'void'. */
11832 break;
11833 else if (cv_qualified_p (type))
11834 error_at (DECL_SOURCE_LOCATION (decl),
11835 "invalid use of cv-qualified type %qT in "
11836 "parameter declaration", type);
11837 else
11838 error_at (DECL_SOURCE_LOCATION (decl),
11839 "invalid use of type %<void%> in parameter "
11840 "declaration");
11841 /* It's not a good idea to actually create parameters of
11842 type `void'; other parts of the compiler assume that a
11843 void type terminates the parameter list. */
11844 type = error_mark_node;
11845 TREE_TYPE (decl) = error_mark_node;
11848 if (type != error_mark_node
11849 && TYPE_FOR_JAVA (type)
11850 && MAYBE_CLASS_TYPE_P (type))
11852 error ("parameter %qD has Java class type", decl);
11853 type = error_mark_node;
11854 TREE_TYPE (decl) = error_mark_node;
11855 init = NULL_TREE;
11858 if (type != error_mark_node)
11860 if (deprecated_state != DEPRECATED_SUPPRESS)
11862 tree deptype = type_is_deprecated (type);
11863 if (deptype)
11864 warn_deprecated_use (deptype, NULL_TREE);
11867 /* Top-level qualifiers on the parameters are
11868 ignored for function types. */
11869 type = cp_build_qualified_type (type, 0);
11870 if (TREE_CODE (type) == METHOD_TYPE)
11872 error ("parameter %qD invalidly declared method type", decl);
11873 type = build_pointer_type (type);
11874 TREE_TYPE (decl) = type;
11876 else if (abstract_virtuals_error (decl, type))
11877 any_error = 1; /* Seems like a good idea. */
11878 else if (POINTER_TYPE_P (type))
11880 /* [dcl.fct]/6, parameter types cannot contain pointers
11881 (references) to arrays of unknown bound. */
11882 tree t = TREE_TYPE (type);
11883 int ptr = TYPE_PTR_P (type);
11885 while (1)
11887 if (TYPE_PTR_P (t))
11888 ptr = 1;
11889 else if (TREE_CODE (t) != ARRAY_TYPE)
11890 break;
11891 else if (!TYPE_DOMAIN (t))
11892 break;
11893 t = TREE_TYPE (t);
11895 if (TREE_CODE (t) == ARRAY_TYPE)
11896 error (ptr
11897 ? G_("parameter %qD includes pointer to array of "
11898 "unknown bound %qT")
11899 : G_("parameter %qD includes reference to array of "
11900 "unknown bound %qT"),
11901 decl, t);
11904 if (any_error)
11905 init = NULL_TREE;
11906 else if (init && !processing_template_decl)
11907 init = check_default_argument (decl, init, tf_warning_or_error);
11910 DECL_CHAIN (decl) = decls;
11911 decls = decl;
11912 result = tree_cons (init, type, result);
11914 decls = nreverse (decls);
11915 result = nreverse (result);
11916 if (parm)
11917 result = chainon (result, void_list_node);
11918 *parms = decls;
11920 return result;
11924 /* D is a constructor or overloaded `operator='.
11926 Let T be the class in which D is declared. Then, this function
11927 returns:
11929 -1 if D's is an ill-formed constructor or copy assignment operator
11930 whose first parameter is of type `T'.
11931 0 if D is not a copy constructor or copy assignment
11932 operator.
11933 1 if D is a copy constructor or copy assignment operator whose
11934 first parameter is a reference to non-const qualified T.
11935 2 if D is a copy constructor or copy assignment operator whose
11936 first parameter is a reference to const qualified T.
11938 This function can be used as a predicate. Positive values indicate
11939 a copy constructor and nonzero values indicate a copy assignment
11940 operator. */
11943 copy_fn_p (const_tree d)
11945 tree args;
11946 tree arg_type;
11947 int result = 1;
11949 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11951 if (TREE_CODE (d) == TEMPLATE_DECL
11952 || (DECL_TEMPLATE_INFO (d)
11953 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11954 /* Instantiations of template member functions are never copy
11955 functions. Note that member functions of templated classes are
11956 represented as template functions internally, and we must
11957 accept those as copy functions. */
11958 return 0;
11960 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11961 if (!args)
11962 return 0;
11964 arg_type = TREE_VALUE (args);
11965 if (arg_type == error_mark_node)
11966 return 0;
11968 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
11970 /* Pass by value copy assignment operator. */
11971 result = -1;
11973 else if (TREE_CODE (arg_type) == REFERENCE_TYPE
11974 && !TYPE_REF_IS_RVALUE (arg_type)
11975 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
11977 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
11978 result = 2;
11980 else
11981 return 0;
11983 args = TREE_CHAIN (args);
11985 if (args && args != void_list_node && !TREE_PURPOSE (args))
11986 /* There are more non-optional args. */
11987 return 0;
11989 return result;
11992 /* D is a constructor or overloaded `operator='.
11994 Let T be the class in which D is declared. Then, this function
11995 returns true when D is a move constructor or move assignment
11996 operator, false otherwise. */
11998 bool
11999 move_fn_p (const_tree d)
12001 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
12003 if (cxx_dialect == cxx98)
12004 /* There are no move constructors if we are in C++98 mode. */
12005 return false;
12007 if (TREE_CODE (d) == TEMPLATE_DECL
12008 || (DECL_TEMPLATE_INFO (d)
12009 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
12010 /* Instantiations of template member functions are never move
12011 functions. Note that member functions of templated classes are
12012 represented as template functions internally, and we must
12013 accept those as move functions. */
12014 return 0;
12016 return move_signature_fn_p (d);
12019 /* D is a constructor or overloaded `operator='.
12021 Then, this function returns true when D has the same signature as a move
12022 constructor or move assignment operator (because either it is such a
12023 ctor/op= or it is a template specialization with the same signature),
12024 false otherwise. */
12026 bool
12027 move_signature_fn_p (const_tree d)
12029 tree args;
12030 tree arg_type;
12031 bool result = false;
12033 args = FUNCTION_FIRST_USER_PARMTYPE (d);
12034 if (!args)
12035 return 0;
12037 arg_type = TREE_VALUE (args);
12038 if (arg_type == error_mark_node)
12039 return 0;
12041 if (TREE_CODE (arg_type) == REFERENCE_TYPE
12042 && TYPE_REF_IS_RVALUE (arg_type)
12043 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
12044 DECL_CONTEXT (d)))
12045 result = true;
12047 args = TREE_CHAIN (args);
12049 if (args && args != void_list_node && !TREE_PURPOSE (args))
12050 /* There are more non-optional args. */
12051 return false;
12053 return result;
12056 /* Remember any special properties of member function DECL. */
12058 void
12059 grok_special_member_properties (tree decl)
12061 tree class_type;
12063 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
12064 return;
12066 class_type = DECL_CONTEXT (decl);
12067 if (DECL_CONSTRUCTOR_P (decl))
12069 int ctor = copy_fn_p (decl);
12071 if (!DECL_ARTIFICIAL (decl))
12072 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
12074 if (ctor > 0)
12076 /* [class.copy]
12078 A non-template constructor for class X is a copy
12079 constructor if its first parameter is of type X&, const
12080 X&, volatile X& or const volatile X&, and either there
12081 are no other parameters or else all other parameters have
12082 default arguments. */
12083 TYPE_HAS_COPY_CTOR (class_type) = 1;
12084 if (user_provided_p (decl))
12085 TYPE_HAS_COMPLEX_COPY_CTOR (class_type) = 1;
12086 if (ctor > 1)
12087 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
12089 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
12090 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
12091 else if (move_fn_p (decl) && user_provided_p (decl))
12092 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type) = 1;
12093 else if (is_list_ctor (decl))
12094 TYPE_HAS_LIST_CTOR (class_type) = 1;
12096 if (DECL_DECLARED_CONSTEXPR_P (decl)
12097 && !copy_fn_p (decl) && !move_fn_p (decl))
12098 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
12100 else if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
12102 /* [class.copy]
12104 A non-template assignment operator for class X is a copy
12105 assignment operator if its parameter is of type X, X&, const
12106 X&, volatile X& or const volatile X&. */
12108 int assop = copy_fn_p (decl);
12110 if (assop)
12112 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
12113 if (user_provided_p (decl))
12114 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type) = 1;
12115 if (assop != 1)
12116 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
12118 else if (move_fn_p (decl) && user_provided_p (decl))
12119 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type) = 1;
12121 /* Destructors are handled in check_methods. */
12124 /* Check a constructor DECL has the correct form. Complains
12125 if the class has a constructor of the form X(X). */
12128 grok_ctor_properties (const_tree ctype, const_tree decl)
12130 int ctor_parm = copy_fn_p (decl);
12132 if (ctor_parm < 0)
12134 /* [class.copy]
12136 A declaration of a constructor for a class X is ill-formed if
12137 its first parameter is of type (optionally cv-qualified) X
12138 and either there are no other parameters or else all other
12139 parameters have default arguments.
12141 We *don't* complain about member template instantiations that
12142 have this form, though; they can occur as we try to decide
12143 what constructor to use during overload resolution. Since
12144 overload resolution will never prefer such a constructor to
12145 the non-template copy constructor (which is either explicitly
12146 or implicitly defined), there's no need to worry about their
12147 existence. Theoretically, they should never even be
12148 instantiated, but that's hard to forestall. */
12149 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
12150 ctype, ctype);
12151 return 0;
12154 return 1;
12157 /* An operator with this code is unary, but can also be binary. */
12159 static int
12160 ambi_op_p (enum tree_code code)
12162 return (code == INDIRECT_REF
12163 || code == ADDR_EXPR
12164 || code == UNARY_PLUS_EXPR
12165 || code == NEGATE_EXPR
12166 || code == PREINCREMENT_EXPR
12167 || code == PREDECREMENT_EXPR);
12170 /* An operator with this name can only be unary. */
12172 static int
12173 unary_op_p (enum tree_code code)
12175 return (code == TRUTH_NOT_EXPR
12176 || code == BIT_NOT_EXPR
12177 || code == COMPONENT_REF
12178 || code == TYPE_EXPR);
12181 /* DECL is a declaration for an overloaded operator. If COMPLAIN is true,
12182 errors are issued for invalid declarations. */
12184 bool
12185 grok_op_properties (tree decl, bool complain)
12187 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
12188 tree argtype;
12189 int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
12190 tree name = DECL_NAME (decl);
12191 enum tree_code operator_code;
12192 int arity;
12193 bool ellipsis_p;
12194 tree class_type;
12196 /* Count the number of arguments and check for ellipsis. */
12197 for (argtype = argtypes, arity = 0;
12198 argtype && argtype != void_list_node;
12199 argtype = TREE_CHAIN (argtype))
12200 ++arity;
12201 ellipsis_p = !argtype;
12203 class_type = DECL_CONTEXT (decl);
12204 if (class_type && !CLASS_TYPE_P (class_type))
12205 class_type = NULL_TREE;
12207 if (DECL_CONV_FN_P (decl))
12208 operator_code = TYPE_EXPR;
12209 else
12212 #define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P) \
12213 if (ansi_opname (CODE) == name) \
12215 operator_code = (CODE); \
12216 break; \
12218 else if (ansi_assopname (CODE) == name) \
12220 operator_code = (CODE); \
12221 DECL_ASSIGNMENT_OPERATOR_P (decl) = 1; \
12222 break; \
12225 #include "operators.def"
12226 #undef DEF_OPERATOR
12228 gcc_unreachable ();
12230 while (0);
12231 gcc_assert (operator_code != MAX_TREE_CODES);
12232 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
12234 if (class_type)
12235 switch (operator_code)
12237 case NEW_EXPR:
12238 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
12239 break;
12241 case DELETE_EXPR:
12242 TYPE_GETS_DELETE (class_type) |= 1;
12243 break;
12245 case VEC_NEW_EXPR:
12246 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
12247 break;
12249 case VEC_DELETE_EXPR:
12250 TYPE_GETS_DELETE (class_type) |= 2;
12251 break;
12253 default:
12254 break;
12257 /* [basic.std.dynamic.allocation]/1:
12259 A program is ill-formed if an allocation function is declared
12260 in a namespace scope other than global scope or declared static
12261 in global scope.
12263 The same also holds true for deallocation functions. */
12264 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR
12265 || operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
12267 if (DECL_NAMESPACE_SCOPE_P (decl))
12269 if (CP_DECL_CONTEXT (decl) != global_namespace)
12271 error ("%qD may not be declared within a namespace", decl);
12272 return false;
12274 else if (!TREE_PUBLIC (decl))
12276 error ("%qD may not be declared as static", decl);
12277 return false;
12282 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR)
12284 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
12285 DECL_IS_OPERATOR_NEW (decl) = 1;
12287 else if (operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
12288 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
12289 else
12291 /* An operator function must either be a non-static member function
12292 or have at least one parameter of a class, a reference to a class,
12293 an enumeration, or a reference to an enumeration. 13.4.0.6 */
12294 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
12296 if (operator_code == TYPE_EXPR
12297 || operator_code == CALL_EXPR
12298 || operator_code == COMPONENT_REF
12299 || operator_code == ARRAY_REF
12300 || operator_code == NOP_EXPR)
12302 error ("%qD must be a nonstatic member function", decl);
12303 return false;
12305 else
12307 tree p;
12309 if (DECL_STATIC_FUNCTION_P (decl))
12311 error ("%qD must be either a non-static member "
12312 "function or a non-member function", decl);
12313 return false;
12316 for (p = argtypes; p && p != void_list_node; p = TREE_CHAIN (p))
12318 tree arg = non_reference (TREE_VALUE (p));
12319 if (arg == error_mark_node)
12320 return false;
12322 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
12323 because these checks are performed even on
12324 template functions. */
12325 if (MAYBE_CLASS_TYPE_P (arg)
12326 || TREE_CODE (arg) == ENUMERAL_TYPE)
12327 break;
12330 if (!p || p == void_list_node)
12332 if (complain)
12333 error ("%qD must have an argument of class or "
12334 "enumerated type", decl);
12335 return false;
12340 /* There are no restrictions on the arguments to an overloaded
12341 "operator ()". */
12342 if (operator_code == CALL_EXPR)
12343 return true;
12345 /* Warn about conversion operators that will never be used. */
12346 if (IDENTIFIER_TYPENAME_P (name)
12347 && ! DECL_TEMPLATE_INFO (decl)
12348 && warn_conversion
12349 /* Warn only declaring the function; there is no need to
12350 warn again about out-of-class definitions. */
12351 && class_type == current_class_type)
12353 tree t = TREE_TYPE (name);
12354 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
12356 if (ref)
12357 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
12359 if (VOID_TYPE_P (t))
12360 warning (OPT_Wconversion,
12362 ? G_("conversion to a reference to void "
12363 "will never use a type conversion operator")
12364 : G_("conversion to void "
12365 "will never use a type conversion operator"));
12366 else if (class_type)
12368 if (t == class_type)
12369 warning (OPT_Wconversion,
12371 ? G_("conversion to a reference to the same type "
12372 "will never use a type conversion operator")
12373 : G_("conversion to the same type "
12374 "will never use a type conversion operator"));
12375 /* Don't force t to be complete here. */
12376 else if (MAYBE_CLASS_TYPE_P (t)
12377 && COMPLETE_TYPE_P (t)
12378 && DERIVED_FROM_P (t, class_type))
12379 warning (OPT_Wconversion,
12381 ? G_("conversion to a reference to a base class "
12382 "will never use a type conversion operator")
12383 : G_("conversion to a base class "
12384 "will never use a type conversion operator"));
12389 if (operator_code == COND_EXPR)
12391 /* 13.4.0.3 */
12392 error ("ISO C++ prohibits overloading operator ?:");
12393 return false;
12395 else if (ellipsis_p)
12397 error ("%qD must not have variable number of arguments", decl);
12398 return false;
12400 else if (ambi_op_p (operator_code))
12402 if (arity == 1)
12403 /* We pick the one-argument operator codes by default, so
12404 we don't have to change anything. */
12406 else if (arity == 2)
12408 /* If we thought this was a unary operator, we now know
12409 it to be a binary operator. */
12410 switch (operator_code)
12412 case INDIRECT_REF:
12413 operator_code = MULT_EXPR;
12414 break;
12416 case ADDR_EXPR:
12417 operator_code = BIT_AND_EXPR;
12418 break;
12420 case UNARY_PLUS_EXPR:
12421 operator_code = PLUS_EXPR;
12422 break;
12424 case NEGATE_EXPR:
12425 operator_code = MINUS_EXPR;
12426 break;
12428 case PREINCREMENT_EXPR:
12429 operator_code = POSTINCREMENT_EXPR;
12430 break;
12432 case PREDECREMENT_EXPR:
12433 operator_code = POSTDECREMENT_EXPR;
12434 break;
12436 default:
12437 gcc_unreachable ();
12440 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
12442 if ((operator_code == POSTINCREMENT_EXPR
12443 || operator_code == POSTDECREMENT_EXPR)
12444 && ! processing_template_decl
12445 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)), integer_type_node))
12447 if (methodp)
12448 error ("postfix %qD must take %<int%> as its argument",
12449 decl);
12450 else
12451 error ("postfix %qD must take %<int%> as its second "
12452 "argument", decl);
12453 return false;
12456 else
12458 if (methodp)
12459 error ("%qD must take either zero or one argument", decl);
12460 else
12461 error ("%qD must take either one or two arguments", decl);
12462 return false;
12465 /* More Effective C++ rule 6. */
12466 if (warn_ecpp
12467 && (operator_code == POSTINCREMENT_EXPR
12468 || operator_code == POSTDECREMENT_EXPR
12469 || operator_code == PREINCREMENT_EXPR
12470 || operator_code == PREDECREMENT_EXPR))
12472 tree arg = TREE_VALUE (argtypes);
12473 tree ret = TREE_TYPE (TREE_TYPE (decl));
12474 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
12475 arg = TREE_TYPE (arg);
12476 arg = TYPE_MAIN_VARIANT (arg);
12477 if (operator_code == PREINCREMENT_EXPR
12478 || operator_code == PREDECREMENT_EXPR)
12480 if (TREE_CODE (ret) != REFERENCE_TYPE
12481 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)),
12482 arg))
12483 warning (OPT_Weffc__, "prefix %qD should return %qT", decl,
12484 build_reference_type (arg));
12486 else
12488 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
12489 warning (OPT_Weffc__, "postfix %qD should return %qT", decl, arg);
12493 else if (unary_op_p (operator_code))
12495 if (arity != 1)
12497 if (methodp)
12498 error ("%qD must take %<void%>", decl);
12499 else
12500 error ("%qD must take exactly one argument", decl);
12501 return false;
12504 else /* if (binary_op_p (operator_code)) */
12506 if (arity != 2)
12508 if (methodp)
12509 error ("%qD must take exactly one argument", decl);
12510 else
12511 error ("%qD must take exactly two arguments", decl);
12512 return false;
12515 /* More Effective C++ rule 7. */
12516 if (warn_ecpp
12517 && (operator_code == TRUTH_ANDIF_EXPR
12518 || operator_code == TRUTH_ORIF_EXPR
12519 || operator_code == COMPOUND_EXPR))
12520 warning (OPT_Weffc__, "user-defined %qD always evaluates both arguments",
12521 decl);
12524 /* Effective C++ rule 23. */
12525 if (warn_ecpp
12526 && arity == 2
12527 && !DECL_ASSIGNMENT_OPERATOR_P (decl)
12528 && (operator_code == PLUS_EXPR
12529 || operator_code == MINUS_EXPR
12530 || operator_code == TRUNC_DIV_EXPR
12531 || operator_code == MULT_EXPR
12532 || operator_code == TRUNC_MOD_EXPR)
12533 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
12534 warning (OPT_Weffc__, "%qD should return by value", decl);
12536 /* [over.oper]/8 */
12537 for (; argtypes && argtypes != void_list_node;
12538 argtypes = TREE_CHAIN (argtypes))
12539 if (TREE_PURPOSE (argtypes))
12541 TREE_PURPOSE (argtypes) = NULL_TREE;
12542 if (operator_code == POSTINCREMENT_EXPR
12543 || operator_code == POSTDECREMENT_EXPR)
12545 pedwarn (input_location, OPT_Wpedantic, "%qD cannot have default arguments",
12546 decl);
12548 else
12550 error ("%qD cannot have default arguments", decl);
12551 return false;
12555 return true;
12558 /* Return a string giving the keyword associate with CODE. */
12560 static const char *
12561 tag_name (enum tag_types code)
12563 switch (code)
12565 case record_type:
12566 return "struct";
12567 case class_type:
12568 return "class";
12569 case union_type:
12570 return "union";
12571 case enum_type:
12572 return "enum";
12573 case typename_type:
12574 return "typename";
12575 default:
12576 gcc_unreachable ();
12580 /* Name lookup in an elaborated-type-specifier (after the keyword
12581 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
12582 elaborated-type-specifier is invalid, issue a diagnostic and return
12583 error_mark_node; otherwise, return the *_TYPE to which it referred.
12584 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
12586 tree
12587 check_elaborated_type_specifier (enum tag_types tag_code,
12588 tree decl,
12589 bool allow_template_p)
12591 tree type;
12593 /* In the case of:
12595 struct S { struct S *p; };
12597 name lookup will find the TYPE_DECL for the implicit "S::S"
12598 typedef. Adjust for that here. */
12599 if (DECL_SELF_REFERENCE_P (decl))
12600 decl = TYPE_NAME (TREE_TYPE (decl));
12602 type = TREE_TYPE (decl);
12604 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
12605 is false for this case as well. */
12606 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
12608 error ("using template type parameter %qT after %qs",
12609 type, tag_name (tag_code));
12610 return error_mark_node;
12612 /* Accept template template parameters. */
12613 else if (allow_template_p
12614 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
12615 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
12617 /* [dcl.type.elab]
12619 If the identifier resolves to a typedef-name or the
12620 simple-template-id resolves to an alias template
12621 specialization, the elaborated-type-specifier is ill-formed.
12623 In other words, the only legitimate declaration to use in the
12624 elaborated type specifier is the implicit typedef created when
12625 the type is declared. */
12626 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
12627 && !DECL_SELF_REFERENCE_P (decl)
12628 && tag_code != typename_type)
12630 if (alias_template_specialization_p (type))
12631 error ("using alias template specialization %qT after %qs",
12632 type, tag_name (tag_code));
12633 else
12634 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
12635 inform (DECL_SOURCE_LOCATION (decl),
12636 "%qD has a previous declaration here", decl);
12637 return error_mark_node;
12639 else if (TREE_CODE (type) != RECORD_TYPE
12640 && TREE_CODE (type) != UNION_TYPE
12641 && tag_code != enum_type
12642 && tag_code != typename_type)
12644 error ("%qT referred to as %qs", type, tag_name (tag_code));
12645 inform (location_of (type), "%qT has a previous declaration here", type);
12646 return error_mark_node;
12648 else if (TREE_CODE (type) != ENUMERAL_TYPE
12649 && tag_code == enum_type)
12651 error ("%qT referred to as enum", type);
12652 inform (location_of (type), "%qT has a previous declaration here", type);
12653 return error_mark_node;
12655 else if (!allow_template_p
12656 && TREE_CODE (type) == RECORD_TYPE
12657 && CLASSTYPE_IS_TEMPLATE (type))
12659 /* If a class template appears as elaborated type specifier
12660 without a template header such as:
12662 template <class T> class C {};
12663 void f(class C); // No template header here
12665 then the required template argument is missing. */
12666 error ("template argument required for %<%s %T%>",
12667 tag_name (tag_code),
12668 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
12669 return error_mark_node;
12672 return type;
12675 /* Lookup NAME in elaborate type specifier in scope according to
12676 SCOPE and issue diagnostics if necessary.
12677 Return *_TYPE node upon success, NULL_TREE when the NAME is not
12678 found, and ERROR_MARK_NODE for type error. */
12680 static tree
12681 lookup_and_check_tag (enum tag_types tag_code, tree name,
12682 tag_scope scope, bool template_header_p)
12684 tree t;
12685 tree decl;
12686 if (scope == ts_global)
12688 /* First try ordinary name lookup, ignoring hidden class name
12689 injected via friend declaration. */
12690 decl = lookup_name_prefer_type (name, 2);
12691 decl = strip_using_decl (decl);
12692 /* If that fails, the name will be placed in the smallest
12693 non-class, non-function-prototype scope according to 3.3.1/5.
12694 We may already have a hidden name declared as friend in this
12695 scope. So lookup again but not ignoring hidden names.
12696 If we find one, that name will be made visible rather than
12697 creating a new tag. */
12698 if (!decl)
12699 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
12701 else
12702 decl = lookup_type_scope (name, scope);
12704 if (decl
12705 && (DECL_CLASS_TEMPLATE_P (decl)
12706 /* If scope is ts_current we're defining a class, so ignore a
12707 template template parameter. */
12708 || (scope != ts_current
12709 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
12710 decl = DECL_TEMPLATE_RESULT (decl);
12712 if (decl && TREE_CODE (decl) == TYPE_DECL)
12714 /* Look for invalid nested type:
12715 class C {
12716 class C {};
12717 }; */
12718 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
12720 error ("%qD has the same name as the class in which it is "
12721 "declared",
12722 decl);
12723 return error_mark_node;
12726 /* Two cases we need to consider when deciding if a class
12727 template is allowed as an elaborated type specifier:
12728 1. It is a self reference to its own class.
12729 2. It comes with a template header.
12731 For example:
12733 template <class T> class C {
12734 class C *c1; // DECL_SELF_REFERENCE_P is true
12735 class D;
12737 template <class U> class C; // template_header_p is true
12738 template <class T> class C<T>::D {
12739 class C *c2; // DECL_SELF_REFERENCE_P is true
12740 }; */
12742 t = check_elaborated_type_specifier (tag_code,
12743 decl,
12744 template_header_p
12745 | DECL_SELF_REFERENCE_P (decl));
12746 if (template_header_p && t && CLASS_TYPE_P (t)
12747 && (!CLASSTYPE_TEMPLATE_INFO (t)
12748 || (!PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))))
12750 error ("%qT is not a template", t);
12751 inform (location_of (t), "previous declaration here");
12752 if (TYPE_CLASS_SCOPE_P (t)
12753 && CLASSTYPE_TEMPLATE_INFO (TYPE_CONTEXT (t)))
12754 inform (input_location,
12755 "perhaps you want to explicitly add %<%T::%>",
12756 TYPE_CONTEXT (t));
12757 t = error_mark_node;
12760 return t;
12762 else if (decl && TREE_CODE (decl) == TREE_LIST)
12764 error ("reference to %qD is ambiguous", name);
12765 print_candidates (decl);
12766 return error_mark_node;
12768 else
12769 return NULL_TREE;
12772 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
12773 Define the tag as a forward-reference if it is not defined.
12775 If a declaration is given, process it here, and report an error if
12776 multiple declarations are not identical.
12778 SCOPE is TS_CURRENT when this is also a definition. Only look in
12779 the current frame for the name (since C++ allows new names in any
12780 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
12781 declaration. Only look beginning from the current scope outward up
12782 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
12784 TEMPLATE_HEADER_P is true when this declaration is preceded by
12785 a set of template parameters. */
12787 static tree
12788 xref_tag_1 (enum tag_types tag_code, tree name,
12789 tag_scope orig_scope, bool template_header_p)
12791 enum tree_code code;
12792 tree t;
12793 tree context = NULL_TREE;
12794 tag_scope scope;
12796 gcc_assert (identifier_p (name));
12798 switch (tag_code)
12800 case record_type:
12801 case class_type:
12802 code = RECORD_TYPE;
12803 break;
12804 case union_type:
12805 code = UNION_TYPE;
12806 break;
12807 case enum_type:
12808 code = ENUMERAL_TYPE;
12809 break;
12810 default:
12811 gcc_unreachable ();
12814 if (orig_scope == ts_lambda)
12815 scope = ts_current;
12816 else
12817 scope = orig_scope;
12819 /* In case of anonymous name, xref_tag is only called to
12820 make type node and push name. Name lookup is not required. */
12821 if (anon_aggrname_p (name))
12822 t = NULL_TREE;
12823 else
12824 t = lookup_and_check_tag (tag_code, name,
12825 scope, template_header_p);
12827 if (t == error_mark_node)
12828 return error_mark_node;
12830 if (scope != ts_current && t && current_class_type
12831 && template_class_depth (current_class_type)
12832 && template_header_p)
12834 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
12835 return t;
12837 /* Since SCOPE is not TS_CURRENT, we are not looking at a
12838 definition of this tag. Since, in addition, we are currently
12839 processing a (member) template declaration of a template
12840 class, we must be very careful; consider:
12842 template <class X>
12843 struct S1
12845 template <class U>
12846 struct S2
12847 { template <class V>
12848 friend struct S1; };
12850 Here, the S2::S1 declaration should not be confused with the
12851 outer declaration. In particular, the inner version should
12852 have a template parameter of level 2, not level 1. This
12853 would be particularly important if the member declaration
12854 were instead:
12856 template <class V = U> friend struct S1;
12858 say, when we should tsubst into `U' when instantiating
12859 S2. On the other hand, when presented with:
12861 template <class T>
12862 struct S1 {
12863 template <class U>
12864 struct S2 {};
12865 template <class U>
12866 friend struct S2;
12869 we must find the inner binding eventually. We
12870 accomplish this by making sure that the new type we
12871 create to represent this declaration has the right
12872 TYPE_CONTEXT. */
12873 context = TYPE_CONTEXT (t);
12874 t = NULL_TREE;
12877 if (! t)
12879 /* If no such tag is yet defined, create a forward-reference node
12880 and record it as the "definition".
12881 When a real declaration of this type is found,
12882 the forward-reference will be altered into a real type. */
12883 if (code == ENUMERAL_TYPE)
12885 error ("use of enum %q#D without previous declaration", name);
12886 return error_mark_node;
12888 else
12890 t = make_class_type (code);
12891 TYPE_CONTEXT (t) = context;
12892 if (orig_scope == ts_lambda)
12893 /* Remember that we're declaring a lambda to avoid bogus errors
12894 in push_template_decl. */
12895 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
12896 t = pushtag (name, t, scope);
12899 else
12901 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
12903 /* Check that we aren't trying to overload a class with different
12904 constraints. */
12905 tree constr = NULL_TREE;
12906 if (current_template_parms)
12908 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
12909 constr = build_constraints (reqs, NULL_TREE);
12911 if (!redeclare_class_template (t, current_template_parms, constr))
12912 return error_mark_node;
12914 else if (!processing_template_decl
12915 && CLASS_TYPE_P (t)
12916 && CLASSTYPE_IS_TEMPLATE (t))
12918 error ("redeclaration of %qT as a non-template", t);
12919 inform (location_of (t), "previous declaration %qD", t);
12920 return error_mark_node;
12923 /* Make injected friend class visible. */
12924 if (scope != ts_within_enclosing_non_class
12925 && hidden_name_p (TYPE_NAME (t)))
12927 DECL_ANTICIPATED (TYPE_NAME (t)) = 0;
12928 DECL_FRIEND_P (TYPE_NAME (t)) = 0;
12930 if (TYPE_TEMPLATE_INFO (t))
12932 DECL_ANTICIPATED (TYPE_TI_TEMPLATE (t)) = 0;
12933 DECL_FRIEND_P (TYPE_TI_TEMPLATE (t)) = 0;
12938 return t;
12941 /* Wrapper for xref_tag_1. */
12943 tree
12944 xref_tag (enum tag_types tag_code, tree name,
12945 tag_scope scope, bool template_header_p)
12947 tree ret;
12948 bool subtime;
12949 subtime = timevar_cond_start (TV_NAME_LOOKUP);
12950 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
12951 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
12952 return ret;
12956 tree
12957 xref_tag_from_type (tree old, tree id, tag_scope scope)
12959 enum tag_types tag_kind;
12961 if (TREE_CODE (old) == RECORD_TYPE)
12962 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
12963 else
12964 tag_kind = union_type;
12966 if (id == NULL_TREE)
12967 id = TYPE_IDENTIFIER (old);
12969 return xref_tag (tag_kind, id, scope, false);
12972 /* Create the binfo hierarchy for REF with (possibly NULL) base list
12973 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
12974 access_* node, and the TREE_VALUE is the type of the base-class.
12975 Non-NULL TREE_TYPE indicates virtual inheritance. */
12977 void
12978 xref_basetypes (tree ref, tree base_list)
12980 tree *basep;
12981 tree binfo, base_binfo;
12982 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
12983 unsigned max_bases = 0; /* Maximum direct bases. */
12984 unsigned max_dvbases = 0; /* Maximum direct virtual bases. */
12985 int i;
12986 tree default_access;
12987 tree igo_prev; /* Track Inheritance Graph Order. */
12989 if (ref == error_mark_node)
12990 return;
12992 /* The base of a derived class is private by default, all others are
12993 public. */
12994 default_access = (TREE_CODE (ref) == RECORD_TYPE
12995 && CLASSTYPE_DECLARED_CLASS (ref)
12996 ? access_private_node : access_public_node);
12998 /* First, make sure that any templates in base-classes are
12999 instantiated. This ensures that if we call ourselves recursively
13000 we do not get confused about which classes are marked and which
13001 are not. */
13002 basep = &base_list;
13003 while (*basep)
13005 tree basetype = TREE_VALUE (*basep);
13007 /* The dependent_type_p call below should really be dependent_scope_p
13008 so that we give a hard error about using an incomplete type as a
13009 base, but we allow it with a pedwarn for backward
13010 compatibility. */
13011 if (processing_template_decl
13012 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
13013 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
13014 if (!dependent_type_p (basetype)
13015 && !complete_type_or_else (basetype, NULL))
13016 /* An incomplete type. Remove it from the list. */
13017 *basep = TREE_CHAIN (*basep);
13018 else
13020 max_bases++;
13021 if (TREE_TYPE (*basep))
13022 max_dvbases++;
13023 if (CLASS_TYPE_P (basetype))
13024 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
13025 basep = &TREE_CHAIN (*basep);
13028 max_vbases += max_dvbases;
13030 TYPE_MARKED_P (ref) = 1;
13032 /* The binfo slot should be empty, unless this is an (ill-formed)
13033 redefinition. */
13034 gcc_assert (!TYPE_BINFO (ref) || TYPE_SIZE (ref));
13036 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
13038 binfo = make_tree_binfo (max_bases);
13040 TYPE_BINFO (ref) = binfo;
13041 BINFO_OFFSET (binfo) = size_zero_node;
13042 BINFO_TYPE (binfo) = ref;
13044 /* Apply base-class info set up to the variants of this type. */
13045 fixup_type_variants (ref);
13047 if (max_bases)
13049 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
13050 /* An aggregate cannot have baseclasses. */
13051 CLASSTYPE_NON_AGGREGATE (ref) = 1;
13053 if (TREE_CODE (ref) == UNION_TYPE)
13054 error ("derived union %qT invalid", ref);
13057 if (max_bases > 1)
13059 if (TYPE_FOR_JAVA (ref))
13060 error ("Java class %qT cannot have multiple bases", ref);
13061 else
13062 warning (OPT_Wmultiple_inheritance,
13063 "%qT defined with multiple direct bases", ref);
13066 if (max_vbases)
13068 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
13070 if (TYPE_FOR_JAVA (ref))
13071 error ("Java class %qT cannot have virtual bases", ref);
13072 else if (max_dvbases)
13073 warning (OPT_Wvirtual_inheritance,
13074 "%qT defined with direct virtual base", ref);
13077 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
13079 tree access = TREE_PURPOSE (base_list);
13080 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
13081 tree basetype = TREE_VALUE (base_list);
13083 if (access == access_default_node)
13084 access = default_access;
13086 if (PACK_EXPANSION_P (basetype))
13087 basetype = PACK_EXPANSION_PATTERN (basetype);
13088 if (TREE_CODE (basetype) == TYPE_DECL)
13089 basetype = TREE_TYPE (basetype);
13090 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
13092 error ("base type %qT fails to be a struct or class type",
13093 basetype);
13094 goto dropped_base;
13097 if (TYPE_FOR_JAVA (basetype) && (current_lang_depth () == 0))
13098 TYPE_FOR_JAVA (ref) = 1;
13100 base_binfo = NULL_TREE;
13101 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
13103 base_binfo = TYPE_BINFO (basetype);
13104 /* The original basetype could have been a typedef'd type. */
13105 basetype = BINFO_TYPE (base_binfo);
13107 /* Inherit flags from the base. */
13108 TYPE_HAS_NEW_OPERATOR (ref)
13109 |= TYPE_HAS_NEW_OPERATOR (basetype);
13110 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
13111 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
13112 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
13113 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
13114 CLASSTYPE_DIAMOND_SHAPED_P (ref)
13115 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
13116 CLASSTYPE_REPEATED_BASE_P (ref)
13117 |= CLASSTYPE_REPEATED_BASE_P (basetype);
13120 /* We must do this test after we've seen through a typedef
13121 type. */
13122 if (TYPE_MARKED_P (basetype))
13124 if (basetype == ref)
13125 error ("recursive type %qT undefined", basetype);
13126 else
13127 error ("duplicate base type %qT invalid", basetype);
13128 goto dropped_base;
13131 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
13132 /* Regenerate the pack expansion for the bases. */
13133 basetype = make_pack_expansion (basetype);
13135 TYPE_MARKED_P (basetype) = 1;
13137 base_binfo = copy_binfo (base_binfo, basetype, ref,
13138 &igo_prev, via_virtual);
13139 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
13140 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
13142 BINFO_BASE_APPEND (binfo, base_binfo);
13143 BINFO_BASE_ACCESS_APPEND (binfo, access);
13144 continue;
13146 dropped_base:
13147 /* Update max_vbases to reflect the reality that we are dropping
13148 this base: if it reaches zero we want to undo the vec_alloc
13149 above to avoid inconsistencies during error-recovery: eg, in
13150 build_special_member_call, CLASSTYPE_VBASECLASSES non null
13151 and vtt null (c++/27952). */
13152 if (via_virtual)
13153 max_vbases--;
13154 if (CLASS_TYPE_P (basetype))
13155 max_vbases
13156 -= vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
13159 if (CLASSTYPE_VBASECLASSES (ref)
13160 && max_vbases == 0)
13161 vec_free (CLASSTYPE_VBASECLASSES (ref));
13163 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
13164 /* If we didn't get max_vbases vbases, we must have shared at
13165 least one of them, and are therefore diamond shaped. */
13166 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
13168 /* Unmark all the types. */
13169 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
13170 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
13171 TYPE_MARKED_P (ref) = 0;
13173 /* Now see if we have a repeated base type. */
13174 if (!CLASSTYPE_REPEATED_BASE_P (ref))
13176 for (base_binfo = binfo; base_binfo;
13177 base_binfo = TREE_CHAIN (base_binfo))
13179 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
13181 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
13182 break;
13184 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
13186 for (base_binfo = binfo; base_binfo;
13187 base_binfo = TREE_CHAIN (base_binfo))
13188 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
13189 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
13190 else
13191 break;
13196 /* Copies the enum-related properties from type SRC to type DST.
13197 Used with the underlying type of an enum and the enum itself. */
13198 static void
13199 copy_type_enum (tree dst, tree src)
13201 tree t;
13202 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
13204 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
13205 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
13206 TYPE_SIZE (t) = TYPE_SIZE (src);
13207 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
13208 SET_TYPE_MODE (dst, TYPE_MODE (src));
13209 TYPE_PRECISION (t) = TYPE_PRECISION (src);
13210 unsigned valign = TYPE_ALIGN (src);
13211 if (TYPE_USER_ALIGN (t))
13212 valign = MAX (valign, TYPE_ALIGN (t));
13213 else
13214 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
13215 SET_TYPE_ALIGN (t, valign);
13216 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
13220 /* Begin compiling the definition of an enumeration type.
13221 NAME is its name,
13223 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
13225 UNDERLYING_TYPE is the type that will be used as the storage for
13226 the enumeration type. This should be NULL_TREE if no storage type
13227 was specified.
13229 ATTRIBUTES are any attributes specified after the enum-key.
13231 SCOPED_ENUM_P is true if this is a scoped enumeration type.
13233 if IS_NEW is not NULL, gets TRUE iff a new type is created.
13235 Returns the type object, as yet incomplete.
13236 Also records info about it so that build_enumerator
13237 may be used to declare the individual values as they are read. */
13239 tree
13240 start_enum (tree name, tree enumtype, tree underlying_type,
13241 tree attributes, bool scoped_enum_p, bool *is_new)
13243 tree prevtype = NULL_TREE;
13244 gcc_assert (identifier_p (name));
13246 if (is_new)
13247 *is_new = false;
13248 /* [C++0x dcl.enum]p5:
13250 If not explicitly specified, the underlying type of a scoped
13251 enumeration type is int. */
13252 if (!underlying_type && scoped_enum_p)
13253 underlying_type = integer_type_node;
13255 if (underlying_type)
13256 underlying_type = cv_unqualified (underlying_type);
13258 /* If this is the real definition for a previous forward reference,
13259 fill in the contents in the same object that used to be the
13260 forward reference. */
13261 if (!enumtype)
13262 enumtype = lookup_and_check_tag (enum_type, name,
13263 /*tag_scope=*/ts_current,
13264 /*template_header_p=*/false);
13266 /* In case of a template_decl, the only check that should be deferred
13267 to instantiation time is the comparison of underlying types. */
13268 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
13270 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
13272 error_at (input_location, "scoped/unscoped mismatch "
13273 "in enum %q#T", enumtype);
13274 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13275 "previous definition here");
13276 enumtype = error_mark_node;
13278 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
13280 error_at (input_location, "underlying type mismatch "
13281 "in enum %q#T", enumtype);
13282 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13283 "previous definition here");
13284 enumtype = error_mark_node;
13286 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
13287 && !dependent_type_p (underlying_type)
13288 && !dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))
13289 && !same_type_p (underlying_type,
13290 ENUM_UNDERLYING_TYPE (enumtype)))
13292 error_at (input_location, "different underlying type "
13293 "in enum %q#T", enumtype);
13294 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13295 "previous definition here");
13296 underlying_type = NULL_TREE;
13300 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
13301 || processing_template_decl)
13303 /* In case of error, make a dummy enum to allow parsing to
13304 continue. */
13305 if (enumtype == error_mark_node)
13307 name = make_anon_name ();
13308 enumtype = NULL_TREE;
13311 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
13312 of an opaque enum, or an opaque enum of an already defined
13313 enumeration (C++0x only).
13314 In any other case, it'll be NULL_TREE. */
13315 if (!enumtype)
13317 if (is_new)
13318 *is_new = true;
13320 prevtype = enumtype;
13322 /* Do not push the decl more than once, unless we need to
13323 compare underlying types at instantiation time */
13324 if (!enumtype
13325 || TREE_CODE (enumtype) != ENUMERAL_TYPE
13326 || (underlying_type
13327 && dependent_type_p (underlying_type))
13328 || (ENUM_UNDERLYING_TYPE (enumtype)
13329 && dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))))
13331 enumtype = cxx_make_type (ENUMERAL_TYPE);
13332 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
13334 else
13335 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
13336 false);
13338 if (enumtype == error_mark_node)
13339 return error_mark_node;
13341 /* The enum is considered opaque until the opening '{' of the
13342 enumerator list. */
13343 SET_OPAQUE_ENUM_P (enumtype, true);
13344 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
13347 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
13349 cplus_decl_attributes (&enumtype, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
13351 if (underlying_type)
13353 if (ENUM_UNDERLYING_TYPE (enumtype))
13354 /* We already checked that it matches, don't change it to a different
13355 typedef variant. */;
13356 else if (CP_INTEGRAL_TYPE_P (underlying_type))
13358 copy_type_enum (enumtype, underlying_type);
13359 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
13361 else if (dependent_type_p (underlying_type))
13362 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
13363 else
13364 error ("underlying type %<%T%> of %<%T%> must be an integral type",
13365 underlying_type, enumtype);
13368 /* If into a template class, the returned enum is always the first
13369 declaration (opaque or not) seen. This way all the references to
13370 this type will be to the same declaration. The following ones are used
13371 only to check for definition errors. */
13372 if (prevtype && processing_template_decl)
13373 return prevtype;
13374 else
13375 return enumtype;
13378 /* After processing and defining all the values of an enumeration type,
13379 install their decls in the enumeration type.
13380 ENUMTYPE is the type object. */
13382 void
13383 finish_enum_value_list (tree enumtype)
13385 tree values;
13386 tree underlying_type;
13387 tree decl;
13388 tree value;
13389 tree minnode, maxnode;
13390 tree t;
13392 bool fixed_underlying_type_p
13393 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
13395 /* We built up the VALUES in reverse order. */
13396 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
13398 /* For an enum defined in a template, just set the type of the values;
13399 all further processing is postponed until the template is
13400 instantiated. We need to set the type so that tsubst of a CONST_DECL
13401 works. */
13402 if (processing_template_decl)
13404 for (values = TYPE_VALUES (enumtype);
13405 values;
13406 values = TREE_CHAIN (values))
13407 TREE_TYPE (TREE_VALUE (values)) = enumtype;
13408 return;
13411 /* Determine the minimum and maximum values of the enumerators. */
13412 if (TYPE_VALUES (enumtype))
13414 minnode = maxnode = NULL_TREE;
13416 for (values = TYPE_VALUES (enumtype);
13417 values;
13418 values = TREE_CHAIN (values))
13420 decl = TREE_VALUE (values);
13422 /* [dcl.enum]: Following the closing brace of an enum-specifier,
13423 each enumerator has the type of its enumeration. Prior to the
13424 closing brace, the type of each enumerator is the type of its
13425 initializing value. */
13426 TREE_TYPE (decl) = enumtype;
13428 /* Update the minimum and maximum values, if appropriate. */
13429 value = DECL_INITIAL (decl);
13430 if (value == error_mark_node)
13431 value = integer_zero_node;
13432 /* Figure out what the minimum and maximum values of the
13433 enumerators are. */
13434 if (!minnode)
13435 minnode = maxnode = value;
13436 else if (tree_int_cst_lt (maxnode, value))
13437 maxnode = value;
13438 else if (tree_int_cst_lt (value, minnode))
13439 minnode = value;
13442 else
13443 /* [dcl.enum]
13445 If the enumerator-list is empty, the underlying type is as if
13446 the enumeration had a single enumerator with value 0. */
13447 minnode = maxnode = integer_zero_node;
13449 if (!fixed_underlying_type_p)
13451 /* Compute the number of bits require to represent all values of the
13452 enumeration. We must do this before the type of MINNODE and
13453 MAXNODE are transformed, since tree_int_cst_min_precision relies
13454 on the TREE_TYPE of the value it is passed. */
13455 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
13456 int lowprec = tree_int_cst_min_precision (minnode, sgn);
13457 int highprec = tree_int_cst_min_precision (maxnode, sgn);
13458 int precision = MAX (lowprec, highprec);
13459 unsigned int itk;
13460 bool use_short_enum;
13462 /* Determine the underlying type of the enumeration.
13464 [dcl.enum]
13466 The underlying type of an enumeration is an integral type that
13467 can represent all the enumerator values defined in the
13468 enumeration. It is implementation-defined which integral type is
13469 used as the underlying type for an enumeration except that the
13470 underlying type shall not be larger than int unless the value of
13471 an enumerator cannot fit in an int or unsigned int.
13473 We use "int" or an "unsigned int" as the underlying type, even if
13474 a smaller integral type would work, unless the user has
13475 explicitly requested that we use the smallest possible type. The
13476 user can request that for all enumerations with a command line
13477 flag, or for just one enumeration with an attribute. */
13479 use_short_enum = flag_short_enums
13480 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
13482 /* If the precision of the type was specified with an attribute and it
13483 was too small, give an error. Otherwise, use it. */
13484 if (TYPE_PRECISION (enumtype))
13486 if (precision > TYPE_PRECISION (enumtype))
13487 error ("specified mode too small for enumeral values");
13488 else
13490 use_short_enum = true;
13491 precision = TYPE_PRECISION (enumtype);
13495 for (itk = (use_short_enum ? itk_char : itk_int);
13496 itk != itk_none;
13497 itk++)
13499 underlying_type = integer_types[itk];
13500 if (underlying_type != NULL_TREE
13501 && TYPE_PRECISION (underlying_type) >= precision
13502 && TYPE_SIGN (underlying_type) == sgn)
13503 break;
13505 if (itk == itk_none)
13507 /* DR 377
13509 IF no integral type can represent all the enumerator values, the
13510 enumeration is ill-formed. */
13511 error ("no integral type can represent all of the enumerator values "
13512 "for %qT", enumtype);
13513 precision = TYPE_PRECISION (long_long_integer_type_node);
13514 underlying_type = integer_types[itk_unsigned_long_long];
13517 /* [dcl.enum]
13519 The value of sizeof() applied to an enumeration type, an object
13520 of an enumeration type, or an enumerator, is the value of sizeof()
13521 applied to the underlying type. */
13522 copy_type_enum (enumtype, underlying_type);
13524 /* Compute the minimum and maximum values for the type.
13526 [dcl.enum]
13528 For an enumeration where emin is the smallest enumerator and emax
13529 is the largest, the values of the enumeration are the values of the
13530 underlying type in the range bmin to bmax, where bmin and bmax are,
13531 respectively, the smallest and largest values of the smallest bit-
13532 field that can store emin and emax. */
13534 /* The middle-end currently assumes that types with TYPE_PRECISION
13535 narrower than their underlying type are suitably zero or sign
13536 extended to fill their mode. Similarly, it assumes that the front
13537 end assures that a value of a particular type must be within
13538 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
13540 We used to set these fields based on bmin and bmax, but that led
13541 to invalid assumptions like optimizing away bounds checking. So
13542 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
13543 TYPE_MAX_VALUE to the values for the mode above and only restrict
13544 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
13545 ENUM_UNDERLYING_TYPE (enumtype)
13546 = build_distinct_type_copy (underlying_type);
13547 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
13548 set_min_and_max_values_for_integral_type
13549 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
13551 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
13552 if (flag_strict_enums)
13553 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
13555 else
13556 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
13558 /* Convert each of the enumerators to the type of the underlying
13559 type of the enumeration. */
13560 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
13562 location_t saved_location;
13564 decl = TREE_VALUE (values);
13565 saved_location = input_location;
13566 input_location = DECL_SOURCE_LOCATION (decl);
13567 if (fixed_underlying_type_p)
13568 /* If the enumeration type has a fixed underlying type, we
13569 already checked all of the enumerator values. */
13570 value = DECL_INITIAL (decl);
13571 else
13572 value = perform_implicit_conversion (underlying_type,
13573 DECL_INITIAL (decl),
13574 tf_warning_or_error);
13575 input_location = saved_location;
13577 /* Do not clobber shared ints. */
13578 value = copy_node (value);
13580 TREE_TYPE (value) = enumtype;
13581 DECL_INITIAL (decl) = value;
13584 /* Fix up all variant types of this enum type. */
13585 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
13586 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
13588 if (at_class_scope_p ()
13589 && COMPLETE_TYPE_P (current_class_type)
13590 && UNSCOPED_ENUM_P (enumtype))
13591 insert_late_enum_def_into_classtype_sorted_fields (enumtype,
13592 current_class_type);
13594 /* Finish debugging output for this type. */
13595 rest_of_type_compilation (enumtype, namespace_bindings_p ());
13597 /* Each enumerator now has the type of its enumeration. Clear the cache
13598 so that this change in types doesn't confuse us later on. */
13599 clear_cv_and_fold_caches ();
13602 /* Finishes the enum type. This is called only the first time an
13603 enumeration is seen, be it opaque or odinary.
13604 ENUMTYPE is the type object. */
13606 void
13607 finish_enum (tree enumtype)
13609 if (processing_template_decl)
13611 if (at_function_scope_p ())
13612 add_stmt (build_min (TAG_DEFN, enumtype));
13613 return;
13616 /* If this is a forward declaration, there should not be any variants,
13617 though we can get a variant in the middle of an enum-specifier with
13618 wacky code like 'enum E { e = sizeof(const E*) };' */
13619 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
13620 && (TYPE_VALUES (enumtype)
13621 || !TYPE_NEXT_VARIANT (enumtype)));
13624 /* Build and install a CONST_DECL for an enumeration constant of the
13625 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
13626 Apply ATTRIBUTES if available. LOC is the location of NAME.
13627 Assignment of sequential values by default is handled here. */
13629 void
13630 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
13631 location_t loc)
13633 tree decl;
13634 tree context;
13635 tree type;
13637 /* scalar_constant_value will pull out this expression, so make sure
13638 it's folded as appropriate. */
13639 if (processing_template_decl)
13640 value = fold_non_dependent_expr (value);
13642 /* If the VALUE was erroneous, pretend it wasn't there; that will
13643 result in the enum being assigned the next value in sequence. */
13644 if (value == error_mark_node)
13645 value = NULL_TREE;
13647 /* Remove no-op casts from the value. */
13648 if (value)
13649 STRIP_TYPE_NOPS (value);
13651 if (! processing_template_decl)
13653 /* Validate and default VALUE. */
13654 if (value != NULL_TREE)
13656 if (!ENUM_UNDERLYING_TYPE (enumtype))
13658 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
13659 value, true);
13660 if (tmp_value)
13661 value = tmp_value;
13663 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
13664 (TREE_TYPE (value)))
13665 value = perform_implicit_conversion_flags
13666 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
13667 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
13669 if (value == error_mark_node)
13670 value = NULL_TREE;
13672 if (value != NULL_TREE)
13674 if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
13675 (TREE_TYPE (value)))
13677 error ("enumerator value for %qD must have integral or "
13678 "unscoped enumeration type", name);
13679 value = NULL_TREE;
13681 else
13683 value = cxx_constant_value (value);
13685 if (TREE_CODE (value) != INTEGER_CST)
13687 error ("enumerator value for %qD is not an integer "
13688 "constant", name);
13689 value = NULL_TREE;
13695 /* Default based on previous value. */
13696 if (value == NULL_TREE)
13698 if (TYPE_VALUES (enumtype))
13700 tree prev_value;
13701 bool overflowed;
13703 /* C++03 7.2/4: If no initializer is specified for the first
13704 enumerator, the type is an unspecified integral
13705 type. Otherwise the type is the same as the type of the
13706 initializing value of the preceding enumerator unless the
13707 incremented value is not representable in that type, in
13708 which case the type is an unspecified integral type
13709 sufficient to contain the incremented value. */
13710 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
13711 if (error_operand_p (prev_value))
13712 value = error_mark_node;
13713 else
13715 tree type = TREE_TYPE (prev_value);
13716 signop sgn = TYPE_SIGN (type);
13717 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
13718 &overflowed);
13719 if (!overflowed)
13721 bool pos = !wi::neg_p (wi, sgn);
13722 if (!wi::fits_to_tree_p (wi, type))
13724 unsigned int itk;
13725 for (itk = itk_int; itk != itk_none; itk++)
13727 type = integer_types[itk];
13728 if (type != NULL_TREE
13729 && (pos || !TYPE_UNSIGNED (type))
13730 && wi::fits_to_tree_p (wi, type))
13731 break;
13733 if (type && cxx_dialect < cxx11
13734 && itk > itk_unsigned_long)
13735 pedwarn (input_location, OPT_Wlong_long, pos ? "\
13736 incremented enumerator value is too large for %<unsigned long%>" : "\
13737 incremented enumerator value is too large for %<long%>");
13739 if (type == NULL_TREE)
13740 overflowed = true;
13741 else
13742 value = wide_int_to_tree (type, wi);
13745 if (overflowed)
13747 error ("overflow in enumeration values at %qD", name);
13748 value = error_mark_node;
13752 else
13753 value = integer_zero_node;
13756 /* Remove no-op casts from the value. */
13757 STRIP_TYPE_NOPS (value);
13759 /* If the underlying type of the enum is fixed, check whether
13760 the enumerator values fits in the underlying type. If it
13761 does not fit, the program is ill-formed [C++0x dcl.enum]. */
13762 if (ENUM_UNDERLYING_TYPE (enumtype)
13763 && value
13764 && TREE_CODE (value) == INTEGER_CST)
13766 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
13767 error ("enumerator value %E is outside the range of underlying "
13768 "type %<%T%>", value, ENUM_UNDERLYING_TYPE (enumtype));
13770 /* Convert the value to the appropriate type. */
13771 value = fold_convert (ENUM_UNDERLYING_TYPE (enumtype), value);
13775 /* C++ associates enums with global, function, or class declarations. */
13776 context = current_scope ();
13778 /* Build the actual enumeration constant. Note that the enumeration
13779 constants have the underlying type of the enum (if it is fixed)
13780 or the type of their initializer (if the underlying type of the
13781 enum is not fixed):
13783 [ C++0x dcl.enum ]
13785 If the underlying type is fixed, the type of each enumerator
13786 prior to the closing brace is the underlying type; if the
13787 initializing value of an enumerator cannot be represented by
13788 the underlying type, the program is ill-formed. If the
13789 underlying type is not fixed, the type of each enumerator is
13790 the type of its initializing value.
13792 If the underlying type is not fixed, it will be computed by
13793 finish_enum and we will reset the type of this enumerator. Of
13794 course, if we're processing a template, there may be no value. */
13795 type = value ? TREE_TYPE (value) : NULL_TREE;
13797 decl = build_decl (loc, CONST_DECL, name, type);
13799 DECL_CONTEXT (decl) = enumtype;
13800 TREE_CONSTANT (decl) = 1;
13801 TREE_READONLY (decl) = 1;
13802 DECL_INITIAL (decl) = value;
13804 if (attributes)
13805 cplus_decl_attributes (&decl, attributes, 0);
13807 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
13809 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
13810 on the TYPE_FIELDS list for `S'. (That's so that you can say
13811 things like `S::i' later.) */
13813 /* The enumerator may be getting declared outside of its enclosing
13814 class, like so:
13816 class S { public: enum E : int; }; enum S::E : int { i = 7; };
13818 For which case we need to make sure that the access of `S::i'
13819 matches the access of `S::E'. */
13820 tree saved_cas = current_access_specifier;
13821 if (TREE_PRIVATE (TYPE_NAME (enumtype)))
13822 current_access_specifier = access_private_node;
13823 else if (TREE_PROTECTED (TYPE_NAME (enumtype)))
13824 current_access_specifier = access_protected_node;
13825 else
13826 current_access_specifier = access_public_node;
13828 finish_member_declaration (decl);
13830 current_access_specifier = saved_cas;
13832 else
13833 pushdecl (decl);
13835 /* Add this enumeration constant to the list for this type. */
13836 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
13839 /* Look for an enumerator with the given NAME within the enumeration
13840 type ENUMTYPE. This routine is used primarily for qualified name
13841 lookup into an enumerator in C++0x, e.g.,
13843 enum class Color { Red, Green, Blue };
13845 Color color = Color::Red;
13847 Returns the value corresponding to the enumerator, or
13848 NULL_TREE if no such enumerator was found. */
13849 tree
13850 lookup_enumerator (tree enumtype, tree name)
13852 tree e;
13853 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
13855 e = purpose_member (name, TYPE_VALUES (enumtype));
13856 return e? TREE_VALUE (e) : NULL_TREE;
13860 /* We're defining DECL. Make sure that its type is OK. */
13862 static void
13863 check_function_type (tree decl, tree current_function_parms)
13865 tree fntype = TREE_TYPE (decl);
13866 tree return_type = complete_type (TREE_TYPE (fntype));
13868 /* In a function definition, arg types must be complete. */
13869 require_complete_types_for_parms (current_function_parms);
13871 if (dependent_type_p (return_type)
13872 || type_uses_auto (return_type))
13873 return;
13874 if (!COMPLETE_OR_VOID_TYPE_P (return_type)
13875 || (TYPE_FOR_JAVA (return_type) && MAYBE_CLASS_TYPE_P (return_type)))
13877 tree args = TYPE_ARG_TYPES (fntype);
13879 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
13880 error ("return type %q#T is incomplete", return_type);
13881 else
13882 error ("return type has Java class type %q#T", return_type);
13884 /* Make it return void instead. */
13885 if (TREE_CODE (fntype) == METHOD_TYPE)
13886 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
13887 void_type_node,
13888 TREE_CHAIN (args));
13889 else
13890 fntype = build_function_type (void_type_node, args);
13891 fntype
13892 = build_exception_variant (fntype,
13893 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)));
13894 fntype = (cp_build_type_attribute_variant
13895 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
13896 TREE_TYPE (decl) = fntype;
13898 else
13899 abstract_virtuals_error (decl, TREE_TYPE (fntype));
13902 /* True iff FN is an implicitly-defined default constructor. */
13904 static bool
13905 implicit_default_ctor_p (tree fn)
13907 return (DECL_CONSTRUCTOR_P (fn)
13908 && !user_provided_p (fn)
13909 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)));
13912 /* Clobber the contents of *this to let the back end know that the object
13913 storage is dead when we enter the constructor or leave the destructor. */
13915 static tree
13916 build_clobber_this ()
13918 /* Clobbering an empty base is pointless, and harmful if its one byte
13919 TYPE_SIZE overlays real data. */
13920 if (is_empty_class (current_class_type))
13921 return void_node;
13923 /* If we have virtual bases, clobber the whole object, but only if we're in
13924 charge. If we don't have virtual bases, clobber the as-base type so we
13925 don't mess with tail padding. */
13926 bool vbases = CLASSTYPE_VBASECLASSES (current_class_type);
13928 tree ctype = current_class_type;
13929 if (!vbases)
13930 ctype = CLASSTYPE_AS_BASE (ctype);
13932 tree clobber = build_constructor (ctype, NULL);
13933 TREE_THIS_VOLATILE (clobber) = true;
13935 tree thisref = current_class_ref;
13936 if (ctype != current_class_type)
13938 thisref = build_nop (build_reference_type (ctype), current_class_ptr);
13939 thisref = convert_from_reference (thisref);
13942 tree exprstmt = build2 (MODIFY_EXPR, void_type_node, thisref, clobber);
13943 if (vbases)
13944 exprstmt = build_if_in_charge (exprstmt);
13946 return exprstmt;
13949 /* Create the FUNCTION_DECL for a function definition.
13950 DECLSPECS and DECLARATOR are the parts of the declaration;
13951 they describe the function's name and the type it returns,
13952 but twisted together in a fashion that parallels the syntax of C.
13954 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
13955 DECLARATOR is really the DECL for the function we are about to
13956 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
13957 indicating that the function is an inline defined in-class.
13959 This function creates a binding context for the function body
13960 as well as setting up the FUNCTION_DECL in current_function_decl.
13962 For C++, we must first check whether that datum makes any sense.
13963 For example, "class A local_a(1,2);" means that variable local_a
13964 is an aggregate of type A, which should have a constructor
13965 applied to it with the argument list [1, 2].
13967 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
13968 or may be a BLOCK if the function has been defined previously
13969 in this translation unit. On exit, DECL_INITIAL (decl1) will be
13970 error_mark_node if the function has never been defined, or
13971 a BLOCK if the function has been defined somewhere. */
13973 bool
13974 start_preparsed_function (tree decl1, tree attrs, int flags)
13976 tree ctype = NULL_TREE;
13977 tree fntype;
13978 tree restype;
13979 int doing_friend = 0;
13980 cp_binding_level *bl;
13981 tree current_function_parms;
13982 struct c_fileinfo *finfo
13983 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
13984 bool honor_interface;
13986 /* Sanity check. */
13987 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
13988 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
13990 fntype = TREE_TYPE (decl1);
13991 if (TREE_CODE (fntype) == METHOD_TYPE)
13992 ctype = TYPE_METHOD_BASETYPE (fntype);
13994 /* ISO C++ 11.4/5. A friend function defined in a class is in
13995 the (lexical) scope of the class in which it is defined. */
13996 if (!ctype && DECL_FRIEND_P (decl1))
13998 ctype = DECL_FRIEND_CONTEXT (decl1);
14000 /* CTYPE could be null here if we're dealing with a template;
14001 for example, `inline friend float foo()' inside a template
14002 will have no CTYPE set. */
14003 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
14004 ctype = NULL_TREE;
14005 else
14006 doing_friend = 1;
14009 if (DECL_DECLARED_INLINE_P (decl1)
14010 && lookup_attribute ("noinline", attrs))
14011 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
14012 "inline function %qD given attribute noinline", decl1);
14014 /* Handle gnu_inline attribute. */
14015 if (GNU_INLINE_P (decl1))
14017 DECL_EXTERNAL (decl1) = 1;
14018 DECL_NOT_REALLY_EXTERN (decl1) = 0;
14019 DECL_INTERFACE_KNOWN (decl1) = 1;
14020 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
14023 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
14024 /* This is a constructor, we must ensure that any default args
14025 introduced by this definition are propagated to the clones
14026 now. The clones are used directly in overload resolution. */
14027 adjust_clone_args (decl1);
14029 /* Sometimes we don't notice that a function is a static member, and
14030 build a METHOD_TYPE for it. Fix that up now. */
14031 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
14032 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
14034 /* Set up current_class_type, and enter the scope of the class, if
14035 appropriate. */
14036 if (ctype)
14037 push_nested_class (ctype);
14038 else if (DECL_STATIC_FUNCTION_P (decl1))
14039 push_nested_class (DECL_CONTEXT (decl1));
14041 /* Now that we have entered the scope of the class, we must restore
14042 the bindings for any template parameters surrounding DECL1, if it
14043 is an inline member template. (Order is important; consider the
14044 case where a template parameter has the same name as a field of
14045 the class.) It is not until after this point that
14046 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
14047 if (flags & SF_INCLASS_INLINE)
14048 maybe_begin_member_template_processing (decl1);
14050 /* Effective C++ rule 15. */
14051 if (warn_ecpp
14052 && DECL_OVERLOADED_OPERATOR_P (decl1) == NOP_EXPR
14053 && VOID_TYPE_P (TREE_TYPE (fntype)))
14054 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
14056 /* Make the init_value nonzero so pushdecl knows this is not tentative.
14057 error_mark_node is replaced below (in poplevel) with the BLOCK. */
14058 if (!DECL_INITIAL (decl1))
14059 DECL_INITIAL (decl1) = error_mark_node;
14061 /* This function exists in static storage.
14062 (This does not mean `static' in the C sense!) */
14063 TREE_STATIC (decl1) = 1;
14065 /* We must call push_template_decl after current_class_type is set
14066 up. (If we are processing inline definitions after exiting a
14067 class scope, current_class_type will be NULL_TREE until set above
14068 by push_nested_class.) */
14069 if (processing_template_decl)
14071 tree newdecl1 = push_template_decl (decl1);
14072 if (newdecl1 == error_mark_node)
14074 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
14075 pop_nested_class ();
14076 return false;
14078 decl1 = newdecl1;
14081 /* We are now in the scope of the function being defined. */
14082 current_function_decl = decl1;
14084 /* Save the parm names or decls from this function's declarator
14085 where store_parm_decls will find them. */
14086 current_function_parms = DECL_ARGUMENTS (decl1);
14088 /* Make sure the parameter and return types are reasonable. When
14089 you declare a function, these types can be incomplete, but they
14090 must be complete when you define the function. */
14091 check_function_type (decl1, current_function_parms);
14093 /* Build the return declaration for the function. */
14094 restype = TREE_TYPE (fntype);
14096 if (DECL_RESULT (decl1) == NULL_TREE)
14098 tree resdecl;
14100 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
14101 DECL_ARTIFICIAL (resdecl) = 1;
14102 DECL_IGNORED_P (resdecl) = 1;
14103 DECL_RESULT (decl1) = resdecl;
14105 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
14108 /* Let the user know we're compiling this function. */
14109 announce_function (decl1);
14111 /* Record the decl so that the function name is defined.
14112 If we already have a decl for this name, and it is a FUNCTION_DECL,
14113 use the old decl. */
14114 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
14116 /* A specialization is not used to guide overload resolution. */
14117 if (!DECL_FUNCTION_MEMBER_P (decl1)
14118 && !(DECL_USE_TEMPLATE (decl1) &&
14119 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
14121 tree olddecl = pushdecl (decl1);
14123 if (olddecl == error_mark_node)
14124 /* If something went wrong when registering the declaration,
14125 use DECL1; we have to have a FUNCTION_DECL to use when
14126 parsing the body of the function. */
14128 else
14130 /* Otherwise, OLDDECL is either a previous declaration
14131 of the same function or DECL1 itself. */
14133 if (warn_missing_declarations
14134 && olddecl == decl1
14135 && !DECL_MAIN_P (decl1)
14136 && TREE_PUBLIC (decl1)
14137 && !DECL_DECLARED_INLINE_P (decl1))
14139 tree context;
14141 /* Check whether DECL1 is in an anonymous
14142 namespace. */
14143 for (context = DECL_CONTEXT (decl1);
14144 context;
14145 context = DECL_CONTEXT (context))
14147 if (TREE_CODE (context) == NAMESPACE_DECL
14148 && DECL_NAME (context) == NULL_TREE)
14149 break;
14152 if (context == NULL)
14153 warning_at (DECL_SOURCE_LOCATION (decl1),
14154 OPT_Wmissing_declarations,
14155 "no previous declaration for %qD", decl1);
14158 decl1 = olddecl;
14161 else
14163 /* We need to set the DECL_CONTEXT. */
14164 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
14165 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
14167 fntype = TREE_TYPE (decl1);
14168 restype = TREE_TYPE (fntype);
14170 /* If #pragma weak applies, mark the decl appropriately now.
14171 The pragma only applies to global functions. Because
14172 determining whether or not the #pragma applies involves
14173 computing the mangled name for the declaration, we cannot
14174 apply the pragma until after we have merged this declaration
14175 with any previous declarations; if the original declaration
14176 has a linkage specification, that specification applies to
14177 the definition as well, and may affect the mangled name. */
14178 if (DECL_FILE_SCOPE_P (decl1))
14179 maybe_apply_pragma_weak (decl1);
14182 /* Reset this in case the call to pushdecl changed it. */
14183 current_function_decl = decl1;
14185 gcc_assert (DECL_INITIAL (decl1));
14187 /* This function may already have been parsed, in which case just
14188 return; our caller will skip over the body without parsing. */
14189 if (DECL_INITIAL (decl1) != error_mark_node)
14190 return true;
14192 /* Initialize RTL machinery. We cannot do this until
14193 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
14194 even when processing a template; this is how we get
14195 CFUN set up, and our per-function variables initialized.
14196 FIXME factor out the non-RTL stuff. */
14197 bl = current_binding_level;
14198 allocate_struct_function (decl1, processing_template_decl);
14200 /* Initialize the language data structures. Whenever we start
14201 a new function, we destroy temporaries in the usual way. */
14202 cfun->language = ggc_cleared_alloc<language_function> ();
14203 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
14204 current_binding_level = bl;
14206 if (!processing_template_decl && type_uses_auto (restype))
14208 FNDECL_USED_AUTO (decl1) = true;
14209 current_function_auto_return_pattern = restype;
14212 /* Start the statement-tree, start the tree now. */
14213 DECL_SAVED_TREE (decl1) = push_stmt_list ();
14215 /* If we are (erroneously) defining a function that we have already
14216 defined before, wipe out what we knew before. */
14217 if (!DECL_PENDING_INLINE_P (decl1))
14218 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
14220 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
14222 /* We know that this was set up by `grokclassfn'. We do not
14223 wait until `store_parm_decls', since evil parse errors may
14224 never get us to that point. Here we keep the consistency
14225 between `current_class_type' and `current_class_ptr'. */
14226 tree t = DECL_ARGUMENTS (decl1);
14228 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
14229 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
14231 cp_function_chain->x_current_class_ref
14232 = cp_build_indirect_ref (t, RO_NULL, tf_warning_or_error);
14233 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
14234 cp_function_chain->x_current_class_ptr = t;
14236 /* Constructors and destructors need to know whether they're "in
14237 charge" of initializing virtual base classes. */
14238 t = DECL_CHAIN (t);
14239 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
14241 current_in_charge_parm = t;
14242 t = DECL_CHAIN (t);
14244 if (DECL_HAS_VTT_PARM_P (decl1))
14246 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
14247 current_vtt_parm = t;
14251 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
14252 /* Implicitly-defined methods (like the
14253 destructor for a class in which no destructor
14254 is explicitly declared) must not be defined
14255 until their definition is needed. So, we
14256 ignore interface specifications for
14257 compiler-generated functions. */
14258 && !DECL_ARTIFICIAL (decl1));
14260 if (processing_template_decl)
14261 /* Don't mess with interface flags. */;
14262 else if (DECL_INTERFACE_KNOWN (decl1))
14264 tree ctx = decl_function_context (decl1);
14266 if (DECL_NOT_REALLY_EXTERN (decl1))
14267 DECL_EXTERNAL (decl1) = 0;
14269 if (ctx != NULL_TREE && vague_linkage_p (ctx))
14270 /* This is a function in a local class in an extern inline
14271 or template function. */
14272 comdat_linkage (decl1);
14274 /* If this function belongs to an interface, it is public.
14275 If it belongs to someone else's interface, it is also external.
14276 This only affects inlines and template instantiations. */
14277 else if (!finfo->interface_unknown && honor_interface)
14279 if (DECL_DECLARED_INLINE_P (decl1)
14280 || DECL_TEMPLATE_INSTANTIATION (decl1))
14282 DECL_EXTERNAL (decl1)
14283 = (finfo->interface_only
14284 || (DECL_DECLARED_INLINE_P (decl1)
14285 && ! flag_implement_inlines
14286 && !DECL_VINDEX (decl1)));
14288 /* For WIN32 we also want to put these in linkonce sections. */
14289 maybe_make_one_only (decl1);
14291 else
14292 DECL_EXTERNAL (decl1) = 0;
14293 DECL_INTERFACE_KNOWN (decl1) = 1;
14294 /* If this function is in an interface implemented in this file,
14295 make sure that the back end knows to emit this function
14296 here. */
14297 if (!DECL_EXTERNAL (decl1))
14298 mark_needed (decl1);
14300 else if (finfo->interface_unknown && finfo->interface_only
14301 && honor_interface)
14303 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
14304 interface, we will have both finfo->interface_unknown and
14305 finfo->interface_only set. In that case, we don't want to
14306 use the normal heuristics because someone will supply a
14307 #pragma implementation elsewhere, and deducing it here would
14308 produce a conflict. */
14309 comdat_linkage (decl1);
14310 DECL_EXTERNAL (decl1) = 0;
14311 DECL_INTERFACE_KNOWN (decl1) = 1;
14312 DECL_DEFER_OUTPUT (decl1) = 1;
14314 else
14316 /* This is a definition, not a reference.
14317 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
14318 if (!GNU_INLINE_P (decl1))
14319 DECL_EXTERNAL (decl1) = 0;
14321 if ((DECL_DECLARED_INLINE_P (decl1)
14322 || DECL_TEMPLATE_INSTANTIATION (decl1))
14323 && ! DECL_INTERFACE_KNOWN (decl1))
14324 DECL_DEFER_OUTPUT (decl1) = 1;
14325 else
14326 DECL_INTERFACE_KNOWN (decl1) = 1;
14329 /* Determine the ELF visibility attribute for the function. We must not
14330 do this before calling "pushdecl", as we must allow "duplicate_decls"
14331 to merge any attributes appropriately. We also need to wait until
14332 linkage is set. */
14333 if (!DECL_CLONED_FUNCTION_P (decl1))
14334 determine_visibility (decl1);
14336 if (!processing_template_decl)
14337 maybe_instantiate_noexcept (decl1);
14339 begin_scope (sk_function_parms, decl1);
14341 ++function_depth;
14343 if (DECL_DESTRUCTOR_P (decl1)
14344 || (DECL_CONSTRUCTOR_P (decl1)
14345 && targetm.cxx.cdtor_returns_this ()))
14346 cdtor_label = create_artificial_label (input_location);
14348 start_fname_decls ();
14350 store_parm_decls (current_function_parms);
14352 if (!processing_template_decl
14353 && (flag_lifetime_dse > 1)
14354 && DECL_CONSTRUCTOR_P (decl1)
14355 && !DECL_CLONED_FUNCTION_P (decl1)
14356 /* Clobbering an empty base is harmful if it overlays real data. */
14357 && !is_empty_class (current_class_type)
14358 /* We can't clobber safely for an implicitly-defined default constructor
14359 because part of the initialization might happen before we enter the
14360 constructor, via AGGR_INIT_ZERO_FIRST (c++/68006). */
14361 && !implicit_default_ctor_p (decl1))
14362 finish_expr_stmt (build_clobber_this ());
14364 if (!processing_template_decl
14365 && DECL_CONSTRUCTOR_P (decl1)
14366 && (flag_sanitize & SANITIZE_VPTR)
14367 && !DECL_CLONED_FUNCTION_P (decl1)
14368 && !implicit_default_ctor_p (decl1))
14369 cp_ubsan_maybe_initialize_vtbl_ptrs (current_class_ptr);
14371 return true;
14375 /* Like start_preparsed_function, except that instead of a
14376 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
14378 Returns true on success. If the DECLARATOR is not suitable
14379 for a function, we return false, which tells the parser to
14380 skip the entire function. */
14382 bool
14383 start_function (cp_decl_specifier_seq *declspecs,
14384 const cp_declarator *declarator,
14385 tree attrs)
14387 tree decl1;
14389 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
14390 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
14391 if (decl1 == error_mark_node)
14392 return false;
14393 /* If the declarator is not suitable for a function definition,
14394 cause a syntax error. */
14395 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
14397 error ("invalid function declaration");
14398 return false;
14401 if (DECL_MAIN_P (decl1))
14402 /* main must return int. grokfndecl should have corrected it
14403 (and issued a diagnostic) if the user got it wrong. */
14404 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
14405 integer_type_node));
14407 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
14410 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
14411 FN. */
14413 static bool
14414 use_eh_spec_block (tree fn)
14416 return (flag_exceptions && flag_enforce_eh_specs
14417 && !processing_template_decl
14418 && !type_throw_all_p (TREE_TYPE (fn))
14419 /* We insert the EH_SPEC_BLOCK only in the original
14420 function; then, it is copied automatically to the
14421 clones. */
14422 && !DECL_CLONED_FUNCTION_P (fn)
14423 /* Implicitly-generated constructors and destructors have
14424 exception specifications. However, those specifications
14425 are the union of the possible exceptions specified by the
14426 constructors/destructors for bases and members, so no
14427 unallowed exception will ever reach this function. By
14428 not creating the EH_SPEC_BLOCK we save a little memory,
14429 and we avoid spurious warnings about unreachable
14430 code. */
14431 && !DECL_DEFAULTED_FN (fn));
14434 /* Store the parameter declarations into the current function declaration.
14435 This is called after parsing the parameter declarations, before
14436 digesting the body of the function.
14438 Also install to binding contour return value identifier, if any. */
14440 static void
14441 store_parm_decls (tree current_function_parms)
14443 tree fndecl = current_function_decl;
14444 tree parm;
14446 /* This is a chain of any other decls that came in among the parm
14447 declarations. If a parm is declared with enum {foo, bar} x;
14448 then CONST_DECLs for foo and bar are put here. */
14449 tree nonparms = NULL_TREE;
14451 if (current_function_parms)
14453 /* This case is when the function was defined with an ANSI prototype.
14454 The parms already have decls, so we need not do anything here
14455 except record them as in effect
14456 and complain if any redundant old-style parm decls were written. */
14458 tree specparms = current_function_parms;
14459 tree next;
14461 /* Must clear this because it might contain TYPE_DECLs declared
14462 at class level. */
14463 current_binding_level->names = NULL;
14465 /* If we're doing semantic analysis, then we'll call pushdecl
14466 for each of these. We must do them in reverse order so that
14467 they end in the correct forward order. */
14468 specparms = nreverse (specparms);
14470 for (parm = specparms; parm; parm = next)
14472 next = DECL_CHAIN (parm);
14473 if (TREE_CODE (parm) == PARM_DECL)
14474 pushdecl (parm);
14475 else
14477 /* If we find an enum constant or a type tag,
14478 put it aside for the moment. */
14479 TREE_CHAIN (parm) = NULL_TREE;
14480 nonparms = chainon (nonparms, parm);
14484 /* Get the decls in their original chain order and record in the
14485 function. This is all and only the PARM_DECLs that were
14486 pushed into scope by the loop above. */
14487 DECL_ARGUMENTS (fndecl) = getdecls ();
14489 else
14490 DECL_ARGUMENTS (fndecl) = NULL_TREE;
14492 /* Now store the final chain of decls for the arguments
14493 as the decl-chain of the current lexical scope.
14494 Put the enumerators in as well, at the front so that
14495 DECL_ARGUMENTS is not modified. */
14496 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
14498 if (use_eh_spec_block (current_function_decl))
14499 current_eh_spec_block = begin_eh_spec_block ();
14503 /* We have finished doing semantic analysis on DECL, but have not yet
14504 generated RTL for its body. Save away our current state, so that
14505 when we want to generate RTL later we know what to do. */
14507 static void
14508 save_function_data (tree decl)
14510 struct language_function *f;
14512 /* Save the language-specific per-function data so that we can
14513 get it back when we really expand this function. */
14514 gcc_assert (!DECL_PENDING_INLINE_P (decl));
14516 /* Make a copy. */
14517 f = ggc_alloc<language_function> ();
14518 memcpy (f, cp_function_chain, sizeof (struct language_function));
14519 DECL_SAVED_FUNCTION_DATA (decl) = f;
14521 /* Clear out the bits we don't need. */
14522 f->base.x_stmt_tree.x_cur_stmt_list = NULL;
14523 f->bindings = NULL;
14524 f->x_local_names = NULL;
14525 f->base.local_typedefs = NULL;
14529 /* Set the return value of the constructor (if present). */
14531 static void
14532 finish_constructor_body (void)
14534 tree val;
14535 tree exprstmt;
14537 if (targetm.cxx.cdtor_returns_this ()
14538 && (! TYPE_FOR_JAVA (current_class_type)))
14540 /* Any return from a constructor will end up here. */
14541 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
14543 val = DECL_ARGUMENTS (current_function_decl);
14544 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
14545 DECL_RESULT (current_function_decl), val);
14546 /* Return the address of the object. */
14547 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
14548 add_stmt (exprstmt);
14552 /* Do all the processing for the beginning of a destructor; set up the
14553 vtable pointers and cleanups for bases and members. */
14555 static void
14556 begin_destructor_body (void)
14558 tree compound_stmt;
14560 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
14561 issued an error message. We still want to try to process the
14562 body of the function, but initialize_vtbl_ptrs will crash if
14563 TYPE_BINFO is NULL. */
14564 if (COMPLETE_TYPE_P (current_class_type))
14566 compound_stmt = begin_compound_stmt (0);
14567 /* Make all virtual function table pointers in non-virtual base
14568 classes point to CURRENT_CLASS_TYPE's virtual function
14569 tables. */
14570 initialize_vtbl_ptrs (current_class_ptr);
14571 finish_compound_stmt (compound_stmt);
14573 if (flag_lifetime_dse
14574 /* Clobbering an empty base is harmful if it overlays real data. */
14575 && !is_empty_class (current_class_type))
14576 finish_decl_cleanup (NULL_TREE, build_clobber_this ());
14578 /* And insert cleanups for our bases and members so that they
14579 will be properly destroyed if we throw. */
14580 push_base_cleanups ();
14584 /* At the end of every destructor we generate code to delete the object if
14585 necessary. Do that now. */
14587 static void
14588 finish_destructor_body (void)
14590 tree exprstmt;
14592 /* Any return from a destructor will end up here; that way all base
14593 and member cleanups will be run when the function returns. */
14594 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
14596 if (targetm.cxx.cdtor_returns_this ())
14598 tree val;
14600 val = DECL_ARGUMENTS (current_function_decl);
14601 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
14602 DECL_RESULT (current_function_decl), val);
14603 /* Return the address of the object. */
14604 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
14605 add_stmt (exprstmt);
14609 /* Do the necessary processing for the beginning of a function body, which
14610 in this case includes member-initializers, but not the catch clauses of
14611 a function-try-block. Currently, this means opening a binding level
14612 for the member-initializers (in a ctor), member cleanups (in a dtor),
14613 and capture proxies (in a lambda operator()). */
14615 tree
14616 begin_function_body (void)
14618 tree stmt;
14620 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
14621 return NULL_TREE;
14623 if (processing_template_decl)
14624 /* Do nothing now. */;
14625 else
14626 /* Always keep the BLOCK node associated with the outermost pair of
14627 curly braces of a function. These are needed for correct
14628 operation of dwarfout.c. */
14629 keep_next_level (true);
14631 stmt = begin_compound_stmt (BCS_FN_BODY);
14633 if (processing_template_decl)
14634 /* Do nothing now. */;
14635 else if (DECL_DESTRUCTOR_P (current_function_decl))
14636 begin_destructor_body ();
14638 return stmt;
14641 /* Do the processing for the end of a function body. Currently, this means
14642 closing out the cleanups for fully-constructed bases and members, and in
14643 the case of the destructor, deleting the object if desired. Again, this
14644 is only meaningful for [cd]tors, since they are the only functions where
14645 there is a significant distinction between the main body and any
14646 function catch clauses. Handling, say, main() return semantics here
14647 would be wrong, as flowing off the end of a function catch clause for
14648 main() would also need to return 0. */
14650 void
14651 finish_function_body (tree compstmt)
14653 if (compstmt == NULL_TREE)
14654 return;
14656 /* Close the block. */
14657 finish_compound_stmt (compstmt);
14659 if (processing_template_decl)
14660 /* Do nothing now. */;
14661 else if (DECL_CONSTRUCTOR_P (current_function_decl))
14662 finish_constructor_body ();
14663 else if (DECL_DESTRUCTOR_P (current_function_decl))
14664 finish_destructor_body ();
14667 /* Given a function, returns the BLOCK corresponding to the outermost level
14668 of curly braces, skipping the artificial block created for constructor
14669 initializers. */
14671 tree
14672 outer_curly_brace_block (tree fndecl)
14674 tree block = DECL_INITIAL (fndecl);
14675 if (BLOCK_OUTER_CURLY_BRACE_P (block))
14676 return block;
14677 block = BLOCK_SUBBLOCKS (block);
14678 if (BLOCK_OUTER_CURLY_BRACE_P (block))
14679 return block;
14680 block = BLOCK_SUBBLOCKS (block);
14681 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
14682 return block;
14685 /* If FNDECL is a class's key method, add the class to the list of
14686 keyed classes that should be emitted. */
14688 static void
14689 record_key_method_defined (tree fndecl)
14691 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
14692 && DECL_VIRTUAL_P (fndecl)
14693 && !processing_template_decl)
14695 tree fnclass = DECL_CONTEXT (fndecl);
14696 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
14697 keyed_classes = tree_cons (NULL_TREE, fnclass, keyed_classes);
14701 /* Subroutine of finish_function.
14702 Save the body of constexpr functions for possible
14703 future compile time evaluation. */
14705 static void
14706 maybe_save_function_definition (tree fun)
14708 if (!processing_template_decl
14709 && DECL_DECLARED_CONSTEXPR_P (fun)
14710 && !cp_function_chain->invalid_constexpr
14711 && !DECL_CLONED_FUNCTION_P (fun))
14712 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
14715 /* Finish up a function declaration and compile that function
14716 all the way to assembler language output. The free the storage
14717 for the function definition.
14719 FLAGS is a bitwise or of the following values:
14720 2 - INCLASS_INLINE
14721 We just finished processing the body of an in-class inline
14722 function definition. (This processing will have taken place
14723 after the class definition is complete.) */
14725 tree
14726 finish_function (int flags)
14728 tree fndecl = current_function_decl;
14729 tree fntype, ctype = NULL_TREE;
14730 int inclass_inline = (flags & 2) != 0;
14732 /* When we get some parse errors, we can end up without a
14733 current_function_decl, so cope. */
14734 if (fndecl == NULL_TREE)
14735 return error_mark_node;
14737 if (c_dialect_objc ())
14738 objc_finish_function ();
14740 record_key_method_defined (fndecl);
14742 fntype = TREE_TYPE (fndecl);
14744 /* TREE_READONLY (fndecl) = 1;
14745 This caused &foo to be of type ptr-to-const-function
14746 which then got a warning when stored in a ptr-to-function variable. */
14748 gcc_assert (building_stmt_list_p ());
14749 /* The current function is being defined, so its DECL_INITIAL should
14750 be set, and unless there's a multiple definition, it should be
14751 error_mark_node. */
14752 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
14754 /* For a cloned function, we've already got all the code we need;
14755 there's no need to add any extra bits. */
14756 if (!DECL_CLONED_FUNCTION_P (fndecl))
14758 /* Make it so that `main' always returns 0 by default. */
14759 if (DECL_MAIN_P (current_function_decl))
14760 finish_return_stmt (integer_zero_node);
14762 if (use_eh_spec_block (current_function_decl))
14763 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
14764 (TREE_TYPE (current_function_decl)),
14765 current_eh_spec_block);
14768 /* If we're saving up tree structure, tie off the function now. */
14769 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
14771 if (fn_contains_cilk_spawn_p (cfun) && !processing_template_decl)
14772 cfun->cilk_frame_decl = insert_cilk_frame (fndecl);
14774 finish_fname_decls ();
14776 /* If this function can't throw any exceptions, remember that. */
14777 if (!processing_template_decl
14778 && !cp_function_chain->can_throw
14779 && !flag_non_call_exceptions
14780 && !decl_replaceable_p (fndecl))
14781 TREE_NOTHROW (fndecl) = 1;
14783 /* This must come after expand_function_end because cleanups might
14784 have declarations (from inline functions) that need to go into
14785 this function's blocks. */
14787 /* If the current binding level isn't the outermost binding level
14788 for this function, either there is a bug, or we have experienced
14789 syntax errors and the statement tree is malformed. */
14790 if (current_binding_level->kind != sk_function_parms)
14792 /* Make sure we have already experienced errors. */
14793 gcc_assert (errorcount);
14795 /* Throw away the broken statement tree and extra binding
14796 levels. */
14797 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
14799 while (current_binding_level->kind != sk_function_parms)
14801 if (current_binding_level->kind == sk_class)
14802 pop_nested_class ();
14803 else
14804 poplevel (0, 0, 0);
14807 poplevel (1, 0, 1);
14809 /* Statements should always be full-expressions at the outermost set
14810 of curly braces for a function. */
14811 gcc_assert (stmts_are_full_exprs_p ());
14813 /* If there are no return statements in a function with auto return type,
14814 the return type is void. But if the declared type is something like
14815 auto*, this is an error. */
14816 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
14817 && TREE_TYPE (fntype) == current_function_auto_return_pattern)
14819 if (!is_auto (current_function_auto_return_pattern)
14820 && !current_function_returns_value && !current_function_returns_null)
14822 error ("no return statements in function returning %qT",
14823 current_function_auto_return_pattern);
14824 inform (input_location, "only plain %<auto%> return type can be "
14825 "deduced to %<void%>");
14827 apply_deduced_return_type (fndecl, void_type_node);
14828 fntype = TREE_TYPE (fndecl);
14831 // If this is a concept, check that the definition is reasonable.
14832 if (DECL_DECLARED_CONCEPT_P (fndecl))
14833 check_function_concept (fndecl);
14835 /* Lambda closure members are implicitly constexpr if possible. */
14836 if (cxx_dialect >= cxx1z
14837 && LAMBDA_TYPE_P (CP_DECL_CONTEXT (fndecl))
14838 && (processing_template_decl
14839 || is_valid_constexpr_fn (fndecl, /*complain*/false))
14840 && potential_constant_expression (DECL_SAVED_TREE (fndecl)))
14841 DECL_DECLARED_CONSTEXPR_P (fndecl) = true;
14843 /* Save constexpr function body before it gets munged by
14844 the NRV transformation. */
14845 maybe_save_function_definition (fndecl);
14847 /* Invoke the pre-genericize plugin before we start munging things. */
14848 if (!processing_template_decl)
14849 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
14851 /* Perform delayed folding before NRV transformation. */
14852 if (!processing_template_decl)
14853 cp_fold_function (fndecl);
14855 /* Set up the named return value optimization, if we can. Candidate
14856 variables are selected in check_return_expr. */
14857 if (current_function_return_value)
14859 tree r = current_function_return_value;
14860 tree outer;
14862 if (r != error_mark_node
14863 /* This is only worth doing for fns that return in memory--and
14864 simpler, since we don't have to worry about promoted modes. */
14865 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
14866 /* Only allow this for variables declared in the outer scope of
14867 the function so we know that their lifetime always ends with a
14868 return; see g++.dg/opt/nrv6.C. We could be more flexible if
14869 we were to do this optimization in tree-ssa. */
14870 && (outer = outer_curly_brace_block (fndecl))
14871 && chain_member (r, BLOCK_VARS (outer)))
14872 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
14874 current_function_return_value = NULL_TREE;
14877 /* Remember that we were in class scope. */
14878 if (current_class_name)
14879 ctype = current_class_type;
14881 /* Must mark the RESULT_DECL as being in this function. */
14882 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
14884 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
14885 to the FUNCTION_DECL node itself. */
14886 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
14888 /* Save away current state, if appropriate. */
14889 if (!processing_template_decl)
14890 save_function_data (fndecl);
14892 /* Complain if there's just no return statement. */
14893 if (warn_return_type
14894 && !VOID_TYPE_P (TREE_TYPE (fntype))
14895 && !dependent_type_p (TREE_TYPE (fntype))
14896 && !current_function_returns_value && !current_function_returns_null
14897 /* Don't complain if we abort or throw. */
14898 && !current_function_returns_abnormally
14899 /* Don't complain if there's an infinite loop. */
14900 && !current_function_infinite_loop
14901 /* Don't complain if we are declared noreturn. */
14902 && !TREE_THIS_VOLATILE (fndecl)
14903 && !DECL_NAME (DECL_RESULT (fndecl))
14904 && !TREE_NO_WARNING (fndecl)
14905 /* Structor return values (if any) are set by the compiler. */
14906 && !DECL_CONSTRUCTOR_P (fndecl)
14907 && !DECL_DESTRUCTOR_P (fndecl)
14908 && targetm.warn_func_return (fndecl))
14910 warning (OPT_Wreturn_type,
14911 "no return statement in function returning non-void");
14912 TREE_NO_WARNING (fndecl) = 1;
14915 /* Store the end of the function, so that we get good line number
14916 info for the epilogue. */
14917 cfun->function_end_locus = input_location;
14919 /* Complain about parameters that are only set, but never otherwise used. */
14920 if (warn_unused_but_set_parameter
14921 && !processing_template_decl
14922 && errorcount == unused_but_set_errorcount
14923 && !DECL_CLONED_FUNCTION_P (fndecl))
14925 tree decl;
14927 for (decl = DECL_ARGUMENTS (fndecl);
14928 decl;
14929 decl = DECL_CHAIN (decl))
14930 if (TREE_USED (decl)
14931 && TREE_CODE (decl) == PARM_DECL
14932 && !DECL_READ_P (decl)
14933 && DECL_NAME (decl)
14934 && !DECL_ARTIFICIAL (decl)
14935 && !TREE_NO_WARNING (decl)
14936 && !DECL_IN_SYSTEM_HEADER (decl)
14937 && TREE_TYPE (decl) != error_mark_node
14938 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
14939 && (!CLASS_TYPE_P (TREE_TYPE (decl))
14940 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
14941 warning_at (DECL_SOURCE_LOCATION (decl),
14942 OPT_Wunused_but_set_parameter,
14943 "parameter %qD set but not used", decl);
14944 unused_but_set_errorcount = errorcount;
14947 /* Complain about locally defined typedefs that are not used in this
14948 function. */
14949 maybe_warn_unused_local_typedefs ();
14951 /* Possibly warn about unused parameters. */
14952 if (warn_unused_parameter
14953 && !processing_template_decl
14954 && !DECL_CLONED_FUNCTION_P (fndecl))
14955 do_warn_unused_parameter (fndecl);
14957 /* Genericize before inlining. */
14958 if (!processing_template_decl)
14960 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
14961 cp_genericize (fndecl);
14962 /* Clear out the bits we don't need. */
14963 f->x_current_class_ptr = NULL;
14964 f->x_current_class_ref = NULL;
14965 f->x_eh_spec_block = NULL;
14966 f->x_in_charge_parm = NULL;
14967 f->x_vtt_parm = NULL;
14968 f->x_return_value = NULL;
14969 f->bindings = NULL;
14970 f->extern_decl_map = NULL;
14971 f->infinite_loops = NULL;
14973 /* Clear out the bits we don't need. */
14974 local_names = NULL;
14976 /* We're leaving the context of this function, so zap cfun. It's still in
14977 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
14978 set_cfun (NULL);
14979 current_function_decl = NULL;
14981 /* If this is an in-class inline definition, we may have to pop the
14982 bindings for the template parameters that we added in
14983 maybe_begin_member_template_processing when start_function was
14984 called. */
14985 if (inclass_inline)
14986 maybe_end_member_template_processing ();
14988 /* Leave the scope of the class. */
14989 if (ctype)
14990 pop_nested_class ();
14992 --function_depth;
14994 /* Clean up. */
14995 current_function_decl = NULL_TREE;
14997 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
14998 return fndecl;
15001 /* Create the FUNCTION_DECL for a function definition.
15002 DECLSPECS and DECLARATOR are the parts of the declaration;
15003 they describe the return type and the name of the function,
15004 but twisted together in a fashion that parallels the syntax of C.
15006 This function creates a binding context for the function body
15007 as well as setting up the FUNCTION_DECL in current_function_decl.
15009 Returns a FUNCTION_DECL on success.
15011 If the DECLARATOR is not suitable for a function (it defines a datum
15012 instead), we return 0, which tells yyparse to report a parse error.
15014 May return void_type_node indicating that this method is actually
15015 a friend. See grokfield for more details.
15017 Came here with a `.pushlevel' .
15019 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
15020 CHANGES TO CODE IN `grokfield'. */
15022 tree
15023 grokmethod (cp_decl_specifier_seq *declspecs,
15024 const cp_declarator *declarator, tree attrlist)
15026 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
15027 &attrlist);
15029 if (fndecl == error_mark_node)
15030 return error_mark_node;
15032 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
15034 error ("invalid member function declaration");
15035 return error_mark_node;
15038 if (attrlist)
15039 cplus_decl_attributes (&fndecl, attrlist, 0);
15041 /* Pass friends other than inline friend functions back. */
15042 if (fndecl == void_type_node)
15043 return fndecl;
15045 if (DECL_IN_AGGR_P (fndecl))
15047 if (DECL_CLASS_SCOPE_P (fndecl))
15048 error ("%qD is already defined in class %qT", fndecl,
15049 DECL_CONTEXT (fndecl));
15050 return error_mark_node;
15053 check_template_shadow (fndecl);
15055 if (TREE_PUBLIC (fndecl))
15056 DECL_COMDAT (fndecl) = 1;
15057 DECL_DECLARED_INLINE_P (fndecl) = 1;
15058 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
15060 /* We process method specializations in finish_struct_1. */
15061 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
15063 fndecl = push_template_decl (fndecl);
15064 if (fndecl == error_mark_node)
15065 return fndecl;
15068 if (! DECL_FRIEND_P (fndecl))
15070 if (DECL_CHAIN (fndecl))
15072 fndecl = copy_node (fndecl);
15073 TREE_CHAIN (fndecl) = NULL_TREE;
15077 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
15079 DECL_IN_AGGR_P (fndecl) = 1;
15080 return fndecl;
15084 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
15085 we can lay it out later, when and if its type becomes complete.
15087 Also handle constexpr variables where the initializer involves
15088 an unlowered PTRMEM_CST because the class isn't complete yet. */
15090 void
15091 maybe_register_incomplete_var (tree var)
15093 gcc_assert (VAR_P (var));
15095 /* Keep track of variables with incomplete types. */
15096 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
15097 && DECL_EXTERNAL (var))
15099 tree inner_type = TREE_TYPE (var);
15101 while (TREE_CODE (inner_type) == ARRAY_TYPE)
15102 inner_type = TREE_TYPE (inner_type);
15103 inner_type = TYPE_MAIN_VARIANT (inner_type);
15105 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
15106 /* RTTI TD entries are created while defining the type_info. */
15107 || (TYPE_LANG_SPECIFIC (inner_type)
15108 && TYPE_BEING_DEFINED (inner_type)))
15110 incomplete_var iv = {var, inner_type};
15111 vec_safe_push (incomplete_vars, iv);
15113 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
15114 && decl_constant_var_p (var)
15115 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
15117 /* When the outermost open class is complete we can resolve any
15118 pointers-to-members. */
15119 tree context = outermost_open_class ();
15120 incomplete_var iv = {var, context};
15121 vec_safe_push (incomplete_vars, iv);
15126 /* Called when a class type (given by TYPE) is defined. If there are
15127 any existing VAR_DECLs whose type has been completed by this
15128 declaration, update them now. */
15130 void
15131 complete_vars (tree type)
15133 unsigned ix;
15134 incomplete_var *iv;
15136 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
15138 if (same_type_p (type, iv->incomplete_type))
15140 tree var = iv->decl;
15141 tree type = TREE_TYPE (var);
15143 if (type != error_mark_node
15144 && (TYPE_MAIN_VARIANT (strip_array_types (type))
15145 == iv->incomplete_type))
15147 /* Complete the type of the variable. The VAR_DECL itself
15148 will be laid out in expand_expr. */
15149 complete_type (type);
15150 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
15153 /* Remove this entry from the list. */
15154 incomplete_vars->unordered_remove (ix);
15156 else
15157 ix++;
15160 /* Check for pending declarations which may have abstract type. */
15161 complete_type_check_abstract (type);
15164 /* If DECL is of a type which needs a cleanup, build and return an
15165 expression to perform that cleanup here. Return NULL_TREE if no
15166 cleanup need be done. DECL can also be a _REF when called from
15167 split_nonconstant_init_1. */
15169 tree
15170 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
15172 tree type;
15173 tree attr;
15174 tree cleanup;
15176 /* Assume no cleanup is required. */
15177 cleanup = NULL_TREE;
15179 if (error_operand_p (decl))
15180 return cleanup;
15182 /* Handle "__attribute__((cleanup))". We run the cleanup function
15183 before the destructor since the destructor is what actually
15184 terminates the lifetime of the object. */
15185 if (DECL_P (decl))
15186 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
15187 else
15188 attr = NULL_TREE;
15189 if (attr)
15191 tree id;
15192 tree fn;
15193 tree arg;
15195 /* Get the name specified by the user for the cleanup function. */
15196 id = TREE_VALUE (TREE_VALUE (attr));
15197 /* Look up the name to find the cleanup function to call. It is
15198 important to use lookup_name here because that is what is
15199 used in c-common.c:handle_cleanup_attribute when performing
15200 initial checks on the attribute. Note that those checks
15201 include ensuring that the function found is not an overloaded
15202 function, or an object with an overloaded call operator,
15203 etc.; we can rely on the fact that the function found is an
15204 ordinary FUNCTION_DECL. */
15205 fn = lookup_name (id);
15206 arg = build_address (decl);
15207 if (!mark_used (decl, complain) && !(complain & tf_error))
15208 return error_mark_node;
15209 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
15210 if (cleanup == error_mark_node)
15211 return error_mark_node;
15213 /* Handle ordinary C++ destructors. */
15214 type = TREE_TYPE (decl);
15215 if (type_build_dtor_call (type))
15217 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
15218 tree addr;
15219 tree call;
15221 if (TREE_CODE (type) == ARRAY_TYPE)
15222 addr = decl;
15223 else
15224 addr = build_address (decl);
15226 call = build_delete (TREE_TYPE (addr), addr,
15227 sfk_complete_destructor, flags, 0, complain);
15228 if (call == error_mark_node)
15229 cleanup = error_mark_node;
15230 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
15231 /* Discard the call. */;
15232 else if (cleanup)
15233 cleanup = cp_build_compound_expr (cleanup, call, complain);
15234 else
15235 cleanup = call;
15238 /* build_delete sets the location of the destructor call to the
15239 current location, even though the destructor is going to be
15240 called later, at the end of the current scope. This can lead to
15241 a "jumpy" behavior for users of debuggers when they step around
15242 the end of the block. So let's unset the location of the
15243 destructor call instead. */
15244 protected_set_expr_location (cleanup, UNKNOWN_LOCATION);
15246 if (cleanup
15247 && DECL_P (decl)
15248 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
15249 /* Treat objects with destructors as used; the destructor may do
15250 something substantive. */
15251 && !mark_used (decl, complain) && !(complain & tf_error))
15252 return error_mark_node;
15254 return cleanup;
15258 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
15259 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
15260 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
15262 tree
15263 static_fn_type (tree memfntype)
15265 tree fntype;
15266 tree args;
15268 if (TYPE_PTRMEMFUNC_P (memfntype))
15269 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
15270 if (POINTER_TYPE_P (memfntype)
15271 || TREE_CODE (memfntype) == FUNCTION_DECL)
15272 memfntype = TREE_TYPE (memfntype);
15273 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
15274 return memfntype;
15275 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
15276 args = TYPE_ARG_TYPES (memfntype);
15277 cp_ref_qualifier rqual = type_memfn_rqual (memfntype);
15278 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
15279 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype), rqual);
15280 fntype = (cp_build_type_attribute_variant
15281 (fntype, TYPE_ATTRIBUTES (memfntype)));
15282 fntype = (build_exception_variant
15283 (fntype, TYPE_RAISES_EXCEPTIONS (memfntype)));
15284 if (TYPE_HAS_LATE_RETURN_TYPE (memfntype))
15285 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
15286 return fntype;
15289 /* DECL was originally constructed as a non-static member function,
15290 but turned out to be static. Update it accordingly. */
15292 void
15293 revert_static_member_fn (tree decl)
15295 tree stype = static_fn_type (decl);
15296 cp_cv_quals quals = type_memfn_quals (stype);
15297 cp_ref_qualifier rqual = type_memfn_rqual (stype);
15299 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
15300 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
15302 TREE_TYPE (decl) = stype;
15304 if (DECL_ARGUMENTS (decl))
15305 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
15306 DECL_STATIC_FUNCTION_P (decl) = 1;
15309 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
15310 one of the language-independent trees. */
15312 enum cp_tree_node_structure_enum
15313 cp_tree_node_structure (union lang_tree_node * t)
15315 switch (TREE_CODE (&t->generic))
15317 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
15318 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
15319 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
15320 case OVERLOAD: return TS_CP_OVERLOAD;
15321 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
15322 case PTRMEM_CST: return TS_CP_PTRMEM;
15323 case BASELINK: return TS_CP_BASELINK;
15324 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
15325 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
15326 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
15327 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
15328 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
15329 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
15330 case CONSTRAINT_INFO: return TS_CP_CONSTRAINT_INFO;
15331 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
15332 default: return TS_CP_GENERIC;
15336 /* Build the void_list_node (void_type_node having been created). */
15337 tree
15338 build_void_list_node (void)
15340 tree t = build_tree_list (NULL_TREE, void_type_node);
15341 return t;
15344 bool
15345 cp_missing_noreturn_ok_p (tree decl)
15347 /* A missing noreturn is ok for the `main' function. */
15348 return DECL_MAIN_P (decl);
15351 /* Return the decl used to identify the COMDAT group into which DECL should
15352 be placed. */
15354 tree
15355 cxx_comdat_group (tree decl)
15357 /* Virtual tables, construction virtual tables, and virtual table
15358 tables all go in a single COMDAT group, named after the primary
15359 virtual table. */
15360 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
15361 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
15362 /* For all other DECLs, the COMDAT group is the mangled name of the
15363 declaration itself. */
15364 else
15366 while (DECL_THUNK_P (decl))
15368 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
15369 into the same section as the target function. In that case
15370 we must return target's name. */
15371 tree target = THUNK_TARGET (decl);
15372 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
15373 && DECL_SECTION_NAME (target) != NULL
15374 && DECL_ONE_ONLY (target))
15375 decl = target;
15376 else
15377 break;
15381 return decl;
15384 /* Returns the return type for FN as written by the user, which may include
15385 a placeholder for a deduced return type. */
15387 tree
15388 fndecl_declared_return_type (tree fn)
15390 fn = STRIP_TEMPLATE (fn);
15391 if (FNDECL_USED_AUTO (fn))
15393 struct language_function *f = NULL;
15394 if (DECL_STRUCT_FUNCTION (fn))
15395 f = DECL_STRUCT_FUNCTION (fn)->language;
15396 if (f == NULL)
15397 f = DECL_SAVED_FUNCTION_DATA (fn);
15398 return f->x_auto_return_pattern;
15400 return TREE_TYPE (TREE_TYPE (fn));
15403 /* Returns true iff DECL was declared with an auto return type and it has
15404 not yet been deduced to a real type. */
15406 bool
15407 undeduced_auto_decl (tree decl)
15409 if (cxx_dialect < cxx14)
15410 return false;
15411 return type_uses_auto (TREE_TYPE (decl));
15414 /* Complain if DECL has an undeduced return type. */
15416 void
15417 require_deduced_type (tree decl)
15419 if (undeduced_auto_decl (decl))
15420 error ("use of %qD before deduction of %<auto%>", decl);
15423 #include "gt-cp-decl.h"