2016-05-02 Tristan Gingold <gingold@adacore.com>
[official-gcc.git] / gcc / cp / decl.c
blob5f9031f0664ee480900d12de735cff21539f43f6
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988-2016 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 /* Process declarations and symbol lookup for C++ front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "target.h"
33 #include "c-family/c-target.h"
34 #include "cp-tree.h"
35 #include "timevar.h"
36 #include "stringpool.h"
37 #include "cgraph.h"
38 #include "stor-layout.h"
39 #include "varasm.h"
40 #include "attribs.h"
41 #include "flags.h"
42 #include "tree-iterator.h"
43 #include "decl.h"
44 #include "intl.h"
45 #include "toplev.h"
46 #include "c-family/c-objc.h"
47 #include "c-family/c-pragma.h"
48 #include "c-family/c-ubsan.h"
49 #include "debug.h"
50 #include "plugin.h"
51 #include "cilk.h"
52 #include "builtins.h"
54 /* Possible cases of bad specifiers type used by bad_specifiers. */
55 enum bad_spec_place {
56 BSP_VAR, /* variable */
57 BSP_PARM, /* parameter */
58 BSP_TYPE, /* type */
59 BSP_FIELD /* field */
62 static const char *redeclaration_error_message (tree, tree);
64 static int decl_jump_unsafe (tree);
65 static void require_complete_types_for_parms (tree);
66 static int ambi_op_p (enum tree_code);
67 static int unary_op_p (enum tree_code);
68 static void push_local_name (tree);
69 static tree grok_reference_init (tree, tree, tree, int);
70 static tree grokvardecl (tree, tree, tree, const cp_decl_specifier_seq *,
71 int, int, int, tree);
72 static int check_static_variable_definition (tree, tree);
73 static void record_unknown_type (tree, const char *);
74 static tree builtin_function_1 (tree, tree, bool);
75 static int member_function_or_else (tree, tree, enum overload_flags);
76 static void bad_specifiers (tree, enum bad_spec_place, int, int, int, int,
77 int);
78 static void check_for_uninitialized_const_var (tree);
79 static tree local_variable_p_walkfn (tree *, int *, void *);
80 static tree record_builtin_java_type (const char *, int);
81 static const char *tag_name (enum tag_types);
82 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
83 static int walk_namespaces_r (tree, walk_namespaces_fn, void *);
84 static void maybe_deduce_size_from_array_init (tree, tree);
85 static void layout_var_decl (tree);
86 static tree check_initializer (tree, tree, int, vec<tree, va_gc> **);
87 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
88 static void save_function_data (tree);
89 static void copy_type_enum (tree , tree);
90 static void check_function_type (tree, tree);
91 static void finish_constructor_body (void);
92 static void begin_destructor_body (void);
93 static void finish_destructor_body (void);
94 static void record_key_method_defined (tree);
95 static tree create_array_type_for_decl (tree, tree, tree);
96 static tree get_atexit_node (void);
97 static tree get_dso_handle_node (void);
98 static tree start_cleanup_fn (void);
99 static void end_cleanup_fn (void);
100 static tree cp_make_fname_decl (location_t, tree, int);
101 static void initialize_predefined_identifiers (void);
102 static tree check_special_function_return_type
103 (special_function_kind, tree, tree, int, const location_t*);
104 static tree push_cp_library_fn (enum tree_code, tree, int);
105 static tree build_cp_library_fn (tree, enum tree_code, tree, int);
106 static void store_parm_decls (tree);
107 static void initialize_local_var (tree, tree);
108 static void expand_static_init (tree, tree);
110 /* The following symbols are subsumed in the cp_global_trees array, and
111 listed here individually for documentation purposes.
113 C++ extensions
114 tree wchar_decl_node;
116 tree vtable_entry_type;
117 tree delta_type_node;
118 tree __t_desc_type_node;
120 tree class_type_node;
121 tree unknown_type_node;
123 Array type `vtable_entry_type[]'
125 tree vtbl_type_node;
126 tree vtbl_ptr_type_node;
128 Namespaces,
130 tree std_node;
131 tree abi_node;
133 A FUNCTION_DECL which can call `abort'. Not necessarily the
134 one that the user will declare, but sufficient to be called
135 by routines that want to abort the program.
137 tree abort_fndecl;
139 Used by RTTI
140 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
141 tree tinfo_var_id; */
143 tree cp_global_trees[CPTI_MAX];
145 /* Indicates that there is a type value in some namespace, although
146 that is not necessarily in scope at the moment. */
148 tree global_type_node;
150 /* The node that holds the "name" of the global scope. */
151 tree global_scope_name;
153 #define local_names cp_function_chain->x_local_names
155 /* A list of objects which have constructors or destructors
156 which reside in the global scope. The decl is stored in
157 the TREE_VALUE slot and the initializer is stored
158 in the TREE_PURPOSE slot. */
159 tree static_aggregates;
161 /* Like static_aggregates, but for thread_local variables. */
162 tree tls_aggregates;
164 /* -- end of C++ */
166 /* A node for the integer constant 2. */
168 tree integer_two_node;
170 /* Used only for jumps to as-yet undefined labels, since jumps to
171 defined labels can have their validity checked immediately. */
173 struct GTY((chain_next ("%h.next"))) named_label_use_entry {
174 struct named_label_use_entry *next;
175 /* The binding level to which this entry is *currently* attached.
176 This is initially the binding level in which the goto appeared,
177 but is modified as scopes are closed. */
178 cp_binding_level *binding_level;
179 /* The head of the names list that was current when the goto appeared,
180 or the inner scope popped. These are the decls that will *not* be
181 skipped when jumping to the label. */
182 tree names_in_scope;
183 /* The location of the goto, for error reporting. */
184 location_t o_goto_locus;
185 /* True if an OpenMP structured block scope has been closed since
186 the goto appeared. This means that the branch from the label will
187 illegally exit an OpenMP scope. */
188 bool in_omp_scope;
191 /* A list of all LABEL_DECLs in the function that have names. Here so
192 we can clear out their names' definitions at the end of the
193 function, and so we can check the validity of jumps to these labels. */
195 struct GTY((for_user)) named_label_entry {
196 /* The decl itself. */
197 tree label_decl;
199 /* The binding level to which the label is *currently* attached.
200 This is initially set to the binding level in which the label
201 is defined, but is modified as scopes are closed. */
202 cp_binding_level *binding_level;
203 /* The head of the names list that was current when the label was
204 defined, or the inner scope popped. These are the decls that will
205 be skipped when jumping to the label. */
206 tree names_in_scope;
207 /* A vector of all decls from all binding levels that would be
208 crossed by a backward branch to the label. */
209 vec<tree, va_gc> *bad_decls;
211 /* A list of uses of the label, before the label is defined. */
212 struct named_label_use_entry *uses;
214 /* The following bits are set after the label is defined, and are
215 updated as scopes are popped. They indicate that a backward jump
216 to the label will illegally enter a scope of the given flavor. */
217 bool in_try_scope;
218 bool in_catch_scope;
219 bool in_omp_scope;
220 bool in_transaction_scope;
223 #define named_labels cp_function_chain->x_named_labels
225 /* The number of function bodies which we are currently processing.
226 (Zero if we are at namespace scope, one inside the body of a
227 function, two inside the body of a function in a local class, etc.) */
228 int function_depth;
230 /* States indicating how grokdeclarator() should handle declspecs marked
231 with __attribute__((deprecated)). An object declared as
232 __attribute__((deprecated)) suppresses warnings of uses of other
233 deprecated items. */
234 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
237 /* A list of VAR_DECLs whose type was incomplete at the time the
238 variable was declared. */
240 struct GTY(()) incomplete_var {
241 tree decl;
242 tree incomplete_type;
246 static GTY(()) vec<incomplete_var, va_gc> *incomplete_vars;
248 /* Returns the kind of template specialization we are currently
249 processing, given that it's declaration contained N_CLASS_SCOPES
250 explicit scope qualifications. */
252 tmpl_spec_kind
253 current_tmpl_spec_kind (int n_class_scopes)
255 int n_template_parm_scopes = 0;
256 int seen_specialization_p = 0;
257 int innermost_specialization_p = 0;
258 cp_binding_level *b;
260 /* Scan through the template parameter scopes. */
261 for (b = current_binding_level;
262 b->kind == sk_template_parms;
263 b = b->level_chain)
265 /* If we see a specialization scope inside a parameter scope,
266 then something is wrong. That corresponds to a declaration
267 like:
269 template <class T> template <> ...
271 which is always invalid since [temp.expl.spec] forbids the
272 specialization of a class member template if the enclosing
273 class templates are not explicitly specialized as well. */
274 if (b->explicit_spec_p)
276 if (n_template_parm_scopes == 0)
277 innermost_specialization_p = 1;
278 else
279 seen_specialization_p = 1;
281 else if (seen_specialization_p == 1)
282 return tsk_invalid_member_spec;
284 ++n_template_parm_scopes;
287 /* Handle explicit instantiations. */
288 if (processing_explicit_instantiation)
290 if (n_template_parm_scopes != 0)
291 /* We've seen a template parameter list during an explicit
292 instantiation. For example:
294 template <class T> template void f(int);
296 This is erroneous. */
297 return tsk_invalid_expl_inst;
298 else
299 return tsk_expl_inst;
302 if (n_template_parm_scopes < n_class_scopes)
303 /* We've not seen enough template headers to match all the
304 specialized classes present. For example:
306 template <class T> void R<T>::S<T>::f(int);
308 This is invalid; there needs to be one set of template
309 parameters for each class. */
310 return tsk_insufficient_parms;
311 else if (n_template_parm_scopes == n_class_scopes)
312 /* We're processing a non-template declaration (even though it may
313 be a member of a template class.) For example:
315 template <class T> void S<T>::f(int);
317 The `class T' matches the `S<T>', leaving no template headers
318 corresponding to the `f'. */
319 return tsk_none;
320 else if (n_template_parm_scopes > n_class_scopes + 1)
321 /* We've got too many template headers. For example:
323 template <> template <class T> void f (T);
325 There need to be more enclosing classes. */
326 return tsk_excessive_parms;
327 else
328 /* This must be a template. It's of the form:
330 template <class T> template <class U> void S<T>::f(U);
332 This is a specialization if the innermost level was a
333 specialization; otherwise it's just a definition of the
334 template. */
335 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
338 /* Exit the current scope. */
340 void
341 finish_scope (void)
343 poplevel (0, 0, 0);
346 /* When a label goes out of scope, check to see if that label was used
347 in a valid manner, and issue any appropriate warnings or errors. */
349 static void
350 pop_label (tree label, tree old_value)
352 if (!processing_template_decl)
354 if (DECL_INITIAL (label) == NULL_TREE)
356 location_t location;
358 error ("label %q+D used but not defined", label);
359 location = input_location;
360 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
361 /* Avoid crashing later. */
362 define_label (location, DECL_NAME (label));
364 else
365 warn_for_unused_label (label);
368 SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), old_value);
371 /* Push all named labels into a vector, so that we can sort it on DECL_UID
372 to avoid code generation differences. */
375 note_label (named_label_entry **slot, vec<named_label_entry **> &labels)
377 labels.quick_push (slot);
378 return 1;
381 /* Helper function to sort named label entries in a vector by DECL_UID. */
383 static int
384 sort_labels (const void *a, const void *b)
386 named_label_entry **slot1 = *(named_label_entry **const *) a;
387 named_label_entry **slot2 = *(named_label_entry **const *) b;
388 if (DECL_UID ((*slot1)->label_decl) < DECL_UID ((*slot2)->label_decl))
389 return -1;
390 if (DECL_UID ((*slot1)->label_decl) > DECL_UID ((*slot2)->label_decl))
391 return 1;
392 return 0;
395 /* At the end of a function, all labels declared within the function
396 go out of scope. BLOCK is the top-level block for the
397 function. */
399 static void
400 pop_labels (tree block)
402 if (named_labels)
404 auto_vec<named_label_entry **, 32> labels;
405 named_label_entry **slot;
406 unsigned int i;
408 /* Push all the labels into a vector and sort them by DECL_UID,
409 so that gaps between DECL_UIDs don't affect code generation. */
410 labels.reserve_exact (named_labels->elements ());
411 named_labels->traverse<vec<named_label_entry **> &, note_label> (labels);
412 labels.qsort (sort_labels);
413 FOR_EACH_VEC_ELT (labels, i, slot)
415 struct named_label_entry *ent = *slot;
417 pop_label (ent->label_decl, NULL_TREE);
419 /* Put the labels into the "variables" of the top-level block,
420 so debugger can see them. */
421 DECL_CHAIN (ent->label_decl) = BLOCK_VARS (block);
422 BLOCK_VARS (block) = ent->label_decl;
424 named_labels->clear_slot (slot);
426 named_labels = NULL;
430 /* At the end of a block with local labels, restore the outer definition. */
432 static void
433 pop_local_label (tree label, tree old_value)
435 struct named_label_entry dummy;
437 pop_label (label, old_value);
439 dummy.label_decl = label;
440 named_label_entry **slot = named_labels->find_slot (&dummy, NO_INSERT);
441 named_labels->clear_slot (slot);
444 /* The following two routines are used to interface to Objective-C++.
445 The binding level is purposely treated as an opaque type. */
447 void *
448 objc_get_current_scope (void)
450 return current_binding_level;
453 /* The following routine is used by the NeXT-style SJLJ exceptions;
454 variables get marked 'volatile' so as to not be clobbered by
455 _setjmp()/_longjmp() calls. All variables in the current scope,
456 as well as parent scopes up to (but not including) ENCLOSING_BLK
457 shall be thusly marked. */
459 void
460 objc_mark_locals_volatile (void *enclosing_blk)
462 cp_binding_level *scope;
464 for (scope = current_binding_level;
465 scope && scope != enclosing_blk;
466 scope = scope->level_chain)
468 tree decl;
470 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
471 objc_volatilize_decl (decl);
473 /* Do not climb up past the current function. */
474 if (scope->kind == sk_function_parms)
475 break;
479 /* Update data for defined and undefined labels when leaving a scope. */
482 poplevel_named_label_1 (named_label_entry **slot, cp_binding_level *bl)
484 named_label_entry *ent = *slot;
485 cp_binding_level *obl = bl->level_chain;
487 if (ent->binding_level == bl)
489 tree decl;
491 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
492 TREE_LISTs representing OVERLOADs, so be careful. */
493 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
494 ? DECL_CHAIN (decl)
495 : TREE_CHAIN (decl)))
496 if (decl_jump_unsafe (decl))
497 vec_safe_push (ent->bad_decls, decl);
499 ent->binding_level = obl;
500 ent->names_in_scope = obl->names;
501 switch (bl->kind)
503 case sk_try:
504 ent->in_try_scope = true;
505 break;
506 case sk_catch:
507 ent->in_catch_scope = true;
508 break;
509 case sk_omp:
510 ent->in_omp_scope = true;
511 break;
512 case sk_transaction:
513 ent->in_transaction_scope = true;
514 break;
515 default:
516 break;
519 else if (ent->uses)
521 struct named_label_use_entry *use;
523 for (use = ent->uses; use ; use = use->next)
524 if (use->binding_level == bl)
526 use->binding_level = obl;
527 use->names_in_scope = obl->names;
528 if (bl->kind == sk_omp)
529 use->in_omp_scope = true;
533 return 1;
536 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
537 when errors were reported, except for -Werror-unused-but-set-*. */
538 static int unused_but_set_errorcount;
540 /* Exit a binding level.
541 Pop the level off, and restore the state of the identifier-decl mappings
542 that were in effect when this level was entered.
544 If KEEP == 1, this level had explicit declarations, so
545 and create a "block" (a BLOCK node) for the level
546 to record its declarations and subblocks for symbol table output.
548 If FUNCTIONBODY is nonzero, this level is the body of a function,
549 so create a block as if KEEP were set and also clear out all
550 label names.
552 If REVERSE is nonzero, reverse the order of decls before putting
553 them into the BLOCK. */
555 tree
556 poplevel (int keep, int reverse, int functionbody)
558 tree link;
559 /* The chain of decls was accumulated in reverse order.
560 Put it into forward order, just for cleanliness. */
561 tree decls;
562 tree subblocks;
563 tree block;
564 tree decl;
565 int leaving_for_scope;
566 scope_kind kind;
567 unsigned ix;
568 cp_label_binding *label_bind;
570 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
571 restart:
573 block = NULL_TREE;
575 gcc_assert (current_binding_level->kind != sk_class);
577 if (current_binding_level->kind == sk_cleanup)
578 functionbody = 0;
579 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
581 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
583 /* We used to use KEEP == 2 to indicate that the new block should go
584 at the beginning of the list of blocks at this binding level,
585 rather than the end. This hack is no longer used. */
586 gcc_assert (keep == 0 || keep == 1);
588 if (current_binding_level->keep)
589 keep = 1;
591 /* Any uses of undefined labels, and any defined labels, now operate
592 under constraints of next binding contour. */
593 if (cfun && !functionbody && named_labels)
594 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
595 (current_binding_level);
597 /* Get the decls in the order they were written.
598 Usually current_binding_level->names is in reverse order.
599 But parameter decls were previously put in forward order. */
601 if (reverse)
602 current_binding_level->names
603 = decls = nreverse (current_binding_level->names);
604 else
605 decls = current_binding_level->names;
607 /* If there were any declarations or structure tags in that level,
608 or if this level is a function body,
609 create a BLOCK to record them for the life of this function. */
610 block = NULL_TREE;
611 /* Avoid function body block if possible. */
612 if (functionbody && subblocks && BLOCK_CHAIN (subblocks) == NULL_TREE)
613 keep = 0;
614 else if (keep == 1 || functionbody)
615 block = make_node (BLOCK);
616 if (block != NULL_TREE)
618 BLOCK_VARS (block) = decls;
619 BLOCK_SUBBLOCKS (block) = subblocks;
622 /* In each subblock, record that this is its superior. */
623 if (keep >= 0)
624 for (link = subblocks; link; link = BLOCK_CHAIN (link))
625 BLOCK_SUPERCONTEXT (link) = block;
627 /* We still support the old for-scope rules, whereby the variables
628 in a for-init statement were in scope after the for-statement
629 ended. We only use the new rules if flag_new_for_scope is
630 nonzero. */
631 leaving_for_scope
632 = current_binding_level->kind == sk_for && flag_new_for_scope == 1;
634 /* Before we remove the declarations first check for unused variables. */
635 if ((warn_unused_variable || warn_unused_but_set_variable)
636 && current_binding_level->kind != sk_template_parms
637 && !processing_template_decl)
638 for (tree d = getdecls (); d; d = TREE_CHAIN (d))
640 /* There are cases where D itself is a TREE_LIST. See in
641 push_local_binding where the list of decls returned by
642 getdecls is built. */
643 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
644 tree type = TREE_TYPE (decl);
645 if (VAR_P (decl)
646 && (! TREE_USED (decl) || !DECL_READ_P (decl))
647 && ! DECL_IN_SYSTEM_HEADER (decl)
648 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl)
649 && type != error_mark_node
650 && (!CLASS_TYPE_P (type)
651 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
652 || lookup_attribute ("warn_unused",
653 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
655 if (! TREE_USED (decl))
656 warning_at (DECL_SOURCE_LOCATION (decl),
657 OPT_Wunused_variable, "unused variable %qD", decl);
658 else if (DECL_CONTEXT (decl) == current_function_decl
659 // For -Wunused-but-set-variable leave references alone.
660 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
661 && errorcount == unused_but_set_errorcount)
663 warning_at (DECL_SOURCE_LOCATION (decl),
664 OPT_Wunused_but_set_variable,
665 "variable %qD set but not used", decl);
666 unused_but_set_errorcount = errorcount;
671 /* Remove declarations for all the DECLs in this level. */
672 for (link = decls; link; link = TREE_CHAIN (link))
674 if (leaving_for_scope && VAR_P (link)
675 /* It's hard to make this ARM compatibility hack play nicely with
676 lambdas, and it really isn't necessary in C++11 mode. */
677 && cxx_dialect < cxx11
678 && DECL_NAME (link))
680 tree name = DECL_NAME (link);
681 cxx_binding *ob;
682 tree ns_binding;
684 ob = outer_binding (name,
685 IDENTIFIER_BINDING (name),
686 /*class_p=*/true);
687 if (!ob)
688 ns_binding = IDENTIFIER_NAMESPACE_VALUE (name);
689 else
690 ns_binding = NULL_TREE;
692 if (ob && ob->scope == current_binding_level->level_chain)
693 /* We have something like:
695 int i;
696 for (int i; ;);
698 and we are leaving the `for' scope. There's no reason to
699 keep the binding of the inner `i' in this case. */
700 pop_binding (name, link);
701 else if ((ob && (TREE_CODE (ob->value) == TYPE_DECL))
702 || (ns_binding && TREE_CODE (ns_binding) == TYPE_DECL))
703 /* Here, we have something like:
705 typedef int I;
707 void f () {
708 for (int I; ;);
711 We must pop the for-scope binding so we know what's a
712 type and what isn't. */
713 pop_binding (name, link);
714 else
716 /* Mark this VAR_DECL as dead so that we can tell we left it
717 there only for backward compatibility. */
718 DECL_DEAD_FOR_LOCAL (link) = 1;
720 /* Keep track of what should have happened when we
721 popped the binding. */
722 if (ob && ob->value)
724 SET_DECL_SHADOWED_FOR_VAR (link, ob->value);
725 DECL_HAS_SHADOWED_FOR_VAR_P (link) = 1;
728 /* Add it to the list of dead variables in the next
729 outermost binding to that we can remove these when we
730 leave that binding. */
731 vec_safe_push (
732 current_binding_level->level_chain->dead_vars_from_for,
733 link);
735 /* Although we don't pop the cxx_binding, we do clear
736 its SCOPE since the scope is going away now. */
737 IDENTIFIER_BINDING (name)->scope
738 = current_binding_level->level_chain;
741 else
743 tree name;
745 /* Remove the binding. */
746 decl = link;
748 if (TREE_CODE (decl) == TREE_LIST)
749 decl = TREE_VALUE (decl);
750 name = decl;
752 if (TREE_CODE (name) == OVERLOAD)
753 name = OVL_FUNCTION (name);
755 gcc_assert (DECL_P (name));
756 pop_binding (DECL_NAME (name), decl);
760 /* Remove declarations for any `for' variables from inner scopes
761 that we kept around. */
762 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->dead_vars_from_for,
763 ix, decl)
764 pop_binding (DECL_NAME (decl), decl);
766 /* Restore the IDENTIFIER_TYPE_VALUEs. */
767 for (link = current_binding_level->type_shadowed;
768 link; link = TREE_CHAIN (link))
769 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
771 /* Restore the IDENTIFIER_LABEL_VALUEs for local labels. */
772 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->shadowed_labels,
773 ix, label_bind)
774 pop_local_label (label_bind->label, label_bind->prev_value);
776 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
777 list if a `using' declaration put them there. The debugging
778 back ends won't understand OVERLOAD, so we remove them here.
779 Because the BLOCK_VARS are (temporarily) shared with
780 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
781 popped all the bindings. */
782 if (block)
784 tree* d;
786 for (d = &BLOCK_VARS (block); *d; )
788 if (TREE_CODE (*d) == TREE_LIST)
789 *d = TREE_CHAIN (*d);
790 else
791 d = &DECL_CHAIN (*d);
795 /* If the level being exited is the top level of a function,
796 check over all the labels. */
797 if (functionbody)
799 if (block)
801 /* Since this is the top level block of a function, the vars are
802 the function's parameters. Don't leave them in the BLOCK
803 because they are found in the FUNCTION_DECL instead. */
804 BLOCK_VARS (block) = 0;
805 pop_labels (block);
807 else
808 pop_labels (subblocks);
811 kind = current_binding_level->kind;
812 if (kind == sk_cleanup)
814 tree stmt;
816 /* If this is a temporary binding created for a cleanup, then we'll
817 have pushed a statement list level. Pop that, create a new
818 BIND_EXPR for the block, and insert it into the stream. */
819 stmt = pop_stmt_list (current_binding_level->statement_list);
820 stmt = c_build_bind_expr (input_location, block, stmt);
821 add_stmt (stmt);
824 leave_scope ();
825 if (functionbody)
827 /* The current function is being defined, so its DECL_INITIAL
828 should be error_mark_node. */
829 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
830 DECL_INITIAL (current_function_decl) = block ? block : subblocks;
831 if (subblocks)
833 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
835 if (BLOCK_SUBBLOCKS (subblocks))
836 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks)) = 1;
838 else
839 BLOCK_OUTER_CURLY_BRACE_P (subblocks) = 1;
842 else if (block)
843 current_binding_level->blocks
844 = block_chainon (current_binding_level->blocks, block);
846 /* If we did not make a block for the level just exited,
847 any blocks made for inner levels
848 (since they cannot be recorded as subblocks in that level)
849 must be carried forward so they will later become subblocks
850 of something else. */
851 else if (subblocks)
852 current_binding_level->blocks
853 = block_chainon (current_binding_level->blocks, subblocks);
855 /* Each and every BLOCK node created here in `poplevel' is important
856 (e.g. for proper debugging information) so if we created one
857 earlier, mark it as "used". */
858 if (block)
859 TREE_USED (block) = 1;
861 /* All temporary bindings created for cleanups are popped silently. */
862 if (kind == sk_cleanup)
863 goto restart;
865 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
866 return block;
869 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
870 itself, calling F for each. The DATA is passed to F as well. */
872 static int
873 walk_namespaces_r (tree name_space, walk_namespaces_fn f, void* data)
875 int result = 0;
876 tree current = NAMESPACE_LEVEL (name_space)->namespaces;
878 result |= (*f) (name_space, data);
880 for (; current; current = DECL_CHAIN (current))
881 result |= walk_namespaces_r (current, f, data);
883 return result;
886 /* Walk all the namespaces, calling F for each. The DATA is passed to
887 F as well. */
890 walk_namespaces (walk_namespaces_fn f, void* data)
892 return walk_namespaces_r (global_namespace, f, data);
895 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
898 wrapup_globals_for_namespace (tree name_space, void* data ATTRIBUTE_UNUSED)
900 cp_binding_level *level = NAMESPACE_LEVEL (name_space);
901 vec<tree, va_gc> *statics = level->static_decls;
902 tree *vec = statics->address ();
903 int len = statics->length ();
905 if (warn_unused_function)
907 tree decl;
908 unsigned int i;
909 FOR_EACH_VEC_SAFE_ELT (statics, i, decl)
910 if (TREE_CODE (decl) == FUNCTION_DECL
911 && DECL_INITIAL (decl) == 0
912 && DECL_EXTERNAL (decl)
913 && !TREE_PUBLIC (decl)
914 && !DECL_ARTIFICIAL (decl)
915 && !TREE_NO_WARNING (decl))
917 warning (OPT_Wunused_function,
918 "%q+F declared %<static%> but never defined", decl);
919 TREE_NO_WARNING (decl) = 1;
923 /* Write out any globals that need to be output. */
924 return wrapup_global_declarations (vec, len);
927 /* In C++, you don't have to write `struct S' to refer to `S'; you
928 can just use `S'. We accomplish this by creating a TYPE_DECL as
929 if the user had written `typedef struct S S'. Create and return
930 the TYPE_DECL for TYPE. */
932 tree
933 create_implicit_typedef (tree name, tree type)
935 tree decl;
937 decl = build_decl (input_location, TYPE_DECL, name, type);
938 DECL_ARTIFICIAL (decl) = 1;
939 /* There are other implicit type declarations, like the one *within*
940 a class that allows you to write `S::S'. We must distinguish
941 amongst these. */
942 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
943 TYPE_NAME (type) = decl;
944 TYPE_STUB_DECL (type) = decl;
946 return decl;
949 /* Remember a local name for name-mangling purposes. */
951 static void
952 push_local_name (tree decl)
954 size_t i, nelts;
955 tree t, name;
957 timevar_start (TV_NAME_LOOKUP);
959 name = DECL_NAME (decl);
961 nelts = vec_safe_length (local_names);
962 for (i = 0; i < nelts; i++)
964 t = (*local_names)[i];
965 if (DECL_NAME (t) == name)
967 if (!DECL_LANG_SPECIFIC (decl))
968 retrofit_lang_decl (decl);
969 DECL_LANG_SPECIFIC (decl)->u.base.u2sel = 1;
970 if (DECL_DISCRIMINATOR_SET_P (t))
971 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
972 else
973 DECL_DISCRIMINATOR (decl) = 1;
975 (*local_names)[i] = decl;
976 timevar_stop (TV_NAME_LOOKUP);
977 return;
981 vec_safe_push (local_names, decl);
982 timevar_stop (TV_NAME_LOOKUP);
985 /* Subroutine of duplicate_decls: return truthvalue of whether
986 or not types of these decls match.
988 For C++, we must compare the parameter list so that `int' can match
989 `int&' in a parameter position, but `int&' is not confused with
990 `const int&'. */
993 decls_match (tree newdecl, tree olddecl)
995 int types_match;
997 if (newdecl == olddecl)
998 return 1;
1000 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
1001 /* If the two DECLs are not even the same kind of thing, we're not
1002 interested in their types. */
1003 return 0;
1005 gcc_assert (DECL_P (newdecl));
1007 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1009 tree f1 = TREE_TYPE (newdecl);
1010 tree f2 = TREE_TYPE (olddecl);
1011 tree p1 = TYPE_ARG_TYPES (f1);
1012 tree p2 = TYPE_ARG_TYPES (f2);
1013 tree r2;
1015 /* Specializations of different templates are different functions
1016 even if they have the same type. */
1017 tree t1 = (DECL_USE_TEMPLATE (newdecl)
1018 ? DECL_TI_TEMPLATE (newdecl)
1019 : NULL_TREE);
1020 tree t2 = (DECL_USE_TEMPLATE (olddecl)
1021 ? DECL_TI_TEMPLATE (olddecl)
1022 : NULL_TREE);
1023 if (t1 != t2)
1024 return 0;
1026 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1027 && ! (DECL_EXTERN_C_P (newdecl)
1028 && DECL_EXTERN_C_P (olddecl)))
1029 return 0;
1031 /* A new declaration doesn't match a built-in one unless it
1032 is also extern "C". */
1033 if (DECL_IS_BUILTIN (olddecl)
1034 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
1035 return 0;
1037 if (TREE_CODE (f1) != TREE_CODE (f2))
1038 return 0;
1040 /* A declaration with deduced return type should use its pre-deduction
1041 type for declaration matching. */
1042 r2 = fndecl_declared_return_type (olddecl);
1044 if (same_type_p (TREE_TYPE (f1), r2))
1046 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
1047 && (DECL_BUILT_IN (olddecl)
1048 #ifndef NO_IMPLICIT_EXTERN_C
1049 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
1050 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
1051 #endif
1054 types_match = self_promoting_args_p (p1);
1055 if (p1 == void_list_node)
1056 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1058 #ifndef NO_IMPLICIT_EXTERN_C
1059 else if (!prototype_p (f1)
1060 && (DECL_EXTERN_C_P (olddecl)
1061 && DECL_IN_SYSTEM_HEADER (olddecl)
1062 && !DECL_CLASS_SCOPE_P (olddecl))
1063 && (DECL_EXTERN_C_P (newdecl)
1064 && DECL_IN_SYSTEM_HEADER (newdecl)
1065 && !DECL_CLASS_SCOPE_P (newdecl)))
1067 types_match = self_promoting_args_p (p2);
1068 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1070 #endif
1071 else
1072 types_match =
1073 compparms (p1, p2)
1074 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
1075 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
1076 || comp_type_attributes (TREE_TYPE (newdecl),
1077 TREE_TYPE (olddecl)) != 0);
1079 else
1080 types_match = 0;
1082 /* The decls dont match if they correspond to two different versions
1083 of the same function. Disallow extern "C" functions to be
1084 versions for now. */
1085 if (types_match
1086 && !DECL_EXTERN_C_P (newdecl)
1087 && !DECL_EXTERN_C_P (olddecl)
1088 && targetm.target_option.function_versions (newdecl, olddecl))
1090 /* Mark functions as versions if necessary. Modify the mangled decl
1091 name if necessary. */
1092 if (DECL_FUNCTION_VERSIONED (newdecl)
1093 && DECL_FUNCTION_VERSIONED (olddecl))
1094 return 0;
1095 if (!DECL_FUNCTION_VERSIONED (newdecl))
1097 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1098 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1099 mangle_decl (newdecl);
1101 if (!DECL_FUNCTION_VERSIONED (olddecl))
1103 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1104 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1105 mangle_decl (olddecl);
1107 cgraph_node::record_function_versions (olddecl, newdecl);
1108 return 0;
1111 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1113 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1114 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1116 if (TREE_CODE (newres) != TREE_CODE (oldres))
1117 return 0;
1119 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1120 DECL_TEMPLATE_PARMS (olddecl)))
1121 return 0;
1123 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1124 types_match = (same_type_p (TREE_TYPE (oldres), TREE_TYPE (newres))
1125 && equivalently_constrained (olddecl, newdecl));
1126 else
1127 // We don't need to check equivalently_constrained for variable and
1128 // function templates because we check it on the results.
1129 types_match = decls_match (oldres, newres);
1131 else
1133 /* Need to check scope for variable declaration (VAR_DECL).
1134 For typedef (TYPE_DECL), scope is ignored. */
1135 if (VAR_P (newdecl)
1136 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1137 /* [dcl.link]
1138 Two declarations for an object with C language linkage
1139 with the same name (ignoring the namespace that qualify
1140 it) that appear in different namespace scopes refer to
1141 the same object. */
1142 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1143 return 0;
1145 if (TREE_TYPE (newdecl) == error_mark_node)
1146 types_match = TREE_TYPE (olddecl) == error_mark_node;
1147 else if (TREE_TYPE (olddecl) == NULL_TREE)
1148 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1149 else if (TREE_TYPE (newdecl) == NULL_TREE)
1150 types_match = 0;
1151 else
1152 types_match = comptypes (TREE_TYPE (newdecl),
1153 TREE_TYPE (olddecl),
1154 COMPARE_REDECLARATION);
1157 // Normal functions can be constrained, as can variable partial
1158 // specializations.
1159 if (types_match && VAR_OR_FUNCTION_DECL_P (newdecl))
1160 types_match = equivalently_constrained (newdecl, olddecl);
1162 return types_match;
1165 /* If NEWDECL is `static' and an `extern' was seen previously,
1166 warn about it. OLDDECL is the previous declaration.
1168 Note that this does not apply to the C++ case of declaring
1169 a variable `extern const' and then later `const'.
1171 Don't complain about built-in functions, since they are beyond
1172 the user's control. */
1174 void
1175 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1177 if (TREE_CODE (newdecl) == TYPE_DECL
1178 || TREE_CODE (newdecl) == TEMPLATE_DECL
1179 || TREE_CODE (newdecl) == CONST_DECL
1180 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1181 return;
1183 /* Don't get confused by static member functions; that's a different
1184 use of `static'. */
1185 if (TREE_CODE (newdecl) == FUNCTION_DECL
1186 && DECL_STATIC_FUNCTION_P (newdecl))
1187 return;
1189 /* If the old declaration was `static', or the new one isn't, then
1190 everything is OK. */
1191 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1192 return;
1194 /* It's OK to declare a builtin function as `static'. */
1195 if (TREE_CODE (olddecl) == FUNCTION_DECL
1196 && DECL_ARTIFICIAL (olddecl))
1197 return;
1199 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1200 "%qD was declared %<extern%> and later %<static%>", newdecl))
1201 inform (DECL_SOURCE_LOCATION (olddecl),
1202 "previous declaration of %qD", olddecl);
1205 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1206 function templates. If their exception specifications do not
1207 match, issue a diagnostic. */
1209 static void
1210 check_redeclaration_exception_specification (tree new_decl,
1211 tree old_decl)
1213 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1214 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1216 /* Two default specs are equivalent, don't force evaluation. */
1217 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1218 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1219 return;
1221 maybe_instantiate_noexcept (new_decl);
1222 maybe_instantiate_noexcept (old_decl);
1223 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1224 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1226 /* [except.spec]
1228 If any declaration of a function has an exception-specification,
1229 all declarations, including the definition and an explicit
1230 specialization, of that function shall have an
1231 exception-specification with the same set of type-ids. */
1232 if (! DECL_IS_BUILTIN (old_decl)
1233 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1235 const char *msg
1236 = "declaration of %q+F has a different exception specifier";
1237 bool complained = true;
1238 if (DECL_IN_SYSTEM_HEADER (old_decl))
1239 complained = pedwarn (0, OPT_Wsystem_headers, msg, new_decl);
1240 else if (!flag_exceptions)
1241 /* We used to silently permit mismatched eh specs with
1242 -fno-exceptions, so make them a pedwarn now. */
1243 complained = pedwarn (0, OPT_Wpedantic, msg, new_decl);
1244 else
1245 error (msg, new_decl);
1246 if (complained)
1247 inform (0, "from previous declaration %q+F", old_decl);
1251 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1252 Otherwise issue diagnostics. */
1254 static bool
1255 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1257 old_decl = STRIP_TEMPLATE (old_decl);
1258 new_decl = STRIP_TEMPLATE (new_decl);
1259 if (!VAR_OR_FUNCTION_DECL_P (old_decl)
1260 || !VAR_OR_FUNCTION_DECL_P (new_decl))
1261 return true;
1262 if (DECL_DECLARED_CONSTEXPR_P (old_decl)
1263 == DECL_DECLARED_CONSTEXPR_P (new_decl))
1264 return true;
1265 if (TREE_CODE (old_decl) == FUNCTION_DECL)
1267 if (DECL_BUILT_IN (old_decl))
1269 /* Hide a built-in declaration. */
1270 DECL_DECLARED_CONSTEXPR_P (old_decl)
1271 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1272 return true;
1274 /* 7.1.5 [dcl.constexpr]
1275 Note: An explicit specialization can differ from the template
1276 declaration with respect to the constexpr specifier. */
1277 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl)
1278 && DECL_TEMPLATE_SPECIALIZATION (new_decl))
1279 return true;
1281 error ("redeclaration %q+D differs in %<constexpr%>", new_decl);
1282 error ("from previous declaration %q+D", old_decl);
1283 return false;
1285 return true;
1288 // If OLDDECL and NEWDECL are concept declarations with the same type
1289 // (i.e., and template parameters), but different requirements,
1290 // emit diagnostics and return true. Otherwise, return false.
1291 static inline bool
1292 check_concept_refinement (tree olddecl, tree newdecl)
1294 if (!DECL_DECLARED_CONCEPT_P (olddecl) || !DECL_DECLARED_CONCEPT_P (newdecl))
1295 return false;
1297 tree d1 = DECL_TEMPLATE_RESULT (olddecl);
1298 tree d2 = DECL_TEMPLATE_RESULT (newdecl);
1299 if (TREE_CODE (d1) != TREE_CODE (d2))
1300 return false;
1302 tree t1 = TREE_TYPE (d1);
1303 tree t2 = TREE_TYPE (d2);
1304 if (TREE_CODE (d1) == FUNCTION_DECL)
1306 if (compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2))
1307 && comp_template_parms (DECL_TEMPLATE_PARMS (olddecl),
1308 DECL_TEMPLATE_PARMS (newdecl))
1309 && !equivalently_constrained (olddecl, newdecl))
1311 error ("cannot specialize concept %q#D", olddecl);
1312 return true;
1315 return false;
1318 /* DECL is a redeclaration of a function or function template. If
1319 it does have default arguments issue a diagnostic. Note: this
1320 function is used to enforce the requirements in C++11 8.3.6 about
1321 no default arguments in redeclarations. */
1323 static void
1324 check_redeclaration_no_default_args (tree decl)
1326 gcc_assert (DECL_DECLARES_FUNCTION_P (decl));
1328 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
1329 t && t != void_list_node; t = TREE_CHAIN (t))
1330 if (TREE_PURPOSE (t))
1332 permerror (DECL_SOURCE_LOCATION (decl),
1333 "redeclaration of %q#D may not have default "
1334 "arguments", decl);
1335 return;
1339 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1340 && lookup_attribute ("gnu_inline", \
1341 DECL_ATTRIBUTES (fn)))
1343 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1344 If the redeclaration is invalid, a diagnostic is issued, and the
1345 error_mark_node is returned. Otherwise, OLDDECL is returned.
1347 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1348 returned.
1350 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1352 tree
1353 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1355 unsigned olddecl_uid = DECL_UID (olddecl);
1356 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1357 int new_defines_function = 0;
1358 tree new_template_info;
1360 if (newdecl == olddecl)
1361 return olddecl;
1363 types_match = decls_match (newdecl, olddecl);
1365 /* If either the type of the new decl or the type of the old decl is an
1366 error_mark_node, then that implies that we have already issued an
1367 error (earlier) for some bogus type specification, and in that case,
1368 it is rather pointless to harass the user with yet more error message
1369 about the same declaration, so just pretend the types match here. */
1370 if (TREE_TYPE (newdecl) == error_mark_node
1371 || TREE_TYPE (olddecl) == error_mark_node)
1372 return error_mark_node;
1374 if (UDLIT_OPER_P (DECL_NAME (newdecl))
1375 && UDLIT_OPER_P (DECL_NAME (olddecl)))
1377 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1378 && TREE_CODE (olddecl) != TEMPLATE_DECL
1379 && check_raw_literal_operator (olddecl))
1380 error ("literal operator template %q+D conflicts with"
1381 " raw literal operator %qD", newdecl, olddecl);
1382 else if (TREE_CODE (newdecl) != TEMPLATE_DECL
1383 && TREE_CODE (olddecl) == TEMPLATE_DECL
1384 && check_raw_literal_operator (newdecl))
1385 error ("raw literal operator %q+D conflicts with"
1386 " literal operator template %qD", newdecl, olddecl);
1389 if (DECL_P (olddecl)
1390 && TREE_CODE (newdecl) == FUNCTION_DECL
1391 && TREE_CODE (olddecl) == FUNCTION_DECL
1392 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1394 if (DECL_DECLARED_INLINE_P (newdecl)
1395 && DECL_UNINLINABLE (newdecl)
1396 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1397 /* Already warned elsewhere. */;
1398 else if (DECL_DECLARED_INLINE_P (olddecl)
1399 && DECL_UNINLINABLE (olddecl)
1400 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1401 /* Already warned. */;
1402 else if (DECL_DECLARED_INLINE_P (newdecl)
1403 && DECL_UNINLINABLE (olddecl)
1404 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1406 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1407 OPT_Wattributes, "function %qD redeclared as inline",
1408 newdecl))
1409 inform (DECL_SOURCE_LOCATION (olddecl),
1410 "previous declaration of %qD with attribute noinline",
1411 olddecl);
1413 else if (DECL_DECLARED_INLINE_P (olddecl)
1414 && DECL_UNINLINABLE (newdecl)
1415 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1417 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1418 OPT_Wattributes, "function %qD redeclared with "
1419 "attribute noinline", newdecl))
1420 inform (DECL_SOURCE_LOCATION (olddecl),
1421 "previous declaration of %qD was inline",
1422 olddecl);
1426 /* Check for redeclaration and other discrepancies. */
1427 if (TREE_CODE (olddecl) == FUNCTION_DECL
1428 && DECL_ARTIFICIAL (olddecl))
1430 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1431 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1433 /* Avoid warnings redeclaring built-ins which have not been
1434 explicitly declared. */
1435 if (DECL_ANTICIPATED (olddecl))
1436 return NULL_TREE;
1438 /* If you declare a built-in or predefined function name as static,
1439 the old definition is overridden, but optionally warn this was a
1440 bad choice of name. */
1441 if (! TREE_PUBLIC (newdecl))
1443 warning (OPT_Wshadow,
1444 DECL_BUILT_IN (olddecl)
1445 ? G_("shadowing built-in function %q#D")
1446 : G_("shadowing library function %q#D"), olddecl);
1447 /* Discard the old built-in function. */
1448 return NULL_TREE;
1450 /* If the built-in is not ansi, then programs can override
1451 it even globally without an error. */
1452 else if (! DECL_BUILT_IN (olddecl))
1453 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1454 "library function %q#D redeclared as non-function %q#D",
1455 olddecl, newdecl);
1456 else
1457 error ("declaration of %q+#D conflicts with built-in "
1458 "declaration %q#D", newdecl, olddecl);
1459 return NULL_TREE;
1461 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1463 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1464 error_at (DECL_SOURCE_LOCATION (newdecl),
1465 "redeclaration of %<pragma omp declare reduction%>");
1466 inform (DECL_SOURCE_LOCATION (olddecl),
1467 "previous %<pragma omp declare reduction%> declaration");
1468 return error_mark_node;
1470 else if (!types_match)
1472 /* Avoid warnings redeclaring built-ins which have not been
1473 explicitly declared. */
1474 if (DECL_ANTICIPATED (olddecl))
1476 /* Deal with fileptr_type_node. FILE type is not known
1477 at the time we create the builtins. */
1478 tree t1, t2;
1480 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1481 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1482 t1 || t2;
1483 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1484 if (!t1 || !t2)
1485 break;
1486 else if (TREE_VALUE (t2) == fileptr_type_node)
1488 tree t = TREE_VALUE (t1);
1490 if (TYPE_PTR_P (t)
1491 && TYPE_IDENTIFIER (TREE_TYPE (t))
1492 == get_identifier ("FILE")
1493 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1495 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1497 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1498 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1499 types_match = decls_match (newdecl, olddecl);
1500 if (types_match)
1501 return duplicate_decls (newdecl, olddecl,
1502 newdecl_is_friend);
1503 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1506 else if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1507 break;
1509 else if ((DECL_EXTERN_C_P (newdecl)
1510 && DECL_EXTERN_C_P (olddecl))
1511 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1512 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1514 /* A near match; override the builtin. */
1516 if (TREE_PUBLIC (newdecl))
1517 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1518 "new declaration %q#D ambiguates built-in "
1519 "declaration %q#D", newdecl, olddecl);
1520 else
1521 warning (OPT_Wshadow,
1522 DECL_BUILT_IN (olddecl)
1523 ? G_("shadowing built-in function %q#D")
1524 : G_("shadowing library function %q#D"), olddecl);
1526 else
1527 /* Discard the old built-in function. */
1528 return NULL_TREE;
1530 /* Replace the old RTL to avoid problems with inlining. */
1531 COPY_DECL_RTL (newdecl, olddecl);
1533 /* Even if the types match, prefer the new declarations type for
1534 built-ins which have not been explicitly declared, for
1535 exception lists, etc... */
1536 else if (DECL_IS_BUILTIN (olddecl))
1538 tree type = TREE_TYPE (newdecl);
1539 tree attribs = (*targetm.merge_type_attributes)
1540 (TREE_TYPE (olddecl), type);
1542 type = cp_build_type_attribute_variant (type, attribs);
1543 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1546 /* If a function is explicitly declared "throw ()", propagate that to
1547 the corresponding builtin. */
1548 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1549 && DECL_ANTICIPATED (olddecl)
1550 && TREE_NOTHROW (newdecl)
1551 && !TREE_NOTHROW (olddecl))
1553 enum built_in_function fncode = DECL_FUNCTION_CODE (olddecl);
1554 tree tmpdecl = builtin_decl_explicit (fncode);
1555 if (tmpdecl && tmpdecl != olddecl && types_match)
1556 TREE_NOTHROW (tmpdecl) = 1;
1559 /* Whether or not the builtin can throw exceptions has no
1560 bearing on this declarator. */
1561 TREE_NOTHROW (olddecl) = 0;
1563 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1565 /* If a builtin function is redeclared as `static', merge
1566 the declarations, but make the original one static. */
1567 DECL_THIS_STATIC (olddecl) = 1;
1568 TREE_PUBLIC (olddecl) = 0;
1570 /* Make the old declaration consistent with the new one so
1571 that all remnants of the builtin-ness of this function
1572 will be banished. */
1573 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1574 COPY_DECL_RTL (newdecl, olddecl);
1577 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1579 /* C++ Standard, 3.3, clause 4:
1580 "[Note: a namespace name or a class template name must be unique
1581 in its declarative region (7.3.2, clause 14). ]" */
1582 if (TREE_CODE (olddecl) != NAMESPACE_DECL
1583 && TREE_CODE (newdecl) != NAMESPACE_DECL
1584 && (TREE_CODE (olddecl) != TEMPLATE_DECL
1585 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) != TYPE_DECL)
1586 && (TREE_CODE (newdecl) != TEMPLATE_DECL
1587 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != TYPE_DECL))
1589 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1590 && TREE_CODE (newdecl) != TYPE_DECL)
1591 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1592 && TREE_CODE (olddecl) != TYPE_DECL))
1594 /* We do nothing special here, because C++ does such nasty
1595 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1596 get shadowed, and know that if we need to find a TYPE_DECL
1597 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1598 slot of the identifier. */
1599 return NULL_TREE;
1602 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1603 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1604 || (TREE_CODE (olddecl) == FUNCTION_DECL
1605 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1606 return NULL_TREE;
1609 error ("%q#D redeclared as different kind of symbol", newdecl);
1610 if (TREE_CODE (olddecl) == TREE_LIST)
1611 olddecl = TREE_VALUE (olddecl);
1612 inform (DECL_SOURCE_LOCATION (olddecl),
1613 "previous declaration %q#D", olddecl);
1615 return error_mark_node;
1617 else if (!types_match)
1619 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1620 /* These are certainly not duplicate declarations; they're
1621 from different scopes. */
1622 return NULL_TREE;
1624 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1626 /* The name of a class template may not be declared to refer to
1627 any other template, class, function, object, namespace, value,
1628 or type in the same scope. */
1629 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1630 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1632 error ("conflicting declaration of template %q+#D", newdecl);
1633 inform (DECL_SOURCE_LOCATION (olddecl),
1634 "previous declaration %q#D", olddecl);
1635 return error_mark_node;
1637 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1638 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1639 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1640 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1641 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1642 DECL_TEMPLATE_PARMS (olddecl))
1643 /* Template functions can be disambiguated by
1644 return type. */
1645 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1646 TREE_TYPE (TREE_TYPE (olddecl)))
1647 // Template functions can also be disambiguated by
1648 // constraints.
1649 && equivalently_constrained (olddecl, newdecl))
1651 error ("ambiguating new declaration %q+#D", newdecl);
1652 inform (DECL_SOURCE_LOCATION (olddecl),
1653 "old declaration %q#D", olddecl);
1655 else if (check_concept_refinement (olddecl, newdecl))
1656 return error_mark_node;
1657 return NULL_TREE;
1659 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1661 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1663 error ("conflicting declaration of C function %q+#D",
1664 newdecl);
1665 inform (DECL_SOURCE_LOCATION (olddecl),
1666 "previous declaration %q#D", olddecl);
1667 return NULL_TREE;
1669 /* For function versions, params and types match, but they
1670 are not ambiguous. */
1671 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1672 && !DECL_FUNCTION_VERSIONED (olddecl))
1673 // The functions have the same parameter types.
1674 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1675 TYPE_ARG_TYPES (TREE_TYPE (olddecl)))
1676 // And the same constraints.
1677 && equivalently_constrained (newdecl, olddecl))
1679 error ("ambiguating new declaration of %q+#D", newdecl);
1680 inform (DECL_SOURCE_LOCATION (olddecl),
1681 "old declaration %q#D", olddecl);
1682 return error_mark_node;
1684 else
1685 return NULL_TREE;
1687 else
1689 error ("conflicting declaration %q+#D", newdecl);
1690 inform (DECL_SOURCE_LOCATION (olddecl),
1691 "previous declaration as %q#D", olddecl);
1692 return error_mark_node;
1695 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1696 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1697 && (!DECL_TEMPLATE_INFO (newdecl)
1698 || (DECL_TI_TEMPLATE (newdecl)
1699 != DECL_TI_TEMPLATE (olddecl))))
1700 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1701 && (!DECL_TEMPLATE_INFO (olddecl)
1702 || (DECL_TI_TEMPLATE (olddecl)
1703 != DECL_TI_TEMPLATE (newdecl))))))
1704 /* It's OK to have a template specialization and a non-template
1705 with the same type, or to have specializations of two
1706 different templates with the same type. Note that if one is a
1707 specialization, and the other is an instantiation of the same
1708 template, that we do not exit at this point. That situation
1709 can occur if we instantiate a template class, and then
1710 specialize one of its methods. This situation is valid, but
1711 the declarations must be merged in the usual way. */
1712 return NULL_TREE;
1713 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1714 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1715 && !DECL_USE_TEMPLATE (newdecl))
1716 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1717 && !DECL_USE_TEMPLATE (olddecl))))
1718 /* One of the declarations is a template instantiation, and the
1719 other is not a template at all. That's OK. */
1720 return NULL_TREE;
1721 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1723 /* In [namespace.alias] we have:
1725 In a declarative region, a namespace-alias-definition can be
1726 used to redefine a namespace-alias declared in that declarative
1727 region to refer only to the namespace to which it already
1728 refers.
1730 Therefore, if we encounter a second alias directive for the same
1731 alias, we can just ignore the second directive. */
1732 if (DECL_NAMESPACE_ALIAS (newdecl)
1733 && (DECL_NAMESPACE_ALIAS (newdecl)
1734 == DECL_NAMESPACE_ALIAS (olddecl)))
1735 return olddecl;
1736 /* [namespace.alias]
1738 A namespace-name or namespace-alias shall not be declared as
1739 the name of any other entity in the same declarative region.
1740 A namespace-name defined at global scope shall not be
1741 declared as the name of any other entity in any global scope
1742 of the program. */
1743 error ("conflicting declaration of namespace %q+D", newdecl);
1744 inform (DECL_SOURCE_LOCATION (olddecl),
1745 "previous declaration of namespace %qD here", olddecl);
1746 return error_mark_node;
1748 else
1750 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1751 if (errmsg)
1753 error_at (DECL_SOURCE_LOCATION (newdecl), errmsg, newdecl);
1754 if (DECL_NAME (olddecl) != NULL_TREE)
1755 inform (DECL_SOURCE_LOCATION (olddecl),
1756 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1757 ? G_("%q#D previously defined here")
1758 : G_("%q#D previously declared here"), olddecl);
1759 return error_mark_node;
1761 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1762 && DECL_INITIAL (olddecl) != NULL_TREE
1763 && !prototype_p (TREE_TYPE (olddecl))
1764 && prototype_p (TREE_TYPE (newdecl)))
1766 /* Prototype decl follows defn w/o prototype. */
1767 if (warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1768 "prototype specified for %q#D", newdecl))
1769 inform (DECL_SOURCE_LOCATION (olddecl),
1770 "previous non-prototype definition here");
1772 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1773 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1775 /* [dcl.link]
1776 If two declarations of the same function or object
1777 specify different linkage-specifications ..., the program
1778 is ill-formed.... Except for functions with C++ linkage,
1779 a function declaration without a linkage specification
1780 shall not precede the first linkage specification for
1781 that function. A function can be declared without a
1782 linkage specification after an explicit linkage
1783 specification has been seen; the linkage explicitly
1784 specified in the earlier declaration is not affected by
1785 such a function declaration.
1787 DR 563 raises the question why the restrictions on
1788 functions should not also apply to objects. Older
1789 versions of G++ silently ignore the linkage-specification
1790 for this example:
1792 namespace N {
1793 extern int i;
1794 extern "C" int i;
1797 which is clearly wrong. Therefore, we now treat objects
1798 like functions. */
1799 if (current_lang_depth () == 0)
1801 /* There is no explicit linkage-specification, so we use
1802 the linkage from the previous declaration. */
1803 if (!DECL_LANG_SPECIFIC (newdecl))
1804 retrofit_lang_decl (newdecl);
1805 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1807 else
1809 error ("conflicting declaration of %q+#D with %qL linkage",
1810 newdecl, DECL_LANGUAGE (newdecl));
1811 inform (DECL_SOURCE_LOCATION (olddecl),
1812 "previous declaration with %qL linkage",
1813 DECL_LANGUAGE (olddecl));
1817 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1819 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1821 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1822 if (DECL_FUNCTION_MEMBER_P (olddecl)
1823 && (/* grokfndecl passes member function templates too
1824 as FUNCTION_DECLs. */
1825 DECL_TEMPLATE_INFO (olddecl)
1826 /* C++11 8.3.6/6.
1827 Default arguments for a member function of a class
1828 template shall be specified on the initial declaration
1829 of the member function within the class template. */
1830 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
1831 check_redeclaration_no_default_args (newdecl);
1832 else
1834 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1835 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1836 int i = 1;
1838 for (; t1 && t1 != void_list_node;
1839 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1840 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1842 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
1843 TREE_PURPOSE (t2)))
1845 if (permerror (input_location,
1846 "default argument given for parameter "
1847 "%d of %q#D", i, newdecl))
1848 inform (DECL_SOURCE_LOCATION (olddecl),
1849 "previous specification in %q#D here",
1850 olddecl);
1852 else
1854 error ("default argument given for parameter %d "
1855 "of %q#D", i, newdecl);
1856 inform (DECL_SOURCE_LOCATION (olddecl),
1857 "previous specification in %q#D here",
1858 olddecl);
1865 /* Do not merge an implicit typedef with an explicit one. In:
1867 class A;
1869 typedef class A A __attribute__ ((foo));
1871 the attribute should apply only to the typedef. */
1872 if (TREE_CODE (olddecl) == TYPE_DECL
1873 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1874 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1875 return NULL_TREE;
1877 /* If new decl is `static' and an `extern' was seen previously,
1878 warn about it. */
1879 warn_extern_redeclared_static (newdecl, olddecl);
1881 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1882 return error_mark_node;
1884 /* We have committed to returning 1 at this point. */
1885 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1887 /* Now that functions must hold information normally held
1888 by field decls, there is extra work to do so that
1889 declaration information does not get destroyed during
1890 definition. */
1891 if (DECL_VINDEX (olddecl))
1892 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1893 if (DECL_CONTEXT (olddecl))
1894 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1895 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1896 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1897 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1898 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1899 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1900 DECL_FINAL_P (newdecl) |= DECL_FINAL_P (olddecl);
1901 DECL_OVERRIDE_P (newdecl) |= DECL_OVERRIDE_P (olddecl);
1902 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1903 if (DECL_OVERLOADED_OPERATOR_P (olddecl) != ERROR_MARK)
1904 SET_OVERLOADED_OPERATOR_CODE
1905 (newdecl, DECL_OVERLOADED_OPERATOR_P (olddecl));
1906 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1908 /* Optionally warn about more than one declaration for the same
1909 name, but don't warn about a function declaration followed by a
1910 definition. */
1911 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1912 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1913 /* Don't warn about extern decl followed by definition. */
1914 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1915 /* Don't warn about friends, let add_friend take care of it. */
1916 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1917 /* Don't warn about declaration followed by specialization. */
1918 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1919 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1921 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1922 OPT_Wredundant_decls,
1923 "redundant redeclaration of %qD in same scope",
1924 newdecl))
1925 inform (DECL_SOURCE_LOCATION (olddecl),
1926 "previous declaration of %qD", olddecl);
1929 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1930 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1932 if (DECL_DELETED_FN (newdecl))
1934 error ("deleted definition of %q+D", newdecl);
1935 inform (DECL_SOURCE_LOCATION (olddecl),
1936 "previous declaration of %qD", olddecl);
1938 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
1942 /* Deal with C++: must preserve virtual function table size. */
1943 if (TREE_CODE (olddecl) == TYPE_DECL)
1945 tree newtype = TREE_TYPE (newdecl);
1946 tree oldtype = TREE_TYPE (olddecl);
1948 if (newtype != error_mark_node && oldtype != error_mark_node
1949 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1950 CLASSTYPE_FRIEND_CLASSES (newtype)
1951 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1953 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1956 /* Copy all the DECL_... slots specified in the new decl
1957 except for any that we copy here from the old type. */
1958 DECL_ATTRIBUTES (newdecl)
1959 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1961 if (DECL_DECLARES_FUNCTION_P (olddecl) && DECL_DECLARES_FUNCTION_P (newdecl))
1963 olddecl_friend = DECL_FRIEND_P (olddecl);
1964 hidden_friend = (DECL_ANTICIPATED (olddecl)
1965 && DECL_HIDDEN_FRIEND_P (olddecl)
1966 && newdecl_is_friend);
1967 if (!hidden_friend)
1969 DECL_ANTICIPATED (olddecl) = 0;
1970 DECL_HIDDEN_FRIEND_P (olddecl) = 0;
1974 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1976 tree old_result;
1977 tree new_result;
1978 old_result = DECL_TEMPLATE_RESULT (olddecl);
1979 new_result = DECL_TEMPLATE_RESULT (newdecl);
1980 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
1981 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
1982 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
1983 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
1985 DECL_ATTRIBUTES (old_result)
1986 = (*targetm.merge_decl_attributes) (old_result, new_result);
1988 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1990 /* Per C++11 8.3.6/4, default arguments cannot be added in later
1991 declarations of a function template. */
1992 if (DECL_SOURCE_LOCATION (newdecl)
1993 != DECL_SOURCE_LOCATION (olddecl))
1994 check_redeclaration_no_default_args (newdecl);
1996 check_default_args (newdecl);
1998 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
1999 && DECL_INITIAL (new_result))
2001 if (DECL_INITIAL (old_result))
2002 DECL_UNINLINABLE (old_result) = 1;
2003 else
2004 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
2005 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
2006 DECL_NOT_REALLY_EXTERN (old_result)
2007 = DECL_NOT_REALLY_EXTERN (new_result);
2008 DECL_INTERFACE_KNOWN (old_result)
2009 = DECL_INTERFACE_KNOWN (new_result);
2010 DECL_DECLARED_INLINE_P (old_result)
2011 = DECL_DECLARED_INLINE_P (new_result);
2012 DECL_DISREGARD_INLINE_LIMITS (old_result)
2013 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2016 else
2018 DECL_DECLARED_INLINE_P (old_result)
2019 |= DECL_DECLARED_INLINE_P (new_result);
2020 DECL_DISREGARD_INLINE_LIMITS (old_result)
2021 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2022 check_redeclaration_exception_specification (newdecl, olddecl);
2026 /* If the new declaration is a definition, update the file and
2027 line information on the declaration, and also make
2028 the old declaration the same definition. */
2029 if (DECL_INITIAL (new_result) != NULL_TREE)
2031 DECL_SOURCE_LOCATION (olddecl)
2032 = DECL_SOURCE_LOCATION (old_result)
2033 = DECL_SOURCE_LOCATION (newdecl);
2034 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
2035 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2037 tree parm;
2038 DECL_ARGUMENTS (old_result)
2039 = DECL_ARGUMENTS (new_result);
2040 for (parm = DECL_ARGUMENTS (old_result); parm;
2041 parm = DECL_CHAIN (parm))
2042 DECL_CONTEXT (parm) = old_result;
2046 return olddecl;
2049 if (types_match)
2051 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2052 check_redeclaration_exception_specification (newdecl, olddecl);
2054 /* Automatically handles default parameters. */
2055 tree oldtype = TREE_TYPE (olddecl);
2056 tree newtype;
2058 /* For typedefs use the old type, as the new type's DECL_NAME points
2059 at newdecl, which will be ggc_freed. */
2060 if (TREE_CODE (newdecl) == TYPE_DECL)
2062 /* But NEWTYPE might have an attribute, honor that. */
2063 tree tem = TREE_TYPE (newdecl);
2064 newtype = oldtype;
2066 if (TYPE_USER_ALIGN (tem))
2068 if (TYPE_ALIGN (tem) > TYPE_ALIGN (newtype))
2069 SET_TYPE_ALIGN (newtype, TYPE_ALIGN (tem));
2070 TYPE_USER_ALIGN (newtype) = true;
2073 /* And remove the new type from the variants list. */
2074 if (TYPE_NAME (TREE_TYPE (newdecl)) == newdecl)
2076 tree remove = TREE_TYPE (newdecl);
2077 for (tree t = TYPE_MAIN_VARIANT (remove); ;
2078 t = TYPE_NEXT_VARIANT (t))
2079 if (TYPE_NEXT_VARIANT (t) == remove)
2081 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (remove);
2082 break;
2086 else
2087 /* Merge the data types specified in the two decls. */
2088 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
2090 if (VAR_P (newdecl))
2092 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
2093 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
2094 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
2095 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
2096 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
2097 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
2099 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
2100 if (DECL_LANG_SPECIFIC (olddecl)
2101 && CP_DECL_THREADPRIVATE_P (olddecl))
2103 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
2104 if (!DECL_LANG_SPECIFIC (newdecl))
2105 retrofit_lang_decl (newdecl);
2107 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
2111 /* An explicit specialization of a function template or of a member
2112 function of a class template can be declared transaction_safe
2113 independently of whether the corresponding template entity is declared
2114 transaction_safe. */
2115 if (flag_tm && TREE_CODE (newdecl) == FUNCTION_DECL
2116 && DECL_TEMPLATE_INSTANTIATION (olddecl)
2117 && DECL_TEMPLATE_SPECIALIZATION (newdecl)
2118 && tx_safe_fn_type_p (newtype)
2119 && !tx_safe_fn_type_p (TREE_TYPE (newdecl)))
2120 newtype = tx_unsafe_fn_variant (newtype);
2122 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2124 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2125 check_default_args (newdecl);
2127 /* Lay the type out, unless already done. */
2128 if (! same_type_p (newtype, oldtype)
2129 && TREE_TYPE (newdecl) != error_mark_node
2130 && !(processing_template_decl && uses_template_parms (newdecl)))
2131 layout_type (TREE_TYPE (newdecl));
2133 if ((VAR_P (newdecl)
2134 || TREE_CODE (newdecl) == PARM_DECL
2135 || TREE_CODE (newdecl) == RESULT_DECL
2136 || TREE_CODE (newdecl) == FIELD_DECL
2137 || TREE_CODE (newdecl) == TYPE_DECL)
2138 && !(processing_template_decl && uses_template_parms (newdecl)))
2139 layout_decl (newdecl, 0);
2141 /* Merge the type qualifiers. */
2142 if (TREE_READONLY (newdecl))
2143 TREE_READONLY (olddecl) = 1;
2144 if (TREE_THIS_VOLATILE (newdecl))
2145 TREE_THIS_VOLATILE (olddecl) = 1;
2146 if (TREE_NOTHROW (newdecl))
2147 TREE_NOTHROW (olddecl) = 1;
2149 /* Merge deprecatedness. */
2150 if (TREE_DEPRECATED (newdecl))
2151 TREE_DEPRECATED (olddecl) = 1;
2153 /* Preserve function specific target and optimization options */
2154 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2156 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2157 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2158 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2159 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2161 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2162 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2163 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2164 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2167 /* Merge the initialization information. */
2168 if (DECL_INITIAL (newdecl) == NULL_TREE
2169 && DECL_INITIAL (olddecl) != NULL_TREE)
2171 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2172 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2173 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2175 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2176 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2180 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2182 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2183 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2184 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2185 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2186 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
2187 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2188 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2189 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2190 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2191 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2192 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2193 /* Keep the old RTL. */
2194 COPY_DECL_RTL (olddecl, newdecl);
2196 else if (VAR_P (newdecl)
2197 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2199 /* Keep the old RTL. We cannot keep the old RTL if the old
2200 declaration was for an incomplete object and the new
2201 declaration is not since many attributes of the RTL will
2202 change. */
2203 COPY_DECL_RTL (olddecl, newdecl);
2206 /* If cannot merge, then use the new type and qualifiers,
2207 and don't preserve the old rtl. */
2208 else
2210 /* Clean out any memory we had of the old declaration. */
2211 tree oldstatic = value_member (olddecl, static_aggregates);
2212 if (oldstatic)
2213 TREE_VALUE (oldstatic) = error_mark_node;
2215 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2216 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2217 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2218 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2221 /* Merge the storage class information. */
2222 merge_weak (newdecl, olddecl);
2224 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2225 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2226 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2227 if (! DECL_EXTERNAL (olddecl))
2228 DECL_EXTERNAL (newdecl) = 0;
2229 if (! DECL_COMDAT (olddecl))
2230 DECL_COMDAT (newdecl) = 0;
2232 new_template_info = NULL_TREE;
2233 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2235 bool new_redefines_gnu_inline = false;
2237 if (new_defines_function
2238 && ((DECL_INTERFACE_KNOWN (olddecl)
2239 && TREE_CODE (olddecl) == FUNCTION_DECL)
2240 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2241 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2242 == FUNCTION_DECL))))
2244 tree fn = olddecl;
2246 if (TREE_CODE (fn) == TEMPLATE_DECL)
2247 fn = DECL_TEMPLATE_RESULT (olddecl);
2249 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2252 if (!new_redefines_gnu_inline)
2254 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2255 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2256 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2258 DECL_TEMPLATE_INSTANTIATED (newdecl)
2259 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2260 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2262 /* If the OLDDECL is an instantiation and/or specialization,
2263 then the NEWDECL must be too. But, it may not yet be marked
2264 as such if the caller has created NEWDECL, but has not yet
2265 figured out that it is a redeclaration. */
2266 if (!DECL_USE_TEMPLATE (newdecl))
2267 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2269 /* Don't really know how much of the language-specific
2270 values we should copy from old to new. */
2271 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2272 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
2273 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2274 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2276 if (LANG_DECL_HAS_MIN (newdecl))
2278 DECL_LANG_SPECIFIC (newdecl)->u.min.u2 =
2279 DECL_LANG_SPECIFIC (olddecl)->u.min.u2;
2280 if (DECL_TEMPLATE_INFO (newdecl))
2282 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2283 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2284 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2285 /* Remember the presence of explicit specialization args. */
2286 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2287 = TINFO_USED_TEMPLATE_ID (new_template_info);
2289 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2291 /* Only functions have these fields. */
2292 if (DECL_DECLARES_FUNCTION_P (newdecl))
2294 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2295 DECL_BEFRIENDING_CLASSES (newdecl)
2296 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2297 DECL_BEFRIENDING_CLASSES (olddecl));
2298 /* DECL_THUNKS is only valid for virtual functions,
2299 otherwise it is a DECL_FRIEND_CONTEXT. */
2300 if (DECL_VIRTUAL_P (newdecl))
2301 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2303 /* Only variables have this field. */
2304 else if (VAR_P (newdecl)
2305 && VAR_HAD_UNKNOWN_BOUND (olddecl))
2306 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2309 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2311 tree parm;
2313 /* Merge parameter attributes. */
2314 tree oldarg, newarg;
2315 for (oldarg = DECL_ARGUMENTS(olddecl),
2316 newarg = DECL_ARGUMENTS(newdecl);
2317 oldarg && newarg;
2318 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg)) {
2319 DECL_ATTRIBUTES (newarg)
2320 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2321 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2324 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2325 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2327 /* If newdecl is not a specialization, then it is not a
2328 template-related function at all. And that means that we
2329 should have exited above, returning 0. */
2330 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2332 if (DECL_ODR_USED (olddecl))
2333 /* From [temp.expl.spec]:
2335 If a template, a member template or the member of a class
2336 template is explicitly specialized then that
2337 specialization shall be declared before the first use of
2338 that specialization that would cause an implicit
2339 instantiation to take place, in every translation unit in
2340 which such a use occurs. */
2341 error ("explicit specialization of %qD after first use",
2342 olddecl);
2344 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2345 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2346 && DECL_DECLARED_INLINE_P (newdecl));
2348 /* Don't propagate visibility from the template to the
2349 specialization here. We'll do that in determine_visibility if
2350 appropriate. */
2351 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2353 /* [temp.expl.spec/14] We don't inline explicit specialization
2354 just because the primary template says so. */
2356 /* But still keep DECL_DISREGARD_INLINE_LIMITS in sync with
2357 the always_inline attribute. */
2358 if (DECL_DISREGARD_INLINE_LIMITS (olddecl)
2359 && !DECL_DISREGARD_INLINE_LIMITS (newdecl))
2361 if (DECL_DECLARED_INLINE_P (newdecl))
2362 DECL_DISREGARD_INLINE_LIMITS (newdecl) = true;
2363 else
2364 DECL_ATTRIBUTES (newdecl)
2365 = remove_attribute ("always_inline",
2366 DECL_ATTRIBUTES (newdecl));
2369 else if (new_defines_function && DECL_INITIAL (olddecl))
2371 /* Never inline re-defined extern inline functions.
2372 FIXME: this could be better handled by keeping both
2373 function as separate declarations. */
2374 DECL_UNINLINABLE (newdecl) = 1;
2376 else
2378 if (DECL_PENDING_INLINE_INFO (newdecl) == 0)
2379 DECL_PENDING_INLINE_INFO (newdecl) = DECL_PENDING_INLINE_INFO (olddecl);
2381 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2383 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2384 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2386 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2387 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2388 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2389 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2392 /* Preserve abstractness on cloned [cd]tors. */
2393 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2395 /* Update newdecl's parms to point at olddecl. */
2396 for (parm = DECL_ARGUMENTS (newdecl); parm;
2397 parm = DECL_CHAIN (parm))
2398 DECL_CONTEXT (parm) = olddecl;
2400 if (! types_match)
2402 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2403 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2404 COPY_DECL_RTL (newdecl, olddecl);
2406 if (! types_match || new_defines_function)
2408 /* These need to be copied so that the names are available.
2409 Note that if the types do match, we'll preserve inline
2410 info and other bits, but if not, we won't. */
2411 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2412 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2414 /* If redeclaring a builtin function, it stays built in
2415 if newdecl is a gnu_inline definition, or if newdecl is just
2416 a declaration. */
2417 if (DECL_BUILT_IN (olddecl)
2418 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2420 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2421 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2422 /* If we're keeping the built-in definition, keep the rtl,
2423 regardless of declaration matches. */
2424 COPY_DECL_RTL (olddecl, newdecl);
2425 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2427 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2428 switch (fncode)
2430 /* If a compatible prototype of these builtin functions
2431 is seen, assume the runtime implements it with the
2432 expected semantics. */
2433 case BUILT_IN_STPCPY:
2434 if (builtin_decl_explicit_p (fncode))
2435 set_builtin_decl_implicit_p (fncode, true);
2436 break;
2437 default:
2438 if (builtin_decl_explicit_p (fncode))
2439 set_builtin_decl_declared_p (fncode, true);
2440 break;
2444 if (new_defines_function)
2445 /* If defining a function declared with other language
2446 linkage, use the previously declared language linkage. */
2447 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2448 else if (types_match)
2450 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2451 /* Don't clear out the arguments if we're just redeclaring a
2452 function. */
2453 if (DECL_ARGUMENTS (olddecl))
2454 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2457 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2458 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2460 /* Now preserve various other info from the definition. */
2461 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2462 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2463 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2464 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2466 /* Warn about conflicting visibility specifications. */
2467 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2468 && DECL_VISIBILITY_SPECIFIED (newdecl)
2469 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2471 if (warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wattributes,
2472 "%qD: visibility attribute ignored because it "
2473 "conflicts with previous declaration", newdecl))
2474 inform (DECL_SOURCE_LOCATION (olddecl),
2475 "previous declaration of %qD", olddecl);
2477 /* Choose the declaration which specified visibility. */
2478 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2480 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2481 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2483 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2484 so keep this behavior. */
2485 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2487 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2488 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2490 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2491 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2493 SET_DECL_ALIGN (newdecl, DECL_ALIGN (olddecl));
2494 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2496 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2497 if (TREE_CODE (newdecl) == FIELD_DECL)
2498 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2500 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2501 with that from NEWDECL below. */
2502 if (DECL_LANG_SPECIFIC (olddecl))
2504 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2505 != DECL_LANG_SPECIFIC (newdecl));
2506 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2509 /* Merge the USED information. */
2510 if (TREE_USED (olddecl))
2511 TREE_USED (newdecl) = 1;
2512 else if (TREE_USED (newdecl))
2513 TREE_USED (olddecl) = 1;
2514 if (VAR_P (newdecl))
2516 if (DECL_READ_P (olddecl))
2517 DECL_READ_P (newdecl) = 1;
2518 else if (DECL_READ_P (newdecl))
2519 DECL_READ_P (olddecl) = 1;
2521 if (DECL_PRESERVE_P (olddecl))
2522 DECL_PRESERVE_P (newdecl) = 1;
2523 else if (DECL_PRESERVE_P (newdecl))
2524 DECL_PRESERVE_P (olddecl) = 1;
2526 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2527 to olddecl and deleted. */
2528 if (TREE_CODE (newdecl) == FUNCTION_DECL
2529 && DECL_FUNCTION_VERSIONED (olddecl))
2531 /* Set the flag for newdecl so that it gets copied to olddecl. */
2532 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2533 /* newdecl will be purged after copying to olddecl and is no longer
2534 a version. */
2535 cgraph_node::delete_function_version (newdecl);
2538 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2540 int function_size;
2541 struct symtab_node *snode = symtab_node::get (olddecl);
2543 function_size = sizeof (struct tree_decl_common);
2545 memcpy ((char *) olddecl + sizeof (struct tree_common),
2546 (char *) newdecl + sizeof (struct tree_common),
2547 function_size - sizeof (struct tree_common));
2549 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2550 (char *) newdecl + sizeof (struct tree_decl_common),
2551 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2553 /* Preserve symtab node mapping. */
2554 olddecl->decl_with_vis.symtab_node = snode;
2556 if (new_template_info)
2557 /* If newdecl is a template instantiation, it is possible that
2558 the following sequence of events has occurred:
2560 o A friend function was declared in a class template. The
2561 class template was instantiated.
2563 o The instantiation of the friend declaration was
2564 recorded on the instantiation list, and is newdecl.
2566 o Later, however, instantiate_class_template called pushdecl
2567 on the newdecl to perform name injection. But, pushdecl in
2568 turn called duplicate_decls when it discovered that another
2569 declaration of a global function with the same name already
2570 existed.
2572 o Here, in duplicate_decls, we decided to clobber newdecl.
2574 If we're going to do that, we'd better make sure that
2575 olddecl, and not newdecl, is on the list of
2576 instantiations so that if we try to do the instantiation
2577 again we won't get the clobbered declaration. */
2578 reregister_specialization (newdecl,
2579 new_template_info,
2580 olddecl);
2582 else
2584 size_t size = tree_code_size (TREE_CODE (newdecl));
2586 memcpy ((char *) olddecl + sizeof (struct tree_common),
2587 (char *) newdecl + sizeof (struct tree_common),
2588 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2589 switch (TREE_CODE (newdecl))
2591 case LABEL_DECL:
2592 case VAR_DECL:
2593 case RESULT_DECL:
2594 case PARM_DECL:
2595 case FIELD_DECL:
2596 case TYPE_DECL:
2597 case CONST_DECL:
2599 struct symtab_node *snode = NULL;
2601 if (VAR_P (newdecl)
2602 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl)
2603 || DECL_EXTERNAL (olddecl)))
2604 snode = symtab_node::get (olddecl);
2605 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2606 (char *) newdecl + sizeof (struct tree_decl_common),
2607 size - sizeof (struct tree_decl_common)
2608 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2609 if (VAR_P (newdecl))
2610 olddecl->decl_with_vis.symtab_node = snode;
2612 break;
2613 default:
2614 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2615 (char *) newdecl + sizeof (struct tree_decl_common),
2616 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2617 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2618 break;
2622 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2624 if (DECL_EXTERNAL (olddecl)
2625 || TREE_PUBLIC (olddecl)
2626 || TREE_STATIC (olddecl))
2628 /* Merge the section attribute.
2629 We want to issue an error if the sections conflict but that must be
2630 done later in decl_attributes since we are called before attributes
2631 are assigned. */
2632 if (DECL_SECTION_NAME (newdecl) != NULL)
2633 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2635 if (DECL_ONE_ONLY (newdecl))
2637 struct symtab_node *oldsym, *newsym;
2638 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2639 oldsym = cgraph_node::get_create (olddecl);
2640 else
2641 oldsym = varpool_node::get_create (olddecl);
2642 newsym = symtab_node::get (newdecl);
2643 oldsym->set_comdat_group (newsym->get_comdat_group ());
2647 if (VAR_P (newdecl)
2648 && CP_DECL_THREAD_LOCAL_P (newdecl))
2650 CP_DECL_THREAD_LOCAL_P (olddecl) = true;
2651 if (!processing_template_decl)
2652 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2656 DECL_UID (olddecl) = olddecl_uid;
2657 if (olddecl_friend)
2658 DECL_FRIEND_P (olddecl) = 1;
2659 if (hidden_friend)
2661 DECL_ANTICIPATED (olddecl) = 1;
2662 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2665 /* NEWDECL contains the merged attribute lists.
2666 Update OLDDECL to be the same. */
2667 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2669 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2670 so that encode_section_info has a chance to look at the new decl
2671 flags and attributes. */
2672 if (DECL_RTL_SET_P (olddecl)
2673 && (TREE_CODE (olddecl) == FUNCTION_DECL
2674 || (VAR_P (olddecl)
2675 && TREE_STATIC (olddecl))))
2676 make_decl_rtl (olddecl);
2678 /* The NEWDECL will no longer be needed. Because every out-of-class
2679 declaration of a member results in a call to duplicate_decls,
2680 freeing these nodes represents in a significant savings.
2682 Before releasing the node, be sore to remove function from symbol
2683 table that might have been inserted there to record comdat group.
2684 Be sure to however do not free DECL_STRUCT_FUNCTION because this
2685 structure is shared in between newdecl and oldecl. */
2686 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2687 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2688 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2690 struct symtab_node *snode = symtab_node::get (newdecl);
2691 if (snode)
2692 snode->remove ();
2695 /* Remove the associated constraints for newdecl, if any, before
2696 reclaiming memory. */
2697 if (flag_concepts)
2698 remove_constraints (newdecl);
2700 ggc_free (newdecl);
2702 return olddecl;
2705 /* Return zero if the declaration NEWDECL is valid
2706 when the declaration OLDDECL (assumed to be for the same name)
2707 has already been seen.
2708 Otherwise return an error message format string with a %s
2709 where the identifier should go. */
2711 static const char *
2712 redeclaration_error_message (tree newdecl, tree olddecl)
2714 if (TREE_CODE (newdecl) == TYPE_DECL)
2716 /* Because C++ can put things into name space for free,
2717 constructs like "typedef struct foo { ... } foo"
2718 would look like an erroneous redeclaration. */
2719 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2720 return NULL;
2721 else
2722 return G_("redefinition of %q#D");
2724 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2726 /* If this is a pure function, its olddecl will actually be
2727 the original initialization to `0' (which we force to call
2728 abort()). Don't complain about redefinition in this case. */
2729 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2730 && DECL_INITIAL (olddecl) == NULL_TREE)
2731 return NULL;
2733 /* If both functions come from different namespaces, this is not
2734 a redeclaration - this is a conflict with a used function. */
2735 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2736 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2737 && ! decls_match (olddecl, newdecl))
2738 return G_("%qD conflicts with used function");
2740 /* We'll complain about linkage mismatches in
2741 warn_extern_redeclared_static. */
2743 /* Defining the same name twice is no good. */
2744 if (DECL_INITIAL (olddecl) != NULL_TREE
2745 && DECL_INITIAL (newdecl) != NULL_TREE)
2747 if (DECL_NAME (olddecl) == NULL_TREE)
2748 return G_("%q#D not declared in class");
2749 else if (!GNU_INLINE_P (olddecl)
2750 || GNU_INLINE_P (newdecl))
2751 return G_("redefinition of %q#D");
2754 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2756 bool olda = GNU_INLINE_P (olddecl);
2757 bool newa = GNU_INLINE_P (newdecl);
2759 if (olda != newa)
2761 if (newa)
2762 return G_("%q+D redeclared inline with "
2763 "%<gnu_inline%> attribute");
2764 else
2765 return G_("%q+D redeclared inline without "
2766 "%<gnu_inline%> attribute");
2770 check_abi_tag_redeclaration
2771 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2772 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2774 return NULL;
2776 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2778 tree nt, ot;
2780 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2782 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2783 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2784 return G_("redefinition of %q#D");
2785 return NULL;
2788 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2789 || (DECL_TEMPLATE_RESULT (newdecl)
2790 == DECL_TEMPLATE_RESULT (olddecl)))
2791 return NULL;
2793 nt = DECL_TEMPLATE_RESULT (newdecl);
2794 if (DECL_TEMPLATE_INFO (nt))
2795 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2796 ot = DECL_TEMPLATE_RESULT (olddecl);
2797 if (DECL_TEMPLATE_INFO (ot))
2798 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2799 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2800 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2801 return G_("redefinition of %q#D");
2803 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2805 bool olda = GNU_INLINE_P (ot);
2806 bool newa = GNU_INLINE_P (nt);
2808 if (olda != newa)
2810 if (newa)
2811 return G_("%q+D redeclared inline with "
2812 "%<gnu_inline%> attribute");
2813 else
2814 return G_("%q+D redeclared inline without "
2815 "%<gnu_inline%> attribute");
2819 /* Core issue #226 (C++0x):
2821 If a friend function template declaration specifies a
2822 default template-argument, that declaration shall be a
2823 definition and shall be the only declaration of the
2824 function template in the translation unit. */
2825 if ((cxx_dialect != cxx98)
2826 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2827 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2828 /*is_primary=*/true,
2829 /*is_partial=*/false,
2830 /*is_friend_decl=*/2))
2831 return G_("redeclaration of friend %q#D "
2832 "may not have default template arguments");
2834 return NULL;
2836 else if (VAR_P (newdecl)
2837 && CP_DECL_THREAD_LOCAL_P (newdecl) != CP_DECL_THREAD_LOCAL_P (olddecl)
2838 && (! DECL_LANG_SPECIFIC (olddecl)
2839 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2840 || CP_DECL_THREAD_LOCAL_P (newdecl)))
2842 /* Only variables can be thread-local, and all declarations must
2843 agree on this property. */
2844 if (CP_DECL_THREAD_LOCAL_P (newdecl))
2845 return G_("thread-local declaration of %q#D follows "
2846 "non-thread-local declaration");
2847 else
2848 return G_("non-thread-local declaration of %q#D follows "
2849 "thread-local declaration");
2851 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2853 /* The objects have been declared at namespace scope. If either
2854 is a member of an anonymous union, then this is an invalid
2855 redeclaration. For example:
2857 int i;
2858 union { int i; };
2860 is invalid. */
2861 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2862 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2863 return G_("redeclaration of %q#D");
2864 /* If at least one declaration is a reference, there is no
2865 conflict. For example:
2867 int i = 3;
2868 extern int i;
2870 is valid. */
2871 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2872 return NULL;
2873 /* Reject two definitions. */
2874 return G_("redefinition of %q#D");
2876 else
2878 /* Objects declared with block scope: */
2879 /* Reject two definitions, and reject a definition
2880 together with an external reference. */
2881 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2882 return G_("redeclaration of %q#D");
2883 return NULL;
2887 /* Hash and equality functions for the named_label table. */
2889 hashval_t
2890 named_label_hasher::hash (named_label_entry *ent)
2892 return DECL_UID (ent->label_decl);
2895 bool
2896 named_label_hasher::equal (named_label_entry *a, named_label_entry *b)
2898 return a->label_decl == b->label_decl;
2901 /* Create a new label, named ID. */
2903 static tree
2904 make_label_decl (tree id, int local_p)
2906 struct named_label_entry *ent;
2907 tree decl;
2909 decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
2911 DECL_CONTEXT (decl) = current_function_decl;
2912 DECL_MODE (decl) = VOIDmode;
2913 C_DECLARED_LABEL_FLAG (decl) = local_p;
2915 /* Say where one reference is to the label, for the sake of the
2916 error if it is not defined. */
2917 DECL_SOURCE_LOCATION (decl) = input_location;
2919 /* Record the fact that this identifier is bound to this label. */
2920 SET_IDENTIFIER_LABEL_VALUE (id, decl);
2922 /* Create the label htab for the function on demand. */
2923 if (!named_labels)
2924 named_labels = hash_table<named_label_hasher>::create_ggc (13);
2926 /* Record this label on the list of labels used in this function.
2927 We do this before calling make_label_decl so that we get the
2928 IDENTIFIER_LABEL_VALUE before the new label is declared. */
2929 ent = ggc_cleared_alloc<named_label_entry> ();
2930 ent->label_decl = decl;
2932 named_label_entry **slot = named_labels->find_slot (ent, INSERT);
2933 gcc_assert (*slot == NULL);
2934 *slot = ent;
2936 return decl;
2939 /* Look for a label named ID in the current function. If one cannot
2940 be found, create one. (We keep track of used, but undefined,
2941 labels, and complain about them at the end of a function.) */
2943 static tree
2944 lookup_label_1 (tree id)
2946 tree decl;
2948 /* You can't use labels at global scope. */
2949 if (current_function_decl == NULL_TREE)
2951 error ("label %qE referenced outside of any function", id);
2952 return NULL_TREE;
2955 /* See if we've already got this label. */
2956 decl = IDENTIFIER_LABEL_VALUE (id);
2957 if (decl != NULL_TREE && DECL_CONTEXT (decl) == current_function_decl)
2958 return decl;
2960 decl = make_label_decl (id, /*local_p=*/0);
2961 return decl;
2964 /* Wrapper for lookup_label_1. */
2966 tree
2967 lookup_label (tree id)
2969 tree ret;
2970 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
2971 ret = lookup_label_1 (id);
2972 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
2973 return ret;
2976 /* Declare a local label named ID. */
2978 tree
2979 declare_local_label (tree id)
2981 tree decl;
2982 cp_label_binding bind;
2984 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
2985 this scope we can restore the old value of IDENTIFIER_TYPE_VALUE. */
2986 bind.prev_value = IDENTIFIER_LABEL_VALUE (id);
2988 decl = make_label_decl (id, /*local_p=*/1);
2989 bind.label = decl;
2990 vec_safe_push (current_binding_level->shadowed_labels, bind);
2992 return decl;
2995 /* Returns nonzero if it is ill-formed to jump past the declaration of
2996 DECL. Returns 2 if it's also a real problem. */
2998 static int
2999 decl_jump_unsafe (tree decl)
3001 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
3002 with automatic storage duration is not in scope to a point where it is
3003 in scope is ill-formed unless the variable has scalar type, class type
3004 with a trivial default constructor and a trivial destructor, a
3005 cv-qualified version of one of these types, or an array of one of the
3006 preceding types and is declared without an initializer (8.5). */
3007 tree type = TREE_TYPE (decl);
3009 if (!VAR_P (decl) || TREE_STATIC (decl)
3010 || type == error_mark_node)
3011 return 0;
3013 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
3014 || variably_modified_type_p (type, NULL_TREE))
3015 return 2;
3017 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3018 return 1;
3020 return 0;
3023 /* A subroutine of check_previous_goto_1 and check_goto to identify a branch
3024 to the user. */
3026 static bool
3027 identify_goto (tree decl, location_t loc, const location_t *locus,
3028 diagnostic_t diag_kind)
3030 bool complained
3031 = (decl ? emit_diagnostic (diag_kind, loc, 0, "jump to label %qD", decl)
3032 : emit_diagnostic (diag_kind, loc, 0, "jump to case label"));
3033 if (complained && locus)
3034 inform (*locus, " from here");
3035 return complained;
3038 /* Check that a single previously seen jump to a newly defined label
3039 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
3040 the jump context; NAMES are the names in scope in LEVEL at the jump
3041 context; LOCUS is the source position of the jump or 0. Returns
3042 true if all is well. */
3044 static bool
3045 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
3046 bool exited_omp, const location_t *locus)
3048 cp_binding_level *b;
3049 bool complained = false;
3050 int identified = 0;
3051 bool saw_eh = false, saw_omp = false, saw_tm = false;
3053 if (exited_omp)
3055 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3056 if (complained)
3057 inform (input_location, " exits OpenMP structured block");
3058 saw_omp = true;
3059 identified = 2;
3062 for (b = current_binding_level; b ; b = b->level_chain)
3064 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
3066 for (new_decls = b->names; new_decls != old_decls;
3067 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
3068 : TREE_CHAIN (new_decls)))
3070 int problem = decl_jump_unsafe (new_decls);
3071 if (! problem)
3072 continue;
3074 if (!identified)
3076 complained = identify_goto (decl, input_location, locus,
3077 DK_PERMERROR);
3078 identified = 1;
3080 if (complained)
3082 if (problem > 1)
3083 inform (DECL_SOURCE_LOCATION (new_decls),
3084 " crosses initialization of %q#D", new_decls);
3085 else
3086 inform (DECL_SOURCE_LOCATION (new_decls),
3087 " enters scope of %q#D which has "
3088 "non-trivial destructor", new_decls);
3092 if (b == level)
3093 break;
3094 if ((b->kind == sk_try || b->kind == sk_catch) && !saw_eh)
3096 if (identified < 2)
3098 complained = identify_goto (decl, input_location, locus,
3099 DK_ERROR);
3100 identified = 2;
3102 if (complained)
3104 if (b->kind == sk_try)
3105 inform (input_location, " enters try block");
3106 else
3107 inform (input_location, " enters catch block");
3109 saw_eh = true;
3111 if (b->kind == sk_omp && !saw_omp)
3113 if (identified < 2)
3115 complained = identify_goto (decl, input_location, locus,
3116 DK_ERROR);
3117 identified = 2;
3119 if (complained)
3120 inform (input_location, " enters OpenMP structured block");
3121 saw_omp = true;
3123 if (b->kind == sk_transaction && !saw_tm)
3125 if (identified < 2)
3127 complained = identify_goto (decl, input_location, locus,
3128 DK_ERROR);
3129 identified = 2;
3131 if (complained)
3132 inform (input_location,
3133 " enters synchronized or atomic statement");
3134 saw_tm = true;
3138 return !identified;
3141 static void
3142 check_previous_goto (tree decl, struct named_label_use_entry *use)
3144 check_previous_goto_1 (decl, use->binding_level,
3145 use->names_in_scope, use->in_omp_scope,
3146 &use->o_goto_locus);
3149 static bool
3150 check_switch_goto (cp_binding_level* level)
3152 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
3155 /* Check that a new jump to a label DECL is OK. Called by
3156 finish_goto_stmt. */
3158 void
3159 check_goto (tree decl)
3161 struct named_label_entry *ent, dummy;
3162 bool saw_catch = false, complained = false;
3163 int identified = 0;
3164 tree bad;
3165 unsigned ix;
3167 /* We can't know where a computed goto is jumping.
3168 So we assume that it's OK. */
3169 if (TREE_CODE (decl) != LABEL_DECL)
3170 return;
3172 /* We didn't record any information about this label when we created it,
3173 and there's not much point since it's trivial to analyze as a return. */
3174 if (decl == cdtor_label)
3175 return;
3177 dummy.label_decl = decl;
3178 ent = named_labels->find (&dummy);
3179 gcc_assert (ent != NULL);
3181 /* If the label hasn't been defined yet, defer checking. */
3182 if (! DECL_INITIAL (decl))
3184 struct named_label_use_entry *new_use;
3186 /* Don't bother creating another use if the last goto had the
3187 same data, and will therefore create the same set of errors. */
3188 if (ent->uses
3189 && ent->uses->names_in_scope == current_binding_level->names)
3190 return;
3192 new_use = ggc_alloc<named_label_use_entry> ();
3193 new_use->binding_level = current_binding_level;
3194 new_use->names_in_scope = current_binding_level->names;
3195 new_use->o_goto_locus = input_location;
3196 new_use->in_omp_scope = false;
3198 new_use->next = ent->uses;
3199 ent->uses = new_use;
3200 return;
3203 if (ent->in_try_scope || ent->in_catch_scope || ent->in_transaction_scope
3204 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3206 diagnostic_t diag_kind = DK_PERMERROR;
3207 if (ent->in_try_scope || ent->in_catch_scope
3208 || ent->in_transaction_scope || ent->in_omp_scope)
3209 diag_kind = DK_ERROR;
3210 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3211 &input_location, diag_kind);
3212 identified = 1 + (diag_kind == DK_ERROR);
3215 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3217 int u = decl_jump_unsafe (bad);
3219 if (u > 1 && DECL_ARTIFICIAL (bad))
3221 /* Can't skip init of __exception_info. */
3222 if (identified == 1)
3224 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3225 &input_location, DK_ERROR);
3226 identified = 2;
3228 if (complained)
3229 inform (DECL_SOURCE_LOCATION (bad), " enters catch block");
3230 saw_catch = true;
3232 else if (complained)
3234 if (u > 1)
3235 inform (DECL_SOURCE_LOCATION (bad),
3236 " skips initialization of %q#D", bad);
3237 else
3238 inform (DECL_SOURCE_LOCATION (bad),
3239 " enters scope of %q#D which has "
3240 "non-trivial destructor", bad);
3244 if (complained)
3246 if (ent->in_try_scope)
3247 inform (input_location, " enters try block");
3248 else if (ent->in_catch_scope && !saw_catch)
3249 inform (input_location, " enters catch block");
3250 else if (ent->in_transaction_scope)
3251 inform (input_location, " enters synchronized or atomic statement");
3254 if (ent->in_omp_scope)
3256 if (complained)
3257 inform (input_location, " enters OpenMP structured block");
3259 else if (flag_openmp)
3261 cp_binding_level *b;
3262 for (b = current_binding_level; b ; b = b->level_chain)
3264 if (b == ent->binding_level)
3265 break;
3266 if (b->kind == sk_omp)
3268 if (identified < 2)
3270 complained = identify_goto (decl,
3271 DECL_SOURCE_LOCATION (decl),
3272 &input_location, DK_ERROR);
3273 identified = 2;
3275 if (complained)
3276 inform (input_location, " exits OpenMP structured block");
3277 break;
3283 /* Check that a return is ok wrt OpenMP structured blocks.
3284 Called by finish_return_stmt. Returns true if all is well. */
3286 bool
3287 check_omp_return (void)
3289 cp_binding_level *b;
3290 for (b = current_binding_level; b ; b = b->level_chain)
3291 if (b->kind == sk_omp)
3293 error ("invalid exit from OpenMP structured block");
3294 return false;
3296 else if (b->kind == sk_function_parms)
3297 break;
3298 return true;
3301 /* Define a label, specifying the location in the source file.
3302 Return the LABEL_DECL node for the label. */
3304 static tree
3305 define_label_1 (location_t location, tree name)
3307 struct named_label_entry *ent, dummy;
3308 cp_binding_level *p;
3309 tree decl;
3311 decl = lookup_label (name);
3313 dummy.label_decl = decl;
3314 ent = named_labels->find (&dummy);
3315 gcc_assert (ent != NULL);
3317 /* After labels, make any new cleanups in the function go into their
3318 own new (temporary) binding contour. */
3319 for (p = current_binding_level;
3320 p->kind != sk_function_parms;
3321 p = p->level_chain)
3322 p->more_cleanups_ok = 0;
3324 if (name == get_identifier ("wchar_t"))
3325 permerror (input_location, "label named wchar_t");
3327 if (DECL_INITIAL (decl) != NULL_TREE)
3329 error ("duplicate label %qD", decl);
3330 return error_mark_node;
3332 else
3334 struct named_label_use_entry *use;
3336 /* Mark label as having been defined. */
3337 DECL_INITIAL (decl) = error_mark_node;
3338 /* Say where in the source. */
3339 DECL_SOURCE_LOCATION (decl) = location;
3341 ent->binding_level = current_binding_level;
3342 ent->names_in_scope = current_binding_level->names;
3344 for (use = ent->uses; use ; use = use->next)
3345 check_previous_goto (decl, use);
3346 ent->uses = NULL;
3349 return decl;
3352 /* Wrapper for define_label_1. */
3354 tree
3355 define_label (location_t location, tree name)
3357 tree ret;
3358 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3359 ret = define_label_1 (location, name);
3360 timevar_cond_stop (TV_NAME_LOOKUP, running);
3361 return ret;
3365 struct cp_switch
3367 cp_binding_level *level;
3368 struct cp_switch *next;
3369 /* The SWITCH_STMT being built. */
3370 tree switch_stmt;
3371 /* A splay-tree mapping the low element of a case range to the high
3372 element, or NULL_TREE if there is no high element. Used to
3373 determine whether or not a new case label duplicates an old case
3374 label. We need a tree, rather than simply a hash table, because
3375 of the GNU case range extension. */
3376 splay_tree cases;
3377 /* Remember whether there was a case value that is outside the
3378 range of the original type of the controlling expression. */
3379 bool outside_range_p;
3382 /* A stack of the currently active switch statements. The innermost
3383 switch statement is on the top of the stack. There is no need to
3384 mark the stack for garbage collection because it is only active
3385 during the processing of the body of a function, and we never
3386 collect at that point. */
3388 static struct cp_switch *switch_stack;
3390 /* Called right after a switch-statement condition is parsed.
3391 SWITCH_STMT is the switch statement being parsed. */
3393 void
3394 push_switch (tree switch_stmt)
3396 struct cp_switch *p = XNEW (struct cp_switch);
3397 p->level = current_binding_level;
3398 p->next = switch_stack;
3399 p->switch_stmt = switch_stmt;
3400 p->cases = splay_tree_new (case_compare, NULL, NULL);
3401 p->outside_range_p = false;
3402 switch_stack = p;
3405 void
3406 pop_switch (void)
3408 struct cp_switch *cs = switch_stack;
3409 location_t switch_location;
3411 /* Emit warnings as needed. */
3412 switch_location = EXPR_LOC_OR_LOC (cs->switch_stmt, input_location);
3413 const bool bool_cond_p
3414 = (SWITCH_STMT_TYPE (cs->switch_stmt)
3415 && TREE_CODE (SWITCH_STMT_TYPE (cs->switch_stmt)) == BOOLEAN_TYPE);
3416 if (!processing_template_decl)
3417 c_do_switch_warnings (cs->cases, switch_location,
3418 SWITCH_STMT_TYPE (cs->switch_stmt),
3419 SWITCH_STMT_COND (cs->switch_stmt),
3420 bool_cond_p, cs->outside_range_p);
3422 splay_tree_delete (cs->cases);
3423 switch_stack = switch_stack->next;
3424 free (cs);
3427 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3428 condition. Note that if TYPE and VALUE are already integral we don't
3429 really do the conversion because the language-independent
3430 warning/optimization code will work better that way. */
3432 static tree
3433 case_conversion (tree type, tree value)
3435 if (value == NULL_TREE)
3436 return value;
3438 if (cxx_dialect >= cxx11
3439 && (SCOPED_ENUM_P (type)
3440 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))))
3442 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3443 type = type_promotes_to (type);
3444 value = (perform_implicit_conversion_flags
3445 (type, value, tf_warning_or_error,
3446 LOOKUP_IMPLICIT | LOOKUP_NO_NON_INTEGRAL));
3448 return cxx_constant_value (value);
3451 /* Note that we've seen a definition of a case label, and complain if this
3452 is a bad place for one. */
3454 tree
3455 finish_case_label (location_t loc, tree low_value, tree high_value)
3457 tree cond, r;
3458 cp_binding_level *p;
3459 tree type;
3461 if (processing_template_decl)
3463 tree label;
3465 /* For templates, just add the case label; we'll do semantic
3466 analysis at instantiation-time. */
3467 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
3468 return add_stmt (build_case_label (low_value, high_value, label));
3471 /* Find the condition on which this switch statement depends. */
3472 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3473 if (cond && TREE_CODE (cond) == TREE_LIST)
3474 cond = TREE_VALUE (cond);
3476 if (!check_switch_goto (switch_stack->level))
3477 return error_mark_node;
3479 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3481 low_value = case_conversion (type, low_value);
3482 high_value = case_conversion (type, high_value);
3484 r = c_add_case_label (loc, switch_stack->cases, cond, type,
3485 low_value, high_value,
3486 &switch_stack->outside_range_p);
3488 /* After labels, make any new cleanups in the function go into their
3489 own new (temporary) binding contour. */
3490 for (p = current_binding_level;
3491 p->kind != sk_function_parms;
3492 p = p->level_chain)
3493 p->more_cleanups_ok = 0;
3495 return r;
3498 struct typename_info {
3499 tree scope;
3500 tree name;
3501 tree template_id;
3502 bool enum_p;
3503 bool class_p;
3506 struct typename_hasher : ggc_ptr_hash<tree_node>
3508 typedef typename_info *compare_type;
3510 /* Hash a TYPENAME_TYPE. */
3512 static hashval_t
3513 hash (tree t)
3515 hashval_t hash;
3517 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3518 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3520 return hash;
3523 /* Compare two TYPENAME_TYPEs. */
3525 static bool
3526 equal (tree t1, const typename_info *t2)
3528 return (TYPE_IDENTIFIER (t1) == t2->name
3529 && TYPE_CONTEXT (t1) == t2->scope
3530 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3531 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3532 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3536 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3537 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3539 Returns the new TYPENAME_TYPE. */
3541 static GTY (()) hash_table<typename_hasher> *typename_htab;
3543 static tree
3544 build_typename_type (tree context, tree name, tree fullname,
3545 enum tag_types tag_type)
3547 tree t;
3548 tree d;
3549 typename_info ti;
3550 tree *e;
3551 hashval_t hash;
3553 if (typename_htab == NULL)
3554 typename_htab = hash_table<typename_hasher>::create_ggc (61);
3556 ti.scope = FROB_CONTEXT (context);
3557 ti.name = name;
3558 ti.template_id = fullname;
3559 ti.enum_p = tag_type == enum_type;
3560 ti.class_p = (tag_type == class_type
3561 || tag_type == record_type
3562 || tag_type == union_type);
3563 hash = (htab_hash_pointer (ti.scope)
3564 ^ htab_hash_pointer (ti.name));
3566 /* See if we already have this type. */
3567 e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
3568 if (*e)
3569 t = *e;
3570 else
3572 /* Build the TYPENAME_TYPE. */
3573 t = cxx_make_type (TYPENAME_TYPE);
3574 TYPE_CONTEXT (t) = ti.scope;
3575 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3576 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3577 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3579 /* Build the corresponding TYPE_DECL. */
3580 d = build_decl (input_location, TYPE_DECL, name, t);
3581 TYPE_NAME (TREE_TYPE (d)) = d;
3582 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3583 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3584 DECL_ARTIFICIAL (d) = 1;
3586 /* Store it in the hash table. */
3587 *e = t;
3589 /* TYPENAME_TYPEs must always be compared structurally, because
3590 they may or may not resolve down to another type depending on
3591 the currently open classes. */
3592 SET_TYPE_STRUCTURAL_EQUALITY (t);
3595 return t;
3598 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3599 provided to name the type. Returns an appropriate type, unless an
3600 error occurs, in which case error_mark_node is returned. If we
3601 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3602 return that, rather than the _TYPE it corresponds to, in other
3603 cases we look through the type decl. If TF_ERROR is set, complain
3604 about errors, otherwise be quiet. */
3606 tree
3607 make_typename_type (tree context, tree name, enum tag_types tag_type,
3608 tsubst_flags_t complain)
3610 tree fullname;
3611 tree t;
3612 bool want_template;
3614 if (name == error_mark_node
3615 || context == NULL_TREE
3616 || context == error_mark_node)
3617 return error_mark_node;
3619 if (TYPE_P (name))
3621 if (!(TYPE_LANG_SPECIFIC (name)
3622 && (CLASSTYPE_IS_TEMPLATE (name)
3623 || CLASSTYPE_USE_TEMPLATE (name))))
3624 name = TYPE_IDENTIFIER (name);
3625 else
3626 /* Create a TEMPLATE_ID_EXPR for the type. */
3627 name = build_nt (TEMPLATE_ID_EXPR,
3628 CLASSTYPE_TI_TEMPLATE (name),
3629 CLASSTYPE_TI_ARGS (name));
3631 else if (TREE_CODE (name) == TYPE_DECL)
3632 name = DECL_NAME (name);
3634 fullname = name;
3636 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3638 name = TREE_OPERAND (name, 0);
3639 if (DECL_TYPE_TEMPLATE_P (name))
3640 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3641 if (TREE_CODE (name) != IDENTIFIER_NODE)
3643 if (complain & tf_error)
3644 error ("%qD is not a type", name);
3645 return error_mark_node;
3648 if (TREE_CODE (name) == TEMPLATE_DECL)
3650 if (complain & tf_error)
3651 error ("%qD used without template parameters", name);
3652 return error_mark_node;
3654 gcc_assert (identifier_p (name));
3655 gcc_assert (TYPE_P (context));
3657 if (!MAYBE_CLASS_TYPE_P (context))
3659 if (complain & tf_error)
3660 error ("%q#T is not a class", context);
3661 return error_mark_node;
3664 /* When the CONTEXT is a dependent type, NAME could refer to a
3665 dependent base class of CONTEXT. But look inside it anyway
3666 if CONTEXT is a currently open scope, in case it refers to a
3667 member of the current instantiation or a non-dependent base;
3668 lookup will stop when we hit a dependent base. */
3669 if (!dependent_scope_p (context))
3670 /* We should only set WANT_TYPE when we're a nested typename type.
3671 Then we can give better diagnostics if we find a non-type. */
3672 t = lookup_field (context, name, 2, /*want_type=*/true);
3673 else
3674 t = NULL_TREE;
3676 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3677 return build_typename_type (context, name, fullname, tag_type);
3679 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3681 if (!t)
3683 if (complain & tf_error)
3684 error (want_template ? G_("no class template named %q#T in %q#T")
3685 : G_("no type named %q#T in %q#T"), name, context);
3686 return error_mark_node;
3689 /* Pull out the template from an injected-class-name (or multiple). */
3690 if (want_template)
3691 t = maybe_get_template_decl_from_type_decl (t);
3693 if (TREE_CODE (t) == TREE_LIST)
3695 if (complain & tf_error)
3697 error ("lookup of %qT in %qT is ambiguous", name, context);
3698 print_candidates (t);
3700 return error_mark_node;
3703 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3705 if (complain & tf_error)
3706 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3707 context, name, t);
3708 return error_mark_node;
3710 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3712 if (complain & tf_error)
3713 error ("%<typename %T::%D%> names %q#T, which is not a type",
3714 context, name, t);
3715 return error_mark_node;
3718 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3719 return error_mark_node;
3721 /* If we are currently parsing a template and if T is a typedef accessed
3722 through CONTEXT then we need to remember and check access of T at
3723 template instantiation time. */
3724 add_typedef_to_current_template_for_access_check (t, context, input_location);
3726 if (want_template)
3727 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3728 NULL_TREE, context,
3729 /*entering_scope=*/0,
3730 complain | tf_user);
3732 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3733 t = TREE_TYPE (t);
3735 maybe_record_typedef_use (t);
3737 return t;
3740 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3741 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3742 in which case error_mark_node is returned.
3744 If PARM_LIST is non-NULL, also make sure that the template parameter
3745 list of TEMPLATE_DECL matches.
3747 If COMPLAIN zero, don't complain about any errors that occur. */
3749 tree
3750 make_unbound_class_template (tree context, tree name, tree parm_list,
3751 tsubst_flags_t complain)
3753 tree t;
3754 tree d;
3756 if (TYPE_P (name))
3757 name = TYPE_IDENTIFIER (name);
3758 else if (DECL_P (name))
3759 name = DECL_NAME (name);
3760 gcc_assert (identifier_p (name));
3762 if (!dependent_type_p (context)
3763 || currently_open_class (context))
3765 tree tmpl = NULL_TREE;
3767 if (MAYBE_CLASS_TYPE_P (context))
3768 tmpl = lookup_field (context, name, 0, false);
3770 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3771 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3773 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3775 if (complain & tf_error)
3776 error ("no class template named %q#T in %q#T", name, context);
3777 return error_mark_node;
3780 if (parm_list
3781 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3783 if (complain & tf_error)
3785 error ("template parameters do not match template %qD", tmpl);
3786 inform (DECL_SOURCE_LOCATION (tmpl),
3787 "%qD declared here", tmpl);
3789 return error_mark_node;
3792 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
3793 complain))
3794 return error_mark_node;
3796 return tmpl;
3799 /* Build the UNBOUND_CLASS_TEMPLATE. */
3800 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3801 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3802 TREE_TYPE (t) = NULL_TREE;
3803 SET_TYPE_STRUCTURAL_EQUALITY (t);
3805 /* Build the corresponding TEMPLATE_DECL. */
3806 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3807 TYPE_NAME (TREE_TYPE (d)) = d;
3808 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3809 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3810 DECL_ARTIFICIAL (d) = 1;
3811 DECL_TEMPLATE_PARMS (d) = parm_list;
3813 return t;
3818 /* Push the declarations of builtin types into the namespace.
3819 RID_INDEX is the index of the builtin type in the array
3820 RID_POINTERS. NAME is the name used when looking up the builtin
3821 type. TYPE is the _TYPE node for the builtin type. */
3823 void
3824 record_builtin_type (enum rid rid_index,
3825 const char* name,
3826 tree type)
3828 tree rname = NULL_TREE, tname = NULL_TREE;
3829 tree tdecl = NULL_TREE;
3831 if ((int) rid_index < (int) RID_MAX)
3832 rname = ridpointers[(int) rid_index];
3833 if (name)
3834 tname = get_identifier (name);
3836 /* The calls to SET_IDENTIFIER_GLOBAL_VALUE below should be
3837 eliminated. Built-in types should not be looked up name; their
3838 names are keywords that the parser can recognize. However, there
3839 is code in c-common.c that uses identifier_global_value to look
3840 up built-in types by name. */
3841 if (tname)
3843 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
3844 DECL_ARTIFICIAL (tdecl) = 1;
3845 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
3847 if (rname)
3849 if (!tdecl)
3851 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
3852 DECL_ARTIFICIAL (tdecl) = 1;
3854 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
3857 if (!TYPE_NAME (type))
3858 TYPE_NAME (type) = tdecl;
3860 if (tdecl)
3861 debug_hooks->type_decl (tdecl, 0);
3864 /* Record one of the standard Java types.
3865 * Declare it as having the given NAME.
3866 * If SIZE > 0, it is the size of one of the integral types;
3867 * otherwise it is the negative of the size of one of the other types. */
3869 static tree
3870 record_builtin_java_type (const char* name, int size)
3872 tree type, decl;
3873 if (size > 0)
3875 type = build_nonstandard_integer_type (size, 0);
3876 type = build_distinct_type_copy (type);
3878 else if (size > -32)
3880 tree stype;
3881 /* "__java_char" or ""__java_boolean". */
3882 type = build_nonstandard_integer_type (-size, 1);
3883 type = build_distinct_type_copy (type);
3884 /* Get the signed type cached and attached to the unsigned type,
3885 so it doesn't get garbage-collected at "random" times,
3886 causing potential codegen differences out of different UIDs
3887 and different alias set numbers. */
3888 stype = build_nonstandard_integer_type (-size, 0);
3889 stype = build_distinct_type_copy (stype);
3890 TREE_CHAIN (type) = stype;
3891 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
3893 else
3894 { /* "__java_float" or ""__java_double". */
3895 type = make_node (REAL_TYPE);
3896 TYPE_PRECISION (type) = - size;
3897 layout_type (type);
3899 record_builtin_type (RID_MAX, name, type);
3900 decl = TYPE_NAME (type);
3902 /* Suppress generate debug symbol entries for these types,
3903 since for normal C++ they are just clutter.
3904 However, push_lang_context undoes this if extern "Java" is seen. */
3905 DECL_IGNORED_P (decl) = 1;
3907 TYPE_FOR_JAVA (type) = 1;
3908 return type;
3911 /* Push a type into the namespace so that the back ends ignore it. */
3913 static void
3914 record_unknown_type (tree type, const char* name)
3916 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
3917 TYPE_DECL, get_identifier (name), type));
3918 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3919 DECL_IGNORED_P (decl) = 1;
3920 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
3921 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
3922 SET_TYPE_ALIGN (type, 1);
3923 TYPE_USER_ALIGN (type) = 0;
3924 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
3927 /* A string for which we should create an IDENTIFIER_NODE at
3928 startup. */
3930 struct predefined_identifier
3932 /* The name of the identifier. */
3933 const char *const name;
3934 /* The place where the IDENTIFIER_NODE should be stored. */
3935 tree *const node;
3936 /* Nonzero if this is the name of a constructor or destructor. */
3937 const int ctor_or_dtor_p;
3940 /* Create all the predefined identifiers. */
3942 static void
3943 initialize_predefined_identifiers (void)
3945 const predefined_identifier *pid;
3947 /* A table of identifiers to create at startup. */
3948 static const predefined_identifier predefined_identifiers[] = {
3949 { "C++", &lang_name_cplusplus, 0 },
3950 { "C", &lang_name_c, 0 },
3951 { "Java", &lang_name_java, 0 },
3952 /* Some of these names have a trailing space so that it is
3953 impossible for them to conflict with names written by users. */
3954 { "__ct ", &ctor_identifier, 1 },
3955 { "__base_ctor ", &base_ctor_identifier, 1 },
3956 { "__comp_ctor ", &complete_ctor_identifier, 1 },
3957 { "__dt ", &dtor_identifier, 1 },
3958 { "__comp_dtor ", &complete_dtor_identifier, 1 },
3959 { "__base_dtor ", &base_dtor_identifier, 1 },
3960 { "__deleting_dtor ", &deleting_dtor_identifier, 1 },
3961 { IN_CHARGE_NAME, &in_charge_identifier, 0 },
3962 { "nelts", &nelts_identifier, 0 },
3963 { THIS_NAME, &this_identifier, 0 },
3964 { VTABLE_DELTA_NAME, &delta_identifier, 0 },
3965 { VTABLE_PFN_NAME, &pfn_identifier, 0 },
3966 { "_vptr", &vptr_identifier, 0 },
3967 { "__vtt_parm", &vtt_parm_identifier, 0 },
3968 { "::", &global_scope_name, 0 },
3969 { "std", &std_identifier, 0 },
3970 { NULL, NULL, 0 }
3973 for (pid = predefined_identifiers; pid->name; ++pid)
3975 *pid->node = get_identifier (pid->name);
3976 if (pid->ctor_or_dtor_p)
3977 IDENTIFIER_CTOR_OR_DTOR_P (*pid->node) = 1;
3981 /* Create the predefined scalar types of C,
3982 and some nodes representing standard constants (0, 1, (void *)0).
3983 Initialize the global binding level.
3984 Make definitions for built-in primitive functions. */
3986 void
3987 cxx_init_decl_processing (void)
3989 tree void_ftype;
3990 tree void_ftype_ptr;
3992 /* Create all the identifiers we need. */
3993 initialize_predefined_identifiers ();
3995 /* Create the global variables. */
3996 push_to_top_level ();
3998 current_function_decl = NULL_TREE;
3999 current_binding_level = NULL;
4000 /* Enter the global namespace. */
4001 gcc_assert (global_namespace == NULL_TREE);
4002 global_namespace = build_lang_decl (NAMESPACE_DECL, global_scope_name,
4003 void_type_node);
4004 DECL_CONTEXT (global_namespace) = build_translation_unit_decl (NULL_TREE);
4005 debug_hooks->register_main_translation_unit
4006 (DECL_CONTEXT (global_namespace));
4007 TREE_PUBLIC (global_namespace) = 1;
4008 begin_scope (sk_namespace, global_namespace);
4010 if (flag_visibility_ms_compat)
4011 default_visibility = VISIBILITY_HIDDEN;
4013 /* Initially, C. */
4014 current_lang_name = lang_name_c;
4016 /* Create the `std' namespace. */
4017 push_namespace (std_identifier);
4018 std_node = current_namespace;
4019 pop_namespace ();
4021 c_common_nodes_and_builtins ();
4023 java_byte_type_node = record_builtin_java_type ("__java_byte", 8);
4024 java_short_type_node = record_builtin_java_type ("__java_short", 16);
4025 java_int_type_node = record_builtin_java_type ("__java_int", 32);
4026 java_long_type_node = record_builtin_java_type ("__java_long", 64);
4027 java_float_type_node = record_builtin_java_type ("__java_float", -32);
4028 java_double_type_node = record_builtin_java_type ("__java_double", -64);
4029 java_char_type_node = record_builtin_java_type ("__java_char", -16);
4030 java_boolean_type_node = record_builtin_java_type ("__java_boolean", -1);
4032 integer_two_node = build_int_cst (NULL_TREE, 2);
4034 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
4035 truthvalue_type_node = boolean_type_node;
4036 truthvalue_false_node = boolean_false_node;
4037 truthvalue_true_node = boolean_true_node;
4039 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
4040 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
4041 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
4043 #if 0
4044 record_builtin_type (RID_MAX, NULL, string_type_node);
4045 #endif
4047 delta_type_node = ptrdiff_type_node;
4048 vtable_index_type = ptrdiff_type_node;
4050 vtt_parm_type = build_pointer_type (const_ptr_type_node);
4051 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
4052 void_ftype_ptr = build_function_type_list (void_type_node,
4053 ptr_type_node, NULL_TREE);
4054 void_ftype_ptr
4055 = build_exception_variant (void_ftype_ptr, empty_except_spec);
4057 /* C++ extensions */
4059 unknown_type_node = make_node (LANG_TYPE);
4060 record_unknown_type (unknown_type_node, "unknown type");
4062 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
4063 TREE_TYPE (unknown_type_node) = unknown_type_node;
4065 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
4066 result. */
4067 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
4068 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
4070 init_list_type_node = make_node (LANG_TYPE);
4071 record_unknown_type (init_list_type_node, "init list");
4074 /* Make sure we get a unique function type, so we can give
4075 its pointer type a name. (This wins for gdb.) */
4076 tree vfunc_type = make_node (FUNCTION_TYPE);
4077 TREE_TYPE (vfunc_type) = integer_type_node;
4078 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
4079 layout_type (vfunc_type);
4081 vtable_entry_type = build_pointer_type (vfunc_type);
4083 record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
4085 vtbl_type_node
4086 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
4087 layout_type (vtbl_type_node);
4088 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
4089 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
4090 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
4091 layout_type (vtbl_ptr_type_node);
4092 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
4094 push_namespace (get_identifier ("__cxxabiv1"));
4095 abi_node = current_namespace;
4096 pop_namespace ();
4098 global_type_node = make_node (LANG_TYPE);
4099 record_unknown_type (global_type_node, "global type");
4101 /* Now, C++. */
4102 current_lang_name = lang_name_cplusplus;
4105 tree newattrs, extvisattr;
4106 tree newtype, deltype;
4107 tree ptr_ftype_sizetype;
4108 tree new_eh_spec;
4110 ptr_ftype_sizetype
4111 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
4112 if (cxx_dialect == cxx98)
4114 tree bad_alloc_id;
4115 tree bad_alloc_type_node;
4116 tree bad_alloc_decl;
4118 push_namespace (std_identifier);
4119 bad_alloc_id = get_identifier ("bad_alloc");
4120 bad_alloc_type_node = make_class_type (RECORD_TYPE);
4121 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
4122 bad_alloc_decl
4123 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
4124 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
4125 pop_namespace ();
4127 new_eh_spec
4128 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
4130 else
4131 new_eh_spec = noexcept_false_spec;
4133 /* Ensure attribs.c is initialized. */
4134 init_attributes ();
4136 /* Ensure constraint.cc is initialized. */
4137 init_constraint_processing ();
4139 extvisattr = build_tree_list (get_identifier ("externally_visible"),
4140 NULL_TREE);
4141 newattrs = tree_cons (get_identifier ("alloc_size"),
4142 build_tree_list (NULL_TREE, integer_one_node),
4143 extvisattr);
4144 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
4145 newtype = build_exception_variant (newtype, new_eh_spec);
4146 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
4147 deltype = build_exception_variant (deltype, empty_except_spec);
4148 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4149 DECL_IS_MALLOC (opnew) = 1;
4150 DECL_IS_OPERATOR_NEW (opnew) = 1;
4151 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4152 DECL_IS_MALLOC (opnew) = 1;
4153 DECL_IS_OPERATOR_NEW (opnew) = 1;
4154 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4155 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4156 if (flag_sized_deallocation)
4158 /* Also push the sized deallocation variants:
4159 void operator delete(void*, std::size_t) throw();
4160 void operator delete[](void*, std::size_t) throw(); */
4161 tree void_ftype_ptr_size
4162 = build_function_type_list (void_type_node, ptr_type_node,
4163 size_type_node, NULL_TREE);
4164 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
4165 extvisattr);
4166 deltype = build_exception_variant (deltype, empty_except_spec);
4167 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4168 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4171 nullptr_type_node = make_node (NULLPTR_TYPE);
4172 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
4173 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
4174 TYPE_UNSIGNED (nullptr_type_node) = 1;
4175 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
4176 if (abi_version_at_least (9))
4177 SET_TYPE_ALIGN (nullptr_type_node, GET_MODE_ALIGNMENT (ptr_mode));
4178 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
4179 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4180 nullptr_node = build_int_cst (nullptr_type_node, 0);
4183 abort_fndecl
4184 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4185 ECF_NORETURN | ECF_NOTHROW);
4187 /* Perform other language dependent initializations. */
4188 init_class_processing ();
4189 init_rtti_processing ();
4190 init_template_processing ();
4192 if (flag_exceptions)
4193 init_exception_processing ();
4195 if (! supports_one_only ())
4196 flag_weak = 0;
4198 make_fname_decl = cp_make_fname_decl;
4199 start_fname_decls ();
4201 /* Show we use EH for cleanups. */
4202 if (flag_exceptions)
4203 using_eh_for_cleanups ();
4206 /* Generate an initializer for a function naming variable from
4207 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4208 filled in with the type of the init. */
4210 tree
4211 cp_fname_init (const char* name, tree *type_p)
4213 tree domain = NULL_TREE;
4214 tree type;
4215 tree init = NULL_TREE;
4216 size_t length = 0;
4218 if (name)
4220 length = strlen (name);
4221 domain = build_index_type (size_int (length));
4222 init = build_string (length + 1, name);
4225 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4226 type = build_cplus_array_type (type, domain);
4228 *type_p = type;
4230 if (init)
4231 TREE_TYPE (init) = type;
4232 else
4233 init = error_mark_node;
4235 return init;
4238 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4239 the decl, LOC is the location to give the decl, NAME is the
4240 initialization string and TYPE_DEP indicates whether NAME depended
4241 on the type of the function. We make use of that to detect
4242 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4243 at the point of first use, so we mustn't push the decl now. */
4245 static tree
4246 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4248 const char *const name = (type_dep && processing_template_decl
4249 ? NULL : fname_as_string (type_dep));
4250 tree type;
4251 tree init = cp_fname_init (name, &type);
4252 tree decl = build_decl (loc, VAR_DECL, id, type);
4254 if (name)
4255 free (CONST_CAST (char *, name));
4257 /* As we're using pushdecl_with_scope, we must set the context. */
4258 DECL_CONTEXT (decl) = current_function_decl;
4260 TREE_STATIC (decl) = 1;
4261 TREE_READONLY (decl) = 1;
4262 DECL_ARTIFICIAL (decl) = 1;
4264 TREE_USED (decl) = 1;
4266 if (current_function_decl)
4268 cp_binding_level *b = current_binding_level;
4269 if (b->kind == sk_function_parms)
4270 return error_mark_node;
4271 while (b->level_chain->kind != sk_function_parms)
4272 b = b->level_chain;
4273 pushdecl_with_scope (decl, b, /*is_friend=*/false);
4274 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
4275 LOOKUP_ONLYCONVERTING);
4277 else
4279 DECL_THIS_STATIC (decl) = true;
4280 pushdecl_top_level_and_finish (decl, init);
4283 return decl;
4286 static tree
4287 builtin_function_1 (tree decl, tree context, bool is_global)
4289 tree id = DECL_NAME (decl);
4290 const char *name = IDENTIFIER_POINTER (id);
4292 retrofit_lang_decl (decl);
4294 DECL_ARTIFICIAL (decl) = 1;
4295 SET_OVERLOADED_OPERATOR_CODE (decl, ERROR_MARK);
4296 SET_DECL_LANGUAGE (decl, lang_c);
4297 /* Runtime library routines are, by definition, available in an
4298 external shared object. */
4299 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4300 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4302 DECL_CONTEXT (decl) = context;
4304 if (is_global)
4305 pushdecl_top_level (decl);
4306 else
4307 pushdecl (decl);
4309 /* A function in the user's namespace should have an explicit
4310 declaration before it is used. Mark the built-in function as
4311 anticipated but not actually declared. */
4312 if (name[0] != '_' || name[1] != '_')
4313 DECL_ANTICIPATED (decl) = 1;
4314 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
4316 size_t len = strlen (name);
4318 /* Treat __*_chk fortification functions as anticipated as well,
4319 unless they are __builtin_*. */
4320 if (len > strlen ("___chk")
4321 && memcmp (name + len - strlen ("_chk"),
4322 "_chk", strlen ("_chk") + 1) == 0)
4323 DECL_ANTICIPATED (decl) = 1;
4326 return decl;
4329 tree
4330 cxx_builtin_function (tree decl)
4332 tree id = DECL_NAME (decl);
4333 const char *name = IDENTIFIER_POINTER (id);
4334 /* All builtins that don't begin with an '_' should additionally
4335 go in the 'std' namespace. */
4336 if (name[0] != '_')
4338 tree decl2 = copy_node(decl);
4339 push_namespace (std_identifier);
4340 builtin_function_1 (decl2, std_node, false);
4341 pop_namespace ();
4344 return builtin_function_1 (decl, NULL_TREE, false);
4347 /* Like cxx_builtin_function, but guarantee the function is added to the global
4348 scope. This is to allow function specific options to add new machine
4349 dependent builtins when the target ISA changes via attribute((target(...)))
4350 which saves space on program startup if the program does not use non-generic
4351 ISAs. */
4353 tree
4354 cxx_builtin_function_ext_scope (tree decl)
4357 tree id = DECL_NAME (decl);
4358 const char *name = IDENTIFIER_POINTER (id);
4359 /* All builtins that don't begin with an '_' should additionally
4360 go in the 'std' namespace. */
4361 if (name[0] != '_')
4363 tree decl2 = copy_node(decl);
4364 push_namespace (std_identifier);
4365 builtin_function_1 (decl2, std_node, true);
4366 pop_namespace ();
4369 return builtin_function_1 (decl, NULL_TREE, true);
4372 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4373 function. Not called directly. */
4375 static tree
4376 build_library_fn (tree name, enum tree_code operator_code, tree type,
4377 int ecf_flags)
4379 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4380 DECL_EXTERNAL (fn) = 1;
4381 TREE_PUBLIC (fn) = 1;
4382 DECL_ARTIFICIAL (fn) = 1;
4383 SET_OVERLOADED_OPERATOR_CODE (fn, operator_code);
4384 SET_DECL_LANGUAGE (fn, lang_c);
4385 /* Runtime library routines are, by definition, available in an
4386 external shared object. */
4387 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4388 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4389 set_call_expr_flags (fn, ecf_flags);
4390 return fn;
4393 /* Returns the _DECL for a library function with C++ linkage. */
4395 static tree
4396 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4397 int ecf_flags)
4399 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4400 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4401 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4402 return fn;
4405 /* Like build_library_fn, but takes a C string instead of an
4406 IDENTIFIER_NODE. */
4408 tree
4409 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4411 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4414 /* Like build_cp_library_fn, but takes a C string instead of an
4415 IDENTIFIER_NODE. */
4417 tree
4418 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4420 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4421 ecf_flags);
4424 /* Like build_library_fn, but also pushes the function so that we will
4425 be able to find it via IDENTIFIER_GLOBAL_VALUE. Also, the function
4426 may throw exceptions listed in RAISES. */
4428 tree
4429 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4431 tree fn;
4433 if (raises)
4434 type = build_exception_variant (type, raises);
4436 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4437 pushdecl_top_level (fn);
4438 return fn;
4441 /* Like build_cp_library_fn, but also pushes the function so that it
4442 will be found by normal lookup. */
4444 static tree
4445 push_cp_library_fn (enum tree_code operator_code, tree type,
4446 int ecf_flags)
4448 tree fn = build_cp_library_fn (ansi_opname (operator_code),
4449 operator_code,
4450 type, ecf_flags);
4451 pushdecl (fn);
4452 if (flag_tm)
4453 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4454 return fn;
4457 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4458 a FUNCTION_TYPE. */
4460 tree
4461 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4463 tree type = build_function_type (void_type_node, parmtypes);
4464 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4467 /* Like push_library_fn, but also note that this function throws
4468 and does not return. Used for __throw_foo and the like. */
4470 tree
4471 push_throw_library_fn (tree name, tree type)
4473 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN);
4474 return fn;
4477 /* When we call finish_struct for an anonymous union, we create
4478 default copy constructors and such. But, an anonymous union
4479 shouldn't have such things; this function undoes the damage to the
4480 anonymous union type T.
4482 (The reason that we create the synthesized methods is that we don't
4483 distinguish `union { int i; }' from `typedef union { int i; } U'.
4484 The first is an anonymous union; the second is just an ordinary
4485 union type.) */
4487 void
4488 fixup_anonymous_aggr (tree t)
4490 tree *q;
4492 /* Wipe out memory of synthesized methods. */
4493 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4494 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4495 TYPE_HAS_COPY_CTOR (t) = 0;
4496 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4497 TYPE_HAS_COPY_ASSIGN (t) = 0;
4498 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4500 /* Splice the implicitly generated functions out of the TYPE_METHODS
4501 list. */
4502 q = &TYPE_METHODS (t);
4503 while (*q)
4505 if (DECL_ARTIFICIAL (*q))
4506 *q = TREE_CHAIN (*q);
4507 else
4508 q = &DECL_CHAIN (*q);
4511 /* ISO C++ 9.5.3. Anonymous unions may not have function members. */
4512 if (TYPE_METHODS (t))
4514 tree decl = TYPE_MAIN_DECL (t);
4516 if (TREE_CODE (t) != UNION_TYPE)
4517 error_at (DECL_SOURCE_LOCATION (decl),
4518 "an anonymous struct cannot have function members");
4519 else
4520 error_at (DECL_SOURCE_LOCATION (decl),
4521 "an anonymous union cannot have function members");
4524 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4525 assignment operators (because they cannot have these methods themselves).
4526 For anonymous unions this is already checked because they are not allowed
4527 in any union, otherwise we have to check it. */
4528 if (TREE_CODE (t) != UNION_TYPE)
4530 tree field, type;
4532 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4533 if (TREE_CODE (field) == FIELD_DECL)
4535 type = TREE_TYPE (field);
4536 if (CLASS_TYPE_P (type))
4538 if (TYPE_NEEDS_CONSTRUCTING (type))
4539 error ("member %q+#D with constructor not allowed "
4540 "in anonymous aggregate", field);
4541 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4542 error ("member %q+#D with destructor not allowed "
4543 "in anonymous aggregate", field);
4544 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4545 error ("member %q+#D with copy assignment operator "
4546 "not allowed in anonymous aggregate", field);
4552 /* Warn for an attribute located at LOCATION that appertains to the
4553 class type CLASS_TYPE that has not been properly placed after its
4554 class-key, in it class-specifier. */
4556 void
4557 warn_misplaced_attr_for_class_type (source_location location,
4558 tree class_type)
4560 gcc_assert (OVERLOAD_TYPE_P (class_type));
4562 if (warning_at (location, OPT_Wattributes,
4563 "attribute ignored in declaration "
4564 "of %q#T", class_type))
4565 inform (location,
4566 "attribute for %q#T must follow the %qs keyword",
4567 class_type, class_key_or_enum_as_string (class_type));
4570 /* Make sure that a declaration with no declarator is well-formed, i.e.
4571 just declares a tagged type or anonymous union.
4573 Returns the type declared; or NULL_TREE if none. */
4575 tree
4576 check_tag_decl (cp_decl_specifier_seq *declspecs,
4577 bool explicit_type_instantiation_p)
4579 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4580 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4581 /* If a class, struct, or enum type is declared by the DECLSPECS
4582 (i.e, if a class-specifier, enum-specifier, or non-typename
4583 elaborated-type-specifier appears in the DECLSPECS),
4584 DECLARED_TYPE is set to the corresponding type. */
4585 tree declared_type = NULL_TREE;
4586 bool error_p = false;
4588 if (declspecs->multiple_types_p)
4589 error ("multiple types in one declaration");
4590 else if (declspecs->redefined_builtin_type)
4592 if (!in_system_header_at (input_location))
4593 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4594 "redeclaration of C++ built-in type %qT",
4595 declspecs->redefined_builtin_type);
4596 return NULL_TREE;
4599 if (declspecs->type
4600 && TYPE_P (declspecs->type)
4601 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4602 && MAYBE_CLASS_TYPE_P (declspecs->type))
4603 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4604 declared_type = declspecs->type;
4605 else if (declspecs->type == error_mark_node)
4606 error_p = true;
4607 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
4608 permerror (input_location, "declaration does not declare anything");
4609 else if (declared_type != NULL_TREE && type_uses_auto (declared_type))
4611 error_at (declspecs->locations[ds_type_spec],
4612 "%<auto%> can only be specified for variables "
4613 "or function declarations");
4614 return error_mark_node;
4616 /* Check for an anonymous union. */
4617 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4618 && TYPE_ANONYMOUS_P (declared_type))
4620 /* 7/3 In a simple-declaration, the optional init-declarator-list
4621 can be omitted only when declaring a class (clause 9) or
4622 enumeration (7.2), that is, when the decl-specifier-seq contains
4623 either a class-specifier, an elaborated-type-specifier with
4624 a class-key (9.1), or an enum-specifier. In these cases and
4625 whenever a class-specifier or enum-specifier is present in the
4626 decl-specifier-seq, the identifiers in these specifiers are among
4627 the names being declared by the declaration (as class-name,
4628 enum-names, or enumerators, depending on the syntax). In such
4629 cases, and except for the declaration of an unnamed bit-field (9.6),
4630 the decl-specifier-seq shall introduce one or more names into the
4631 program, or shall redeclare a name introduced by a previous
4632 declaration. [Example:
4633 enum { }; // ill-formed
4634 typedef class { }; // ill-formed
4635 --end example] */
4636 if (saw_typedef)
4638 error ("missing type-name in typedef-declaration");
4639 return NULL_TREE;
4641 /* Anonymous unions are objects, so they can have specifiers. */;
4642 SET_ANON_AGGR_TYPE_P (declared_type);
4644 if (TREE_CODE (declared_type) != UNION_TYPE
4645 && !in_system_header_at (input_location))
4646 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4649 else
4651 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
4652 error_at (declspecs->locations[ds_inline],
4653 "%<inline%> can only be specified for functions");
4654 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4655 error_at (declspecs->locations[ds_virtual],
4656 "%<virtual%> can only be specified for functions");
4657 else if (saw_friend
4658 && (!current_class_type
4659 || current_scope () != current_class_type))
4660 error_at (declspecs->locations[ds_friend],
4661 "%<friend%> can only be specified inside a class");
4662 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4663 error_at (declspecs->locations[ds_explicit],
4664 "%<explicit%> can only be specified for constructors");
4665 else if (declspecs->storage_class)
4666 error_at (declspecs->locations[ds_storage_class],
4667 "a storage class can only be specified for objects "
4668 "and functions");
4669 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
4670 error_at (declspecs->locations[ds_const],
4671 "%<const%> can only be specified for objects and "
4672 "functions");
4673 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
4674 error_at (declspecs->locations[ds_volatile],
4675 "%<volatile%> can only be specified for objects and "
4676 "functions");
4677 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
4678 error_at (declspecs->locations[ds_restrict],
4679 "%<__restrict%> can only be specified for objects and "
4680 "functions");
4681 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
4682 error_at (declspecs->locations[ds_thread],
4683 "%<__thread%> can only be specified for objects "
4684 "and functions");
4685 else if (saw_typedef)
4686 warning_at (declspecs->locations[ds_typedef], 0,
4687 "%<typedef%> was ignored in this declaration");
4688 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4689 error_at (declspecs->locations[ds_constexpr],
4690 "%<constexpr%> cannot be used for type declarations");
4693 if (declspecs->attributes && warn_attributes && declared_type)
4695 location_t loc;
4696 if (!CLASS_TYPE_P (declared_type)
4697 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4698 /* For a non-template class, use the name location. */
4699 loc = location_of (declared_type);
4700 else
4701 /* For a template class (an explicit instantiation), use the
4702 current location. */
4703 loc = input_location;
4705 if (explicit_type_instantiation_p)
4706 /* [dcl.attr.grammar]/4:
4708 No attribute-specifier-seq shall appertain to an explicit
4709 instantiation. */
4711 if (warning_at (loc, OPT_Wattributes,
4712 "attribute ignored in explicit instantiation %q#T",
4713 declared_type))
4714 inform (loc,
4715 "no attribute can be applied to "
4716 "an explicit instantiation");
4718 else
4719 warn_misplaced_attr_for_class_type (loc, declared_type);
4722 return declared_type;
4725 /* Called when a declaration is seen that contains no names to declare.
4726 If its type is a reference to a structure, union or enum inherited
4727 from a containing scope, shadow that tag name for the current scope
4728 with a forward reference.
4729 If its type defines a new named structure or union
4730 or defines an enum, it is valid but we need not do anything here.
4731 Otherwise, it is an error.
4733 C++: may have to grok the declspecs to learn about static,
4734 complain for anonymous unions.
4736 Returns the TYPE declared -- or NULL_TREE if none. */
4738 tree
4739 shadow_tag (cp_decl_specifier_seq *declspecs)
4741 tree t = check_tag_decl (declspecs,
4742 /*explicit_type_instantiation_p=*/false);
4744 if (!t)
4745 return NULL_TREE;
4747 if (maybe_process_partial_specialization (t) == error_mark_node)
4748 return NULL_TREE;
4750 /* This is where the variables in an anonymous union are
4751 declared. An anonymous union declaration looks like:
4752 union { ... } ;
4753 because there is no declarator after the union, the parser
4754 sends that declaration here. */
4755 if (ANON_AGGR_TYPE_P (t))
4757 fixup_anonymous_aggr (t);
4759 if (TYPE_FIELDS (t))
4761 tree decl = grokdeclarator (/*declarator=*/NULL,
4762 declspecs, NORMAL, 0, NULL);
4763 finish_anon_union (decl);
4767 return t;
4770 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4772 tree
4773 groktypename (cp_decl_specifier_seq *type_specifiers,
4774 const cp_declarator *declarator,
4775 bool is_template_arg)
4777 tree attrs;
4778 tree type;
4779 enum decl_context context
4780 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
4781 attrs = type_specifiers->attributes;
4782 type_specifiers->attributes = NULL_TREE;
4783 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
4784 if (attrs && type != error_mark_node)
4786 if (CLASS_TYPE_P (type))
4787 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
4788 "outside of definition", type);
4789 else if (MAYBE_CLASS_TYPE_P (type))
4790 /* A template type parameter or other dependent type. */
4791 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
4792 "type %qT without an associated declaration", type);
4793 else
4794 cplus_decl_attributes (&type, attrs, 0);
4796 return type;
4799 /* Process a DECLARATOR for a function-scope variable declaration,
4800 namespace-scope variable declaration, or function declaration.
4801 (Function definitions go through start_function; class member
4802 declarations appearing in the body of the class go through
4803 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4804 If an error occurs, the error_mark_node is returned instead.
4806 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
4807 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
4808 for an explicitly defaulted function, or SD_DELETED for an explicitly
4809 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
4810 implicitly initialized via a default constructor. ATTRIBUTES and
4811 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
4813 The scope represented by the context of the returned DECL is pushed
4814 (if it is not the global namespace) and is assigned to
4815 *PUSHED_SCOPE_P. The caller is then responsible for calling
4816 pop_scope on *PUSHED_SCOPE_P if it is set. */
4818 tree
4819 start_decl (const cp_declarator *declarator,
4820 cp_decl_specifier_seq *declspecs,
4821 int initialized,
4822 tree attributes,
4823 tree prefix_attributes,
4824 tree *pushed_scope_p)
4826 tree decl;
4827 tree context;
4828 bool was_public;
4829 int flags;
4830 bool alias;
4832 *pushed_scope_p = NULL_TREE;
4834 /* An object declared as __attribute__((deprecated)) suppresses
4835 warnings of uses of other deprecated items. */
4836 if (lookup_attribute ("deprecated", attributes))
4837 deprecated_state = DEPRECATED_SUPPRESS;
4839 attributes = chainon (attributes, prefix_attributes);
4841 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
4842 &attributes);
4844 deprecated_state = DEPRECATED_NORMAL;
4846 if (decl == NULL_TREE || VOID_TYPE_P (decl)
4847 || decl == error_mark_node)
4848 return error_mark_node;
4850 context = CP_DECL_CONTEXT (decl);
4851 if (context != global_namespace)
4852 *pushed_scope_p = push_scope (context);
4854 /* Is it valid for this decl to have an initializer at all?
4855 If not, set INITIALIZED to zero, which will indirectly
4856 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4857 if (initialized
4858 && TREE_CODE (decl) == TYPE_DECL)
4860 error ("typedef %qD is initialized (use decltype instead)", decl);
4861 return error_mark_node;
4864 if (initialized)
4866 if (! toplevel_bindings_p ()
4867 && DECL_EXTERNAL (decl))
4868 warning (0, "declaration of %q#D has %<extern%> and is initialized",
4869 decl);
4870 DECL_EXTERNAL (decl) = 0;
4871 if (toplevel_bindings_p ())
4872 TREE_STATIC (decl) = 1;
4874 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
4876 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
4877 record_key_method_defined (decl);
4879 /* If this is a typedef that names the class for linkage purposes
4880 (7.1.3p8), apply any attributes directly to the type. */
4881 if (TREE_CODE (decl) == TYPE_DECL
4882 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
4883 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
4884 flags = ATTR_FLAG_TYPE_IN_PLACE;
4885 else
4886 flags = 0;
4888 /* Set attributes here so if duplicate decl, will have proper attributes. */
4889 cplus_decl_attributes (&decl, attributes, flags);
4891 /* Dllimported symbols cannot be defined. Static data members (which
4892 can be initialized in-class and dllimported) go through grokfield,
4893 not here, so we don't need to exclude those decls when checking for
4894 a definition. */
4895 if (initialized && DECL_DLLIMPORT_P (decl))
4897 error ("definition of %q#D is marked %<dllimport%>", decl);
4898 DECL_DLLIMPORT_P (decl) = 0;
4901 /* If #pragma weak was used, mark the decl weak now. */
4902 if (!processing_template_decl)
4903 maybe_apply_pragma_weak (decl);
4905 if (TREE_CODE (decl) == FUNCTION_DECL
4906 && DECL_DECLARED_INLINE_P (decl)
4907 && DECL_UNINLINABLE (decl)
4908 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4909 warning_at (DECL_SOURCE_LOCATION (decl), 0,
4910 "inline function %qD given attribute noinline", decl);
4912 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
4914 bool this_tmpl = (processing_template_decl
4915 > template_class_depth (context));
4916 if (VAR_P (decl))
4918 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
4919 if (field == NULL_TREE
4920 || !(VAR_P (field) || variable_template_p (field)))
4921 error ("%q+#D is not a static data member of %q#T", decl, context);
4922 else if (variable_template_p (field) && !this_tmpl)
4924 if (DECL_LANG_SPECIFIC (decl)
4925 && DECL_TEMPLATE_SPECIALIZATION (decl))
4926 /* OK, specialization was already checked. */;
4927 else
4929 error_at (DECL_SOURCE_LOCATION (decl),
4930 "non-member-template declaration of %qD", decl);
4931 inform (DECL_SOURCE_LOCATION (field), "does not match "
4932 "member template declaration here");
4933 return error_mark_node;
4936 else
4938 if (variable_template_p (field))
4939 field = DECL_TEMPLATE_RESULT (field);
4941 if (DECL_CONTEXT (field) != context)
4943 if (!same_type_p (DECL_CONTEXT (field), context))
4944 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
4945 "to be defined as %<%T::%D%>",
4946 DECL_CONTEXT (field), DECL_NAME (decl),
4947 context, DECL_NAME (decl));
4948 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
4950 /* Static data member are tricky; an in-class initialization
4951 still doesn't provide a definition, so the in-class
4952 declaration will have DECL_EXTERNAL set, but will have an
4953 initialization. Thus, duplicate_decls won't warn
4954 about this situation, and so we check here. */
4955 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
4956 error ("duplicate initialization of %qD", decl);
4957 if (duplicate_decls (decl, field, /*newdecl_is_friend=*/false))
4958 decl = field;
4959 if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr)
4960 && !DECL_DECLARED_CONSTEXPR_P (field))
4961 error ("%qD declared %<constexpr%> outside its class", field);
4964 else
4966 tree field = check_classfn (context, decl,
4967 this_tmpl
4968 ? current_template_parms
4969 : NULL_TREE);
4970 if (field && field != error_mark_node
4971 && duplicate_decls (decl, field,
4972 /*newdecl_is_friend=*/false))
4973 decl = field;
4976 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
4977 DECL_IN_AGGR_P (decl) = 0;
4978 /* Do not mark DECL as an explicit specialization if it was not
4979 already marked as an instantiation; a declaration should
4980 never be marked as a specialization unless we know what
4981 template is being specialized. */
4982 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
4984 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
4985 if (TREE_CODE (decl) == FUNCTION_DECL)
4986 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
4987 && DECL_DECLARED_INLINE_P (decl));
4988 else
4989 DECL_COMDAT (decl) = false;
4991 /* [temp.expl.spec] An explicit specialization of a static data
4992 member of a template is a definition if the declaration
4993 includes an initializer; otherwise, it is a declaration.
4995 We check for processing_specialization so this only applies
4996 to the new specialization syntax. */
4997 if (!initialized && processing_specialization)
4998 DECL_EXTERNAL (decl) = 1;
5001 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
5002 /* Aliases are definitions. */
5003 && !alias)
5004 permerror (input_location, "declaration of %q#D outside of class is not definition",
5005 decl);
5008 was_public = TREE_PUBLIC (decl);
5010 /* Enter this declaration into the symbol table. Don't push the plain
5011 VAR_DECL for a variable template. */
5012 if (!template_parm_scope_p ()
5013 || !VAR_P (decl))
5014 decl = maybe_push_decl (decl);
5016 if (processing_template_decl)
5017 decl = push_template_decl (decl);
5018 if (decl == error_mark_node)
5019 return error_mark_node;
5021 if (VAR_P (decl)
5022 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
5023 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
5025 /* This is a const variable with implicit 'static'. Set
5026 DECL_THIS_STATIC so we can tell it from variables that are
5027 !TREE_PUBLIC because of the anonymous namespace. */
5028 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
5029 DECL_THIS_STATIC (decl) = 1;
5032 if (current_function_decl && VAR_P (decl)
5033 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
5035 bool ok = false;
5036 if (CP_DECL_THREAD_LOCAL_P (decl))
5037 error ("%qD declared %<thread_local%> in %<constexpr%> function",
5038 decl);
5039 else if (TREE_STATIC (decl))
5040 error ("%qD declared %<static%> in %<constexpr%> function", decl);
5041 else
5042 ok = true;
5043 if (!ok)
5044 cp_function_chain->invalid_constexpr = true;
5047 if (!processing_template_decl && VAR_P (decl))
5048 start_decl_1 (decl, initialized);
5050 return decl;
5053 /* Process the declaration of a variable DECL. INITIALIZED is true
5054 iff DECL is explicitly initialized. (INITIALIZED is false if the
5055 variable is initialized via an implicitly-called constructor.)
5056 This function must be called for ordinary variables (including, for
5057 example, implicit instantiations of templates), but must not be
5058 called for template declarations. */
5060 void
5061 start_decl_1 (tree decl, bool initialized)
5063 tree type;
5064 bool complete_p;
5065 bool aggregate_definition_p;
5067 gcc_assert (!processing_template_decl);
5069 if (error_operand_p (decl))
5070 return;
5072 gcc_assert (VAR_P (decl));
5074 type = TREE_TYPE (decl);
5075 complete_p = COMPLETE_TYPE_P (type);
5076 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
5078 /* If an explicit initializer is present, or if this is a definition
5079 of an aggregate, then we need a complete type at this point.
5080 (Scalars are always complete types, so there is nothing to
5081 check.) This code just sets COMPLETE_P; errors (if necessary)
5082 are issued below. */
5083 if ((initialized || aggregate_definition_p)
5084 && !complete_p
5085 && COMPLETE_TYPE_P (complete_type (type)))
5087 complete_p = true;
5088 /* We will not yet have set TREE_READONLY on DECL if the type
5089 was "const", but incomplete, before this point. But, now, we
5090 have a complete type, so we can try again. */
5091 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
5094 if (initialized)
5095 /* Is it valid for this decl to have an initializer at all? */
5097 /* Don't allow initializations for incomplete types except for
5098 arrays which might be completed by the initialization. */
5099 if (complete_p)
5100 ; /* A complete type is ok. */
5101 else if (type_uses_auto (type))
5102 ; /* An auto type is ok. */
5103 else if (TREE_CODE (type) != ARRAY_TYPE)
5105 error ("variable %q#D has initializer but incomplete type", decl);
5106 type = TREE_TYPE (decl) = error_mark_node;
5108 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
5110 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5111 error ("elements of array %q#D have incomplete type", decl);
5112 /* else we already gave an error in start_decl. */
5115 else if (aggregate_definition_p && !complete_p)
5117 if (type_uses_auto (type))
5118 error ("declaration of %q#D has no initializer", decl);
5119 else
5120 error ("aggregate %q#D has incomplete type and cannot be defined",
5121 decl);
5122 /* Change the type so that assemble_variable will give
5123 DECL an rtl we can live with: (mem (const_int 0)). */
5124 type = TREE_TYPE (decl) = error_mark_node;
5127 /* Create a new scope to hold this declaration if necessary.
5128 Whether or not a new scope is necessary cannot be determined
5129 until after the type has been completed; if the type is a
5130 specialization of a class template it is not until after
5131 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5132 will be set correctly. */
5133 maybe_push_cleanup_level (type);
5136 /* Handle initialization of references. DECL, TYPE, and INIT have the
5137 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
5138 but will be set to a new CLEANUP_STMT if a temporary is created
5139 that must be destroyed subsequently.
5141 Returns an initializer expression to use to initialize DECL, or
5142 NULL if the initialization can be performed statically.
5144 Quotes on semantics can be found in ARM 8.4.3. */
5146 static tree
5147 grok_reference_init (tree decl, tree type, tree init, int flags)
5149 if (init == NULL_TREE)
5151 if ((DECL_LANG_SPECIFIC (decl) == 0
5152 || DECL_IN_AGGR_P (decl) == 0)
5153 && ! DECL_THIS_EXTERN (decl))
5154 error ("%qD declared as reference but not initialized", decl);
5155 return NULL_TREE;
5158 if (TREE_CODE (init) == TREE_LIST)
5159 init = build_x_compound_expr_from_list (init, ELK_INIT,
5160 tf_warning_or_error);
5162 tree ttype = TREE_TYPE (type);
5163 if (TREE_CODE (ttype) != ARRAY_TYPE
5164 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
5165 /* Note: default conversion is only called in very special cases. */
5166 init = decay_conversion (init, tf_warning_or_error);
5168 /* check_initializer handles this for non-reference variables, but for
5169 references we need to do it here or the initializer will get the
5170 incomplete array type and confuse later calls to
5171 cp_complete_array_type. */
5172 if (TREE_CODE (ttype) == ARRAY_TYPE
5173 && TYPE_DOMAIN (ttype) == NULL_TREE
5174 && (BRACE_ENCLOSED_INITIALIZER_P (init)
5175 || TREE_CODE (init) == STRING_CST))
5177 cp_complete_array_type (&ttype, init, false);
5178 if (ttype != TREE_TYPE (type))
5179 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
5182 /* Convert INIT to the reference type TYPE. This may involve the
5183 creation of a temporary, whose lifetime must be the same as that
5184 of the reference. If so, a DECL_EXPR for the temporary will be
5185 added just after the DECL_EXPR for DECL. That's why we don't set
5186 DECL_INITIAL for local references (instead assigning to them
5187 explicitly); we need to allow the temporary to be initialized
5188 first. */
5189 return initialize_reference (type, init, flags,
5190 tf_warning_or_error);
5193 /* Designated initializers in arrays are not supported in GNU C++.
5194 The parser cannot detect this error since it does not know whether
5195 a given brace-enclosed initializer is for a class type or for an
5196 array. This function checks that CE does not use a designated
5197 initializer. If it does, an error is issued. Returns true if CE
5198 is valid, i.e., does not have a designated initializer. */
5200 static bool
5201 check_array_designated_initializer (constructor_elt *ce,
5202 unsigned HOST_WIDE_INT index)
5204 /* Designated initializers for array elements are not supported. */
5205 if (ce->index)
5207 /* The parser only allows identifiers as designated
5208 initializers. */
5209 if (ce->index == error_mark_node)
5211 error ("name used in a GNU-style designated "
5212 "initializer for an array");
5213 return false;
5215 else if (identifier_p (ce->index))
5217 error ("name %qD used in a GNU-style designated "
5218 "initializer for an array", ce->index);
5219 return false;
5222 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5223 ce->index, true);
5224 if (ce_index
5225 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
5226 && (TREE_CODE (ce_index = maybe_constant_value (ce_index))
5227 == INTEGER_CST))
5229 /* A C99 designator is OK if it matches the current index. */
5230 if (wi::eq_p (ce_index, index))
5231 return true;
5232 else
5233 sorry ("non-trivial designated initializers not supported");
5235 else
5236 error ("C99 designator %qE is not an integral constant-expression",
5237 ce->index);
5239 return false;
5242 return true;
5245 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5246 array until we finish parsing the initializer. If that's the
5247 situation we're in, update DECL accordingly. */
5249 static void
5250 maybe_deduce_size_from_array_init (tree decl, tree init)
5252 tree type = TREE_TYPE (decl);
5254 if (TREE_CODE (type) == ARRAY_TYPE
5255 && TYPE_DOMAIN (type) == NULL_TREE
5256 && TREE_CODE (decl) != TYPE_DECL)
5258 /* do_default is really a C-ism to deal with tentative definitions.
5259 But let's leave it here to ease the eventual merge. */
5260 int do_default = !DECL_EXTERNAL (decl);
5261 tree initializer = init ? init : DECL_INITIAL (decl);
5262 int failure = 0;
5264 /* Check that there are no designated initializers in INIT, as
5265 those are not supported in GNU C++, and as the middle-end
5266 will crash if presented with a non-numeric designated
5267 initializer. */
5268 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
5270 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
5271 constructor_elt *ce;
5272 HOST_WIDE_INT i;
5273 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
5274 if (!check_array_designated_initializer (ce, i))
5275 failure = 1;
5278 if (!failure)
5280 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
5281 do_default);
5282 if (failure == 1)
5284 error ("initializer fails to determine size of %qD", decl);
5286 else if (failure == 2)
5288 if (do_default)
5290 error ("array size missing in %qD", decl);
5292 /* If a `static' var's size isn't known, make it extern as
5293 well as static, so it does not get allocated. If it's not
5294 `static', then don't mark it extern; finish_incomplete_decl
5295 will give it a default size and it will get allocated. */
5296 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
5297 DECL_EXTERNAL (decl) = 1;
5299 else if (failure == 3)
5301 error ("zero-size array %qD", decl);
5305 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
5307 relayout_decl (decl);
5311 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5312 any appropriate error messages regarding the layout. */
5314 static void
5315 layout_var_decl (tree decl)
5317 tree type;
5319 type = TREE_TYPE (decl);
5320 if (type == error_mark_node)
5321 return;
5323 /* If we haven't already laid out this declaration, do so now.
5324 Note that we must not call complete type for an external object
5325 because it's type might involve templates that we are not
5326 supposed to instantiate yet. (And it's perfectly valid to say
5327 `extern X x' for some incomplete type `X'.) */
5328 if (!DECL_EXTERNAL (decl))
5329 complete_type (type);
5330 if (!DECL_SIZE (decl)
5331 && TREE_TYPE (decl) != error_mark_node
5332 && (COMPLETE_TYPE_P (type)
5333 || (TREE_CODE (type) == ARRAY_TYPE
5334 && !TYPE_DOMAIN (type)
5335 && COMPLETE_TYPE_P (TREE_TYPE (type)))))
5336 layout_decl (decl, 0);
5338 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
5340 /* An automatic variable with an incomplete type: that is an error.
5341 Don't talk about array types here, since we took care of that
5342 message in grokdeclarator. */
5343 error ("storage size of %qD isn%'t known", decl);
5344 TREE_TYPE (decl) = error_mark_node;
5346 #if 0
5347 /* Keep this code around in case we later want to control debug info
5348 based on whether a type is "used". (jason 1999-11-11) */
5350 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
5351 /* Let debugger know it should output info for this type. */
5352 note_debug_info_needed (ttype);
5354 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
5355 note_debug_info_needed (DECL_CONTEXT (decl));
5356 #endif
5358 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
5359 && DECL_SIZE (decl) != NULL_TREE
5360 && ! TREE_CONSTANT (DECL_SIZE (decl)))
5362 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
5363 constant_expression_warning (DECL_SIZE (decl));
5364 else
5366 error ("storage size of %qD isn%'t constant", decl);
5367 TREE_TYPE (decl) = error_mark_node;
5372 /* If a local static variable is declared in an inline function, or if
5373 we have a weak definition, we must endeavor to create only one
5374 instance of the variable at link-time. */
5376 void
5377 maybe_commonize_var (tree decl)
5379 /* Static data in a function with comdat linkage also has comdat
5380 linkage. */
5381 if (TREE_STATIC (decl)
5382 /* Don't mess with __FUNCTION__. */
5383 && ! DECL_ARTIFICIAL (decl)
5384 && DECL_FUNCTION_SCOPE_P (decl)
5385 && vague_linkage_p (DECL_CONTEXT (decl)))
5387 if (flag_weak)
5389 /* With weak symbols, we simply make the variable COMDAT;
5390 that will cause copies in multiple translations units to
5391 be merged. */
5392 comdat_linkage (decl);
5394 else
5396 if (DECL_INITIAL (decl) == NULL_TREE
5397 || DECL_INITIAL (decl) == error_mark_node)
5399 /* Without weak symbols, we can use COMMON to merge
5400 uninitialized variables. */
5401 TREE_PUBLIC (decl) = 1;
5402 DECL_COMMON (decl) = 1;
5404 else
5406 /* While for initialized variables, we must use internal
5407 linkage -- which means that multiple copies will not
5408 be merged. */
5409 TREE_PUBLIC (decl) = 0;
5410 DECL_COMMON (decl) = 0;
5411 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
5412 "sorry: semantics of inline function static "
5413 "data %q#D are wrong (you%'ll wind up "
5414 "with multiple copies)", decl))
5415 inform (DECL_SOURCE_LOCATION (decl),
5416 "you can work around this by removing the initializer");
5422 /* Issue an error message if DECL is an uninitialized const variable. */
5424 static void
5425 check_for_uninitialized_const_var (tree decl)
5427 tree type = strip_array_types (TREE_TYPE (decl));
5429 /* ``Unless explicitly declared extern, a const object does not have
5430 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5431 7.1.6 */
5432 if (VAR_P (decl)
5433 && TREE_CODE (type) != REFERENCE_TYPE
5434 && (CP_TYPE_CONST_P (type) || var_in_constexpr_fn (decl))
5435 && !DECL_INITIAL (decl))
5437 tree field = default_init_uninitialized_part (type);
5438 if (!field)
5439 return;
5441 if (CP_TYPE_CONST_P (type))
5442 permerror (DECL_SOURCE_LOCATION (decl),
5443 "uninitialized const %qD", decl);
5444 else
5446 error_at (DECL_SOURCE_LOCATION (decl),
5447 "uninitialized variable %qD in %<constexpr%> function",
5448 decl);
5449 cp_function_chain->invalid_constexpr = true;
5452 if (CLASS_TYPE_P (type))
5454 tree defaulted_ctor;
5456 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5457 "%q#T has no user-provided default constructor", type);
5458 defaulted_ctor = in_class_defaulted_default_constructor (type);
5459 if (defaulted_ctor)
5460 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5461 "constructor is not user-provided because it is "
5462 "explicitly defaulted in the class body");
5463 inform (DECL_SOURCE_LOCATION (field),
5464 "and the implicitly-defined constructor does not "
5465 "initialize %q#D", field);
5470 /* Structure holding the current initializer being processed by reshape_init.
5471 CUR is a pointer to the current element being processed, END is a pointer
5472 after the last element present in the initializer. */
5473 struct reshape_iter
5475 constructor_elt *cur;
5476 constructor_elt *end;
5479 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5481 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5482 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5483 initialized. If there are no more such fields, the return value
5484 will be NULL. */
5486 tree
5487 next_initializable_field (tree field)
5489 while (field
5490 && (TREE_CODE (field) != FIELD_DECL
5491 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
5492 || DECL_ARTIFICIAL (field)))
5493 field = DECL_CHAIN (field);
5495 return field;
5498 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5499 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5500 INTEGER_CST representing the size of the array minus one (the maximum index),
5501 or NULL_TREE if the array was declared without specifying the size. D is
5502 the iterator within the constructor. */
5504 static tree
5505 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5506 tsubst_flags_t complain)
5508 tree new_init;
5509 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5510 unsigned HOST_WIDE_INT max_index_cst = 0;
5511 unsigned HOST_WIDE_INT index;
5513 /* The initializer for an array is always a CONSTRUCTOR. */
5514 new_init = build_constructor (init_list_type_node, NULL);
5516 if (sized_array_p)
5518 /* Minus 1 is used for zero sized arrays. */
5519 if (integer_all_onesp (max_index))
5520 return new_init;
5522 if (tree_fits_uhwi_p (max_index))
5523 max_index_cst = tree_to_uhwi (max_index);
5524 /* sizetype is sign extended, not zero extended. */
5525 else
5526 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5529 /* Loop until there are no more initializers. */
5530 for (index = 0;
5531 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5532 ++index)
5534 tree elt_init;
5535 constructor_elt *old_cur = d->cur;
5537 check_array_designated_initializer (d->cur, index);
5538 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5539 complain);
5540 if (elt_init == error_mark_node)
5541 return error_mark_node;
5542 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5543 size_int (index), elt_init);
5544 if (!TREE_CONSTANT (elt_init))
5545 TREE_CONSTANT (new_init) = false;
5547 /* This can happen with an invalid initializer (c++/54501). */
5548 if (d->cur == old_cur && !sized_array_p)
5549 break;
5552 return new_init;
5555 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5556 Parameters are the same of reshape_init_r. */
5558 static tree
5559 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5561 tree max_index = NULL_TREE;
5563 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5565 if (TYPE_DOMAIN (type))
5566 max_index = array_type_nelts (type);
5568 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5571 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5572 Parameters are the same of reshape_init_r. */
5574 static tree
5575 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5577 tree max_index = NULL_TREE;
5579 gcc_assert (VECTOR_TYPE_P (type));
5581 if (COMPOUND_LITERAL_P (d->cur->value))
5583 tree value = d->cur->value;
5584 if (!same_type_p (TREE_TYPE (value), type))
5586 if (complain & tf_error)
5587 error ("invalid type %qT as initializer for a vector of type %qT",
5588 TREE_TYPE (d->cur->value), type);
5589 value = error_mark_node;
5591 ++d->cur;
5592 return value;
5595 /* For a vector, we initialize it as an array of the appropriate size. */
5596 if (VECTOR_TYPE_P (type))
5597 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5599 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5602 /* Subroutine of reshape_init_r, processes the initializers for classes
5603 or union. Parameters are the same of reshape_init_r. */
5605 static tree
5606 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
5607 tsubst_flags_t complain)
5609 tree field;
5610 tree new_init;
5612 gcc_assert (CLASS_TYPE_P (type));
5614 /* The initializer for a class is always a CONSTRUCTOR. */
5615 new_init = build_constructor (init_list_type_node, NULL);
5616 field = next_initializable_field (TYPE_FIELDS (type));
5618 if (!field)
5620 /* [dcl.init.aggr]
5622 An initializer for an aggregate member that is an
5623 empty class shall have the form of an empty
5624 initializer-list {}. */
5625 if (!first_initializer_p)
5627 if (complain & tf_error)
5628 error ("initializer for %qT must be brace-enclosed", type);
5629 return error_mark_node;
5631 return new_init;
5634 /* Loop through the initializable fields, gathering initializers. */
5635 while (d->cur != d->end)
5637 tree field_init;
5638 constructor_elt *old_cur = d->cur;
5640 /* Handle designated initializers, as an extension. */
5641 if (d->cur->index)
5643 if (d->cur->index == error_mark_node)
5644 return error_mark_node;
5646 if (TREE_CODE (d->cur->index) == FIELD_DECL)
5647 /* We already reshaped this. */
5648 gcc_assert (d->cur->index == field);
5649 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
5650 field = lookup_field_1 (type, d->cur->index, /*want_type=*/false);
5651 else
5653 if (complain & tf_error)
5654 error ("%<[%E] =%> used in a GNU-style designated initializer"
5655 " for class %qT", d->cur->index, type);
5656 return error_mark_node;
5659 if (!field || TREE_CODE (field) != FIELD_DECL)
5661 if (complain & tf_error)
5662 error ("%qT has no non-static data member named %qD", type,
5663 d->cur->index);
5664 return error_mark_node;
5668 /* If we processed all the member of the class, we are done. */
5669 if (!field)
5670 break;
5672 field_init = reshape_init_r (TREE_TYPE (field), d,
5673 /*first_initializer_p=*/false, complain);
5674 if (field_init == error_mark_node)
5675 return error_mark_node;
5677 if (d->cur == old_cur && d->cur->index)
5679 /* This can happen with an invalid initializer for a flexible
5680 array member (c++/54441). */
5681 if (complain & tf_error)
5682 error ("invalid initializer for %q#D", field);
5683 return error_mark_node;
5686 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
5688 /* [dcl.init.aggr]
5690 When a union is initialized with a brace-enclosed
5691 initializer, the braces shall only contain an
5692 initializer for the first member of the union. */
5693 if (TREE_CODE (type) == UNION_TYPE)
5694 break;
5696 field = next_initializable_field (DECL_CHAIN (field));
5699 return new_init;
5702 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5703 designators are not valid; either complain or return true to indicate
5704 that reshape_init_r should return error_mark_node. */
5706 static bool
5707 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
5709 if (d->cur->index)
5711 if (complain & tf_error)
5712 error ("C99 designator %qE outside aggregate initializer",
5713 d->cur->index);
5714 else
5715 return true;
5717 return false;
5720 /* Subroutine of reshape_init, which processes a single initializer (part of
5721 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5722 iterator within the CONSTRUCTOR which points to the initializer to process.
5723 FIRST_INITIALIZER_P is true if this is the first initializer of the
5724 outermost CONSTRUCTOR node. */
5726 static tree
5727 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
5728 tsubst_flags_t complain)
5730 tree init = d->cur->value;
5732 if (error_operand_p (init))
5733 return error_mark_node;
5735 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
5736 && has_designator_problem (d, complain))
5737 return error_mark_node;
5739 if (TREE_CODE (type) == COMPLEX_TYPE)
5741 /* A complex type can be initialized from one or two initializers,
5742 but braces are not elided. */
5743 d->cur++;
5744 if (BRACE_ENCLOSED_INITIALIZER_P (init))
5746 if (CONSTRUCTOR_NELTS (init) > 2)
5748 if (complain & tf_error)
5749 error ("too many initializers for %qT", type);
5750 else
5751 return error_mark_node;
5754 else if (first_initializer_p && d->cur != d->end)
5756 vec<constructor_elt, va_gc> *v = 0;
5757 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
5758 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
5759 if (has_designator_problem (d, complain))
5760 return error_mark_node;
5761 d->cur++;
5762 init = build_constructor (init_list_type_node, v);
5764 return init;
5767 /* A non-aggregate type is always initialized with a single
5768 initializer. */
5769 if (!CP_AGGREGATE_TYPE_P (type))
5771 /* It is invalid to initialize a non-aggregate type with a
5772 brace-enclosed initializer before C++0x.
5773 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
5774 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
5775 a CONSTRUCTOR (with a record type). */
5776 if (TREE_CODE (init) == CONSTRUCTOR
5777 /* Don't complain about a capture-init. */
5778 && !CONSTRUCTOR_IS_DIRECT_INIT (init)
5779 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
5781 if (SCALAR_TYPE_P (type))
5783 if (cxx_dialect < cxx11
5784 /* Isn't value-initialization. */
5785 || CONSTRUCTOR_NELTS (init) > 0)
5787 if (complain & tf_error)
5788 error ("braces around scalar initializer for type %qT",
5789 type);
5790 init = error_mark_node;
5793 else
5794 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5797 d->cur++;
5798 return init;
5801 /* "If T is a class type and the initializer list has a single element of
5802 type cv U, where U is T or a class derived from T, the object is
5803 initialized from that element." Even if T is an aggregate. */
5804 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
5805 && first_initializer_p
5806 && d->end - d->cur == 1
5807 && reference_related_p (type, TREE_TYPE (init)))
5809 d->cur++;
5810 return init;
5813 /* [dcl.init.aggr]
5815 All implicit type conversions (clause _conv_) are considered when
5816 initializing the aggregate member with an initializer from an
5817 initializer-list. If the initializer can initialize a member,
5818 the member is initialized. Otherwise, if the member is itself a
5819 non-empty subaggregate, brace elision is assumed and the
5820 initializer is considered for the initialization of the first
5821 member of the subaggregate. */
5822 if (TREE_CODE (init) != CONSTRUCTOR
5823 /* But don't try this for the first initializer, since that would be
5824 looking through the outermost braces; A a2 = { a1 }; is not a
5825 valid aggregate initialization. */
5826 && !first_initializer_p
5827 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
5828 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
5829 complain)))
5831 d->cur++;
5832 return init;
5835 /* [dcl.init.string]
5837 A char array (whether plain char, signed char, or unsigned char)
5838 can be initialized by a string-literal (optionally enclosed in
5839 braces); a wchar_t array can be initialized by a wide
5840 string-literal (optionally enclosed in braces). */
5841 if (TREE_CODE (type) == ARRAY_TYPE
5842 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
5844 tree str_init = init;
5846 /* Strip one level of braces if and only if they enclose a single
5847 element (as allowed by [dcl.init.string]). */
5848 if (!first_initializer_p
5849 && TREE_CODE (str_init) == CONSTRUCTOR
5850 && vec_safe_length (CONSTRUCTOR_ELTS (str_init)) == 1)
5852 str_init = (*CONSTRUCTOR_ELTS (str_init))[0].value;
5855 /* If it's a string literal, then it's the initializer for the array
5856 as a whole. Otherwise, continue with normal initialization for
5857 array types (one value per array element). */
5858 if (TREE_CODE (str_init) == STRING_CST)
5860 if (has_designator_problem (d, complain))
5861 return error_mark_node;
5862 d->cur++;
5863 return str_init;
5867 /* The following cases are about aggregates. If we are not within a full
5868 initializer already, and there is not a CONSTRUCTOR, it means that there
5869 is a missing set of braces (that is, we are processing the case for
5870 which reshape_init exists). */
5871 if (!first_initializer_p)
5873 if (TREE_CODE (init) == CONSTRUCTOR)
5875 if (TREE_TYPE (init) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init)))
5876 /* There is no need to reshape pointer-to-member function
5877 initializers, as they are always constructed correctly
5878 by the front end. */
5880 else if (COMPOUND_LITERAL_P (init))
5881 /* For a nested compound literal, there is no need to reshape since
5882 brace elision is not allowed. Even if we decided to allow it,
5883 we should add a call to reshape_init in finish_compound_literal,
5884 before calling digest_init, so changing this code would still
5885 not be necessary. */
5886 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
5887 else
5889 ++d->cur;
5890 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5891 return reshape_init (type, init, complain);
5895 warning (OPT_Wmissing_braces, "missing braces around initializer for %qT",
5896 type);
5899 /* Dispatch to specialized routines. */
5900 if (CLASS_TYPE_P (type))
5901 return reshape_init_class (type, d, first_initializer_p, complain);
5902 else if (TREE_CODE (type) == ARRAY_TYPE)
5903 return reshape_init_array (type, d, complain);
5904 else if (VECTOR_TYPE_P (type))
5905 return reshape_init_vector (type, d, complain);
5906 else
5907 gcc_unreachable();
5910 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
5911 brace-enclosed aggregate initializer.
5913 INIT is the CONSTRUCTOR containing the list of initializers describing
5914 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
5915 It may not presently match the shape of the TYPE; for example:
5917 struct S { int a; int b; };
5918 struct S a[] = { 1, 2, 3, 4 };
5920 Here INIT will hold a vector of four elements, rather than a
5921 vector of two elements, each itself a vector of two elements. This
5922 routine transforms INIT from the former form into the latter. The
5923 revised CONSTRUCTOR node is returned. */
5925 tree
5926 reshape_init (tree type, tree init, tsubst_flags_t complain)
5928 vec<constructor_elt, va_gc> *v;
5929 reshape_iter d;
5930 tree new_init;
5932 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5934 v = CONSTRUCTOR_ELTS (init);
5936 /* An empty constructor does not need reshaping, and it is always a valid
5937 initializer. */
5938 if (vec_safe_is_empty (v))
5939 return init;
5941 /* Recurse on this CONSTRUCTOR. */
5942 d.cur = &(*v)[0];
5943 d.end = d.cur + v->length ();
5945 new_init = reshape_init_r (type, &d, true, complain);
5946 if (new_init == error_mark_node)
5947 return error_mark_node;
5949 /* Make sure all the element of the constructor were used. Otherwise,
5950 issue an error about exceeding initializers. */
5951 if (d.cur != d.end)
5953 if (complain & tf_error)
5954 error ("too many initializers for %qT", type);
5955 else
5956 return error_mark_node;
5959 return new_init;
5962 /* Verify array initializer. Returns true if errors have been reported. */
5964 bool
5965 check_array_initializer (tree decl, tree type, tree init)
5967 tree element_type = TREE_TYPE (type);
5969 /* The array type itself need not be complete, because the
5970 initializer may tell us how many elements are in the array.
5971 But, the elements of the array must be complete. */
5972 if (!COMPLETE_TYPE_P (complete_type (element_type)))
5974 if (decl)
5975 error ("elements of array %q#D have incomplete type", decl);
5976 else
5977 error ("elements of array %q#T have incomplete type", type);
5978 return true;
5980 /* A compound literal can't have variable size. */
5981 if (init && !decl
5982 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
5983 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
5985 error ("variable-sized compound literal");
5986 return true;
5988 return false;
5991 /* Subroutine of check_initializer; args are passed down from that function.
5992 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
5994 static tree
5995 build_aggr_init_full_exprs (tree decl, tree init, int flags)
5998 gcc_assert (stmts_are_full_exprs_p ());
5999 return build_aggr_init (decl, init, flags, tf_warning_or_error);
6002 /* Verify INIT (the initializer for DECL), and record the
6003 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
6004 grok_reference_init.
6006 If the return value is non-NULL, it is an expression that must be
6007 evaluated dynamically to initialize DECL. */
6009 static tree
6010 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
6012 tree type = TREE_TYPE (decl);
6013 tree init_code = NULL;
6014 tree core_type;
6016 /* Things that are going to be initialized need to have complete
6017 type. */
6018 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
6020 if (DECL_HAS_VALUE_EXPR_P (decl))
6022 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
6023 it doesn't have storage to be initialized. */
6024 gcc_assert (init == NULL_TREE);
6025 return NULL_TREE;
6028 if (type == error_mark_node)
6029 /* We will have already complained. */
6030 return NULL_TREE;
6032 if (TREE_CODE (type) == ARRAY_TYPE)
6034 if (check_array_initializer (decl, type, init))
6035 return NULL_TREE;
6037 else if (!COMPLETE_TYPE_P (type))
6039 error ("%q#D has incomplete type", decl);
6040 TREE_TYPE (decl) = error_mark_node;
6041 return NULL_TREE;
6043 else
6044 /* There is no way to make a variable-sized class type in GNU C++. */
6045 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
6047 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
6049 int init_len = vec_safe_length (CONSTRUCTOR_ELTS (init));
6050 if (SCALAR_TYPE_P (type))
6052 if (init_len == 0)
6054 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6055 init = build_zero_init (type, NULL_TREE, false);
6057 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
6059 error ("scalar object %qD requires one element in initializer",
6060 decl);
6061 TREE_TYPE (decl) = error_mark_node;
6062 return NULL_TREE;
6067 if (TREE_CODE (decl) == CONST_DECL)
6069 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
6071 DECL_INITIAL (decl) = init;
6073 gcc_assert (init != NULL_TREE);
6074 init = NULL_TREE;
6076 else if (!init && DECL_REALLY_EXTERN (decl))
6078 else if (init || type_build_ctor_call (type)
6079 || TREE_CODE (type) == REFERENCE_TYPE)
6081 if (TREE_CODE (type) == REFERENCE_TYPE)
6083 init = grok_reference_init (decl, type, init, flags);
6084 flags |= LOOKUP_ALREADY_DIGESTED;
6086 else if (!init)
6087 check_for_uninitialized_const_var (decl);
6088 /* Do not reshape constructors of vectors (they don't need to be
6089 reshaped. */
6090 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
6092 if (is_std_init_list (type))
6094 init = perform_implicit_conversion (type, init,
6095 tf_warning_or_error);
6096 flags |= LOOKUP_ALREADY_DIGESTED;
6098 else if (TYPE_NON_AGGREGATE_CLASS (type))
6100 /* Don't reshape if the class has constructors. */
6101 if (cxx_dialect == cxx98)
6102 error ("in C++98 %qD must be initialized by constructor, "
6103 "not by %<{...}%>",
6104 decl);
6106 else if (VECTOR_TYPE_P (type) && TYPE_VECTOR_OPAQUE (type))
6108 error ("opaque vector types cannot be initialized");
6109 init = error_mark_node;
6111 else
6113 init = reshape_init (type, init, tf_warning_or_error);
6114 flags |= LOOKUP_NO_NARROWING;
6117 else if (TREE_CODE (init) == TREE_LIST
6118 && TREE_TYPE (init) != unknown_type_node
6119 && !MAYBE_CLASS_TYPE_P (type))
6121 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6123 /* We get here with code like `int a (2);' */
6124 init = build_x_compound_expr_from_list (init, ELK_INIT,
6125 tf_warning_or_error);
6128 /* If DECL has an array type without a specific bound, deduce the
6129 array size from the initializer. */
6130 maybe_deduce_size_from_array_init (decl, init);
6131 type = TREE_TYPE (decl);
6132 if (type == error_mark_node)
6133 return NULL_TREE;
6135 if ((type_build_ctor_call (type) || CLASS_TYPE_P (type))
6136 && !(flags & LOOKUP_ALREADY_DIGESTED)
6137 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
6138 && CP_AGGREGATE_TYPE_P (type)
6139 && (CLASS_TYPE_P (type)
6140 || !TYPE_NEEDS_CONSTRUCTING (type)
6141 || type_has_extended_temps (type))))
6143 init_code = build_aggr_init_full_exprs (decl, init, flags);
6145 /* A constructor call is a non-trivial initializer even if
6146 it isn't explicitly written. */
6147 if (TREE_SIDE_EFFECTS (init_code))
6148 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
6150 /* If this is a constexpr initializer, expand_default_init will
6151 have returned an INIT_EXPR rather than a CALL_EXPR. In that
6152 case, pull the initializer back out and pass it down into
6153 store_init_value. */
6154 while (TREE_CODE (init_code) == EXPR_STMT
6155 || TREE_CODE (init_code) == CONVERT_EXPR)
6156 init_code = TREE_OPERAND (init_code, 0);
6157 if (TREE_CODE (init_code) == INIT_EXPR)
6159 init = TREE_OPERAND (init_code, 1);
6160 init_code = NULL_TREE;
6161 /* Don't call digest_init; it's unnecessary and will complain
6162 about aggregate initialization of non-aggregate classes. */
6163 flags |= LOOKUP_ALREADY_DIGESTED;
6165 else if (DECL_DECLARED_CONSTEXPR_P (decl))
6167 /* Declared constexpr, but no suitable initializer; massage
6168 init appropriately so we can pass it into store_init_value
6169 for the error. */
6170 if (CLASS_TYPE_P (type)
6171 && (!init || TREE_CODE (init) == TREE_LIST))
6173 init = build_functional_cast (type, init, tf_none);
6174 if (TREE_CODE (init) == TARGET_EXPR)
6175 TARGET_EXPR_DIRECT_INIT_P (init) = true;
6177 init_code = NULL_TREE;
6179 else
6180 init = NULL_TREE;
6183 if (init && TREE_CODE (init) != TREE_VEC)
6185 /* In aggregate initialization of a variable, each element
6186 initialization is a full-expression because there is no
6187 enclosing expression. */
6188 gcc_assert (stmts_are_full_exprs_p ());
6190 init_code = store_init_value (decl, init, cleanups, flags);
6192 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
6193 && DECL_INITIAL (decl)
6194 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
6195 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
6196 warning (0, "array %qD initialized by parenthesized string literal %qE",
6197 decl, DECL_INITIAL (decl));
6198 init = NULL;
6201 else
6203 if (CLASS_TYPE_P (core_type = strip_array_types (type))
6204 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
6205 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
6206 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
6207 /*complain=*/true);
6209 check_for_uninitialized_const_var (decl);
6212 if (init && init != error_mark_node)
6213 init_code = build2 (INIT_EXPR, type, decl, init);
6215 if (init_code)
6217 /* We might have set these in cp_finish_decl. */
6218 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
6219 TREE_CONSTANT (decl) = false;
6222 if (init_code && DECL_IN_AGGR_P (decl))
6224 static int explained = 0;
6226 if (cxx_dialect < cxx11)
6227 error ("initializer invalid for static member with constructor");
6228 else
6229 error ("non-constant in-class initialization invalid for static "
6230 "member %qD", decl);
6231 if (!explained)
6233 inform (input_location,
6234 "(an out of class initialization is required)");
6235 explained = 1;
6237 return NULL_TREE;
6240 return init_code;
6243 /* If DECL is not a local variable, give it RTL. */
6245 static void
6246 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
6248 int toplev = toplevel_bindings_p ();
6249 int defer_p;
6251 /* Set the DECL_ASSEMBLER_NAME for the object. */
6252 if (asmspec)
6254 /* The `register' keyword, when used together with an
6255 asm-specification, indicates that the variable should be
6256 placed in a particular register. */
6257 if (VAR_P (decl) && DECL_REGISTER (decl))
6259 set_user_assembler_name (decl, asmspec);
6260 DECL_HARD_REGISTER (decl) = 1;
6262 else
6264 if (TREE_CODE (decl) == FUNCTION_DECL
6265 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
6266 set_builtin_user_assembler_name (decl, asmspec);
6267 set_user_assembler_name (decl, asmspec);
6271 /* Handle non-variables up front. */
6272 if (!VAR_P (decl))
6274 rest_of_decl_compilation (decl, toplev, at_eof);
6275 return;
6278 /* If we see a class member here, it should be a static data
6279 member. */
6280 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
6282 gcc_assert (TREE_STATIC (decl));
6283 /* An in-class declaration of a static data member should be
6284 external; it is only a declaration, and not a definition. */
6285 if (init == NULL_TREE)
6286 gcc_assert (DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl));
6289 /* We don't create any RTL for local variables. */
6290 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6291 return;
6293 /* We defer emission of local statics until the corresponding
6294 DECL_EXPR is expanded. But with constexpr its function might never
6295 be expanded, so go ahead and tell cgraph about the variable now. */
6296 defer_p = ((DECL_FUNCTION_SCOPE_P (decl)
6297 && !DECL_DECLARED_CONSTEXPR_P (DECL_CONTEXT (decl)))
6298 || DECL_VIRTUAL_P (decl));
6300 /* Defer template instantiations. */
6301 if (DECL_LANG_SPECIFIC (decl)
6302 && DECL_IMPLICIT_INSTANTIATION (decl))
6303 defer_p = 1;
6305 /* If we're not deferring, go ahead and assemble the variable. */
6306 if (!defer_p)
6307 rest_of_decl_compilation (decl, toplev, at_eof);
6310 /* walk_tree helper for wrap_temporary_cleanups, below. */
6312 static tree
6313 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
6315 /* Stop at types or full-expression boundaries. */
6316 if (TYPE_P (*stmt_p)
6317 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
6319 *walk_subtrees = 0;
6320 return NULL_TREE;
6323 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
6325 tree guard = (tree)data;
6326 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
6328 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
6329 /* Tell honor_protect_cleanup_actions to handle this as a separate
6330 cleanup. */
6331 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
6333 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
6336 return NULL_TREE;
6339 /* We're initializing a local variable which has a cleanup GUARD. If there
6340 are any temporaries used in the initializer INIT of this variable, we
6341 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6342 variable will be cleaned up properly if one of them throws.
6344 Unfortunately, there's no way to express this properly in terms of
6345 nesting, as the regions for the temporaries overlap the region for the
6346 variable itself; if there are two temporaries, the variable needs to be
6347 the first thing destroyed if either of them throws. However, we only
6348 want to run the variable's cleanup if it actually got constructed. So
6349 we need to guard the temporary cleanups with the variable's cleanup if
6350 they are run on the normal path, but not if they are run on the
6351 exceptional path. We implement this by telling
6352 honor_protect_cleanup_actions to strip the variable cleanup from the
6353 exceptional path. */
6355 static void
6356 wrap_temporary_cleanups (tree init, tree guard)
6358 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
6361 /* Generate code to initialize DECL (a local variable). */
6363 static void
6364 initialize_local_var (tree decl, tree init)
6366 tree type = TREE_TYPE (decl);
6367 tree cleanup;
6368 int already_used;
6370 gcc_assert (VAR_P (decl)
6371 || TREE_CODE (decl) == RESULT_DECL);
6372 gcc_assert (!TREE_STATIC (decl));
6374 if (DECL_SIZE (decl) == NULL_TREE)
6376 /* If we used it already as memory, it must stay in memory. */
6377 DECL_INITIAL (decl) = NULL_TREE;
6378 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6379 return;
6382 if (type == error_mark_node)
6383 return;
6385 /* Compute and store the initial value. */
6386 already_used = TREE_USED (decl) || TREE_USED (type);
6387 if (TREE_USED (type))
6388 DECL_READ_P (decl) = 1;
6390 /* Generate a cleanup, if necessary. */
6391 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6393 /* Perform the initialization. */
6394 if (init)
6396 tree rinit = (TREE_CODE (init) == INIT_EXPR
6397 ? TREE_OPERAND (init, 1) : NULL_TREE);
6398 if (rinit && !TREE_SIDE_EFFECTS (rinit))
6400 /* Stick simple initializers in DECL_INITIAL so that
6401 -Wno-init-self works (c++/34772). */
6402 gcc_assert (TREE_OPERAND (init, 0) == decl);
6403 DECL_INITIAL (decl) = rinit;
6405 if (warn_init_self && TREE_CODE (type) == REFERENCE_TYPE)
6407 STRIP_NOPS (rinit);
6408 if (rinit == decl)
6409 warning_at (DECL_SOURCE_LOCATION (decl),
6410 OPT_Winit_self,
6411 "reference %qD is initialized with itself", decl);
6414 else
6416 int saved_stmts_are_full_exprs_p;
6418 /* If we're only initializing a single object, guard the
6419 destructors of any temporaries used in its initializer with
6420 its destructor. This isn't right for arrays because each
6421 element initialization is a full-expression. */
6422 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6423 wrap_temporary_cleanups (init, cleanup);
6425 gcc_assert (building_stmt_list_p ());
6426 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6427 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6428 finish_expr_stmt (init);
6429 current_stmt_tree ()->stmts_are_full_exprs_p =
6430 saved_stmts_are_full_exprs_p;
6434 /* Set this to 0 so we can tell whether an aggregate which was
6435 initialized was ever used. Don't do this if it has a
6436 destructor, so we don't complain about the 'resource
6437 allocation is initialization' idiom. Now set
6438 attribute((unused)) on types so decls of that type will be
6439 marked used. (see TREE_USED, above.) */
6440 if (TYPE_NEEDS_CONSTRUCTING (type)
6441 && ! already_used
6442 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6443 && DECL_NAME (decl))
6444 TREE_USED (decl) = 0;
6445 else if (already_used)
6446 TREE_USED (decl) = 1;
6448 if (cleanup)
6449 finish_decl_cleanup (decl, cleanup);
6452 /* DECL is a VAR_DECL for a compiler-generated variable with static
6453 storage duration (like a virtual table) whose initializer is a
6454 compile-time constant. Initialize the variable and provide it to the
6455 back end. */
6457 void
6458 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6460 tree init;
6461 gcc_assert (DECL_ARTIFICIAL (decl));
6462 init = build_constructor (TREE_TYPE (decl), v);
6463 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6464 DECL_INITIAL (decl) = init;
6465 DECL_INITIALIZED_P (decl) = 1;
6466 determine_visibility (decl);
6467 layout_var_decl (decl);
6468 maybe_commonize_var (decl);
6469 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6472 /* INIT is the initializer for a variable, as represented by the
6473 parser. Returns true iff INIT is type-dependent. */
6475 static bool
6476 type_dependent_init_p (tree init)
6478 if (TREE_CODE (init) == TREE_LIST)
6479 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6480 return any_type_dependent_elements_p (init);
6481 else if (TREE_CODE (init) == CONSTRUCTOR)
6482 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6484 vec<constructor_elt, va_gc> *elts;
6485 size_t nelts;
6486 size_t i;
6488 elts = CONSTRUCTOR_ELTS (init);
6489 nelts = vec_safe_length (elts);
6490 for (i = 0; i < nelts; ++i)
6491 if (type_dependent_init_p ((*elts)[i].value))
6492 return true;
6494 else
6495 /* It must be a simple expression, e.g., int i = 3; */
6496 return type_dependent_expression_p (init);
6498 return false;
6501 /* INIT is the initializer for a variable, as represented by the
6502 parser. Returns true iff INIT is value-dependent. */
6504 static bool
6505 value_dependent_init_p (tree init)
6507 if (TREE_CODE (init) == TREE_LIST)
6508 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6509 return any_value_dependent_elements_p (init);
6510 else if (TREE_CODE (init) == CONSTRUCTOR)
6511 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6513 vec<constructor_elt, va_gc> *elts;
6514 size_t nelts;
6515 size_t i;
6517 elts = CONSTRUCTOR_ELTS (init);
6518 nelts = vec_safe_length (elts);
6519 for (i = 0; i < nelts; ++i)
6520 if (value_dependent_init_p ((*elts)[i].value))
6521 return true;
6523 else
6524 /* It must be a simple expression, e.g., int i = 3; */
6525 return value_dependent_expression_p (init);
6527 return false;
6530 // Returns true if a DECL is VAR_DECL with the concept specifier.
6531 static inline bool
6532 is_concept_var (tree decl)
6534 return (VAR_P (decl)
6535 // Not all variables have DECL_LANG_SPECIFIC.
6536 && DECL_LANG_SPECIFIC (decl)
6537 && DECL_DECLARED_CONCEPT_P (decl));
6540 /* A helper function to be called via walk_tree. If any label exists
6541 under *TP, it is (going to be) forced. Set has_forced_label_in_static. */
6543 static tree
6544 notice_forced_label_r (tree *tp, int *walk_subtrees, void *)
6546 if (TYPE_P (*tp))
6547 *walk_subtrees = 0;
6548 if (TREE_CODE (*tp) == LABEL_DECL)
6549 cfun->has_forced_label_in_static = 1;
6550 return NULL_TREE;
6553 /* Finish processing of a declaration;
6554 install its line number and initial value.
6555 If the length of an array type is not known before,
6556 it must be determined now, from the initial value, or it is an error.
6558 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6559 true, then INIT is an integral constant expression.
6561 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6562 if the (init) syntax was used. */
6564 void
6565 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
6566 tree asmspec_tree, int flags)
6568 tree type;
6569 vec<tree, va_gc> *cleanups = NULL;
6570 const char *asmspec = NULL;
6571 int was_readonly = 0;
6572 bool var_definition_p = false;
6573 tree auto_node;
6575 if (decl == error_mark_node)
6576 return;
6577 else if (! decl)
6579 if (init)
6580 error ("assignment (not initialization) in declaration");
6581 return;
6584 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6585 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6586 gcc_assert (TREE_CODE (decl) != PARM_DECL);
6588 type = TREE_TYPE (decl);
6589 if (type == error_mark_node)
6590 return;
6592 /* If a name was specified, get the string. */
6593 if (at_namespace_scope_p ())
6594 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
6595 if (asmspec_tree && asmspec_tree != error_mark_node)
6596 asmspec = TREE_STRING_POINTER (asmspec_tree);
6598 if (current_class_type
6599 && CP_DECL_CONTEXT (decl) == current_class_type
6600 && TYPE_BEING_DEFINED (current_class_type)
6601 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
6602 && (DECL_INITIAL (decl) || init))
6603 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
6605 if (TREE_CODE (decl) != FUNCTION_DECL
6606 && (auto_node = type_uses_auto (type)))
6608 tree d_init;
6609 if (init == NULL_TREE)
6611 if (DECL_LANG_SPECIFIC (decl)
6612 && DECL_TEMPLATE_INSTANTIATION (decl)
6613 && !DECL_TEMPLATE_INSTANTIATED (decl))
6615 /* init is null because we're deferring instantiating the
6616 initializer until we need it. Well, we need it now. */
6617 instantiate_decl (decl, /*defer_ok*/true, /*expl*/false);
6618 return;
6621 error ("declaration of %q#D has no initializer", decl);
6622 TREE_TYPE (decl) = error_mark_node;
6623 return;
6625 d_init = init;
6626 if (TREE_CODE (d_init) == TREE_LIST)
6627 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
6628 tf_warning_or_error);
6629 d_init = resolve_nondeduced_context (d_init, tf_warning_or_error);
6630 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init,
6631 auto_node,
6632 tf_warning_or_error,
6633 adc_variable_type);
6634 if (type == error_mark_node)
6635 return;
6636 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
6639 if (!ensure_literal_type_for_constexpr_object (decl))
6640 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
6642 if (VAR_P (decl)
6643 && DECL_CLASS_SCOPE_P (decl)
6644 && DECL_INITIALIZED_IN_CLASS_P (decl))
6645 check_static_variable_definition (decl, type);
6647 if (init && TREE_CODE (decl) == FUNCTION_DECL)
6649 tree clone;
6650 if (init == ridpointers[(int)RID_DELETE])
6652 /* FIXME check this is 1st decl. */
6653 DECL_DELETED_FN (decl) = 1;
6654 DECL_DECLARED_INLINE_P (decl) = 1;
6655 DECL_INITIAL (decl) = error_mark_node;
6656 FOR_EACH_CLONE (clone, decl)
6658 DECL_DELETED_FN (clone) = 1;
6659 DECL_DECLARED_INLINE_P (clone) = 1;
6660 DECL_INITIAL (clone) = error_mark_node;
6662 init = NULL_TREE;
6664 else if (init == ridpointers[(int)RID_DEFAULT])
6666 if (defaultable_fn_check (decl))
6667 DECL_DEFAULTED_FN (decl) = 1;
6668 else
6669 DECL_INITIAL (decl) = NULL_TREE;
6673 if (init && VAR_P (decl))
6675 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
6676 /* If DECL is a reference, then we want to know whether init is a
6677 reference constant; init_const_expr_p as passed tells us whether
6678 it's an rvalue constant. */
6679 if (TREE_CODE (type) == REFERENCE_TYPE)
6680 init_const_expr_p = potential_constant_expression (init);
6681 if (init_const_expr_p)
6683 /* Set these flags now for templates. We'll update the flags in
6684 store_init_value for instantiations. */
6685 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
6686 if (decl_maybe_constant_var_p (decl))
6687 TREE_CONSTANT (decl) = 1;
6691 if (processing_template_decl)
6693 bool type_dependent_p;
6695 /* Add this declaration to the statement-tree. */
6696 if (at_function_scope_p ())
6697 add_decl_expr (decl);
6699 type_dependent_p = dependent_type_p (type);
6701 if (check_for_bare_parameter_packs (init))
6703 init = NULL_TREE;
6704 DECL_INITIAL (decl) = NULL_TREE;
6707 /* Generally, initializers in templates are expanded when the
6708 template is instantiated. But, if DECL is a variable constant
6709 then it can be used in future constant expressions, so its value
6710 must be available. */
6712 if (!VAR_P (decl) || type_dependent_p)
6713 /* We can't do anything if the decl has dependent type. */;
6714 else if (init
6715 && init_const_expr_p
6716 && TREE_CODE (type) != REFERENCE_TYPE
6717 && decl_maybe_constant_var_p (decl)
6718 && !type_dependent_init_p (init)
6719 && !value_dependent_init_p (init))
6721 /* This variable seems to be a non-dependent constant, so process
6722 its initializer. If check_initializer returns non-null the
6723 initialization wasn't constant after all. */
6724 tree init_code;
6725 cleanups = make_tree_vector ();
6726 init_code = check_initializer (decl, init, flags, &cleanups);
6727 if (init_code == NULL_TREE)
6728 init = NULL_TREE;
6729 release_tree_vector (cleanups);
6731 else if (!init && is_concept_var (decl))
6732 error ("variable concept has no initializer");
6733 else if (!DECL_PRETTY_FUNCTION_P (decl))
6735 /* Deduce array size even if the initializer is dependent. */
6736 maybe_deduce_size_from_array_init (decl, init);
6737 /* And complain about multiple initializers. */
6738 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
6739 && !MAYBE_CLASS_TYPE_P (type))
6740 init = build_x_compound_expr_from_list (init, ELK_INIT,
6741 tf_warning_or_error);
6744 if (init)
6745 DECL_INITIAL (decl) = init;
6746 return;
6749 /* Just store non-static data member initializers for later. */
6750 if (init && TREE_CODE (decl) == FIELD_DECL)
6751 DECL_INITIAL (decl) = init;
6753 /* Take care of TYPE_DECLs up front. */
6754 if (TREE_CODE (decl) == TYPE_DECL)
6756 if (type != error_mark_node
6757 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
6759 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
6760 warning (0, "shadowing previous type declaration of %q#D", decl);
6761 set_identifier_type_value (DECL_NAME (decl), decl);
6764 /* If we have installed this as the canonical typedef for this
6765 type, and that type has not been defined yet, delay emitting
6766 the debug information for it, as we will emit it later. */
6767 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
6768 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
6769 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
6771 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
6772 at_eof);
6773 return;
6776 /* A reference will be modified here, as it is initialized. */
6777 if (! DECL_EXTERNAL (decl)
6778 && TREE_READONLY (decl)
6779 && TREE_CODE (type) == REFERENCE_TYPE)
6781 was_readonly = 1;
6782 TREE_READONLY (decl) = 0;
6785 if (VAR_P (decl))
6787 /* If this is a local variable that will need a mangled name,
6788 register it now. We must do this before processing the
6789 initializer for the variable, since the initialization might
6790 require a guard variable, and since the mangled name of the
6791 guard variable will depend on the mangled name of this
6792 variable. */
6793 if (DECL_FUNCTION_SCOPE_P (decl)
6794 && TREE_STATIC (decl)
6795 && !DECL_ARTIFICIAL (decl))
6797 push_local_name (decl);
6798 /* Normally has_forced_label_in_static is set during GIMPLE
6799 lowering, but [cd]tors are never actually compiled directly.
6800 We need to set this early so we can deal with the label
6801 address extension. */
6802 if ((DECL_CONSTRUCTOR_P (current_function_decl)
6803 || DECL_DESTRUCTOR_P (current_function_decl))
6804 && init)
6806 walk_tree (&init, notice_forced_label_r, NULL, NULL);
6807 add_local_decl (cfun, decl);
6809 /* And make sure it's in the symbol table for
6810 c_parse_final_cleanups to find. */
6811 varpool_node::get_create (decl);
6814 /* Convert the initializer to the type of DECL, if we have not
6815 already initialized DECL. */
6816 if (!DECL_INITIALIZED_P (decl)
6817 /* If !DECL_EXTERNAL then DECL is being defined. In the
6818 case of a static data member initialized inside the
6819 class-specifier, there can be an initializer even if DECL
6820 is *not* defined. */
6821 && (!DECL_EXTERNAL (decl) || init))
6823 if (TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6825 tree jclass
6826 = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jclass"));
6827 /* Allow libjava/prims.cc define primitive classes. */
6828 if (init != NULL_TREE
6829 || jclass == NULL_TREE
6830 || TREE_CODE (jclass) != TYPE_DECL
6831 || !POINTER_TYPE_P (TREE_TYPE (jclass))
6832 || !same_type_ignoring_top_level_qualifiers_p
6833 (type, TREE_TYPE (TREE_TYPE (jclass))))
6834 error ("Java object %qD not allocated with %<new%>", decl);
6835 init = NULL_TREE;
6837 cleanups = make_tree_vector ();
6838 init = check_initializer (decl, init, flags, &cleanups);
6840 /* Handle:
6842 [dcl.init]
6844 The memory occupied by any object of static storage
6845 duration is zero-initialized at program startup before
6846 any other initialization takes place.
6848 We cannot create an appropriate initializer until after
6849 the type of DECL is finalized. If DECL_INITIAL is set,
6850 then the DECL is statically initialized, and any
6851 necessary zero-initialization has already been performed. */
6852 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
6853 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
6854 /*nelts=*/NULL_TREE,
6855 /*static_storage_p=*/true);
6856 /* Remember that the initialization for this variable has
6857 taken place. */
6858 DECL_INITIALIZED_P (decl) = 1;
6859 /* This declaration is the definition of this variable,
6860 unless we are initializing a static data member within
6861 the class specifier. */
6862 if (!DECL_EXTERNAL (decl))
6863 var_definition_p = true;
6865 /* If the variable has an array type, lay out the type, even if
6866 there is no initializer. It is valid to index through the
6867 array, and we must get TYPE_ALIGN set correctly on the array
6868 type. */
6869 else if (TREE_CODE (type) == ARRAY_TYPE)
6870 layout_type (type);
6872 if (TREE_STATIC (decl)
6873 && !at_function_scope_p ()
6874 && current_function_decl == NULL)
6875 /* So decl is a global variable or a static member of a
6876 non local class. Record the types it uses
6877 so that we can decide later to emit debug info for them. */
6878 record_types_used_by_current_var_decl (decl);
6880 else if (TREE_CODE (decl) == FIELD_DECL
6881 && TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6882 error ("non-static data member %qD has Java class type", decl);
6884 /* Add this declaration to the statement-tree. This needs to happen
6885 after the call to check_initializer so that the DECL_EXPR for a
6886 reference temp is added before the DECL_EXPR for the reference itself. */
6887 if (DECL_FUNCTION_SCOPE_P (decl))
6889 /* If we're building a variable sized type, and we might be
6890 reachable other than via the top of the current binding
6891 level, then create a new BIND_EXPR so that we deallocate
6892 the object at the right time. */
6893 if (VAR_P (decl)
6894 && DECL_SIZE (decl)
6895 && !TREE_CONSTANT (DECL_SIZE (decl))
6896 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
6898 tree bind;
6899 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6900 TREE_SIDE_EFFECTS (bind) = 1;
6901 add_stmt (bind);
6902 BIND_EXPR_BODY (bind) = push_stmt_list ();
6904 add_decl_expr (decl);
6907 /* Let the middle end know about variables and functions -- but not
6908 static data members in uninstantiated class templates. */
6909 if (VAR_OR_FUNCTION_DECL_P (decl))
6911 if (VAR_P (decl))
6913 layout_var_decl (decl);
6914 maybe_commonize_var (decl);
6917 /* This needs to happen after the linkage is set. */
6918 determine_visibility (decl);
6920 if (var_definition_p && TREE_STATIC (decl))
6922 /* If a TREE_READONLY variable needs initialization
6923 at runtime, it is no longer readonly and we need to
6924 avoid MEM_READONLY_P being set on RTL created for it. */
6925 if (init)
6927 if (TREE_READONLY (decl))
6928 TREE_READONLY (decl) = 0;
6929 was_readonly = 0;
6931 else if (was_readonly)
6932 TREE_READONLY (decl) = 1;
6934 /* Likewise if it needs destruction. */
6935 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
6936 TREE_READONLY (decl) = 0;
6939 make_rtl_for_nonlocal_decl (decl, init, asmspec);
6941 /* Check for abstractness of the type. Notice that there is no
6942 need to strip array types here since the check for those types
6943 is already done within create_array_type_for_decl. */
6944 abstract_virtuals_error (decl, type);
6946 if (TREE_TYPE (decl) == error_mark_node)
6947 /* No initialization required. */
6949 else if (TREE_CODE (decl) == FUNCTION_DECL)
6951 if (init)
6953 if (init == ridpointers[(int)RID_DEFAULT])
6955 /* An out-of-class default definition is defined at
6956 the point where it is explicitly defaulted. */
6957 if (DECL_DELETED_FN (decl))
6958 maybe_explain_implicit_delete (decl);
6959 else if (DECL_INITIAL (decl) == error_mark_node)
6960 synthesize_method (decl);
6962 else
6963 error ("function %q#D is initialized like a variable", decl);
6965 /* else no initialization required. */
6967 else if (DECL_EXTERNAL (decl)
6968 && ! (DECL_LANG_SPECIFIC (decl)
6969 && DECL_NOT_REALLY_EXTERN (decl)))
6971 if (init)
6972 DECL_INITIAL (decl) = init;
6974 /* A variable definition. */
6975 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6976 /* Initialize the local variable. */
6977 initialize_local_var (decl, init);
6979 /* If a variable is defined, and then a subsequent
6980 definition with external linkage is encountered, we will
6981 get here twice for the same variable. We want to avoid
6982 calling expand_static_init more than once. For variables
6983 that are not static data members, we can call
6984 expand_static_init only when we actually process the
6985 initializer. It is not legal to redeclare a static data
6986 member, so this issue does not arise in that case. */
6987 else if (var_definition_p && TREE_STATIC (decl))
6988 expand_static_init (decl, init);
6991 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
6992 reference, insert it in the statement-tree now. */
6993 if (cleanups)
6995 unsigned i; tree t;
6996 FOR_EACH_VEC_ELT (*cleanups, i, t)
6997 push_cleanup (decl, t, false);
6998 release_tree_vector (cleanups);
7001 if (was_readonly)
7002 TREE_READONLY (decl) = 1;
7004 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
7007 /* Returns a declaration for a VAR_DECL as if:
7009 extern "C" TYPE NAME;
7011 had been seen. Used to create compiler-generated global
7012 variables. */
7014 static tree
7015 declare_global_var (tree name, tree type)
7017 tree decl;
7019 push_to_top_level ();
7020 decl = build_decl (input_location, VAR_DECL, name, type);
7021 TREE_PUBLIC (decl) = 1;
7022 DECL_EXTERNAL (decl) = 1;
7023 DECL_ARTIFICIAL (decl) = 1;
7024 /* If the user has explicitly declared this variable (perhaps
7025 because the code we are compiling is part of a low-level runtime
7026 library), then it is possible that our declaration will be merged
7027 with theirs by pushdecl. */
7028 decl = pushdecl (decl);
7029 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
7030 pop_from_top_level ();
7032 return decl;
7035 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
7036 if "__cxa_atexit" is not being used) corresponding to the function
7037 to be called when the program exits. */
7039 static tree
7040 get_atexit_fn_ptr_type (void)
7042 tree fn_type;
7044 if (!atexit_fn_ptr_type_node)
7046 tree arg_type;
7047 if (flag_use_cxa_atexit
7048 && !targetm.cxx.use_atexit_for_cxa_atexit ())
7049 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
7050 arg_type = ptr_type_node;
7051 else
7052 /* The parameter to "atexit" is "void (*)(void)". */
7053 arg_type = NULL_TREE;
7055 fn_type = build_function_type_list (void_type_node,
7056 arg_type, NULL_TREE);
7057 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
7060 return atexit_fn_ptr_type_node;
7063 /* Returns a pointer to the `atexit' function. Note that if
7064 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
7065 `__cxa_atexit' function specified in the IA64 C++ ABI. */
7067 static tree
7068 get_atexit_node (void)
7070 tree atexit_fndecl;
7071 tree fn_type;
7072 tree fn_ptr_type;
7073 const char *name;
7074 bool use_aeabi_atexit;
7076 if (atexit_node)
7077 return atexit_node;
7079 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
7081 /* The declaration for `__cxa_atexit' is:
7083 int __cxa_atexit (void (*)(void *), void *, void *)
7085 We build up the argument types and then the function type
7086 itself. */
7087 tree argtype0, argtype1, argtype2;
7089 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
7090 /* First, build the pointer-to-function type for the first
7091 argument. */
7092 fn_ptr_type = get_atexit_fn_ptr_type ();
7093 /* Then, build the rest of the argument types. */
7094 argtype2 = ptr_type_node;
7095 if (use_aeabi_atexit)
7097 argtype1 = fn_ptr_type;
7098 argtype0 = ptr_type_node;
7100 else
7102 argtype1 = ptr_type_node;
7103 argtype0 = fn_ptr_type;
7105 /* And the final __cxa_atexit type. */
7106 fn_type = build_function_type_list (integer_type_node,
7107 argtype0, argtype1, argtype2,
7108 NULL_TREE);
7109 if (use_aeabi_atexit)
7110 name = "__aeabi_atexit";
7111 else
7112 name = "__cxa_atexit";
7114 else
7116 /* The declaration for `atexit' is:
7118 int atexit (void (*)());
7120 We build up the argument types and then the function type
7121 itself. */
7122 fn_ptr_type = get_atexit_fn_ptr_type ();
7123 /* Build the final atexit type. */
7124 fn_type = build_function_type_list (integer_type_node,
7125 fn_ptr_type, NULL_TREE);
7126 name = "atexit";
7129 /* Now, build the function declaration. */
7130 push_lang_context (lang_name_c);
7131 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
7132 mark_used (atexit_fndecl);
7133 pop_lang_context ();
7134 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
7136 return atexit_node;
7139 /* Like get_atexit_node, but for thread-local cleanups. */
7141 static tree
7142 get_thread_atexit_node (void)
7144 /* The declaration for `__cxa_thread_atexit' is:
7146 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
7147 tree fn_type = build_function_type_list (integer_type_node,
7148 get_atexit_fn_ptr_type (),
7149 ptr_type_node, ptr_type_node,
7150 NULL_TREE);
7152 /* Now, build the function declaration. */
7153 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
7154 ECF_LEAF | ECF_NOTHROW);
7155 return decay_conversion (atexit_fndecl, tf_warning_or_error);
7158 /* Returns the __dso_handle VAR_DECL. */
7160 static tree
7161 get_dso_handle_node (void)
7163 if (dso_handle_node)
7164 return dso_handle_node;
7166 /* Declare the variable. */
7167 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
7168 ptr_type_node);
7170 #ifdef HAVE_GAS_HIDDEN
7171 if (dso_handle_node != error_mark_node)
7173 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
7174 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
7176 #endif
7178 return dso_handle_node;
7181 /* Begin a new function with internal linkage whose job will be simply
7182 to destroy some particular variable. */
7184 static GTY(()) int start_cleanup_cnt;
7186 static tree
7187 start_cleanup_fn (void)
7189 char name[32];
7190 tree fntype;
7191 tree fndecl;
7192 bool use_cxa_atexit = flag_use_cxa_atexit
7193 && !targetm.cxx.use_atexit_for_cxa_atexit ();
7195 push_to_top_level ();
7197 /* No need to mangle this. */
7198 push_lang_context (lang_name_c);
7200 /* Build the name of the function. */
7201 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
7202 /* Build the function declaration. */
7203 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
7204 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
7205 /* It's a function with internal linkage, generated by the
7206 compiler. */
7207 TREE_PUBLIC (fndecl) = 0;
7208 DECL_ARTIFICIAL (fndecl) = 1;
7209 /* Make the function `inline' so that it is only emitted if it is
7210 actually needed. It is unlikely that it will be inlined, since
7211 it is only called via a function pointer, but we avoid unnecessary
7212 emissions this way. */
7213 DECL_DECLARED_INLINE_P (fndecl) = 1;
7214 DECL_INTERFACE_KNOWN (fndecl) = 1;
7215 /* Build the parameter. */
7216 if (use_cxa_atexit)
7218 tree parmdecl;
7220 parmdecl = cp_build_parm_decl (NULL_TREE, ptr_type_node);
7221 DECL_CONTEXT (parmdecl) = fndecl;
7222 TREE_USED (parmdecl) = 1;
7223 DECL_READ_P (parmdecl) = 1;
7224 DECL_ARGUMENTS (fndecl) = parmdecl;
7227 pushdecl (fndecl);
7228 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
7230 pop_lang_context ();
7232 return current_function_decl;
7235 /* Finish the cleanup function begun by start_cleanup_fn. */
7237 static void
7238 end_cleanup_fn (void)
7240 expand_or_defer_fn (finish_function (0));
7242 pop_from_top_level ();
7245 /* Generate code to handle the destruction of DECL, an object with
7246 static storage duration. */
7248 tree
7249 register_dtor_fn (tree decl)
7251 tree cleanup;
7252 tree addr;
7253 tree compound_stmt;
7254 tree fcall;
7255 tree type;
7256 bool ob_parm, dso_parm, use_dtor;
7257 tree arg0, arg1, arg2;
7258 tree atex_node;
7260 type = TREE_TYPE (decl);
7261 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
7262 return void_node;
7264 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
7265 "__aeabi_atexit"), and DECL is a class object, we can just pass the
7266 destructor to "__cxa_atexit"; we don't have to build a temporary
7267 function to do the cleanup. */
7268 dso_parm = (flag_use_cxa_atexit
7269 && !targetm.cxx.use_atexit_for_cxa_atexit ());
7270 ob_parm = (CP_DECL_THREAD_LOCAL_P (decl) || dso_parm);
7271 use_dtor = ob_parm && CLASS_TYPE_P (type);
7272 if (use_dtor)
7274 int idx;
7276 /* Find the destructor. */
7277 idx = lookup_fnfields_1 (type, complete_dtor_identifier);
7278 gcc_assert (idx >= 0);
7279 cleanup = (*CLASSTYPE_METHOD_VEC (type))[idx];
7280 /* Make sure it is accessible. */
7281 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
7282 tf_warning_or_error);
7284 else
7286 /* Call build_cleanup before we enter the anonymous function so
7287 that any access checks will be done relative to the current
7288 scope, rather than the scope of the anonymous function. */
7289 build_cleanup (decl);
7291 /* Now start the function. */
7292 cleanup = start_cleanup_fn ();
7294 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
7295 to the original function, rather than the anonymous one. That
7296 will make the back end think that nested functions are in use,
7297 which causes confusion. */
7298 push_deferring_access_checks (dk_no_check);
7299 fcall = build_cleanup (decl);
7300 pop_deferring_access_checks ();
7302 /* Create the body of the anonymous function. */
7303 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
7304 finish_expr_stmt (fcall);
7305 finish_compound_stmt (compound_stmt);
7306 end_cleanup_fn ();
7309 /* Call atexit with the cleanup function. */
7310 mark_used (cleanup);
7311 cleanup = build_address (cleanup);
7313 if (CP_DECL_THREAD_LOCAL_P (decl))
7314 atex_node = get_thread_atexit_node ();
7315 else
7316 atex_node = get_atexit_node ();
7318 if (use_dtor)
7320 /* We must convert CLEANUP to the type that "__cxa_atexit"
7321 expects. */
7322 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
7323 /* "__cxa_atexit" will pass the address of DECL to the
7324 cleanup function. */
7325 mark_used (decl);
7326 addr = build_address (decl);
7327 /* The declared type of the parameter to "__cxa_atexit" is
7328 "void *". For plain "T*", we could just let the
7329 machinery in cp_build_function_call convert it -- but if the
7330 type is "cv-qualified T *", then we need to convert it
7331 before passing it in, to avoid spurious errors. */
7332 addr = build_nop (ptr_type_node, addr);
7334 else
7335 /* Since the cleanup functions we build ignore the address
7336 they're given, there's no reason to pass the actual address
7337 in, and, in general, it's cheaper to pass NULL than any
7338 other value. */
7339 addr = null_pointer_node;
7341 if (dso_parm)
7342 arg2 = cp_build_addr_expr (get_dso_handle_node (),
7343 tf_warning_or_error);
7344 else if (ob_parm)
7345 /* Just pass NULL to the dso handle parm if we don't actually
7346 have a DSO handle on this target. */
7347 arg2 = null_pointer_node;
7348 else
7349 arg2 = NULL_TREE;
7351 if (ob_parm)
7353 if (!CP_DECL_THREAD_LOCAL_P (decl)
7354 && targetm.cxx.use_aeabi_atexit ())
7356 arg1 = cleanup;
7357 arg0 = addr;
7359 else
7361 arg1 = addr;
7362 arg0 = cleanup;
7365 else
7367 arg0 = cleanup;
7368 arg1 = NULL_TREE;
7370 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
7371 arg0, arg1, arg2, NULL_TREE);
7374 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
7375 is its initializer. Generate code to handle the construction
7376 and destruction of DECL. */
7378 static void
7379 expand_static_init (tree decl, tree init)
7381 gcc_assert (VAR_P (decl));
7382 gcc_assert (TREE_STATIC (decl));
7384 /* Some variables require no dynamic initialization. */
7385 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
7387 /* Make sure the destructor is callable. */
7388 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
7389 if (!init)
7390 return;
7393 if (CP_DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
7394 && !DECL_FUNCTION_SCOPE_P (decl))
7396 if (init)
7397 error ("non-local variable %qD declared %<__thread%> "
7398 "needs dynamic initialization", decl);
7399 else
7400 error ("non-local variable %qD declared %<__thread%> "
7401 "has a non-trivial destructor", decl);
7402 static bool informed;
7403 if (!informed)
7405 inform (DECL_SOURCE_LOCATION (decl),
7406 "C++11 %<thread_local%> allows dynamic initialization "
7407 "and destruction");
7408 informed = true;
7410 return;
7413 if (DECL_FUNCTION_SCOPE_P (decl))
7415 /* Emit code to perform this initialization but once. */
7416 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
7417 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
7418 tree guard, guard_addr;
7419 tree flag, begin;
7420 /* We don't need thread-safety code for thread-local vars. */
7421 bool thread_guard = (flag_threadsafe_statics
7422 && !CP_DECL_THREAD_LOCAL_P (decl));
7424 /* Emit code to perform this initialization but once. This code
7425 looks like:
7427 static <type> guard;
7428 if (!__atomic_load (guard.first_byte)) {
7429 if (__cxa_guard_acquire (&guard)) {
7430 bool flag = false;
7431 try {
7432 // Do initialization.
7433 flag = true; __cxa_guard_release (&guard);
7434 // Register variable for destruction at end of program.
7435 } catch {
7436 if (!flag) __cxa_guard_abort (&guard);
7440 Note that the `flag' variable is only set to 1 *after* the
7441 initialization is complete. This ensures that an exception,
7442 thrown during the construction, will cause the variable to
7443 reinitialized when we pass through this code again, as per:
7445 [stmt.dcl]
7447 If the initialization exits by throwing an exception, the
7448 initialization is not complete, so it will be tried again
7449 the next time control enters the declaration.
7451 This process should be thread-safe, too; multiple threads
7452 should not be able to initialize the variable more than
7453 once. */
7455 /* Create the guard variable. */
7456 guard = get_guard (decl);
7458 /* Begin the conditional initialization. */
7459 if_stmt = begin_if_stmt ();
7461 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
7462 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7464 if (thread_guard)
7466 tree vfntype = NULL_TREE;
7467 tree acquire_name, release_name, abort_name;
7468 tree acquire_fn, release_fn, abort_fn;
7469 guard_addr = build_address (guard);
7471 acquire_name = get_identifier ("__cxa_guard_acquire");
7472 release_name = get_identifier ("__cxa_guard_release");
7473 abort_name = get_identifier ("__cxa_guard_abort");
7474 acquire_fn = identifier_global_value (acquire_name);
7475 release_fn = identifier_global_value (release_name);
7476 abort_fn = identifier_global_value (abort_name);
7477 if (!acquire_fn)
7478 acquire_fn = push_library_fn
7479 (acquire_name, build_function_type_list (integer_type_node,
7480 TREE_TYPE (guard_addr),
7481 NULL_TREE),
7482 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
7483 if (!release_fn || !abort_fn)
7484 vfntype = build_function_type_list (void_type_node,
7485 TREE_TYPE (guard_addr),
7486 NULL_TREE);
7487 if (!release_fn)
7488 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
7489 ECF_NOTHROW | ECF_LEAF);
7490 if (!abort_fn)
7491 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
7492 ECF_NOTHROW | ECF_LEAF);
7494 inner_if_stmt = begin_if_stmt ();
7495 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
7496 inner_if_stmt);
7498 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7499 begin = get_target_expr (boolean_false_node);
7500 flag = TARGET_EXPR_SLOT (begin);
7502 TARGET_EXPR_CLEANUP (begin)
7503 = build3 (COND_EXPR, void_type_node, flag,
7504 void_node,
7505 build_call_n (abort_fn, 1, guard_addr));
7506 CLEANUP_EH_ONLY (begin) = 1;
7508 /* Do the initialization itself. */
7509 init = add_stmt_to_compound (begin, init);
7510 init = add_stmt_to_compound
7511 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
7512 init = add_stmt_to_compound
7513 (init, build_call_n (release_fn, 1, guard_addr));
7515 else
7516 init = add_stmt_to_compound (init, set_guard (guard));
7518 /* Use atexit to register a function for destroying this static
7519 variable. */
7520 init = add_stmt_to_compound (init, register_dtor_fn (decl));
7522 finish_expr_stmt (init);
7524 if (thread_guard)
7526 finish_compound_stmt (inner_then_clause);
7527 finish_then_clause (inner_if_stmt);
7528 finish_if_stmt (inner_if_stmt);
7531 finish_compound_stmt (then_clause);
7532 finish_then_clause (if_stmt);
7533 finish_if_stmt (if_stmt);
7535 else if (CP_DECL_THREAD_LOCAL_P (decl))
7536 tls_aggregates = tree_cons (init, decl, tls_aggregates);
7537 else
7538 static_aggregates = tree_cons (init, decl, static_aggregates);
7542 /* Make TYPE a complete type based on INITIAL_VALUE.
7543 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
7544 2 if there was no information (in which case assume 0 if DO_DEFAULT),
7545 3 if the initializer list is empty (in pedantic mode). */
7548 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
7550 int failure;
7551 tree type, elt_type;
7553 /* Don't get confused by a CONSTRUCTOR for some other type. */
7554 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
7555 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value)
7556 && TREE_CODE (TREE_TYPE (initial_value)) != ARRAY_TYPE)
7557 return 1;
7559 if (initial_value)
7561 unsigned HOST_WIDE_INT i;
7562 tree value;
7564 /* An array of character type can be initialized from a
7565 brace-enclosed string constant.
7567 FIXME: this code is duplicated from reshape_init. Probably
7568 we should just call reshape_init here? */
7569 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
7570 && TREE_CODE (initial_value) == CONSTRUCTOR
7571 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
7573 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
7574 tree value = (*v)[0].value;
7576 if (TREE_CODE (value) == STRING_CST
7577 && v->length () == 1)
7578 initial_value = value;
7581 /* If any of the elements are parameter packs, we can't actually
7582 complete this type now because the array size is dependent. */
7583 if (TREE_CODE (initial_value) == CONSTRUCTOR)
7585 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
7586 i, value)
7588 if (PACK_EXPANSION_P (value))
7589 return 0;
7594 failure = complete_array_type (ptype, initial_value, do_default);
7596 /* We can create the array before the element type is complete, which
7597 means that we didn't have these two bits set in the original type
7598 either. In completing the type, we are expected to propagate these
7599 bits. See also complete_type which does the same thing for arrays
7600 of fixed size. */
7601 type = *ptype;
7602 if (TYPE_DOMAIN (type))
7604 elt_type = TREE_TYPE (type);
7605 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
7606 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
7607 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
7610 return failure;
7613 /* As above, but either give an error or reject zero-size arrays, depending
7614 on COMPLAIN. */
7617 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
7618 bool do_default, tsubst_flags_t complain)
7620 int failure;
7621 bool sfinae = !(complain & tf_error);
7622 /* In SFINAE context we can't be lenient about zero-size arrays. */
7623 if (sfinae)
7624 ++pedantic;
7625 failure = cp_complete_array_type (ptype, initial_value, do_default);
7626 if (sfinae)
7627 --pedantic;
7628 if (failure)
7630 if (sfinae)
7631 /* Not an error. */;
7632 else if (failure == 1)
7633 error ("initializer fails to determine size of %qT", *ptype);
7634 else if (failure == 2)
7636 if (do_default)
7637 error ("array size missing in %qT", *ptype);
7639 else if (failure == 3)
7640 error ("zero-size array %qT", *ptype);
7641 *ptype = error_mark_node;
7643 return failure;
7646 /* Return zero if something is declared to be a member of type
7647 CTYPE when in the context of CUR_TYPE. STRING is the error
7648 message to print in that case. Otherwise, quietly return 1. */
7650 static int
7651 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
7653 if (ctype && ctype != cur_type)
7655 if (flags == DTOR_FLAG)
7656 error ("destructor for alien class %qT cannot be a member", ctype);
7657 else
7658 error ("constructor for alien class %qT cannot be a member", ctype);
7659 return 0;
7661 return 1;
7664 /* Subroutine of `grokdeclarator'. */
7666 /* Generate errors possibly applicable for a given set of specifiers.
7667 This is for ARM $7.1.2. */
7669 static void
7670 bad_specifiers (tree object,
7671 enum bad_spec_place type,
7672 int virtualp,
7673 int quals,
7674 int inlinep,
7675 int friendp,
7676 int raises)
7678 switch (type)
7680 case BSP_VAR:
7681 if (virtualp)
7682 error ("%qD declared as a %<virtual%> variable", object);
7683 if (inlinep)
7684 error ("%qD declared as an %<inline%> variable", object);
7685 if (quals)
7686 error ("%<const%> and %<volatile%> function specifiers on "
7687 "%qD invalid in variable declaration", object);
7688 break;
7689 case BSP_PARM:
7690 if (virtualp)
7691 error ("%qD declared as a %<virtual%> parameter", object);
7692 if (inlinep)
7693 error ("%qD declared as an %<inline%> parameter", object);
7694 if (quals)
7695 error ("%<const%> and %<volatile%> function specifiers on "
7696 "%qD invalid in parameter declaration", object);
7697 break;
7698 case BSP_TYPE:
7699 if (virtualp)
7700 error ("%qD declared as a %<virtual%> type", object);
7701 if (inlinep)
7702 error ("%qD declared as an %<inline%> type", object);
7703 if (quals)
7704 error ("%<const%> and %<volatile%> function specifiers on "
7705 "%qD invalid in type declaration", object);
7706 break;
7707 case BSP_FIELD:
7708 if (virtualp)
7709 error ("%qD declared as a %<virtual%> field", object);
7710 if (inlinep)
7711 error ("%qD declared as an %<inline%> field", object);
7712 if (quals)
7713 error ("%<const%> and %<volatile%> function specifiers on "
7714 "%qD invalid in field declaration", object);
7715 break;
7716 default:
7717 gcc_unreachable();
7719 if (friendp)
7720 error ("%q+D declared as a friend", object);
7721 if (raises
7722 && (TREE_CODE (object) == TYPE_DECL
7723 || (!TYPE_PTRFN_P (TREE_TYPE (object))
7724 && !TYPE_REFFN_P (TREE_TYPE (object))
7725 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
7726 error ("%q+D declared with an exception specification", object);
7729 /* DECL is a member function or static data member and is presently
7730 being defined. Check that the definition is taking place in a
7731 valid namespace. */
7733 static void
7734 check_class_member_definition_namespace (tree decl)
7736 /* These checks only apply to member functions and static data
7737 members. */
7738 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
7739 /* We check for problems with specializations in pt.c in
7740 check_specialization_namespace, where we can issue better
7741 diagnostics. */
7742 if (processing_specialization)
7743 return;
7744 /* There are no restrictions on the placement of
7745 explicit instantiations. */
7746 if (processing_explicit_instantiation)
7747 return;
7748 /* [class.mfct]
7750 A member function definition that appears outside of the
7751 class definition shall appear in a namespace scope enclosing
7752 the class definition.
7754 [class.static.data]
7756 The definition for a static data member shall appear in a
7757 namespace scope enclosing the member's class definition. */
7758 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
7759 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
7760 decl, DECL_CONTEXT (decl));
7763 /* Build a PARM_DECL for the "this" parameter. TYPE is the
7764 METHOD_TYPE for a non-static member function; QUALS are the
7765 cv-qualifiers that apply to the function. */
7767 tree
7768 build_this_parm (tree type, cp_cv_quals quals)
7770 tree this_type;
7771 tree qual_type;
7772 tree parm;
7773 cp_cv_quals this_quals;
7775 if (CLASS_TYPE_P (type))
7777 this_type
7778 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
7779 this_type = build_pointer_type (this_type);
7781 else
7782 this_type = type_of_this_parm (type);
7783 /* The `this' parameter is implicitly `const'; it cannot be
7784 assigned to. */
7785 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
7786 qual_type = cp_build_qualified_type (this_type, this_quals);
7787 parm = build_artificial_parm (this_identifier, qual_type);
7788 cp_apply_type_quals_to_decl (this_quals, parm);
7789 return parm;
7792 /* DECL is a static member function. Complain if it was declared
7793 with function-cv-quals. */
7795 static void
7796 check_static_quals (tree decl, cp_cv_quals quals)
7798 if (quals != TYPE_UNQUALIFIED)
7799 error ("static member function %q#D declared with type qualifiers",
7800 decl);
7803 // Check that FN takes no arguments and returns bool.
7804 static void
7805 check_concept_fn (tree fn)
7807 // A constraint is nullary.
7808 if (DECL_ARGUMENTS (fn))
7809 error ("concept %q#D declared with function parameters", fn);
7811 // The declared return type of the concept shall be bool, and
7812 // it shall not be deduced from it definition.
7813 tree type = TREE_TYPE (TREE_TYPE (fn));
7814 if (is_auto (type))
7815 error ("concept %q#D declared with a deduced return type", fn);
7816 else if (type != boolean_type_node)
7817 error ("concept %q#D with non-%<bool%> return type %qT", fn, type);
7820 /* Helper function. Replace the temporary this parameter injected
7821 during cp_finish_omp_declare_simd with the real this parameter. */
7823 static tree
7824 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
7826 tree this_parm = (tree) data;
7827 if (TREE_CODE (*tp) == PARM_DECL
7828 && DECL_NAME (*tp) == this_identifier
7829 && *tp != this_parm)
7830 *tp = this_parm;
7831 else if (TYPE_P (*tp))
7832 *walk_subtrees = 0;
7833 return NULL_TREE;
7836 /* CTYPE is class type, or null if non-class.
7837 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
7838 or METHOD_TYPE.
7839 DECLARATOR is the function's name.
7840 PARMS is a chain of PARM_DECLs for the function.
7841 VIRTUALP is truthvalue of whether the function is virtual or not.
7842 FLAGS are to be passed through to `grokclassfn'.
7843 QUALS are qualifiers indicating whether the function is `const'
7844 or `volatile'.
7845 RAISES is a list of exceptions that this function can raise.
7846 CHECK is 1 if we must find this method in CTYPE, 0 if we should
7847 not look, and -1 if we should not call `grokclassfn' at all.
7849 SFK is the kind of special function (if any) for the new function.
7851 Returns `NULL_TREE' if something goes wrong, after issuing
7852 applicable error messages. */
7854 static tree
7855 grokfndecl (tree ctype,
7856 tree type,
7857 tree declarator,
7858 tree parms,
7859 tree orig_declarator,
7860 tree decl_reqs,
7861 int virtualp,
7862 enum overload_flags flags,
7863 cp_cv_quals quals,
7864 cp_ref_qualifier rqual,
7865 tree raises,
7866 int check,
7867 int friendp,
7868 int publicp,
7869 int inlinep,
7870 bool deletedp,
7871 special_function_kind sfk,
7872 bool funcdef_flag,
7873 int template_count,
7874 tree in_namespace,
7875 tree* attrlist,
7876 location_t location)
7878 tree decl;
7879 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
7880 tree t;
7882 // Was the concept specifier present?
7883 bool concept_p = inlinep & 4;
7885 // Concept declarations must have a corresponding definition.
7886 if (concept_p && !funcdef_flag)
7888 error ("concept %qD has no definition", declarator);
7889 return NULL_TREE;
7892 if (rqual)
7893 type = build_ref_qualified_type (type, rqual);
7894 if (raises)
7895 type = build_exception_variant (type, raises);
7897 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
7899 /* Set the constraints on the declaration. */
7900 if (flag_concepts)
7902 tree tmpl_reqs = NULL_TREE;
7903 if (processing_template_decl > template_class_depth (ctype))
7904 tmpl_reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
7906 /* Adjust the required expression into a constraint. */
7907 if (decl_reqs)
7908 decl_reqs = make_predicate_constraint (decl_reqs);
7910 tree ci = build_constraints (tmpl_reqs, decl_reqs);
7911 set_constraints (decl, ci);
7914 /* If we have an explicit location, use it, otherwise use whatever
7915 build_lang_decl used (probably input_location). */
7916 if (location != UNKNOWN_LOCATION)
7917 DECL_SOURCE_LOCATION (decl) = location;
7919 if (TREE_CODE (type) == METHOD_TYPE)
7921 tree parm;
7922 parm = build_this_parm (type, quals);
7923 DECL_CHAIN (parm) = parms;
7924 parms = parm;
7926 /* Allocate space to hold the vptr bit if needed. */
7927 SET_DECL_ALIGN (decl, MINIMUM_METHOD_BOUNDARY);
7929 DECL_ARGUMENTS (decl) = parms;
7930 for (t = parms; t; t = DECL_CHAIN (t))
7931 DECL_CONTEXT (t) = decl;
7932 /* Propagate volatile out from type to decl. */
7933 if (TYPE_VOLATILE (type))
7934 TREE_THIS_VOLATILE (decl) = 1;
7936 /* Setup decl according to sfk. */
7937 switch (sfk)
7939 case sfk_constructor:
7940 case sfk_copy_constructor:
7941 case sfk_move_constructor:
7942 DECL_CONSTRUCTOR_P (decl) = 1;
7943 break;
7944 case sfk_destructor:
7945 DECL_DESTRUCTOR_P (decl) = 1;
7946 break;
7947 default:
7948 break;
7951 if (friendp
7952 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
7954 if (funcdef_flag)
7955 error
7956 ("defining explicit specialization %qD in friend declaration",
7957 orig_declarator);
7958 else
7960 tree fns = TREE_OPERAND (orig_declarator, 0);
7961 tree args = TREE_OPERAND (orig_declarator, 1);
7963 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
7965 /* Something like `template <class T> friend void f<T>()'. */
7966 error ("invalid use of template-id %qD in declaration "
7967 "of primary template",
7968 orig_declarator);
7969 return NULL_TREE;
7973 /* A friend declaration of the form friend void f<>(). Record
7974 the information in the TEMPLATE_ID_EXPR. */
7975 SET_DECL_IMPLICIT_INSTANTIATION (decl);
7977 gcc_assert (identifier_p (fns) || TREE_CODE (fns) == OVERLOAD);
7978 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
7980 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
7981 if (TREE_PURPOSE (t)
7982 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
7984 error ("default arguments are not allowed in declaration "
7985 "of friend template specialization %qD",
7986 decl);
7987 return NULL_TREE;
7990 if (inlinep & 1)
7992 error ("%<inline%> is not allowed in declaration of friend "
7993 "template specialization %qD",
7994 decl);
7995 return NULL_TREE;
8000 /* If this decl has namespace scope, set that up. */
8001 if (in_namespace)
8002 set_decl_namespace (decl, in_namespace, friendp);
8003 else if (!ctype)
8004 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
8006 /* `main' and builtins have implicit 'C' linkage. */
8007 if ((MAIN_NAME_P (declarator)
8008 || (IDENTIFIER_LENGTH (declarator) > 10
8009 && IDENTIFIER_POINTER (declarator)[0] == '_'
8010 && IDENTIFIER_POINTER (declarator)[1] == '_'
8011 && strncmp (IDENTIFIER_POINTER (declarator)+2, "builtin_", 8) == 0)
8012 || (targetcm.cxx_implicit_extern_c
8013 && targetcm.cxx_implicit_extern_c(IDENTIFIER_POINTER (declarator))))
8014 && current_lang_name == lang_name_cplusplus
8015 && ctype == NULL_TREE
8016 && DECL_FILE_SCOPE_P (decl))
8017 SET_DECL_LANGUAGE (decl, lang_c);
8019 /* Should probably propagate const out from type to decl I bet (mrs). */
8020 if (staticp)
8022 DECL_STATIC_FUNCTION_P (decl) = 1;
8023 DECL_CONTEXT (decl) = ctype;
8026 if (deletedp)
8027 DECL_DELETED_FN (decl) = 1;
8029 if (ctype)
8031 DECL_CONTEXT (decl) = ctype;
8032 if (funcdef_flag)
8033 check_class_member_definition_namespace (decl);
8036 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8038 if (PROCESSING_REAL_TEMPLATE_DECL_P())
8039 error ("cannot declare %<::main%> to be a template");
8040 if (inlinep & 1)
8041 error ("cannot declare %<::main%> to be inline");
8042 if (inlinep & 2)
8043 error ("cannot declare %<::main%> to be constexpr");
8044 if (!publicp)
8045 error ("cannot declare %<::main%> to be static");
8046 inlinep = 0;
8047 publicp = 1;
8050 /* Members of anonymous types and local classes have no linkage; make
8051 them internal. If a typedef is made later, this will be changed. */
8052 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
8053 || decl_function_context (TYPE_MAIN_DECL (ctype))))
8054 publicp = 0;
8056 if (publicp && cxx_dialect == cxx98)
8058 /* [basic.link]: A name with no linkage (notably, the name of a class
8059 or enumeration declared in a local scope) shall not be used to
8060 declare an entity with linkage.
8062 DR 757 relaxes this restriction for C++0x. */
8063 no_linkage_error (decl);
8066 TREE_PUBLIC (decl) = publicp;
8067 if (! publicp)
8069 DECL_INTERFACE_KNOWN (decl) = 1;
8070 DECL_NOT_REALLY_EXTERN (decl) = 1;
8073 /* If the declaration was declared inline, mark it as such. */
8074 if (inlinep)
8076 DECL_DECLARED_INLINE_P (decl) = 1;
8077 if (publicp)
8078 DECL_COMDAT (decl) = 1;
8080 if (inlinep & 2)
8081 DECL_DECLARED_CONSTEXPR_P (decl) = true;
8083 // If the concept declaration specifier was found, check
8084 // that the declaration satisfies the necessary requirements.
8085 if (concept_p)
8087 DECL_DECLARED_CONCEPT_P (decl) = true;
8088 check_concept_fn (decl);
8091 DECL_EXTERNAL (decl) = 1;
8092 if (TREE_CODE (type) == FUNCTION_TYPE)
8094 if (quals || rqual)
8095 TREE_TYPE (decl) = apply_memfn_quals (TREE_TYPE (decl),
8096 TYPE_UNQUALIFIED,
8097 REF_QUAL_NONE);
8099 if (quals)
8101 error (ctype
8102 ? G_("static member function %qD cannot have cv-qualifier")
8103 : G_("non-member function %qD cannot have cv-qualifier"),
8104 decl);
8105 quals = TYPE_UNQUALIFIED;
8108 if (rqual)
8110 error (ctype
8111 ? G_("static member function %qD cannot have ref-qualifier")
8112 : G_("non-member function %qD cannot have ref-qualifier"),
8113 decl);
8114 rqual = REF_QUAL_NONE;
8118 if (IDENTIFIER_OPNAME_P (DECL_NAME (decl))
8119 && !grok_op_properties (decl, /*complain=*/true))
8120 return NULL_TREE;
8121 else if (UDLIT_OPER_P (DECL_NAME (decl)))
8123 bool long_long_unsigned_p;
8124 bool long_double_p;
8125 const char *suffix = NULL;
8126 /* [over.literal]/6: Literal operators shall not have C linkage. */
8127 if (DECL_LANGUAGE (decl) == lang_c)
8129 error ("literal operator with C linkage");
8130 return NULL_TREE;
8133 if (DECL_NAMESPACE_SCOPE_P (decl))
8135 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
8136 &long_double_p))
8138 error ("%qD has invalid argument list", decl);
8139 return NULL_TREE;
8142 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
8143 if (long_long_unsigned_p)
8145 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
8146 warning (0, "integer suffix %<%s%>"
8147 " shadowed by implementation", suffix);
8149 else if (long_double_p)
8151 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
8152 warning (0, "floating point suffix %<%s%>"
8153 " shadowed by implementation", suffix);
8156 else
8158 error ("%qD must be a non-member function", decl);
8159 return NULL_TREE;
8163 if (funcdef_flag)
8164 /* Make the init_value nonzero so pushdecl knows this is not
8165 tentative. error_mark_node is replaced later with the BLOCK. */
8166 DECL_INITIAL (decl) = error_mark_node;
8168 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
8169 TREE_NOTHROW (decl) = 1;
8171 if (flag_openmp || flag_openmp_simd || flag_cilkplus)
8173 /* Adjust "omp declare simd" attributes. */
8174 tree ods = lookup_attribute ("omp declare simd", *attrlist);
8175 if (ods)
8177 tree attr;
8178 for (attr = ods; attr;
8179 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
8181 if (TREE_CODE (type) == METHOD_TYPE)
8182 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
8183 DECL_ARGUMENTS (decl), NULL);
8184 if (TREE_VALUE (attr) != NULL_TREE)
8186 tree cl = TREE_VALUE (TREE_VALUE (attr));
8187 cl = c_omp_declare_simd_clauses_to_numbers
8188 (DECL_ARGUMENTS (decl), cl);
8189 if (cl)
8190 TREE_VALUE (TREE_VALUE (attr)) = cl;
8191 else
8192 TREE_VALUE (attr) = NULL_TREE;
8198 /* Caller will do the rest of this. */
8199 if (check < 0)
8200 return decl;
8202 if (ctype != NULL_TREE)
8203 grokclassfn (ctype, decl, flags);
8205 /* 12.4/3 */
8206 if (cxx_dialect >= cxx11
8207 && DECL_DESTRUCTOR_P (decl)
8208 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
8209 && !processing_template_decl)
8210 deduce_noexcept_on_destructor (decl);
8212 decl = check_explicit_specialization (orig_declarator, decl,
8213 template_count,
8214 2 * funcdef_flag +
8215 4 * (friendp != 0) +
8216 8 * concept_p);
8217 if (decl == error_mark_node)
8218 return NULL_TREE;
8220 if (DECL_STATIC_FUNCTION_P (decl))
8221 check_static_quals (decl, quals);
8223 if (attrlist)
8225 cplus_decl_attributes (&decl, *attrlist, 0);
8226 *attrlist = NULL_TREE;
8229 /* Check main's type after attributes have been applied. */
8230 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8232 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
8233 integer_type_node))
8235 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
8236 tree newtype;
8237 error ("%<::main%> must return %<int%>");
8238 newtype = build_function_type (integer_type_node, oldtypeargs);
8239 TREE_TYPE (decl) = newtype;
8241 if (warn_main)
8242 check_main_parameter_types (decl);
8245 if (ctype != NULL_TREE
8246 && (! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
8247 && check)
8249 tree old_decl = check_classfn (ctype, decl,
8250 (processing_template_decl
8251 > template_class_depth (ctype))
8252 ? current_template_parms
8253 : NULL_TREE);
8255 if (old_decl == error_mark_node)
8256 return NULL_TREE;
8258 if (old_decl)
8260 tree ok;
8261 tree pushed_scope;
8263 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
8264 /* Because grokfndecl is always supposed to return a
8265 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
8266 here. We depend on our callers to figure out that its
8267 really a template that's being returned. */
8268 old_decl = DECL_TEMPLATE_RESULT (old_decl);
8270 if (DECL_STATIC_FUNCTION_P (old_decl)
8271 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
8273 /* Remove the `this' parm added by grokclassfn. */
8274 revert_static_member_fn (decl);
8275 check_static_quals (decl, quals);
8277 if (DECL_ARTIFICIAL (old_decl))
8279 error ("definition of implicitly-declared %qD", old_decl);
8280 return NULL_TREE;
8282 else if (DECL_DEFAULTED_FN (old_decl))
8284 error ("definition of explicitly-defaulted %q+D", decl);
8285 error ("%q+#D explicitly defaulted here", old_decl);
8286 return NULL_TREE;
8289 /* Since we've smashed OLD_DECL to its
8290 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
8291 if (TREE_CODE (decl) == TEMPLATE_DECL)
8292 decl = DECL_TEMPLATE_RESULT (decl);
8294 /* Attempt to merge the declarations. This can fail, in
8295 the case of some invalid specialization declarations. */
8296 pushed_scope = push_scope (ctype);
8297 ok = duplicate_decls (decl, old_decl, friendp);
8298 if (pushed_scope)
8299 pop_scope (pushed_scope);
8300 if (!ok)
8302 error ("no %q#D member function declared in class %qT",
8303 decl, ctype);
8304 return NULL_TREE;
8306 if (ok == error_mark_node)
8307 return NULL_TREE;
8308 return old_decl;
8312 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
8313 return NULL_TREE;
8315 if (ctype == NULL_TREE || check)
8316 return decl;
8318 if (virtualp)
8319 DECL_VIRTUAL_P (decl) = 1;
8321 return decl;
8324 /* decl is a FUNCTION_DECL.
8325 specifiers are the parsed virt-specifiers.
8327 Set flags to reflect the virt-specifiers.
8329 Returns decl. */
8331 static tree
8332 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
8334 if (decl == NULL_TREE)
8335 return decl;
8336 if (specifiers & VIRT_SPEC_OVERRIDE)
8337 DECL_OVERRIDE_P (decl) = 1;
8338 if (specifiers & VIRT_SPEC_FINAL)
8339 DECL_FINAL_P (decl) = 1;
8340 return decl;
8343 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
8344 the linkage that DECL will receive in the object file. */
8346 static void
8347 set_linkage_for_static_data_member (tree decl)
8349 /* A static data member always has static storage duration and
8350 external linkage. Note that static data members are forbidden in
8351 local classes -- the only situation in which a class has
8352 non-external linkage. */
8353 TREE_PUBLIC (decl) = 1;
8354 TREE_STATIC (decl) = 1;
8355 /* For non-template classes, static data members are always put
8356 out in exactly those files where they are defined, just as
8357 with ordinary namespace-scope variables. */
8358 if (!processing_template_decl)
8359 DECL_INTERFACE_KNOWN (decl) = 1;
8362 /* Create a VAR_DECL named NAME with the indicated TYPE.
8364 If SCOPE is non-NULL, it is the class type or namespace containing
8365 the variable. If SCOPE is NULL, the variable should is created in
8366 the innermost enclosing scope. */
8368 static tree
8369 grokvardecl (tree type,
8370 tree name,
8371 tree orig_declarator,
8372 const cp_decl_specifier_seq *declspecs,
8373 int initialized,
8374 int flags,
8375 int template_count,
8376 tree scope)
8378 tree decl;
8379 tree explicit_scope;
8381 gcc_assert (!name || identifier_p (name));
8383 bool constp = flags&1;
8384 bool conceptp = flags&2;
8386 /* Compute the scope in which to place the variable, but remember
8387 whether or not that scope was explicitly specified by the user. */
8388 explicit_scope = scope;
8389 if (!scope)
8391 /* An explicit "extern" specifier indicates a namespace-scope
8392 variable. */
8393 if (declspecs->storage_class == sc_extern)
8394 scope = current_decl_namespace ();
8395 else if (!at_function_scope_p ())
8396 scope = current_scope ();
8399 if (scope
8400 && (/* If the variable is a namespace-scope variable declared in a
8401 template, we need DECL_LANG_SPECIFIC. */
8402 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
8403 /* Similarly for namespace-scope variables with language linkage
8404 other than C++. */
8405 || (TREE_CODE (scope) == NAMESPACE_DECL
8406 && current_lang_name != lang_name_cplusplus)
8407 /* Similarly for static data members. */
8408 || TYPE_P (scope)
8409 /* Similarly for explicit specializations. */
8410 || (orig_declarator
8411 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
8412 decl = build_lang_decl (VAR_DECL, name, type);
8413 else
8414 decl = build_decl (input_location, VAR_DECL, name, type);
8416 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
8417 set_decl_namespace (decl, explicit_scope, 0);
8418 else
8419 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
8421 if (declspecs->storage_class == sc_extern)
8423 DECL_THIS_EXTERN (decl) = 1;
8424 DECL_EXTERNAL (decl) = !initialized;
8427 if (DECL_CLASS_SCOPE_P (decl))
8429 set_linkage_for_static_data_member (decl);
8430 /* This function is only called with out-of-class definitions. */
8431 DECL_EXTERNAL (decl) = 0;
8432 check_class_member_definition_namespace (decl);
8434 /* At top level, either `static' or no s.c. makes a definition
8435 (perhaps tentative), and absence of `static' makes it public. */
8436 else if (toplevel_bindings_p ())
8438 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
8439 && (DECL_THIS_EXTERN (decl) || ! constp));
8440 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
8442 /* Not at top level, only `static' makes a static definition. */
8443 else
8445 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
8446 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
8449 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
8451 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
8453 CP_DECL_THREAD_LOCAL_P (decl) = true;
8454 if (!processing_template_decl)
8455 set_decl_tls_model (decl, decl_default_tls_model (decl));
8457 if (declspecs->gnu_thread_keyword_p)
8458 SET_DECL_GNU_TLS_P (decl);
8461 /* If the type of the decl has no linkage, make sure that we'll
8462 notice that in mark_used. */
8463 if (cxx_dialect > cxx98
8464 && decl_linkage (decl) != lk_none
8465 && DECL_LANG_SPECIFIC (decl) == NULL
8466 && !DECL_EXTERN_C_P (decl)
8467 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
8468 retrofit_lang_decl (decl);
8470 if (TREE_PUBLIC (decl))
8472 /* [basic.link]: A name with no linkage (notably, the name of a class
8473 or enumeration declared in a local scope) shall not be used to
8474 declare an entity with linkage.
8476 DR 757 relaxes this restriction for C++0x. */
8477 if (cxx_dialect < cxx11)
8478 no_linkage_error (decl);
8480 else
8481 DECL_INTERFACE_KNOWN (decl) = 1;
8483 if (DECL_NAME (decl)
8484 && MAIN_NAME_P (DECL_NAME (decl))
8485 && scope == global_namespace)
8486 error ("cannot declare %<::main%> to be a global variable");
8488 /* Check that the variable can be safely declared as a concept.
8489 Note that this also forbids explicit specializations. */
8490 if (conceptp)
8492 if (!processing_template_decl)
8494 error ("a non-template variable cannot be %<concept%>");
8495 return NULL_TREE;
8497 else
8498 DECL_DECLARED_CONCEPT_P (decl) = true;
8499 if (!same_type_ignoring_top_level_qualifiers_p (type, boolean_type_node))
8500 error_at (declspecs->locations[ds_type_spec],
8501 "concept must have type %<bool%>");
8503 else if (flag_concepts
8504 && processing_template_decl > template_class_depth (scope))
8506 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
8507 tree ci = build_constraints (reqs, NULL_TREE);
8508 set_constraints (decl, ci);
8511 // Handle explicit specializations and instantiations of variable templates.
8512 if (orig_declarator)
8513 decl = check_explicit_specialization (orig_declarator, decl,
8514 template_count, conceptp * 8);
8516 return decl != error_mark_node ? decl : NULL_TREE;
8519 /* Create and return a canonical pointer to member function type, for
8520 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
8522 tree
8523 build_ptrmemfunc_type (tree type)
8525 tree field, fields;
8526 tree t;
8528 if (type == error_mark_node)
8529 return type;
8531 /* Make sure that we always have the unqualified pointer-to-member
8532 type first. */
8533 if (cp_cv_quals quals = cp_type_quals (type))
8535 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
8536 return cp_build_qualified_type (unqual, quals);
8539 /* If a canonical type already exists for this type, use it. We use
8540 this method instead of type_hash_canon, because it only does a
8541 simple equality check on the list of field members. */
8543 if ((t = TYPE_GET_PTRMEMFUNC_TYPE (type)))
8544 return t;
8546 t = make_node (RECORD_TYPE);
8548 /* Let the front end know this is a pointer to member function. */
8549 TYPE_PTRMEMFUNC_FLAG (t) = 1;
8551 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
8552 fields = field;
8554 field = build_decl (input_location, FIELD_DECL, delta_identifier,
8555 delta_type_node);
8556 DECL_CHAIN (field) = fields;
8557 fields = field;
8559 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
8561 /* Zap out the name so that the back end will give us the debugging
8562 information for this anonymous RECORD_TYPE. */
8563 TYPE_NAME (t) = NULL_TREE;
8565 /* Cache this pointer-to-member type so that we can find it again
8566 later. */
8567 TYPE_SET_PTRMEMFUNC_TYPE (type, t);
8569 if (TYPE_STRUCTURAL_EQUALITY_P (type))
8570 SET_TYPE_STRUCTURAL_EQUALITY (t);
8571 else if (TYPE_CANONICAL (type) != type)
8572 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
8574 return t;
8577 /* Create and return a pointer to data member type. */
8579 tree
8580 build_ptrmem_type (tree class_type, tree member_type)
8582 if (TREE_CODE (member_type) == METHOD_TYPE)
8584 cp_cv_quals quals = type_memfn_quals (member_type);
8585 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
8586 member_type = build_memfn_type (member_type, class_type, quals, rqual);
8587 return build_ptrmemfunc_type (build_pointer_type (member_type));
8589 else
8591 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
8592 return build_offset_type (class_type, member_type);
8596 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
8597 Check to see that the definition is valid. Issue appropriate error
8598 messages. Return 1 if the definition is particularly bad, or 0
8599 otherwise. */
8601 static int
8602 check_static_variable_definition (tree decl, tree type)
8604 /* Can't check yet if we don't know the type. */
8605 if (dependent_type_p (type))
8606 return 0;
8607 /* If DECL is declared constexpr, we'll do the appropriate checks
8608 in check_initializer. */
8609 if (DECL_P (decl) && DECL_DECLARED_CONSTEXPR_P (decl))
8610 return 0;
8611 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8613 if (!COMPLETE_TYPE_P (type))
8614 error ("in-class initialization of static data member %q#D of "
8615 "incomplete type", decl);
8616 else if (literal_type_p (type))
8617 permerror (input_location,
8618 "%<constexpr%> needed for in-class initialization of "
8619 "static data member %q#D of non-integral type", decl);
8620 else
8621 error ("in-class initialization of static data member %q#D of "
8622 "non-literal type", decl);
8623 return 1;
8626 /* Motion 10 at San Diego: If a static const integral data member is
8627 initialized with an integral constant expression, the initializer
8628 may appear either in the declaration (within the class), or in
8629 the definition, but not both. If it appears in the class, the
8630 member is a member constant. The file-scope definition is always
8631 required. */
8632 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
8634 error ("invalid in-class initialization of static data member "
8635 "of non-integral type %qT",
8636 type);
8637 return 1;
8639 else if (!CP_TYPE_CONST_P (type))
8640 error ("ISO C++ forbids in-class initialization of non-const "
8641 "static member %qD",
8642 decl);
8643 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8644 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids initialization of member constant "
8645 "%qD of non-integral type %qT", decl, type);
8647 return 0;
8650 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
8651 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
8652 expressions out into temporary variables so that walk_tree doesn't
8653 step into them (c++/15764). */
8655 static tree
8656 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
8658 hash_set<tree> *pset = (hash_set<tree> *)data;
8659 tree expr = *expr_p;
8660 if (TREE_CODE (expr) == SAVE_EXPR)
8662 tree op = TREE_OPERAND (expr, 0);
8663 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
8664 if (TREE_SIDE_EFFECTS (op))
8665 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
8666 *walk_subtrees = 0;
8668 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
8669 *walk_subtrees = 0;
8670 return NULL;
8673 /* Entry point for the above. */
8675 static void
8676 stabilize_vla_size (tree size)
8678 hash_set<tree> pset;
8679 /* Break out any function calls into temporary variables. */
8680 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
8683 /* Reduce a SIZEOF_EXPR to its value. */
8685 tree
8686 fold_sizeof_expr (tree t)
8688 tree r;
8689 if (SIZEOF_EXPR_TYPE_P (t))
8690 r = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (t, 0)),
8691 SIZEOF_EXPR, false);
8692 else if (TYPE_P (TREE_OPERAND (t, 0)))
8693 r = cxx_sizeof_or_alignof_type (TREE_OPERAND (t, 0), SIZEOF_EXPR,
8694 false);
8695 else
8696 r = cxx_sizeof_or_alignof_expr (TREE_OPERAND (t, 0), SIZEOF_EXPR,
8697 false);
8698 if (r == error_mark_node)
8699 r = size_one_node;
8700 return r;
8703 /* Given the SIZE (i.e., number of elements) in an array, compute
8704 an appropriate index type for the array. If non-NULL, NAME is
8705 the name of the entity being declared. */
8707 tree
8708 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
8710 tree itype;
8711 tree osize = size;
8713 if (error_operand_p (size))
8714 return error_mark_node;
8716 if (!type_dependent_expression_p (size))
8718 tree type = TREE_TYPE (size);
8720 mark_rvalue_use (size);
8722 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
8723 && TREE_SIDE_EFFECTS (size))
8724 /* In C++98, we mark a non-constant array bound with a magic
8725 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
8726 else
8728 size = instantiate_non_dependent_expr_sfinae (size, complain);
8730 if (CLASS_TYPE_P (type)
8731 && CLASSTYPE_LITERAL_P (type))
8733 size = build_expr_type_conversion (WANT_INT, size, true);
8734 if (!size)
8736 if (!(complain & tf_error))
8737 return error_mark_node;
8738 if (name)
8739 error ("size of array %qD has non-integral type %qT",
8740 name, type);
8741 else
8742 error ("size of array has non-integral type %qT", type);
8743 size = integer_one_node;
8745 if (size == error_mark_node)
8746 return error_mark_node;
8747 type = TREE_TYPE (size);
8750 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8751 size = maybe_constant_value (size);
8753 if (!TREE_CONSTANT (size))
8754 size = osize;
8757 if (error_operand_p (size))
8758 return error_mark_node;
8760 /* The array bound must be an integer type. */
8761 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8763 if (!(complain & tf_error))
8764 return error_mark_node;
8765 if (name)
8766 error ("size of array %qD has non-integral type %qT", name, type);
8767 else
8768 error ("size of array has non-integral type %qT", type);
8769 size = integer_one_node;
8770 type = TREE_TYPE (size);
8774 /* A type is dependent if it is...an array type constructed from any
8775 dependent type or whose size is specified by a constant expression
8776 that is value-dependent. */
8777 /* We can only call value_dependent_expression_p on integral constant
8778 expressions; treat non-constant expressions as dependent, too. */
8779 if (processing_template_decl
8780 && (type_dependent_expression_p (size)
8781 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
8783 /* We cannot do any checking for a SIZE that isn't known to be
8784 constant. Just build the index type and mark that it requires
8785 structural equality checks. */
8786 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
8787 size, size_one_node));
8788 TYPE_DEPENDENT_P (itype) = 1;
8789 TYPE_DEPENDENT_P_VALID (itype) = 1;
8790 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8791 return itype;
8794 if (TREE_CODE (size) != INTEGER_CST)
8796 tree folded = cp_fully_fold (size);
8797 if (TREE_CODE (folded) == INTEGER_CST)
8798 pedwarn (location_of (size), OPT_Wpedantic,
8799 "size of array is not an integral constant-expression");
8800 /* Use the folded result for VLAs, too; it will have resolved
8801 SIZEOF_EXPR. */
8802 size = folded;
8805 /* Normally, the array-bound will be a constant. */
8806 if (TREE_CODE (size) == INTEGER_CST)
8808 /* Check to see if the array bound overflowed. Make that an
8809 error, no matter how generous we're being. */
8810 constant_expression_error (size);
8812 /* An array must have a positive number of elements. */
8813 if (tree_int_cst_lt (size, integer_zero_node))
8815 if (!(complain & tf_error))
8816 return error_mark_node;
8817 if (name)
8818 error ("size of array %qD is negative", name);
8819 else
8820 error ("size of array is negative");
8821 size = integer_one_node;
8823 /* As an extension we allow zero-sized arrays. */
8824 else if (integer_zerop (size))
8826 if (!(complain & tf_error))
8827 /* We must fail if performing argument deduction (as
8828 indicated by the state of complain), so that
8829 another substitution can be found. */
8830 return error_mark_node;
8831 else if (in_system_header_at (input_location))
8832 /* Allow them in system headers because glibc uses them. */;
8833 else if (name)
8834 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array %qD", name);
8835 else
8836 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array");
8839 else if (TREE_CONSTANT (size)
8840 /* We don't allow VLAs at non-function scopes, or during
8841 tentative template substitution. */
8842 || !at_function_scope_p ()
8843 || !(complain & tf_error))
8845 if (!(complain & tf_error))
8846 return error_mark_node;
8847 /* `(int) &fn' is not a valid array bound. */
8848 if (name)
8849 error ("size of array %qD is not an integral constant-expression",
8850 name);
8851 else
8852 error ("size of array is not an integral constant-expression");
8853 size = integer_one_node;
8855 else if (pedantic && warn_vla != 0)
8857 if (name)
8858 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array %qD", name);
8859 else
8860 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array");
8862 else if (warn_vla > 0)
8864 if (name)
8865 warning (OPT_Wvla,
8866 "variable length array %qD is used", name);
8867 else
8868 warning (OPT_Wvla,
8869 "variable length array is used");
8872 if (processing_template_decl && !TREE_CONSTANT (size))
8873 /* A variable sized array. */
8874 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
8875 else
8877 HOST_WIDE_INT saved_processing_template_decl;
8879 /* Compute the index of the largest element in the array. It is
8880 one less than the number of elements in the array. We save
8881 and restore PROCESSING_TEMPLATE_DECL so that computations in
8882 cp_build_binary_op will be appropriately folded. */
8883 saved_processing_template_decl = processing_template_decl;
8884 processing_template_decl = 0;
8885 itype = cp_build_binary_op (input_location,
8886 MINUS_EXPR,
8887 cp_convert (ssizetype, size, complain),
8888 cp_convert (ssizetype, integer_one_node,
8889 complain),
8890 complain);
8891 itype = maybe_constant_value (itype);
8892 processing_template_decl = saved_processing_template_decl;
8894 if (!TREE_CONSTANT (itype))
8896 /* A variable sized array. */
8897 itype = variable_size (itype);
8899 stabilize_vla_size (itype);
8901 if (flag_sanitize & SANITIZE_VLA
8902 && do_ubsan_in_current_function ())
8904 /* We have to add 1 -- in the ubsan routine we generate
8905 LE_EXPR rather than LT_EXPR. */
8906 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
8907 build_one_cst (TREE_TYPE (itype)));
8908 t = ubsan_instrument_vla (input_location, t);
8909 finish_expr_stmt (t);
8912 /* Make sure that there was no overflow when creating to a signed
8913 index type. (For example, on a 32-bit machine, an array with
8914 size 2^32 - 1 is too big.) */
8915 else if (TREE_CODE (itype) == INTEGER_CST
8916 && TREE_OVERFLOW (itype))
8918 if (!(complain & tf_error))
8919 return error_mark_node;
8920 error ("overflow in array dimension");
8921 TREE_OVERFLOW (itype) = 0;
8925 /* Create and return the appropriate index type. */
8926 itype = build_index_type (itype);
8928 /* If the index type were dependent, we would have returned early, so
8929 remember that it isn't. */
8930 TYPE_DEPENDENT_P (itype) = 0;
8931 TYPE_DEPENDENT_P_VALID (itype) = 1;
8932 return itype;
8935 /* Returns the scope (if any) in which the entity declared by
8936 DECLARATOR will be located. If the entity was declared with an
8937 unqualified name, NULL_TREE is returned. */
8939 tree
8940 get_scope_of_declarator (const cp_declarator *declarator)
8942 while (declarator && declarator->kind != cdk_id)
8943 declarator = declarator->declarator;
8945 /* If the declarator-id is a SCOPE_REF, the scope in which the
8946 declaration occurs is the first operand. */
8947 if (declarator
8948 && declarator->u.id.qualifying_scope)
8949 return declarator->u.id.qualifying_scope;
8951 /* Otherwise, the declarator is not a qualified name; the entity will
8952 be declared in the current scope. */
8953 return NULL_TREE;
8956 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
8957 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
8958 with this type. */
8960 static tree
8961 create_array_type_for_decl (tree name, tree type, tree size)
8963 tree itype = NULL_TREE;
8965 /* If things have already gone awry, bail now. */
8966 if (type == error_mark_node || size == error_mark_node)
8967 return error_mark_node;
8969 /* 8.3.4/1: If the type of the identifier of D contains the auto
8970 type-specifier, the program is ill-formed. */
8971 if (type_uses_auto (type))
8973 error ("%qD declared as array of %qT", name, type);
8974 return error_mark_node;
8977 /* If there are some types which cannot be array elements,
8978 issue an error-message and return. */
8979 switch (TREE_CODE (type))
8981 case VOID_TYPE:
8982 if (name)
8983 error ("declaration of %qD as array of void", name);
8984 else
8985 error ("creating array of void");
8986 return error_mark_node;
8988 case FUNCTION_TYPE:
8989 if (name)
8990 error ("declaration of %qD as array of functions", name);
8991 else
8992 error ("creating array of functions");
8993 return error_mark_node;
8995 case REFERENCE_TYPE:
8996 if (name)
8997 error ("declaration of %qD as array of references", name);
8998 else
8999 error ("creating array of references");
9000 return error_mark_node;
9002 case METHOD_TYPE:
9003 if (name)
9004 error ("declaration of %qD as array of function members", name);
9005 else
9006 error ("creating array of function members");
9007 return error_mark_node;
9009 default:
9010 break;
9013 /* [dcl.array]
9015 The constant expressions that specify the bounds of the arrays
9016 can be omitted only for the first member of the sequence. */
9017 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
9019 if (name)
9020 error ("declaration of %qD as multidimensional array must "
9021 "have bounds for all dimensions except the first",
9022 name);
9023 else
9024 error ("multidimensional array must have bounds for all "
9025 "dimensions except the first");
9027 return error_mark_node;
9030 /* Figure out the index type for the array. */
9031 if (size)
9032 itype = compute_array_index_type (name, size, tf_warning_or_error);
9034 /* [dcl.array]
9035 T is called the array element type; this type shall not be [...] an
9036 abstract class type. */
9037 abstract_virtuals_error (name, type);
9039 return build_cplus_array_type (type, itype);
9042 /* Returns the smallest location != UNKNOWN_LOCATION among the
9043 three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile],
9044 and LOCATIONS[ds_restrict]. */
9046 static location_t
9047 smallest_type_quals_location (int type_quals, const location_t* locations)
9049 location_t loc = UNKNOWN_LOCATION;
9051 if (type_quals & TYPE_QUAL_CONST)
9052 loc = locations[ds_const];
9054 if ((type_quals & TYPE_QUAL_VOLATILE)
9055 && (loc == UNKNOWN_LOCATION || locations[ds_volatile] < loc))
9056 loc = locations[ds_volatile];
9058 if ((type_quals & TYPE_QUAL_RESTRICT)
9059 && (loc == UNKNOWN_LOCATION || locations[ds_restrict] < loc))
9060 loc = locations[ds_restrict];
9062 return loc;
9065 /* Check that it's OK to declare a function with the indicated TYPE
9066 and TYPE_QUALS. SFK indicates the kind of special function (if any)
9067 that this function is. OPTYPE is the type given in a conversion
9068 operator declaration, or the class type for a constructor/destructor.
9069 Returns the actual return type of the function; that may be different
9070 than TYPE if an error occurs, or for certain special functions. */
9072 static tree
9073 check_special_function_return_type (special_function_kind sfk,
9074 tree type,
9075 tree optype,
9076 int type_quals,
9077 const location_t* locations)
9079 switch (sfk)
9081 case sfk_constructor:
9082 if (type)
9083 error ("return type specification for constructor invalid");
9084 else if (type_quals != TYPE_UNQUALIFIED)
9085 error_at (smallest_type_quals_location (type_quals, locations),
9086 "qualifiers are not allowed on constructor declaration");
9088 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
9089 type = build_pointer_type (optype);
9090 else
9091 type = void_type_node;
9092 break;
9094 case sfk_destructor:
9095 if (type)
9096 error ("return type specification for destructor invalid");
9097 else if (type_quals != TYPE_UNQUALIFIED)
9098 error_at (smallest_type_quals_location (type_quals, locations),
9099 "qualifiers are not allowed on destructor declaration");
9101 /* We can't use the proper return type here because we run into
9102 problems with ambiguous bases and covariant returns.
9103 Java classes are left unchanged because (void *) isn't a valid
9104 Java type, and we don't want to change the Java ABI. */
9105 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
9106 type = build_pointer_type (void_type_node);
9107 else
9108 type = void_type_node;
9109 break;
9111 case sfk_conversion:
9112 if (type)
9113 error ("return type specified for %<operator %T%>", optype);
9114 else if (type_quals != TYPE_UNQUALIFIED)
9115 error_at (smallest_type_quals_location (type_quals, locations),
9116 "qualifiers are not allowed on declaration of "
9117 "%<operator %T%>", optype);
9119 type = optype;
9120 break;
9122 default:
9123 gcc_unreachable ();
9126 return type;
9129 /* A variable or data member (whose unqualified name is IDENTIFIER)
9130 has been declared with the indicated TYPE. If the TYPE is not
9131 acceptable, issue an error message and return a type to use for
9132 error-recovery purposes. */
9134 tree
9135 check_var_type (tree identifier, tree type)
9137 if (VOID_TYPE_P (type))
9139 if (!identifier)
9140 error ("unnamed variable or field declared void");
9141 else if (identifier_p (identifier))
9143 gcc_assert (!IDENTIFIER_OPNAME_P (identifier));
9144 error ("variable or field %qE declared void", identifier);
9146 else
9147 error ("variable or field declared void");
9148 type = error_mark_node;
9151 return type;
9154 /* Given declspecs and a declarator (abstract or otherwise), determine
9155 the name and type of the object declared and construct a DECL node
9156 for it.
9158 DECLSPECS points to the representation of declaration-specifier
9159 sequence that precedes declarator.
9161 DECL_CONTEXT says which syntactic context this declaration is in:
9162 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
9163 FUNCDEF for a function definition. Like NORMAL but a few different
9164 error messages in each case. Return value may be zero meaning
9165 this definition is too screwy to try to parse.
9166 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
9167 handle member functions (which have FIELD context).
9168 Return value may be zero meaning this definition is too screwy to
9169 try to parse.
9170 PARM for a parameter declaration (either within a function prototype
9171 or before a function body). Make a PARM_DECL, or return void_type_node.
9172 TPARM for a template parameter declaration.
9173 CATCHPARM for a parameter declaration before a catch clause.
9174 TYPENAME if for a typename (in a cast or sizeof).
9175 Don't make a DECL node; just return the ..._TYPE node.
9176 FIELD for a struct or union field; make a FIELD_DECL.
9177 BITFIELD for a field with specified width.
9179 INITIALIZED is as for start_decl.
9181 ATTRLIST is a pointer to the list of attributes, which may be NULL
9182 if there are none; *ATTRLIST may be modified if attributes from inside
9183 the declarator should be applied to the declaration.
9185 When this function is called, scoping variables (such as
9186 CURRENT_CLASS_TYPE) should reflect the scope in which the
9187 declaration occurs, not the scope in which the new declaration will
9188 be placed. For example, on:
9190 void S::f() { ... }
9192 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
9193 should not be `S'.
9195 Returns a DECL (if a declarator is present), a TYPE (if there is no
9196 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
9197 error occurs. */
9199 tree
9200 grokdeclarator (const cp_declarator *declarator,
9201 cp_decl_specifier_seq *declspecs,
9202 enum decl_context decl_context,
9203 int initialized,
9204 tree* attrlist)
9206 tree type = NULL_TREE;
9207 int longlong = 0;
9208 int explicit_intN = 0;
9209 int virtualp, explicitp, friendp, inlinep, staticp;
9210 int explicit_int = 0;
9211 int explicit_char = 0;
9212 int defaulted_int = 0;
9214 tree typedef_decl = NULL_TREE;
9215 const char *name = NULL;
9216 tree typedef_type = NULL_TREE;
9217 /* True if this declarator is a function definition. */
9218 bool funcdef_flag = false;
9219 cp_declarator_kind innermost_code = cdk_error;
9220 int bitfield = 0;
9221 #if 0
9222 /* See the code below that used this. */
9223 tree decl_attr = NULL_TREE;
9224 #endif
9226 /* Keep track of what sort of function is being processed
9227 so that we can warn about default return values, or explicit
9228 return values which do not match prescribed defaults. */
9229 special_function_kind sfk = sfk_none;
9231 tree dname = NULL_TREE;
9232 tree ctor_return_type = NULL_TREE;
9233 enum overload_flags flags = NO_SPECIAL;
9234 /* cv-qualifiers that apply to the declarator, for a declaration of
9235 a member function. */
9236 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
9237 /* virt-specifiers that apply to the declarator, for a declaration of
9238 a member function. */
9239 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
9240 /* ref-qualifier that applies to the declarator, for a declaration of
9241 a member function. */
9242 cp_ref_qualifier rqual = REF_QUAL_NONE;
9243 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
9244 int type_quals = TYPE_UNQUALIFIED;
9245 tree raises = NULL_TREE;
9246 int template_count = 0;
9247 tree returned_attrs = NULL_TREE;
9248 tree parms = NULL_TREE;
9249 const cp_declarator *id_declarator;
9250 /* The unqualified name of the declarator; either an
9251 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
9252 tree unqualified_id;
9253 /* The class type, if any, in which this entity is located,
9254 or NULL_TREE if none. Note that this value may be different from
9255 the current class type; for example if an attempt is made to declare
9256 "A::f" inside "B", this value will be "A". */
9257 tree ctype = current_class_type;
9258 /* The NAMESPACE_DECL for the namespace in which this entity is
9259 located. If an unqualified name is used to declare the entity,
9260 this value will be NULL_TREE, even if the entity is located at
9261 namespace scope. */
9262 tree in_namespace = NULL_TREE;
9263 cp_storage_class storage_class;
9264 bool unsigned_p, signed_p, short_p, long_p, thread_p;
9265 bool type_was_error_mark_node = false;
9266 bool parameter_pack_p = declarator? declarator->parameter_pack_p : false;
9267 bool template_type_arg = false;
9268 bool template_parm_flag = false;
9269 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
9270 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
9271 bool late_return_type_p = false;
9272 bool array_parameter_p = false;
9273 source_location saved_loc = input_location;
9274 const char *errmsg;
9275 tree reqs = NULL_TREE;
9277 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
9278 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
9279 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
9280 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
9281 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
9282 explicit_intN = declspecs->explicit_intN_p;
9283 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
9285 // Was concept_p specified? Note that ds_concept
9286 // implies ds_constexpr!
9287 bool concept_p = decl_spec_seq_has_spec_p (declspecs, ds_concept);
9288 if (concept_p)
9289 constexpr_p = true;
9291 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
9292 type_quals |= TYPE_QUAL_CONST;
9293 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
9294 type_quals |= TYPE_QUAL_VOLATILE;
9295 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
9296 type_quals |= TYPE_QUAL_RESTRICT;
9298 if (decl_context == FUNCDEF)
9299 funcdef_flag = true, decl_context = NORMAL;
9300 else if (decl_context == MEMFUNCDEF)
9301 funcdef_flag = true, decl_context = FIELD;
9302 else if (decl_context == BITFIELD)
9303 bitfield = 1, decl_context = FIELD;
9304 else if (decl_context == TEMPLATE_TYPE_ARG)
9305 template_type_arg = true, decl_context = TYPENAME;
9306 else if (decl_context == TPARM)
9307 template_parm_flag = true, decl_context = PARM;
9309 if (initialized > 1)
9310 funcdef_flag = true;
9312 /* Look inside a declarator for the name being declared
9313 and get it as a string, for an error message. */
9314 for (id_declarator = declarator;
9315 id_declarator;
9316 id_declarator = id_declarator->declarator)
9318 if (id_declarator->kind != cdk_id)
9319 innermost_code = id_declarator->kind;
9321 switch (id_declarator->kind)
9323 case cdk_function:
9324 if (id_declarator->declarator
9325 && id_declarator->declarator->kind == cdk_id)
9327 sfk = id_declarator->declarator->u.id.sfk;
9328 if (sfk == sfk_destructor)
9329 flags = DTOR_FLAG;
9331 break;
9333 case cdk_id:
9335 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
9336 tree decl = id_declarator->u.id.unqualified_name;
9337 if (!decl)
9338 break;
9339 if (qualifying_scope)
9341 if (at_function_scope_p ())
9343 /* [dcl.meaning]
9345 A declarator-id shall not be qualified except
9346 for ...
9348 None of the cases are permitted in block
9349 scope. */
9350 if (qualifying_scope == global_namespace)
9351 error ("invalid use of qualified-name %<::%D%>",
9352 decl);
9353 else if (TYPE_P (qualifying_scope))
9354 error ("invalid use of qualified-name %<%T::%D%>",
9355 qualifying_scope, decl);
9356 else
9357 error ("invalid use of qualified-name %<%D::%D%>",
9358 qualifying_scope, decl);
9359 return error_mark_node;
9361 else if (TYPE_P (qualifying_scope))
9363 ctype = qualifying_scope;
9364 if (!MAYBE_CLASS_TYPE_P (ctype))
9366 error ("%q#T is not a class or a namespace", ctype);
9367 ctype = NULL_TREE;
9369 else if (innermost_code != cdk_function
9370 && current_class_type
9371 && !uniquely_derived_from_p (ctype,
9372 current_class_type))
9374 error ("invalid use of qualified-name %<%T::%D%>",
9375 qualifying_scope, decl);
9376 return error_mark_node;
9379 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
9380 in_namespace = qualifying_scope;
9382 switch (TREE_CODE (decl))
9384 case BIT_NOT_EXPR:
9386 tree type;
9388 if (innermost_code != cdk_function)
9390 error ("declaration of %qD as non-function", decl);
9391 return error_mark_node;
9393 else if (!qualifying_scope
9394 && !(current_class_type && at_class_scope_p ()))
9396 error ("declaration of %qD as non-member", decl);
9397 return error_mark_node;
9400 type = TREE_OPERAND (decl, 0);
9401 if (TYPE_P (type))
9402 type = constructor_name (type);
9403 name = identifier_to_locale (IDENTIFIER_POINTER (type));
9404 dname = decl;
9406 break;
9408 case TEMPLATE_ID_EXPR:
9410 tree fns = TREE_OPERAND (decl, 0);
9412 dname = fns;
9413 if (!identifier_p (dname))
9415 if (variable_template_p (dname))
9416 dname = DECL_NAME (dname);
9417 else
9419 gcc_assert (is_overloaded_fn (dname));
9420 dname = DECL_NAME (get_first_fn (dname));
9424 /* Fall through. */
9426 case IDENTIFIER_NODE:
9427 if (identifier_p (decl))
9428 dname = decl;
9430 if (C_IS_RESERVED_WORD (dname))
9432 error ("declarator-id missing; using reserved word %qD",
9433 dname);
9434 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9436 else if (!IDENTIFIER_TYPENAME_P (dname))
9437 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9438 else
9440 gcc_assert (flags == NO_SPECIAL);
9441 flags = TYPENAME_FLAG;
9442 ctor_return_type = TREE_TYPE (dname);
9443 sfk = sfk_conversion;
9444 if (is_typename_at_global_scope (dname))
9445 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9446 else
9447 name = "<invalid operator>";
9449 break;
9451 default:
9452 gcc_unreachable ();
9454 break;
9457 case cdk_array:
9458 case cdk_pointer:
9459 case cdk_reference:
9460 case cdk_ptrmem:
9461 break;
9463 case cdk_error:
9464 return error_mark_node;
9466 default:
9467 gcc_unreachable ();
9469 if (id_declarator->kind == cdk_id)
9470 break;
9473 /* [dcl.fct.edf]
9475 The declarator in a function-definition shall have the form
9476 D1 ( parameter-declaration-clause) ... */
9477 if (funcdef_flag && innermost_code != cdk_function)
9479 error ("function definition does not declare parameters");
9480 return error_mark_node;
9483 if (flags == TYPENAME_FLAG
9484 && innermost_code != cdk_function
9485 && ! (ctype && !declspecs->any_specifiers_p))
9487 error ("declaration of %qD as non-function", dname);
9488 return error_mark_node;
9491 if (dname
9492 && identifier_p (dname)
9493 && UDLIT_OPER_P (dname)
9494 && innermost_code != cdk_function)
9496 error ("declaration of %qD as non-function", dname);
9497 return error_mark_node;
9500 if (dname && IDENTIFIER_OPNAME_P (dname))
9502 if (typedef_p)
9504 error ("declaration of %qD as %<typedef%>", dname);
9505 return error_mark_node;
9507 else if (decl_context == PARM || decl_context == CATCHPARM)
9509 error ("declaration of %qD as parameter", dname);
9510 return error_mark_node;
9514 /* Anything declared one level down from the top level
9515 must be one of the parameters of a function
9516 (because the body is at least two levels down). */
9518 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
9519 by not allowing C++ class definitions to specify their parameters
9520 with xdecls (must be spec.d in the parmlist).
9522 Since we now wait to push a class scope until we are sure that
9523 we are in a legitimate method context, we must set oldcname
9524 explicitly (since current_class_name is not yet alive).
9526 We also want to avoid calling this a PARM if it is in a namespace. */
9528 if (decl_context == NORMAL && !toplevel_bindings_p ())
9530 cp_binding_level *b = current_binding_level;
9531 current_binding_level = b->level_chain;
9532 if (current_binding_level != 0 && toplevel_bindings_p ())
9533 decl_context = PARM;
9534 current_binding_level = b;
9537 if (name == NULL)
9538 name = decl_context == PARM ? "parameter" : "type name";
9540 if (concept_p && typedef_p)
9542 error ("%<concept%> cannot appear in a typedef declaration");
9543 return error_mark_node;
9546 if (constexpr_p && typedef_p)
9548 error ("%<constexpr%> cannot appear in a typedef declaration");
9549 return error_mark_node;
9552 /* If there were multiple types specified in the decl-specifier-seq,
9553 issue an error message. */
9554 if (declspecs->multiple_types_p)
9556 error ("two or more data types in declaration of %qs", name);
9557 return error_mark_node;
9560 if (declspecs->conflicting_specifiers_p)
9562 error ("conflicting specifiers in declaration of %qs", name);
9563 return error_mark_node;
9566 /* Extract the basic type from the decl-specifier-seq. */
9567 type = declspecs->type;
9568 if (type == error_mark_node)
9570 type = NULL_TREE;
9571 type_was_error_mark_node = true;
9573 /* If the entire declaration is itself tagged as deprecated then
9574 suppress reports of deprecated items. */
9575 if (type && TREE_DEPRECATED (type)
9576 && deprecated_state != DEPRECATED_SUPPRESS)
9577 warn_deprecated_use (type, NULL_TREE);
9578 if (type && TREE_CODE (type) == TYPE_DECL)
9580 typedef_decl = type;
9581 type = TREE_TYPE (typedef_decl);
9582 if (TREE_DEPRECATED (type)
9583 && DECL_ARTIFICIAL (typedef_decl)
9584 && deprecated_state != DEPRECATED_SUPPRESS)
9585 warn_deprecated_use (type, NULL_TREE);
9587 /* No type at all: default to `int', and set DEFAULTED_INT
9588 because it was not a user-defined typedef. */
9589 if (type == NULL_TREE)
9591 if (signed_p || unsigned_p || long_p || short_p)
9593 /* These imply 'int'. */
9594 type = integer_type_node;
9595 defaulted_int = 1;
9597 /* If we just have "complex", it is equivalent to "complex double". */
9598 else if (!longlong && !explicit_intN
9599 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
9601 type = double_type_node;
9602 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
9603 "ISO C++ does not support plain %<complex%> meaning "
9604 "%<double complex%>");
9607 /* Gather flags. */
9608 explicit_int = declspecs->explicit_int_p;
9609 explicit_char = declspecs->explicit_char_p;
9611 #if 0
9612 /* See the code below that used this. */
9613 if (typedef_decl)
9614 decl_attr = DECL_ATTRIBUTES (typedef_decl);
9615 #endif
9616 typedef_type = type;
9619 if (sfk != sfk_conversion)
9620 ctor_return_type = ctype;
9622 if (sfk != sfk_none)
9624 type = check_special_function_return_type (sfk, type,
9625 ctor_return_type,
9626 type_quals,
9627 declspecs->locations);
9628 type_quals = TYPE_UNQUALIFIED;
9630 else if (type == NULL_TREE)
9632 int is_main;
9634 explicit_int = -1;
9636 /* We handle `main' specially here, because 'main () { }' is so
9637 common. With no options, it is allowed. With -Wreturn-type,
9638 it is a warning. It is only an error with -pedantic-errors. */
9639 is_main = (funcdef_flag
9640 && dname && identifier_p (dname)
9641 && MAIN_NAME_P (dname)
9642 && ctype == NULL_TREE
9643 && in_namespace == NULL_TREE
9644 && current_namespace == global_namespace);
9646 if (type_was_error_mark_node)
9647 /* We've already issued an error, don't complain more. */;
9648 else if (in_system_header_at (input_location) || flag_ms_extensions)
9649 /* Allow it, sigh. */;
9650 else if (! is_main)
9651 permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
9652 else if (pedantic)
9653 pedwarn (input_location, OPT_Wpedantic,
9654 "ISO C++ forbids declaration of %qs with no type", name);
9655 else
9656 warning (OPT_Wreturn_type,
9657 "ISO C++ forbids declaration of %qs with no type", name);
9659 if (type_was_error_mark_node && template_parm_flag)
9660 /* FIXME we should be able to propagate the error_mark_node as is
9661 for other contexts too. */
9662 type = error_mark_node;
9663 else
9664 type = integer_type_node;
9667 ctype = NULL_TREE;
9669 if (explicit_intN)
9671 if (! int_n_enabled_p[declspecs->int_n_idx])
9673 error ("%<__int%d%> is not supported by this target",
9674 int_n_data[declspecs->int_n_idx].bitsize);
9675 explicit_intN = false;
9677 else if (pedantic && ! in_system_header_at (input_location))
9678 pedwarn (input_location, OPT_Wpedantic,
9679 "ISO C++ does not support %<__int%d%> for %qs",
9680 int_n_data[declspecs->int_n_idx].bitsize, name);
9683 /* Now process the modifiers that were specified
9684 and check for invalid combinations. */
9686 /* Long double is a special combination. */
9687 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
9689 long_p = false;
9690 type = cp_build_qualified_type (long_double_type_node,
9691 cp_type_quals (type));
9694 /* Check all other uses of type modifiers. */
9696 if (unsigned_p || signed_p || long_p || short_p)
9698 int ok = 0;
9700 if ((signed_p || unsigned_p) && TREE_CODE (type) != INTEGER_TYPE)
9701 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9702 else if (signed_p && unsigned_p)
9703 error ("%<signed%> and %<unsigned%> specified together for %qs", name);
9704 else if (longlong && TREE_CODE (type) != INTEGER_TYPE)
9705 error ("%<long long%> invalid for %qs", name);
9706 else if (long_p && TREE_CODE (type) == REAL_TYPE)
9707 error ("%<long%> invalid for %qs", name);
9708 else if (short_p && TREE_CODE (type) == REAL_TYPE)
9709 error ("%<short%> invalid for %qs", name);
9710 else if ((long_p || short_p) && TREE_CODE (type) != INTEGER_TYPE)
9711 error ("%<long%> or %<short%> invalid for %qs", name);
9712 else if ((long_p || short_p || explicit_char || explicit_int) && explicit_intN)
9713 error ("%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs", name);
9714 else if ((long_p || short_p) && explicit_char)
9715 error ("%<long%> or %<short%> specified with char for %qs", name);
9716 else if (long_p && short_p)
9717 error ("%<long%> and %<short%> specified together for %qs", name);
9718 else if (type == char16_type_node || type == char32_type_node)
9720 if (signed_p || unsigned_p)
9721 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9722 else if (short_p || long_p)
9723 error ("%<short%> or %<long%> invalid for %qs", name);
9725 else
9727 ok = 1;
9728 if (!explicit_int && !defaulted_int && !explicit_char && !explicit_intN && pedantic)
9730 pedwarn (input_location, OPT_Wpedantic,
9731 "long, short, signed or unsigned used invalidly for %qs",
9732 name);
9733 if (flag_pedantic_errors)
9734 ok = 0;
9738 /* Discard the type modifiers if they are invalid. */
9739 if (! ok)
9741 unsigned_p = false;
9742 signed_p = false;
9743 long_p = false;
9744 short_p = false;
9745 longlong = 0;
9749 /* Decide whether an integer type is signed or not.
9750 Optionally treat bitfields as signed by default. */
9751 if (unsigned_p
9752 /* [class.bit]
9754 It is implementation-defined whether a plain (neither
9755 explicitly signed or unsigned) char, short, int, or long
9756 bit-field is signed or unsigned.
9758 Naturally, we extend this to long long as well. Note that
9759 this does not include wchar_t. */
9760 || (bitfield && !flag_signed_bitfields
9761 && !signed_p
9762 /* A typedef for plain `int' without `signed' can be
9763 controlled just like plain `int', but a typedef for
9764 `signed int' cannot be so controlled. */
9765 && !(typedef_decl
9766 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
9767 && TREE_CODE (type) == INTEGER_TYPE
9768 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
9770 if (explicit_intN)
9771 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
9772 else if (longlong)
9773 type = long_long_unsigned_type_node;
9774 else if (long_p)
9775 type = long_unsigned_type_node;
9776 else if (short_p)
9777 type = short_unsigned_type_node;
9778 else if (type == char_type_node)
9779 type = unsigned_char_type_node;
9780 else if (typedef_decl)
9781 type = unsigned_type_for (type);
9782 else
9783 type = unsigned_type_node;
9785 else if (signed_p && type == char_type_node)
9786 type = signed_char_type_node;
9787 else if (explicit_intN)
9788 type = int_n_trees[declspecs->int_n_idx].signed_type;
9789 else if (longlong)
9790 type = long_long_integer_type_node;
9791 else if (long_p)
9792 type = long_integer_type_node;
9793 else if (short_p)
9794 type = short_integer_type_node;
9796 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
9798 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
9799 error ("complex invalid for %qs", name);
9800 /* If a modifier is specified, the resulting complex is the complex
9801 form of TYPE. E.g, "complex short" is "complex short int". */
9802 else if (type == integer_type_node)
9803 type = complex_integer_type_node;
9804 else if (type == float_type_node)
9805 type = complex_float_type_node;
9806 else if (type == double_type_node)
9807 type = complex_double_type_node;
9808 else if (type == long_double_type_node)
9809 type = complex_long_double_type_node;
9810 else
9811 type = build_complex_type (type);
9814 /* If we're using the injected-class-name to form a compound type or a
9815 declaration, replace it with the underlying class so we don't get
9816 redundant typedefs in the debug output. But if we are returning the
9817 type unchanged, leave it alone so that it's available to
9818 maybe_get_template_decl_from_type_decl. */
9819 if (CLASS_TYPE_P (type)
9820 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
9821 && type == TREE_TYPE (TYPE_NAME (type))
9822 && (declarator || type_quals))
9823 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
9825 type_quals |= cp_type_quals (type);
9826 type = cp_build_qualified_type_real
9827 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
9828 || declspecs->decltype_p)
9829 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
9830 /* We might have ignored or rejected some of the qualifiers. */
9831 type_quals = cp_type_quals (type);
9833 staticp = 0;
9834 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
9835 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
9836 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
9838 storage_class = declspecs->storage_class;
9839 if (storage_class == sc_static)
9840 staticp = 1 + (decl_context == FIELD);
9842 if (virtualp)
9844 if (staticp == 2)
9846 error ("member %qD cannot be declared both %<virtual%> "
9847 "and %<static%>", dname);
9848 storage_class = sc_none;
9849 staticp = 0;
9851 if (constexpr_p)
9852 error ("member %qD cannot be declared both %<virtual%> "
9853 "and %<constexpr%>", dname);
9855 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
9857 /* Issue errors about use of storage classes for parameters. */
9858 if (decl_context == PARM)
9860 if (typedef_p)
9862 error ("typedef declaration invalid in parameter declaration");
9863 return error_mark_node;
9865 else if (template_parm_flag && storage_class != sc_none)
9867 error ("storage class specified for template parameter %qs", name);
9868 return error_mark_node;
9870 else if (storage_class == sc_static
9871 || storage_class == sc_extern
9872 || thread_p)
9873 error ("storage class specifiers invalid in parameter declarations");
9875 /* Function parameters cannot be concept. */
9876 if (concept_p)
9877 error ("a parameter cannot be declared %<concept%>");
9878 /* Function parameters cannot be constexpr. If we saw one, moan
9879 and pretend it wasn't there. */
9880 else if (constexpr_p)
9882 error ("a parameter cannot be declared %<constexpr%>");
9883 constexpr_p = 0;
9887 /* Give error if `virtual' is used outside of class declaration. */
9888 if (virtualp
9889 && (current_class_name == NULL_TREE || decl_context != FIELD))
9891 error_at (declspecs->locations[ds_virtual],
9892 "%<virtual%> outside class declaration");
9893 virtualp = 0;
9896 /* Static anonymous unions are dealt with here. */
9897 if (staticp && decl_context == TYPENAME
9898 && declspecs->type
9899 && ANON_AGGR_TYPE_P (declspecs->type))
9900 decl_context = FIELD;
9902 /* Warn about storage classes that are invalid for certain
9903 kinds of declarations (parameters, typenames, etc.). */
9904 if (thread_p
9905 && ((storage_class
9906 && storage_class != sc_extern
9907 && storage_class != sc_static)
9908 || typedef_p))
9910 error ("multiple storage classes in declaration of %qs", name);
9911 thread_p = false;
9913 if (decl_context != NORMAL
9914 && ((storage_class != sc_none
9915 && storage_class != sc_mutable)
9916 || thread_p))
9918 if ((decl_context == PARM || decl_context == CATCHPARM)
9919 && (storage_class == sc_register
9920 || storage_class == sc_auto))
9922 else if (typedef_p)
9924 else if (decl_context == FIELD
9925 /* C++ allows static class elements. */
9926 && storage_class == sc_static)
9927 /* C++ also allows inlines and signed and unsigned elements,
9928 but in those cases we don't come in here. */
9930 else
9932 if (decl_context == FIELD)
9933 error ("storage class specified for %qs", name);
9934 else
9936 if (decl_context == PARM || decl_context == CATCHPARM)
9937 error ("storage class specified for parameter %qs", name);
9938 else
9939 error ("storage class specified for typename");
9941 if (storage_class == sc_register
9942 || storage_class == sc_auto
9943 || storage_class == sc_extern
9944 || thread_p)
9945 storage_class = sc_none;
9948 else if (storage_class == sc_extern && funcdef_flag
9949 && ! toplevel_bindings_p ())
9950 error ("nested function %qs declared %<extern%>", name);
9951 else if (toplevel_bindings_p ())
9953 if (storage_class == sc_auto)
9954 error ("top-level declaration of %qs specifies %<auto%>", name);
9956 else if (thread_p
9957 && storage_class != sc_extern
9958 && storage_class != sc_static)
9960 if (declspecs->gnu_thread_keyword_p)
9961 pedwarn (input_location, 0, "function-scope %qs implicitly auto and "
9962 "declared %<__thread%>", name);
9964 /* When thread_local is applied to a variable of block scope the
9965 storage-class-specifier static is implied if it does not appear
9966 explicitly. */
9967 storage_class = declspecs->storage_class = sc_static;
9968 staticp = 1;
9971 if (storage_class && friendp)
9973 error ("storage class specifiers invalid in friend function declarations");
9974 storage_class = sc_none;
9975 staticp = 0;
9978 if (!id_declarator)
9979 unqualified_id = NULL_TREE;
9980 else
9982 unqualified_id = id_declarator->u.id.unqualified_name;
9983 switch (TREE_CODE (unqualified_id))
9985 case BIT_NOT_EXPR:
9986 unqualified_id = TREE_OPERAND (unqualified_id, 0);
9987 if (TYPE_P (unqualified_id))
9988 unqualified_id = constructor_name (unqualified_id);
9989 break;
9991 case IDENTIFIER_NODE:
9992 case TEMPLATE_ID_EXPR:
9993 break;
9995 default:
9996 gcc_unreachable ();
10000 if (declspecs->std_attributes)
10002 /* Apply the c++11 attributes to the type preceding them. */
10003 input_location = declspecs->locations[ds_std_attribute];
10004 decl_attributes (&type, declspecs->std_attributes, 0);
10005 input_location = saved_loc;
10008 /* Determine the type of the entity declared by recurring on the
10009 declarator. */
10010 for (; declarator; declarator = declarator->declarator)
10012 const cp_declarator *inner_declarator;
10013 tree attrs;
10015 if (type == error_mark_node)
10016 return error_mark_node;
10018 attrs = declarator->attributes;
10019 if (attrs)
10021 int attr_flags;
10023 attr_flags = 0;
10024 if (declarator == NULL || declarator->kind == cdk_id)
10025 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
10026 if (declarator->kind == cdk_function)
10027 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
10028 if (declarator->kind == cdk_array)
10029 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
10030 returned_attrs = decl_attributes (&type,
10031 chainon (returned_attrs, attrs),
10032 attr_flags);
10035 if (declarator->kind == cdk_id)
10036 break;
10038 inner_declarator = declarator->declarator;
10040 switch (declarator->kind)
10042 case cdk_array:
10043 type = create_array_type_for_decl (dname, type,
10044 declarator->u.array.bounds);
10045 if (!valid_array_size_p (input_location, type, dname))
10046 type = error_mark_node;
10048 if (declarator->std_attributes)
10049 /* [dcl.array]/1:
10051 The optional attribute-specifier-seq appertains to the
10052 array. */
10053 returned_attrs = chainon (returned_attrs,
10054 declarator->std_attributes);
10055 break;
10057 case cdk_function:
10059 tree arg_types;
10060 int funcdecl_p;
10062 /* Declaring a function type.
10063 Make sure we have a valid type for the function to return. */
10065 if (type_quals != TYPE_UNQUALIFIED)
10067 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
10068 warning (OPT_Wignored_qualifiers,
10069 "type qualifiers ignored on function return type");
10070 /* We now know that the TYPE_QUALS don't apply to the
10071 decl, but to its return type. */
10072 type_quals = TYPE_UNQUALIFIED;
10074 errmsg = targetm.invalid_return_type (type);
10075 if (errmsg)
10077 error (errmsg);
10078 type = integer_type_node;
10081 /* Error about some types functions can't return. */
10083 if (TREE_CODE (type) == FUNCTION_TYPE)
10085 error ("%qs declared as function returning a function", name);
10086 return error_mark_node;
10088 if (TREE_CODE (type) == ARRAY_TYPE)
10090 error ("%qs declared as function returning an array", name);
10091 return error_mark_node;
10094 input_location = declspecs->locations[ds_type_spec];
10095 abstract_virtuals_error (ACU_RETURN, type);
10096 input_location = saved_loc;
10098 /* Pick up type qualifiers which should be applied to `this'. */
10099 memfn_quals = declarator->u.function.qualifiers;
10100 /* Pick up virt-specifiers. */
10101 virt_specifiers = declarator->u.function.virt_specifiers;
10102 /* And ref-qualifier, too */
10103 rqual = declarator->u.function.ref_qualifier;
10104 /* And tx-qualifier. */
10105 tree tx_qual = declarator->u.function.tx_qualifier;
10106 /* Pick up the exception specifications. */
10107 raises = declarator->u.function.exception_specification;
10108 /* If the exception-specification is ill-formed, let's pretend
10109 there wasn't one. */
10110 if (raises == error_mark_node)
10111 raises = NULL_TREE;
10113 if (reqs)
10114 error_at (location_of (reqs), "requires-clause on return type");
10115 reqs = declarator->u.function.requires_clause;
10117 /* Say it's a definition only for the CALL_EXPR
10118 closest to the identifier. */
10119 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
10121 /* Handle a late-specified return type. */
10122 if (funcdecl_p)
10124 if (type_uses_auto (type))
10126 if (!declarator->u.function.late_return_type)
10128 if (current_class_type
10129 && LAMBDA_TYPE_P (current_class_type))
10130 /* OK for C++11 lambdas. */;
10131 else if (cxx_dialect < cxx14)
10133 error ("%qs function uses "
10134 "%<auto%> type specifier without trailing "
10135 "return type", name);
10136 inform (input_location, "deduced return type "
10137 "only available with -std=c++14 or "
10138 "-std=gnu++14");
10140 else if (virtualp)
10142 error ("virtual function cannot "
10143 "have deduced return type");
10144 virtualp = false;
10147 else if (!is_auto (type) && sfk != sfk_conversion)
10149 error ("%qs function with trailing return type has"
10150 " %qT as its type rather than plain %<auto%>",
10151 name, type);
10152 return error_mark_node;
10155 else if (declarator->u.function.late_return_type
10156 && sfk != sfk_conversion)
10158 if (cxx_dialect < cxx11)
10159 /* Not using maybe_warn_cpp0x because this should
10160 always be an error. */
10161 error ("trailing return type only available with "
10162 "-std=c++11 or -std=gnu++11");
10163 else
10164 error ("%qs function with trailing return type not "
10165 "declared with %<auto%> type specifier", name);
10166 return error_mark_node;
10169 type = splice_late_return_type
10170 (type, declarator->u.function.late_return_type);
10171 if (type == error_mark_node)
10172 return error_mark_node;
10174 if (declarator->u.function.late_return_type)
10175 late_return_type_p = true;
10177 if (ctype == NULL_TREE
10178 && decl_context == FIELD
10179 && funcdecl_p
10180 && friendp == 0)
10181 ctype = current_class_type;
10183 if (ctype && (sfk == sfk_constructor
10184 || sfk == sfk_destructor))
10186 /* We are within a class's scope. If our declarator name
10187 is the same as the class name, and we are defining
10188 a function, then it is a constructor/destructor, and
10189 therefore returns a void type. */
10191 /* ISO C++ 12.4/2. A destructor may not be declared
10192 const or volatile. A destructor may not be static.
10193 A destructor may not be declared with ref-qualifier.
10195 ISO C++ 12.1. A constructor may not be declared
10196 const or volatile. A constructor may not be
10197 virtual. A constructor may not be static.
10198 A constructor may not be declared with ref-qualifier. */
10199 if (staticp == 2)
10200 error ((flags == DTOR_FLAG)
10201 ? G_("destructor cannot be static member function")
10202 : G_("constructor cannot be static member function"));
10203 if (memfn_quals)
10205 error ((flags == DTOR_FLAG)
10206 ? G_("destructors may not be cv-qualified")
10207 : G_("constructors may not be cv-qualified"));
10208 memfn_quals = TYPE_UNQUALIFIED;
10211 if (rqual)
10213 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
10214 error ((flags == DTOR_FLAG)
10215 ? "destructors may not be ref-qualified"
10216 : "constructors may not be ref-qualified");
10217 rqual = REF_QUAL_NONE;
10220 if (decl_context == FIELD
10221 && !member_function_or_else (ctype,
10222 current_class_type,
10223 flags))
10224 return error_mark_node;
10226 if (flags != DTOR_FLAG)
10228 /* It's a constructor. */
10229 if (explicitp == 1)
10230 explicitp = 2;
10231 if (virtualp)
10233 permerror (input_location,
10234 "constructors cannot be declared %<virtual%>");
10235 virtualp = 0;
10237 if (decl_context == FIELD
10238 && sfk != sfk_constructor)
10239 return error_mark_node;
10241 if (decl_context == FIELD)
10242 staticp = 0;
10244 else if (friendp)
10246 if (virtualp)
10248 /* Cannot be both friend and virtual. */
10249 error ("virtual functions cannot be friends");
10250 friendp = 0;
10252 if (decl_context == NORMAL)
10253 error ("friend declaration not in class definition");
10254 if (current_function_decl && funcdef_flag)
10255 error ("can%'t define friend function %qs in a local "
10256 "class definition",
10257 name);
10259 else if (ctype && sfk == sfk_conversion)
10261 if (explicitp == 1)
10263 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
10264 explicitp = 2;
10266 if (late_return_type_p)
10267 error ("a conversion function cannot have a trailing return type");
10270 arg_types = grokparms (declarator->u.function.parameters,
10271 &parms);
10273 if (inner_declarator
10274 && inner_declarator->kind == cdk_id
10275 && inner_declarator->u.id.sfk == sfk_destructor
10276 && arg_types != void_list_node)
10278 error ("destructors may not have parameters");
10279 arg_types = void_list_node;
10280 parms = NULL_TREE;
10283 type = build_function_type (type, arg_types);
10285 tree attrs = declarator->std_attributes;
10286 if (tx_qual)
10288 tree att = build_tree_list (tx_qual, NULL_TREE);
10289 /* transaction_safe applies to the type, but
10290 transaction_safe_dynamic applies to the function. */
10291 if (is_attribute_p ("transaction_safe", tx_qual))
10292 attrs = chainon (attrs, att);
10293 else
10294 returned_attrs = chainon (returned_attrs, att);
10296 if (attrs)
10297 /* [dcl.fct]/2:
10299 The optional attribute-specifier-seq appertains to
10300 the function type. */
10301 decl_attributes (&type, attrs, 0);
10303 break;
10305 case cdk_pointer:
10306 case cdk_reference:
10307 case cdk_ptrmem:
10308 /* Filter out pointers-to-references and references-to-references.
10309 We can get these if a TYPE_DECL is used. */
10311 if (TREE_CODE (type) == REFERENCE_TYPE)
10313 if (declarator->kind != cdk_reference)
10315 error ("cannot declare pointer to %q#T", type);
10316 type = TREE_TYPE (type);
10319 /* In C++0x, we allow reference to reference declarations
10320 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
10321 and template type arguments [14.3.1/4 temp.arg.type]. The
10322 check for direct reference to reference declarations, which
10323 are still forbidden, occurs below. Reasoning behind the change
10324 can be found in DR106, DR540, and the rvalue reference
10325 proposals. */
10326 else if (cxx_dialect == cxx98)
10328 error ("cannot declare reference to %q#T", type);
10329 type = TREE_TYPE (type);
10332 else if (VOID_TYPE_P (type))
10334 if (declarator->kind == cdk_reference)
10335 error ("cannot declare reference to %q#T", type);
10336 else if (declarator->kind == cdk_ptrmem)
10337 error ("cannot declare pointer to %q#T member", type);
10340 /* We now know that the TYPE_QUALS don't apply to the decl,
10341 but to the target of the pointer. */
10342 type_quals = TYPE_UNQUALIFIED;
10344 /* This code used to handle METHOD_TYPE, but I don't think it's
10345 possible to get it here anymore. */
10346 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
10347 if (declarator->kind == cdk_ptrmem
10348 && TREE_CODE (type) == FUNCTION_TYPE)
10350 memfn_quals |= type_memfn_quals (type);
10351 type = build_memfn_type (type,
10352 declarator->u.pointer.class_type,
10353 memfn_quals,
10354 rqual);
10355 if (type == error_mark_node)
10356 return error_mark_node;
10358 rqual = REF_QUAL_NONE;
10359 memfn_quals = TYPE_UNQUALIFIED;
10362 if (TREE_CODE (type) == FUNCTION_TYPE
10363 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
10364 || type_memfn_rqual (type) != REF_QUAL_NONE))
10365 error (declarator->kind == cdk_reference
10366 ? G_("cannot declare reference to qualified function type %qT")
10367 : G_("cannot declare pointer to qualified function type %qT"),
10368 type);
10370 /* When the pointed-to type involves components of variable size,
10371 care must be taken to ensure that the size evaluation code is
10372 emitted early enough to dominate all the possible later uses
10373 and late enough for the variables on which it depends to have
10374 been assigned.
10376 This is expected to happen automatically when the pointed-to
10377 type has a name/declaration of it's own, but special attention
10378 is required if the type is anonymous.
10380 We handle the NORMAL and FIELD contexts here by inserting a
10381 dummy statement that just evaluates the size at a safe point
10382 and ensures it is not deferred until e.g. within a deeper
10383 conditional context (c++/43555).
10385 We expect nothing to be needed here for PARM or TYPENAME.
10386 Evaluating the size at this point for TYPENAME would
10387 actually be incorrect, as we might be in the middle of an
10388 expression with side effects on the pointed-to type size
10389 "arguments" prior to the pointer declaration point and the
10390 size evaluation could end up prior to the side effects. */
10392 if (!TYPE_NAME (type)
10393 && (decl_context == NORMAL || decl_context == FIELD)
10394 && at_function_scope_p ()
10395 && variably_modified_type_p (type, NULL_TREE))
10397 TYPE_NAME (type) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
10398 NULL_TREE, type);
10399 add_decl_expr (TYPE_NAME (type));
10402 if (declarator->kind == cdk_reference)
10404 /* In C++0x, the type we are creating a reference to might be
10405 a typedef which is itself a reference type. In that case,
10406 we follow the reference collapsing rules in
10407 [7.1.3/8 dcl.typedef] to create the final reference type:
10409 "If a typedef TD names a type that is a reference to a type
10410 T, an attempt to create the type 'lvalue reference to cv TD'
10411 creates the type 'lvalue reference to T,' while an attempt
10412 to create the type "rvalue reference to cv TD' creates the
10413 type TD."
10415 if (VOID_TYPE_P (type))
10416 /* We already gave an error. */;
10417 else if (TREE_CODE (type) == REFERENCE_TYPE)
10419 if (declarator->u.reference.rvalue_ref)
10420 /* Leave type alone. */;
10421 else
10422 type = cp_build_reference_type (TREE_TYPE (type), false);
10424 else
10425 type = cp_build_reference_type
10426 (type, declarator->u.reference.rvalue_ref);
10428 /* In C++0x, we need this check for direct reference to
10429 reference declarations, which are forbidden by
10430 [8.3.2/5 dcl.ref]. Reference to reference declarations
10431 are only allowed indirectly through typedefs and template
10432 type arguments. Example:
10434 void foo(int & &); // invalid ref-to-ref decl
10436 typedef int & int_ref;
10437 void foo(int_ref &); // valid ref-to-ref decl
10439 if (inner_declarator && inner_declarator->kind == cdk_reference)
10440 error ("cannot declare reference to %q#T, which is not "
10441 "a typedef or a template type argument", type);
10443 else if (TREE_CODE (type) == METHOD_TYPE)
10444 type = build_ptrmemfunc_type (build_pointer_type (type));
10445 else if (declarator->kind == cdk_ptrmem)
10447 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
10448 != NAMESPACE_DECL);
10449 if (declarator->u.pointer.class_type == error_mark_node)
10450 /* We will already have complained. */
10451 type = error_mark_node;
10452 else
10453 type = build_ptrmem_type (declarator->u.pointer.class_type,
10454 type);
10456 else
10457 type = build_pointer_type (type);
10459 /* Process a list of type modifier keywords (such as
10460 const or volatile) that were given inside the `*' or `&'. */
10462 if (declarator->u.pointer.qualifiers)
10464 type
10465 = cp_build_qualified_type (type,
10466 declarator->u.pointer.qualifiers);
10467 type_quals = cp_type_quals (type);
10470 /* Apply C++11 attributes to the pointer, and not to the
10471 type pointed to. This is unlike what is done for GNU
10472 attributes above. It is to comply with [dcl.ptr]/1:
10474 [the optional attribute-specifier-seq (7.6.1) appertains
10475 to the pointer and not to the object pointed to]. */
10476 if (declarator->std_attributes)
10477 decl_attributes (&type, declarator->std_attributes,
10480 ctype = NULL_TREE;
10481 break;
10483 case cdk_error:
10484 break;
10486 default:
10487 gcc_unreachable ();
10491 /* A `constexpr' specifier used in an object declaration declares
10492 the object as `const'. */
10493 if (constexpr_p && innermost_code != cdk_function)
10495 /* DR1688 says that a `constexpr' specifier in combination with
10496 `volatile' is valid. */
10498 if (TREE_CODE (type) != REFERENCE_TYPE)
10500 type_quals |= TYPE_QUAL_CONST;
10501 type = cp_build_qualified_type (type, type_quals);
10505 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
10506 && TREE_CODE (type) != FUNCTION_TYPE
10507 && TREE_CODE (type) != METHOD_TYPE
10508 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
10510 error ("template-id %qD used as a declarator",
10511 unqualified_id);
10512 unqualified_id = dname;
10515 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
10516 qualified with a class-name, turn it into a METHOD_TYPE, unless
10517 we know that the function is static. We take advantage of this
10518 opportunity to do other processing that pertains to entities
10519 explicitly declared to be class members. Note that if DECLARATOR
10520 is non-NULL, we know it is a cdk_id declarator; otherwise, we
10521 would not have exited the loop above. */
10522 if (declarator
10523 && declarator->u.id.qualifying_scope
10524 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
10526 ctype = declarator->u.id.qualifying_scope;
10527 ctype = TYPE_MAIN_VARIANT (ctype);
10528 template_count = num_template_headers_for_class (ctype);
10530 if (ctype == current_class_type)
10532 if (friendp)
10534 permerror (input_location, "member functions are implicitly friends of their class");
10535 friendp = 0;
10537 else
10538 permerror (declarator->id_loc,
10539 "extra qualification %<%T::%> on member %qs",
10540 ctype, name);
10542 else if (/* If the qualifying type is already complete, then we
10543 can skip the following checks. */
10544 !COMPLETE_TYPE_P (ctype)
10545 && (/* If the function is being defined, then
10546 qualifying type must certainly be complete. */
10547 funcdef_flag
10548 /* A friend declaration of "T::f" is OK, even if
10549 "T" is a template parameter. But, if this
10550 function is not a friend, the qualifying type
10551 must be a class. */
10552 || (!friendp && !CLASS_TYPE_P (ctype))
10553 /* For a declaration, the type need not be
10554 complete, if either it is dependent (since there
10555 is no meaningful definition of complete in that
10556 case) or the qualifying class is currently being
10557 defined. */
10558 || !(dependent_type_p (ctype)
10559 || currently_open_class (ctype)))
10560 /* Check that the qualifying type is complete. */
10561 && !complete_type_or_else (ctype, NULL_TREE))
10562 return error_mark_node;
10563 else if (TREE_CODE (type) == FUNCTION_TYPE)
10565 if (current_class_type
10566 && (!friendp || funcdef_flag))
10568 error (funcdef_flag
10569 ? G_("cannot define member function %<%T::%s%> "
10570 "within %<%T%>")
10571 : G_("cannot declare member function %<%T::%s%> "
10572 "within %<%T%>"),
10573 ctype, name, current_class_type);
10574 return error_mark_node;
10577 else if (typedef_p && current_class_type)
10579 error ("cannot declare member %<%T::%s%> within %qT",
10580 ctype, name, current_class_type);
10581 return error_mark_node;
10585 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
10586 ctype = current_class_type;
10588 /* Now TYPE has the actual type. */
10590 if (returned_attrs)
10592 if (attrlist)
10593 *attrlist = chainon (returned_attrs, *attrlist);
10594 else
10595 attrlist = &returned_attrs;
10598 if (declarator
10599 && declarator->kind == cdk_id
10600 && declarator->std_attributes)
10601 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
10602 a declarator-id appertains to the entity that is declared. */
10603 *attrlist = chainon (*attrlist, declarator->std_attributes);
10605 /* Handle parameter packs. */
10606 if (parameter_pack_p)
10608 if (decl_context == PARM)
10609 /* Turn the type into a pack expansion.*/
10610 type = make_pack_expansion (type);
10611 else
10612 error ("non-parameter %qs cannot be a parameter pack", name);
10615 if ((decl_context == FIELD || decl_context == PARM)
10616 && !processing_template_decl
10617 && variably_modified_type_p (type, NULL_TREE))
10619 if (decl_context == FIELD)
10620 error ("data member may not have variably modified type %qT", type);
10621 else
10622 error ("parameter may not have variably modified type %qT", type);
10623 type = error_mark_node;
10626 if (explicitp == 1 || (explicitp && friendp))
10628 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
10629 in the declaration of a constructor or conversion function within
10630 a class definition. */
10631 if (!current_class_type)
10632 error_at (declspecs->locations[ds_explicit],
10633 "%<explicit%> outside class declaration");
10634 else if (friendp)
10635 error_at (declspecs->locations[ds_explicit],
10636 "%<explicit%> in friend declaration");
10637 else
10638 error_at (declspecs->locations[ds_explicit],
10639 "only declarations of constructors and conversion operators "
10640 "can be %<explicit%>");
10641 explicitp = 0;
10644 if (storage_class == sc_mutable)
10646 if (decl_context != FIELD || friendp)
10648 error ("non-member %qs cannot be declared %<mutable%>", name);
10649 storage_class = sc_none;
10651 else if (decl_context == TYPENAME || typedef_p)
10653 error ("non-object member %qs cannot be declared %<mutable%>", name);
10654 storage_class = sc_none;
10656 else if (TREE_CODE (type) == FUNCTION_TYPE
10657 || TREE_CODE (type) == METHOD_TYPE)
10659 error ("function %qs cannot be declared %<mutable%>", name);
10660 storage_class = sc_none;
10662 else if (staticp)
10664 error ("static %qs cannot be declared %<mutable%>", name);
10665 storage_class = sc_none;
10667 else if (type_quals & TYPE_QUAL_CONST)
10669 error ("const %qs cannot be declared %<mutable%>", name);
10670 storage_class = sc_none;
10672 else if (TREE_CODE (type) == REFERENCE_TYPE)
10674 permerror (input_location, "reference %qs cannot be declared "
10675 "%<mutable%>", name);
10676 storage_class = sc_none;
10680 /* If this is declaring a typedef name, return a TYPE_DECL. */
10681 if (typedef_p && decl_context != TYPENAME)
10683 tree decl;
10685 /* Note that the grammar rejects storage classes
10686 in typenames, fields or parameters. */
10687 if (current_lang_name == lang_name_java)
10688 TYPE_FOR_JAVA (type) = 1;
10690 /* This declaration:
10692 typedef void f(int) const;
10694 declares a function type which is not a member of any
10695 particular class, but which is cv-qualified; for
10696 example "f S::*" declares a pointer to a const-qualified
10697 member function of S. We record the cv-qualification in the
10698 function type. */
10699 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
10701 type = apply_memfn_quals (type, memfn_quals, rqual);
10703 /* We have now dealt with these qualifiers. */
10704 memfn_quals = TYPE_UNQUALIFIED;
10705 rqual = REF_QUAL_NONE;
10708 if (type_uses_auto (type))
10710 error ("typedef declared %<auto%>");
10711 type = error_mark_node;
10714 if (reqs)
10715 error_at (location_of (reqs), "requires-clause on typedef");
10717 if (decl_context == FIELD)
10718 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
10719 else
10720 decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
10721 if (id_declarator && declarator->u.id.qualifying_scope) {
10722 error_at (DECL_SOURCE_LOCATION (decl),
10723 "typedef name may not be a nested-name-specifier");
10724 TREE_TYPE (decl) = error_mark_node;
10727 if (decl_context != FIELD)
10729 if (!current_function_decl)
10730 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
10731 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl)
10732 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
10733 (current_function_decl)))
10734 /* The TYPE_DECL is "abstract" because there will be
10735 clones of this constructor/destructor, and there will
10736 be copies of this TYPE_DECL generated in those
10737 clones. The decloning optimization (for space) may
10738 revert this subsequently if it determines that
10739 the clones should share a common implementation. */
10740 DECL_ABSTRACT_P (decl) = true;
10742 else if (current_class_type
10743 && constructor_name_p (unqualified_id, current_class_type))
10744 permerror (input_location, "ISO C++ forbids nested type %qD with same name "
10745 "as enclosing class",
10746 unqualified_id);
10748 /* If the user declares "typedef struct {...} foo" then the
10749 struct will have an anonymous name. Fill that name in now.
10750 Nothing can refer to it, so nothing needs know about the name
10751 change. */
10752 if (type != error_mark_node
10753 && unqualified_id
10754 && TYPE_NAME (type)
10755 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10756 && TYPE_ANONYMOUS_P (type)
10757 && declspecs->type_definition_p
10758 && attributes_naming_typedef_ok (*attrlist)
10759 && cp_type_quals (type) == TYPE_UNQUALIFIED)
10761 tree t;
10763 /* Replace the anonymous name with the real name everywhere. */
10764 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
10766 if (anon_aggrname_p (TYPE_IDENTIFIER (t)))
10767 /* We do not rename the debug info representing the
10768 anonymous tagged type because the standard says in
10769 [dcl.typedef] that the naming applies only for
10770 linkage purposes. */
10771 /*debug_hooks->set_name (t, decl);*/
10772 TYPE_NAME (t) = decl;
10775 if (TYPE_LANG_SPECIFIC (type))
10776 TYPE_WAS_ANONYMOUS (type) = 1;
10778 /* If this is a typedef within a template class, the nested
10779 type is a (non-primary) template. The name for the
10780 template needs updating as well. */
10781 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
10782 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
10783 = TYPE_IDENTIFIER (type);
10785 /* Adjust linkage now that we aren't anonymous anymore. */
10786 reset_type_linkage (type);
10788 /* FIXME remangle member functions; member functions of a
10789 type with external linkage have external linkage. */
10792 if (signed_p
10793 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
10794 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
10796 bad_specifiers (decl, BSP_TYPE, virtualp,
10797 memfn_quals != TYPE_UNQUALIFIED,
10798 inlinep, friendp, raises != NULL_TREE);
10800 if (decl_spec_seq_has_spec_p (declspecs, ds_alias))
10801 /* Acknowledge that this was written:
10802 `using analias = atype;'. */
10803 TYPE_DECL_ALIAS_P (decl) = 1;
10805 return decl;
10808 /* Detect the case of an array type of unspecified size
10809 which came, as such, direct from a typedef name.
10810 We must copy the type, so that the array's domain can be
10811 individually set by the object's initializer. */
10813 if (type && typedef_type
10814 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
10815 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
10816 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
10818 /* Detect where we're using a typedef of function type to declare a
10819 function. PARMS will not be set, so we must create it now. */
10821 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
10823 tree decls = NULL_TREE;
10824 tree args;
10826 for (args = TYPE_ARG_TYPES (type);
10827 args && args != void_list_node;
10828 args = TREE_CHAIN (args))
10830 tree decl = cp_build_parm_decl (NULL_TREE, TREE_VALUE (args));
10832 DECL_CHAIN (decl) = decls;
10833 decls = decl;
10836 parms = nreverse (decls);
10838 if (decl_context != TYPENAME)
10840 /* The qualifiers on the function type become the qualifiers on
10841 the non-static member function. */
10842 memfn_quals |= type_memfn_quals (type);
10843 rqual = type_memfn_rqual (type);
10844 type_quals = TYPE_UNQUALIFIED;
10848 /* If this is a type name (such as, in a cast or sizeof),
10849 compute the type and return it now. */
10851 if (decl_context == TYPENAME)
10853 /* Note that here we don't care about type_quals. */
10855 /* Special case: "friend class foo" looks like a TYPENAME context. */
10856 if (friendp)
10858 if (inlinep)
10860 error ("%<inline%> specified for friend class declaration");
10861 inlinep = 0;
10864 if (!current_aggr)
10866 /* Don't allow friend declaration without a class-key. */
10867 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
10868 permerror (input_location, "template parameters cannot be friends");
10869 else if (TREE_CODE (type) == TYPENAME_TYPE)
10870 permerror (input_location, "friend declaration requires class-key, "
10871 "i.e. %<friend class %T::%D%>",
10872 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
10873 else
10874 permerror (input_location, "friend declaration requires class-key, "
10875 "i.e. %<friend %#T%>",
10876 type);
10879 /* Only try to do this stuff if we didn't already give up. */
10880 if (type != integer_type_node)
10882 /* A friendly class? */
10883 if (current_class_type)
10884 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
10885 /*complain=*/true);
10886 else
10887 error ("trying to make class %qT a friend of global scope",
10888 type);
10890 type = void_type_node;
10893 else if (memfn_quals || rqual)
10895 if (ctype == NULL_TREE
10896 && TREE_CODE (type) == METHOD_TYPE)
10897 ctype = TYPE_METHOD_BASETYPE (type);
10899 if (ctype)
10900 type = build_memfn_type (type, ctype, memfn_quals, rqual);
10901 /* Core issue #547: need to allow this in template type args.
10902 Allow it in general in C++11 for alias-declarations. */
10903 else if ((template_type_arg || cxx_dialect >= cxx11)
10904 && TREE_CODE (type) == FUNCTION_TYPE)
10905 type = apply_memfn_quals (type, memfn_quals, rqual);
10906 else
10907 error ("invalid qualifiers on non-member function type");
10910 if (reqs)
10911 error_at (location_of (reqs), "requires-clause on type-id");
10913 return type;
10915 else if (unqualified_id == NULL_TREE && decl_context != PARM
10916 && decl_context != CATCHPARM
10917 && TREE_CODE (type) != UNION_TYPE
10918 && ! bitfield)
10920 error ("abstract declarator %qT used as declaration", type);
10921 return error_mark_node;
10924 /* Only functions may be declared using an operator-function-id. */
10925 if (unqualified_id
10926 && IDENTIFIER_OPNAME_P (unqualified_id)
10927 && TREE_CODE (type) != FUNCTION_TYPE
10928 && TREE_CODE (type) != METHOD_TYPE)
10930 error ("declaration of %qD as non-function", unqualified_id);
10931 return error_mark_node;
10934 if (reqs
10935 && TREE_CODE (type) != FUNCTION_TYPE
10936 && TREE_CODE (type) != METHOD_TYPE)
10937 error_at (location_of (reqs),
10938 "requires-clause on declaration of non-function type %qT",
10939 type);
10941 /* We don't check parameter types here because we can emit a better
10942 error message later. */
10943 if (decl_context != PARM)
10945 type = check_var_type (unqualified_id, type);
10946 if (type == error_mark_node)
10947 return error_mark_node;
10950 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
10951 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
10953 if (decl_context == PARM || decl_context == CATCHPARM)
10955 if (ctype || in_namespace)
10956 error ("cannot use %<::%> in parameter declaration");
10958 if (type_uses_auto (type))
10960 if (cxx_dialect >= cxx14)
10961 error ("%<auto%> parameter not permitted in this context");
10962 else
10963 error ("parameter declared %<auto%>");
10964 type = error_mark_node;
10967 /* A parameter declared as an array of T is really a pointer to T.
10968 One declared as a function is really a pointer to a function.
10969 One declared as a member is really a pointer to member. */
10971 if (TREE_CODE (type) == ARRAY_TYPE)
10973 /* Transfer const-ness of array into that of type pointed to. */
10974 type = build_pointer_type (TREE_TYPE (type));
10975 type_quals = TYPE_UNQUALIFIED;
10976 array_parameter_p = true;
10978 else if (TREE_CODE (type) == FUNCTION_TYPE)
10979 type = build_pointer_type (type);
10982 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
10983 && !NEW_DELETE_OPNAME_P (unqualified_id))
10985 cp_cv_quals real_quals = memfn_quals;
10986 if (cxx_dialect < cxx14 && constexpr_p
10987 && sfk != sfk_constructor && sfk != sfk_destructor)
10988 real_quals |= TYPE_QUAL_CONST;
10989 type = build_memfn_type (type, ctype, real_quals, rqual);
10993 tree decl = NULL_TREE;
10995 if (decl_context == PARM)
10997 decl = cp_build_parm_decl (unqualified_id, type);
10998 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
11000 bad_specifiers (decl, BSP_PARM, virtualp,
11001 memfn_quals != TYPE_UNQUALIFIED,
11002 inlinep, friendp, raises != NULL_TREE);
11004 else if (decl_context == FIELD)
11006 if (!staticp && !friendp && TREE_CODE (type) != METHOD_TYPE
11007 && type_uses_auto (type))
11009 error ("non-static data member declared %<auto%>");
11010 type = error_mark_node;
11013 /* The C99 flexible array extension. */
11014 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
11015 && TYPE_DOMAIN (type) == NULL_TREE)
11017 if (ctype
11018 && (TREE_CODE (ctype) == UNION_TYPE
11019 || TREE_CODE (ctype) == QUAL_UNION_TYPE))
11021 error ("flexible array member in union");
11022 type = error_mark_node;
11024 else
11026 /* Flexible array member has a null domain. */
11027 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
11031 if (type == error_mark_node)
11033 /* Happens when declaring arrays of sizes which
11034 are error_mark_node, for example. */
11035 decl = NULL_TREE;
11037 else if (in_namespace && !friendp)
11039 /* Something like struct S { int N::j; }; */
11040 error ("invalid use of %<::%>");
11041 return error_mark_node;
11043 else if (TREE_CODE (type) == FUNCTION_TYPE
11044 || TREE_CODE (type) == METHOD_TYPE)
11046 int publicp = 0;
11047 tree function_context;
11049 if (friendp == 0)
11051 /* This should never happen in pure C++ (the check
11052 could be an assert). It could happen in
11053 Objective-C++ if someone writes invalid code that
11054 uses a function declaration for an instance
11055 variable or property (instance variables and
11056 properties are parsed as FIELD_DECLs, but they are
11057 part of an Objective-C class, not a C++ class).
11058 That code is invalid and is caught by this
11059 check. */
11060 if (!ctype)
11062 error ("declaration of function %qD in invalid context",
11063 unqualified_id);
11064 return error_mark_node;
11067 /* ``A union may [ ... ] not [ have ] virtual functions.''
11068 ARM 9.5 */
11069 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
11071 error ("function %qD declared %<virtual%> inside a union",
11072 unqualified_id);
11073 return error_mark_node;
11076 if (NEW_DELETE_OPNAME_P (unqualified_id))
11078 if (virtualp)
11080 error ("%qD cannot be declared %<virtual%>, since it "
11081 "is always static",
11082 unqualified_id);
11083 virtualp = 0;
11088 /* Check that the name used for a destructor makes sense. */
11089 if (sfk == sfk_destructor)
11091 tree uqname = id_declarator->u.id.unqualified_name;
11093 if (!ctype)
11095 gcc_assert (friendp);
11096 error ("expected qualified name in friend declaration "
11097 "for destructor %qD", uqname);
11098 return error_mark_node;
11101 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
11103 error ("declaration of %qD as member of %qT",
11104 uqname, ctype);
11105 return error_mark_node;
11107 if (concept_p)
11109 error ("a destructor cannot be %<concept%>");
11110 return error_mark_node;
11112 if (constexpr_p)
11114 error ("a destructor cannot be %<constexpr%>");
11115 return error_mark_node;
11118 else if (sfk == sfk_constructor && friendp && !ctype)
11120 error ("expected qualified name in friend declaration "
11121 "for constructor %qD",
11122 id_declarator->u.id.unqualified_name);
11123 return error_mark_node;
11125 if (sfk == sfk_constructor)
11126 if (concept_p)
11128 error ("a constructor cannot be %<concept%>");
11129 return error_mark_node;
11131 if (concept_p)
11133 error ("a concept cannot be a member function");
11134 concept_p = false;
11137 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
11139 tree tmpl = TREE_OPERAND (unqualified_id, 0);
11140 if (variable_template_p (tmpl))
11142 error ("specialization of variable template %qD "
11143 "declared as function", tmpl);
11144 inform (DECL_SOURCE_LOCATION (tmpl),
11145 "variable template declared here");
11146 return error_mark_node;
11150 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
11151 function_context = (ctype != NULL_TREE) ?
11152 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
11153 publicp = (! friendp || ! staticp)
11154 && function_context == NULL_TREE;
11156 if (late_return_type_p)
11157 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
11159 decl = grokfndecl (ctype, type,
11160 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
11161 ? unqualified_id : dname,
11162 parms,
11163 unqualified_id,
11164 reqs,
11165 virtualp, flags, memfn_quals, rqual, raises,
11166 friendp ? -1 : 0, friendp, publicp,
11167 inlinep | (2 * constexpr_p) | (4 * concept_p),
11168 initialized == SD_DELETED, sfk,
11169 funcdef_flag, template_count, in_namespace,
11170 attrlist, declarator->id_loc);
11171 decl = set_virt_specifiers (decl, virt_specifiers);
11172 if (decl == NULL_TREE)
11173 return error_mark_node;
11174 #if 0
11175 /* This clobbers the attrs stored in `decl' from `attrlist'. */
11176 /* The decl and setting of decl_attr is also turned off. */
11177 decl = build_decl_attribute_variant (decl, decl_attr);
11178 #endif
11180 /* [class.conv.ctor]
11182 A constructor declared without the function-specifier
11183 explicit that can be called with a single parameter
11184 specifies a conversion from the type of its first
11185 parameter to the type of its class. Such a constructor
11186 is called a converting constructor. */
11187 if (explicitp == 2)
11188 DECL_NONCONVERTING_P (decl) = 1;
11190 else if (!staticp && !dependent_type_p (type)
11191 && !COMPLETE_TYPE_P (complete_type (type))
11192 && (TREE_CODE (type) != ARRAY_TYPE
11193 || !COMPLETE_TYPE_P (TREE_TYPE (type))
11194 || initialized == 0))
11196 if (TREE_CODE (type) != ARRAY_TYPE
11197 || !COMPLETE_TYPE_P (TREE_TYPE (type)))
11199 if (unqualified_id)
11201 error ("field %qD has incomplete type %qT",
11202 unqualified_id, type);
11203 cxx_incomplete_type_inform (strip_array_types (type));
11205 else
11206 error ("name %qT has incomplete type", type);
11208 type = error_mark_node;
11209 decl = NULL_TREE;
11212 else
11214 if (friendp)
11216 error ("%qE is neither function nor member function; "
11217 "cannot be declared friend", unqualified_id);
11218 friendp = 0;
11220 decl = NULL_TREE;
11223 if (friendp)
11225 /* Friends are treated specially. */
11226 if (ctype == current_class_type)
11227 ; /* We already issued a permerror. */
11228 else if (decl && DECL_NAME (decl))
11230 if (template_class_depth (current_class_type) == 0)
11232 decl = check_explicit_specialization
11233 (unqualified_id, decl, template_count,
11234 2 * funcdef_flag + 4);
11235 if (decl == error_mark_node)
11236 return error_mark_node;
11239 decl = do_friend (ctype, unqualified_id, decl,
11240 *attrlist, flags,
11241 funcdef_flag);
11242 return decl;
11244 else
11245 return error_mark_node;
11248 /* Structure field. It may not be a function, except for C++. */
11250 if (decl == NULL_TREE)
11252 if (staticp)
11254 /* C++ allows static class members. All other work
11255 for this is done by grokfield. */
11256 decl = build_lang_decl_loc (declarator
11257 ? declarator->id_loc
11258 : input_location,
11259 VAR_DECL, unqualified_id, type);
11260 set_linkage_for_static_data_member (decl);
11261 /* Even if there is an in-class initialization, DECL
11262 is considered undefined until an out-of-class
11263 definition is provided. */
11264 DECL_EXTERNAL (decl) = 1;
11266 if (thread_p)
11268 CP_DECL_THREAD_LOCAL_P (decl) = true;
11269 if (!processing_template_decl)
11270 set_decl_tls_model (decl, decl_default_tls_model (decl));
11271 if (declspecs->gnu_thread_keyword_p)
11272 SET_DECL_GNU_TLS_P (decl);
11274 if (concept_p)
11275 error ("static data member %qE declared %<concept%>",
11276 unqualified_id);
11277 else if (constexpr_p && !initialized)
11279 error ("constexpr static data member %qD must have an "
11280 "initializer", decl);
11281 constexpr_p = false;
11284 else
11286 if (concept_p)
11287 error ("non-static data member %qE declared %<concept%>",
11288 unqualified_id);
11289 else if (constexpr_p)
11291 error ("non-static data member %qE declared %<constexpr%>",
11292 unqualified_id);
11293 constexpr_p = false;
11295 decl = build_decl (input_location,
11296 FIELD_DECL, unqualified_id, type);
11297 DECL_NONADDRESSABLE_P (decl) = bitfield;
11298 if (bitfield && !unqualified_id)
11299 TREE_NO_WARNING (decl) = 1;
11301 if (storage_class == sc_mutable)
11303 DECL_MUTABLE_P (decl) = 1;
11304 storage_class = sc_none;
11307 if (initialized)
11309 /* An attempt is being made to initialize a non-static
11310 member. This is new in C++11. */
11311 maybe_warn_cpp0x (CPP0X_NSDMI);
11313 /* If this has been parsed with static storage class, but
11314 errors forced staticp to be cleared, ensure NSDMI is
11315 not present. */
11316 if (declspecs->storage_class == sc_static)
11317 DECL_INITIAL (decl) = error_mark_node;
11321 bad_specifiers (decl, BSP_FIELD, virtualp,
11322 memfn_quals != TYPE_UNQUALIFIED,
11323 inlinep, friendp, raises != NULL_TREE);
11326 else if (TREE_CODE (type) == FUNCTION_TYPE
11327 || TREE_CODE (type) == METHOD_TYPE)
11329 tree original_name;
11330 int publicp = 0;
11332 if (!unqualified_id)
11333 return error_mark_node;
11335 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
11336 original_name = dname;
11337 else
11338 original_name = unqualified_id;
11340 if (storage_class == sc_auto)
11341 error ("storage class %<auto%> invalid for function %qs", name);
11342 else if (storage_class == sc_register)
11343 error ("storage class %<register%> invalid for function %qs", name);
11344 else if (thread_p)
11346 if (declspecs->gnu_thread_keyword_p)
11347 error ("storage class %<__thread%> invalid for function %qs",
11348 name);
11349 else
11350 error ("storage class %<thread_local%> invalid for function %qs",
11351 name);
11354 if (virt_specifiers)
11355 error ("virt-specifiers in %qs not allowed outside a class definition", name);
11356 /* Function declaration not at top level.
11357 Storage classes other than `extern' are not allowed
11358 and `extern' makes no difference. */
11359 if (! toplevel_bindings_p ()
11360 && (storage_class == sc_static
11361 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
11362 && pedantic)
11364 if (storage_class == sc_static)
11365 pedwarn (input_location, OPT_Wpedantic,
11366 "%<static%> specified invalid for function %qs "
11367 "declared out of global scope", name);
11368 else
11369 pedwarn (input_location, OPT_Wpedantic,
11370 "%<inline%> specifier invalid for function %qs "
11371 "declared out of global scope", name);
11374 if (ctype == NULL_TREE)
11376 if (virtualp)
11378 error ("virtual non-class function %qs", name);
11379 virtualp = 0;
11381 else if (sfk == sfk_constructor
11382 || sfk == sfk_destructor)
11384 error (funcdef_flag
11385 ? G_("%qs defined in a non-class scope")
11386 : G_("%qs declared in a non-class scope"), name);
11387 sfk = sfk_none;
11391 /* Record whether the function is public. */
11392 publicp = (ctype != NULL_TREE
11393 || storage_class != sc_static);
11395 if (late_return_type_p)
11396 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
11398 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
11399 reqs, virtualp, flags, memfn_quals, rqual, raises,
11400 1, friendp,
11401 publicp,
11402 inlinep | (2 * constexpr_p) | (4 * concept_p),
11403 initialized == SD_DELETED,
11404 sfk,
11405 funcdef_flag,
11406 template_count, in_namespace, attrlist,
11407 declarator->id_loc);
11408 if (decl == NULL_TREE)
11409 return error_mark_node;
11411 if (staticp == 1)
11413 int invalid_static = 0;
11415 /* Don't allow a static member function in a class, and forbid
11416 declaring main to be static. */
11417 if (TREE_CODE (type) == METHOD_TYPE)
11419 permerror (input_location, "cannot declare member function %qD to have "
11420 "static linkage", decl);
11421 invalid_static = 1;
11423 else if (current_function_decl)
11425 /* FIXME need arm citation */
11426 error ("cannot declare static function inside another function");
11427 invalid_static = 1;
11430 if (invalid_static)
11432 staticp = 0;
11433 storage_class = sc_none;
11437 else
11439 /* It's a variable. */
11441 /* An uninitialized decl with `extern' is a reference. */
11442 decl = grokvardecl (type, dname, unqualified_id,
11443 declspecs,
11444 initialized,
11445 ((type_quals & TYPE_QUAL_CONST) != 0) | (2 * concept_p),
11446 template_count,
11447 ctype ? ctype : in_namespace);
11448 if (decl == NULL_TREE)
11449 return error_mark_node;
11451 bad_specifiers (decl, BSP_VAR, virtualp,
11452 memfn_quals != TYPE_UNQUALIFIED,
11453 inlinep, friendp, raises != NULL_TREE);
11455 if (ctype)
11457 DECL_CONTEXT (decl) = ctype;
11458 if (staticp == 1)
11460 permerror (input_location, "%<static%> may not be used when defining "
11461 "(as opposed to declaring) a static data member");
11462 staticp = 0;
11463 storage_class = sc_none;
11465 if (storage_class == sc_register && TREE_STATIC (decl))
11467 error ("static member %qD declared %<register%>", decl);
11468 storage_class = sc_none;
11470 if (storage_class == sc_extern && pedantic)
11472 pedwarn (input_location, OPT_Wpedantic,
11473 "cannot explicitly declare member %q#D to have "
11474 "extern linkage", decl);
11475 storage_class = sc_none;
11478 else if (constexpr_p && DECL_EXTERNAL (decl))
11480 error ("declaration of constexpr variable %qD is not a definition",
11481 decl);
11482 constexpr_p = false;
11486 if (storage_class == sc_extern && initialized && !funcdef_flag)
11488 if (toplevel_bindings_p ())
11490 /* It's common practice (and completely valid) to have a const
11491 be initialized and declared extern. */
11492 if (!(type_quals & TYPE_QUAL_CONST))
11493 warning (0, "%qs initialized and declared %<extern%>", name);
11495 else
11497 error ("%qs has both %<extern%> and initializer", name);
11498 return error_mark_node;
11502 /* Record `register' declaration for warnings on &
11503 and in case doing stupid register allocation. */
11505 if (storage_class == sc_register)
11506 DECL_REGISTER (decl) = 1;
11507 else if (storage_class == sc_extern)
11508 DECL_THIS_EXTERN (decl) = 1;
11509 else if (storage_class == sc_static)
11510 DECL_THIS_STATIC (decl) = 1;
11512 /* Set constexpr flag on vars (functions got it in grokfndecl). */
11513 if (constexpr_p && VAR_P (decl))
11514 DECL_DECLARED_CONSTEXPR_P (decl) = true;
11516 /* Record constancy and volatility on the DECL itself . There's
11517 no need to do this when processing a template; we'll do this
11518 for the instantiated declaration based on the type of DECL. */
11519 if (!processing_template_decl)
11520 cp_apply_type_quals_to_decl (type_quals, decl);
11522 return decl;
11526 /* Subroutine of start_function. Ensure that each of the parameter
11527 types (as listed in PARMS) is complete, as is required for a
11528 function definition. */
11530 static void
11531 require_complete_types_for_parms (tree parms)
11533 for (; parms; parms = DECL_CHAIN (parms))
11535 if (dependent_type_p (TREE_TYPE (parms)))
11536 continue;
11537 if (!VOID_TYPE_P (TREE_TYPE (parms))
11538 && complete_type_or_else (TREE_TYPE (parms), parms))
11540 relayout_decl (parms);
11541 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
11543 else
11544 /* grokparms or complete_type_or_else will have already issued
11545 an error. */
11546 TREE_TYPE (parms) = error_mark_node;
11550 /* Returns nonzero if T is a local variable. */
11553 local_variable_p (const_tree t)
11555 if ((VAR_P (t)
11556 /* A VAR_DECL with a context that is a _TYPE is a static data
11557 member. */
11558 && !TYPE_P (CP_DECL_CONTEXT (t))
11559 /* Any other non-local variable must be at namespace scope. */
11560 && !DECL_NAMESPACE_SCOPE_P (t))
11561 || (TREE_CODE (t) == PARM_DECL))
11562 return 1;
11564 return 0;
11567 /* Like local_variable_p, but suitable for use as a tree-walking
11568 function. */
11570 static tree
11571 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
11572 void * /*data*/)
11574 if (local_variable_p (*tp)
11575 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
11576 return *tp;
11577 else if (TYPE_P (*tp))
11578 *walk_subtrees = 0;
11580 return NULL_TREE;
11583 /* Check that ARG, which is a default-argument expression for a
11584 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
11585 something goes wrong. DECL may also be a _TYPE node, rather than a
11586 DECL, if there is no DECL available. */
11588 tree
11589 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
11591 tree var;
11592 tree decl_type;
11594 if (TREE_CODE (arg) == DEFAULT_ARG)
11595 /* We get a DEFAULT_ARG when looking at an in-class declaration
11596 with a default argument. Ignore the argument for now; we'll
11597 deal with it after the class is complete. */
11598 return arg;
11600 if (TYPE_P (decl))
11602 decl_type = decl;
11603 decl = NULL_TREE;
11605 else
11606 decl_type = TREE_TYPE (decl);
11608 if (arg == error_mark_node
11609 || decl == error_mark_node
11610 || TREE_TYPE (arg) == error_mark_node
11611 || decl_type == error_mark_node)
11612 /* Something already went wrong. There's no need to check
11613 further. */
11614 return error_mark_node;
11616 /* [dcl.fct.default]
11618 A default argument expression is implicitly converted to the
11619 parameter type. */
11620 ++cp_unevaluated_operand;
11621 perform_implicit_conversion_flags (decl_type, arg, complain,
11622 LOOKUP_IMPLICIT);
11623 --cp_unevaluated_operand;
11625 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
11626 the call sites. */
11627 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
11628 && null_ptr_cst_p (arg))
11629 return nullptr_node;
11631 /* [dcl.fct.default]
11633 Local variables shall not be used in default argument
11634 expressions.
11636 The keyword `this' shall not be used in a default argument of a
11637 member function. */
11638 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
11639 if (var)
11641 if (complain & tf_warning_or_error)
11643 if (DECL_NAME (var) == this_identifier)
11644 permerror (input_location, "default argument %qE uses %qD",
11645 arg, var);
11646 else
11647 error ("default argument %qE uses local variable %qD", arg, var);
11649 return error_mark_node;
11652 /* All is well. */
11653 return arg;
11656 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
11658 static tree
11659 type_is_deprecated (tree type)
11661 enum tree_code code;
11662 if (TREE_DEPRECATED (type))
11663 return type;
11664 if (TYPE_NAME (type))
11666 if (TREE_DEPRECATED (TYPE_NAME (type)))
11667 return type;
11668 else
11669 return NULL_TREE;
11672 /* Do warn about using typedefs to a deprecated class. */
11673 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
11674 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
11676 code = TREE_CODE (type);
11678 if (code == POINTER_TYPE || code == REFERENCE_TYPE
11679 || code == OFFSET_TYPE || code == FUNCTION_TYPE
11680 || code == METHOD_TYPE || code == ARRAY_TYPE)
11681 return type_is_deprecated (TREE_TYPE (type));
11683 if (TYPE_PTRMEMFUNC_P (type))
11684 return type_is_deprecated
11685 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
11687 return NULL_TREE;
11690 /* Decode the list of parameter types for a function type.
11691 Given the list of things declared inside the parens,
11692 return a list of types.
11694 If this parameter does not end with an ellipsis, we append
11695 void_list_node.
11697 *PARMS is set to the chain of PARM_DECLs created. */
11699 tree
11700 grokparms (tree parmlist, tree *parms)
11702 tree result = NULL_TREE;
11703 tree decls = NULL_TREE;
11704 tree parm;
11705 int any_error = 0;
11707 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
11709 tree type = NULL_TREE;
11710 tree init = TREE_PURPOSE (parm);
11711 tree decl = TREE_VALUE (parm);
11712 const char *errmsg;
11714 if (parm == void_list_node)
11715 break;
11717 if (! decl || TREE_TYPE (decl) == error_mark_node)
11718 continue;
11720 type = TREE_TYPE (decl);
11721 if (VOID_TYPE_P (type))
11723 if (same_type_p (type, void_type_node)
11724 && !init
11725 && !DECL_NAME (decl) && !result
11726 && TREE_CHAIN (parm) == void_list_node)
11727 /* DR 577: A parameter list consisting of a single
11728 unnamed parameter of non-dependent type 'void'. */
11729 break;
11730 else if (cv_qualified_p (type))
11731 error_at (DECL_SOURCE_LOCATION (decl),
11732 "invalid use of cv-qualified type %qT in "
11733 "parameter declaration", type);
11734 else
11735 error_at (DECL_SOURCE_LOCATION (decl),
11736 "invalid use of type %<void%> in parameter "
11737 "declaration");
11738 /* It's not a good idea to actually create parameters of
11739 type `void'; other parts of the compiler assume that a
11740 void type terminates the parameter list. */
11741 type = error_mark_node;
11742 TREE_TYPE (decl) = error_mark_node;
11745 if (type != error_mark_node
11746 && TYPE_FOR_JAVA (type)
11747 && MAYBE_CLASS_TYPE_P (type))
11749 error ("parameter %qD has Java class type", decl);
11750 type = error_mark_node;
11751 TREE_TYPE (decl) = error_mark_node;
11752 init = NULL_TREE;
11755 if (type != error_mark_node
11756 && (errmsg = targetm.invalid_parameter_type (type)))
11758 error (errmsg);
11759 type = error_mark_node;
11760 TREE_TYPE (decl) = error_mark_node;
11763 if (type != error_mark_node)
11765 if (deprecated_state != DEPRECATED_SUPPRESS)
11767 tree deptype = type_is_deprecated (type);
11768 if (deptype)
11769 warn_deprecated_use (deptype, NULL_TREE);
11772 /* Top-level qualifiers on the parameters are
11773 ignored for function types. */
11774 type = cp_build_qualified_type (type, 0);
11775 if (TREE_CODE (type) == METHOD_TYPE)
11777 error ("parameter %qD invalidly declared method type", decl);
11778 type = build_pointer_type (type);
11779 TREE_TYPE (decl) = type;
11781 else if (abstract_virtuals_error (decl, type))
11782 any_error = 1; /* Seems like a good idea. */
11783 else if (POINTER_TYPE_P (type))
11785 /* [dcl.fct]/6, parameter types cannot contain pointers
11786 (references) to arrays of unknown bound. */
11787 tree t = TREE_TYPE (type);
11788 int ptr = TYPE_PTR_P (type);
11790 while (1)
11792 if (TYPE_PTR_P (t))
11793 ptr = 1;
11794 else if (TREE_CODE (t) != ARRAY_TYPE)
11795 break;
11796 else if (!TYPE_DOMAIN (t))
11797 break;
11798 t = TREE_TYPE (t);
11800 if (TREE_CODE (t) == ARRAY_TYPE)
11801 error (ptr
11802 ? G_("parameter %qD includes pointer to array of "
11803 "unknown bound %qT")
11804 : G_("parameter %qD includes reference to array of "
11805 "unknown bound %qT"),
11806 decl, t);
11809 if (any_error)
11810 init = NULL_TREE;
11811 else if (init && !processing_template_decl)
11812 init = check_default_argument (decl, init, tf_warning_or_error);
11815 DECL_CHAIN (decl) = decls;
11816 decls = decl;
11817 result = tree_cons (init, type, result);
11819 decls = nreverse (decls);
11820 result = nreverse (result);
11821 if (parm)
11822 result = chainon (result, void_list_node);
11823 *parms = decls;
11825 return result;
11829 /* D is a constructor or overloaded `operator='.
11831 Let T be the class in which D is declared. Then, this function
11832 returns:
11834 -1 if D's is an ill-formed constructor or copy assignment operator
11835 whose first parameter is of type `T'.
11836 0 if D is not a copy constructor or copy assignment
11837 operator.
11838 1 if D is a copy constructor or copy assignment operator whose
11839 first parameter is a reference to non-const qualified T.
11840 2 if D is a copy constructor or copy assignment operator whose
11841 first parameter is a reference to const qualified T.
11843 This function can be used as a predicate. Positive values indicate
11844 a copy constructor and nonzero values indicate a copy assignment
11845 operator. */
11848 copy_fn_p (const_tree d)
11850 tree args;
11851 tree arg_type;
11852 int result = 1;
11854 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11856 if (TREE_CODE (d) == TEMPLATE_DECL
11857 || (DECL_TEMPLATE_INFO (d)
11858 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11859 /* Instantiations of template member functions are never copy
11860 functions. Note that member functions of templated classes are
11861 represented as template functions internally, and we must
11862 accept those as copy functions. */
11863 return 0;
11865 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11866 if (!args)
11867 return 0;
11869 arg_type = TREE_VALUE (args);
11870 if (arg_type == error_mark_node)
11871 return 0;
11873 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
11875 /* Pass by value copy assignment operator. */
11876 result = -1;
11878 else if (TREE_CODE (arg_type) == REFERENCE_TYPE
11879 && !TYPE_REF_IS_RVALUE (arg_type)
11880 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
11882 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
11883 result = 2;
11885 else
11886 return 0;
11888 args = TREE_CHAIN (args);
11890 if (args && args != void_list_node && !TREE_PURPOSE (args))
11891 /* There are more non-optional args. */
11892 return 0;
11894 return result;
11897 /* D is a constructor or overloaded `operator='.
11899 Let T be the class in which D is declared. Then, this function
11900 returns true when D is a move constructor or move assignment
11901 operator, false otherwise. */
11903 bool
11904 move_fn_p (const_tree d)
11906 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11908 if (cxx_dialect == cxx98)
11909 /* There are no move constructors if we are in C++98 mode. */
11910 return false;
11912 if (TREE_CODE (d) == TEMPLATE_DECL
11913 || (DECL_TEMPLATE_INFO (d)
11914 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11915 /* Instantiations of template member functions are never move
11916 functions. Note that member functions of templated classes are
11917 represented as template functions internally, and we must
11918 accept those as move functions. */
11919 return 0;
11921 return move_signature_fn_p (d);
11924 /* D is a constructor or overloaded `operator='.
11926 Then, this function returns true when D has the same signature as a move
11927 constructor or move assignment operator (because either it is such a
11928 ctor/op= or it is a template specialization with the same signature),
11929 false otherwise. */
11931 bool
11932 move_signature_fn_p (const_tree d)
11934 tree args;
11935 tree arg_type;
11936 bool result = false;
11938 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11939 if (!args)
11940 return 0;
11942 arg_type = TREE_VALUE (args);
11943 if (arg_type == error_mark_node)
11944 return 0;
11946 if (TREE_CODE (arg_type) == REFERENCE_TYPE
11947 && TYPE_REF_IS_RVALUE (arg_type)
11948 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
11949 DECL_CONTEXT (d)))
11950 result = true;
11952 args = TREE_CHAIN (args);
11954 if (args && args != void_list_node && !TREE_PURPOSE (args))
11955 /* There are more non-optional args. */
11956 return false;
11958 return result;
11961 /* Remember any special properties of member function DECL. */
11963 void
11964 grok_special_member_properties (tree decl)
11966 tree class_type;
11968 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
11969 return;
11971 class_type = DECL_CONTEXT (decl);
11972 if (DECL_CONSTRUCTOR_P (decl))
11974 int ctor = copy_fn_p (decl);
11976 if (!DECL_ARTIFICIAL (decl))
11977 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
11979 if (ctor > 0)
11981 /* [class.copy]
11983 A non-template constructor for class X is a copy
11984 constructor if its first parameter is of type X&, const
11985 X&, volatile X& or const volatile X&, and either there
11986 are no other parameters or else all other parameters have
11987 default arguments. */
11988 TYPE_HAS_COPY_CTOR (class_type) = 1;
11989 if (user_provided_p (decl))
11990 TYPE_HAS_COMPLEX_COPY_CTOR (class_type) = 1;
11991 if (ctor > 1)
11992 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
11994 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
11995 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
11996 else if (move_fn_p (decl) && user_provided_p (decl))
11997 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type) = 1;
11998 else if (is_list_ctor (decl))
11999 TYPE_HAS_LIST_CTOR (class_type) = 1;
12001 if (DECL_DECLARED_CONSTEXPR_P (decl)
12002 && !copy_fn_p (decl) && !move_fn_p (decl))
12003 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
12005 else if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
12007 /* [class.copy]
12009 A non-template assignment operator for class X is a copy
12010 assignment operator if its parameter is of type X, X&, const
12011 X&, volatile X& or const volatile X&. */
12013 int assop = copy_fn_p (decl);
12015 if (assop)
12017 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
12018 if (user_provided_p (decl))
12019 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type) = 1;
12020 if (assop != 1)
12021 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
12023 else if (move_fn_p (decl) && user_provided_p (decl))
12024 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type) = 1;
12026 /* Destructors are handled in check_methods. */
12029 /* Check a constructor DECL has the correct form. Complains
12030 if the class has a constructor of the form X(X). */
12033 grok_ctor_properties (const_tree ctype, const_tree decl)
12035 int ctor_parm = copy_fn_p (decl);
12037 if (ctor_parm < 0)
12039 /* [class.copy]
12041 A declaration of a constructor for a class X is ill-formed if
12042 its first parameter is of type (optionally cv-qualified) X
12043 and either there are no other parameters or else all other
12044 parameters have default arguments.
12046 We *don't* complain about member template instantiations that
12047 have this form, though; they can occur as we try to decide
12048 what constructor to use during overload resolution. Since
12049 overload resolution will never prefer such a constructor to
12050 the non-template copy constructor (which is either explicitly
12051 or implicitly defined), there's no need to worry about their
12052 existence. Theoretically, they should never even be
12053 instantiated, but that's hard to forestall. */
12054 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
12055 ctype, ctype);
12056 return 0;
12059 return 1;
12062 /* An operator with this code is unary, but can also be binary. */
12064 static int
12065 ambi_op_p (enum tree_code code)
12067 return (code == INDIRECT_REF
12068 || code == ADDR_EXPR
12069 || code == UNARY_PLUS_EXPR
12070 || code == NEGATE_EXPR
12071 || code == PREINCREMENT_EXPR
12072 || code == PREDECREMENT_EXPR);
12075 /* An operator with this name can only be unary. */
12077 static int
12078 unary_op_p (enum tree_code code)
12080 return (code == TRUTH_NOT_EXPR
12081 || code == BIT_NOT_EXPR
12082 || code == COMPONENT_REF
12083 || code == TYPE_EXPR);
12086 /* DECL is a declaration for an overloaded operator. If COMPLAIN is true,
12087 errors are issued for invalid declarations. */
12089 bool
12090 grok_op_properties (tree decl, bool complain)
12092 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
12093 tree argtype;
12094 int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
12095 tree name = DECL_NAME (decl);
12096 enum tree_code operator_code;
12097 int arity;
12098 bool ellipsis_p;
12099 tree class_type;
12101 /* Count the number of arguments and check for ellipsis. */
12102 for (argtype = argtypes, arity = 0;
12103 argtype && argtype != void_list_node;
12104 argtype = TREE_CHAIN (argtype))
12105 ++arity;
12106 ellipsis_p = !argtype;
12108 class_type = DECL_CONTEXT (decl);
12109 if (class_type && !CLASS_TYPE_P (class_type))
12110 class_type = NULL_TREE;
12112 if (DECL_CONV_FN_P (decl))
12113 operator_code = TYPE_EXPR;
12114 else
12117 #define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P) \
12118 if (ansi_opname (CODE) == name) \
12120 operator_code = (CODE); \
12121 break; \
12123 else if (ansi_assopname (CODE) == name) \
12125 operator_code = (CODE); \
12126 DECL_ASSIGNMENT_OPERATOR_P (decl) = 1; \
12127 break; \
12130 #include "operators.def"
12131 #undef DEF_OPERATOR
12133 gcc_unreachable ();
12135 while (0);
12136 gcc_assert (operator_code != MAX_TREE_CODES);
12137 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
12139 if (class_type)
12140 switch (operator_code)
12142 case NEW_EXPR:
12143 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
12144 break;
12146 case DELETE_EXPR:
12147 TYPE_GETS_DELETE (class_type) |= 1;
12148 break;
12150 case VEC_NEW_EXPR:
12151 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
12152 break;
12154 case VEC_DELETE_EXPR:
12155 TYPE_GETS_DELETE (class_type) |= 2;
12156 break;
12158 default:
12159 break;
12162 /* [basic.std.dynamic.allocation]/1:
12164 A program is ill-formed if an allocation function is declared
12165 in a namespace scope other than global scope or declared static
12166 in global scope.
12168 The same also holds true for deallocation functions. */
12169 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR
12170 || operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
12172 if (DECL_NAMESPACE_SCOPE_P (decl))
12174 if (CP_DECL_CONTEXT (decl) != global_namespace)
12176 error ("%qD may not be declared within a namespace", decl);
12177 return false;
12179 else if (!TREE_PUBLIC (decl))
12181 error ("%qD may not be declared as static", decl);
12182 return false;
12187 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR)
12189 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
12190 DECL_IS_OPERATOR_NEW (decl) = 1;
12192 else if (operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
12193 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
12194 else
12196 /* An operator function must either be a non-static member function
12197 or have at least one parameter of a class, a reference to a class,
12198 an enumeration, or a reference to an enumeration. 13.4.0.6 */
12199 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
12201 if (operator_code == TYPE_EXPR
12202 || operator_code == CALL_EXPR
12203 || operator_code == COMPONENT_REF
12204 || operator_code == ARRAY_REF
12205 || operator_code == NOP_EXPR)
12207 error ("%qD must be a nonstatic member function", decl);
12208 return false;
12210 else
12212 tree p;
12214 if (DECL_STATIC_FUNCTION_P (decl))
12216 error ("%qD must be either a non-static member "
12217 "function or a non-member function", decl);
12218 return false;
12221 for (p = argtypes; p && p != void_list_node; p = TREE_CHAIN (p))
12223 tree arg = non_reference (TREE_VALUE (p));
12224 if (arg == error_mark_node)
12225 return false;
12227 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
12228 because these checks are performed even on
12229 template functions. */
12230 if (MAYBE_CLASS_TYPE_P (arg)
12231 || TREE_CODE (arg) == ENUMERAL_TYPE)
12232 break;
12235 if (!p || p == void_list_node)
12237 if (complain)
12238 error ("%qD must have an argument of class or "
12239 "enumerated type", decl);
12240 return false;
12245 /* There are no restrictions on the arguments to an overloaded
12246 "operator ()". */
12247 if (operator_code == CALL_EXPR)
12248 return true;
12250 /* Warn about conversion operators that will never be used. */
12251 if (IDENTIFIER_TYPENAME_P (name)
12252 && ! DECL_TEMPLATE_INFO (decl)
12253 && warn_conversion
12254 /* Warn only declaring the function; there is no need to
12255 warn again about out-of-class definitions. */
12256 && class_type == current_class_type)
12258 tree t = TREE_TYPE (name);
12259 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
12261 if (ref)
12262 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
12264 if (VOID_TYPE_P (t))
12265 warning (OPT_Wconversion,
12267 ? G_("conversion to a reference to void "
12268 "will never use a type conversion operator")
12269 : G_("conversion to void "
12270 "will never use a type conversion operator"));
12271 else if (class_type)
12273 if (t == class_type)
12274 warning (OPT_Wconversion,
12276 ? G_("conversion to a reference to the same type "
12277 "will never use a type conversion operator")
12278 : G_("conversion to the same type "
12279 "will never use a type conversion operator"));
12280 /* Don't force t to be complete here. */
12281 else if (MAYBE_CLASS_TYPE_P (t)
12282 && COMPLETE_TYPE_P (t)
12283 && DERIVED_FROM_P (t, class_type))
12284 warning (OPT_Wconversion,
12286 ? G_("conversion to a reference to a base class "
12287 "will never use a type conversion operator")
12288 : G_("conversion to a base class "
12289 "will never use a type conversion operator"));
12294 if (operator_code == COND_EXPR)
12296 /* 13.4.0.3 */
12297 error ("ISO C++ prohibits overloading operator ?:");
12298 return false;
12300 else if (ellipsis_p)
12302 error ("%qD must not have variable number of arguments", decl);
12303 return false;
12305 else if (ambi_op_p (operator_code))
12307 if (arity == 1)
12308 /* We pick the one-argument operator codes by default, so
12309 we don't have to change anything. */
12311 else if (arity == 2)
12313 /* If we thought this was a unary operator, we now know
12314 it to be a binary operator. */
12315 switch (operator_code)
12317 case INDIRECT_REF:
12318 operator_code = MULT_EXPR;
12319 break;
12321 case ADDR_EXPR:
12322 operator_code = BIT_AND_EXPR;
12323 break;
12325 case UNARY_PLUS_EXPR:
12326 operator_code = PLUS_EXPR;
12327 break;
12329 case NEGATE_EXPR:
12330 operator_code = MINUS_EXPR;
12331 break;
12333 case PREINCREMENT_EXPR:
12334 operator_code = POSTINCREMENT_EXPR;
12335 break;
12337 case PREDECREMENT_EXPR:
12338 operator_code = POSTDECREMENT_EXPR;
12339 break;
12341 default:
12342 gcc_unreachable ();
12345 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
12347 if ((operator_code == POSTINCREMENT_EXPR
12348 || operator_code == POSTDECREMENT_EXPR)
12349 && ! processing_template_decl
12350 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)), integer_type_node))
12352 if (methodp)
12353 error ("postfix %qD must take %<int%> as its argument",
12354 decl);
12355 else
12356 error ("postfix %qD must take %<int%> as its second "
12357 "argument", decl);
12358 return false;
12361 else
12363 if (methodp)
12364 error ("%qD must take either zero or one argument", decl);
12365 else
12366 error ("%qD must take either one or two arguments", decl);
12367 return false;
12370 /* More Effective C++ rule 6. */
12371 if (warn_ecpp
12372 && (operator_code == POSTINCREMENT_EXPR
12373 || operator_code == POSTDECREMENT_EXPR
12374 || operator_code == PREINCREMENT_EXPR
12375 || operator_code == PREDECREMENT_EXPR))
12377 tree arg = TREE_VALUE (argtypes);
12378 tree ret = TREE_TYPE (TREE_TYPE (decl));
12379 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
12380 arg = TREE_TYPE (arg);
12381 arg = TYPE_MAIN_VARIANT (arg);
12382 if (operator_code == PREINCREMENT_EXPR
12383 || operator_code == PREDECREMENT_EXPR)
12385 if (TREE_CODE (ret) != REFERENCE_TYPE
12386 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)),
12387 arg))
12388 warning (OPT_Weffc__, "prefix %qD should return %qT", decl,
12389 build_reference_type (arg));
12391 else
12393 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
12394 warning (OPT_Weffc__, "postfix %qD should return %qT", decl, arg);
12398 else if (unary_op_p (operator_code))
12400 if (arity != 1)
12402 if (methodp)
12403 error ("%qD must take %<void%>", decl);
12404 else
12405 error ("%qD must take exactly one argument", decl);
12406 return false;
12409 else /* if (binary_op_p (operator_code)) */
12411 if (arity != 2)
12413 if (methodp)
12414 error ("%qD must take exactly one argument", decl);
12415 else
12416 error ("%qD must take exactly two arguments", decl);
12417 return false;
12420 /* More Effective C++ rule 7. */
12421 if (warn_ecpp
12422 && (operator_code == TRUTH_ANDIF_EXPR
12423 || operator_code == TRUTH_ORIF_EXPR
12424 || operator_code == COMPOUND_EXPR))
12425 warning (OPT_Weffc__, "user-defined %qD always evaluates both arguments",
12426 decl);
12429 /* Effective C++ rule 23. */
12430 if (warn_ecpp
12431 && arity == 2
12432 && !DECL_ASSIGNMENT_OPERATOR_P (decl)
12433 && (operator_code == PLUS_EXPR
12434 || operator_code == MINUS_EXPR
12435 || operator_code == TRUNC_DIV_EXPR
12436 || operator_code == MULT_EXPR
12437 || operator_code == TRUNC_MOD_EXPR)
12438 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
12439 warning (OPT_Weffc__, "%qD should return by value", decl);
12441 /* [over.oper]/8 */
12442 for (; argtypes && argtypes != void_list_node;
12443 argtypes = TREE_CHAIN (argtypes))
12444 if (TREE_PURPOSE (argtypes))
12446 TREE_PURPOSE (argtypes) = NULL_TREE;
12447 if (operator_code == POSTINCREMENT_EXPR
12448 || operator_code == POSTDECREMENT_EXPR)
12450 pedwarn (input_location, OPT_Wpedantic, "%qD cannot have default arguments",
12451 decl);
12453 else
12455 error ("%qD cannot have default arguments", decl);
12456 return false;
12460 return true;
12463 /* Return a string giving the keyword associate with CODE. */
12465 static const char *
12466 tag_name (enum tag_types code)
12468 switch (code)
12470 case record_type:
12471 return "struct";
12472 case class_type:
12473 return "class";
12474 case union_type:
12475 return "union";
12476 case enum_type:
12477 return "enum";
12478 case typename_type:
12479 return "typename";
12480 default:
12481 gcc_unreachable ();
12485 /* Name lookup in an elaborated-type-specifier (after the keyword
12486 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
12487 elaborated-type-specifier is invalid, issue a diagnostic and return
12488 error_mark_node; otherwise, return the *_TYPE to which it referred.
12489 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
12491 tree
12492 check_elaborated_type_specifier (enum tag_types tag_code,
12493 tree decl,
12494 bool allow_template_p)
12496 tree type;
12498 /* In the case of:
12500 struct S { struct S *p; };
12502 name lookup will find the TYPE_DECL for the implicit "S::S"
12503 typedef. Adjust for that here. */
12504 if (DECL_SELF_REFERENCE_P (decl))
12505 decl = TYPE_NAME (TREE_TYPE (decl));
12507 type = TREE_TYPE (decl);
12509 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
12510 is false for this case as well. */
12511 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
12513 error ("using template type parameter %qT after %qs",
12514 type, tag_name (tag_code));
12515 return error_mark_node;
12517 /* Accept template template parameters. */
12518 else if (allow_template_p
12519 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
12520 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
12522 /* [dcl.type.elab]
12524 If the identifier resolves to a typedef-name or the
12525 simple-template-id resolves to an alias template
12526 specialization, the elaborated-type-specifier is ill-formed.
12528 In other words, the only legitimate declaration to use in the
12529 elaborated type specifier is the implicit typedef created when
12530 the type is declared. */
12531 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
12532 && !DECL_SELF_REFERENCE_P (decl)
12533 && tag_code != typename_type)
12535 if (alias_template_specialization_p (type))
12536 error ("using alias template specialization %qT after %qs",
12537 type, tag_name (tag_code));
12538 else
12539 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
12540 inform (DECL_SOURCE_LOCATION (decl),
12541 "%qD has a previous declaration here", decl);
12542 return error_mark_node;
12544 else if (TREE_CODE (type) != RECORD_TYPE
12545 && TREE_CODE (type) != UNION_TYPE
12546 && tag_code != enum_type
12547 && tag_code != typename_type)
12549 error ("%qT referred to as %qs", type, tag_name (tag_code));
12550 inform (input_location, "%q+T has a previous declaration here", type);
12551 return error_mark_node;
12553 else if (TREE_CODE (type) != ENUMERAL_TYPE
12554 && tag_code == enum_type)
12556 error ("%qT referred to as enum", type);
12557 inform (input_location, "%q+T has a previous declaration here", type);
12558 return error_mark_node;
12560 else if (!allow_template_p
12561 && TREE_CODE (type) == RECORD_TYPE
12562 && CLASSTYPE_IS_TEMPLATE (type))
12564 /* If a class template appears as elaborated type specifier
12565 without a template header such as:
12567 template <class T> class C {};
12568 void f(class C); // No template header here
12570 then the required template argument is missing. */
12571 error ("template argument required for %<%s %T%>",
12572 tag_name (tag_code),
12573 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
12574 return error_mark_node;
12577 return type;
12580 /* Lookup NAME in elaborate type specifier in scope according to
12581 SCOPE and issue diagnostics if necessary.
12582 Return *_TYPE node upon success, NULL_TREE when the NAME is not
12583 found, and ERROR_MARK_NODE for type error. */
12585 static tree
12586 lookup_and_check_tag (enum tag_types tag_code, tree name,
12587 tag_scope scope, bool template_header_p)
12589 tree t;
12590 tree decl;
12591 if (scope == ts_global)
12593 /* First try ordinary name lookup, ignoring hidden class name
12594 injected via friend declaration. */
12595 decl = lookup_name_prefer_type (name, 2);
12596 decl = strip_using_decl (decl);
12597 /* If that fails, the name will be placed in the smallest
12598 non-class, non-function-prototype scope according to 3.3.1/5.
12599 We may already have a hidden name declared as friend in this
12600 scope. So lookup again but not ignoring hidden names.
12601 If we find one, that name will be made visible rather than
12602 creating a new tag. */
12603 if (!decl)
12604 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
12606 else
12607 decl = lookup_type_scope (name, scope);
12609 if (decl
12610 && (DECL_CLASS_TEMPLATE_P (decl)
12611 /* If scope is ts_current we're defining a class, so ignore a
12612 template template parameter. */
12613 || (scope != ts_current
12614 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
12615 decl = DECL_TEMPLATE_RESULT (decl);
12617 if (decl && TREE_CODE (decl) == TYPE_DECL)
12619 /* Look for invalid nested type:
12620 class C {
12621 class C {};
12622 }; */
12623 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
12625 error ("%qD has the same name as the class in which it is "
12626 "declared",
12627 decl);
12628 return error_mark_node;
12631 /* Two cases we need to consider when deciding if a class
12632 template is allowed as an elaborated type specifier:
12633 1. It is a self reference to its own class.
12634 2. It comes with a template header.
12636 For example:
12638 template <class T> class C {
12639 class C *c1; // DECL_SELF_REFERENCE_P is true
12640 class D;
12642 template <class U> class C; // template_header_p is true
12643 template <class T> class C<T>::D {
12644 class C *c2; // DECL_SELF_REFERENCE_P is true
12645 }; */
12647 t = check_elaborated_type_specifier (tag_code,
12648 decl,
12649 template_header_p
12650 | DECL_SELF_REFERENCE_P (decl));
12651 if (template_header_p && t && CLASS_TYPE_P (t)
12652 && (!CLASSTYPE_TEMPLATE_INFO (t)
12653 || (!PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))))
12655 error ("%qT is not a template", t);
12656 inform (location_of (t), "previous declaration here");
12657 if (TYPE_CLASS_SCOPE_P (t)
12658 && CLASSTYPE_TEMPLATE_INFO (TYPE_CONTEXT (t)))
12659 inform (input_location,
12660 "perhaps you want to explicitly add %<%T::%>",
12661 TYPE_CONTEXT (t));
12662 t = error_mark_node;
12665 return t;
12667 else if (decl && TREE_CODE (decl) == TREE_LIST)
12669 error ("reference to %qD is ambiguous", name);
12670 print_candidates (decl);
12671 return error_mark_node;
12673 else
12674 return NULL_TREE;
12677 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
12678 Define the tag as a forward-reference if it is not defined.
12680 If a declaration is given, process it here, and report an error if
12681 multiple declarations are not identical.
12683 SCOPE is TS_CURRENT when this is also a definition. Only look in
12684 the current frame for the name (since C++ allows new names in any
12685 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
12686 declaration. Only look beginning from the current scope outward up
12687 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
12689 TEMPLATE_HEADER_P is true when this declaration is preceded by
12690 a set of template parameters. */
12692 static tree
12693 xref_tag_1 (enum tag_types tag_code, tree name,
12694 tag_scope orig_scope, bool template_header_p)
12696 enum tree_code code;
12697 tree t;
12698 tree context = NULL_TREE;
12699 tag_scope scope;
12701 gcc_assert (identifier_p (name));
12703 switch (tag_code)
12705 case record_type:
12706 case class_type:
12707 code = RECORD_TYPE;
12708 break;
12709 case union_type:
12710 code = UNION_TYPE;
12711 break;
12712 case enum_type:
12713 code = ENUMERAL_TYPE;
12714 break;
12715 default:
12716 gcc_unreachable ();
12719 if (orig_scope == ts_lambda)
12720 scope = ts_current;
12721 else
12722 scope = orig_scope;
12724 /* In case of anonymous name, xref_tag is only called to
12725 make type node and push name. Name lookup is not required. */
12726 if (anon_aggrname_p (name))
12727 t = NULL_TREE;
12728 else
12729 t = lookup_and_check_tag (tag_code, name,
12730 scope, template_header_p);
12732 if (t == error_mark_node)
12733 return error_mark_node;
12735 if (scope != ts_current && t && current_class_type
12736 && template_class_depth (current_class_type)
12737 && template_header_p)
12739 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
12740 return t;
12742 /* Since SCOPE is not TS_CURRENT, we are not looking at a
12743 definition of this tag. Since, in addition, we are currently
12744 processing a (member) template declaration of a template
12745 class, we must be very careful; consider:
12747 template <class X>
12748 struct S1
12750 template <class U>
12751 struct S2
12752 { template <class V>
12753 friend struct S1; };
12755 Here, the S2::S1 declaration should not be confused with the
12756 outer declaration. In particular, the inner version should
12757 have a template parameter of level 2, not level 1. This
12758 would be particularly important if the member declaration
12759 were instead:
12761 template <class V = U> friend struct S1;
12763 say, when we should tsubst into `U' when instantiating
12764 S2. On the other hand, when presented with:
12766 template <class T>
12767 struct S1 {
12768 template <class U>
12769 struct S2 {};
12770 template <class U>
12771 friend struct S2;
12774 we must find the inner binding eventually. We
12775 accomplish this by making sure that the new type we
12776 create to represent this declaration has the right
12777 TYPE_CONTEXT. */
12778 context = TYPE_CONTEXT (t);
12779 t = NULL_TREE;
12782 if (! t)
12784 /* If no such tag is yet defined, create a forward-reference node
12785 and record it as the "definition".
12786 When a real declaration of this type is found,
12787 the forward-reference will be altered into a real type. */
12788 if (code == ENUMERAL_TYPE)
12790 error ("use of enum %q#D without previous declaration", name);
12791 return error_mark_node;
12793 else
12795 t = make_class_type (code);
12796 TYPE_CONTEXT (t) = context;
12797 if (orig_scope == ts_lambda)
12798 /* Remember that we're declaring a lambda to avoid bogus errors
12799 in push_template_decl. */
12800 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
12801 t = pushtag (name, t, scope);
12804 else
12806 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
12808 /* Check that we aren't trying to overload a class with different
12809 constraints. */
12810 tree constr = NULL_TREE;
12811 if (current_template_parms)
12813 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
12814 constr = build_constraints (reqs, NULL_TREE);
12816 if (!redeclare_class_template (t, current_template_parms, constr))
12817 return error_mark_node;
12819 else if (!processing_template_decl
12820 && CLASS_TYPE_P (t)
12821 && CLASSTYPE_IS_TEMPLATE (t))
12823 error ("redeclaration of %qT as a non-template", t);
12824 error ("previous declaration %q+D", t);
12825 return error_mark_node;
12828 /* Make injected friend class visible. */
12829 if (scope != ts_within_enclosing_non_class
12830 && hidden_name_p (TYPE_NAME (t)))
12832 DECL_ANTICIPATED (TYPE_NAME (t)) = 0;
12833 DECL_FRIEND_P (TYPE_NAME (t)) = 0;
12835 if (TYPE_TEMPLATE_INFO (t))
12837 DECL_ANTICIPATED (TYPE_TI_TEMPLATE (t)) = 0;
12838 DECL_FRIEND_P (TYPE_TI_TEMPLATE (t)) = 0;
12843 return t;
12846 /* Wrapper for xref_tag_1. */
12848 tree
12849 xref_tag (enum tag_types tag_code, tree name,
12850 tag_scope scope, bool template_header_p)
12852 tree ret;
12853 bool subtime;
12854 subtime = timevar_cond_start (TV_NAME_LOOKUP);
12855 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
12856 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
12857 return ret;
12861 tree
12862 xref_tag_from_type (tree old, tree id, tag_scope scope)
12864 enum tag_types tag_kind;
12866 if (TREE_CODE (old) == RECORD_TYPE)
12867 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
12868 else
12869 tag_kind = union_type;
12871 if (id == NULL_TREE)
12872 id = TYPE_IDENTIFIER (old);
12874 return xref_tag (tag_kind, id, scope, false);
12877 /* Create the binfo hierarchy for REF with (possibly NULL) base list
12878 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
12879 access_* node, and the TREE_VALUE is the type of the base-class.
12880 Non-NULL TREE_TYPE indicates virtual inheritance.
12882 Returns true if the binfo hierarchy was successfully created,
12883 false if an error was detected. */
12885 bool
12886 xref_basetypes (tree ref, tree base_list)
12888 tree *basep;
12889 tree binfo, base_binfo;
12890 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
12891 unsigned max_bases = 0; /* Maximum direct bases. */
12892 unsigned max_dvbases = 0; /* Maximum direct virtual bases. */
12893 int i;
12894 tree default_access;
12895 tree igo_prev; /* Track Inheritance Graph Order. */
12897 if (ref == error_mark_node)
12898 return false;
12900 /* The base of a derived class is private by default, all others are
12901 public. */
12902 default_access = (TREE_CODE (ref) == RECORD_TYPE
12903 && CLASSTYPE_DECLARED_CLASS (ref)
12904 ? access_private_node : access_public_node);
12906 /* First, make sure that any templates in base-classes are
12907 instantiated. This ensures that if we call ourselves recursively
12908 we do not get confused about which classes are marked and which
12909 are not. */
12910 basep = &base_list;
12911 while (*basep)
12913 tree basetype = TREE_VALUE (*basep);
12915 /* The dependent_type_p call below should really be dependent_scope_p
12916 so that we give a hard error about using an incomplete type as a
12917 base, but we allow it with a pedwarn for backward
12918 compatibility. */
12919 if (processing_template_decl
12920 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
12921 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
12922 if (!dependent_type_p (basetype)
12923 && !complete_type_or_else (basetype, NULL))
12924 /* An incomplete type. Remove it from the list. */
12925 *basep = TREE_CHAIN (*basep);
12926 else
12928 max_bases++;
12929 if (TREE_TYPE (*basep))
12930 max_dvbases++;
12931 if (CLASS_TYPE_P (basetype))
12932 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
12933 basep = &TREE_CHAIN (*basep);
12936 max_vbases += max_dvbases;
12938 TYPE_MARKED_P (ref) = 1;
12940 /* The binfo slot should be empty, unless this is an (ill-formed)
12941 redefinition. */
12942 if (TYPE_BINFO (ref) && !TYPE_SIZE (ref))
12944 error ("redefinition of %q#T", ref);
12945 return false;
12948 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
12950 binfo = make_tree_binfo (max_bases);
12952 TYPE_BINFO (ref) = binfo;
12953 BINFO_OFFSET (binfo) = size_zero_node;
12954 BINFO_TYPE (binfo) = ref;
12956 /* Apply base-class info set up to the variants of this type. */
12957 fixup_type_variants (ref);
12959 if (max_bases)
12961 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
12962 /* An aggregate cannot have baseclasses. */
12963 CLASSTYPE_NON_AGGREGATE (ref) = 1;
12965 if (TREE_CODE (ref) == UNION_TYPE)
12967 error ("derived union %qT invalid", ref);
12968 return false;
12972 if (max_bases > 1)
12974 if (TYPE_FOR_JAVA (ref))
12976 error ("Java class %qT cannot have multiple bases", ref);
12977 return false;
12979 else
12980 warning (OPT_Wmultiple_inheritance,
12981 "%qT defined with multiple direct bases", ref);
12984 if (max_vbases)
12986 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
12988 if (TYPE_FOR_JAVA (ref))
12990 error ("Java class %qT cannot have virtual bases", ref);
12991 return false;
12993 else if (max_dvbases)
12994 warning (OPT_Wvirtual_inheritance,
12995 "%qT defined with direct virtual base", ref);
12998 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
13000 tree access = TREE_PURPOSE (base_list);
13001 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
13002 tree basetype = TREE_VALUE (base_list);
13004 if (access == access_default_node)
13005 access = default_access;
13007 if (PACK_EXPANSION_P (basetype))
13008 basetype = PACK_EXPANSION_PATTERN (basetype);
13009 if (TREE_CODE (basetype) == TYPE_DECL)
13010 basetype = TREE_TYPE (basetype);
13011 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
13013 error ("base type %qT fails to be a struct or class type",
13014 basetype);
13015 return false;
13018 if (TYPE_FOR_JAVA (basetype) && (current_lang_depth () == 0))
13019 TYPE_FOR_JAVA (ref) = 1;
13021 base_binfo = NULL_TREE;
13022 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
13024 base_binfo = TYPE_BINFO (basetype);
13025 /* The original basetype could have been a typedef'd type. */
13026 basetype = BINFO_TYPE (base_binfo);
13028 /* Inherit flags from the base. */
13029 TYPE_HAS_NEW_OPERATOR (ref)
13030 |= TYPE_HAS_NEW_OPERATOR (basetype);
13031 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
13032 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
13033 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
13034 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
13035 CLASSTYPE_DIAMOND_SHAPED_P (ref)
13036 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
13037 CLASSTYPE_REPEATED_BASE_P (ref)
13038 |= CLASSTYPE_REPEATED_BASE_P (basetype);
13041 /* We must do this test after we've seen through a typedef
13042 type. */
13043 if (TYPE_MARKED_P (basetype))
13045 if (basetype == ref)
13046 error ("recursive type %qT undefined", basetype);
13047 else
13048 error ("duplicate base type %qT invalid", basetype);
13049 return false;
13052 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
13053 /* Regenerate the pack expansion for the bases. */
13054 basetype = make_pack_expansion (basetype);
13056 TYPE_MARKED_P (basetype) = 1;
13058 base_binfo = copy_binfo (base_binfo, basetype, ref,
13059 &igo_prev, via_virtual);
13060 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
13061 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
13063 BINFO_BASE_APPEND (binfo, base_binfo);
13064 BINFO_BASE_ACCESS_APPEND (binfo, access);
13067 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
13068 /* If we didn't get max_vbases vbases, we must have shared at
13069 least one of them, and are therefore diamond shaped. */
13070 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
13072 /* Unmark all the types. */
13073 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
13074 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
13075 TYPE_MARKED_P (ref) = 0;
13077 /* Now see if we have a repeated base type. */
13078 if (!CLASSTYPE_REPEATED_BASE_P (ref))
13080 for (base_binfo = binfo; base_binfo;
13081 base_binfo = TREE_CHAIN (base_binfo))
13083 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
13085 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
13086 break;
13088 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
13090 for (base_binfo = binfo; base_binfo;
13091 base_binfo = TREE_CHAIN (base_binfo))
13092 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
13093 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
13094 else
13095 break;
13098 return true;
13102 /* Copies the enum-related properties from type SRC to type DST.
13103 Used with the underlying type of an enum and the enum itself. */
13104 static void
13105 copy_type_enum (tree dst, tree src)
13107 tree t;
13108 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
13110 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
13111 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
13112 TYPE_SIZE (t) = TYPE_SIZE (src);
13113 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
13114 SET_TYPE_MODE (dst, TYPE_MODE (src));
13115 TYPE_PRECISION (t) = TYPE_PRECISION (src);
13116 unsigned valign = TYPE_ALIGN (src);
13117 if (TYPE_USER_ALIGN (t))
13118 valign = MAX (valign, TYPE_ALIGN (t));
13119 else
13120 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
13121 SET_TYPE_ALIGN (t, valign);
13122 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
13126 /* Begin compiling the definition of an enumeration type.
13127 NAME is its name,
13129 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
13131 UNDERLYING_TYPE is the type that will be used as the storage for
13132 the enumeration type. This should be NULL_TREE if no storage type
13133 was specified.
13135 ATTRIBUTES are any attributes specified after the enum-key.
13137 SCOPED_ENUM_P is true if this is a scoped enumeration type.
13139 if IS_NEW is not NULL, gets TRUE iff a new type is created.
13141 Returns the type object, as yet incomplete.
13142 Also records info about it so that build_enumerator
13143 may be used to declare the individual values as they are read. */
13145 tree
13146 start_enum (tree name, tree enumtype, tree underlying_type,
13147 tree attributes, bool scoped_enum_p, bool *is_new)
13149 tree prevtype = NULL_TREE;
13150 gcc_assert (identifier_p (name));
13152 if (is_new)
13153 *is_new = false;
13154 /* [C++0x dcl.enum]p5:
13156 If not explicitly specified, the underlying type of a scoped
13157 enumeration type is int. */
13158 if (!underlying_type && scoped_enum_p)
13159 underlying_type = integer_type_node;
13161 if (underlying_type)
13162 underlying_type = cv_unqualified (underlying_type);
13164 /* If this is the real definition for a previous forward reference,
13165 fill in the contents in the same object that used to be the
13166 forward reference. */
13167 if (!enumtype)
13168 enumtype = lookup_and_check_tag (enum_type, name,
13169 /*tag_scope=*/ts_current,
13170 /*template_header_p=*/false);
13172 /* In case of a template_decl, the only check that should be deferred
13173 to instantiation time is the comparison of underlying types. */
13174 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
13176 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
13178 error_at (input_location, "scoped/unscoped mismatch "
13179 "in enum %q#T", enumtype);
13180 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13181 "previous definition here");
13182 enumtype = error_mark_node;
13184 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
13186 error_at (input_location, "underlying type mismatch "
13187 "in enum %q#T", enumtype);
13188 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13189 "previous definition here");
13190 enumtype = error_mark_node;
13192 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
13193 && !dependent_type_p (underlying_type)
13194 && !dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))
13195 && !same_type_p (underlying_type,
13196 ENUM_UNDERLYING_TYPE (enumtype)))
13198 error_at (input_location, "different underlying type "
13199 "in enum %q#T", enumtype);
13200 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13201 "previous definition here");
13202 underlying_type = NULL_TREE;
13206 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
13207 || processing_template_decl)
13209 /* In case of error, make a dummy enum to allow parsing to
13210 continue. */
13211 if (enumtype == error_mark_node)
13213 name = make_anon_name ();
13214 enumtype = NULL_TREE;
13217 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
13218 of an opaque enum, or an opaque enum of an already defined
13219 enumeration (C++0x only).
13220 In any other case, it'll be NULL_TREE. */
13221 if (!enumtype)
13223 if (is_new)
13224 *is_new = true;
13226 prevtype = enumtype;
13228 /* Do not push the decl more than once, unless we need to
13229 compare underlying types at instantiation time */
13230 if (!enumtype
13231 || TREE_CODE (enumtype) != ENUMERAL_TYPE
13232 || (underlying_type
13233 && dependent_type_p (underlying_type))
13234 || (ENUM_UNDERLYING_TYPE (enumtype)
13235 && dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))))
13237 enumtype = cxx_make_type (ENUMERAL_TYPE);
13238 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
13240 else
13241 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
13242 false);
13244 if (enumtype == error_mark_node)
13245 return error_mark_node;
13247 /* The enum is considered opaque until the opening '{' of the
13248 enumerator list. */
13249 SET_OPAQUE_ENUM_P (enumtype, true);
13250 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
13253 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
13255 cplus_decl_attributes (&enumtype, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
13257 if (underlying_type)
13259 if (ENUM_UNDERLYING_TYPE (enumtype))
13260 /* We already checked that it matches, don't change it to a different
13261 typedef variant. */;
13262 else if (CP_INTEGRAL_TYPE_P (underlying_type))
13264 copy_type_enum (enumtype, underlying_type);
13265 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
13267 else if (dependent_type_p (underlying_type))
13268 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
13269 else
13270 error ("underlying type %<%T%> of %<%T%> must be an integral type",
13271 underlying_type, enumtype);
13274 /* If into a template class, the returned enum is always the first
13275 declaration (opaque or not) seen. This way all the references to
13276 this type will be to the same declaration. The following ones are used
13277 only to check for definition errors. */
13278 if (prevtype && processing_template_decl)
13279 return prevtype;
13280 else
13281 return enumtype;
13284 /* After processing and defining all the values of an enumeration type,
13285 install their decls in the enumeration type.
13286 ENUMTYPE is the type object. */
13288 void
13289 finish_enum_value_list (tree enumtype)
13291 tree values;
13292 tree underlying_type;
13293 tree decl;
13294 tree value;
13295 tree minnode, maxnode;
13296 tree t;
13298 bool fixed_underlying_type_p
13299 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
13301 /* We built up the VALUES in reverse order. */
13302 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
13304 /* For an enum defined in a template, just set the type of the values;
13305 all further processing is postponed until the template is
13306 instantiated. We need to set the type so that tsubst of a CONST_DECL
13307 works. */
13308 if (processing_template_decl)
13310 for (values = TYPE_VALUES (enumtype);
13311 values;
13312 values = TREE_CHAIN (values))
13313 TREE_TYPE (TREE_VALUE (values)) = enumtype;
13314 return;
13317 /* Determine the minimum and maximum values of the enumerators. */
13318 if (TYPE_VALUES (enumtype))
13320 minnode = maxnode = NULL_TREE;
13322 for (values = TYPE_VALUES (enumtype);
13323 values;
13324 values = TREE_CHAIN (values))
13326 decl = TREE_VALUE (values);
13328 /* [dcl.enum]: Following the closing brace of an enum-specifier,
13329 each enumerator has the type of its enumeration. Prior to the
13330 closing brace, the type of each enumerator is the type of its
13331 initializing value. */
13332 TREE_TYPE (decl) = enumtype;
13334 /* Update the minimum and maximum values, if appropriate. */
13335 value = DECL_INITIAL (decl);
13336 if (value == error_mark_node)
13337 value = integer_zero_node;
13338 /* Figure out what the minimum and maximum values of the
13339 enumerators are. */
13340 if (!minnode)
13341 minnode = maxnode = value;
13342 else if (tree_int_cst_lt (maxnode, value))
13343 maxnode = value;
13344 else if (tree_int_cst_lt (value, minnode))
13345 minnode = value;
13348 else
13349 /* [dcl.enum]
13351 If the enumerator-list is empty, the underlying type is as if
13352 the enumeration had a single enumerator with value 0. */
13353 minnode = maxnode = integer_zero_node;
13355 if (!fixed_underlying_type_p)
13357 /* Compute the number of bits require to represent all values of the
13358 enumeration. We must do this before the type of MINNODE and
13359 MAXNODE are transformed, since tree_int_cst_min_precision relies
13360 on the TREE_TYPE of the value it is passed. */
13361 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
13362 int lowprec = tree_int_cst_min_precision (minnode, sgn);
13363 int highprec = tree_int_cst_min_precision (maxnode, sgn);
13364 int precision = MAX (lowprec, highprec);
13365 unsigned int itk;
13366 bool use_short_enum;
13368 /* Determine the underlying type of the enumeration.
13370 [dcl.enum]
13372 The underlying type of an enumeration is an integral type that
13373 can represent all the enumerator values defined in the
13374 enumeration. It is implementation-defined which integral type is
13375 used as the underlying type for an enumeration except that the
13376 underlying type shall not be larger than int unless the value of
13377 an enumerator cannot fit in an int or unsigned int.
13379 We use "int" or an "unsigned int" as the underlying type, even if
13380 a smaller integral type would work, unless the user has
13381 explicitly requested that we use the smallest possible type. The
13382 user can request that for all enumerations with a command line
13383 flag, or for just one enumeration with an attribute. */
13385 use_short_enum = flag_short_enums
13386 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
13388 for (itk = (use_short_enum ? itk_char : itk_int);
13389 itk != itk_none;
13390 itk++)
13392 underlying_type = integer_types[itk];
13393 if (underlying_type != NULL_TREE
13394 && TYPE_PRECISION (underlying_type) >= precision
13395 && TYPE_SIGN (underlying_type) == sgn)
13396 break;
13398 if (itk == itk_none)
13400 /* DR 377
13402 IF no integral type can represent all the enumerator values, the
13403 enumeration is ill-formed. */
13404 error ("no integral type can represent all of the enumerator values "
13405 "for %qT", enumtype);
13406 precision = TYPE_PRECISION (long_long_integer_type_node);
13407 underlying_type = integer_types[itk_unsigned_long_long];
13410 /* [dcl.enum]
13412 The value of sizeof() applied to an enumeration type, an object
13413 of an enumeration type, or an enumerator, is the value of sizeof()
13414 applied to the underlying type. */
13415 copy_type_enum (enumtype, underlying_type);
13417 /* Compute the minimum and maximum values for the type.
13419 [dcl.enum]
13421 For an enumeration where emin is the smallest enumerator and emax
13422 is the largest, the values of the enumeration are the values of the
13423 underlying type in the range bmin to bmax, where bmin and bmax are,
13424 respectively, the smallest and largest values of the smallest bit-
13425 field that can store emin and emax. */
13427 /* The middle-end currently assumes that types with TYPE_PRECISION
13428 narrower than their underlying type are suitably zero or sign
13429 extended to fill their mode. Similarly, it assumes that the front
13430 end assures that a value of a particular type must be within
13431 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
13433 We used to set these fields based on bmin and bmax, but that led
13434 to invalid assumptions like optimizing away bounds checking. So
13435 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
13436 TYPE_MAX_VALUE to the values for the mode above and only restrict
13437 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
13438 ENUM_UNDERLYING_TYPE (enumtype)
13439 = build_distinct_type_copy (underlying_type);
13440 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
13441 set_min_and_max_values_for_integral_type
13442 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
13444 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
13445 if (flag_strict_enums)
13446 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
13448 else
13449 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
13451 /* Convert each of the enumerators to the type of the underlying
13452 type of the enumeration. */
13453 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
13455 location_t saved_location;
13457 decl = TREE_VALUE (values);
13458 saved_location = input_location;
13459 input_location = DECL_SOURCE_LOCATION (decl);
13460 if (fixed_underlying_type_p)
13461 /* If the enumeration type has a fixed underlying type, we
13462 already checked all of the enumerator values. */
13463 value = DECL_INITIAL (decl);
13464 else
13465 value = perform_implicit_conversion (underlying_type,
13466 DECL_INITIAL (decl),
13467 tf_warning_or_error);
13468 input_location = saved_location;
13470 /* Do not clobber shared ints. */
13471 value = copy_node (value);
13473 TREE_TYPE (value) = enumtype;
13474 DECL_INITIAL (decl) = value;
13477 /* Fix up all variant types of this enum type. */
13478 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
13479 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
13481 if (at_class_scope_p ()
13482 && COMPLETE_TYPE_P (current_class_type)
13483 && UNSCOPED_ENUM_P (enumtype))
13484 insert_late_enum_def_into_classtype_sorted_fields (enumtype,
13485 current_class_type);
13487 /* Finish debugging output for this type. */
13488 rest_of_type_compilation (enumtype, namespace_bindings_p ());
13490 /* Each enumerator now has the type of its enumeration. Clear the cache
13491 so that this change in types doesn't confuse us later on. */
13492 clear_cv_and_fold_caches ();
13495 /* Finishes the enum type. This is called only the first time an
13496 enumeration is seen, be it opaque or odinary.
13497 ENUMTYPE is the type object. */
13499 void
13500 finish_enum (tree enumtype)
13502 if (processing_template_decl)
13504 if (at_function_scope_p ())
13505 add_stmt (build_min (TAG_DEFN, enumtype));
13506 return;
13509 /* If this is a forward declaration, there should not be any variants,
13510 though we can get a variant in the middle of an enum-specifier with
13511 wacky code like 'enum E { e = sizeof(const E*) };' */
13512 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
13513 && (TYPE_VALUES (enumtype)
13514 || !TYPE_NEXT_VARIANT (enumtype)));
13517 /* Build and install a CONST_DECL for an enumeration constant of the
13518 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
13519 Apply ATTRIBUTES if available. LOC is the location of NAME.
13520 Assignment of sequential values by default is handled here. */
13522 void
13523 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
13524 location_t loc)
13526 tree decl;
13527 tree context;
13528 tree type;
13530 /* scalar_constant_value will pull out this expression, so make sure
13531 it's folded as appropriate. */
13532 if (processing_template_decl)
13533 value = fold_non_dependent_expr (value);
13535 /* If the VALUE was erroneous, pretend it wasn't there; that will
13536 result in the enum being assigned the next value in sequence. */
13537 if (value == error_mark_node)
13538 value = NULL_TREE;
13540 /* Remove no-op casts from the value. */
13541 if (value)
13542 STRIP_TYPE_NOPS (value);
13544 if (! processing_template_decl)
13546 /* Validate and default VALUE. */
13547 if (value != NULL_TREE)
13549 if (!ENUM_UNDERLYING_TYPE (enumtype))
13551 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
13552 value, true);
13553 if (tmp_value)
13554 value = tmp_value;
13556 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
13557 (TREE_TYPE (value)))
13558 value = perform_implicit_conversion_flags
13559 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
13560 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
13562 if (value == error_mark_node)
13563 value = NULL_TREE;
13565 if (value != NULL_TREE)
13567 value = cxx_constant_value (value);
13569 if (TREE_CODE (value) != INTEGER_CST
13570 || ! INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (value)))
13572 error ("enumerator value for %qD is not an integer constant",
13573 name);
13574 value = NULL_TREE;
13579 /* Default based on previous value. */
13580 if (value == NULL_TREE)
13582 if (TYPE_VALUES (enumtype))
13584 tree prev_value;
13585 bool overflowed;
13587 /* C++03 7.2/4: If no initializer is specified for the first
13588 enumerator, the type is an unspecified integral
13589 type. Otherwise the type is the same as the type of the
13590 initializing value of the preceding enumerator unless the
13591 incremented value is not representable in that type, in
13592 which case the type is an unspecified integral type
13593 sufficient to contain the incremented value. */
13594 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
13595 if (error_operand_p (prev_value))
13596 value = error_mark_node;
13597 else
13599 tree type = TREE_TYPE (prev_value);
13600 signop sgn = TYPE_SIGN (type);
13601 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
13602 &overflowed);
13603 if (!overflowed)
13605 bool pos = !wi::neg_p (wi, sgn);
13606 if (!wi::fits_to_tree_p (wi, type))
13608 unsigned int itk;
13609 for (itk = itk_int; itk != itk_none; itk++)
13611 type = integer_types[itk];
13612 if (type != NULL_TREE
13613 && (pos || !TYPE_UNSIGNED (type))
13614 && wi::fits_to_tree_p (wi, type))
13615 break;
13617 if (type && cxx_dialect < cxx11
13618 && itk > itk_unsigned_long)
13619 pedwarn (input_location, OPT_Wlong_long, pos ? "\
13620 incremented enumerator value is too large for %<unsigned long%>" : "\
13621 incremented enumerator value is too large for %<long%>");
13623 if (type == NULL_TREE)
13624 overflowed = true;
13625 else
13626 value = wide_int_to_tree (type, wi);
13629 if (overflowed)
13631 error ("overflow in enumeration values at %qD", name);
13632 value = error_mark_node;
13636 else
13637 value = integer_zero_node;
13640 /* Remove no-op casts from the value. */
13641 STRIP_TYPE_NOPS (value);
13643 /* If the underlying type of the enum is fixed, check whether
13644 the enumerator values fits in the underlying type. If it
13645 does not fit, the program is ill-formed [C++0x dcl.enum]. */
13646 if (ENUM_UNDERLYING_TYPE (enumtype)
13647 && value
13648 && TREE_CODE (value) == INTEGER_CST)
13650 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
13651 error ("enumerator value %E is outside the range of underlying "
13652 "type %<%T%>", value, ENUM_UNDERLYING_TYPE (enumtype));
13654 /* Convert the value to the appropriate type. */
13655 value = fold_convert (ENUM_UNDERLYING_TYPE (enumtype), value);
13659 /* C++ associates enums with global, function, or class declarations. */
13660 context = current_scope ();
13662 /* Build the actual enumeration constant. Note that the enumeration
13663 constants have the underlying type of the enum (if it is fixed)
13664 or the type of their initializer (if the underlying type of the
13665 enum is not fixed):
13667 [ C++0x dcl.enum ]
13669 If the underlying type is fixed, the type of each enumerator
13670 prior to the closing brace is the underlying type; if the
13671 initializing value of an enumerator cannot be represented by
13672 the underlying type, the program is ill-formed. If the
13673 underlying type is not fixed, the type of each enumerator is
13674 the type of its initializing value.
13676 If the underlying type is not fixed, it will be computed by
13677 finish_enum and we will reset the type of this enumerator. Of
13678 course, if we're processing a template, there may be no value. */
13679 type = value ? TREE_TYPE (value) : NULL_TREE;
13681 decl = build_decl (loc, CONST_DECL, name, type);
13683 DECL_CONTEXT (decl) = enumtype;
13684 TREE_CONSTANT (decl) = 1;
13685 TREE_READONLY (decl) = 1;
13686 DECL_INITIAL (decl) = value;
13688 if (attributes)
13689 cplus_decl_attributes (&decl, attributes, 0);
13691 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
13693 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
13694 on the TYPE_FIELDS list for `S'. (That's so that you can say
13695 things like `S::i' later.) */
13697 /* The enumerator may be getting declared outside of its enclosing
13698 class, like so:
13700 class S { public: enum E : int; }; enum S::E : int { i = 7; };
13702 For which case we need to make sure that the access of `S::i'
13703 matches the access of `S::E'. */
13704 tree saved_cas = current_access_specifier;
13705 if (TREE_PRIVATE (TYPE_NAME (enumtype)))
13706 current_access_specifier = access_private_node;
13707 else if (TREE_PROTECTED (TYPE_NAME (enumtype)))
13708 current_access_specifier = access_protected_node;
13709 else
13710 current_access_specifier = access_public_node;
13712 finish_member_declaration (decl);
13714 current_access_specifier = saved_cas;
13716 else
13717 pushdecl (decl);
13719 /* Add this enumeration constant to the list for this type. */
13720 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
13723 /* Look for an enumerator with the given NAME within the enumeration
13724 type ENUMTYPE. This routine is used primarily for qualified name
13725 lookup into an enumerator in C++0x, e.g.,
13727 enum class Color { Red, Green, Blue };
13729 Color color = Color::Red;
13731 Returns the value corresponding to the enumerator, or
13732 NULL_TREE if no such enumerator was found. */
13733 tree
13734 lookup_enumerator (tree enumtype, tree name)
13736 tree e;
13737 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
13739 e = purpose_member (name, TYPE_VALUES (enumtype));
13740 return e? TREE_VALUE (e) : NULL_TREE;
13744 /* We're defining DECL. Make sure that its type is OK. */
13746 static void
13747 check_function_type (tree decl, tree current_function_parms)
13749 tree fntype = TREE_TYPE (decl);
13750 tree return_type = complete_type (TREE_TYPE (fntype));
13752 /* In a function definition, arg types must be complete. */
13753 require_complete_types_for_parms (current_function_parms);
13755 if (dependent_type_p (return_type)
13756 || type_uses_auto (return_type))
13757 return;
13758 if (!COMPLETE_OR_VOID_TYPE_P (return_type)
13759 || (TYPE_FOR_JAVA (return_type) && MAYBE_CLASS_TYPE_P (return_type)))
13761 tree args = TYPE_ARG_TYPES (fntype);
13763 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
13764 error ("return type %q#T is incomplete", return_type);
13765 else
13766 error ("return type has Java class type %q#T", return_type);
13768 /* Make it return void instead. */
13769 if (TREE_CODE (fntype) == METHOD_TYPE)
13770 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
13771 void_type_node,
13772 TREE_CHAIN (args));
13773 else
13774 fntype = build_function_type (void_type_node, args);
13775 fntype
13776 = build_exception_variant (fntype,
13777 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)));
13778 fntype = (cp_build_type_attribute_variant
13779 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
13780 TREE_TYPE (decl) = fntype;
13782 else
13783 abstract_virtuals_error (decl, TREE_TYPE (fntype));
13786 /* True iff FN is an implicitly-defined default constructor. */
13788 static bool
13789 implicit_default_ctor_p (tree fn)
13791 return (DECL_CONSTRUCTOR_P (fn)
13792 && !user_provided_p (fn)
13793 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)));
13796 /* Clobber the contents of *this to let the back end know that the object
13797 storage is dead when we enter the constructor or leave the destructor. */
13799 static tree
13800 build_clobber_this ()
13802 /* Clobbering an empty base is pointless, and harmful if its one byte
13803 TYPE_SIZE overlays real data. */
13804 if (is_empty_class (current_class_type))
13805 return void_node;
13807 /* If we have virtual bases, clobber the whole object, but only if we're in
13808 charge. If we don't have virtual bases, clobber the as-base type so we
13809 don't mess with tail padding. */
13810 bool vbases = CLASSTYPE_VBASECLASSES (current_class_type);
13812 tree ctype = current_class_type;
13813 if (!vbases)
13814 ctype = CLASSTYPE_AS_BASE (ctype);
13816 tree clobber = build_constructor (ctype, NULL);
13817 TREE_THIS_VOLATILE (clobber) = true;
13819 tree thisref = current_class_ref;
13820 if (ctype != current_class_type)
13822 thisref = build_nop (build_reference_type (ctype), current_class_ptr);
13823 thisref = convert_from_reference (thisref);
13826 tree exprstmt = build2 (MODIFY_EXPR, void_type_node, thisref, clobber);
13827 if (vbases)
13828 exprstmt = build_if_in_charge (exprstmt);
13830 return exprstmt;
13833 /* Create the FUNCTION_DECL for a function definition.
13834 DECLSPECS and DECLARATOR are the parts of the declaration;
13835 they describe the function's name and the type it returns,
13836 but twisted together in a fashion that parallels the syntax of C.
13838 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
13839 DECLARATOR is really the DECL for the function we are about to
13840 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
13841 indicating that the function is an inline defined in-class.
13843 This function creates a binding context for the function body
13844 as well as setting up the FUNCTION_DECL in current_function_decl.
13846 For C++, we must first check whether that datum makes any sense.
13847 For example, "class A local_a(1,2);" means that variable local_a
13848 is an aggregate of type A, which should have a constructor
13849 applied to it with the argument list [1, 2].
13851 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
13852 or may be a BLOCK if the function has been defined previously
13853 in this translation unit. On exit, DECL_INITIAL (decl1) will be
13854 error_mark_node if the function has never been defined, or
13855 a BLOCK if the function has been defined somewhere. */
13857 bool
13858 start_preparsed_function (tree decl1, tree attrs, int flags)
13860 tree ctype = NULL_TREE;
13861 tree fntype;
13862 tree restype;
13863 int doing_friend = 0;
13864 cp_binding_level *bl;
13865 tree current_function_parms;
13866 struct c_fileinfo *finfo
13867 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
13868 bool honor_interface;
13870 /* Sanity check. */
13871 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
13872 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
13874 fntype = TREE_TYPE (decl1);
13875 if (TREE_CODE (fntype) == METHOD_TYPE)
13876 ctype = TYPE_METHOD_BASETYPE (fntype);
13878 /* ISO C++ 11.4/5. A friend function defined in a class is in
13879 the (lexical) scope of the class in which it is defined. */
13880 if (!ctype && DECL_FRIEND_P (decl1))
13882 ctype = DECL_FRIEND_CONTEXT (decl1);
13884 /* CTYPE could be null here if we're dealing with a template;
13885 for example, `inline friend float foo()' inside a template
13886 will have no CTYPE set. */
13887 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
13888 ctype = NULL_TREE;
13889 else
13890 doing_friend = 1;
13893 if (DECL_DECLARED_INLINE_P (decl1)
13894 && lookup_attribute ("noinline", attrs))
13895 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
13896 "inline function %qD given attribute noinline", decl1);
13898 /* Handle gnu_inline attribute. */
13899 if (GNU_INLINE_P (decl1))
13901 DECL_EXTERNAL (decl1) = 1;
13902 DECL_NOT_REALLY_EXTERN (decl1) = 0;
13903 DECL_INTERFACE_KNOWN (decl1) = 1;
13904 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
13907 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
13908 /* This is a constructor, we must ensure that any default args
13909 introduced by this definition are propagated to the clones
13910 now. The clones are used directly in overload resolution. */
13911 adjust_clone_args (decl1);
13913 /* Sometimes we don't notice that a function is a static member, and
13914 build a METHOD_TYPE for it. Fix that up now. */
13915 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
13916 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
13918 /* Set up current_class_type, and enter the scope of the class, if
13919 appropriate. */
13920 if (ctype)
13921 push_nested_class (ctype);
13922 else if (DECL_STATIC_FUNCTION_P (decl1))
13923 push_nested_class (DECL_CONTEXT (decl1));
13925 /* Now that we have entered the scope of the class, we must restore
13926 the bindings for any template parameters surrounding DECL1, if it
13927 is an inline member template. (Order is important; consider the
13928 case where a template parameter has the same name as a field of
13929 the class.) It is not until after this point that
13930 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
13931 if (flags & SF_INCLASS_INLINE)
13932 maybe_begin_member_template_processing (decl1);
13934 /* Effective C++ rule 15. */
13935 if (warn_ecpp
13936 && DECL_OVERLOADED_OPERATOR_P (decl1) == NOP_EXPR
13937 && VOID_TYPE_P (TREE_TYPE (fntype)))
13938 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
13940 /* Make the init_value nonzero so pushdecl knows this is not tentative.
13941 error_mark_node is replaced below (in poplevel) with the BLOCK. */
13942 if (!DECL_INITIAL (decl1))
13943 DECL_INITIAL (decl1) = error_mark_node;
13945 /* This function exists in static storage.
13946 (This does not mean `static' in the C sense!) */
13947 TREE_STATIC (decl1) = 1;
13949 /* We must call push_template_decl after current_class_type is set
13950 up. (If we are processing inline definitions after exiting a
13951 class scope, current_class_type will be NULL_TREE until set above
13952 by push_nested_class.) */
13953 if (processing_template_decl)
13955 tree newdecl1 = push_template_decl (decl1);
13956 if (newdecl1 == error_mark_node)
13958 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
13959 pop_nested_class ();
13960 return false;
13962 decl1 = newdecl1;
13965 /* We are now in the scope of the function being defined. */
13966 current_function_decl = decl1;
13968 /* Save the parm names or decls from this function's declarator
13969 where store_parm_decls will find them. */
13970 current_function_parms = DECL_ARGUMENTS (decl1);
13972 /* Make sure the parameter and return types are reasonable. When
13973 you declare a function, these types can be incomplete, but they
13974 must be complete when you define the function. */
13975 check_function_type (decl1, current_function_parms);
13977 /* Build the return declaration for the function. */
13978 restype = TREE_TYPE (fntype);
13980 if (DECL_RESULT (decl1) == NULL_TREE)
13982 tree resdecl;
13984 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
13985 DECL_ARTIFICIAL (resdecl) = 1;
13986 DECL_IGNORED_P (resdecl) = 1;
13987 DECL_RESULT (decl1) = resdecl;
13989 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
13992 /* Let the user know we're compiling this function. */
13993 announce_function (decl1);
13995 /* Record the decl so that the function name is defined.
13996 If we already have a decl for this name, and it is a FUNCTION_DECL,
13997 use the old decl. */
13998 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
14000 /* A specialization is not used to guide overload resolution. */
14001 if (!DECL_FUNCTION_MEMBER_P (decl1)
14002 && !(DECL_USE_TEMPLATE (decl1) &&
14003 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
14005 tree olddecl = pushdecl (decl1);
14007 if (olddecl == error_mark_node)
14008 /* If something went wrong when registering the declaration,
14009 use DECL1; we have to have a FUNCTION_DECL to use when
14010 parsing the body of the function. */
14012 else
14014 /* Otherwise, OLDDECL is either a previous declaration
14015 of the same function or DECL1 itself. */
14017 if (warn_missing_declarations
14018 && olddecl == decl1
14019 && !DECL_MAIN_P (decl1)
14020 && TREE_PUBLIC (decl1)
14021 && !DECL_DECLARED_INLINE_P (decl1))
14023 tree context;
14025 /* Check whether DECL1 is in an anonymous
14026 namespace. */
14027 for (context = DECL_CONTEXT (decl1);
14028 context;
14029 context = DECL_CONTEXT (context))
14031 if (TREE_CODE (context) == NAMESPACE_DECL
14032 && DECL_NAME (context) == NULL_TREE)
14033 break;
14036 if (context == NULL)
14037 warning_at (DECL_SOURCE_LOCATION (decl1),
14038 OPT_Wmissing_declarations,
14039 "no previous declaration for %qD", decl1);
14042 decl1 = olddecl;
14045 else
14047 /* We need to set the DECL_CONTEXT. */
14048 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
14049 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
14051 fntype = TREE_TYPE (decl1);
14052 restype = TREE_TYPE (fntype);
14054 /* If #pragma weak applies, mark the decl appropriately now.
14055 The pragma only applies to global functions. Because
14056 determining whether or not the #pragma applies involves
14057 computing the mangled name for the declaration, we cannot
14058 apply the pragma until after we have merged this declaration
14059 with any previous declarations; if the original declaration
14060 has a linkage specification, that specification applies to
14061 the definition as well, and may affect the mangled name. */
14062 if (DECL_FILE_SCOPE_P (decl1))
14063 maybe_apply_pragma_weak (decl1);
14066 /* Reset this in case the call to pushdecl changed it. */
14067 current_function_decl = decl1;
14069 gcc_assert (DECL_INITIAL (decl1));
14071 /* This function may already have been parsed, in which case just
14072 return; our caller will skip over the body without parsing. */
14073 if (DECL_INITIAL (decl1) != error_mark_node)
14074 return true;
14076 /* Initialize RTL machinery. We cannot do this until
14077 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
14078 even when processing a template; this is how we get
14079 CFUN set up, and our per-function variables initialized.
14080 FIXME factor out the non-RTL stuff. */
14081 bl = current_binding_level;
14082 allocate_struct_function (decl1, processing_template_decl);
14084 /* Initialize the language data structures. Whenever we start
14085 a new function, we destroy temporaries in the usual way. */
14086 cfun->language = ggc_cleared_alloc<language_function> ();
14087 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
14088 current_binding_level = bl;
14090 if (!processing_template_decl && type_uses_auto (restype))
14092 FNDECL_USED_AUTO (decl1) = true;
14093 current_function_auto_return_pattern = restype;
14096 /* Start the statement-tree, start the tree now. */
14097 DECL_SAVED_TREE (decl1) = push_stmt_list ();
14099 /* If we are (erroneously) defining a function that we have already
14100 defined before, wipe out what we knew before. */
14101 if (!DECL_PENDING_INLINE_P (decl1))
14102 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
14104 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
14106 /* We know that this was set up by `grokclassfn'. We do not
14107 wait until `store_parm_decls', since evil parse errors may
14108 never get us to that point. Here we keep the consistency
14109 between `current_class_type' and `current_class_ptr'. */
14110 tree t = DECL_ARGUMENTS (decl1);
14112 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
14113 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
14115 cp_function_chain->x_current_class_ref
14116 = cp_build_indirect_ref (t, RO_NULL, tf_warning_or_error);
14117 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
14118 cp_function_chain->x_current_class_ptr = t;
14120 /* Constructors and destructors need to know whether they're "in
14121 charge" of initializing virtual base classes. */
14122 t = DECL_CHAIN (t);
14123 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
14125 current_in_charge_parm = t;
14126 t = DECL_CHAIN (t);
14128 if (DECL_HAS_VTT_PARM_P (decl1))
14130 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
14131 current_vtt_parm = t;
14135 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
14136 /* Implicitly-defined methods (like the
14137 destructor for a class in which no destructor
14138 is explicitly declared) must not be defined
14139 until their definition is needed. So, we
14140 ignore interface specifications for
14141 compiler-generated functions. */
14142 && !DECL_ARTIFICIAL (decl1));
14144 if (processing_template_decl)
14145 /* Don't mess with interface flags. */;
14146 else if (DECL_INTERFACE_KNOWN (decl1))
14148 tree ctx = decl_function_context (decl1);
14150 if (DECL_NOT_REALLY_EXTERN (decl1))
14151 DECL_EXTERNAL (decl1) = 0;
14153 if (ctx != NULL_TREE && vague_linkage_p (ctx))
14154 /* This is a function in a local class in an extern inline
14155 or template function. */
14156 comdat_linkage (decl1);
14158 /* If this function belongs to an interface, it is public.
14159 If it belongs to someone else's interface, it is also external.
14160 This only affects inlines and template instantiations. */
14161 else if (!finfo->interface_unknown && honor_interface)
14163 if (DECL_DECLARED_INLINE_P (decl1)
14164 || DECL_TEMPLATE_INSTANTIATION (decl1))
14166 DECL_EXTERNAL (decl1)
14167 = (finfo->interface_only
14168 || (DECL_DECLARED_INLINE_P (decl1)
14169 && ! flag_implement_inlines
14170 && !DECL_VINDEX (decl1)));
14172 /* For WIN32 we also want to put these in linkonce sections. */
14173 maybe_make_one_only (decl1);
14175 else
14176 DECL_EXTERNAL (decl1) = 0;
14177 DECL_INTERFACE_KNOWN (decl1) = 1;
14178 /* If this function is in an interface implemented in this file,
14179 make sure that the back end knows to emit this function
14180 here. */
14181 if (!DECL_EXTERNAL (decl1))
14182 mark_needed (decl1);
14184 else if (finfo->interface_unknown && finfo->interface_only
14185 && honor_interface)
14187 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
14188 interface, we will have both finfo->interface_unknown and
14189 finfo->interface_only set. In that case, we don't want to
14190 use the normal heuristics because someone will supply a
14191 #pragma implementation elsewhere, and deducing it here would
14192 produce a conflict. */
14193 comdat_linkage (decl1);
14194 DECL_EXTERNAL (decl1) = 0;
14195 DECL_INTERFACE_KNOWN (decl1) = 1;
14196 DECL_DEFER_OUTPUT (decl1) = 1;
14198 else
14200 /* This is a definition, not a reference.
14201 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
14202 if (!GNU_INLINE_P (decl1))
14203 DECL_EXTERNAL (decl1) = 0;
14205 if ((DECL_DECLARED_INLINE_P (decl1)
14206 || DECL_TEMPLATE_INSTANTIATION (decl1))
14207 && ! DECL_INTERFACE_KNOWN (decl1))
14208 DECL_DEFER_OUTPUT (decl1) = 1;
14209 else
14210 DECL_INTERFACE_KNOWN (decl1) = 1;
14213 /* Determine the ELF visibility attribute for the function. We must not
14214 do this before calling "pushdecl", as we must allow "duplicate_decls"
14215 to merge any attributes appropriately. We also need to wait until
14216 linkage is set. */
14217 if (!DECL_CLONED_FUNCTION_P (decl1))
14218 determine_visibility (decl1);
14220 if (!processing_template_decl)
14221 maybe_instantiate_noexcept (decl1);
14223 begin_scope (sk_function_parms, decl1);
14225 ++function_depth;
14227 if (DECL_DESTRUCTOR_P (decl1)
14228 || (DECL_CONSTRUCTOR_P (decl1)
14229 && targetm.cxx.cdtor_returns_this ()))
14230 cdtor_label = create_artificial_label (input_location);
14232 start_fname_decls ();
14234 store_parm_decls (current_function_parms);
14236 if (!processing_template_decl
14237 && (flag_lifetime_dse > 1)
14238 && DECL_CONSTRUCTOR_P (decl1)
14239 && !DECL_CLONED_FUNCTION_P (decl1)
14240 /* Clobbering an empty base is harmful if it overlays real data. */
14241 && !is_empty_class (current_class_type)
14242 /* We can't clobber safely for an implicitly-defined default constructor
14243 because part of the initialization might happen before we enter the
14244 constructor, via AGGR_INIT_ZERO_FIRST (c++/68006). */
14245 && !implicit_default_ctor_p (decl1))
14246 finish_expr_stmt (build_clobber_this ());
14248 if (!processing_template_decl
14249 && DECL_CONSTRUCTOR_P (decl1)
14250 && (flag_sanitize & SANITIZE_VPTR)
14251 && !DECL_CLONED_FUNCTION_P (decl1)
14252 && !implicit_default_ctor_p (decl1))
14253 cp_ubsan_maybe_initialize_vtbl_ptrs (current_class_ptr);
14255 return true;
14259 /* Like start_preparsed_function, except that instead of a
14260 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
14262 Returns true on success. If the DECLARATOR is not suitable
14263 for a function, we return false, which tells the parser to
14264 skip the entire function. */
14266 bool
14267 start_function (cp_decl_specifier_seq *declspecs,
14268 const cp_declarator *declarator,
14269 tree attrs)
14271 tree decl1;
14273 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
14274 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
14275 if (decl1 == error_mark_node)
14276 return false;
14277 /* If the declarator is not suitable for a function definition,
14278 cause a syntax error. */
14279 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
14281 error ("invalid function declaration");
14282 return false;
14285 if (DECL_MAIN_P (decl1))
14286 /* main must return int. grokfndecl should have corrected it
14287 (and issued a diagnostic) if the user got it wrong. */
14288 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
14289 integer_type_node));
14291 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
14294 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
14295 FN. */
14297 static bool
14298 use_eh_spec_block (tree fn)
14300 return (flag_exceptions && flag_enforce_eh_specs
14301 && !processing_template_decl
14302 && !type_throw_all_p (TREE_TYPE (fn))
14303 /* We insert the EH_SPEC_BLOCK only in the original
14304 function; then, it is copied automatically to the
14305 clones. */
14306 && !DECL_CLONED_FUNCTION_P (fn)
14307 /* Implicitly-generated constructors and destructors have
14308 exception specifications. However, those specifications
14309 are the union of the possible exceptions specified by the
14310 constructors/destructors for bases and members, so no
14311 unallowed exception will ever reach this function. By
14312 not creating the EH_SPEC_BLOCK we save a little memory,
14313 and we avoid spurious warnings about unreachable
14314 code. */
14315 && !DECL_DEFAULTED_FN (fn));
14318 /* Store the parameter declarations into the current function declaration.
14319 This is called after parsing the parameter declarations, before
14320 digesting the body of the function.
14322 Also install to binding contour return value identifier, if any. */
14324 static void
14325 store_parm_decls (tree current_function_parms)
14327 tree fndecl = current_function_decl;
14328 tree parm;
14330 /* This is a chain of any other decls that came in among the parm
14331 declarations. If a parm is declared with enum {foo, bar} x;
14332 then CONST_DECLs for foo and bar are put here. */
14333 tree nonparms = NULL_TREE;
14335 if (current_function_parms)
14337 /* This case is when the function was defined with an ANSI prototype.
14338 The parms already have decls, so we need not do anything here
14339 except record them as in effect
14340 and complain if any redundant old-style parm decls were written. */
14342 tree specparms = current_function_parms;
14343 tree next;
14345 /* Must clear this because it might contain TYPE_DECLs declared
14346 at class level. */
14347 current_binding_level->names = NULL;
14349 /* If we're doing semantic analysis, then we'll call pushdecl
14350 for each of these. We must do them in reverse order so that
14351 they end in the correct forward order. */
14352 specparms = nreverse (specparms);
14354 for (parm = specparms; parm; parm = next)
14356 next = DECL_CHAIN (parm);
14357 if (TREE_CODE (parm) == PARM_DECL)
14359 if (DECL_NAME (parm) == NULL_TREE
14360 || !VOID_TYPE_P (parm))
14361 pushdecl (parm);
14362 else
14363 error ("parameter %qD declared void", parm);
14365 else
14367 /* If we find an enum constant or a type tag,
14368 put it aside for the moment. */
14369 TREE_CHAIN (parm) = NULL_TREE;
14370 nonparms = chainon (nonparms, parm);
14374 /* Get the decls in their original chain order and record in the
14375 function. This is all and only the PARM_DECLs that were
14376 pushed into scope by the loop above. */
14377 DECL_ARGUMENTS (fndecl) = getdecls ();
14379 else
14380 DECL_ARGUMENTS (fndecl) = NULL_TREE;
14382 /* Now store the final chain of decls for the arguments
14383 as the decl-chain of the current lexical scope.
14384 Put the enumerators in as well, at the front so that
14385 DECL_ARGUMENTS is not modified. */
14386 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
14388 if (use_eh_spec_block (current_function_decl))
14389 current_eh_spec_block = begin_eh_spec_block ();
14393 /* We have finished doing semantic analysis on DECL, but have not yet
14394 generated RTL for its body. Save away our current state, so that
14395 when we want to generate RTL later we know what to do. */
14397 static void
14398 save_function_data (tree decl)
14400 struct language_function *f;
14402 /* Save the language-specific per-function data so that we can
14403 get it back when we really expand this function. */
14404 gcc_assert (!DECL_PENDING_INLINE_P (decl));
14406 /* Make a copy. */
14407 f = ggc_alloc<language_function> ();
14408 memcpy (f, cp_function_chain, sizeof (struct language_function));
14409 DECL_SAVED_FUNCTION_DATA (decl) = f;
14411 /* Clear out the bits we don't need. */
14412 f->base.x_stmt_tree.x_cur_stmt_list = NULL;
14413 f->bindings = NULL;
14414 f->x_local_names = NULL;
14415 f->base.local_typedefs = NULL;
14419 /* Set the return value of the constructor (if present). */
14421 static void
14422 finish_constructor_body (void)
14424 tree val;
14425 tree exprstmt;
14427 if (targetm.cxx.cdtor_returns_this ()
14428 && (! TYPE_FOR_JAVA (current_class_type)))
14430 /* Any return from a constructor will end up here. */
14431 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
14433 val = DECL_ARGUMENTS (current_function_decl);
14434 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
14435 DECL_RESULT (current_function_decl), val);
14436 /* Return the address of the object. */
14437 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
14438 add_stmt (exprstmt);
14442 /* Do all the processing for the beginning of a destructor; set up the
14443 vtable pointers and cleanups for bases and members. */
14445 static void
14446 begin_destructor_body (void)
14448 tree compound_stmt;
14450 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
14451 issued an error message. We still want to try to process the
14452 body of the function, but initialize_vtbl_ptrs will crash if
14453 TYPE_BINFO is NULL. */
14454 if (COMPLETE_TYPE_P (current_class_type))
14456 compound_stmt = begin_compound_stmt (0);
14457 /* Make all virtual function table pointers in non-virtual base
14458 classes point to CURRENT_CLASS_TYPE's virtual function
14459 tables. */
14460 initialize_vtbl_ptrs (current_class_ptr);
14461 finish_compound_stmt (compound_stmt);
14463 if (flag_lifetime_dse
14464 /* Clobbering an empty base is harmful if it overlays real data. */
14465 && !is_empty_class (current_class_type))
14466 finish_decl_cleanup (NULL_TREE, build_clobber_this ());
14468 /* And insert cleanups for our bases and members so that they
14469 will be properly destroyed if we throw. */
14470 push_base_cleanups ();
14474 /* At the end of every destructor we generate code to delete the object if
14475 necessary. Do that now. */
14477 static void
14478 finish_destructor_body (void)
14480 tree exprstmt;
14482 /* Any return from a destructor will end up here; that way all base
14483 and member cleanups will be run when the function returns. */
14484 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
14486 if (targetm.cxx.cdtor_returns_this ())
14488 tree val;
14490 val = DECL_ARGUMENTS (current_function_decl);
14491 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
14492 DECL_RESULT (current_function_decl), val);
14493 /* Return the address of the object. */
14494 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
14495 add_stmt (exprstmt);
14499 /* Do the necessary processing for the beginning of a function body, which
14500 in this case includes member-initializers, but not the catch clauses of
14501 a function-try-block. Currently, this means opening a binding level
14502 for the member-initializers (in a ctor), member cleanups (in a dtor),
14503 and capture proxies (in a lambda operator()). */
14505 tree
14506 begin_function_body (void)
14508 tree stmt;
14510 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
14511 return NULL_TREE;
14513 if (processing_template_decl)
14514 /* Do nothing now. */;
14515 else
14516 /* Always keep the BLOCK node associated with the outermost pair of
14517 curly braces of a function. These are needed for correct
14518 operation of dwarfout.c. */
14519 keep_next_level (true);
14521 stmt = begin_compound_stmt (BCS_FN_BODY);
14523 if (processing_template_decl)
14524 /* Do nothing now. */;
14525 else if (DECL_DESTRUCTOR_P (current_function_decl))
14526 begin_destructor_body ();
14528 return stmt;
14531 /* Do the processing for the end of a function body. Currently, this means
14532 closing out the cleanups for fully-constructed bases and members, and in
14533 the case of the destructor, deleting the object if desired. Again, this
14534 is only meaningful for [cd]tors, since they are the only functions where
14535 there is a significant distinction between the main body and any
14536 function catch clauses. Handling, say, main() return semantics here
14537 would be wrong, as flowing off the end of a function catch clause for
14538 main() would also need to return 0. */
14540 void
14541 finish_function_body (tree compstmt)
14543 if (compstmt == NULL_TREE)
14544 return;
14546 /* Close the block. */
14547 finish_compound_stmt (compstmt);
14549 if (processing_template_decl)
14550 /* Do nothing now. */;
14551 else if (DECL_CONSTRUCTOR_P (current_function_decl))
14552 finish_constructor_body ();
14553 else if (DECL_DESTRUCTOR_P (current_function_decl))
14554 finish_destructor_body ();
14557 /* Given a function, returns the BLOCK corresponding to the outermost level
14558 of curly braces, skipping the artificial block created for constructor
14559 initializers. */
14561 tree
14562 outer_curly_brace_block (tree fndecl)
14564 tree block = DECL_INITIAL (fndecl);
14565 if (BLOCK_OUTER_CURLY_BRACE_P (block))
14566 return block;
14567 block = BLOCK_SUBBLOCKS (block);
14568 if (BLOCK_OUTER_CURLY_BRACE_P (block))
14569 return block;
14570 block = BLOCK_SUBBLOCKS (block);
14571 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
14572 return block;
14575 /* If FNDECL is a class's key method, add the class to the list of
14576 keyed classes that should be emitted. */
14578 static void
14579 record_key_method_defined (tree fndecl)
14581 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
14582 && DECL_VIRTUAL_P (fndecl)
14583 && !processing_template_decl)
14585 tree fnclass = DECL_CONTEXT (fndecl);
14586 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
14587 keyed_classes = tree_cons (NULL_TREE, fnclass, keyed_classes);
14591 /* Subroutine of finish_function.
14592 Save the body of constexpr functions for possible
14593 future compile time evaluation. */
14595 static void
14596 maybe_save_function_definition (tree fun)
14598 if (!processing_template_decl
14599 && DECL_DECLARED_CONSTEXPR_P (fun)
14600 && !cp_function_chain->invalid_constexpr
14601 && !DECL_CLONED_FUNCTION_P (fun))
14602 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
14605 /* Finish up a function declaration and compile that function
14606 all the way to assembler language output. The free the storage
14607 for the function definition.
14609 FLAGS is a bitwise or of the following values:
14610 2 - INCLASS_INLINE
14611 We just finished processing the body of an in-class inline
14612 function definition. (This processing will have taken place
14613 after the class definition is complete.) */
14615 tree
14616 finish_function (int flags)
14618 tree fndecl = current_function_decl;
14619 tree fntype, ctype = NULL_TREE;
14620 int inclass_inline = (flags & 2) != 0;
14622 /* When we get some parse errors, we can end up without a
14623 current_function_decl, so cope. */
14624 if (fndecl == NULL_TREE)
14625 return error_mark_node;
14627 if (c_dialect_objc ())
14628 objc_finish_function ();
14630 record_key_method_defined (fndecl);
14632 fntype = TREE_TYPE (fndecl);
14634 /* TREE_READONLY (fndecl) = 1;
14635 This caused &foo to be of type ptr-to-const-function
14636 which then got a warning when stored in a ptr-to-function variable. */
14638 gcc_assert (building_stmt_list_p ());
14639 /* The current function is being defined, so its DECL_INITIAL should
14640 be set, and unless there's a multiple definition, it should be
14641 error_mark_node. */
14642 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
14644 /* For a cloned function, we've already got all the code we need;
14645 there's no need to add any extra bits. */
14646 if (!DECL_CLONED_FUNCTION_P (fndecl))
14648 /* Make it so that `main' always returns 0 by default. */
14649 if (DECL_MAIN_P (current_function_decl))
14650 finish_return_stmt (integer_zero_node);
14652 if (use_eh_spec_block (current_function_decl))
14653 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
14654 (TREE_TYPE (current_function_decl)),
14655 current_eh_spec_block);
14658 /* If we're saving up tree structure, tie off the function now. */
14659 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
14661 if (fn_contains_cilk_spawn_p (cfun) && !processing_template_decl)
14662 cfun->cilk_frame_decl = insert_cilk_frame (fndecl);
14664 finish_fname_decls ();
14666 /* If this function can't throw any exceptions, remember that. */
14667 if (!processing_template_decl
14668 && !cp_function_chain->can_throw
14669 && !flag_non_call_exceptions
14670 && !decl_replaceable_p (fndecl))
14671 TREE_NOTHROW (fndecl) = 1;
14673 /* This must come after expand_function_end because cleanups might
14674 have declarations (from inline functions) that need to go into
14675 this function's blocks. */
14677 /* If the current binding level isn't the outermost binding level
14678 for this function, either there is a bug, or we have experienced
14679 syntax errors and the statement tree is malformed. */
14680 if (current_binding_level->kind != sk_function_parms)
14682 /* Make sure we have already experienced errors. */
14683 gcc_assert (errorcount);
14685 /* Throw away the broken statement tree and extra binding
14686 levels. */
14687 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
14689 while (current_binding_level->kind != sk_function_parms)
14691 if (current_binding_level->kind == sk_class)
14692 pop_nested_class ();
14693 else
14694 poplevel (0, 0, 0);
14697 poplevel (1, 0, 1);
14699 /* Statements should always be full-expressions at the outermost set
14700 of curly braces for a function. */
14701 gcc_assert (stmts_are_full_exprs_p ());
14703 /* If there are no return statements in a function with auto return type,
14704 the return type is void. But if the declared type is something like
14705 auto*, this is an error. */
14706 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
14707 && TREE_TYPE (fntype) == current_function_auto_return_pattern)
14709 if (!is_auto (current_function_auto_return_pattern)
14710 && !current_function_returns_value && !current_function_returns_null)
14712 error ("no return statements in function returning %qT",
14713 current_function_auto_return_pattern);
14714 inform (input_location, "only plain %<auto%> return type can be "
14715 "deduced to %<void%>");
14717 apply_deduced_return_type (fndecl, void_type_node);
14718 fntype = TREE_TYPE (fndecl);
14721 // If this is a concept, check that the definition is reasonable.
14722 if (DECL_DECLARED_CONCEPT_P (fndecl))
14723 check_function_concept (fndecl);
14725 /* Save constexpr function body before it gets munged by
14726 the NRV transformation. */
14727 maybe_save_function_definition (fndecl);
14729 /* Invoke the pre-genericize plugin before we start munging things. */
14730 if (!processing_template_decl)
14731 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
14733 /* Perform delayed folding before NRV transformation. */
14734 if (!processing_template_decl)
14735 cp_fold_function (fndecl);
14737 /* Set up the named return value optimization, if we can. Candidate
14738 variables are selected in check_return_expr. */
14739 if (current_function_return_value)
14741 tree r = current_function_return_value;
14742 tree outer;
14744 if (r != error_mark_node
14745 /* This is only worth doing for fns that return in memory--and
14746 simpler, since we don't have to worry about promoted modes. */
14747 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
14748 /* Only allow this for variables declared in the outer scope of
14749 the function so we know that their lifetime always ends with a
14750 return; see g++.dg/opt/nrv6.C. We could be more flexible if
14751 we were to do this optimization in tree-ssa. */
14752 && (outer = outer_curly_brace_block (fndecl))
14753 && chain_member (r, BLOCK_VARS (outer)))
14754 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
14756 current_function_return_value = NULL_TREE;
14759 /* Remember that we were in class scope. */
14760 if (current_class_name)
14761 ctype = current_class_type;
14763 /* Must mark the RESULT_DECL as being in this function. */
14764 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
14766 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
14767 to the FUNCTION_DECL node itself. */
14768 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
14770 /* Save away current state, if appropriate. */
14771 if (!processing_template_decl)
14772 save_function_data (fndecl);
14774 /* Complain if there's just no return statement. */
14775 if (warn_return_type
14776 && !VOID_TYPE_P (TREE_TYPE (fntype))
14777 && !dependent_type_p (TREE_TYPE (fntype))
14778 && !current_function_returns_value && !current_function_returns_null
14779 /* Don't complain if we abort or throw. */
14780 && !current_function_returns_abnormally
14781 /* Don't complain if there's an infinite loop. */
14782 && !current_function_infinite_loop
14783 /* Don't complain if we are declared noreturn. */
14784 && !TREE_THIS_VOLATILE (fndecl)
14785 && !DECL_NAME (DECL_RESULT (fndecl))
14786 && !TREE_NO_WARNING (fndecl)
14787 /* Structor return values (if any) are set by the compiler. */
14788 && !DECL_CONSTRUCTOR_P (fndecl)
14789 && !DECL_DESTRUCTOR_P (fndecl)
14790 && targetm.warn_func_return (fndecl))
14792 warning (OPT_Wreturn_type,
14793 "no return statement in function returning non-void");
14794 TREE_NO_WARNING (fndecl) = 1;
14797 /* Store the end of the function, so that we get good line number
14798 info for the epilogue. */
14799 cfun->function_end_locus = input_location;
14801 /* Complain about parameters that are only set, but never otherwise used. */
14802 if (warn_unused_but_set_parameter
14803 && !processing_template_decl
14804 && errorcount == unused_but_set_errorcount
14805 && !DECL_CLONED_FUNCTION_P (fndecl))
14807 tree decl;
14809 for (decl = DECL_ARGUMENTS (fndecl);
14810 decl;
14811 decl = DECL_CHAIN (decl))
14812 if (TREE_USED (decl)
14813 && TREE_CODE (decl) == PARM_DECL
14814 && !DECL_READ_P (decl)
14815 && DECL_NAME (decl)
14816 && !DECL_ARTIFICIAL (decl)
14817 && !TREE_NO_WARNING (decl)
14818 && !DECL_IN_SYSTEM_HEADER (decl)
14819 && TREE_TYPE (decl) != error_mark_node
14820 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
14821 && (!CLASS_TYPE_P (TREE_TYPE (decl))
14822 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
14823 warning_at (DECL_SOURCE_LOCATION (decl),
14824 OPT_Wunused_but_set_parameter,
14825 "parameter %qD set but not used", decl);
14826 unused_but_set_errorcount = errorcount;
14829 /* Complain about locally defined typedefs that are not used in this
14830 function. */
14831 maybe_warn_unused_local_typedefs ();
14833 /* Possibly warn about unused parameters. */
14834 if (warn_unused_parameter
14835 && !processing_template_decl
14836 && !DECL_CLONED_FUNCTION_P (fndecl))
14837 do_warn_unused_parameter (fndecl);
14839 /* Genericize before inlining. */
14840 if (!processing_template_decl)
14842 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
14843 cp_genericize (fndecl);
14844 /* Clear out the bits we don't need. */
14845 f->x_current_class_ptr = NULL;
14846 f->x_current_class_ref = NULL;
14847 f->x_eh_spec_block = NULL;
14848 f->x_in_charge_parm = NULL;
14849 f->x_vtt_parm = NULL;
14850 f->x_return_value = NULL;
14851 f->bindings = NULL;
14852 f->extern_decl_map = NULL;
14853 f->infinite_loops = NULL;
14855 /* Clear out the bits we don't need. */
14856 local_names = NULL;
14858 /* We're leaving the context of this function, so zap cfun. It's still in
14859 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
14860 set_cfun (NULL);
14861 current_function_decl = NULL;
14863 /* If this is an in-class inline definition, we may have to pop the
14864 bindings for the template parameters that we added in
14865 maybe_begin_member_template_processing when start_function was
14866 called. */
14867 if (inclass_inline)
14868 maybe_end_member_template_processing ();
14870 /* Leave the scope of the class. */
14871 if (ctype)
14872 pop_nested_class ();
14874 --function_depth;
14876 /* Clean up. */
14877 current_function_decl = NULL_TREE;
14879 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
14880 return fndecl;
14883 /* Create the FUNCTION_DECL for a function definition.
14884 DECLSPECS and DECLARATOR are the parts of the declaration;
14885 they describe the return type and the name of the function,
14886 but twisted together in a fashion that parallels the syntax of C.
14888 This function creates a binding context for the function body
14889 as well as setting up the FUNCTION_DECL in current_function_decl.
14891 Returns a FUNCTION_DECL on success.
14893 If the DECLARATOR is not suitable for a function (it defines a datum
14894 instead), we return 0, which tells yyparse to report a parse error.
14896 May return void_type_node indicating that this method is actually
14897 a friend. See grokfield for more details.
14899 Came here with a `.pushlevel' .
14901 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
14902 CHANGES TO CODE IN `grokfield'. */
14904 tree
14905 grokmethod (cp_decl_specifier_seq *declspecs,
14906 const cp_declarator *declarator, tree attrlist)
14908 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
14909 &attrlist);
14911 if (fndecl == error_mark_node)
14912 return error_mark_node;
14914 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
14916 error ("invalid member function declaration");
14917 return error_mark_node;
14920 if (attrlist)
14921 cplus_decl_attributes (&fndecl, attrlist, 0);
14923 /* Pass friends other than inline friend functions back. */
14924 if (fndecl == void_type_node)
14925 return fndecl;
14927 if (DECL_IN_AGGR_P (fndecl))
14929 if (DECL_CLASS_SCOPE_P (fndecl))
14930 error ("%qD is already defined in class %qT", fndecl,
14931 DECL_CONTEXT (fndecl));
14932 return error_mark_node;
14935 check_template_shadow (fndecl);
14937 if (TREE_PUBLIC (fndecl))
14938 DECL_COMDAT (fndecl) = 1;
14939 DECL_DECLARED_INLINE_P (fndecl) = 1;
14940 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
14942 /* We process method specializations in finish_struct_1. */
14943 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
14945 fndecl = push_template_decl (fndecl);
14946 if (fndecl == error_mark_node)
14947 return fndecl;
14950 if (! DECL_FRIEND_P (fndecl))
14952 if (DECL_CHAIN (fndecl))
14954 fndecl = copy_node (fndecl);
14955 TREE_CHAIN (fndecl) = NULL_TREE;
14959 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
14961 DECL_IN_AGGR_P (fndecl) = 1;
14962 return fndecl;
14966 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
14967 we can lay it out later, when and if its type becomes complete.
14969 Also handle constexpr variables where the initializer involves
14970 an unlowered PTRMEM_CST because the class isn't complete yet. */
14972 void
14973 maybe_register_incomplete_var (tree var)
14975 gcc_assert (VAR_P (var));
14977 /* Keep track of variables with incomplete types. */
14978 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
14979 && DECL_EXTERNAL (var))
14981 tree inner_type = TREE_TYPE (var);
14983 while (TREE_CODE (inner_type) == ARRAY_TYPE)
14984 inner_type = TREE_TYPE (inner_type);
14985 inner_type = TYPE_MAIN_VARIANT (inner_type);
14987 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
14988 /* RTTI TD entries are created while defining the type_info. */
14989 || (TYPE_LANG_SPECIFIC (inner_type)
14990 && TYPE_BEING_DEFINED (inner_type)))
14992 incomplete_var iv = {var, inner_type};
14993 vec_safe_push (incomplete_vars, iv);
14995 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
14996 && decl_constant_var_p (var)
14997 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
14999 /* When the outermost open class is complete we can resolve any
15000 pointers-to-members. */
15001 tree context = outermost_open_class ();
15002 incomplete_var iv = {var, context};
15003 vec_safe_push (incomplete_vars, iv);
15008 /* Called when a class type (given by TYPE) is defined. If there are
15009 any existing VAR_DECLs whose type has been completed by this
15010 declaration, update them now. */
15012 void
15013 complete_vars (tree type)
15015 unsigned ix;
15016 incomplete_var *iv;
15018 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
15020 if (same_type_p (type, iv->incomplete_type))
15022 tree var = iv->decl;
15023 tree type = TREE_TYPE (var);
15025 if (TYPE_MAIN_VARIANT (strip_array_types (type))
15026 == iv->incomplete_type)
15028 /* Complete the type of the variable. The VAR_DECL itself
15029 will be laid out in expand_expr. */
15030 complete_type (type);
15031 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
15034 /* Remove this entry from the list. */
15035 incomplete_vars->unordered_remove (ix);
15037 else
15038 ix++;
15041 /* Check for pending declarations which may have abstract type. */
15042 complete_type_check_abstract (type);
15045 /* If DECL is of a type which needs a cleanup, build and return an
15046 expression to perform that cleanup here. Return NULL_TREE if no
15047 cleanup need be done. DECL can also be a _REF when called from
15048 split_nonconstant_init_1. */
15050 tree
15051 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
15053 tree type;
15054 tree attr;
15055 tree cleanup;
15057 /* Assume no cleanup is required. */
15058 cleanup = NULL_TREE;
15060 if (error_operand_p (decl))
15061 return cleanup;
15063 /* Handle "__attribute__((cleanup))". We run the cleanup function
15064 before the destructor since the destructor is what actually
15065 terminates the lifetime of the object. */
15066 if (DECL_P (decl))
15067 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
15068 else
15069 attr = NULL_TREE;
15070 if (attr)
15072 tree id;
15073 tree fn;
15074 tree arg;
15076 /* Get the name specified by the user for the cleanup function. */
15077 id = TREE_VALUE (TREE_VALUE (attr));
15078 /* Look up the name to find the cleanup function to call. It is
15079 important to use lookup_name here because that is what is
15080 used in c-common.c:handle_cleanup_attribute when performing
15081 initial checks on the attribute. Note that those checks
15082 include ensuring that the function found is not an overloaded
15083 function, or an object with an overloaded call operator,
15084 etc.; we can rely on the fact that the function found is an
15085 ordinary FUNCTION_DECL. */
15086 fn = lookup_name (id);
15087 arg = build_address (decl);
15088 if (!mark_used (decl, complain) && !(complain & tf_error))
15089 return error_mark_node;
15090 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
15091 if (cleanup == error_mark_node)
15092 return error_mark_node;
15094 /* Handle ordinary C++ destructors. */
15095 type = TREE_TYPE (decl);
15096 if (type_build_dtor_call (type))
15098 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
15099 tree addr;
15100 tree call;
15102 if (TREE_CODE (type) == ARRAY_TYPE)
15103 addr = decl;
15104 else
15105 addr = build_address (decl);
15107 call = build_delete (TREE_TYPE (addr), addr,
15108 sfk_complete_destructor, flags, 0, complain);
15109 if (call == error_mark_node)
15110 cleanup = error_mark_node;
15111 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
15112 /* Discard the call. */;
15113 else if (cleanup)
15114 cleanup = cp_build_compound_expr (cleanup, call, complain);
15115 else
15116 cleanup = call;
15119 /* build_delete sets the location of the destructor call to the
15120 current location, even though the destructor is going to be
15121 called later, at the end of the current scope. This can lead to
15122 a "jumpy" behavior for users of debuggers when they step around
15123 the end of the block. So let's unset the location of the
15124 destructor call instead. */
15125 protected_set_expr_location (cleanup, UNKNOWN_LOCATION);
15127 if (cleanup
15128 && DECL_P (decl)
15129 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
15130 /* Treat objects with destructors as used; the destructor may do
15131 something substantive. */
15132 && !mark_used (decl, complain) && !(complain & tf_error))
15133 return error_mark_node;
15135 return cleanup;
15139 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
15140 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
15141 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
15143 tree
15144 static_fn_type (tree memfntype)
15146 tree fntype;
15147 tree args;
15149 if (TYPE_PTRMEMFUNC_P (memfntype))
15150 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
15151 if (POINTER_TYPE_P (memfntype)
15152 || TREE_CODE (memfntype) == FUNCTION_DECL)
15153 memfntype = TREE_TYPE (memfntype);
15154 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
15155 return memfntype;
15156 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
15157 args = TYPE_ARG_TYPES (memfntype);
15158 cp_ref_qualifier rqual = type_memfn_rqual (memfntype);
15159 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
15160 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype), rqual);
15161 fntype = (cp_build_type_attribute_variant
15162 (fntype, TYPE_ATTRIBUTES (memfntype)));
15163 fntype = (build_exception_variant
15164 (fntype, TYPE_RAISES_EXCEPTIONS (memfntype)));
15165 if (TYPE_HAS_LATE_RETURN_TYPE (memfntype))
15166 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
15167 return fntype;
15170 /* DECL was originally constructed as a non-static member function,
15171 but turned out to be static. Update it accordingly. */
15173 void
15174 revert_static_member_fn (tree decl)
15176 tree stype = static_fn_type (decl);
15177 cp_cv_quals quals = type_memfn_quals (stype);
15178 cp_ref_qualifier rqual = type_memfn_rqual (stype);
15180 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
15181 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
15183 TREE_TYPE (decl) = stype;
15185 if (DECL_ARGUMENTS (decl))
15186 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
15187 DECL_STATIC_FUNCTION_P (decl) = 1;
15190 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
15191 one of the language-independent trees. */
15193 enum cp_tree_node_structure_enum
15194 cp_tree_node_structure (union lang_tree_node * t)
15196 switch (TREE_CODE (&t->generic))
15198 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
15199 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
15200 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
15201 case OVERLOAD: return TS_CP_OVERLOAD;
15202 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
15203 case PTRMEM_CST: return TS_CP_PTRMEM;
15204 case BASELINK: return TS_CP_BASELINK;
15205 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
15206 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
15207 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
15208 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
15209 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
15210 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
15211 case CONSTRAINT_INFO: return TS_CP_CONSTRAINT_INFO;
15212 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
15213 default: return TS_CP_GENERIC;
15217 /* Build the void_list_node (void_type_node having been created). */
15218 tree
15219 build_void_list_node (void)
15221 tree t = build_tree_list (NULL_TREE, void_type_node);
15222 return t;
15225 bool
15226 cp_missing_noreturn_ok_p (tree decl)
15228 /* A missing noreturn is ok for the `main' function. */
15229 return DECL_MAIN_P (decl);
15232 /* Return the decl used to identify the COMDAT group into which DECL should
15233 be placed. */
15235 tree
15236 cxx_comdat_group (tree decl)
15238 /* Virtual tables, construction virtual tables, and virtual table
15239 tables all go in a single COMDAT group, named after the primary
15240 virtual table. */
15241 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
15242 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
15243 /* For all other DECLs, the COMDAT group is the mangled name of the
15244 declaration itself. */
15245 else
15247 while (DECL_THUNK_P (decl))
15249 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
15250 into the same section as the target function. In that case
15251 we must return target's name. */
15252 tree target = THUNK_TARGET (decl);
15253 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
15254 && DECL_SECTION_NAME (target) != NULL
15255 && DECL_ONE_ONLY (target))
15256 decl = target;
15257 else
15258 break;
15262 return decl;
15265 /* Returns the return type for FN as written by the user, which may include
15266 a placeholder for a deduced return type. */
15268 tree
15269 fndecl_declared_return_type (tree fn)
15271 fn = STRIP_TEMPLATE (fn);
15272 if (FNDECL_USED_AUTO (fn))
15274 struct language_function *f = NULL;
15275 if (DECL_STRUCT_FUNCTION (fn))
15276 f = DECL_STRUCT_FUNCTION (fn)->language;
15277 if (f == NULL)
15278 f = DECL_SAVED_FUNCTION_DATA (fn);
15279 return f->x_auto_return_pattern;
15281 return TREE_TYPE (TREE_TYPE (fn));
15284 /* Returns true iff DECL was declared with an auto return type and it has
15285 not yet been deduced to a real type. */
15287 bool
15288 undeduced_auto_decl (tree decl)
15290 if (cxx_dialect < cxx14)
15291 return false;
15292 return type_uses_auto (TREE_TYPE (decl));
15295 /* Complain if DECL has an undeduced return type. */
15297 void
15298 require_deduced_type (tree decl)
15300 if (undeduced_auto_decl (decl))
15301 error ("use of %qD before deduction of %<auto%>", decl);
15304 #include "gt-cp-decl.h"