PR c++/59366
[official-gcc.git] / gcc / cp / decl.c
blob35f483363d8dce96c186e13f7ac8a5682b089302
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988-2015 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 "tm.h"
33 #include "hash-set.h"
34 #include "machmode.h"
35 #include "vec.h"
36 #include "double-int.h"
37 #include "input.h"
38 #include "alias.h"
39 #include "symtab.h"
40 #include "wide-int.h"
41 #include "inchash.h"
42 #include "tree.h"
43 #include "tree-hasher.h"
44 #include "stringpool.h"
45 #include "stor-layout.h"
46 #include "varasm.h"
47 #include "attribs.h"
48 #include "calls.h"
49 #include "flags.h"
50 #include "cp-tree.h"
51 #include "tree-iterator.h"
52 #include "tree-inline.h"
53 #include "decl.h"
54 #include "intl.h"
55 #include "toplev.h"
56 #include "hashtab.h"
57 #include "tm_p.h"
58 #include "target.h"
59 #include "c-family/c-common.h"
60 #include "c-family/c-objc.h"
61 #include "c-family/c-pragma.h"
62 #include "c-family/c-target.h"
63 #include "c-family/c-ubsan.h"
64 #include "diagnostic.h"
65 #include "intl.h"
66 #include "debug.h"
67 #include "timevar.h"
68 #include "splay-tree.h"
69 #include "plugin.h"
70 #include "hash-map.h"
71 #include "is-a.h"
72 #include "plugin-api.h"
73 #include "hard-reg-set.h"
74 #include "input.h"
75 #include "function.h"
76 #include "ipa-ref.h"
77 #include "cgraph.h"
78 #include "cilk.h"
79 #include "wide-int.h"
80 #include "builtins.h"
82 /* Possible cases of bad specifiers type used by bad_specifiers. */
83 enum bad_spec_place {
84 BSP_VAR, /* variable */
85 BSP_PARM, /* parameter */
86 BSP_TYPE, /* type */
87 BSP_FIELD /* field */
90 static tree grokparms (tree parmlist, tree *);
91 static const char *redeclaration_error_message (tree, tree);
93 static int decl_jump_unsafe (tree);
94 static void require_complete_types_for_parms (tree);
95 static int ambi_op_p (enum tree_code);
96 static int unary_op_p (enum tree_code);
97 static void push_local_name (tree);
98 static tree grok_reference_init (tree, tree, tree, int);
99 static tree grokvardecl (tree, tree, tree, const cp_decl_specifier_seq *,
100 int, int, int, tree);
101 static int check_static_variable_definition (tree, tree);
102 static void record_unknown_type (tree, const char *);
103 static tree builtin_function_1 (tree, tree, bool);
104 static int member_function_or_else (tree, tree, enum overload_flags);
105 static void bad_specifiers (tree, enum bad_spec_place, int, int, int, int,
106 int);
107 static void check_for_uninitialized_const_var (tree);
108 static tree local_variable_p_walkfn (tree *, int *, void *);
109 static tree record_builtin_java_type (const char *, int);
110 static const char *tag_name (enum tag_types);
111 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
112 static int walk_namespaces_r (tree, walk_namespaces_fn, void *);
113 static void maybe_deduce_size_from_array_init (tree, tree);
114 static void layout_var_decl (tree);
115 static tree check_initializer (tree, tree, int, vec<tree, va_gc> **);
116 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
117 static void save_function_data (tree);
118 static void copy_type_enum (tree , tree);
119 static void check_function_type (tree, tree);
120 static void finish_constructor_body (void);
121 static void begin_destructor_body (void);
122 static void finish_destructor_body (void);
123 static void record_key_method_defined (tree);
124 static tree create_array_type_for_decl (tree, tree, tree);
125 static tree get_atexit_node (void);
126 static tree get_dso_handle_node (void);
127 static tree start_cleanup_fn (void);
128 static void end_cleanup_fn (void);
129 static tree cp_make_fname_decl (location_t, tree, int);
130 static void initialize_predefined_identifiers (void);
131 static tree check_special_function_return_type
132 (special_function_kind, tree, tree);
133 static tree push_cp_library_fn (enum tree_code, tree, int);
134 static tree build_cp_library_fn (tree, enum tree_code, tree, int);
135 static void store_parm_decls (tree);
136 static void initialize_local_var (tree, tree);
137 static void expand_static_init (tree, tree);
139 /* The following symbols are subsumed in the cp_global_trees array, and
140 listed here individually for documentation purposes.
142 C++ extensions
143 tree wchar_decl_node;
145 tree vtable_entry_type;
146 tree delta_type_node;
147 tree __t_desc_type_node;
149 tree class_type_node;
150 tree unknown_type_node;
152 Array type `vtable_entry_type[]'
154 tree vtbl_type_node;
155 tree vtbl_ptr_type_node;
157 Namespaces,
159 tree std_node;
160 tree abi_node;
162 A FUNCTION_DECL which can call `abort'. Not necessarily the
163 one that the user will declare, but sufficient to be called
164 by routines that want to abort the program.
166 tree abort_fndecl;
168 Used by RTTI
169 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
170 tree tinfo_var_id; */
172 tree cp_global_trees[CPTI_MAX];
174 /* Indicates that there is a type value in some namespace, although
175 that is not necessarily in scope at the moment. */
177 tree global_type_node;
179 /* The node that holds the "name" of the global scope. */
180 tree global_scope_name;
182 #define local_names cp_function_chain->x_local_names
184 /* A list of objects which have constructors or destructors
185 which reside in the global scope. The decl is stored in
186 the TREE_VALUE slot and the initializer is stored
187 in the TREE_PURPOSE slot. */
188 tree static_aggregates;
190 /* Like static_aggregates, but for thread_local variables. */
191 tree tls_aggregates;
193 /* -- end of C++ */
195 /* A node for the integer constant 2. */
197 tree integer_two_node;
199 /* Used only for jumps to as-yet undefined labels, since jumps to
200 defined labels can have their validity checked immediately. */
202 struct GTY((chain_next ("%h.next"))) named_label_use_entry {
203 struct named_label_use_entry *next;
204 /* The binding level to which this entry is *currently* attached.
205 This is initially the binding level in which the goto appeared,
206 but is modified as scopes are closed. */
207 cp_binding_level *binding_level;
208 /* The head of the names list that was current when the goto appeared,
209 or the inner scope popped. These are the decls that will *not* be
210 skipped when jumping to the label. */
211 tree names_in_scope;
212 /* The location of the goto, for error reporting. */
213 location_t o_goto_locus;
214 /* True if an OpenMP structured block scope has been closed since
215 the goto appeared. This means that the branch from the label will
216 illegally exit an OpenMP scope. */
217 bool in_omp_scope;
220 /* A list of all LABEL_DECLs in the function that have names. Here so
221 we can clear out their names' definitions at the end of the
222 function, and so we can check the validity of jumps to these labels. */
224 struct GTY((for_user)) named_label_entry {
225 /* The decl itself. */
226 tree label_decl;
228 /* The binding level to which the label is *currently* attached.
229 This is initially set to the binding level in which the label
230 is defined, but is modified as scopes are closed. */
231 cp_binding_level *binding_level;
232 /* The head of the names list that was current when the label was
233 defined, or the inner scope popped. These are the decls that will
234 be skipped when jumping to the label. */
235 tree names_in_scope;
236 /* A vector of all decls from all binding levels that would be
237 crossed by a backward branch to the label. */
238 vec<tree, va_gc> *bad_decls;
240 /* A list of uses of the label, before the label is defined. */
241 struct named_label_use_entry *uses;
243 /* The following bits are set after the label is defined, and are
244 updated as scopes are popped. They indicate that a backward jump
245 to the label will illegally enter a scope of the given flavor. */
246 bool in_try_scope;
247 bool in_catch_scope;
248 bool in_omp_scope;
251 #define named_labels cp_function_chain->x_named_labels
253 /* The number of function bodies which we are currently processing.
254 (Zero if we are at namespace scope, one inside the body of a
255 function, two inside the body of a function in a local class, etc.) */
256 int function_depth;
258 /* To avoid unwanted recursion, finish_function defers all mark_used calls
259 encountered during its execution until it finishes. */
260 bool defer_mark_used_calls;
261 vec<tree, va_gc> *deferred_mark_used_calls;
263 /* States indicating how grokdeclarator() should handle declspecs marked
264 with __attribute__((deprecated)). An object declared as
265 __attribute__((deprecated)) suppresses warnings of uses of other
266 deprecated items. */
267 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
270 /* A list of VAR_DECLs whose type was incomplete at the time the
271 variable was declared. */
273 typedef struct GTY(()) incomplete_var_d {
274 tree decl;
275 tree incomplete_type;
276 } incomplete_var;
279 static GTY(()) vec<incomplete_var, va_gc> *incomplete_vars;
281 /* Returns the kind of template specialization we are currently
282 processing, given that it's declaration contained N_CLASS_SCOPES
283 explicit scope qualifications. */
285 tmpl_spec_kind
286 current_tmpl_spec_kind (int n_class_scopes)
288 int n_template_parm_scopes = 0;
289 int seen_specialization_p = 0;
290 int innermost_specialization_p = 0;
291 cp_binding_level *b;
293 /* Scan through the template parameter scopes. */
294 for (b = current_binding_level;
295 b->kind == sk_template_parms;
296 b = b->level_chain)
298 /* If we see a specialization scope inside a parameter scope,
299 then something is wrong. That corresponds to a declaration
300 like:
302 template <class T> template <> ...
304 which is always invalid since [temp.expl.spec] forbids the
305 specialization of a class member template if the enclosing
306 class templates are not explicitly specialized as well. */
307 if (b->explicit_spec_p)
309 if (n_template_parm_scopes == 0)
310 innermost_specialization_p = 1;
311 else
312 seen_specialization_p = 1;
314 else if (seen_specialization_p == 1)
315 return tsk_invalid_member_spec;
317 ++n_template_parm_scopes;
320 /* Handle explicit instantiations. */
321 if (processing_explicit_instantiation)
323 if (n_template_parm_scopes != 0)
324 /* We've seen a template parameter list during an explicit
325 instantiation. For example:
327 template <class T> template void f(int);
329 This is erroneous. */
330 return tsk_invalid_expl_inst;
331 else
332 return tsk_expl_inst;
335 if (n_template_parm_scopes < n_class_scopes)
336 /* We've not seen enough template headers to match all the
337 specialized classes present. For example:
339 template <class T> void R<T>::S<T>::f(int);
341 This is invalid; there needs to be one set of template
342 parameters for each class. */
343 return tsk_insufficient_parms;
344 else if (n_template_parm_scopes == n_class_scopes)
345 /* We're processing a non-template declaration (even though it may
346 be a member of a template class.) For example:
348 template <class T> void S<T>::f(int);
350 The `class T' matches the `S<T>', leaving no template headers
351 corresponding to the `f'. */
352 return tsk_none;
353 else if (n_template_parm_scopes > n_class_scopes + 1)
354 /* We've got too many template headers. For example:
356 template <> template <class T> void f (T);
358 There need to be more enclosing classes. */
359 return tsk_excessive_parms;
360 else
361 /* This must be a template. It's of the form:
363 template <class T> template <class U> void S<T>::f(U);
365 This is a specialization if the innermost level was a
366 specialization; otherwise it's just a definition of the
367 template. */
368 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
371 /* Exit the current scope. */
373 void
374 finish_scope (void)
376 poplevel (0, 0, 0);
379 /* When a label goes out of scope, check to see if that label was used
380 in a valid manner, and issue any appropriate warnings or errors. */
382 static void
383 pop_label (tree label, tree old_value)
385 if (!processing_template_decl)
387 if (DECL_INITIAL (label) == NULL_TREE)
389 location_t location;
391 error ("label %q+D used but not defined", label);
392 location = input_location;
393 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
394 /* Avoid crashing later. */
395 define_label (location, DECL_NAME (label));
397 else
398 warn_for_unused_label (label);
401 SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), old_value);
404 /* At the end of a function, all labels declared within the function
405 go out of scope. BLOCK is the top-level block for the
406 function. */
409 pop_labels_1 (named_label_entry **slot, tree block)
411 struct named_label_entry *ent = *slot;
413 pop_label (ent->label_decl, NULL_TREE);
415 /* Put the labels into the "variables" of the top-level block,
416 so debugger can see them. */
417 DECL_CHAIN (ent->label_decl) = BLOCK_VARS (block);
418 BLOCK_VARS (block) = ent->label_decl;
420 named_labels->clear_slot (slot);
422 return 1;
425 static void
426 pop_labels (tree block)
428 if (named_labels)
430 named_labels->traverse<tree, pop_labels_1> (block);
431 named_labels = NULL;
435 /* At the end of a block with local labels, restore the outer definition. */
437 static void
438 pop_local_label (tree label, tree old_value)
440 struct named_label_entry dummy;
442 pop_label (label, old_value);
444 dummy.label_decl = label;
445 named_label_entry **slot = named_labels->find_slot (&dummy, NO_INSERT);
446 named_labels->clear_slot (slot);
449 /* The following two routines are used to interface to Objective-C++.
450 The binding level is purposely treated as an opaque type. */
452 void *
453 objc_get_current_scope (void)
455 return current_binding_level;
458 /* The following routine is used by the NeXT-style SJLJ exceptions;
459 variables get marked 'volatile' so as to not be clobbered by
460 _setjmp()/_longjmp() calls. All variables in the current scope,
461 as well as parent scopes up to (but not including) ENCLOSING_BLK
462 shall be thusly marked. */
464 void
465 objc_mark_locals_volatile (void *enclosing_blk)
467 cp_binding_level *scope;
469 for (scope = current_binding_level;
470 scope && scope != enclosing_blk;
471 scope = scope->level_chain)
473 tree decl;
475 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
476 objc_volatilize_decl (decl);
478 /* Do not climb up past the current function. */
479 if (scope->kind == sk_function_parms)
480 break;
484 /* Update data for defined and undefined labels when leaving a scope. */
487 poplevel_named_label_1 (named_label_entry **slot, cp_binding_level *bl)
489 named_label_entry *ent = *slot;
490 cp_binding_level *obl = bl->level_chain;
492 if (ent->binding_level == bl)
494 tree decl;
496 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
497 TREE_LISTs representing OVERLOADs, so be careful. */
498 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
499 ? DECL_CHAIN (decl)
500 : TREE_CHAIN (decl)))
501 if (decl_jump_unsafe (decl))
502 vec_safe_push (ent->bad_decls, decl);
504 ent->binding_level = obl;
505 ent->names_in_scope = obl->names;
506 switch (bl->kind)
508 case sk_try:
509 ent->in_try_scope = true;
510 break;
511 case sk_catch:
512 ent->in_catch_scope = true;
513 break;
514 case sk_omp:
515 ent->in_omp_scope = true;
516 break;
517 default:
518 break;
521 else if (ent->uses)
523 struct named_label_use_entry *use;
525 for (use = ent->uses; use ; use = use->next)
526 if (use->binding_level == bl)
528 use->binding_level = obl;
529 use->names_in_scope = obl->names;
530 if (bl->kind == sk_omp)
531 use->in_omp_scope = true;
535 return 1;
538 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
539 when errors were reported, except for -Werror-unused-but-set-*. */
540 static int unused_but_set_errorcount;
542 /* Exit a binding level.
543 Pop the level off, and restore the state of the identifier-decl mappings
544 that were in effect when this level was entered.
546 If KEEP == 1, this level had explicit declarations, so
547 and create a "block" (a BLOCK node) for the level
548 to record its declarations and subblocks for symbol table output.
550 If FUNCTIONBODY is nonzero, this level is the body of a function,
551 so create a block as if KEEP were set and also clear out all
552 label names.
554 If REVERSE is nonzero, reverse the order of decls before putting
555 them into the BLOCK. */
557 tree
558 poplevel (int keep, int reverse, int functionbody)
560 tree link;
561 /* The chain of decls was accumulated in reverse order.
562 Put it into forward order, just for cleanliness. */
563 tree decls;
564 tree subblocks;
565 tree block;
566 tree decl;
567 int leaving_for_scope;
568 scope_kind kind;
569 unsigned ix;
570 cp_label_binding *label_bind;
572 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
573 restart:
575 block = NULL_TREE;
577 gcc_assert (current_binding_level->kind != sk_class);
579 if (current_binding_level->kind == sk_cleanup)
580 functionbody = 0;
581 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
583 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
585 /* We used to use KEEP == 2 to indicate that the new block should go
586 at the beginning of the list of blocks at this binding level,
587 rather than the end. This hack is no longer used. */
588 gcc_assert (keep == 0 || keep == 1);
590 if (current_binding_level->keep)
591 keep = 1;
593 /* Any uses of undefined labels, and any defined labels, now operate
594 under constraints of next binding contour. */
595 if (cfun && !functionbody && named_labels)
596 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
597 (current_binding_level);
599 /* Get the decls in the order they were written.
600 Usually current_binding_level->names is in reverse order.
601 But parameter decls were previously put in forward order. */
603 if (reverse)
604 current_binding_level->names
605 = decls = nreverse (current_binding_level->names);
606 else
607 decls = current_binding_level->names;
609 /* If there were any declarations or structure tags in that level,
610 or if this level is a function body,
611 create a BLOCK to record them for the life of this function. */
612 block = NULL_TREE;
613 if (keep == 1 || functionbody)
614 block = make_node (BLOCK);
615 if (block != NULL_TREE)
617 BLOCK_VARS (block) = decls;
618 BLOCK_SUBBLOCKS (block) = subblocks;
621 /* In each subblock, record that this is its superior. */
622 if (keep >= 0)
623 for (link = subblocks; link; link = BLOCK_CHAIN (link))
624 BLOCK_SUPERCONTEXT (link) = block;
626 /* We still support the old for-scope rules, whereby the variables
627 in a for-init statement were in scope after the for-statement
628 ended. We only use the new rules if flag_new_for_scope is
629 nonzero. */
630 leaving_for_scope
631 = current_binding_level->kind == sk_for && flag_new_for_scope == 1;
633 /* Before we remove the declarations first check for unused variables. */
634 if ((warn_unused_variable || warn_unused_but_set_variable)
635 && current_binding_level->kind != sk_template_parms
636 && !processing_template_decl)
637 for (tree d = getdecls (); d; d = TREE_CHAIN (d))
639 /* There are cases where D itself is a TREE_LIST. See in
640 push_local_binding where the list of decls returned by
641 getdecls is built. */
642 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
643 tree type = TREE_TYPE (decl);
644 if (VAR_P (decl)
645 && (! TREE_USED (decl) || !DECL_READ_P (decl))
646 && ! DECL_IN_SYSTEM_HEADER (decl)
647 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl)
648 && type != error_mark_node
649 && (!CLASS_TYPE_P (type)
650 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
651 || lookup_attribute ("warn_unused",
652 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
654 if (! TREE_USED (decl))
655 warning (OPT_Wunused_variable, "unused variable %q+D", decl);
656 else if (DECL_CONTEXT (decl) == current_function_decl
657 // For -Wunused-but-set-variable leave references alone.
658 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
659 && errorcount == unused_but_set_errorcount)
661 warning (OPT_Wunused_but_set_variable,
662 "variable %q+D set but not used", decl);
663 unused_but_set_errorcount = errorcount;
668 /* Remove declarations for all the DECLs in this level. */
669 for (link = decls; link; link = TREE_CHAIN (link))
671 if (leaving_for_scope && VAR_P (link)
672 /* It's hard to make this ARM compatibility hack play nicely with
673 lambdas, and it really isn't necessary in C++11 mode. */
674 && cxx_dialect < cxx11
675 && DECL_NAME (link))
677 tree name = DECL_NAME (link);
678 cxx_binding *ob;
679 tree ns_binding;
681 ob = outer_binding (name,
682 IDENTIFIER_BINDING (name),
683 /*class_p=*/true);
684 if (!ob)
685 ns_binding = IDENTIFIER_NAMESPACE_VALUE (name);
686 else
687 ns_binding = NULL_TREE;
689 if (ob && ob->scope == current_binding_level->level_chain)
690 /* We have something like:
692 int i;
693 for (int i; ;);
695 and we are leaving the `for' scope. There's no reason to
696 keep the binding of the inner `i' in this case. */
697 pop_binding (name, link);
698 else if ((ob && (TREE_CODE (ob->value) == TYPE_DECL))
699 || (ns_binding && TREE_CODE (ns_binding) == TYPE_DECL))
700 /* Here, we have something like:
702 typedef int I;
704 void f () {
705 for (int I; ;);
708 We must pop the for-scope binding so we know what's a
709 type and what isn't. */
710 pop_binding (name, link);
711 else
713 /* Mark this VAR_DECL as dead so that we can tell we left it
714 there only for backward compatibility. */
715 DECL_DEAD_FOR_LOCAL (link) = 1;
717 /* Keep track of what should have happened when we
718 popped the binding. */
719 if (ob && ob->value)
721 SET_DECL_SHADOWED_FOR_VAR (link, ob->value);
722 DECL_HAS_SHADOWED_FOR_VAR_P (link) = 1;
725 /* Add it to the list of dead variables in the next
726 outermost binding to that we can remove these when we
727 leave that binding. */
728 vec_safe_push (
729 current_binding_level->level_chain->dead_vars_from_for,
730 link);
732 /* Although we don't pop the cxx_binding, we do clear
733 its SCOPE since the scope is going away now. */
734 IDENTIFIER_BINDING (name)->scope
735 = current_binding_level->level_chain;
738 else
740 tree name;
742 /* Remove the binding. */
743 decl = link;
745 if (TREE_CODE (decl) == TREE_LIST)
746 decl = TREE_VALUE (decl);
747 name = decl;
749 if (TREE_CODE (name) == OVERLOAD)
750 name = OVL_FUNCTION (name);
752 gcc_assert (DECL_P (name));
753 pop_binding (DECL_NAME (name), decl);
757 /* Remove declarations for any `for' variables from inner scopes
758 that we kept around. */
759 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->dead_vars_from_for,
760 ix, decl)
761 pop_binding (DECL_NAME (decl), decl);
763 /* Restore the IDENTIFIER_TYPE_VALUEs. */
764 for (link = current_binding_level->type_shadowed;
765 link; link = TREE_CHAIN (link))
766 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
768 /* Restore the IDENTIFIER_LABEL_VALUEs for local labels. */
769 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->shadowed_labels,
770 ix, label_bind)
771 pop_local_label (label_bind->label, label_bind->prev_value);
773 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
774 list if a `using' declaration put them there. The debugging
775 back ends won't understand OVERLOAD, so we remove them here.
776 Because the BLOCK_VARS are (temporarily) shared with
777 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
778 popped all the bindings. */
779 if (block)
781 tree* d;
783 for (d = &BLOCK_VARS (block); *d; )
785 if (TREE_CODE (*d) == TREE_LIST)
786 *d = TREE_CHAIN (*d);
787 else
788 d = &DECL_CHAIN (*d);
792 /* If the level being exited is the top level of a function,
793 check over all the labels. */
794 if (functionbody)
796 /* Since this is the top level block of a function, the vars are
797 the function's parameters. Don't leave them in the BLOCK
798 because they are found in the FUNCTION_DECL instead. */
799 BLOCK_VARS (block) = 0;
800 pop_labels (block);
803 kind = current_binding_level->kind;
804 if (kind == sk_cleanup)
806 tree stmt;
808 /* If this is a temporary binding created for a cleanup, then we'll
809 have pushed a statement list level. Pop that, create a new
810 BIND_EXPR for the block, and insert it into the stream. */
811 stmt = pop_stmt_list (current_binding_level->statement_list);
812 stmt = c_build_bind_expr (input_location, block, stmt);
813 add_stmt (stmt);
816 leave_scope ();
817 if (functionbody)
819 /* The current function is being defined, so its DECL_INITIAL
820 should be error_mark_node. */
821 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
822 DECL_INITIAL (current_function_decl) = block;
824 else if (block)
825 current_binding_level->blocks
826 = block_chainon (current_binding_level->blocks, block);
828 /* If we did not make a block for the level just exited,
829 any blocks made for inner levels
830 (since they cannot be recorded as subblocks in that level)
831 must be carried forward so they will later become subblocks
832 of something else. */
833 else if (subblocks)
834 current_binding_level->blocks
835 = block_chainon (current_binding_level->blocks, subblocks);
837 /* Each and every BLOCK node created here in `poplevel' is important
838 (e.g. for proper debugging information) so if we created one
839 earlier, mark it as "used". */
840 if (block)
841 TREE_USED (block) = 1;
843 /* All temporary bindings created for cleanups are popped silently. */
844 if (kind == sk_cleanup)
845 goto restart;
847 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
848 return block;
851 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
852 itself, calling F for each. The DATA is passed to F as well. */
854 static int
855 walk_namespaces_r (tree name_space, walk_namespaces_fn f, void* data)
857 int result = 0;
858 tree current = NAMESPACE_LEVEL (name_space)->namespaces;
860 result |= (*f) (name_space, data);
862 for (; current; current = DECL_CHAIN (current))
863 result |= walk_namespaces_r (current, f, data);
865 return result;
868 /* Walk all the namespaces, calling F for each. The DATA is passed to
869 F as well. */
872 walk_namespaces (walk_namespaces_fn f, void* data)
874 return walk_namespaces_r (global_namespace, f, data);
877 /* Call wrapup_globals_declarations for the globals in NAMESPACE. If
878 DATA is non-NULL, this is the last time we will call
879 wrapup_global_declarations for this NAMESPACE. */
882 wrapup_globals_for_namespace (tree name_space, void* data)
884 cp_binding_level *level = NAMESPACE_LEVEL (name_space);
885 vec<tree, va_gc> *statics = level->static_decls;
886 tree *vec = statics->address ();
887 int len = statics->length ();
888 int last_time = (data != 0);
890 if (last_time)
892 check_global_declarations (vec, len);
893 emit_debug_global_declarations (vec, len);
894 return 0;
897 /* Write out any globals that need to be output. */
898 return wrapup_global_declarations (vec, len);
902 /* In C++, you don't have to write `struct S' to refer to `S'; you
903 can just use `S'. We accomplish this by creating a TYPE_DECL as
904 if the user had written `typedef struct S S'. Create and return
905 the TYPE_DECL for TYPE. */
907 tree
908 create_implicit_typedef (tree name, tree type)
910 tree decl;
912 decl = build_decl (input_location, TYPE_DECL, name, type);
913 DECL_ARTIFICIAL (decl) = 1;
914 /* There are other implicit type declarations, like the one *within*
915 a class that allows you to write `S::S'. We must distinguish
916 amongst these. */
917 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
918 TYPE_NAME (type) = decl;
919 TYPE_STUB_DECL (type) = decl;
921 return decl;
924 /* Remember a local name for name-mangling purposes. */
926 static void
927 push_local_name (tree decl)
929 size_t i, nelts;
930 tree t, name;
932 timevar_start (TV_NAME_LOOKUP);
934 name = DECL_NAME (decl);
936 nelts = vec_safe_length (local_names);
937 for (i = 0; i < nelts; i++)
939 t = (*local_names)[i];
940 if (DECL_NAME (t) == name)
942 if (!DECL_LANG_SPECIFIC (decl))
943 retrofit_lang_decl (decl);
944 DECL_LANG_SPECIFIC (decl)->u.base.u2sel = 1;
945 if (DECL_DISCRIMINATOR_SET_P (t))
946 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
947 else
948 DECL_DISCRIMINATOR (decl) = 1;
950 (*local_names)[i] = decl;
951 timevar_stop (TV_NAME_LOOKUP);
952 return;
956 vec_safe_push (local_names, decl);
957 timevar_stop (TV_NAME_LOOKUP);
960 /* Subroutine of duplicate_decls: return truthvalue of whether
961 or not types of these decls match.
963 For C++, we must compare the parameter list so that `int' can match
964 `int&' in a parameter position, but `int&' is not confused with
965 `const int&'. */
968 decls_match (tree newdecl, tree olddecl)
970 int types_match;
972 if (newdecl == olddecl)
973 return 1;
975 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
976 /* If the two DECLs are not even the same kind of thing, we're not
977 interested in their types. */
978 return 0;
980 gcc_assert (DECL_P (newdecl));
982 if (TREE_CODE (newdecl) == FUNCTION_DECL)
984 tree f1 = TREE_TYPE (newdecl);
985 tree f2 = TREE_TYPE (olddecl);
986 tree p1 = TYPE_ARG_TYPES (f1);
987 tree p2 = TYPE_ARG_TYPES (f2);
988 tree r2;
990 /* Specializations of different templates are different functions
991 even if they have the same type. */
992 tree t1 = (DECL_USE_TEMPLATE (newdecl)
993 ? DECL_TI_TEMPLATE (newdecl)
994 : NULL_TREE);
995 tree t2 = (DECL_USE_TEMPLATE (olddecl)
996 ? DECL_TI_TEMPLATE (olddecl)
997 : NULL_TREE);
998 if (t1 != t2)
999 return 0;
1001 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1002 && ! (DECL_EXTERN_C_P (newdecl)
1003 && DECL_EXTERN_C_P (olddecl)))
1004 return 0;
1006 /* A new declaration doesn't match a built-in one unless it
1007 is also extern "C". */
1008 if (DECL_IS_BUILTIN (olddecl)
1009 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
1010 return 0;
1012 if (TREE_CODE (f1) != TREE_CODE (f2))
1013 return 0;
1015 /* A declaration with deduced return type should use its pre-deduction
1016 type for declaration matching. */
1017 r2 = fndecl_declared_return_type (olddecl);
1019 if (same_type_p (TREE_TYPE (f1), r2))
1021 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
1022 && (DECL_BUILT_IN (olddecl)
1023 #ifndef NO_IMPLICIT_EXTERN_C
1024 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
1025 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
1026 #endif
1029 types_match = self_promoting_args_p (p1);
1030 if (p1 == void_list_node)
1031 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1033 #ifndef NO_IMPLICIT_EXTERN_C
1034 else if (!prototype_p (f1)
1035 && (DECL_EXTERN_C_P (olddecl)
1036 && DECL_IN_SYSTEM_HEADER (olddecl)
1037 && !DECL_CLASS_SCOPE_P (olddecl))
1038 && (DECL_EXTERN_C_P (newdecl)
1039 && DECL_IN_SYSTEM_HEADER (newdecl)
1040 && !DECL_CLASS_SCOPE_P (newdecl)))
1042 types_match = self_promoting_args_p (p2);
1043 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1045 #endif
1046 else
1047 types_match =
1048 compparms (p1, p2)
1049 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
1050 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
1051 || comp_type_attributes (TREE_TYPE (newdecl),
1052 TREE_TYPE (olddecl)) != 0);
1054 else
1055 types_match = 0;
1057 /* The decls dont match if they correspond to two different versions
1058 of the same function. Disallow extern "C" functions to be
1059 versions for now. */
1060 if (types_match
1061 && !DECL_EXTERN_C_P (newdecl)
1062 && !DECL_EXTERN_C_P (olddecl)
1063 && targetm.target_option.function_versions (newdecl, olddecl))
1065 /* Mark functions as versions if necessary. Modify the mangled decl
1066 name if necessary. */
1067 if (DECL_FUNCTION_VERSIONED (newdecl)
1068 && DECL_FUNCTION_VERSIONED (olddecl))
1069 return 0;
1070 if (!DECL_FUNCTION_VERSIONED (newdecl))
1072 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1073 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1074 mangle_decl (newdecl);
1076 if (!DECL_FUNCTION_VERSIONED (olddecl))
1078 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1079 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1080 mangle_decl (olddecl);
1082 cgraph_node::record_function_versions (olddecl, newdecl);
1083 return 0;
1086 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1088 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl))
1089 != TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)))
1090 return 0;
1092 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1093 DECL_TEMPLATE_PARMS (olddecl)))
1094 return 0;
1096 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1097 types_match = same_type_p (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl)),
1098 TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl)));
1099 else
1100 types_match = decls_match (DECL_TEMPLATE_RESULT (olddecl),
1101 DECL_TEMPLATE_RESULT (newdecl));
1103 else
1105 /* Need to check scope for variable declaration (VAR_DECL).
1106 For typedef (TYPE_DECL), scope is ignored. */
1107 if (VAR_P (newdecl)
1108 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1109 /* [dcl.link]
1110 Two declarations for an object with C language linkage
1111 with the same name (ignoring the namespace that qualify
1112 it) that appear in different namespace scopes refer to
1113 the same object. */
1114 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1115 return 0;
1117 if (TREE_TYPE (newdecl) == error_mark_node)
1118 types_match = TREE_TYPE (olddecl) == error_mark_node;
1119 else if (TREE_TYPE (olddecl) == NULL_TREE)
1120 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1121 else if (TREE_TYPE (newdecl) == NULL_TREE)
1122 types_match = 0;
1123 else
1124 types_match = comptypes (TREE_TYPE (newdecl),
1125 TREE_TYPE (olddecl),
1126 COMPARE_REDECLARATION);
1129 return types_match;
1132 /* If NEWDECL is `static' and an `extern' was seen previously,
1133 warn about it. OLDDECL is the previous declaration.
1135 Note that this does not apply to the C++ case of declaring
1136 a variable `extern const' and then later `const'.
1138 Don't complain about built-in functions, since they are beyond
1139 the user's control. */
1141 void
1142 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1144 if (TREE_CODE (newdecl) == TYPE_DECL
1145 || TREE_CODE (newdecl) == TEMPLATE_DECL
1146 || TREE_CODE (newdecl) == CONST_DECL
1147 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1148 return;
1150 /* Don't get confused by static member functions; that's a different
1151 use of `static'. */
1152 if (TREE_CODE (newdecl) == FUNCTION_DECL
1153 && DECL_STATIC_FUNCTION_P (newdecl))
1154 return;
1156 /* If the old declaration was `static', or the new one isn't, then
1157 everything is OK. */
1158 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1159 return;
1161 /* It's OK to declare a builtin function as `static'. */
1162 if (TREE_CODE (olddecl) == FUNCTION_DECL
1163 && DECL_ARTIFICIAL (olddecl))
1164 return;
1166 if (permerror (input_location,
1167 "%qD was declared %<extern%> and later %<static%>", newdecl))
1168 inform (input_location, "previous declaration of %q+D", olddecl);
1171 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1172 function templates. If their exception specifications do not
1173 match, issue a diagnostic. */
1175 static void
1176 check_redeclaration_exception_specification (tree new_decl,
1177 tree old_decl)
1179 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1180 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1182 /* Two default specs are equivalent, don't force evaluation. */
1183 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1184 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1185 return;
1187 maybe_instantiate_noexcept (new_decl);
1188 maybe_instantiate_noexcept (old_decl);
1189 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1190 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1192 /* [except.spec]
1194 If any declaration of a function has an exception-specification,
1195 all declarations, including the definition and an explicit
1196 specialization, of that function shall have an
1197 exception-specification with the same set of type-ids. */
1198 if ((pedantic || ! DECL_IN_SYSTEM_HEADER (old_decl))
1199 && ! DECL_IS_BUILTIN (old_decl)
1200 && flag_exceptions
1201 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1203 error ("declaration of %qF has a different exception specifier",
1204 new_decl);
1205 error ("from previous declaration %q+F", old_decl);
1209 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1210 Otherwise issue diagnostics. */
1212 static bool
1213 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1215 old_decl = STRIP_TEMPLATE (old_decl);
1216 new_decl = STRIP_TEMPLATE (new_decl);
1217 if (!VAR_OR_FUNCTION_DECL_P (old_decl)
1218 || !VAR_OR_FUNCTION_DECL_P (new_decl))
1219 return true;
1220 if (DECL_DECLARED_CONSTEXPR_P (old_decl)
1221 == DECL_DECLARED_CONSTEXPR_P (new_decl))
1222 return true;
1223 if (TREE_CODE (old_decl) == FUNCTION_DECL)
1225 if (DECL_BUILT_IN (old_decl))
1227 /* Hide a built-in declaration. */
1228 DECL_DECLARED_CONSTEXPR_P (old_decl)
1229 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1230 return true;
1232 /* 7.1.5 [dcl.constexpr]
1233 Note: An explicit specialization can differ from the template
1234 declaration with respect to the constexpr specifier. */
1235 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl)
1236 && DECL_TEMPLATE_SPECIALIZATION (new_decl))
1237 return true;
1239 error ("redeclaration %qD differs in %<constexpr%>", new_decl);
1240 error ("from previous declaration %q+D", old_decl);
1241 return false;
1243 return true;
1246 /* DECL is a redeclaration of a function or function template. If
1247 it does have default arguments issue a diagnostic. Note: this
1248 function is used to enforce the requirements in C++11 8.3.6 about
1249 no default arguments in redeclarations. */
1251 static void
1252 check_redeclaration_no_default_args (tree decl)
1254 gcc_assert (DECL_DECLARES_FUNCTION_P (decl));
1256 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
1257 t && t != void_list_node; t = TREE_CHAIN (t))
1258 if (TREE_PURPOSE (t))
1260 permerror (input_location,
1261 "redeclaration of %q#D may not have default "
1262 "arguments", decl);
1263 return;
1267 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1268 && lookup_attribute ("gnu_inline", \
1269 DECL_ATTRIBUTES (fn)))
1271 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1272 If the redeclaration is invalid, a diagnostic is issued, and the
1273 error_mark_node is returned. Otherwise, OLDDECL is returned.
1275 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1276 returned.
1278 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1280 tree
1281 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1283 unsigned olddecl_uid = DECL_UID (olddecl);
1284 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1285 int new_defines_function = 0;
1286 tree new_template_info;
1288 if (newdecl == olddecl)
1289 return olddecl;
1291 types_match = decls_match (newdecl, olddecl);
1293 /* If either the type of the new decl or the type of the old decl is an
1294 error_mark_node, then that implies that we have already issued an
1295 error (earlier) for some bogus type specification, and in that case,
1296 it is rather pointless to harass the user with yet more error message
1297 about the same declaration, so just pretend the types match here. */
1298 if (TREE_TYPE (newdecl) == error_mark_node
1299 || TREE_TYPE (olddecl) == error_mark_node)
1300 return error_mark_node;
1302 if (UDLIT_OPER_P (DECL_NAME (newdecl))
1303 && UDLIT_OPER_P (DECL_NAME (olddecl)))
1305 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1306 && TREE_CODE (olddecl) != TEMPLATE_DECL
1307 && check_raw_literal_operator (olddecl))
1308 error ("literal operator template %q+D conflicts with"
1309 " raw literal operator %qD", newdecl, olddecl);
1310 else if (TREE_CODE (newdecl) != TEMPLATE_DECL
1311 && TREE_CODE (olddecl) == TEMPLATE_DECL
1312 && check_raw_literal_operator (newdecl))
1313 error ("raw literal operator %q+D conflicts with"
1314 " literal operator template %qD", newdecl, olddecl);
1317 if (DECL_P (olddecl)
1318 && TREE_CODE (newdecl) == FUNCTION_DECL
1319 && TREE_CODE (olddecl) == FUNCTION_DECL
1320 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1322 if (DECL_DECLARED_INLINE_P (newdecl)
1323 && DECL_UNINLINABLE (newdecl)
1324 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1325 /* Already warned elsewhere. */;
1326 else if (DECL_DECLARED_INLINE_P (olddecl)
1327 && DECL_UNINLINABLE (olddecl)
1328 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1329 /* Already warned. */;
1330 else if (DECL_DECLARED_INLINE_P (newdecl)
1331 && DECL_UNINLINABLE (olddecl)
1332 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1334 if (warning (OPT_Wattributes, "function %q+D redeclared as inline",
1335 newdecl))
1336 inform (DECL_SOURCE_LOCATION (olddecl),
1337 "previous declaration of %qD with attribute noinline",
1338 olddecl);
1340 else if (DECL_DECLARED_INLINE_P (olddecl)
1341 && DECL_UNINLINABLE (newdecl)
1342 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1344 if (warning (OPT_Wattributes, "function %q+D redeclared with "
1345 "attribute noinline", newdecl))
1346 inform (DECL_SOURCE_LOCATION (olddecl),
1347 "previous declaration of %qD was inline",
1348 olddecl);
1352 /* Check for redeclaration and other discrepancies. */
1353 if (TREE_CODE (olddecl) == FUNCTION_DECL
1354 && DECL_ARTIFICIAL (olddecl))
1356 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1357 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1359 /* Avoid warnings redeclaring built-ins which have not been
1360 explicitly declared. */
1361 if (DECL_ANTICIPATED (olddecl))
1362 return NULL_TREE;
1364 /* If you declare a built-in or predefined function name as static,
1365 the old definition is overridden, but optionally warn this was a
1366 bad choice of name. */
1367 if (! TREE_PUBLIC (newdecl))
1369 warning (OPT_Wshadow,
1370 DECL_BUILT_IN (olddecl)
1371 ? G_("shadowing built-in function %q#D")
1372 : G_("shadowing library function %q#D"), olddecl);
1373 /* Discard the old built-in function. */
1374 return NULL_TREE;
1376 /* If the built-in is not ansi, then programs can override
1377 it even globally without an error. */
1378 else if (! DECL_BUILT_IN (olddecl))
1379 warning (0, "library function %q#D redeclared as non-function %q#D",
1380 olddecl, newdecl);
1381 else
1382 error ("declaration of %q#D conflicts with built-in "
1383 "declaration %q#D", newdecl, olddecl);
1384 return NULL_TREE;
1386 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1388 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1389 error_at (DECL_SOURCE_LOCATION (newdecl),
1390 "redeclaration of %<pragma omp declare reduction%>");
1391 inform (DECL_SOURCE_LOCATION (olddecl),
1392 "previous %<pragma omp declare reduction%> declaration");
1393 return error_mark_node;
1395 else if (!types_match)
1397 /* Avoid warnings redeclaring built-ins which have not been
1398 explicitly declared. */
1399 if (DECL_ANTICIPATED (olddecl))
1401 /* Deal with fileptr_type_node. FILE type is not known
1402 at the time we create the builtins. */
1403 tree t1, t2;
1405 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1406 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1407 t1 || t2;
1408 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1409 if (!t1 || !t2)
1410 break;
1411 else if (TREE_VALUE (t2) == fileptr_type_node)
1413 tree t = TREE_VALUE (t1);
1415 if (TYPE_PTR_P (t)
1416 && TYPE_IDENTIFIER (TREE_TYPE (t))
1417 == get_identifier ("FILE")
1418 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1420 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1422 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1423 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1424 types_match = decls_match (newdecl, olddecl);
1425 if (types_match)
1426 return duplicate_decls (newdecl, olddecl,
1427 newdecl_is_friend);
1428 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1431 else if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1432 break;
1434 else if ((DECL_EXTERN_C_P (newdecl)
1435 && DECL_EXTERN_C_P (olddecl))
1436 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1437 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1439 /* A near match; override the builtin. */
1441 if (TREE_PUBLIC (newdecl))
1442 warning (0, "new declaration %q#D ambiguates built-in "
1443 "declaration %q#D", newdecl, olddecl);
1444 else
1445 warning (OPT_Wshadow,
1446 DECL_BUILT_IN (olddecl)
1447 ? G_("shadowing built-in function %q#D")
1448 : G_("shadowing library function %q#D"), olddecl);
1450 else
1451 /* Discard the old built-in function. */
1452 return NULL_TREE;
1454 /* Replace the old RTL to avoid problems with inlining. */
1455 COPY_DECL_RTL (newdecl, olddecl);
1457 /* Even if the types match, prefer the new declarations type for
1458 built-ins which have not been explicitly declared, for
1459 exception lists, etc... */
1460 else if (DECL_IS_BUILTIN (olddecl))
1462 tree type = TREE_TYPE (newdecl);
1463 tree attribs = (*targetm.merge_type_attributes)
1464 (TREE_TYPE (olddecl), type);
1466 type = cp_build_type_attribute_variant (type, attribs);
1467 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1470 /* If a function is explicitly declared "throw ()", propagate that to
1471 the corresponding builtin. */
1472 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1473 && DECL_ANTICIPATED (olddecl)
1474 && TREE_NOTHROW (newdecl)
1475 && !TREE_NOTHROW (olddecl))
1477 enum built_in_function fncode = DECL_FUNCTION_CODE (olddecl);
1478 tree tmpdecl = builtin_decl_explicit (fncode);
1479 if (tmpdecl && tmpdecl != olddecl && types_match)
1480 TREE_NOTHROW (tmpdecl) = 1;
1483 /* Whether or not the builtin can throw exceptions has no
1484 bearing on this declarator. */
1485 TREE_NOTHROW (olddecl) = 0;
1487 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1489 /* If a builtin function is redeclared as `static', merge
1490 the declarations, but make the original one static. */
1491 DECL_THIS_STATIC (olddecl) = 1;
1492 TREE_PUBLIC (olddecl) = 0;
1494 /* Make the old declaration consistent with the new one so
1495 that all remnants of the builtin-ness of this function
1496 will be banished. */
1497 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1498 COPY_DECL_RTL (newdecl, olddecl);
1501 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1503 /* C++ Standard, 3.3, clause 4:
1504 "[Note: a namespace name or a class template name must be unique
1505 in its declarative region (7.3.2, clause 14). ]" */
1506 if (TREE_CODE (olddecl) != NAMESPACE_DECL
1507 && TREE_CODE (newdecl) != NAMESPACE_DECL
1508 && (TREE_CODE (olddecl) != TEMPLATE_DECL
1509 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) != TYPE_DECL)
1510 && (TREE_CODE (newdecl) != TEMPLATE_DECL
1511 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != TYPE_DECL))
1513 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1514 && TREE_CODE (newdecl) != TYPE_DECL)
1515 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1516 && TREE_CODE (olddecl) != TYPE_DECL))
1518 /* We do nothing special here, because C++ does such nasty
1519 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1520 get shadowed, and know that if we need to find a TYPE_DECL
1521 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1522 slot of the identifier. */
1523 return NULL_TREE;
1526 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1527 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1528 || (TREE_CODE (olddecl) == FUNCTION_DECL
1529 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1530 return NULL_TREE;
1533 error ("%q#D redeclared as different kind of symbol", newdecl);
1534 if (TREE_CODE (olddecl) == TREE_LIST)
1535 olddecl = TREE_VALUE (olddecl);
1536 inform (DECL_SOURCE_LOCATION (olddecl),
1537 "previous declaration %q#D", olddecl);
1539 return error_mark_node;
1541 else if (!types_match)
1543 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1544 /* These are certainly not duplicate declarations; they're
1545 from different scopes. */
1546 return NULL_TREE;
1548 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1550 /* The name of a class template may not be declared to refer to
1551 any other template, class, function, object, namespace, value,
1552 or type in the same scope. */
1553 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1554 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1556 error ("conflicting declaration of template %q#D", newdecl);
1557 inform (DECL_SOURCE_LOCATION (olddecl),
1558 "previous declaration %q#D", olddecl);
1559 return error_mark_node;
1561 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1562 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1563 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1564 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1565 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1566 DECL_TEMPLATE_PARMS (olddecl))
1567 /* Template functions can be disambiguated by
1568 return type. */
1569 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1570 TREE_TYPE (TREE_TYPE (olddecl))))
1572 error ("ambiguating new declaration %q#D", newdecl);
1573 inform (DECL_SOURCE_LOCATION (olddecl),
1574 "old declaration %q#D", olddecl);
1576 return NULL_TREE;
1578 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1580 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1582 error ("conflicting declaration of C function %q#D",
1583 newdecl);
1584 inform (DECL_SOURCE_LOCATION (olddecl),
1585 "previous declaration %q#D", olddecl);
1586 return NULL_TREE;
1588 /* For function versions, params and types match, but they
1589 are not ambiguous. */
1590 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1591 && !DECL_FUNCTION_VERSIONED (olddecl))
1592 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1593 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1595 error ("ambiguating new declaration of %q#D", newdecl);
1596 inform (DECL_SOURCE_LOCATION (olddecl),
1597 "old declaration %q#D", olddecl);
1598 return error_mark_node;
1600 else
1601 return NULL_TREE;
1603 else
1605 error ("conflicting declaration %q#D", newdecl);
1606 inform (DECL_SOURCE_LOCATION (olddecl),
1607 "previous declaration as %q#D", olddecl);
1608 return error_mark_node;
1611 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1612 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1613 && (!DECL_TEMPLATE_INFO (newdecl)
1614 || (DECL_TI_TEMPLATE (newdecl)
1615 != DECL_TI_TEMPLATE (olddecl))))
1616 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1617 && (!DECL_TEMPLATE_INFO (olddecl)
1618 || (DECL_TI_TEMPLATE (olddecl)
1619 != DECL_TI_TEMPLATE (newdecl))))))
1620 /* It's OK to have a template specialization and a non-template
1621 with the same type, or to have specializations of two
1622 different templates with the same type. Note that if one is a
1623 specialization, and the other is an instantiation of the same
1624 template, that we do not exit at this point. That situation
1625 can occur if we instantiate a template class, and then
1626 specialize one of its methods. This situation is valid, but
1627 the declarations must be merged in the usual way. */
1628 return NULL_TREE;
1629 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1630 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1631 && !DECL_USE_TEMPLATE (newdecl))
1632 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1633 && !DECL_USE_TEMPLATE (olddecl))))
1634 /* One of the declarations is a template instantiation, and the
1635 other is not a template at all. That's OK. */
1636 return NULL_TREE;
1637 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1639 /* In [namespace.alias] we have:
1641 In a declarative region, a namespace-alias-definition can be
1642 used to redefine a namespace-alias declared in that declarative
1643 region to refer only to the namespace to which it already
1644 refers.
1646 Therefore, if we encounter a second alias directive for the same
1647 alias, we can just ignore the second directive. */
1648 if (DECL_NAMESPACE_ALIAS (newdecl)
1649 && (DECL_NAMESPACE_ALIAS (newdecl)
1650 == DECL_NAMESPACE_ALIAS (olddecl)))
1651 return olddecl;
1652 /* [namespace.alias]
1654 A namespace-name or namespace-alias shall not be declared as
1655 the name of any other entity in the same declarative region.
1656 A namespace-name defined at global scope shall not be
1657 declared as the name of any other entity in any global scope
1658 of the program. */
1659 error ("conflicting declaration of namespace %qD", newdecl);
1660 inform (DECL_SOURCE_LOCATION (olddecl),
1661 "previous declaration of namespace %qD here", olddecl);
1662 return error_mark_node;
1664 else
1666 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1667 if (errmsg)
1669 error_at (DECL_SOURCE_LOCATION (newdecl), errmsg, newdecl);
1670 if (DECL_NAME (olddecl) != NULL_TREE)
1671 inform (input_location,
1672 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1673 ? G_("%q+#D previously defined here")
1674 : G_("%q+#D previously declared here"), olddecl);
1675 return error_mark_node;
1677 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1678 && DECL_INITIAL (olddecl) != NULL_TREE
1679 && !prototype_p (TREE_TYPE (olddecl))
1680 && prototype_p (TREE_TYPE (newdecl)))
1682 /* Prototype decl follows defn w/o prototype. */
1683 if (warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1684 "prototype specified for %q#D", newdecl))
1685 inform (DECL_SOURCE_LOCATION (olddecl),
1686 "previous non-prototype definition here");
1688 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1689 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1691 /* [dcl.link]
1692 If two declarations of the same function or object
1693 specify different linkage-specifications ..., the program
1694 is ill-formed.... Except for functions with C++ linkage,
1695 a function declaration without a linkage specification
1696 shall not precede the first linkage specification for
1697 that function. A function can be declared without a
1698 linkage specification after an explicit linkage
1699 specification has been seen; the linkage explicitly
1700 specified in the earlier declaration is not affected by
1701 such a function declaration.
1703 DR 563 raises the question why the restrictions on
1704 functions should not also apply to objects. Older
1705 versions of G++ silently ignore the linkage-specification
1706 for this example:
1708 namespace N {
1709 extern int i;
1710 extern "C" int i;
1713 which is clearly wrong. Therefore, we now treat objects
1714 like functions. */
1715 if (current_lang_depth () == 0)
1717 /* There is no explicit linkage-specification, so we use
1718 the linkage from the previous declaration. */
1719 if (!DECL_LANG_SPECIFIC (newdecl))
1720 retrofit_lang_decl (newdecl);
1721 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1723 else
1725 error ("conflicting declaration of %q#D with %qL linkage",
1726 newdecl, DECL_LANGUAGE (newdecl));
1727 inform (DECL_SOURCE_LOCATION (olddecl),
1728 "previous declaration with %qL linkage",
1729 DECL_LANGUAGE (olddecl));
1733 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1735 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1737 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1738 if (DECL_FUNCTION_MEMBER_P (olddecl)
1739 && (/* grokfndecl passes member function templates too
1740 as FUNCTION_DECLs. */
1741 DECL_TEMPLATE_INFO (olddecl)
1742 /* C++11 8.3.6/6.
1743 Default arguments for a member function of a class
1744 template shall be specified on the initial declaration
1745 of the member function within the class template. */
1746 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
1747 check_redeclaration_no_default_args (newdecl);
1748 else
1750 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1751 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1752 int i = 1;
1754 for (; t1 && t1 != void_list_node;
1755 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1756 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1758 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
1759 TREE_PURPOSE (t2)))
1761 if (permerror (input_location,
1762 "default argument given for parameter "
1763 "%d of %q#D", i, newdecl))
1764 inform (DECL_SOURCE_LOCATION (olddecl),
1765 "previous specification in %q#D here",
1766 olddecl);
1768 else
1770 error ("default argument given for parameter %d "
1771 "of %q#D", i, newdecl);
1772 inform (DECL_SOURCE_LOCATION (olddecl),
1773 "previous specification in %q#D here",
1774 olddecl);
1781 /* Do not merge an implicit typedef with an explicit one. In:
1783 class A;
1785 typedef class A A __attribute__ ((foo));
1787 the attribute should apply only to the typedef. */
1788 if (TREE_CODE (olddecl) == TYPE_DECL
1789 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1790 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1791 return NULL_TREE;
1793 /* If new decl is `static' and an `extern' was seen previously,
1794 warn about it. */
1795 warn_extern_redeclared_static (newdecl, olddecl);
1797 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1798 return error_mark_node;
1800 /* We have committed to returning 1 at this point. */
1801 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1803 /* Now that functions must hold information normally held
1804 by field decls, there is extra work to do so that
1805 declaration information does not get destroyed during
1806 definition. */
1807 if (DECL_VINDEX (olddecl))
1808 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1809 if (DECL_CONTEXT (olddecl))
1810 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1811 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1812 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1813 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1814 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1815 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1816 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1817 if (DECL_OVERLOADED_OPERATOR_P (olddecl) != ERROR_MARK)
1818 SET_OVERLOADED_OPERATOR_CODE
1819 (newdecl, DECL_OVERLOADED_OPERATOR_P (olddecl));
1820 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1822 /* Optionally warn about more than one declaration for the same
1823 name, but don't warn about a function declaration followed by a
1824 definition. */
1825 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1826 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1827 /* Don't warn about extern decl followed by definition. */
1828 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1829 /* Don't warn about friends, let add_friend take care of it. */
1830 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1831 /* Don't warn about declaration followed by specialization. */
1832 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1833 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1835 if (warning (OPT_Wredundant_decls,
1836 "redundant redeclaration of %qD in same scope",
1837 newdecl))
1838 inform (DECL_SOURCE_LOCATION (olddecl),
1839 "previous declaration of %qD", olddecl);
1842 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1843 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1845 if (DECL_DELETED_FN (newdecl))
1847 error ("deleted definition of %qD", newdecl);
1848 inform (DECL_SOURCE_LOCATION (olddecl),
1849 "previous declaration of %qD", olddecl);
1851 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
1855 /* Deal with C++: must preserve virtual function table size. */
1856 if (TREE_CODE (olddecl) == TYPE_DECL)
1858 tree newtype = TREE_TYPE (newdecl);
1859 tree oldtype = TREE_TYPE (olddecl);
1861 if (newtype != error_mark_node && oldtype != error_mark_node
1862 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1863 CLASSTYPE_FRIEND_CLASSES (newtype)
1864 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1866 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1869 /* Copy all the DECL_... slots specified in the new decl
1870 except for any that we copy here from the old type. */
1871 DECL_ATTRIBUTES (newdecl)
1872 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1874 if (DECL_DECLARES_FUNCTION_P (olddecl) && DECL_DECLARES_FUNCTION_P (newdecl))
1876 olddecl_friend = DECL_FRIEND_P (olddecl);
1877 hidden_friend = (DECL_ANTICIPATED (olddecl)
1878 && DECL_HIDDEN_FRIEND_P (olddecl)
1879 && newdecl_is_friend);
1880 if (!hidden_friend)
1882 DECL_ANTICIPATED (olddecl) = 0;
1883 DECL_HIDDEN_FRIEND_P (olddecl) = 0;
1887 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1889 tree old_result;
1890 tree new_result;
1891 old_result = DECL_TEMPLATE_RESULT (olddecl);
1892 new_result = DECL_TEMPLATE_RESULT (newdecl);
1893 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
1894 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
1895 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
1896 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
1898 DECL_ATTRIBUTES (old_result)
1899 = (*targetm.merge_decl_attributes) (old_result, new_result);
1901 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1903 /* Per C++11 8.3.6/4, default arguments cannot be added in later
1904 declarations of a function template. */
1905 check_redeclaration_no_default_args (newdecl);
1907 check_default_args (newdecl);
1909 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
1910 && DECL_INITIAL (new_result))
1912 if (DECL_INITIAL (old_result))
1913 DECL_UNINLINABLE (old_result) = 1;
1914 else
1915 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
1916 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
1917 DECL_NOT_REALLY_EXTERN (old_result)
1918 = DECL_NOT_REALLY_EXTERN (new_result);
1919 DECL_INTERFACE_KNOWN (old_result)
1920 = DECL_INTERFACE_KNOWN (new_result);
1921 DECL_DECLARED_INLINE_P (old_result)
1922 = DECL_DECLARED_INLINE_P (new_result);
1923 DECL_DISREGARD_INLINE_LIMITS (old_result)
1924 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
1927 else
1929 DECL_DECLARED_INLINE_P (old_result)
1930 |= DECL_DECLARED_INLINE_P (new_result);
1931 DECL_DISREGARD_INLINE_LIMITS (old_result)
1932 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
1933 check_redeclaration_exception_specification (newdecl, olddecl);
1937 /* If the new declaration is a definition, update the file and
1938 line information on the declaration, and also make
1939 the old declaration the same definition. */
1940 if (DECL_INITIAL (new_result) != NULL_TREE)
1942 DECL_SOURCE_LOCATION (olddecl)
1943 = DECL_SOURCE_LOCATION (old_result)
1944 = DECL_SOURCE_LOCATION (newdecl);
1945 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
1946 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1948 tree parm;
1949 DECL_ARGUMENTS (old_result)
1950 = DECL_ARGUMENTS (new_result);
1951 for (parm = DECL_ARGUMENTS (old_result); parm;
1952 parm = DECL_CHAIN (parm))
1953 DECL_CONTEXT (parm) = old_result;
1957 return olddecl;
1960 if (types_match)
1962 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1963 check_redeclaration_exception_specification (newdecl, olddecl);
1965 /* Automatically handles default parameters. */
1966 tree oldtype = TREE_TYPE (olddecl);
1967 tree newtype;
1969 /* For typedefs use the old type, as the new type's DECL_NAME points
1970 at newdecl, which will be ggc_freed. */
1971 if (TREE_CODE (newdecl) == TYPE_DECL)
1972 newtype = oldtype;
1973 else
1974 /* Merge the data types specified in the two decls. */
1975 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1977 if (VAR_P (newdecl))
1979 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
1980 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
1981 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
1982 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
1983 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
1984 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
1986 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
1987 if (DECL_LANG_SPECIFIC (olddecl)
1988 && CP_DECL_THREADPRIVATE_P (olddecl))
1990 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
1991 if (!DECL_LANG_SPECIFIC (newdecl))
1992 retrofit_lang_decl (newdecl);
1994 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
1998 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2000 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2001 check_default_args (newdecl);
2003 /* Lay the type out, unless already done. */
2004 if (! same_type_p (newtype, oldtype)
2005 && TREE_TYPE (newdecl) != error_mark_node
2006 && !(processing_template_decl && uses_template_parms (newdecl)))
2007 layout_type (TREE_TYPE (newdecl));
2009 if ((VAR_P (newdecl)
2010 || TREE_CODE (newdecl) == PARM_DECL
2011 || TREE_CODE (newdecl) == RESULT_DECL
2012 || TREE_CODE (newdecl) == FIELD_DECL
2013 || TREE_CODE (newdecl) == TYPE_DECL)
2014 && !(processing_template_decl && uses_template_parms (newdecl)))
2015 layout_decl (newdecl, 0);
2017 /* Merge the type qualifiers. */
2018 if (TREE_READONLY (newdecl))
2019 TREE_READONLY (olddecl) = 1;
2020 if (TREE_THIS_VOLATILE (newdecl))
2021 TREE_THIS_VOLATILE (olddecl) = 1;
2022 if (TREE_NOTHROW (newdecl))
2023 TREE_NOTHROW (olddecl) = 1;
2025 /* Merge deprecatedness. */
2026 if (TREE_DEPRECATED (newdecl))
2027 TREE_DEPRECATED (olddecl) = 1;
2029 /* Preserve function specific target and optimization options */
2030 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2032 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2033 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2034 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2035 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2037 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2038 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2039 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2040 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2043 /* Merge the initialization information. */
2044 if (DECL_INITIAL (newdecl) == NULL_TREE
2045 && DECL_INITIAL (olddecl) != NULL_TREE)
2047 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2048 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2049 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2051 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2052 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2056 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2058 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2059 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2060 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2061 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2062 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
2063 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2064 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2065 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2066 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2067 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2068 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2069 /* Keep the old RTL. */
2070 COPY_DECL_RTL (olddecl, newdecl);
2072 else if (VAR_P (newdecl)
2073 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2075 /* Keep the old RTL. We cannot keep the old RTL if the old
2076 declaration was for an incomplete object and the new
2077 declaration is not since many attributes of the RTL will
2078 change. */
2079 COPY_DECL_RTL (olddecl, newdecl);
2082 /* If cannot merge, then use the new type and qualifiers,
2083 and don't preserve the old rtl. */
2084 else
2086 /* Clean out any memory we had of the old declaration. */
2087 tree oldstatic = value_member (olddecl, static_aggregates);
2088 if (oldstatic)
2089 TREE_VALUE (oldstatic) = error_mark_node;
2091 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2092 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2093 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2094 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2097 /* Merge the storage class information. */
2098 merge_weak (newdecl, olddecl);
2100 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2101 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2102 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2103 if (! DECL_EXTERNAL (olddecl))
2104 DECL_EXTERNAL (newdecl) = 0;
2106 new_template_info = NULL_TREE;
2107 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2109 bool new_redefines_gnu_inline = false;
2111 if (new_defines_function
2112 && ((DECL_INTERFACE_KNOWN (olddecl)
2113 && TREE_CODE (olddecl) == FUNCTION_DECL)
2114 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2115 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2116 == FUNCTION_DECL))))
2118 tree fn = olddecl;
2120 if (TREE_CODE (fn) == TEMPLATE_DECL)
2121 fn = DECL_TEMPLATE_RESULT (olddecl);
2123 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2126 if (!new_redefines_gnu_inline)
2128 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2129 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2130 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2132 DECL_TEMPLATE_INSTANTIATED (newdecl)
2133 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2134 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2136 /* If the OLDDECL is an instantiation and/or specialization,
2137 then the NEWDECL must be too. But, it may not yet be marked
2138 as such if the caller has created NEWDECL, but has not yet
2139 figured out that it is a redeclaration. */
2140 if (!DECL_USE_TEMPLATE (newdecl))
2141 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2143 /* Don't really know how much of the language-specific
2144 values we should copy from old to new. */
2145 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2146 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
2147 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2148 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2150 if (LANG_DECL_HAS_MIN (newdecl))
2152 DECL_LANG_SPECIFIC (newdecl)->u.min.u2 =
2153 DECL_LANG_SPECIFIC (olddecl)->u.min.u2;
2154 if (DECL_TEMPLATE_INFO (newdecl))
2156 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2157 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2158 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2159 /* Remember the presence of explicit specialization args. */
2160 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2161 = TINFO_USED_TEMPLATE_ID (new_template_info);
2163 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2165 /* Only functions have these fields. */
2166 if (DECL_DECLARES_FUNCTION_P (newdecl))
2168 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2169 DECL_BEFRIENDING_CLASSES (newdecl)
2170 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2171 DECL_BEFRIENDING_CLASSES (olddecl));
2172 /* DECL_THUNKS is only valid for virtual functions,
2173 otherwise it is a DECL_FRIEND_CONTEXT. */
2174 if (DECL_VIRTUAL_P (newdecl))
2175 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2177 /* Only variables have this field. */
2178 else if (VAR_P (newdecl)
2179 && VAR_HAD_UNKNOWN_BOUND (olddecl))
2180 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2183 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2185 tree parm;
2187 /* Merge parameter attributes. */
2188 tree oldarg, newarg;
2189 for (oldarg = DECL_ARGUMENTS(olddecl),
2190 newarg = DECL_ARGUMENTS(newdecl);
2191 oldarg && newarg;
2192 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg)) {
2193 DECL_ATTRIBUTES (newarg)
2194 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2195 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2198 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2199 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2201 /* If newdecl is not a specialization, then it is not a
2202 template-related function at all. And that means that we
2203 should have exited above, returning 0. */
2204 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2206 if (DECL_ODR_USED (olddecl))
2207 /* From [temp.expl.spec]:
2209 If a template, a member template or the member of a class
2210 template is explicitly specialized then that
2211 specialization shall be declared before the first use of
2212 that specialization that would cause an implicit
2213 instantiation to take place, in every translation unit in
2214 which such a use occurs. */
2215 error ("explicit specialization of %qD after first use",
2216 olddecl);
2218 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2219 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2220 && DECL_DECLARED_INLINE_P (newdecl));
2222 /* Don't propagate visibility from the template to the
2223 specialization here. We'll do that in determine_visibility if
2224 appropriate. */
2225 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2227 /* [temp.expl.spec/14] We don't inline explicit specialization
2228 just because the primary template says so. */
2230 /* But still keep DECL_DISREGARD_INLINE_LIMITS in sync with
2231 the always_inline attribute. */
2232 if (DECL_DISREGARD_INLINE_LIMITS (olddecl)
2233 && !DECL_DISREGARD_INLINE_LIMITS (newdecl))
2235 if (DECL_DECLARED_INLINE_P (newdecl))
2236 DECL_DISREGARD_INLINE_LIMITS (newdecl) = true;
2237 else
2238 DECL_ATTRIBUTES (newdecl)
2239 = remove_attribute ("always_inline",
2240 DECL_ATTRIBUTES (newdecl));
2243 else if (new_defines_function && DECL_INITIAL (olddecl))
2245 /* Never inline re-defined extern inline functions.
2246 FIXME: this could be better handled by keeping both
2247 function as separate declarations. */
2248 DECL_UNINLINABLE (newdecl) = 1;
2250 else
2252 if (DECL_PENDING_INLINE_INFO (newdecl) == 0)
2253 DECL_PENDING_INLINE_INFO (newdecl) = DECL_PENDING_INLINE_INFO (olddecl);
2255 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2257 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2258 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2260 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2261 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2262 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2263 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2266 /* Preserve abstractness on cloned [cd]tors. */
2267 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2269 /* Update newdecl's parms to point at olddecl. */
2270 for (parm = DECL_ARGUMENTS (newdecl); parm;
2271 parm = DECL_CHAIN (parm))
2272 DECL_CONTEXT (parm) = olddecl;
2274 if (! types_match)
2276 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2277 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2278 COPY_DECL_RTL (newdecl, olddecl);
2280 if (! types_match || new_defines_function)
2282 /* These need to be copied so that the names are available.
2283 Note that if the types do match, we'll preserve inline
2284 info and other bits, but if not, we won't. */
2285 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2286 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2288 /* If redeclaring a builtin function, it stays built in
2289 if newdecl is a gnu_inline definition, or if newdecl is just
2290 a declaration. */
2291 if (DECL_BUILT_IN (olddecl)
2292 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2294 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2295 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2296 /* If we're keeping the built-in definition, keep the rtl,
2297 regardless of declaration matches. */
2298 COPY_DECL_RTL (olddecl, newdecl);
2299 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2301 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2302 switch (fncode)
2304 /* If a compatible prototype of these builtin functions
2305 is seen, assume the runtime implements it with the
2306 expected semantics. */
2307 case BUILT_IN_STPCPY:
2308 if (builtin_decl_explicit_p (fncode))
2309 set_builtin_decl_implicit_p (fncode, true);
2310 break;
2311 default:
2312 break;
2316 if (new_defines_function)
2317 /* If defining a function declared with other language
2318 linkage, use the previously declared language linkage. */
2319 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2320 else if (types_match)
2322 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2323 /* Don't clear out the arguments if we're just redeclaring a
2324 function. */
2325 if (DECL_ARGUMENTS (olddecl))
2326 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2329 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2330 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2332 /* Now preserve various other info from the definition. */
2333 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2334 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2335 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2336 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2338 /* Warn about conflicting visibility specifications. */
2339 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2340 && DECL_VISIBILITY_SPECIFIED (newdecl)
2341 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2343 if (warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wattributes,
2344 "%qD: visibility attribute ignored because it "
2345 "conflicts with previous declaration", newdecl))
2346 inform (DECL_SOURCE_LOCATION (olddecl),
2347 "previous declaration of %qD", olddecl);
2349 /* Choose the declaration which specified visibility. */
2350 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2352 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2353 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2355 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2356 so keep this behavior. */
2357 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2359 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2360 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2362 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2363 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2365 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
2366 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2368 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2369 if (TREE_CODE (newdecl) == FIELD_DECL)
2370 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2372 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2373 with that from NEWDECL below. */
2374 if (DECL_LANG_SPECIFIC (olddecl))
2376 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2377 != DECL_LANG_SPECIFIC (newdecl));
2378 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2381 /* Merge the USED information. */
2382 if (TREE_USED (olddecl))
2383 TREE_USED (newdecl) = 1;
2384 else if (TREE_USED (newdecl))
2385 TREE_USED (olddecl) = 1;
2386 if (VAR_P (newdecl))
2388 if (DECL_READ_P (olddecl))
2389 DECL_READ_P (newdecl) = 1;
2390 else if (DECL_READ_P (newdecl))
2391 DECL_READ_P (olddecl) = 1;
2393 if (DECL_PRESERVE_P (olddecl))
2394 DECL_PRESERVE_P (newdecl) = 1;
2395 else if (DECL_PRESERVE_P (newdecl))
2396 DECL_PRESERVE_P (olddecl) = 1;
2398 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2399 to olddecl and deleted. */
2400 if (TREE_CODE (newdecl) == FUNCTION_DECL
2401 && DECL_FUNCTION_VERSIONED (olddecl))
2403 /* Set the flag for newdecl so that it gets copied to olddecl. */
2404 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2405 /* newdecl will be purged after copying to olddecl and is no longer
2406 a version. */
2407 cgraph_node::delete_function_version (newdecl);
2410 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2412 int function_size;
2413 struct symtab_node *snode = symtab_node::get (olddecl);
2415 function_size = sizeof (struct tree_decl_common);
2417 memcpy ((char *) olddecl + sizeof (struct tree_common),
2418 (char *) newdecl + sizeof (struct tree_common),
2419 function_size - sizeof (struct tree_common));
2421 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2422 (char *) newdecl + sizeof (struct tree_decl_common),
2423 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2425 /* Preserve symtab node mapping. */
2426 olddecl->decl_with_vis.symtab_node = snode;
2428 if (new_template_info)
2429 /* If newdecl is a template instantiation, it is possible that
2430 the following sequence of events has occurred:
2432 o A friend function was declared in a class template. The
2433 class template was instantiated.
2435 o The instantiation of the friend declaration was
2436 recorded on the instantiation list, and is newdecl.
2438 o Later, however, instantiate_class_template called pushdecl
2439 on the newdecl to perform name injection. But, pushdecl in
2440 turn called duplicate_decls when it discovered that another
2441 declaration of a global function with the same name already
2442 existed.
2444 o Here, in duplicate_decls, we decided to clobber newdecl.
2446 If we're going to do that, we'd better make sure that
2447 olddecl, and not newdecl, is on the list of
2448 instantiations so that if we try to do the instantiation
2449 again we won't get the clobbered declaration. */
2450 reregister_specialization (newdecl,
2451 new_template_info,
2452 olddecl);
2454 else
2456 size_t size = tree_code_size (TREE_CODE (newdecl));
2458 memcpy ((char *) olddecl + sizeof (struct tree_common),
2459 (char *) newdecl + sizeof (struct tree_common),
2460 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2461 switch (TREE_CODE (newdecl))
2463 case LABEL_DECL:
2464 case VAR_DECL:
2465 case RESULT_DECL:
2466 case PARM_DECL:
2467 case FIELD_DECL:
2468 case TYPE_DECL:
2469 case CONST_DECL:
2471 struct symtab_node *snode = NULL;
2473 if (TREE_CODE (newdecl) == VAR_DECL
2474 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl) || DECL_EXTERNAL (olddecl)))
2475 snode = symtab_node::get (olddecl);
2476 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2477 (char *) newdecl + sizeof (struct tree_decl_common),
2478 size - sizeof (struct tree_decl_common)
2479 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2480 if (TREE_CODE (newdecl) == VAR_DECL)
2481 olddecl->decl_with_vis.symtab_node = snode;
2483 break;
2484 default:
2485 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2486 (char *) newdecl + sizeof (struct tree_decl_common),
2487 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2488 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2489 break;
2493 if (TREE_CODE (newdecl) == FUNCTION_DECL
2494 || TREE_CODE (newdecl) == VAR_DECL)
2496 if (DECL_EXTERNAL (olddecl)
2497 || TREE_PUBLIC (olddecl)
2498 || TREE_STATIC (olddecl))
2500 /* Merge the section attribute.
2501 We want to issue an error if the sections conflict but that must be
2502 done later in decl_attributes since we are called before attributes
2503 are assigned. */
2504 if (DECL_SECTION_NAME (newdecl) != NULL)
2505 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2507 if (DECL_ONE_ONLY (newdecl))
2509 struct symtab_node *oldsym, *newsym;
2510 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2511 oldsym = cgraph_node::get_create (olddecl);
2512 else
2513 oldsym = varpool_node::get_create (olddecl);
2514 newsym = symtab_node::get (newdecl);
2515 oldsym->set_comdat_group (newsym->get_comdat_group ());
2519 if (TREE_CODE (newdecl) == VAR_DECL
2520 && DECL_THREAD_LOCAL_P (newdecl))
2521 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2524 DECL_UID (olddecl) = olddecl_uid;
2525 if (olddecl_friend)
2526 DECL_FRIEND_P (olddecl) = 1;
2527 if (hidden_friend)
2529 DECL_ANTICIPATED (olddecl) = 1;
2530 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2533 /* NEWDECL contains the merged attribute lists.
2534 Update OLDDECL to be the same. */
2535 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2537 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2538 so that encode_section_info has a chance to look at the new decl
2539 flags and attributes. */
2540 if (DECL_RTL_SET_P (olddecl)
2541 && (TREE_CODE (olddecl) == FUNCTION_DECL
2542 || (VAR_P (olddecl)
2543 && TREE_STATIC (olddecl))))
2544 make_decl_rtl (olddecl);
2546 /* The NEWDECL will no longer be needed. Because every out-of-class
2547 declaration of a member results in a call to duplicate_decls,
2548 freeing these nodes represents in a significant savings.
2550 Before releasing the node, be sore to remove function from symbol
2551 table that might have been inserted there to record comdat group.
2552 Be sure to however do not free DECL_STRUCT_FUNCTION becuase this
2553 structure is shared in between newdecl and oldecl. */
2554 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2555 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2556 if (TREE_CODE (newdecl) == FUNCTION_DECL
2557 || TREE_CODE (newdecl) == VAR_DECL)
2559 struct symtab_node *snode = symtab_node::get (newdecl);
2560 if (snode)
2561 snode->remove ();
2563 ggc_free (newdecl);
2565 return olddecl;
2568 /* Return zero if the declaration NEWDECL is valid
2569 when the declaration OLDDECL (assumed to be for the same name)
2570 has already been seen.
2571 Otherwise return an error message format string with a %s
2572 where the identifier should go. */
2574 static const char *
2575 redeclaration_error_message (tree newdecl, tree olddecl)
2577 if (TREE_CODE (newdecl) == TYPE_DECL)
2579 /* Because C++ can put things into name space for free,
2580 constructs like "typedef struct foo { ... } foo"
2581 would look like an erroneous redeclaration. */
2582 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2583 return NULL;
2584 else
2585 return G_("redefinition of %q#D");
2587 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2589 /* If this is a pure function, its olddecl will actually be
2590 the original initialization to `0' (which we force to call
2591 abort()). Don't complain about redefinition in this case. */
2592 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2593 && DECL_INITIAL (olddecl) == NULL_TREE)
2594 return NULL;
2596 /* If both functions come from different namespaces, this is not
2597 a redeclaration - this is a conflict with a used function. */
2598 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2599 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2600 && ! decls_match (olddecl, newdecl))
2601 return G_("%qD conflicts with used function");
2603 /* We'll complain about linkage mismatches in
2604 warn_extern_redeclared_static. */
2606 /* Defining the same name twice is no good. */
2607 if (DECL_INITIAL (olddecl) != NULL_TREE
2608 && DECL_INITIAL (newdecl) != NULL_TREE)
2610 if (DECL_NAME (olddecl) == NULL_TREE)
2611 return G_("%q#D not declared in class");
2612 else if (!GNU_INLINE_P (olddecl)
2613 || GNU_INLINE_P (newdecl))
2614 return G_("redefinition of %q#D");
2617 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2619 bool olda = GNU_INLINE_P (olddecl);
2620 bool newa = GNU_INLINE_P (newdecl);
2622 if (olda != newa)
2624 if (newa)
2625 return G_("%q+D redeclared inline with "
2626 "%<gnu_inline%> attribute");
2627 else
2628 return G_("%q+D redeclared inline without "
2629 "%<gnu_inline%> attribute");
2633 check_abi_tag_redeclaration
2634 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2635 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2637 return NULL;
2639 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2641 tree nt, ot;
2643 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2645 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2646 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2647 return G_("redefinition of %q#D");
2648 return NULL;
2651 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2652 || (DECL_TEMPLATE_RESULT (newdecl)
2653 == DECL_TEMPLATE_RESULT (olddecl)))
2654 return NULL;
2656 nt = DECL_TEMPLATE_RESULT (newdecl);
2657 if (DECL_TEMPLATE_INFO (nt))
2658 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2659 ot = DECL_TEMPLATE_RESULT (olddecl);
2660 if (DECL_TEMPLATE_INFO (ot))
2661 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2662 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2663 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2664 return G_("redefinition of %q#D");
2666 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2668 bool olda = GNU_INLINE_P (ot);
2669 bool newa = GNU_INLINE_P (nt);
2671 if (olda != newa)
2673 if (newa)
2674 return G_("%q+D redeclared inline with "
2675 "%<gnu_inline%> attribute");
2676 else
2677 return G_("%q+D redeclared inline without "
2678 "%<gnu_inline%> attribute");
2682 /* Core issue #226 (C++0x):
2684 If a friend function template declaration specifies a
2685 default template-argument, that declaration shall be a
2686 definition and shall be the only declaration of the
2687 function template in the translation unit. */
2688 if ((cxx_dialect != cxx98)
2689 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2690 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2691 /*is_primary=*/true,
2692 /*is_partial=*/false,
2693 /*is_friend_decl=*/2))
2694 return G_("redeclaration of friend %q#D "
2695 "may not have default template arguments");
2697 return NULL;
2699 else if (VAR_P (newdecl)
2700 && DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl)
2701 && (! DECL_LANG_SPECIFIC (olddecl)
2702 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2703 || DECL_THREAD_LOCAL_P (newdecl)))
2705 /* Only variables can be thread-local, and all declarations must
2706 agree on this property. */
2707 if (DECL_THREAD_LOCAL_P (newdecl))
2708 return G_("thread-local declaration of %q#D follows "
2709 "non-thread-local declaration");
2710 else
2711 return G_("non-thread-local declaration of %q#D follows "
2712 "thread-local declaration");
2714 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2716 /* The objects have been declared at namespace scope. If either
2717 is a member of an anonymous union, then this is an invalid
2718 redeclaration. For example:
2720 int i;
2721 union { int i; };
2723 is invalid. */
2724 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2725 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2726 return G_("redeclaration of %q#D");
2727 /* If at least one declaration is a reference, there is no
2728 conflict. For example:
2730 int i = 3;
2731 extern int i;
2733 is valid. */
2734 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2735 return NULL;
2736 /* Reject two definitions. */
2737 return G_("redefinition of %q#D");
2739 else
2741 /* Objects declared with block scope: */
2742 /* Reject two definitions, and reject a definition
2743 together with an external reference. */
2744 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2745 return G_("redeclaration of %q#D");
2746 return NULL;
2750 /* Hash and equality functions for the named_label table. */
2752 hashval_t
2753 named_label_hasher::hash (named_label_entry *ent)
2755 return DECL_UID (ent->label_decl);
2758 bool
2759 named_label_hasher::equal (named_label_entry *a, named_label_entry *b)
2761 return a->label_decl == b->label_decl;
2764 /* Create a new label, named ID. */
2766 static tree
2767 make_label_decl (tree id, int local_p)
2769 struct named_label_entry *ent;
2770 tree decl;
2772 decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
2774 DECL_CONTEXT (decl) = current_function_decl;
2775 DECL_MODE (decl) = VOIDmode;
2776 C_DECLARED_LABEL_FLAG (decl) = local_p;
2778 /* Say where one reference is to the label, for the sake of the
2779 error if it is not defined. */
2780 DECL_SOURCE_LOCATION (decl) = input_location;
2782 /* Record the fact that this identifier is bound to this label. */
2783 SET_IDENTIFIER_LABEL_VALUE (id, decl);
2785 /* Create the label htab for the function on demand. */
2786 if (!named_labels)
2787 named_labels = hash_table<named_label_hasher>::create_ggc (13);
2789 /* Record this label on the list of labels used in this function.
2790 We do this before calling make_label_decl so that we get the
2791 IDENTIFIER_LABEL_VALUE before the new label is declared. */
2792 ent = ggc_cleared_alloc<named_label_entry> ();
2793 ent->label_decl = decl;
2795 named_label_entry **slot = named_labels->find_slot (ent, INSERT);
2796 gcc_assert (*slot == NULL);
2797 *slot = ent;
2799 return decl;
2802 /* Look for a label named ID in the current function. If one cannot
2803 be found, create one. (We keep track of used, but undefined,
2804 labels, and complain about them at the end of a function.) */
2806 static tree
2807 lookup_label_1 (tree id)
2809 tree decl;
2811 /* You can't use labels at global scope. */
2812 if (current_function_decl == NULL_TREE)
2814 error ("label %qE referenced outside of any function", id);
2815 return NULL_TREE;
2818 /* See if we've already got this label. */
2819 decl = IDENTIFIER_LABEL_VALUE (id);
2820 if (decl != NULL_TREE && DECL_CONTEXT (decl) == current_function_decl)
2821 return decl;
2823 decl = make_label_decl (id, /*local_p=*/0);
2824 return decl;
2827 /* Wrapper for lookup_label_1. */
2829 tree
2830 lookup_label (tree id)
2832 tree ret;
2833 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
2834 ret = lookup_label_1 (id);
2835 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
2836 return ret;
2839 /* Declare a local label named ID. */
2841 tree
2842 declare_local_label (tree id)
2844 tree decl;
2845 cp_label_binding bind;
2847 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
2848 this scope we can restore the old value of IDENTIFIER_TYPE_VALUE. */
2849 bind.prev_value = IDENTIFIER_LABEL_VALUE (id);
2851 decl = make_label_decl (id, /*local_p=*/1);
2852 bind.label = decl;
2853 vec_safe_push (current_binding_level->shadowed_labels, bind);
2855 return decl;
2858 /* Returns nonzero if it is ill-formed to jump past the declaration of
2859 DECL. Returns 2 if it's also a real problem. */
2861 static int
2862 decl_jump_unsafe (tree decl)
2864 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
2865 with automatic storage duration is not in scope to a point where it is
2866 in scope is ill-formed unless the variable has scalar type, class type
2867 with a trivial default constructor and a trivial destructor, a
2868 cv-qualified version of one of these types, or an array of one of the
2869 preceding types and is declared without an initializer (8.5). */
2870 tree type = TREE_TYPE (decl);
2872 if (!VAR_P (decl) || TREE_STATIC (decl)
2873 || type == error_mark_node)
2874 return 0;
2876 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
2877 || variably_modified_type_p (type, NULL_TREE))
2878 return 2;
2880 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
2881 return 1;
2883 return 0;
2886 /* A subroutine of check_previous_goto_1 to identify a branch to the user. */
2888 static bool
2889 identify_goto (tree decl, const location_t *locus)
2891 bool complained = (decl
2892 ? permerror (input_location, "jump to label %qD", decl)
2893 : permerror (input_location, "jump to case label"));
2894 if (complained && locus)
2895 inform (*locus, " from here");
2896 return complained;
2899 /* Check that a single previously seen jump to a newly defined label
2900 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
2901 the jump context; NAMES are the names in scope in LEVEL at the jump
2902 context; LOCUS is the source position of the jump or 0. Returns
2903 true if all is well. */
2905 static bool
2906 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
2907 bool exited_omp, const location_t *locus)
2909 cp_binding_level *b;
2910 bool identified = false, complained = false;
2911 bool saw_eh = false, saw_omp = false;
2913 if (exited_omp)
2915 complained = identify_goto (decl, locus);
2916 if (complained)
2917 inform (input_location, " exits OpenMP structured block");
2918 identified = saw_omp = true;
2921 for (b = current_binding_level; b ; b = b->level_chain)
2923 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
2925 for (new_decls = b->names; new_decls != old_decls;
2926 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
2927 : TREE_CHAIN (new_decls)))
2929 int problem = decl_jump_unsafe (new_decls);
2930 if (! problem)
2931 continue;
2933 if (!identified)
2935 complained = identify_goto (decl, locus);
2936 identified = true;
2938 if (complained)
2940 if (problem > 1)
2941 inform (input_location,
2942 " crosses initialization of %q+#D", new_decls);
2943 else
2944 inform (input_location, " enters scope of %q+#D which has "
2945 "non-trivial destructor", new_decls);
2949 if (b == level)
2950 break;
2951 if ((b->kind == sk_try || b->kind == sk_catch) && !saw_eh)
2953 if (!identified)
2955 complained = identify_goto (decl, locus);
2956 identified = true;
2958 if (complained)
2960 if (b->kind == sk_try)
2961 inform (input_location, " enters try block");
2962 else
2963 inform (input_location, " enters catch block");
2965 saw_eh = true;
2967 if (b->kind == sk_omp && !saw_omp)
2969 if (!identified)
2971 complained = identify_goto (decl, locus);
2972 identified = true;
2974 if (complained)
2975 inform (input_location, " enters OpenMP structured block");
2976 saw_omp = true;
2980 return !identified;
2983 static void
2984 check_previous_goto (tree decl, struct named_label_use_entry *use)
2986 check_previous_goto_1 (decl, use->binding_level,
2987 use->names_in_scope, use->in_omp_scope,
2988 &use->o_goto_locus);
2991 static bool
2992 check_switch_goto (cp_binding_level* level)
2994 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
2997 /* Check that a new jump to a label DECL is OK. Called by
2998 finish_goto_stmt. */
3000 void
3001 check_goto (tree decl)
3003 struct named_label_entry *ent, dummy;
3004 bool saw_catch = false, identified = false, complained = false;
3005 tree bad;
3006 unsigned ix;
3008 /* We can't know where a computed goto is jumping.
3009 So we assume that it's OK. */
3010 if (TREE_CODE (decl) != LABEL_DECL)
3011 return;
3013 /* We didn't record any information about this label when we created it,
3014 and there's not much point since it's trivial to analyze as a return. */
3015 if (decl == cdtor_label)
3016 return;
3018 dummy.label_decl = decl;
3019 ent = named_labels->find (&dummy);
3020 gcc_assert (ent != NULL);
3022 /* If the label hasn't been defined yet, defer checking. */
3023 if (! DECL_INITIAL (decl))
3025 struct named_label_use_entry *new_use;
3027 /* Don't bother creating another use if the last goto had the
3028 same data, and will therefore create the same set of errors. */
3029 if (ent->uses
3030 && ent->uses->names_in_scope == current_binding_level->names)
3031 return;
3033 new_use = ggc_alloc<named_label_use_entry> ();
3034 new_use->binding_level = current_binding_level;
3035 new_use->names_in_scope = current_binding_level->names;
3036 new_use->o_goto_locus = input_location;
3037 new_use->in_omp_scope = false;
3039 new_use->next = ent->uses;
3040 ent->uses = new_use;
3041 return;
3044 if (ent->in_try_scope || ent->in_catch_scope
3045 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3047 complained = permerror (input_location, "jump to label %q+D", decl);
3048 if (complained)
3049 inform (input_location, " from here");
3050 identified = true;
3053 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3055 int u = decl_jump_unsafe (bad);
3057 if (u > 1 && DECL_ARTIFICIAL (bad))
3059 /* Can't skip init of __exception_info. */
3060 if (complained)
3061 inform (DECL_SOURCE_LOCATION (bad), " enters catch block");
3062 saw_catch = true;
3064 else if (complained)
3066 if (u > 1)
3067 inform (input_location, " skips initialization of %q+#D", bad);
3068 else
3069 inform (input_location, " enters scope of %q+#D which has "
3070 "non-trivial destructor", bad);
3074 if (complained)
3076 if (ent->in_try_scope)
3077 inform (input_location, " enters try block");
3078 else if (ent->in_catch_scope && !saw_catch)
3079 inform (input_location, " enters catch block");
3082 if (ent->in_omp_scope)
3084 if (complained)
3085 inform (input_location, " enters OpenMP structured block");
3087 else if (flag_openmp)
3089 cp_binding_level *b;
3090 for (b = current_binding_level; b ; b = b->level_chain)
3092 if (b == ent->binding_level)
3093 break;
3094 if (b->kind == sk_omp)
3096 if (!identified)
3098 complained = permerror (input_location,
3099 "jump to label %q+D", decl);
3100 if (complained)
3101 inform (input_location, " from here");
3102 identified = true;
3104 if (complained)
3105 inform (input_location, " exits OpenMP structured block");
3106 break;
3112 /* Check that a return is ok wrt OpenMP structured blocks.
3113 Called by finish_return_stmt. Returns true if all is well. */
3115 bool
3116 check_omp_return (void)
3118 cp_binding_level *b;
3119 for (b = current_binding_level; b ; b = b->level_chain)
3120 if (b->kind == sk_omp)
3122 error ("invalid exit from OpenMP structured block");
3123 return false;
3125 else if (b->kind == sk_function_parms)
3126 break;
3127 return true;
3130 /* Define a label, specifying the location in the source file.
3131 Return the LABEL_DECL node for the label. */
3133 static tree
3134 define_label_1 (location_t location, tree name)
3136 struct named_label_entry *ent, dummy;
3137 cp_binding_level *p;
3138 tree decl;
3140 decl = lookup_label (name);
3142 dummy.label_decl = decl;
3143 ent = named_labels->find (&dummy);
3144 gcc_assert (ent != NULL);
3146 /* After labels, make any new cleanups in the function go into their
3147 own new (temporary) binding contour. */
3148 for (p = current_binding_level;
3149 p->kind != sk_function_parms;
3150 p = p->level_chain)
3151 p->more_cleanups_ok = 0;
3153 if (name == get_identifier ("wchar_t"))
3154 permerror (input_location, "label named wchar_t");
3156 if (DECL_INITIAL (decl) != NULL_TREE)
3158 error ("duplicate label %qD", decl);
3159 return error_mark_node;
3161 else
3163 struct named_label_use_entry *use;
3165 /* Mark label as having been defined. */
3166 DECL_INITIAL (decl) = error_mark_node;
3167 /* Say where in the source. */
3168 DECL_SOURCE_LOCATION (decl) = location;
3170 ent->binding_level = current_binding_level;
3171 ent->names_in_scope = current_binding_level->names;
3173 for (use = ent->uses; use ; use = use->next)
3174 check_previous_goto (decl, use);
3175 ent->uses = NULL;
3178 return decl;
3181 /* Wrapper for define_label_1. */
3183 tree
3184 define_label (location_t location, tree name)
3186 tree ret;
3187 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3188 ret = define_label_1 (location, name);
3189 timevar_cond_stop (TV_NAME_LOOKUP, running);
3190 return ret;
3194 struct cp_switch
3196 cp_binding_level *level;
3197 struct cp_switch *next;
3198 /* The SWITCH_STMT being built. */
3199 tree switch_stmt;
3200 /* A splay-tree mapping the low element of a case range to the high
3201 element, or NULL_TREE if there is no high element. Used to
3202 determine whether or not a new case label duplicates an old case
3203 label. We need a tree, rather than simply a hash table, because
3204 of the GNU case range extension. */
3205 splay_tree cases;
3208 /* A stack of the currently active switch statements. The innermost
3209 switch statement is on the top of the stack. There is no need to
3210 mark the stack for garbage collection because it is only active
3211 during the processing of the body of a function, and we never
3212 collect at that point. */
3214 static struct cp_switch *switch_stack;
3216 /* Called right after a switch-statement condition is parsed.
3217 SWITCH_STMT is the switch statement being parsed. */
3219 void
3220 push_switch (tree switch_stmt)
3222 struct cp_switch *p = XNEW (struct cp_switch);
3223 p->level = current_binding_level;
3224 p->next = switch_stack;
3225 p->switch_stmt = switch_stmt;
3226 p->cases = splay_tree_new (case_compare, NULL, NULL);
3227 switch_stack = p;
3230 void
3231 pop_switch (void)
3233 struct cp_switch *cs = switch_stack;
3234 location_t switch_location;
3236 /* Emit warnings as needed. */
3237 switch_location = EXPR_LOC_OR_LOC (cs->switch_stmt, input_location);
3238 if (!processing_template_decl)
3239 c_do_switch_warnings (cs->cases, switch_location,
3240 SWITCH_STMT_TYPE (cs->switch_stmt),
3241 SWITCH_STMT_COND (cs->switch_stmt));
3243 splay_tree_delete (cs->cases);
3244 switch_stack = switch_stack->next;
3245 free (cs);
3248 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3249 condition. Note that if TYPE and VALUE are already integral we don't
3250 really do the conversion because the language-independent
3251 warning/optimization code will work better that way. */
3253 static tree
3254 case_conversion (tree type, tree value)
3256 if (value == NULL_TREE)
3257 return value;
3259 if (cxx_dialect >= cxx11
3260 && (SCOPED_ENUM_P (type)
3261 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))))
3263 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3264 type = type_promotes_to (type);
3265 value = (perform_implicit_conversion_flags
3266 (type, value, tf_warning_or_error,
3267 LOOKUP_IMPLICIT | LOOKUP_NO_NON_INTEGRAL));
3269 return cxx_constant_value (value);
3272 /* Note that we've seen a definition of a case label, and complain if this
3273 is a bad place for one. */
3275 tree
3276 finish_case_label (location_t loc, tree low_value, tree high_value)
3278 tree cond, r;
3279 cp_binding_level *p;
3280 tree type;
3282 if (processing_template_decl)
3284 tree label;
3286 /* For templates, just add the case label; we'll do semantic
3287 analysis at instantiation-time. */
3288 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
3289 return add_stmt (build_case_label (low_value, high_value, label));
3292 /* Find the condition on which this switch statement depends. */
3293 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3294 if (cond && TREE_CODE (cond) == TREE_LIST)
3295 cond = TREE_VALUE (cond);
3297 if (!check_switch_goto (switch_stack->level))
3298 return error_mark_node;
3300 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3302 low_value = case_conversion (type, low_value);
3303 high_value = case_conversion (type, high_value);
3305 r = c_add_case_label (loc, switch_stack->cases, cond, type,
3306 low_value, high_value);
3308 /* After labels, make any new cleanups in the function go into their
3309 own new (temporary) binding contour. */
3310 for (p = current_binding_level;
3311 p->kind != sk_function_parms;
3312 p = p->level_chain)
3313 p->more_cleanups_ok = 0;
3315 return r;
3318 struct typename_info {
3319 tree scope;
3320 tree name;
3321 tree template_id;
3322 bool enum_p;
3323 bool class_p;
3326 struct typename_hasher : ggc_hasher<tree>
3328 typedef typename_info *compare_type;
3330 /* Hash a TYPENAME_TYPE. */
3332 static hashval_t
3333 hash (tree t)
3335 hashval_t hash;
3337 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3338 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3340 return hash;
3343 /* Compare two TYPENAME_TYPEs. */
3345 static bool
3346 equal (tree t1, const typename_info *t2)
3348 return (TYPE_IDENTIFIER (t1) == t2->name
3349 && TYPE_CONTEXT (t1) == t2->scope
3350 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3351 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3352 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3356 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3357 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3359 Returns the new TYPENAME_TYPE. */
3361 static GTY (()) hash_table<typename_hasher> *typename_htab;
3363 static tree
3364 build_typename_type (tree context, tree name, tree fullname,
3365 enum tag_types tag_type)
3367 tree t;
3368 tree d;
3369 typename_info ti;
3370 tree *e;
3371 hashval_t hash;
3373 if (typename_htab == NULL)
3374 typename_htab = hash_table<typename_hasher>::create_ggc (61);
3376 ti.scope = FROB_CONTEXT (context);
3377 ti.name = name;
3378 ti.template_id = fullname;
3379 ti.enum_p = tag_type == enum_type;
3380 ti.class_p = (tag_type == class_type
3381 || tag_type == record_type
3382 || tag_type == union_type);
3383 hash = (htab_hash_pointer (ti.scope)
3384 ^ htab_hash_pointer (ti.name));
3386 /* See if we already have this type. */
3387 e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
3388 if (*e)
3389 t = *e;
3390 else
3392 /* Build the TYPENAME_TYPE. */
3393 t = cxx_make_type (TYPENAME_TYPE);
3394 TYPE_CONTEXT (t) = ti.scope;
3395 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3396 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3397 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3399 /* Build the corresponding TYPE_DECL. */
3400 d = build_decl (input_location, TYPE_DECL, name, t);
3401 TYPE_NAME (TREE_TYPE (d)) = d;
3402 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3403 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3404 DECL_ARTIFICIAL (d) = 1;
3406 /* Store it in the hash table. */
3407 *e = t;
3409 /* TYPENAME_TYPEs must always be compared structurally, because
3410 they may or may not resolve down to another type depending on
3411 the currently open classes. */
3412 SET_TYPE_STRUCTURAL_EQUALITY (t);
3415 return t;
3418 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3419 provided to name the type. Returns an appropriate type, unless an
3420 error occurs, in which case error_mark_node is returned. If we
3421 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3422 return that, rather than the _TYPE it corresponds to, in other
3423 cases we look through the type decl. If TF_ERROR is set, complain
3424 about errors, otherwise be quiet. */
3426 tree
3427 make_typename_type (tree context, tree name, enum tag_types tag_type,
3428 tsubst_flags_t complain)
3430 tree fullname;
3431 tree t;
3432 bool want_template;
3434 if (name == error_mark_node
3435 || context == NULL_TREE
3436 || context == error_mark_node)
3437 return error_mark_node;
3439 if (TYPE_P (name))
3441 if (!(TYPE_LANG_SPECIFIC (name)
3442 && (CLASSTYPE_IS_TEMPLATE (name)
3443 || CLASSTYPE_USE_TEMPLATE (name))))
3444 name = TYPE_IDENTIFIER (name);
3445 else
3446 /* Create a TEMPLATE_ID_EXPR for the type. */
3447 name = build_nt (TEMPLATE_ID_EXPR,
3448 CLASSTYPE_TI_TEMPLATE (name),
3449 CLASSTYPE_TI_ARGS (name));
3451 else if (TREE_CODE (name) == TYPE_DECL)
3452 name = DECL_NAME (name);
3454 fullname = name;
3456 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3458 name = TREE_OPERAND (name, 0);
3459 if (TREE_CODE (name) == TEMPLATE_DECL)
3460 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3461 else if (TREE_CODE (name) == OVERLOAD)
3463 if (complain & tf_error)
3464 error ("%qD is not a type", name);
3465 return error_mark_node;
3468 if (TREE_CODE (name) == TEMPLATE_DECL)
3470 if (complain & tf_error)
3471 error ("%qD used without template parameters", name);
3472 return error_mark_node;
3474 gcc_assert (identifier_p (name));
3475 gcc_assert (TYPE_P (context));
3477 if (!MAYBE_CLASS_TYPE_P (context))
3479 if (complain & tf_error)
3480 error ("%q#T is not a class", context);
3481 return error_mark_node;
3484 /* When the CONTEXT is a dependent type, NAME could refer to a
3485 dependent base class of CONTEXT. But look inside it anyway
3486 if CONTEXT is a currently open scope, in case it refers to a
3487 member of the current instantiation or a non-dependent base;
3488 lookup will stop when we hit a dependent base. */
3489 if (!dependent_scope_p (context))
3490 /* We should only set WANT_TYPE when we're a nested typename type.
3491 Then we can give better diagnostics if we find a non-type. */
3492 t = lookup_field (context, name, 2, /*want_type=*/true);
3493 else
3494 t = NULL_TREE;
3496 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3497 return build_typename_type (context, name, fullname, tag_type);
3499 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3501 if (!t)
3503 if (complain & tf_error)
3504 error (want_template ? G_("no class template named %q#T in %q#T")
3505 : G_("no type named %q#T in %q#T"), name, context);
3506 return error_mark_node;
3509 /* Pull out the template from an injected-class-name (or multiple). */
3510 if (want_template)
3511 t = maybe_get_template_decl_from_type_decl (t);
3513 if (TREE_CODE (t) == TREE_LIST)
3515 if (complain & tf_error)
3517 error ("lookup of %qT in %qT is ambiguous", name, context);
3518 print_candidates (t);
3520 return error_mark_node;
3523 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3525 if (complain & tf_error)
3526 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3527 context, name, t);
3528 return error_mark_node;
3530 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3532 if (complain & tf_error)
3533 error ("%<typename %T::%D%> names %q#T, which is not a type",
3534 context, name, t);
3535 return error_mark_node;
3538 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3539 return error_mark_node;
3541 /* If we are currently parsing a template and if T is a typedef accessed
3542 through CONTEXT then we need to remember and check access of T at
3543 template instantiation time. */
3544 add_typedef_to_current_template_for_access_check (t, context, input_location);
3546 if (want_template)
3547 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3548 NULL_TREE, context,
3549 /*entering_scope=*/0,
3550 tf_warning_or_error | tf_user);
3552 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3553 t = TREE_TYPE (t);
3555 maybe_record_typedef_use (t);
3557 return t;
3560 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3561 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3562 in which case error_mark_node is returned.
3564 If PARM_LIST is non-NULL, also make sure that the template parameter
3565 list of TEMPLATE_DECL matches.
3567 If COMPLAIN zero, don't complain about any errors that occur. */
3569 tree
3570 make_unbound_class_template (tree context, tree name, tree parm_list,
3571 tsubst_flags_t complain)
3573 tree t;
3574 tree d;
3576 if (TYPE_P (name))
3577 name = TYPE_IDENTIFIER (name);
3578 else if (DECL_P (name))
3579 name = DECL_NAME (name);
3580 gcc_assert (identifier_p (name));
3582 if (!dependent_type_p (context)
3583 || currently_open_class (context))
3585 tree tmpl = NULL_TREE;
3587 if (MAYBE_CLASS_TYPE_P (context))
3588 tmpl = lookup_field (context, name, 0, false);
3590 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3591 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3593 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3595 if (complain & tf_error)
3596 error ("no class template named %q#T in %q#T", name, context);
3597 return error_mark_node;
3600 if (parm_list
3601 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3603 if (complain & tf_error)
3605 error ("template parameters do not match template %qD", tmpl);
3606 inform (DECL_SOURCE_LOCATION (tmpl),
3607 "%qD declared here", tmpl);
3609 return error_mark_node;
3612 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
3613 complain))
3614 return error_mark_node;
3616 return tmpl;
3619 /* Build the UNBOUND_CLASS_TEMPLATE. */
3620 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3621 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3622 TREE_TYPE (t) = NULL_TREE;
3623 SET_TYPE_STRUCTURAL_EQUALITY (t);
3625 /* Build the corresponding TEMPLATE_DECL. */
3626 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3627 TYPE_NAME (TREE_TYPE (d)) = d;
3628 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3629 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3630 DECL_ARTIFICIAL (d) = 1;
3631 DECL_TEMPLATE_PARMS (d) = parm_list;
3633 return t;
3638 /* Push the declarations of builtin types into the namespace.
3639 RID_INDEX is the index of the builtin type in the array
3640 RID_POINTERS. NAME is the name used when looking up the builtin
3641 type. TYPE is the _TYPE node for the builtin type. */
3643 void
3644 record_builtin_type (enum rid rid_index,
3645 const char* name,
3646 tree type)
3648 tree rname = NULL_TREE, tname = NULL_TREE;
3649 tree tdecl = NULL_TREE;
3651 if ((int) rid_index < (int) RID_MAX)
3652 rname = ridpointers[(int) rid_index];
3653 if (name)
3654 tname = get_identifier (name);
3656 /* The calls to SET_IDENTIFIER_GLOBAL_VALUE below should be
3657 eliminated. Built-in types should not be looked up name; their
3658 names are keywords that the parser can recognize. However, there
3659 is code in c-common.c that uses identifier_global_value to look
3660 up built-in types by name. */
3661 if (tname)
3663 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
3664 DECL_ARTIFICIAL (tdecl) = 1;
3665 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
3667 if (rname)
3669 if (!tdecl)
3671 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
3672 DECL_ARTIFICIAL (tdecl) = 1;
3674 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
3677 if (!TYPE_NAME (type))
3678 TYPE_NAME (type) = tdecl;
3680 if (tdecl)
3681 debug_hooks->type_decl (tdecl, 0);
3684 /* Record one of the standard Java types.
3685 * Declare it as having the given NAME.
3686 * If SIZE > 0, it is the size of one of the integral types;
3687 * otherwise it is the negative of the size of one of the other types. */
3689 static tree
3690 record_builtin_java_type (const char* name, int size)
3692 tree type, decl;
3693 if (size > 0)
3695 type = build_nonstandard_integer_type (size, 0);
3696 type = build_distinct_type_copy (type);
3698 else if (size > -32)
3700 tree stype;
3701 /* "__java_char" or ""__java_boolean". */
3702 type = build_nonstandard_integer_type (-size, 1);
3703 type = build_distinct_type_copy (type);
3704 /* Get the signed type cached and attached to the unsigned type,
3705 so it doesn't get garbage-collected at "random" times,
3706 causing potential codegen differences out of different UIDs
3707 and different alias set numbers. */
3708 stype = build_nonstandard_integer_type (-size, 0);
3709 stype = build_distinct_type_copy (stype);
3710 TREE_CHAIN (type) = stype;
3711 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
3713 else
3714 { /* "__java_float" or ""__java_double". */
3715 type = make_node (REAL_TYPE);
3716 TYPE_PRECISION (type) = - size;
3717 layout_type (type);
3719 record_builtin_type (RID_MAX, name, type);
3720 decl = TYPE_NAME (type);
3722 /* Suppress generate debug symbol entries for these types,
3723 since for normal C++ they are just clutter.
3724 However, push_lang_context undoes this if extern "Java" is seen. */
3725 DECL_IGNORED_P (decl) = 1;
3727 TYPE_FOR_JAVA (type) = 1;
3728 return type;
3731 /* Push a type into the namespace so that the back ends ignore it. */
3733 static void
3734 record_unknown_type (tree type, const char* name)
3736 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
3737 TYPE_DECL, get_identifier (name), type));
3738 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3739 DECL_IGNORED_P (decl) = 1;
3740 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
3741 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
3742 TYPE_ALIGN (type) = 1;
3743 TYPE_USER_ALIGN (type) = 0;
3744 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
3747 /* A string for which we should create an IDENTIFIER_NODE at
3748 startup. */
3750 typedef struct predefined_identifier
3752 /* The name of the identifier. */
3753 const char *const name;
3754 /* The place where the IDENTIFIER_NODE should be stored. */
3755 tree *const node;
3756 /* Nonzero if this is the name of a constructor or destructor. */
3757 const int ctor_or_dtor_p;
3758 } predefined_identifier;
3760 /* Create all the predefined identifiers. */
3762 static void
3763 initialize_predefined_identifiers (void)
3765 const predefined_identifier *pid;
3767 /* A table of identifiers to create at startup. */
3768 static const predefined_identifier predefined_identifiers[] = {
3769 { "C++", &lang_name_cplusplus, 0 },
3770 { "C", &lang_name_c, 0 },
3771 { "Java", &lang_name_java, 0 },
3772 /* Some of these names have a trailing space so that it is
3773 impossible for them to conflict with names written by users. */
3774 { "__ct ", &ctor_identifier, 1 },
3775 { "__base_ctor ", &base_ctor_identifier, 1 },
3776 { "__comp_ctor ", &complete_ctor_identifier, 1 },
3777 { "__dt ", &dtor_identifier, 1 },
3778 { "__comp_dtor ", &complete_dtor_identifier, 1 },
3779 { "__base_dtor ", &base_dtor_identifier, 1 },
3780 { "__deleting_dtor ", &deleting_dtor_identifier, 1 },
3781 { IN_CHARGE_NAME, &in_charge_identifier, 0 },
3782 { "nelts", &nelts_identifier, 0 },
3783 { THIS_NAME, &this_identifier, 0 },
3784 { VTABLE_DELTA_NAME, &delta_identifier, 0 },
3785 { VTABLE_PFN_NAME, &pfn_identifier, 0 },
3786 { "_vptr", &vptr_identifier, 0 },
3787 { "__vtt_parm", &vtt_parm_identifier, 0 },
3788 { "::", &global_scope_name, 0 },
3789 { "std", &std_identifier, 0 },
3790 { NULL, NULL, 0 }
3793 for (pid = predefined_identifiers; pid->name; ++pid)
3795 *pid->node = get_identifier (pid->name);
3796 if (pid->ctor_or_dtor_p)
3797 IDENTIFIER_CTOR_OR_DTOR_P (*pid->node) = 1;
3801 /* Create the predefined scalar types of C,
3802 and some nodes representing standard constants (0, 1, (void *)0).
3803 Initialize the global binding level.
3804 Make definitions for built-in primitive functions. */
3806 void
3807 cxx_init_decl_processing (void)
3809 tree void_ftype;
3810 tree void_ftype_ptr;
3812 /* Create all the identifiers we need. */
3813 initialize_predefined_identifiers ();
3815 /* Create the global variables. */
3816 push_to_top_level ();
3818 current_function_decl = NULL_TREE;
3819 current_binding_level = NULL;
3820 /* Enter the global namespace. */
3821 gcc_assert (global_namespace == NULL_TREE);
3822 global_namespace = build_lang_decl (NAMESPACE_DECL, global_scope_name,
3823 void_type_node);
3824 DECL_CONTEXT (global_namespace) = build_translation_unit_decl (NULL_TREE);
3825 TREE_PUBLIC (global_namespace) = 1;
3826 begin_scope (sk_namespace, global_namespace);
3828 if (flag_visibility_ms_compat)
3829 default_visibility = VISIBILITY_HIDDEN;
3831 /* Initially, C. */
3832 current_lang_name = lang_name_c;
3834 /* Create the `std' namespace. */
3835 push_namespace (std_identifier);
3836 std_node = current_namespace;
3837 pop_namespace ();
3839 c_common_nodes_and_builtins ();
3841 java_byte_type_node = record_builtin_java_type ("__java_byte", 8);
3842 java_short_type_node = record_builtin_java_type ("__java_short", 16);
3843 java_int_type_node = record_builtin_java_type ("__java_int", 32);
3844 java_long_type_node = record_builtin_java_type ("__java_long", 64);
3845 java_float_type_node = record_builtin_java_type ("__java_float", -32);
3846 java_double_type_node = record_builtin_java_type ("__java_double", -64);
3847 java_char_type_node = record_builtin_java_type ("__java_char", -16);
3848 java_boolean_type_node = record_builtin_java_type ("__java_boolean", -1);
3850 integer_two_node = build_int_cst (NULL_TREE, 2);
3852 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
3853 truthvalue_type_node = boolean_type_node;
3854 truthvalue_false_node = boolean_false_node;
3855 truthvalue_true_node = boolean_true_node;
3857 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
3858 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
3859 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
3861 #if 0
3862 record_builtin_type (RID_MAX, NULL, string_type_node);
3863 #endif
3865 delta_type_node = ptrdiff_type_node;
3866 vtable_index_type = ptrdiff_type_node;
3868 vtt_parm_type = build_pointer_type (const_ptr_type_node);
3869 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
3870 void_ftype_ptr = build_function_type_list (void_type_node,
3871 ptr_type_node, NULL_TREE);
3872 void_ftype_ptr
3873 = build_exception_variant (void_ftype_ptr, empty_except_spec);
3875 /* C++ extensions */
3877 unknown_type_node = make_node (LANG_TYPE);
3878 record_unknown_type (unknown_type_node, "unknown type");
3880 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
3881 TREE_TYPE (unknown_type_node) = unknown_type_node;
3883 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
3884 result. */
3885 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
3886 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
3888 init_list_type_node = make_node (LANG_TYPE);
3889 record_unknown_type (init_list_type_node, "init list");
3892 /* Make sure we get a unique function type, so we can give
3893 its pointer type a name. (This wins for gdb.) */
3894 tree vfunc_type = make_node (FUNCTION_TYPE);
3895 TREE_TYPE (vfunc_type) = integer_type_node;
3896 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
3897 layout_type (vfunc_type);
3899 vtable_entry_type = build_pointer_type (vfunc_type);
3901 record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
3903 vtbl_type_node
3904 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
3905 layout_type (vtbl_type_node);
3906 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
3907 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
3908 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
3909 layout_type (vtbl_ptr_type_node);
3910 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
3912 push_namespace (get_identifier ("__cxxabiv1"));
3913 abi_node = current_namespace;
3914 pop_namespace ();
3916 global_type_node = make_node (LANG_TYPE);
3917 record_unknown_type (global_type_node, "global type");
3919 /* Now, C++. */
3920 current_lang_name = lang_name_cplusplus;
3923 tree newattrs, extvisattr;
3924 tree newtype, deltype;
3925 tree ptr_ftype_sizetype;
3926 tree new_eh_spec;
3928 ptr_ftype_sizetype
3929 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
3930 if (cxx_dialect == cxx98)
3932 tree bad_alloc_id;
3933 tree bad_alloc_type_node;
3934 tree bad_alloc_decl;
3936 push_namespace (std_identifier);
3937 bad_alloc_id = get_identifier ("bad_alloc");
3938 bad_alloc_type_node = make_class_type (RECORD_TYPE);
3939 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
3940 bad_alloc_decl
3941 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
3942 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
3943 pop_namespace ();
3945 new_eh_spec
3946 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
3948 else
3949 new_eh_spec = noexcept_false_spec;
3951 /* Ensure attribs.c is initialized. */
3952 init_attributes ();
3953 extvisattr = build_tree_list (get_identifier ("externally_visible"),
3954 NULL_TREE);
3955 newattrs = tree_cons (get_identifier ("alloc_size"),
3956 build_tree_list (NULL_TREE, integer_one_node),
3957 extvisattr);
3958 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
3959 newtype = build_exception_variant (newtype, new_eh_spec);
3960 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
3961 deltype = build_exception_variant (deltype, empty_except_spec);
3962 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
3963 DECL_IS_MALLOC (opnew) = 1;
3964 DECL_IS_OPERATOR_NEW (opnew) = 1;
3965 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
3966 DECL_IS_MALLOC (opnew) = 1;
3967 DECL_IS_OPERATOR_NEW (opnew) = 1;
3968 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
3969 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
3970 if (flag_sized_deallocation)
3972 /* Also push the sized deallocation variants:
3973 void operator delete(void*, std::size_t) throw();
3974 void operator delete[](void*, std::size_t) throw(); */
3975 tree void_ftype_ptr_size
3976 = build_function_type_list (void_type_node, ptr_type_node,
3977 size_type_node, NULL_TREE);
3978 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
3979 extvisattr);
3980 deltype = build_exception_variant (deltype, empty_except_spec);
3981 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
3982 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
3985 nullptr_type_node = make_node (NULLPTR_TYPE);
3986 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
3987 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
3988 TYPE_UNSIGNED (nullptr_type_node) = 1;
3989 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
3990 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
3991 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
3992 nullptr_node = build_int_cst (nullptr_type_node, 0);
3995 abort_fndecl
3996 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
3997 ECF_NORETURN | ECF_NOTHROW);
3999 /* Perform other language dependent initializations. */
4000 init_class_processing ();
4001 init_rtti_processing ();
4002 init_template_processing ();
4004 if (flag_exceptions)
4005 init_exception_processing ();
4007 if (! supports_one_only ())
4008 flag_weak = 0;
4010 make_fname_decl = cp_make_fname_decl;
4011 start_fname_decls ();
4013 /* Show we use EH for cleanups. */
4014 if (flag_exceptions)
4015 using_eh_for_cleanups ();
4018 /* Generate an initializer for a function naming variable from
4019 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4020 filled in with the type of the init. */
4022 tree
4023 cp_fname_init (const char* name, tree *type_p)
4025 tree domain = NULL_TREE;
4026 tree type;
4027 tree init = NULL_TREE;
4028 size_t length = 0;
4030 if (name)
4032 length = strlen (name);
4033 domain = build_index_type (size_int (length));
4034 init = build_string (length + 1, name);
4037 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4038 type = build_cplus_array_type (type, domain);
4040 *type_p = type;
4042 if (init)
4043 TREE_TYPE (init) = type;
4044 else
4045 init = error_mark_node;
4047 return init;
4050 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4051 the decl, LOC is the location to give the decl, NAME is the
4052 initialization string and TYPE_DEP indicates whether NAME depended
4053 on the type of the function. We make use of that to detect
4054 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4055 at the point of first use, so we mustn't push the decl now. */
4057 static tree
4058 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4060 const char *const name = (type_dep && processing_template_decl
4061 ? NULL : fname_as_string (type_dep));
4062 tree type;
4063 tree init = cp_fname_init (name, &type);
4064 tree decl = build_decl (loc, VAR_DECL, id, type);
4066 if (name)
4067 free (CONST_CAST (char *, name));
4069 /* As we're using pushdecl_with_scope, we must set the context. */
4070 DECL_CONTEXT (decl) = current_function_decl;
4072 TREE_STATIC (decl) = 1;
4073 TREE_READONLY (decl) = 1;
4074 DECL_ARTIFICIAL (decl) = 1;
4076 TREE_USED (decl) = 1;
4078 if (current_function_decl)
4080 cp_binding_level *b = current_binding_level;
4081 if (b->kind == sk_function_parms)
4082 return error_mark_node;
4083 while (b->level_chain->kind != sk_function_parms)
4084 b = b->level_chain;
4085 pushdecl_with_scope (decl, b, /*is_friend=*/false);
4086 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
4087 LOOKUP_ONLYCONVERTING);
4089 else
4091 DECL_THIS_STATIC (decl) = true;
4092 pushdecl_top_level_and_finish (decl, init);
4095 return decl;
4098 static tree
4099 builtin_function_1 (tree decl, tree context, bool is_global)
4101 tree id = DECL_NAME (decl);
4102 const char *name = IDENTIFIER_POINTER (id);
4104 retrofit_lang_decl (decl);
4106 DECL_ARTIFICIAL (decl) = 1;
4107 SET_OVERLOADED_OPERATOR_CODE (decl, ERROR_MARK);
4108 SET_DECL_LANGUAGE (decl, lang_c);
4109 /* Runtime library routines are, by definition, available in an
4110 external shared object. */
4111 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4112 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4114 DECL_CONTEXT (decl) = context;
4116 if (is_global)
4117 pushdecl_top_level (decl);
4118 else
4119 pushdecl (decl);
4121 /* A function in the user's namespace should have an explicit
4122 declaration before it is used. Mark the built-in function as
4123 anticipated but not actually declared. */
4124 if (name[0] != '_' || name[1] != '_')
4125 DECL_ANTICIPATED (decl) = 1;
4126 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
4128 size_t len = strlen (name);
4130 /* Treat __*_chk fortification functions as anticipated as well,
4131 unless they are __builtin_*. */
4132 if (len > strlen ("___chk")
4133 && memcmp (name + len - strlen ("_chk"),
4134 "_chk", strlen ("_chk") + 1) == 0)
4135 DECL_ANTICIPATED (decl) = 1;
4138 return decl;
4141 tree
4142 cxx_builtin_function (tree decl)
4144 tree id = DECL_NAME (decl);
4145 const char *name = IDENTIFIER_POINTER (id);
4146 /* All builtins that don't begin with an '_' should additionally
4147 go in the 'std' namespace. */
4148 if (name[0] != '_')
4150 tree decl2 = copy_node(decl);
4151 push_namespace (std_identifier);
4152 builtin_function_1 (decl2, std_node, false);
4153 pop_namespace ();
4156 return builtin_function_1 (decl, NULL_TREE, false);
4159 /* Like cxx_builtin_function, but guarantee the function is added to the global
4160 scope. This is to allow function specific options to add new machine
4161 dependent builtins when the target ISA changes via attribute((target(...)))
4162 which saves space on program startup if the program does not use non-generic
4163 ISAs. */
4165 tree
4166 cxx_builtin_function_ext_scope (tree decl)
4169 tree id = DECL_NAME (decl);
4170 const char *name = IDENTIFIER_POINTER (id);
4171 /* All builtins that don't begin with an '_' should additionally
4172 go in the 'std' namespace. */
4173 if (name[0] != '_')
4175 tree decl2 = copy_node(decl);
4176 push_namespace (std_identifier);
4177 builtin_function_1 (decl2, std_node, true);
4178 pop_namespace ();
4181 return builtin_function_1 (decl, NULL_TREE, true);
4184 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4185 function. Not called directly. */
4187 static tree
4188 build_library_fn (tree name, enum tree_code operator_code, tree type,
4189 int ecf_flags)
4191 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4192 DECL_EXTERNAL (fn) = 1;
4193 TREE_PUBLIC (fn) = 1;
4194 DECL_ARTIFICIAL (fn) = 1;
4195 SET_OVERLOADED_OPERATOR_CODE (fn, operator_code);
4196 SET_DECL_LANGUAGE (fn, lang_c);
4197 /* Runtime library routines are, by definition, available in an
4198 external shared object. */
4199 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4200 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4201 set_call_expr_flags (fn, ecf_flags);
4202 return fn;
4205 /* Returns the _DECL for a library function with C++ linkage. */
4207 static tree
4208 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4209 int ecf_flags)
4211 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4212 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4213 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4214 return fn;
4217 /* Like build_library_fn, but takes a C string instead of an
4218 IDENTIFIER_NODE. */
4220 tree
4221 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4223 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4226 /* Like build_cp_library_fn, but takes a C string instead of an
4227 IDENTIFIER_NODE. */
4229 tree
4230 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4232 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4233 ecf_flags);
4236 /* Like build_library_fn, but also pushes the function so that we will
4237 be able to find it via IDENTIFIER_GLOBAL_VALUE. Also, the function
4238 may throw exceptions listed in RAISES. */
4240 tree
4241 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4243 tree fn;
4245 if (raises)
4246 type = build_exception_variant (type, raises);
4248 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4249 pushdecl_top_level (fn);
4250 return fn;
4253 /* Like build_cp_library_fn, but also pushes the function so that it
4254 will be found by normal lookup. */
4256 static tree
4257 push_cp_library_fn (enum tree_code operator_code, tree type,
4258 int ecf_flags)
4260 tree fn = build_cp_library_fn (ansi_opname (operator_code),
4261 operator_code,
4262 type, ecf_flags);
4263 pushdecl (fn);
4264 if (flag_tm)
4265 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4266 return fn;
4269 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4270 a FUNCTION_TYPE. */
4272 tree
4273 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4275 tree type = build_function_type (void_type_node, parmtypes);
4276 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4279 /* Like push_library_fn, but also note that this function throws
4280 and does not return. Used for __throw_foo and the like. */
4282 tree
4283 push_throw_library_fn (tree name, tree type)
4285 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN);
4286 return fn;
4289 /* When we call finish_struct for an anonymous union, we create
4290 default copy constructors and such. But, an anonymous union
4291 shouldn't have such things; this function undoes the damage to the
4292 anonymous union type T.
4294 (The reason that we create the synthesized methods is that we don't
4295 distinguish `union { int i; }' from `typedef union { int i; } U'.
4296 The first is an anonymous union; the second is just an ordinary
4297 union type.) */
4299 void
4300 fixup_anonymous_aggr (tree t)
4302 tree *q;
4304 /* Wipe out memory of synthesized methods. */
4305 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4306 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4307 TYPE_HAS_COPY_CTOR (t) = 0;
4308 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4309 TYPE_HAS_COPY_ASSIGN (t) = 0;
4310 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4312 /* Splice the implicitly generated functions out of the TYPE_METHODS
4313 list. */
4314 q = &TYPE_METHODS (t);
4315 while (*q)
4317 if (DECL_ARTIFICIAL (*q))
4318 *q = TREE_CHAIN (*q);
4319 else
4320 q = &DECL_CHAIN (*q);
4323 /* ISO C++ 9.5.3. Anonymous unions may not have function members. */
4324 if (TYPE_METHODS (t))
4326 tree decl = TYPE_MAIN_DECL (t);
4328 if (TREE_CODE (t) != UNION_TYPE)
4329 error_at (DECL_SOURCE_LOCATION (decl),
4330 "an anonymous struct cannot have function members");
4331 else
4332 error_at (DECL_SOURCE_LOCATION (decl),
4333 "an anonymous union cannot have function members");
4336 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4337 assignment operators (because they cannot have these methods themselves).
4338 For anonymous unions this is already checked because they are not allowed
4339 in any union, otherwise we have to check it. */
4340 if (TREE_CODE (t) != UNION_TYPE)
4342 tree field, type;
4344 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4345 if (TREE_CODE (field) == FIELD_DECL)
4347 type = TREE_TYPE (field);
4348 if (CLASS_TYPE_P (type))
4350 if (TYPE_NEEDS_CONSTRUCTING (type))
4351 error ("member %q+#D with constructor not allowed "
4352 "in anonymous aggregate", field);
4353 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4354 error ("member %q+#D with destructor not allowed "
4355 "in anonymous aggregate", field);
4356 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4357 error ("member %q+#D with copy assignment operator "
4358 "not allowed in anonymous aggregate", field);
4364 /* Warn for an attribute located at LOCATION that appertains to the
4365 class type CLASS_TYPE that has not been properly placed after its
4366 class-key, in it class-specifier. */
4368 void
4369 warn_misplaced_attr_for_class_type (source_location location,
4370 tree class_type)
4372 gcc_assert (OVERLOAD_TYPE_P (class_type));
4374 if (warning_at (location, OPT_Wattributes,
4375 "attribute ignored in declaration "
4376 "of %q#T", class_type))
4377 inform (location,
4378 "attribute for %q#T must follow the %qs keyword",
4379 class_type, class_key_or_enum_as_string (class_type));
4382 /* Make sure that a declaration with no declarator is well-formed, i.e.
4383 just declares a tagged type or anonymous union.
4385 Returns the type declared; or NULL_TREE if none. */
4387 tree
4388 check_tag_decl (cp_decl_specifier_seq *declspecs,
4389 bool explicit_type_instantiation_p)
4391 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4392 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4393 /* If a class, struct, or enum type is declared by the DECLSPECS
4394 (i.e, if a class-specifier, enum-specifier, or non-typename
4395 elaborated-type-specifier appears in the DECLSPECS),
4396 DECLARED_TYPE is set to the corresponding type. */
4397 tree declared_type = NULL_TREE;
4398 bool error_p = false;
4400 if (declspecs->multiple_types_p)
4401 error ("multiple types in one declaration");
4402 else if (declspecs->redefined_builtin_type)
4404 if (!in_system_header_at (input_location))
4405 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4406 "redeclaration of C++ built-in type %qT",
4407 declspecs->redefined_builtin_type);
4408 return NULL_TREE;
4411 if (declspecs->type
4412 && TYPE_P (declspecs->type)
4413 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4414 && MAYBE_CLASS_TYPE_P (declspecs->type))
4415 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4416 declared_type = declspecs->type;
4417 else if (declspecs->type == error_mark_node)
4418 error_p = true;
4419 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
4420 permerror (input_location, "declaration does not declare anything");
4421 else if (declared_type != NULL_TREE && type_uses_auto (declared_type))
4423 error ("%<auto%> can only be specified for variables "
4424 "or function declarations");
4425 return error_mark_node;
4427 /* Check for an anonymous union. */
4428 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4429 && TYPE_ANONYMOUS_P (declared_type))
4431 /* 7/3 In a simple-declaration, the optional init-declarator-list
4432 can be omitted only when declaring a class (clause 9) or
4433 enumeration (7.2), that is, when the decl-specifier-seq contains
4434 either a class-specifier, an elaborated-type-specifier with
4435 a class-key (9.1), or an enum-specifier. In these cases and
4436 whenever a class-specifier or enum-specifier is present in the
4437 decl-specifier-seq, the identifiers in these specifiers are among
4438 the names being declared by the declaration (as class-name,
4439 enum-names, or enumerators, depending on the syntax). In such
4440 cases, and except for the declaration of an unnamed bit-field (9.6),
4441 the decl-specifier-seq shall introduce one or more names into the
4442 program, or shall redeclare a name introduced by a previous
4443 declaration. [Example:
4444 enum { }; // ill-formed
4445 typedef class { }; // ill-formed
4446 --end example] */
4447 if (saw_typedef)
4449 error ("missing type-name in typedef-declaration");
4450 return NULL_TREE;
4452 /* Anonymous unions are objects, so they can have specifiers. */;
4453 SET_ANON_AGGR_TYPE_P (declared_type);
4455 if (TREE_CODE (declared_type) != UNION_TYPE
4456 && !in_system_header_at (input_location))
4457 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4460 else
4462 if (decl_spec_seq_has_spec_p (declspecs, ds_inline)
4463 || decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4464 error ("%qs can only be specified for functions",
4465 decl_spec_seq_has_spec_p (declspecs, ds_inline)
4466 ? "inline" : "virtual");
4467 else if (saw_friend
4468 && (!current_class_type
4469 || current_scope () != current_class_type))
4470 error ("%<friend%> can only be specified inside a class");
4471 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4472 error ("%<explicit%> can only be specified for constructors");
4473 else if (declspecs->storage_class)
4474 error ("a storage class can only be specified for objects "
4475 "and functions");
4476 else if (decl_spec_seq_has_spec_p (declspecs, ds_const)
4477 || decl_spec_seq_has_spec_p (declspecs, ds_volatile)
4478 || decl_spec_seq_has_spec_p (declspecs, ds_restrict)
4479 || decl_spec_seq_has_spec_p (declspecs, ds_thread))
4480 error ("qualifiers can only be specified for objects "
4481 "and functions");
4482 else if (saw_typedef)
4483 warning (0, "%<typedef%> was ignored in this declaration");
4484 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4485 error ("%<constexpr%> cannot be used for type declarations");
4488 if (declspecs->attributes && warn_attributes && declared_type)
4490 location_t loc;
4491 if (!CLASS_TYPE_P (declared_type)
4492 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4493 /* For a non-template class, use the name location. */
4494 loc = location_of (declared_type);
4495 else
4496 /* For a template class (an explicit instantiation), use the
4497 current location. */
4498 loc = input_location;
4500 if (explicit_type_instantiation_p)
4501 /* [dcl.attr.grammar]/4:
4503 No attribute-specifier-seq shall appertain to an explicit
4504 instantiation. */
4506 if (warning_at (loc, OPT_Wattributes,
4507 "attribute ignored in explicit instantiation %q#T",
4508 declared_type))
4509 inform (loc,
4510 "no attribute can be applied to "
4511 "an explicit instantiation");
4513 else
4514 warn_misplaced_attr_for_class_type (loc, declared_type);
4517 return declared_type;
4520 /* Called when a declaration is seen that contains no names to declare.
4521 If its type is a reference to a structure, union or enum inherited
4522 from a containing scope, shadow that tag name for the current scope
4523 with a forward reference.
4524 If its type defines a new named structure or union
4525 or defines an enum, it is valid but we need not do anything here.
4526 Otherwise, it is an error.
4528 C++: may have to grok the declspecs to learn about static,
4529 complain for anonymous unions.
4531 Returns the TYPE declared -- or NULL_TREE if none. */
4533 tree
4534 shadow_tag (cp_decl_specifier_seq *declspecs)
4536 tree t = check_tag_decl (declspecs,
4537 /*explicit_type_instantiation_p=*/false);
4539 if (!t)
4540 return NULL_TREE;
4542 if (maybe_process_partial_specialization (t) == error_mark_node)
4543 return NULL_TREE;
4545 /* This is where the variables in an anonymous union are
4546 declared. An anonymous union declaration looks like:
4547 union { ... } ;
4548 because there is no declarator after the union, the parser
4549 sends that declaration here. */
4550 if (ANON_AGGR_TYPE_P (t))
4552 fixup_anonymous_aggr (t);
4554 if (TYPE_FIELDS (t))
4556 tree decl = grokdeclarator (/*declarator=*/NULL,
4557 declspecs, NORMAL, 0, NULL);
4558 finish_anon_union (decl);
4562 return t;
4565 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4567 tree
4568 groktypename (cp_decl_specifier_seq *type_specifiers,
4569 const cp_declarator *declarator,
4570 bool is_template_arg)
4572 tree attrs;
4573 tree type;
4574 enum decl_context context
4575 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
4576 attrs = type_specifiers->attributes;
4577 type_specifiers->attributes = NULL_TREE;
4578 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
4579 if (attrs && type != error_mark_node)
4581 if (CLASS_TYPE_P (type))
4582 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
4583 "outside of definition", type);
4584 else if (MAYBE_CLASS_TYPE_P (type))
4585 /* A template type parameter or other dependent type. */
4586 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
4587 "type %qT without an associated declaration", type);
4588 else
4589 cplus_decl_attributes (&type, attrs, 0);
4591 return type;
4594 /* Process a DECLARATOR for a function-scope variable declaration,
4595 namespace-scope variable declaration, or function declaration.
4596 (Function definitions go through start_function; class member
4597 declarations appearing in the body of the class go through
4598 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4599 If an error occurs, the error_mark_node is returned instead.
4601 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
4602 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
4603 for an explicitly defaulted function, or SD_DELETED for an explicitly
4604 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
4605 implicitly initialized via a default constructor. ATTRIBUTES and
4606 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
4608 The scope represented by the context of the returned DECL is pushed
4609 (if it is not the global namespace) and is assigned to
4610 *PUSHED_SCOPE_P. The caller is then responsible for calling
4611 pop_scope on *PUSHED_SCOPE_P if it is set. */
4613 tree
4614 start_decl (const cp_declarator *declarator,
4615 cp_decl_specifier_seq *declspecs,
4616 int initialized,
4617 tree attributes,
4618 tree prefix_attributes,
4619 tree *pushed_scope_p)
4621 tree decl;
4622 tree context;
4623 bool was_public;
4624 int flags;
4625 bool alias;
4627 *pushed_scope_p = NULL_TREE;
4629 /* An object declared as __attribute__((deprecated)) suppresses
4630 warnings of uses of other deprecated items. */
4631 if (lookup_attribute ("deprecated", attributes))
4632 deprecated_state = DEPRECATED_SUPPRESS;
4634 attributes = chainon (attributes, prefix_attributes);
4636 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
4637 &attributes);
4639 deprecated_state = DEPRECATED_NORMAL;
4641 if (decl == NULL_TREE || VOID_TYPE_P (decl)
4642 || decl == error_mark_node)
4643 return error_mark_node;
4645 context = CP_DECL_CONTEXT (decl);
4646 if (context != global_namespace)
4647 *pushed_scope_p = push_scope (context);
4649 /* Is it valid for this decl to have an initializer at all?
4650 If not, set INITIALIZED to zero, which will indirectly
4651 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4652 if (initialized
4653 && TREE_CODE (decl) == TYPE_DECL)
4655 error ("typedef %qD is initialized (use decltype instead)", decl);
4656 return error_mark_node;
4659 if (initialized)
4661 if (! toplevel_bindings_p ()
4662 && DECL_EXTERNAL (decl))
4663 warning (0, "declaration of %q#D has %<extern%> and is initialized",
4664 decl);
4665 DECL_EXTERNAL (decl) = 0;
4666 if (toplevel_bindings_p ())
4667 TREE_STATIC (decl) = 1;
4669 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
4671 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
4672 record_key_method_defined (decl);
4674 /* If this is a typedef that names the class for linkage purposes
4675 (7.1.3p8), apply any attributes directly to the type. */
4676 if (TREE_CODE (decl) == TYPE_DECL
4677 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
4678 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
4679 flags = ATTR_FLAG_TYPE_IN_PLACE;
4680 else
4681 flags = 0;
4683 /* Set attributes here so if duplicate decl, will have proper attributes. */
4684 cplus_decl_attributes (&decl, attributes, flags);
4686 /* Dllimported symbols cannot be defined. Static data members (which
4687 can be initialized in-class and dllimported) go through grokfield,
4688 not here, so we don't need to exclude those decls when checking for
4689 a definition. */
4690 if (initialized && DECL_DLLIMPORT_P (decl))
4692 error ("definition of %q#D is marked %<dllimport%>", decl);
4693 DECL_DLLIMPORT_P (decl) = 0;
4696 /* If #pragma weak was used, mark the decl weak now. */
4697 if (!processing_template_decl)
4698 maybe_apply_pragma_weak (decl);
4700 if (TREE_CODE (decl) == FUNCTION_DECL
4701 && DECL_DECLARED_INLINE_P (decl)
4702 && DECL_UNINLINABLE (decl)
4703 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4704 warning (0, "inline function %q+D given attribute noinline", decl);
4706 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
4708 bool this_tmpl = (processing_template_decl
4709 > template_class_depth (context));
4710 if (VAR_P (decl))
4712 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
4713 if (field == NULL_TREE
4714 || !(VAR_P (field) || variable_template_p (field)))
4715 error ("%q+#D is not a static data member of %q#T", decl, context);
4716 else if (variable_template_p (field) && !this_tmpl)
4718 if (DECL_LANG_SPECIFIC (decl)
4719 && DECL_TEMPLATE_SPECIALIZATION (decl))
4720 /* OK, specialization was already checked. */;
4721 else
4723 error_at (DECL_SOURCE_LOCATION (decl),
4724 "non-member-template declaration of %qD", decl);
4725 inform (DECL_SOURCE_LOCATION (field), "does not match "
4726 "member template declaration here");
4727 return error_mark_node;
4730 else
4732 if (variable_template_p (field))
4733 field = DECL_TEMPLATE_RESULT (field);
4735 if (DECL_CONTEXT (field) != context)
4737 if (!same_type_p (DECL_CONTEXT (field), context))
4738 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
4739 "to be defined as %<%T::%D%>",
4740 DECL_CONTEXT (field), DECL_NAME (decl),
4741 context, DECL_NAME (decl));
4742 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
4744 /* Static data member are tricky; an in-class initialization
4745 still doesn't provide a definition, so the in-class
4746 declaration will have DECL_EXTERNAL set, but will have an
4747 initialization. Thus, duplicate_decls won't warn
4748 about this situation, and so we check here. */
4749 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
4750 error ("duplicate initialization of %qD", decl);
4751 if (duplicate_decls (decl, field, /*newdecl_is_friend=*/false))
4752 decl = field;
4753 if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr)
4754 && !DECL_DECLARED_CONSTEXPR_P (field))
4755 error ("%qD declared %<constexpr%> outside its class", field);
4758 else
4760 tree field = check_classfn (context, decl,
4761 this_tmpl
4762 ? current_template_parms
4763 : NULL_TREE);
4764 if (field && field != error_mark_node
4765 && duplicate_decls (decl, field,
4766 /*newdecl_is_friend=*/false))
4767 decl = field;
4770 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
4771 DECL_IN_AGGR_P (decl) = 0;
4772 /* Do not mark DECL as an explicit specialization if it was not
4773 already marked as an instantiation; a declaration should
4774 never be marked as a specialization unless we know what
4775 template is being specialized. */
4776 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
4778 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
4779 if (TREE_CODE (decl) == FUNCTION_DECL)
4780 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
4781 && DECL_DECLARED_INLINE_P (decl));
4782 else
4783 DECL_COMDAT (decl) = false;
4785 /* [temp.expl.spec] An explicit specialization of a static data
4786 member of a template is a definition if the declaration
4787 includes an initializer; otherwise, it is a declaration.
4789 We check for processing_specialization so this only applies
4790 to the new specialization syntax. */
4791 if (!initialized && processing_specialization)
4792 DECL_EXTERNAL (decl) = 1;
4795 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
4796 /* Aliases are definitions. */
4797 && !alias)
4798 permerror (input_location, "declaration of %q#D outside of class is not definition",
4799 decl);
4802 was_public = TREE_PUBLIC (decl);
4804 /* Enter this declaration into the symbol table. */
4805 decl = maybe_push_decl (decl);
4807 if (processing_template_decl)
4808 decl = push_template_decl (decl);
4809 if (decl == error_mark_node)
4810 return error_mark_node;
4812 if (VAR_P (decl)
4813 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
4814 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
4816 /* This is a const variable with implicit 'static'. Set
4817 DECL_THIS_STATIC so we can tell it from variables that are
4818 !TREE_PUBLIC because of the anonymous namespace. */
4819 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
4820 DECL_THIS_STATIC (decl) = 1;
4823 if (current_function_decl && VAR_P (decl)
4824 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
4826 bool ok = false;
4827 if (DECL_THREAD_LOCAL_P (decl))
4828 error ("%qD declared %<thread_local%> in %<constexpr%> function",
4829 decl);
4830 else if (TREE_STATIC (decl))
4831 error ("%qD declared %<static%> in %<constexpr%> function", decl);
4832 else
4833 ok = true;
4834 if (!ok)
4835 cp_function_chain->invalid_constexpr = true;
4838 if (!processing_template_decl && VAR_P (decl))
4839 start_decl_1 (decl, initialized);
4841 return decl;
4844 /* Process the declaration of a variable DECL. INITIALIZED is true
4845 iff DECL is explicitly initialized. (INITIALIZED is false if the
4846 variable is initialized via an implicitly-called constructor.)
4847 This function must be called for ordinary variables (including, for
4848 example, implicit instantiations of templates), but must not be
4849 called for template declarations. */
4851 void
4852 start_decl_1 (tree decl, bool initialized)
4854 tree type;
4855 bool complete_p;
4856 bool aggregate_definition_p;
4858 gcc_assert (!processing_template_decl);
4860 if (error_operand_p (decl))
4861 return;
4863 gcc_assert (VAR_P (decl));
4865 type = TREE_TYPE (decl);
4866 complete_p = COMPLETE_TYPE_P (type);
4867 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
4869 /* If an explicit initializer is present, or if this is a definition
4870 of an aggregate, then we need a complete type at this point.
4871 (Scalars are always complete types, so there is nothing to
4872 check.) This code just sets COMPLETE_P; errors (if necessary)
4873 are issued below. */
4874 if ((initialized || aggregate_definition_p)
4875 && !complete_p
4876 && COMPLETE_TYPE_P (complete_type (type)))
4878 complete_p = true;
4879 /* We will not yet have set TREE_READONLY on DECL if the type
4880 was "const", but incomplete, before this point. But, now, we
4881 have a complete type, so we can try again. */
4882 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
4885 if (initialized)
4886 /* Is it valid for this decl to have an initializer at all? */
4888 /* Don't allow initializations for incomplete types except for
4889 arrays which might be completed by the initialization. */
4890 if (complete_p)
4891 ; /* A complete type is ok. */
4892 else if (type_uses_auto (type))
4893 ; /* An auto type is ok. */
4894 else if (TREE_CODE (type) != ARRAY_TYPE)
4896 error ("variable %q#D has initializer but incomplete type", decl);
4897 type = TREE_TYPE (decl) = error_mark_node;
4899 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
4901 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
4902 error ("elements of array %q#D have incomplete type", decl);
4903 /* else we already gave an error in start_decl. */
4906 else if (aggregate_definition_p && !complete_p)
4908 if (type_uses_auto (type))
4909 error ("declaration of %q#D has no initializer", decl);
4910 else
4911 error ("aggregate %q#D has incomplete type and cannot be defined",
4912 decl);
4913 /* Change the type so that assemble_variable will give
4914 DECL an rtl we can live with: (mem (const_int 0)). */
4915 type = TREE_TYPE (decl) = error_mark_node;
4918 /* Create a new scope to hold this declaration if necessary.
4919 Whether or not a new scope is necessary cannot be determined
4920 until after the type has been completed; if the type is a
4921 specialization of a class template it is not until after
4922 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
4923 will be set correctly. */
4924 maybe_push_cleanup_level (type);
4927 /* Handle initialization of references. DECL, TYPE, and INIT have the
4928 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
4929 but will be set to a new CLEANUP_STMT if a temporary is created
4930 that must be destroyed subsequently.
4932 Returns an initializer expression to use to initialize DECL, or
4933 NULL if the initialization can be performed statically.
4935 Quotes on semantics can be found in ARM 8.4.3. */
4937 static tree
4938 grok_reference_init (tree decl, tree type, tree init, int flags)
4940 if (init == NULL_TREE)
4942 if ((DECL_LANG_SPECIFIC (decl) == 0
4943 || DECL_IN_AGGR_P (decl) == 0)
4944 && ! DECL_THIS_EXTERN (decl))
4945 error ("%qD declared as reference but not initialized", decl);
4946 return NULL_TREE;
4949 if (TREE_CODE (init) == TREE_LIST)
4950 init = build_x_compound_expr_from_list (init, ELK_INIT,
4951 tf_warning_or_error);
4953 tree ttype = TREE_TYPE (type);
4954 if (TREE_CODE (ttype) != ARRAY_TYPE
4955 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
4956 /* Note: default conversion is only called in very special cases. */
4957 init = decay_conversion (init, tf_warning_or_error);
4959 /* check_initializer handles this for non-reference variables, but for
4960 references we need to do it here or the initializer will get the
4961 incomplete array type and confuse later calls to
4962 cp_complete_array_type. */
4963 if (TREE_CODE (ttype) == ARRAY_TYPE
4964 && TYPE_DOMAIN (ttype) == NULL_TREE
4965 && (BRACE_ENCLOSED_INITIALIZER_P (init)
4966 || TREE_CODE (init) == STRING_CST))
4968 cp_complete_array_type (&ttype, init, false);
4969 if (ttype != TREE_TYPE (type))
4970 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
4973 /* Convert INIT to the reference type TYPE. This may involve the
4974 creation of a temporary, whose lifetime must be the same as that
4975 of the reference. If so, a DECL_EXPR for the temporary will be
4976 added just after the DECL_EXPR for DECL. That's why we don't set
4977 DECL_INITIAL for local references (instead assigning to them
4978 explicitly); we need to allow the temporary to be initialized
4979 first. */
4980 return initialize_reference (type, init, flags,
4981 tf_warning_or_error);
4984 /* Designated initializers in arrays are not supported in GNU C++.
4985 The parser cannot detect this error since it does not know whether
4986 a given brace-enclosed initializer is for a class type or for an
4987 array. This function checks that CE does not use a designated
4988 initializer. If it does, an error is issued. Returns true if CE
4989 is valid, i.e., does not have a designated initializer. */
4991 static bool
4992 check_array_designated_initializer (constructor_elt *ce,
4993 unsigned HOST_WIDE_INT index)
4995 /* Designated initializers for array elements are not supported. */
4996 if (ce->index)
4998 /* The parser only allows identifiers as designated
4999 initializers. */
5000 if (ce->index == error_mark_node)
5002 error ("name used in a GNU-style designated "
5003 "initializer for an array");
5004 return false;
5006 else if (identifier_p (ce->index))
5008 error ("name %qD used in a GNU-style designated "
5009 "initializer for an array", ce->index);
5010 return false;
5013 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5014 ce->index, true);
5015 if (ce_index
5016 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
5017 && (TREE_CODE (ce_index = maybe_constant_value (ce_index))
5018 == INTEGER_CST))
5020 /* A C99 designator is OK if it matches the current index. */
5021 if (wi::eq_p (ce_index, index))
5022 return true;
5023 else
5024 sorry ("non-trivial designated initializers not supported");
5026 else
5027 error ("C99 designator %qE is not an integral constant-expression",
5028 ce->index);
5030 return false;
5033 return true;
5036 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5037 array until we finish parsing the initializer. If that's the
5038 situation we're in, update DECL accordingly. */
5040 static void
5041 maybe_deduce_size_from_array_init (tree decl, tree init)
5043 tree type = TREE_TYPE (decl);
5045 if (TREE_CODE (type) == ARRAY_TYPE
5046 && TYPE_DOMAIN (type) == NULL_TREE
5047 && TREE_CODE (decl) != TYPE_DECL)
5049 /* do_default is really a C-ism to deal with tentative definitions.
5050 But let's leave it here to ease the eventual merge. */
5051 int do_default = !DECL_EXTERNAL (decl);
5052 tree initializer = init ? init : DECL_INITIAL (decl);
5053 int failure = 0;
5055 /* Check that there are no designated initializers in INIT, as
5056 those are not supported in GNU C++, and as the middle-end
5057 will crash if presented with a non-numeric designated
5058 initializer. */
5059 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
5061 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
5062 constructor_elt *ce;
5063 HOST_WIDE_INT i;
5064 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
5065 if (!check_array_designated_initializer (ce, i))
5066 failure = 1;
5069 if (!failure)
5071 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
5072 do_default);
5073 if (failure == 1)
5075 error ("initializer fails to determine size of %qD", decl);
5077 else if (failure == 2)
5079 if (do_default)
5081 error ("array size missing in %qD", decl);
5083 /* If a `static' var's size isn't known, make it extern as
5084 well as static, so it does not get allocated. If it's not
5085 `static', then don't mark it extern; finish_incomplete_decl
5086 will give it a default size and it will get allocated. */
5087 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
5088 DECL_EXTERNAL (decl) = 1;
5090 else if (failure == 3)
5092 error ("zero-size array %qD", decl);
5096 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
5098 relayout_decl (decl);
5102 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5103 any appropriate error messages regarding the layout. */
5105 static void
5106 layout_var_decl (tree decl)
5108 tree type;
5110 type = TREE_TYPE (decl);
5111 if (type == error_mark_node)
5112 return;
5114 /* If we haven't already laid out this declaration, do so now.
5115 Note that we must not call complete type for an external object
5116 because it's type might involve templates that we are not
5117 supposed to instantiate yet. (And it's perfectly valid to say
5118 `extern X x' for some incomplete type `X'.) */
5119 if (!DECL_EXTERNAL (decl))
5120 complete_type (type);
5121 if (!DECL_SIZE (decl)
5122 && TREE_TYPE (decl) != error_mark_node
5123 && (COMPLETE_TYPE_P (type)
5124 || (TREE_CODE (type) == ARRAY_TYPE
5125 && !TYPE_DOMAIN (type)
5126 && COMPLETE_TYPE_P (TREE_TYPE (type)))))
5127 layout_decl (decl, 0);
5129 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
5131 /* An automatic variable with an incomplete type: that is an error.
5132 Don't talk about array types here, since we took care of that
5133 message in grokdeclarator. */
5134 error ("storage size of %qD isn%'t known", decl);
5135 TREE_TYPE (decl) = error_mark_node;
5137 #if 0
5138 /* Keep this code around in case we later want to control debug info
5139 based on whether a type is "used". (jason 1999-11-11) */
5141 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
5142 /* Let debugger know it should output info for this type. */
5143 note_debug_info_needed (ttype);
5145 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
5146 note_debug_info_needed (DECL_CONTEXT (decl));
5147 #endif
5149 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
5150 && DECL_SIZE (decl) != NULL_TREE
5151 && ! TREE_CONSTANT (DECL_SIZE (decl)))
5153 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
5154 constant_expression_warning (DECL_SIZE (decl));
5155 else
5157 error ("storage size of %qD isn%'t constant", decl);
5158 TREE_TYPE (decl) = error_mark_node;
5163 /* If a local static variable is declared in an inline function, or if
5164 we have a weak definition, we must endeavor to create only one
5165 instance of the variable at link-time. */
5167 void
5168 maybe_commonize_var (tree decl)
5170 /* Static data in a function with comdat linkage also has comdat
5171 linkage. */
5172 if (TREE_STATIC (decl)
5173 /* Don't mess with __FUNCTION__. */
5174 && ! DECL_ARTIFICIAL (decl)
5175 && DECL_FUNCTION_SCOPE_P (decl)
5176 && vague_linkage_p (DECL_CONTEXT (decl)))
5178 if (flag_weak)
5180 /* With weak symbols, we simply make the variable COMDAT;
5181 that will cause copies in multiple translations units to
5182 be merged. */
5183 comdat_linkage (decl);
5185 else
5187 if (DECL_INITIAL (decl) == NULL_TREE
5188 || DECL_INITIAL (decl) == error_mark_node)
5190 /* Without weak symbols, we can use COMMON to merge
5191 uninitialized variables. */
5192 TREE_PUBLIC (decl) = 1;
5193 DECL_COMMON (decl) = 1;
5195 else
5197 /* While for initialized variables, we must use internal
5198 linkage -- which means that multiple copies will not
5199 be merged. */
5200 TREE_PUBLIC (decl) = 0;
5201 DECL_COMMON (decl) = 0;
5202 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
5203 "sorry: semantics of inline function static "
5204 "data %q#D are wrong (you%'ll wind up "
5205 "with multiple copies)", decl))
5206 inform (DECL_SOURCE_LOCATION (decl),
5207 "you can work around this by removing the initializer");
5213 /* Issue an error message if DECL is an uninitialized const variable. */
5215 static void
5216 check_for_uninitialized_const_var (tree decl)
5218 tree type = strip_array_types (TREE_TYPE (decl));
5220 /* ``Unless explicitly declared extern, a const object does not have
5221 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5222 7.1.6 */
5223 if (VAR_P (decl)
5224 && TREE_CODE (type) != REFERENCE_TYPE
5225 && (CP_TYPE_CONST_P (type) || var_in_constexpr_fn (decl))
5226 && !DECL_INITIAL (decl))
5228 tree field = default_init_uninitialized_part (type);
5229 if (!field)
5230 return;
5232 if (CP_TYPE_CONST_P (type))
5233 permerror (DECL_SOURCE_LOCATION (decl),
5234 "uninitialized const %qD", decl);
5235 else
5237 error_at (DECL_SOURCE_LOCATION (decl),
5238 "uninitialized variable %qD in %<constexpr%> function",
5239 decl);
5240 cp_function_chain->invalid_constexpr = true;
5243 if (CLASS_TYPE_P (type))
5245 tree defaulted_ctor;
5247 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5248 "%q#T has no user-provided default constructor", type);
5249 defaulted_ctor = in_class_defaulted_default_constructor (type);
5250 if (defaulted_ctor)
5251 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5252 "constructor is not user-provided because it is "
5253 "explicitly defaulted in the class body");
5254 inform (0, "and the implicitly-defined constructor does not "
5255 "initialize %q+#D", field);
5260 /* Structure holding the current initializer being processed by reshape_init.
5261 CUR is a pointer to the current element being processed, END is a pointer
5262 after the last element present in the initializer. */
5263 typedef struct reshape_iterator_t
5265 constructor_elt *cur;
5266 constructor_elt *end;
5267 } reshape_iter;
5269 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5271 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5272 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5273 initialized. If there are no more such fields, the return value
5274 will be NULL. */
5276 tree
5277 next_initializable_field (tree field)
5279 while (field
5280 && (TREE_CODE (field) != FIELD_DECL
5281 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
5282 || DECL_ARTIFICIAL (field)))
5283 field = DECL_CHAIN (field);
5285 return field;
5288 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5289 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5290 INTEGER_CST representing the size of the array minus one (the maximum index),
5291 or NULL_TREE if the array was declared without specifying the size. D is
5292 the iterator within the constructor. */
5294 static tree
5295 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5296 tsubst_flags_t complain)
5298 tree new_init;
5299 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5300 unsigned HOST_WIDE_INT max_index_cst = 0;
5301 unsigned HOST_WIDE_INT index;
5303 /* The initializer for an array is always a CONSTRUCTOR. */
5304 new_init = build_constructor (init_list_type_node, NULL);
5306 if (sized_array_p)
5308 /* Minus 1 is used for zero sized arrays. */
5309 if (integer_all_onesp (max_index))
5310 return new_init;
5312 if (tree_fits_uhwi_p (max_index))
5313 max_index_cst = tree_to_uhwi (max_index);
5314 /* sizetype is sign extended, not zero extended. */
5315 else
5316 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5319 /* Loop until there are no more initializers. */
5320 for (index = 0;
5321 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5322 ++index)
5324 tree elt_init;
5325 constructor_elt *old_cur = d->cur;
5327 check_array_designated_initializer (d->cur, index);
5328 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5329 complain);
5330 if (elt_init == error_mark_node)
5331 return error_mark_node;
5332 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5333 size_int (index), elt_init);
5334 if (!TREE_CONSTANT (elt_init))
5335 TREE_CONSTANT (new_init) = false;
5337 /* This can happen with an invalid initializer (c++/54501). */
5338 if (d->cur == old_cur && !sized_array_p)
5339 break;
5342 return new_init;
5345 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5346 Parameters are the same of reshape_init_r. */
5348 static tree
5349 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5351 tree max_index = NULL_TREE;
5353 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5355 if (TYPE_DOMAIN (type))
5356 max_index = array_type_nelts (type);
5358 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5361 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5362 Parameters are the same of reshape_init_r. */
5364 static tree
5365 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5367 tree max_index = NULL_TREE;
5369 gcc_assert (TREE_CODE (type) == VECTOR_TYPE);
5371 if (COMPOUND_LITERAL_P (d->cur->value))
5373 tree value = d->cur->value;
5374 if (!same_type_p (TREE_TYPE (value), type))
5376 if (complain & tf_error)
5377 error ("invalid type %qT as initializer for a vector of type %qT",
5378 TREE_TYPE (d->cur->value), type);
5379 value = error_mark_node;
5381 ++d->cur;
5382 return value;
5385 /* For a vector, we initialize it as an array of the appropriate size. */
5386 if (TREE_CODE (type) == VECTOR_TYPE)
5387 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5389 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5392 /* Subroutine of reshape_init_r, processes the initializers for classes
5393 or union. Parameters are the same of reshape_init_r. */
5395 static tree
5396 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
5397 tsubst_flags_t complain)
5399 tree field;
5400 tree new_init;
5402 gcc_assert (CLASS_TYPE_P (type));
5404 /* The initializer for a class is always a CONSTRUCTOR. */
5405 new_init = build_constructor (init_list_type_node, NULL);
5406 field = next_initializable_field (TYPE_FIELDS (type));
5408 if (!field)
5410 /* [dcl.init.aggr]
5412 An initializer for an aggregate member that is an
5413 empty class shall have the form of an empty
5414 initializer-list {}. */
5415 if (!first_initializer_p)
5417 if (complain & tf_error)
5418 error ("initializer for %qT must be brace-enclosed", type);
5419 return error_mark_node;
5421 return new_init;
5424 /* Loop through the initializable fields, gathering initializers. */
5425 while (d->cur != d->end)
5427 tree field_init;
5428 constructor_elt *old_cur = d->cur;
5430 /* Handle designated initializers, as an extension. */
5431 if (d->cur->index)
5433 if (d->cur->index == error_mark_node)
5434 return error_mark_node;
5436 if (TREE_CODE (d->cur->index) == FIELD_DECL)
5437 /* We already reshaped this. */
5438 gcc_assert (d->cur->index == field);
5439 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
5440 field = lookup_field_1 (type, d->cur->index, /*want_type=*/false);
5441 else
5443 if (complain & tf_error)
5444 error ("%<[%E] =%> used in a GNU-style designated initializer"
5445 " for class %qT", d->cur->index, type);
5446 return error_mark_node;
5449 if (!field || TREE_CODE (field) != FIELD_DECL)
5451 if (complain & tf_error)
5452 error ("%qT has no non-static data member named %qD", type,
5453 d->cur->index);
5454 return error_mark_node;
5458 /* If we processed all the member of the class, we are done. */
5459 if (!field)
5460 break;
5462 field_init = reshape_init_r (TREE_TYPE (field), d,
5463 /*first_initializer_p=*/false, complain);
5464 if (field_init == error_mark_node)
5465 return error_mark_node;
5467 if (d->cur == old_cur && d->cur->index)
5469 /* This can happen with an invalid initializer for a flexible
5470 array member (c++/54441). */
5471 if (complain & tf_error)
5472 error ("invalid initializer for %q#D", field);
5473 return error_mark_node;
5476 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
5478 /* [dcl.init.aggr]
5480 When a union is initialized with a brace-enclosed
5481 initializer, the braces shall only contain an
5482 initializer for the first member of the union. */
5483 if (TREE_CODE (type) == UNION_TYPE)
5484 break;
5486 field = next_initializable_field (DECL_CHAIN (field));
5489 return new_init;
5492 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5493 designators are not valid; either complain or return true to indicate
5494 that reshape_init_r should return error_mark_node. */
5496 static bool
5497 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
5499 if (d->cur->index)
5501 if (complain & tf_error)
5502 error ("C99 designator %qE outside aggregate initializer",
5503 d->cur->index);
5504 else
5505 return true;
5507 return false;
5510 /* Subroutine of reshape_init, which processes a single initializer (part of
5511 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5512 iterator within the CONSTRUCTOR which points to the initializer to process.
5513 FIRST_INITIALIZER_P is true if this is the first initializer of the
5514 outermost CONSTRUCTOR node. */
5516 static tree
5517 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
5518 tsubst_flags_t complain)
5520 tree init = d->cur->value;
5522 if (error_operand_p (init))
5523 return error_mark_node;
5525 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
5526 && has_designator_problem (d, complain))
5527 return error_mark_node;
5529 if (TREE_CODE (type) == COMPLEX_TYPE)
5531 /* A complex type can be initialized from one or two initializers,
5532 but braces are not elided. */
5533 d->cur++;
5534 if (BRACE_ENCLOSED_INITIALIZER_P (init))
5536 if (CONSTRUCTOR_NELTS (init) > 2)
5538 if (complain & tf_error)
5539 error ("too many initializers for %qT", type);
5540 else
5541 return error_mark_node;
5544 else if (first_initializer_p && d->cur != d->end)
5546 vec<constructor_elt, va_gc> *v = 0;
5547 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
5548 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
5549 if (has_designator_problem (d, complain))
5550 return error_mark_node;
5551 d->cur++;
5552 init = build_constructor (init_list_type_node, v);
5554 return init;
5557 /* A non-aggregate type is always initialized with a single
5558 initializer. */
5559 if (!CP_AGGREGATE_TYPE_P (type))
5561 /* It is invalid to initialize a non-aggregate type with a
5562 brace-enclosed initializer before C++0x.
5563 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
5564 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
5565 a CONSTRUCTOR (with a record type). */
5566 if (TREE_CODE (init) == CONSTRUCTOR
5567 /* Don't complain about a capture-init. */
5568 && !CONSTRUCTOR_IS_DIRECT_INIT (init)
5569 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
5571 if (SCALAR_TYPE_P (type))
5573 if (cxx_dialect < cxx11
5574 /* Isn't value-initialization. */
5575 || CONSTRUCTOR_NELTS (init) > 0)
5577 if (complain & tf_error)
5578 error ("braces around scalar initializer for type %qT",
5579 type);
5580 init = error_mark_node;
5583 else
5584 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5587 d->cur++;
5588 return init;
5591 /* "If T is a class type and the initializer list has a single element of
5592 type cv U, where U is T or a class derived from T, the object is
5593 initialized from that element." Even if T is an aggregate. */
5594 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
5595 && first_initializer_p
5596 && d->end - d->cur == 1
5597 && reference_related_p (type, TREE_TYPE (init)))
5599 d->cur++;
5600 return init;
5603 /* [dcl.init.aggr]
5605 All implicit type conversions (clause _conv_) are considered when
5606 initializing the aggregate member with an initializer from an
5607 initializer-list. If the initializer can initialize a member,
5608 the member is initialized. Otherwise, if the member is itself a
5609 non-empty subaggregate, brace elision is assumed and the
5610 initializer is considered for the initialization of the first
5611 member of the subaggregate. */
5612 if (TREE_CODE (init) != CONSTRUCTOR
5613 /* But don't try this for the first initializer, since that would be
5614 looking through the outermost braces; A a2 = { a1 }; is not a
5615 valid aggregate initialization. */
5616 && !first_initializer_p
5617 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
5618 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
5619 complain)))
5621 d->cur++;
5622 return init;
5625 /* [dcl.init.string]
5627 A char array (whether plain char, signed char, or unsigned char)
5628 can be initialized by a string-literal (optionally enclosed in
5629 braces); a wchar_t array can be initialized by a wide
5630 string-literal (optionally enclosed in braces). */
5631 if (TREE_CODE (type) == ARRAY_TYPE
5632 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
5634 tree str_init = init;
5636 /* Strip one level of braces if and only if they enclose a single
5637 element (as allowed by [dcl.init.string]). */
5638 if (!first_initializer_p
5639 && TREE_CODE (str_init) == CONSTRUCTOR
5640 && vec_safe_length (CONSTRUCTOR_ELTS (str_init)) == 1)
5642 str_init = (*CONSTRUCTOR_ELTS (str_init))[0].value;
5645 /* If it's a string literal, then it's the initializer for the array
5646 as a whole. Otherwise, continue with normal initialization for
5647 array types (one value per array element). */
5648 if (TREE_CODE (str_init) == STRING_CST)
5650 if (has_designator_problem (d, complain))
5651 return error_mark_node;
5652 d->cur++;
5653 return str_init;
5657 /* The following cases are about aggregates. If we are not within a full
5658 initializer already, and there is not a CONSTRUCTOR, it means that there
5659 is a missing set of braces (that is, we are processing the case for
5660 which reshape_init exists). */
5661 if (!first_initializer_p)
5663 if (TREE_CODE (init) == CONSTRUCTOR)
5665 if (TREE_TYPE (init) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init)))
5666 /* There is no need to reshape pointer-to-member function
5667 initializers, as they are always constructed correctly
5668 by the front end. */
5670 else if (COMPOUND_LITERAL_P (init))
5671 /* For a nested compound literal, there is no need to reshape since
5672 brace elision is not allowed. Even if we decided to allow it,
5673 we should add a call to reshape_init in finish_compound_literal,
5674 before calling digest_init, so changing this code would still
5675 not be necessary. */
5676 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
5677 else
5679 ++d->cur;
5680 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5681 return reshape_init (type, init, complain);
5685 warning (OPT_Wmissing_braces, "missing braces around initializer for %qT",
5686 type);
5689 /* Dispatch to specialized routines. */
5690 if (CLASS_TYPE_P (type))
5691 return reshape_init_class (type, d, first_initializer_p, complain);
5692 else if (TREE_CODE (type) == ARRAY_TYPE)
5693 return reshape_init_array (type, d, complain);
5694 else if (TREE_CODE (type) == VECTOR_TYPE)
5695 return reshape_init_vector (type, d, complain);
5696 else
5697 gcc_unreachable();
5700 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
5701 brace-enclosed aggregate initializer.
5703 INIT is the CONSTRUCTOR containing the list of initializers describing
5704 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
5705 It may not presently match the shape of the TYPE; for example:
5707 struct S { int a; int b; };
5708 struct S a[] = { 1, 2, 3, 4 };
5710 Here INIT will hold a vector of four elements, rather than a
5711 vector of two elements, each itself a vector of two elements. This
5712 routine transforms INIT from the former form into the latter. The
5713 revised CONSTRUCTOR node is returned. */
5715 tree
5716 reshape_init (tree type, tree init, tsubst_flags_t complain)
5718 vec<constructor_elt, va_gc> *v;
5719 reshape_iter d;
5720 tree new_init;
5722 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5724 v = CONSTRUCTOR_ELTS (init);
5726 /* An empty constructor does not need reshaping, and it is always a valid
5727 initializer. */
5728 if (vec_safe_is_empty (v))
5729 return init;
5731 /* Recurse on this CONSTRUCTOR. */
5732 d.cur = &(*v)[0];
5733 d.end = d.cur + v->length ();
5735 new_init = reshape_init_r (type, &d, true, complain);
5736 if (new_init == error_mark_node)
5737 return error_mark_node;
5739 /* Make sure all the element of the constructor were used. Otherwise,
5740 issue an error about exceeding initializers. */
5741 if (d.cur != d.end)
5743 if (complain & tf_error)
5744 error ("too many initializers for %qT", type);
5745 else
5746 return error_mark_node;
5749 return new_init;
5752 /* Verify array initializer. Returns true if errors have been reported. */
5754 bool
5755 check_array_initializer (tree decl, tree type, tree init)
5757 tree element_type = TREE_TYPE (type);
5759 /* The array type itself need not be complete, because the
5760 initializer may tell us how many elements are in the array.
5761 But, the elements of the array must be complete. */
5762 if (!COMPLETE_TYPE_P (complete_type (element_type)))
5764 if (decl)
5765 error ("elements of array %q#D have incomplete type", decl);
5766 else
5767 error ("elements of array %q#T have incomplete type", type);
5768 return true;
5770 /* A compound literal can't have variable size. */
5771 if (init && !decl
5772 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
5773 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
5775 error ("variable-sized compound literal");
5776 return true;
5778 return false;
5781 /* Subroutine of check_initializer; args are passed down from that function.
5782 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
5784 static tree
5785 build_aggr_init_full_exprs (tree decl, tree init, int flags)
5788 gcc_assert (stmts_are_full_exprs_p ());
5789 return build_aggr_init (decl, init, flags, tf_warning_or_error);
5792 /* Verify INIT (the initializer for DECL), and record the
5793 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
5794 grok_reference_init.
5796 If the return value is non-NULL, it is an expression that must be
5797 evaluated dynamically to initialize DECL. */
5799 static tree
5800 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
5802 tree type = TREE_TYPE (decl);
5803 tree init_code = NULL;
5804 tree core_type;
5806 /* Things that are going to be initialized need to have complete
5807 type. */
5808 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
5810 if (DECL_HAS_VALUE_EXPR_P (decl))
5812 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
5813 it doesn't have storage to be initialized. */
5814 gcc_assert (init == NULL_TREE);
5815 return NULL_TREE;
5818 if (type == error_mark_node)
5819 /* We will have already complained. */
5820 return NULL_TREE;
5822 if (TREE_CODE (type) == ARRAY_TYPE)
5824 if (check_array_initializer (decl, type, init))
5825 return NULL_TREE;
5827 else if (!COMPLETE_TYPE_P (type))
5829 error ("%q#D has incomplete type", decl);
5830 TREE_TYPE (decl) = error_mark_node;
5831 return NULL_TREE;
5833 else
5834 /* There is no way to make a variable-sized class type in GNU C++. */
5835 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
5837 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
5839 int init_len = vec_safe_length (CONSTRUCTOR_ELTS (init));
5840 if (SCALAR_TYPE_P (type))
5842 if (init_len == 0)
5844 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5845 init = build_zero_init (type, NULL_TREE, false);
5847 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
5849 error ("scalar object %qD requires one element in initializer",
5850 decl);
5851 TREE_TYPE (decl) = error_mark_node;
5852 return NULL_TREE;
5857 if (TREE_CODE (decl) == CONST_DECL)
5859 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
5861 DECL_INITIAL (decl) = init;
5863 gcc_assert (init != NULL_TREE);
5864 init = NULL_TREE;
5866 else if (!init && DECL_REALLY_EXTERN (decl))
5868 else if (init || type_build_ctor_call (type)
5869 || TREE_CODE (type) == REFERENCE_TYPE)
5871 if (TREE_CODE (type) == REFERENCE_TYPE)
5873 init = grok_reference_init (decl, type, init, flags);
5874 flags |= LOOKUP_ALREADY_DIGESTED;
5876 else if (!init)
5877 check_for_uninitialized_const_var (decl);
5878 /* Do not reshape constructors of vectors (they don't need to be
5879 reshaped. */
5880 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
5882 if (is_std_init_list (type))
5884 init = perform_implicit_conversion (type, init,
5885 tf_warning_or_error);
5886 flags |= LOOKUP_ALREADY_DIGESTED;
5888 else if (TYPE_NON_AGGREGATE_CLASS (type))
5890 /* Don't reshape if the class has constructors. */
5891 if (cxx_dialect == cxx98)
5892 error ("in C++98 %qD must be initialized by constructor, "
5893 "not by %<{...}%>",
5894 decl);
5896 else if (TREE_CODE (type) == VECTOR_TYPE && TYPE_VECTOR_OPAQUE (type))
5898 error ("opaque vector types cannot be initialized");
5899 init = error_mark_node;
5901 else
5903 init = reshape_init (type, init, tf_warning_or_error);
5904 flags |= LOOKUP_NO_NARROWING;
5907 else if (TREE_CODE (init) == TREE_LIST
5908 && TREE_TYPE (init) != unknown_type_node
5909 && !MAYBE_CLASS_TYPE_P (type))
5911 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
5913 /* We get here with code like `int a (2);' */
5914 init = build_x_compound_expr_from_list (init, ELK_INIT,
5915 tf_warning_or_error);
5918 /* If DECL has an array type without a specific bound, deduce the
5919 array size from the initializer. */
5920 maybe_deduce_size_from_array_init (decl, init);
5921 type = TREE_TYPE (decl);
5922 if (type == error_mark_node)
5923 return NULL_TREE;
5925 if ((type_build_ctor_call (type) || CLASS_TYPE_P (type))
5926 && !(flags & LOOKUP_ALREADY_DIGESTED)
5927 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
5928 && CP_AGGREGATE_TYPE_P (type)
5929 && (CLASS_TYPE_P (type)
5930 || !TYPE_NEEDS_CONSTRUCTING (type)
5931 || type_has_extended_temps (type))))
5933 init_code = build_aggr_init_full_exprs (decl, init, flags);
5935 /* A constructor call is a non-trivial initializer even if
5936 it isn't explicitly written. */
5937 if (TREE_SIDE_EFFECTS (init_code))
5938 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
5940 /* If this is a constexpr initializer, expand_default_init will
5941 have returned an INIT_EXPR rather than a CALL_EXPR. In that
5942 case, pull the initializer back out and pass it down into
5943 store_init_value. */
5944 while (TREE_CODE (init_code) == EXPR_STMT
5945 || TREE_CODE (init_code) == CONVERT_EXPR)
5946 init_code = TREE_OPERAND (init_code, 0);
5947 if (TREE_CODE (init_code) == INIT_EXPR)
5949 init = TREE_OPERAND (init_code, 1);
5950 init_code = NULL_TREE;
5951 /* Don't call digest_init; it's unnecessary and will complain
5952 about aggregate initialization of non-aggregate classes. */
5953 flags |= LOOKUP_ALREADY_DIGESTED;
5955 else if (DECL_DECLARED_CONSTEXPR_P (decl))
5957 /* Declared constexpr, but no suitable initializer; massage
5958 init appropriately so we can pass it into store_init_value
5959 for the error. */
5960 if (CLASS_TYPE_P (type)
5961 && (!init || TREE_CODE (init) == TREE_LIST))
5963 init = build_functional_cast (type, init, tf_none);
5964 if (TREE_CODE (init) == TARGET_EXPR)
5965 TARGET_EXPR_DIRECT_INIT_P (init) = true;
5967 init_code = NULL_TREE;
5969 else
5970 init = NULL_TREE;
5973 if (init && TREE_CODE (init) != TREE_VEC)
5975 /* In aggregate initialization of a variable, each element
5976 initialization is a full-expression because there is no
5977 enclosing expression. */
5978 gcc_assert (stmts_are_full_exprs_p ());
5980 init_code = store_init_value (decl, init, cleanups, flags);
5982 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
5983 && DECL_INITIAL (decl)
5984 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
5985 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
5986 warning (0, "array %qD initialized by parenthesized string literal %qE",
5987 decl, DECL_INITIAL (decl));
5988 init = NULL;
5991 else
5993 if (CLASS_TYPE_P (core_type = strip_array_types (type))
5994 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
5995 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
5996 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
5997 /*complain=*/true);
5999 check_for_uninitialized_const_var (decl);
6002 if (init && init != error_mark_node)
6003 init_code = build2 (INIT_EXPR, type, decl, init);
6005 if (init_code)
6007 /* We might have set these in cp_finish_decl. */
6008 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
6009 TREE_CONSTANT (decl) = false;
6012 if (init_code && DECL_IN_AGGR_P (decl))
6014 static int explained = 0;
6016 if (cxx_dialect < cxx11)
6017 error ("initializer invalid for static member with constructor");
6018 else
6019 error ("non-constant in-class initialization invalid for static "
6020 "member %qD", decl);
6021 if (!explained)
6023 inform (input_location,
6024 "(an out of class initialization is required)");
6025 explained = 1;
6027 return NULL_TREE;
6030 return init_code;
6033 /* If DECL is not a local variable, give it RTL. */
6035 static void
6036 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
6038 int toplev = toplevel_bindings_p ();
6039 int defer_p;
6040 const char *filename;
6042 /* Set the DECL_ASSEMBLER_NAME for the object. */
6043 if (asmspec)
6045 /* The `register' keyword, when used together with an
6046 asm-specification, indicates that the variable should be
6047 placed in a particular register. */
6048 if (VAR_P (decl) && DECL_REGISTER (decl))
6050 set_user_assembler_name (decl, asmspec);
6051 DECL_HARD_REGISTER (decl) = 1;
6053 else
6055 if (TREE_CODE (decl) == FUNCTION_DECL
6056 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
6057 set_builtin_user_assembler_name (decl, asmspec);
6058 set_user_assembler_name (decl, asmspec);
6062 /* Handle non-variables up front. */
6063 if (!VAR_P (decl))
6065 rest_of_decl_compilation (decl, toplev, at_eof);
6066 return;
6069 /* If we see a class member here, it should be a static data
6070 member. */
6071 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
6073 gcc_assert (TREE_STATIC (decl));
6074 /* An in-class declaration of a static data member should be
6075 external; it is only a declaration, and not a definition. */
6076 if (init == NULL_TREE)
6077 gcc_assert (DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl));
6080 /* We don't create any RTL for local variables. */
6081 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6082 return;
6084 /* We defer emission of local statics until the corresponding
6085 DECL_EXPR is expanded. */
6086 defer_p = DECL_FUNCTION_SCOPE_P (decl) || DECL_VIRTUAL_P (decl);
6088 /* We try to defer namespace-scope static constants so that they are
6089 not emitted into the object file unnecessarily. */
6090 filename = LOCATION_FILE (input_location);
6091 if (!DECL_VIRTUAL_P (decl)
6092 && TREE_READONLY (decl)
6093 && DECL_INITIAL (decl) != NULL_TREE
6094 && DECL_INITIAL (decl) != error_mark_node
6095 && filename != NULL
6096 && ! EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl))
6097 && toplev
6098 && !TREE_PUBLIC (decl))
6100 /* Fool with the linkage of static consts according to #pragma
6101 interface. */
6102 struct c_fileinfo *finfo = get_fileinfo (filename);
6103 if (!finfo->interface_unknown && !TREE_PUBLIC (decl))
6105 TREE_PUBLIC (decl) = 1;
6106 DECL_EXTERNAL (decl) = finfo->interface_only;
6109 defer_p = 1;
6111 /* Likewise for template instantiations. */
6112 else if (DECL_LANG_SPECIFIC (decl)
6113 && DECL_IMPLICIT_INSTANTIATION (decl))
6114 defer_p = 1;
6116 /* If we're not deferring, go ahead and assemble the variable. */
6117 if (!defer_p)
6118 rest_of_decl_compilation (decl, toplev, at_eof);
6121 /* walk_tree helper for wrap_temporary_cleanups, below. */
6123 static tree
6124 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
6126 /* Stop at types or full-expression boundaries. */
6127 if (TYPE_P (*stmt_p)
6128 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
6130 *walk_subtrees = 0;
6131 return NULL_TREE;
6134 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
6136 tree guard = (tree)data;
6137 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
6139 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
6140 /* Tell honor_protect_cleanup_actions to handle this as a separate
6141 cleanup. */
6142 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
6144 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
6147 return NULL_TREE;
6150 /* We're initializing a local variable which has a cleanup GUARD. If there
6151 are any temporaries used in the initializer INIT of this variable, we
6152 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6153 variable will be cleaned up properly if one of them throws.
6155 Unfortunately, there's no way to express this properly in terms of
6156 nesting, as the regions for the temporaries overlap the region for the
6157 variable itself; if there are two temporaries, the variable needs to be
6158 the first thing destroyed if either of them throws. However, we only
6159 want to run the variable's cleanup if it actually got constructed. So
6160 we need to guard the temporary cleanups with the variable's cleanup if
6161 they are run on the normal path, but not if they are run on the
6162 exceptional path. We implement this by telling
6163 honor_protect_cleanup_actions to strip the variable cleanup from the
6164 exceptional path. */
6166 static void
6167 wrap_temporary_cleanups (tree init, tree guard)
6169 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
6172 /* Generate code to initialize DECL (a local variable). */
6174 static void
6175 initialize_local_var (tree decl, tree init)
6177 tree type = TREE_TYPE (decl);
6178 tree cleanup;
6179 int already_used;
6181 gcc_assert (VAR_P (decl)
6182 || TREE_CODE (decl) == RESULT_DECL);
6183 gcc_assert (!TREE_STATIC (decl));
6185 if (DECL_SIZE (decl) == NULL_TREE)
6187 /* If we used it already as memory, it must stay in memory. */
6188 DECL_INITIAL (decl) = NULL_TREE;
6189 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6190 return;
6193 if (type == error_mark_node)
6194 return;
6196 /* Compute and store the initial value. */
6197 already_used = TREE_USED (decl) || TREE_USED (type);
6198 if (TREE_USED (type))
6199 DECL_READ_P (decl) = 1;
6201 /* Generate a cleanup, if necessary. */
6202 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6204 /* Perform the initialization. */
6205 if (init)
6207 tree rinit = (TREE_CODE (init) == INIT_EXPR
6208 ? TREE_OPERAND (init, 1) : NULL_TREE);
6209 if (rinit && !TREE_SIDE_EFFECTS (rinit))
6211 /* Stick simple initializers in DECL_INITIAL so that
6212 -Wno-init-self works (c++/34772). */
6213 gcc_assert (TREE_OPERAND (init, 0) == decl);
6214 DECL_INITIAL (decl) = rinit;
6216 if (warn_init_self && TREE_CODE (type) == REFERENCE_TYPE)
6218 STRIP_NOPS (rinit);
6219 if (rinit == decl)
6220 warning_at (DECL_SOURCE_LOCATION (decl),
6221 OPT_Winit_self,
6222 "reference %qD is initialized with itself", decl);
6225 else
6227 int saved_stmts_are_full_exprs_p;
6229 /* If we're only initializing a single object, guard the
6230 destructors of any temporaries used in its initializer with
6231 its destructor. This isn't right for arrays because each
6232 element initialization is a full-expression. */
6233 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6234 wrap_temporary_cleanups (init, cleanup);
6236 gcc_assert (building_stmt_list_p ());
6237 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6238 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6239 finish_expr_stmt (init);
6240 current_stmt_tree ()->stmts_are_full_exprs_p =
6241 saved_stmts_are_full_exprs_p;
6245 /* Set this to 0 so we can tell whether an aggregate which was
6246 initialized was ever used. Don't do this if it has a
6247 destructor, so we don't complain about the 'resource
6248 allocation is initialization' idiom. Now set
6249 attribute((unused)) on types so decls of that type will be
6250 marked used. (see TREE_USED, above.) */
6251 if (TYPE_NEEDS_CONSTRUCTING (type)
6252 && ! already_used
6253 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6254 && DECL_NAME (decl))
6255 TREE_USED (decl) = 0;
6256 else if (already_used)
6257 TREE_USED (decl) = 1;
6259 if (cleanup)
6260 finish_decl_cleanup (decl, cleanup);
6263 /* DECL is a VAR_DECL for a compiler-generated variable with static
6264 storage duration (like a virtual table) whose initializer is a
6265 compile-time constant. Initialize the variable and provide it to the
6266 back end. */
6268 void
6269 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6271 tree init;
6272 gcc_assert (DECL_ARTIFICIAL (decl));
6273 init = build_constructor (TREE_TYPE (decl), v);
6274 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6275 DECL_INITIAL (decl) = init;
6276 DECL_INITIALIZED_P (decl) = 1;
6277 determine_visibility (decl);
6278 layout_var_decl (decl);
6279 maybe_commonize_var (decl);
6280 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6283 /* INIT is the initializer for a variable, as represented by the
6284 parser. Returns true iff INIT is type-dependent. */
6286 static bool
6287 type_dependent_init_p (tree init)
6289 if (TREE_CODE (init) == TREE_LIST)
6290 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6291 return any_type_dependent_elements_p (init);
6292 else if (TREE_CODE (init) == CONSTRUCTOR)
6293 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6295 vec<constructor_elt, va_gc> *elts;
6296 size_t nelts;
6297 size_t i;
6299 elts = CONSTRUCTOR_ELTS (init);
6300 nelts = vec_safe_length (elts);
6301 for (i = 0; i < nelts; ++i)
6302 if (type_dependent_init_p ((*elts)[i].value))
6303 return true;
6305 else
6306 /* It must be a simple expression, e.g., int i = 3; */
6307 return type_dependent_expression_p (init);
6309 return false;
6312 /* INIT is the initializer for a variable, as represented by the
6313 parser. Returns true iff INIT is value-dependent. */
6315 static bool
6316 value_dependent_init_p (tree init)
6318 if (TREE_CODE (init) == TREE_LIST)
6319 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6320 return any_value_dependent_elements_p (init);
6321 else if (TREE_CODE (init) == CONSTRUCTOR)
6322 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6324 vec<constructor_elt, va_gc> *elts;
6325 size_t nelts;
6326 size_t i;
6328 elts = CONSTRUCTOR_ELTS (init);
6329 nelts = vec_safe_length (elts);
6330 for (i = 0; i < nelts; ++i)
6331 if (value_dependent_init_p ((*elts)[i].value))
6332 return true;
6334 else
6335 /* It must be a simple expression, e.g., int i = 3; */
6336 return value_dependent_expression_p (init);
6338 return false;
6341 /* Finish processing of a declaration;
6342 install its line number and initial value.
6343 If the length of an array type is not known before,
6344 it must be determined now, from the initial value, or it is an error.
6346 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6347 true, then INIT is an integral constant expression.
6349 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6350 if the (init) syntax was used. */
6352 void
6353 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
6354 tree asmspec_tree, int flags)
6356 tree type;
6357 vec<tree, va_gc> *cleanups = NULL;
6358 const char *asmspec = NULL;
6359 int was_readonly = 0;
6360 bool var_definition_p = false;
6361 tree auto_node;
6363 if (decl == error_mark_node)
6364 return;
6365 else if (! decl)
6367 if (init)
6368 error ("assignment (not initialization) in declaration");
6369 return;
6372 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6373 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6374 gcc_assert (TREE_CODE (decl) != PARM_DECL);
6376 type = TREE_TYPE (decl);
6377 if (type == error_mark_node)
6378 return;
6380 /* If a name was specified, get the string. */
6381 if (at_namespace_scope_p ())
6382 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
6383 if (asmspec_tree && asmspec_tree != error_mark_node)
6384 asmspec = TREE_STRING_POINTER (asmspec_tree);
6386 if (current_class_type
6387 && CP_DECL_CONTEXT (decl) == current_class_type
6388 && TYPE_BEING_DEFINED (current_class_type)
6389 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
6390 && (DECL_INITIAL (decl) || init))
6391 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
6393 if (TREE_CODE (decl) != FUNCTION_DECL
6394 && (auto_node = type_uses_auto (type)))
6396 tree d_init;
6397 if (init == NULL_TREE)
6399 if (DECL_LANG_SPECIFIC (decl)
6400 && DECL_TEMPLATE_INSTANTIATION (decl)
6401 && !DECL_TEMPLATE_INSTANTIATED (decl))
6403 /* init is null because we're deferring instantiating the
6404 initializer until we need it. Well, we need it now. */
6405 instantiate_decl (decl, /*defer_ok*/true, /*expl*/false);
6406 return;
6409 error ("declaration of %q#D has no initializer", decl);
6410 TREE_TYPE (decl) = error_mark_node;
6411 return;
6413 d_init = init;
6414 if (TREE_CODE (d_init) == TREE_LIST)
6415 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
6416 tf_warning_or_error);
6417 d_init = resolve_nondeduced_context (d_init);
6418 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init,
6419 auto_node);
6420 if (type == error_mark_node)
6421 return;
6422 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
6425 if (!ensure_literal_type_for_constexpr_object (decl))
6426 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
6428 if (VAR_P (decl)
6429 && DECL_CLASS_SCOPE_P (decl)
6430 && DECL_INITIALIZED_IN_CLASS_P (decl))
6431 check_static_variable_definition (decl, type);
6433 if (init && TREE_CODE (decl) == FUNCTION_DECL)
6435 tree clone;
6436 if (init == ridpointers[(int)RID_DELETE])
6438 /* FIXME check this is 1st decl. */
6439 DECL_DELETED_FN (decl) = 1;
6440 DECL_DECLARED_INLINE_P (decl) = 1;
6441 DECL_INITIAL (decl) = error_mark_node;
6442 FOR_EACH_CLONE (clone, decl)
6444 DECL_DELETED_FN (clone) = 1;
6445 DECL_DECLARED_INLINE_P (clone) = 1;
6446 DECL_INITIAL (clone) = error_mark_node;
6448 init = NULL_TREE;
6450 else if (init == ridpointers[(int)RID_DEFAULT])
6452 if (defaultable_fn_check (decl))
6453 DECL_DEFAULTED_FN (decl) = 1;
6454 else
6455 DECL_INITIAL (decl) = NULL_TREE;
6459 if (init && VAR_P (decl))
6461 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
6462 /* If DECL is a reference, then we want to know whether init is a
6463 reference constant; init_const_expr_p as passed tells us whether
6464 it's an rvalue constant. */
6465 if (TREE_CODE (type) == REFERENCE_TYPE)
6466 init_const_expr_p = potential_constant_expression (init);
6467 if (init_const_expr_p)
6469 /* Set these flags now for templates. We'll update the flags in
6470 store_init_value for instantiations. */
6471 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
6472 if (decl_maybe_constant_var_p (decl))
6473 TREE_CONSTANT (decl) = 1;
6477 if (processing_template_decl)
6479 bool type_dependent_p;
6481 /* Add this declaration to the statement-tree. */
6482 if (at_function_scope_p ())
6483 add_decl_expr (decl);
6485 type_dependent_p = dependent_type_p (type);
6487 if (check_for_bare_parameter_packs (init))
6489 init = NULL_TREE;
6490 DECL_INITIAL (decl) = NULL_TREE;
6493 /* Generally, initializers in templates are expanded when the
6494 template is instantiated. But, if DECL is a variable constant
6495 then it can be used in future constant expressions, so its value
6496 must be available. */
6498 if (!VAR_P (decl) || dependent_type_p (type))
6499 /* We can't do anything if the decl has dependent type. */;
6500 else if (init
6501 && init_const_expr_p
6502 && !type_dependent_p
6503 && TREE_CODE (type) != REFERENCE_TYPE
6504 && decl_maybe_constant_var_p (decl)
6505 && !type_dependent_init_p (init)
6506 && !value_dependent_init_p (init))
6508 /* This variable seems to be a non-dependent constant, so process
6509 its initializer. If check_initializer returns non-null the
6510 initialization wasn't constant after all. */
6511 tree init_code;
6512 cleanups = make_tree_vector ();
6513 init_code = check_initializer (decl, init, flags, &cleanups);
6514 if (init_code == NULL_TREE)
6515 init = NULL_TREE;
6516 release_tree_vector (cleanups);
6518 else if (!DECL_PRETTY_FUNCTION_P (decl))
6520 /* Deduce array size even if the initializer is dependent. */
6521 maybe_deduce_size_from_array_init (decl, init);
6522 /* And complain about multiple initializers. */
6523 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
6524 && !MAYBE_CLASS_TYPE_P (type))
6525 init = build_x_compound_expr_from_list (init, ELK_INIT,
6526 tf_warning_or_error);
6529 if (init)
6530 DECL_INITIAL (decl) = init;
6531 return;
6534 /* Just store non-static data member initializers for later. */
6535 if (init && TREE_CODE (decl) == FIELD_DECL)
6536 DECL_INITIAL (decl) = init;
6538 /* Take care of TYPE_DECLs up front. */
6539 if (TREE_CODE (decl) == TYPE_DECL)
6541 if (type != error_mark_node
6542 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
6544 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
6545 warning (0, "shadowing previous type declaration of %q#D", decl);
6546 set_identifier_type_value (DECL_NAME (decl), decl);
6549 /* If we have installed this as the canonical typedef for this
6550 type, and that type has not been defined yet, delay emitting
6551 the debug information for it, as we will emit it later. */
6552 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
6553 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
6554 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
6556 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
6557 at_eof);
6558 return;
6561 /* A reference will be modified here, as it is initialized. */
6562 if (! DECL_EXTERNAL (decl)
6563 && TREE_READONLY (decl)
6564 && TREE_CODE (type) == REFERENCE_TYPE)
6566 was_readonly = 1;
6567 TREE_READONLY (decl) = 0;
6570 if (VAR_P (decl))
6572 /* If this is a local variable that will need a mangled name,
6573 register it now. We must do this before processing the
6574 initializer for the variable, since the initialization might
6575 require a guard variable, and since the mangled name of the
6576 guard variable will depend on the mangled name of this
6577 variable. */
6578 if (DECL_FUNCTION_SCOPE_P (decl)
6579 && TREE_STATIC (decl)
6580 && !DECL_ARTIFICIAL (decl))
6582 push_local_name (decl);
6583 if (DECL_CONSTRUCTOR_P (current_function_decl)
6584 || DECL_DESTRUCTOR_P (current_function_decl))
6585 /* Normally local_decls is populated during GIMPLE lowering,
6586 but [cd]tors are never actually compiled directly. We need
6587 to put statics on the list so we can deal with the label
6588 address extension. FIXME. */
6589 add_local_decl (cfun, decl);
6592 /* Convert the initializer to the type of DECL, if we have not
6593 already initialized DECL. */
6594 if (!DECL_INITIALIZED_P (decl)
6595 /* If !DECL_EXTERNAL then DECL is being defined. In the
6596 case of a static data member initialized inside the
6597 class-specifier, there can be an initializer even if DECL
6598 is *not* defined. */
6599 && (!DECL_EXTERNAL (decl) || init))
6601 if (TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6603 tree jclass
6604 = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jclass"));
6605 /* Allow libjava/prims.cc define primitive classes. */
6606 if (init != NULL_TREE
6607 || jclass == NULL_TREE
6608 || TREE_CODE (jclass) != TYPE_DECL
6609 || !POINTER_TYPE_P (TREE_TYPE (jclass))
6610 || !same_type_ignoring_top_level_qualifiers_p
6611 (type, TREE_TYPE (TREE_TYPE (jclass))))
6612 error ("Java object %qD not allocated with %<new%>", decl);
6613 init = NULL_TREE;
6615 cleanups = make_tree_vector ();
6616 init = check_initializer (decl, init, flags, &cleanups);
6618 /* Handle:
6620 [dcl.init]
6622 The memory occupied by any object of static storage
6623 duration is zero-initialized at program startup before
6624 any other initialization takes place.
6626 We cannot create an appropriate initializer until after
6627 the type of DECL is finalized. If DECL_INITIAL is set,
6628 then the DECL is statically initialized, and any
6629 necessary zero-initialization has already been performed. */
6630 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
6631 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
6632 /*nelts=*/NULL_TREE,
6633 /*static_storage_p=*/true);
6634 /* Remember that the initialization for this variable has
6635 taken place. */
6636 DECL_INITIALIZED_P (decl) = 1;
6637 /* This declaration is the definition of this variable,
6638 unless we are initializing a static data member within
6639 the class specifier. */
6640 if (!DECL_EXTERNAL (decl))
6641 var_definition_p = true;
6643 /* If the variable has an array type, lay out the type, even if
6644 there is no initializer. It is valid to index through the
6645 array, and we must get TYPE_ALIGN set correctly on the array
6646 type. */
6647 else if (TREE_CODE (type) == ARRAY_TYPE)
6648 layout_type (type);
6650 if (TREE_STATIC (decl)
6651 && !at_function_scope_p ()
6652 && current_function_decl == NULL)
6653 /* So decl is a global variable or a static member of a
6654 non local class. Record the types it uses
6655 so that we can decide later to emit debug info for them. */
6656 record_types_used_by_current_var_decl (decl);
6658 else if (TREE_CODE (decl) == FIELD_DECL
6659 && TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6660 error ("non-static data member %qD has Java class type", decl);
6662 /* Add this declaration to the statement-tree. This needs to happen
6663 after the call to check_initializer so that the DECL_EXPR for a
6664 reference temp is added before the DECL_EXPR for the reference itself. */
6665 if (DECL_FUNCTION_SCOPE_P (decl))
6667 /* If we're building a variable sized type, and we might be
6668 reachable other than via the top of the current binding
6669 level, then create a new BIND_EXPR so that we deallocate
6670 the object at the right time. */
6671 if (VAR_P (decl)
6672 && DECL_SIZE (decl)
6673 && !TREE_CONSTANT (DECL_SIZE (decl))
6674 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
6676 tree bind;
6677 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6678 TREE_SIDE_EFFECTS (bind) = 1;
6679 add_stmt (bind);
6680 BIND_EXPR_BODY (bind) = push_stmt_list ();
6682 add_decl_expr (decl);
6685 /* Let the middle end know about variables and functions -- but not
6686 static data members in uninstantiated class templates. */
6687 if (VAR_OR_FUNCTION_DECL_P (decl))
6689 if (VAR_P (decl))
6691 layout_var_decl (decl);
6692 maybe_commonize_var (decl);
6695 /* This needs to happen after the linkage is set. */
6696 determine_visibility (decl);
6698 if (var_definition_p && TREE_STATIC (decl))
6700 /* If a TREE_READONLY variable needs initialization
6701 at runtime, it is no longer readonly and we need to
6702 avoid MEM_READONLY_P being set on RTL created for it. */
6703 if (init)
6705 if (TREE_READONLY (decl))
6706 TREE_READONLY (decl) = 0;
6707 was_readonly = 0;
6709 else if (was_readonly)
6710 TREE_READONLY (decl) = 1;
6712 /* Likewise if it needs destruction. */
6713 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
6714 TREE_READONLY (decl) = 0;
6717 make_rtl_for_nonlocal_decl (decl, init, asmspec);
6719 /* Check for abstractness of the type. Notice that there is no
6720 need to strip array types here since the check for those types
6721 is already done within create_array_type_for_decl. */
6722 abstract_virtuals_error (decl, type);
6724 if (TREE_TYPE (decl) == error_mark_node)
6725 /* No initialization required. */
6727 else if (TREE_CODE (decl) == FUNCTION_DECL)
6729 if (init)
6731 if (init == ridpointers[(int)RID_DEFAULT])
6733 /* An out-of-class default definition is defined at
6734 the point where it is explicitly defaulted. */
6735 if (DECL_DELETED_FN (decl))
6736 maybe_explain_implicit_delete (decl);
6737 else if (DECL_INITIAL (decl) == error_mark_node)
6738 synthesize_method (decl);
6740 else
6741 error ("function %q#D is initialized like a variable", decl);
6743 /* else no initialization required. */
6745 else if (DECL_EXTERNAL (decl)
6746 && ! (DECL_LANG_SPECIFIC (decl)
6747 && DECL_NOT_REALLY_EXTERN (decl)))
6749 if (init)
6750 DECL_INITIAL (decl) = init;
6752 /* A variable definition. */
6753 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6754 /* Initialize the local variable. */
6755 initialize_local_var (decl, init);
6757 /* If a variable is defined, and then a subsequent
6758 definition with external linkage is encountered, we will
6759 get here twice for the same variable. We want to avoid
6760 calling expand_static_init more than once. For variables
6761 that are not static data members, we can call
6762 expand_static_init only when we actually process the
6763 initializer. It is not legal to redeclare a static data
6764 member, so this issue does not arise in that case. */
6765 else if (var_definition_p && TREE_STATIC (decl))
6766 expand_static_init (decl, init);
6769 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
6770 reference, insert it in the statement-tree now. */
6771 if (cleanups)
6773 unsigned i; tree t;
6774 FOR_EACH_VEC_ELT (*cleanups, i, t)
6775 push_cleanup (decl, t, false);
6776 release_tree_vector (cleanups);
6779 if (was_readonly)
6780 TREE_READONLY (decl) = 1;
6782 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
6785 /* Returns a declaration for a VAR_DECL as if:
6787 extern "C" TYPE NAME;
6789 had been seen. Used to create compiler-generated global
6790 variables. */
6792 static tree
6793 declare_global_var (tree name, tree type)
6795 tree decl;
6797 push_to_top_level ();
6798 decl = build_decl (input_location, VAR_DECL, name, type);
6799 TREE_PUBLIC (decl) = 1;
6800 DECL_EXTERNAL (decl) = 1;
6801 DECL_ARTIFICIAL (decl) = 1;
6802 /* If the user has explicitly declared this variable (perhaps
6803 because the code we are compiling is part of a low-level runtime
6804 library), then it is possible that our declaration will be merged
6805 with theirs by pushdecl. */
6806 decl = pushdecl (decl);
6807 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
6808 pop_from_top_level ();
6810 return decl;
6813 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
6814 if "__cxa_atexit" is not being used) corresponding to the function
6815 to be called when the program exits. */
6817 static tree
6818 get_atexit_fn_ptr_type (void)
6820 tree fn_type;
6822 if (!atexit_fn_ptr_type_node)
6824 tree arg_type;
6825 if (flag_use_cxa_atexit
6826 && !targetm.cxx.use_atexit_for_cxa_atexit ())
6827 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
6828 arg_type = ptr_type_node;
6829 else
6830 /* The parameter to "atexit" is "void (*)(void)". */
6831 arg_type = NULL_TREE;
6833 fn_type = build_function_type_list (void_type_node,
6834 arg_type, NULL_TREE);
6835 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
6838 return atexit_fn_ptr_type_node;
6841 /* Returns a pointer to the `atexit' function. Note that if
6842 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
6843 `__cxa_atexit' function specified in the IA64 C++ ABI. */
6845 static tree
6846 get_atexit_node (void)
6848 tree atexit_fndecl;
6849 tree fn_type;
6850 tree fn_ptr_type;
6851 const char *name;
6852 bool use_aeabi_atexit;
6854 if (atexit_node)
6855 return atexit_node;
6857 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
6859 /* The declaration for `__cxa_atexit' is:
6861 int __cxa_atexit (void (*)(void *), void *, void *)
6863 We build up the argument types and then the function type
6864 itself. */
6865 tree argtype0, argtype1, argtype2;
6867 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
6868 /* First, build the pointer-to-function type for the first
6869 argument. */
6870 fn_ptr_type = get_atexit_fn_ptr_type ();
6871 /* Then, build the rest of the argument types. */
6872 argtype2 = ptr_type_node;
6873 if (use_aeabi_atexit)
6875 argtype1 = fn_ptr_type;
6876 argtype0 = ptr_type_node;
6878 else
6880 argtype1 = ptr_type_node;
6881 argtype0 = fn_ptr_type;
6883 /* And the final __cxa_atexit type. */
6884 fn_type = build_function_type_list (integer_type_node,
6885 argtype0, argtype1, argtype2,
6886 NULL_TREE);
6887 if (use_aeabi_atexit)
6888 name = "__aeabi_atexit";
6889 else
6890 name = "__cxa_atexit";
6892 else
6894 /* The declaration for `atexit' is:
6896 int atexit (void (*)());
6898 We build up the argument types and then the function type
6899 itself. */
6900 fn_ptr_type = get_atexit_fn_ptr_type ();
6901 /* Build the final atexit type. */
6902 fn_type = build_function_type_list (integer_type_node,
6903 fn_ptr_type, NULL_TREE);
6904 name = "atexit";
6907 /* Now, build the function declaration. */
6908 push_lang_context (lang_name_c);
6909 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
6910 mark_used (atexit_fndecl);
6911 pop_lang_context ();
6912 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
6914 return atexit_node;
6917 /* Like get_atexit_node, but for thread-local cleanups. */
6919 static tree
6920 get_thread_atexit_node (void)
6922 /* The declaration for `__cxa_thread_atexit' is:
6924 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
6925 tree fn_type = build_function_type_list (integer_type_node,
6926 get_atexit_fn_ptr_type (),
6927 ptr_type_node, ptr_type_node,
6928 NULL_TREE);
6930 /* Now, build the function declaration. */
6931 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
6932 ECF_LEAF | ECF_NOTHROW);
6933 return decay_conversion (atexit_fndecl, tf_warning_or_error);
6936 /* Returns the __dso_handle VAR_DECL. */
6938 static tree
6939 get_dso_handle_node (void)
6941 if (dso_handle_node)
6942 return dso_handle_node;
6944 /* Declare the variable. */
6945 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
6946 ptr_type_node);
6948 #ifdef HAVE_GAS_HIDDEN
6949 if (dso_handle_node != error_mark_node)
6951 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
6952 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
6954 #endif
6956 return dso_handle_node;
6959 /* Begin a new function with internal linkage whose job will be simply
6960 to destroy some particular variable. */
6962 static GTY(()) int start_cleanup_cnt;
6964 static tree
6965 start_cleanup_fn (void)
6967 char name[32];
6968 tree fntype;
6969 tree fndecl;
6970 bool use_cxa_atexit = flag_use_cxa_atexit
6971 && !targetm.cxx.use_atexit_for_cxa_atexit ();
6973 push_to_top_level ();
6975 /* No need to mangle this. */
6976 push_lang_context (lang_name_c);
6978 /* Build the name of the function. */
6979 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
6980 /* Build the function declaration. */
6981 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
6982 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
6983 /* It's a function with internal linkage, generated by the
6984 compiler. */
6985 TREE_PUBLIC (fndecl) = 0;
6986 DECL_ARTIFICIAL (fndecl) = 1;
6987 /* Make the function `inline' so that it is only emitted if it is
6988 actually needed. It is unlikely that it will be inlined, since
6989 it is only called via a function pointer, but we avoid unnecessary
6990 emissions this way. */
6991 DECL_DECLARED_INLINE_P (fndecl) = 1;
6992 DECL_INTERFACE_KNOWN (fndecl) = 1;
6993 /* Build the parameter. */
6994 if (use_cxa_atexit)
6996 tree parmdecl;
6998 parmdecl = cp_build_parm_decl (NULL_TREE, ptr_type_node);
6999 DECL_CONTEXT (parmdecl) = fndecl;
7000 TREE_USED (parmdecl) = 1;
7001 DECL_READ_P (parmdecl) = 1;
7002 DECL_ARGUMENTS (fndecl) = parmdecl;
7005 pushdecl (fndecl);
7006 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
7008 pop_lang_context ();
7010 return current_function_decl;
7013 /* Finish the cleanup function begun by start_cleanup_fn. */
7015 static void
7016 end_cleanup_fn (void)
7018 expand_or_defer_fn (finish_function (0));
7020 pop_from_top_level ();
7023 /* Generate code to handle the destruction of DECL, an object with
7024 static storage duration. */
7026 tree
7027 register_dtor_fn (tree decl)
7029 tree cleanup;
7030 tree addr;
7031 tree compound_stmt;
7032 tree fcall;
7033 tree type;
7034 bool ob_parm, dso_parm, use_dtor;
7035 tree arg0, arg1, arg2;
7036 tree atex_node;
7038 type = TREE_TYPE (decl);
7039 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
7040 return void_node;
7042 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
7043 "__aeabi_atexit"), and DECL is a class object, we can just pass the
7044 destructor to "__cxa_atexit"; we don't have to build a temporary
7045 function to do the cleanup. */
7046 dso_parm = (flag_use_cxa_atexit
7047 && !targetm.cxx.use_atexit_for_cxa_atexit ());
7048 ob_parm = (DECL_THREAD_LOCAL_P (decl) || dso_parm);
7049 use_dtor = ob_parm && CLASS_TYPE_P (type);
7050 if (use_dtor)
7052 int idx;
7054 /* Find the destructor. */
7055 idx = lookup_fnfields_1 (type, complete_dtor_identifier);
7056 gcc_assert (idx >= 0);
7057 cleanup = (*CLASSTYPE_METHOD_VEC (type))[idx];
7058 /* Make sure it is accessible. */
7059 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
7060 tf_warning_or_error);
7062 else
7064 /* Call build_cleanup before we enter the anonymous function so
7065 that any access checks will be done relative to the current
7066 scope, rather than the scope of the anonymous function. */
7067 build_cleanup (decl);
7069 /* Now start the function. */
7070 cleanup = start_cleanup_fn ();
7072 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
7073 to the original function, rather than the anonymous one. That
7074 will make the back end think that nested functions are in use,
7075 which causes confusion. */
7076 push_deferring_access_checks (dk_no_check);
7077 fcall = build_cleanup (decl);
7078 pop_deferring_access_checks ();
7080 /* Create the body of the anonymous function. */
7081 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
7082 finish_expr_stmt (fcall);
7083 finish_compound_stmt (compound_stmt);
7084 end_cleanup_fn ();
7087 /* Call atexit with the cleanup function. */
7088 mark_used (cleanup);
7089 cleanup = build_address (cleanup);
7091 if (DECL_THREAD_LOCAL_P (decl))
7092 atex_node = get_thread_atexit_node ();
7093 else
7094 atex_node = get_atexit_node ();
7096 if (use_dtor)
7098 /* We must convert CLEANUP to the type that "__cxa_atexit"
7099 expects. */
7100 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
7101 /* "__cxa_atexit" will pass the address of DECL to the
7102 cleanup function. */
7103 mark_used (decl);
7104 addr = build_address (decl);
7105 /* The declared type of the parameter to "__cxa_atexit" is
7106 "void *". For plain "T*", we could just let the
7107 machinery in cp_build_function_call convert it -- but if the
7108 type is "cv-qualified T *", then we need to convert it
7109 before passing it in, to avoid spurious errors. */
7110 addr = build_nop (ptr_type_node, addr);
7112 else
7113 /* Since the cleanup functions we build ignore the address
7114 they're given, there's no reason to pass the actual address
7115 in, and, in general, it's cheaper to pass NULL than any
7116 other value. */
7117 addr = null_pointer_node;
7119 if (dso_parm)
7120 arg2 = cp_build_addr_expr (get_dso_handle_node (),
7121 tf_warning_or_error);
7122 else if (ob_parm)
7123 /* Just pass NULL to the dso handle parm if we don't actually
7124 have a DSO handle on this target. */
7125 arg2 = null_pointer_node;
7126 else
7127 arg2 = NULL_TREE;
7129 if (ob_parm)
7131 if (!DECL_THREAD_LOCAL_P (decl)
7132 && targetm.cxx.use_aeabi_atexit ())
7134 arg1 = cleanup;
7135 arg0 = addr;
7137 else
7139 arg1 = addr;
7140 arg0 = cleanup;
7143 else
7145 arg0 = cleanup;
7146 arg1 = NULL_TREE;
7148 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
7149 arg0, arg1, arg2, NULL_TREE);
7152 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
7153 is its initializer. Generate code to handle the construction
7154 and destruction of DECL. */
7156 static void
7157 expand_static_init (tree decl, tree init)
7159 gcc_assert (VAR_P (decl));
7160 gcc_assert (TREE_STATIC (decl));
7162 /* Some variables require no dynamic initialization. */
7163 if (!init
7164 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
7166 /* Make sure the destructor is callable. */
7167 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
7168 return;
7171 if (DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
7172 && !DECL_FUNCTION_SCOPE_P (decl))
7174 if (init)
7175 error ("non-local variable %qD declared %<__thread%> "
7176 "needs dynamic initialization", decl);
7177 else
7178 error ("non-local variable %qD declared %<__thread%> "
7179 "has a non-trivial destructor", decl);
7180 static bool informed;
7181 if (!informed)
7183 inform (DECL_SOURCE_LOCATION (decl),
7184 "C++11 %<thread_local%> allows dynamic initialization "
7185 "and destruction");
7186 informed = true;
7188 return;
7191 if (DECL_FUNCTION_SCOPE_P (decl))
7193 /* Emit code to perform this initialization but once. */
7194 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
7195 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
7196 tree guard, guard_addr;
7197 tree flag, begin;
7198 /* We don't need thread-safety code for thread-local vars. */
7199 bool thread_guard = (flag_threadsafe_statics
7200 && !DECL_THREAD_LOCAL_P (decl));
7202 /* Emit code to perform this initialization but once. This code
7203 looks like:
7205 static <type> guard;
7206 if (!guard.first_byte) {
7207 if (__cxa_guard_acquire (&guard)) {
7208 bool flag = false;
7209 try {
7210 // Do initialization.
7211 flag = true; __cxa_guard_release (&guard);
7212 // Register variable for destruction at end of program.
7213 } catch {
7214 if (!flag) __cxa_guard_abort (&guard);
7218 Note that the `flag' variable is only set to 1 *after* the
7219 initialization is complete. This ensures that an exception,
7220 thrown during the construction, will cause the variable to
7221 reinitialized when we pass through this code again, as per:
7223 [stmt.dcl]
7225 If the initialization exits by throwing an exception, the
7226 initialization is not complete, so it will be tried again
7227 the next time control enters the declaration.
7229 This process should be thread-safe, too; multiple threads
7230 should not be able to initialize the variable more than
7231 once. */
7233 /* Create the guard variable. */
7234 guard = get_guard (decl);
7236 /* This optimization isn't safe on targets with relaxed memory
7237 consistency. On such targets we force synchronization in
7238 __cxa_guard_acquire. */
7239 if (!targetm.relaxed_ordering || !thread_guard)
7241 /* Begin the conditional initialization. */
7242 if_stmt = begin_if_stmt ();
7243 finish_if_stmt_cond (get_guard_cond (guard), if_stmt);
7244 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7247 if (thread_guard)
7249 tree vfntype = NULL_TREE;
7250 tree acquire_name, release_name, abort_name;
7251 tree acquire_fn, release_fn, abort_fn;
7252 guard_addr = build_address (guard);
7254 acquire_name = get_identifier ("__cxa_guard_acquire");
7255 release_name = get_identifier ("__cxa_guard_release");
7256 abort_name = get_identifier ("__cxa_guard_abort");
7257 acquire_fn = identifier_global_value (acquire_name);
7258 release_fn = identifier_global_value (release_name);
7259 abort_fn = identifier_global_value (abort_name);
7260 if (!acquire_fn)
7261 acquire_fn = push_library_fn
7262 (acquire_name, build_function_type_list (integer_type_node,
7263 TREE_TYPE (guard_addr),
7264 NULL_TREE),
7265 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
7266 if (!release_fn || !abort_fn)
7267 vfntype = build_function_type_list (void_type_node,
7268 TREE_TYPE (guard_addr),
7269 NULL_TREE);
7270 if (!release_fn)
7271 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
7272 ECF_NOTHROW | ECF_LEAF);
7273 if (!abort_fn)
7274 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
7275 ECF_NOTHROW | ECF_LEAF);
7277 inner_if_stmt = begin_if_stmt ();
7278 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
7279 inner_if_stmt);
7281 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7282 begin = get_target_expr (boolean_false_node);
7283 flag = TARGET_EXPR_SLOT (begin);
7285 TARGET_EXPR_CLEANUP (begin)
7286 = build3 (COND_EXPR, void_type_node, flag,
7287 void_node,
7288 build_call_n (abort_fn, 1, guard_addr));
7289 CLEANUP_EH_ONLY (begin) = 1;
7291 /* Do the initialization itself. */
7292 init = add_stmt_to_compound (begin, init);
7293 init = add_stmt_to_compound
7294 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
7295 init = add_stmt_to_compound
7296 (init, build_call_n (release_fn, 1, guard_addr));
7298 else
7299 init = add_stmt_to_compound (init, set_guard (guard));
7301 /* Use atexit to register a function for destroying this static
7302 variable. */
7303 init = add_stmt_to_compound (init, register_dtor_fn (decl));
7305 finish_expr_stmt (init);
7307 if (thread_guard)
7309 finish_compound_stmt (inner_then_clause);
7310 finish_then_clause (inner_if_stmt);
7311 finish_if_stmt (inner_if_stmt);
7314 if (!targetm.relaxed_ordering || !thread_guard)
7316 finish_compound_stmt (then_clause);
7317 finish_then_clause (if_stmt);
7318 finish_if_stmt (if_stmt);
7321 else if (DECL_THREAD_LOCAL_P (decl))
7322 tls_aggregates = tree_cons (init, decl, tls_aggregates);
7323 else
7324 static_aggregates = tree_cons (init, decl, static_aggregates);
7328 /* Make TYPE a complete type based on INITIAL_VALUE.
7329 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
7330 2 if there was no information (in which case assume 0 if DO_DEFAULT),
7331 3 if the initializer list is empty (in pedantic mode). */
7334 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
7336 int failure;
7337 tree type, elt_type;
7339 /* Don't get confused by a CONSTRUCTOR for some other type. */
7340 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
7341 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value))
7342 return 1;
7344 if (initial_value)
7346 unsigned HOST_WIDE_INT i;
7347 tree value;
7349 /* An array of character type can be initialized from a
7350 brace-enclosed string constant.
7352 FIXME: this code is duplicated from reshape_init. Probably
7353 we should just call reshape_init here? */
7354 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
7355 && TREE_CODE (initial_value) == CONSTRUCTOR
7356 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
7358 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
7359 tree value = (*v)[0].value;
7361 if (TREE_CODE (value) == STRING_CST
7362 && v->length () == 1)
7363 initial_value = value;
7366 /* If any of the elements are parameter packs, we can't actually
7367 complete this type now because the array size is dependent. */
7368 if (TREE_CODE (initial_value) == CONSTRUCTOR)
7370 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
7371 i, value)
7373 if (PACK_EXPANSION_P (value))
7374 return 0;
7379 failure = complete_array_type (ptype, initial_value, do_default);
7381 /* We can create the array before the element type is complete, which
7382 means that we didn't have these two bits set in the original type
7383 either. In completing the type, we are expected to propagate these
7384 bits. See also complete_type which does the same thing for arrays
7385 of fixed size. */
7386 type = *ptype;
7387 if (TYPE_DOMAIN (type))
7389 elt_type = TREE_TYPE (type);
7390 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
7391 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
7392 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
7395 return failure;
7398 /* As above, but either give an error or reject zero-size arrays, depending
7399 on COMPLAIN. */
7402 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
7403 bool do_default, tsubst_flags_t complain)
7405 int failure;
7406 bool sfinae = !(complain & tf_error);
7407 /* In SFINAE context we can't be lenient about zero-size arrays. */
7408 if (sfinae)
7409 ++pedantic;
7410 failure = cp_complete_array_type (ptype, initial_value, do_default);
7411 if (sfinae)
7412 --pedantic;
7413 if (failure)
7415 if (sfinae)
7416 /* Not an error. */;
7417 else if (failure == 1)
7418 error ("initializer fails to determine size of %qT", *ptype);
7419 else if (failure == 2)
7421 if (do_default)
7422 error ("array size missing in %qT", *ptype);
7424 else if (failure == 3)
7425 error ("zero-size array %qT", *ptype);
7426 *ptype = error_mark_node;
7428 return failure;
7431 /* Return zero if something is declared to be a member of type
7432 CTYPE when in the context of CUR_TYPE. STRING is the error
7433 message to print in that case. Otherwise, quietly return 1. */
7435 static int
7436 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
7438 if (ctype && ctype != cur_type)
7440 if (flags == DTOR_FLAG)
7441 error ("destructor for alien class %qT cannot be a member", ctype);
7442 else
7443 error ("constructor for alien class %qT cannot be a member", ctype);
7444 return 0;
7446 return 1;
7449 /* Subroutine of `grokdeclarator'. */
7451 /* Generate errors possibly applicable for a given set of specifiers.
7452 This is for ARM $7.1.2. */
7454 static void
7455 bad_specifiers (tree object,
7456 enum bad_spec_place type,
7457 int virtualp,
7458 int quals,
7459 int inlinep,
7460 int friendp,
7461 int raises)
7463 switch (type)
7465 case BSP_VAR:
7466 if (virtualp)
7467 error ("%qD declared as a %<virtual%> variable", object);
7468 if (inlinep)
7469 error ("%qD declared as an %<inline%> variable", object);
7470 if (quals)
7471 error ("%<const%> and %<volatile%> function specifiers on "
7472 "%qD invalid in variable declaration", object);
7473 break;
7474 case BSP_PARM:
7475 if (virtualp)
7476 error ("%qD declared as a %<virtual%> parameter", object);
7477 if (inlinep)
7478 error ("%qD declared as an %<inline%> parameter", object);
7479 if (quals)
7480 error ("%<const%> and %<volatile%> function specifiers on "
7481 "%qD invalid in parameter declaration", object);
7482 break;
7483 case BSP_TYPE:
7484 if (virtualp)
7485 error ("%qD declared as a %<virtual%> type", object);
7486 if (inlinep)
7487 error ("%qD declared as an %<inline%> type", object);
7488 if (quals)
7489 error ("%<const%> and %<volatile%> function specifiers on "
7490 "%qD invalid in type declaration", object);
7491 break;
7492 case BSP_FIELD:
7493 if (virtualp)
7494 error ("%qD declared as a %<virtual%> field", object);
7495 if (inlinep)
7496 error ("%qD declared as an %<inline%> field", object);
7497 if (quals)
7498 error ("%<const%> and %<volatile%> function specifiers on "
7499 "%qD invalid in field declaration", object);
7500 break;
7501 default:
7502 gcc_unreachable();
7504 if (friendp)
7505 error ("%q+D declared as a friend", object);
7506 if (raises
7507 && (TREE_CODE (object) == TYPE_DECL
7508 || (!TYPE_PTRFN_P (TREE_TYPE (object))
7509 && !TYPE_REFFN_P (TREE_TYPE (object))
7510 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
7511 error ("%q+D declared with an exception specification", object);
7514 /* DECL is a member function or static data member and is presently
7515 being defined. Check that the definition is taking place in a
7516 valid namespace. */
7518 static void
7519 check_class_member_definition_namespace (tree decl)
7521 /* These checks only apply to member functions and static data
7522 members. */
7523 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
7524 /* We check for problems with specializations in pt.c in
7525 check_specialization_namespace, where we can issue better
7526 diagnostics. */
7527 if (processing_specialization)
7528 return;
7529 /* There are no restrictions on the placement of
7530 explicit instantiations. */
7531 if (processing_explicit_instantiation)
7532 return;
7533 /* [class.mfct]
7535 A member function definition that appears outside of the
7536 class definition shall appear in a namespace scope enclosing
7537 the class definition.
7539 [class.static.data]
7541 The definition for a static data member shall appear in a
7542 namespace scope enclosing the member's class definition. */
7543 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
7544 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
7545 decl, DECL_CONTEXT (decl));
7548 /* Build a PARM_DECL for the "this" parameter. TYPE is the
7549 METHOD_TYPE for a non-static member function; QUALS are the
7550 cv-qualifiers that apply to the function. */
7552 tree
7553 build_this_parm (tree type, cp_cv_quals quals)
7555 tree this_type;
7556 tree qual_type;
7557 tree parm;
7558 cp_cv_quals this_quals;
7560 if (CLASS_TYPE_P (type))
7562 this_type
7563 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
7564 this_type = build_pointer_type (this_type);
7566 else
7567 this_type = type_of_this_parm (type);
7568 /* The `this' parameter is implicitly `const'; it cannot be
7569 assigned to. */
7570 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
7571 qual_type = cp_build_qualified_type (this_type, this_quals);
7572 parm = build_artificial_parm (this_identifier, qual_type);
7573 cp_apply_type_quals_to_decl (this_quals, parm);
7574 return parm;
7577 /* DECL is a static member function. Complain if it was declared
7578 with function-cv-quals. */
7580 static void
7581 check_static_quals (tree decl, cp_cv_quals quals)
7583 if (quals != TYPE_UNQUALIFIED)
7584 error ("static member function %q#D declared with type qualifiers",
7585 decl);
7588 /* Helper function. Replace the temporary this parameter injected
7589 during cp_finish_omp_declare_simd with the real this parameter. */
7591 static tree
7592 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
7594 tree this_parm = (tree) data;
7595 if (TREE_CODE (*tp) == PARM_DECL
7596 && DECL_NAME (*tp) == this_identifier
7597 && *tp != this_parm)
7598 *tp = this_parm;
7599 else if (TYPE_P (*tp))
7600 *walk_subtrees = 0;
7601 return NULL_TREE;
7604 /* CTYPE is class type, or null if non-class.
7605 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
7606 or METHOD_TYPE.
7607 DECLARATOR is the function's name.
7608 PARMS is a chain of PARM_DECLs for the function.
7609 VIRTUALP is truthvalue of whether the function is virtual or not.
7610 FLAGS are to be passed through to `grokclassfn'.
7611 QUALS are qualifiers indicating whether the function is `const'
7612 or `volatile'.
7613 RAISES is a list of exceptions that this function can raise.
7614 CHECK is 1 if we must find this method in CTYPE, 0 if we should
7615 not look, and -1 if we should not call `grokclassfn' at all.
7617 SFK is the kind of special function (if any) for the new function.
7619 Returns `NULL_TREE' if something goes wrong, after issuing
7620 applicable error messages. */
7622 static tree
7623 grokfndecl (tree ctype,
7624 tree type,
7625 tree declarator,
7626 tree parms,
7627 tree orig_declarator,
7628 int virtualp,
7629 enum overload_flags flags,
7630 cp_cv_quals quals,
7631 cp_ref_qualifier rqual,
7632 tree raises,
7633 int check,
7634 int friendp,
7635 int publicp,
7636 int inlinep,
7637 bool deletedp,
7638 special_function_kind sfk,
7639 bool funcdef_flag,
7640 int template_count,
7641 tree in_namespace,
7642 tree* attrlist,
7643 location_t location)
7645 tree decl;
7646 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
7647 tree t;
7649 if (rqual)
7650 type = build_ref_qualified_type (type, rqual);
7651 if (raises)
7652 type = build_exception_variant (type, raises);
7654 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
7656 /* If we have an explicit location, use it, otherwise use whatever
7657 build_lang_decl used (probably input_location). */
7658 if (location != UNKNOWN_LOCATION)
7659 DECL_SOURCE_LOCATION (decl) = location;
7661 if (TREE_CODE (type) == METHOD_TYPE)
7663 tree parm;
7664 parm = build_this_parm (type, quals);
7665 DECL_CHAIN (parm) = parms;
7666 parms = parm;
7668 DECL_ARGUMENTS (decl) = parms;
7669 for (t = parms; t; t = DECL_CHAIN (t))
7670 DECL_CONTEXT (t) = decl;
7671 /* Propagate volatile out from type to decl. */
7672 if (TYPE_VOLATILE (type))
7673 TREE_THIS_VOLATILE (decl) = 1;
7675 /* Setup decl according to sfk. */
7676 switch (sfk)
7678 case sfk_constructor:
7679 case sfk_copy_constructor:
7680 case sfk_move_constructor:
7681 DECL_CONSTRUCTOR_P (decl) = 1;
7682 break;
7683 case sfk_destructor:
7684 DECL_DESTRUCTOR_P (decl) = 1;
7685 break;
7686 default:
7687 break;
7690 /* If pointers to member functions use the least significant bit to
7691 indicate whether a function is virtual, ensure a pointer
7692 to this function will have that bit clear. */
7693 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
7694 && TREE_CODE (type) == METHOD_TYPE
7695 && DECL_ALIGN (decl) < 2 * BITS_PER_UNIT)
7696 DECL_ALIGN (decl) = 2 * BITS_PER_UNIT;
7698 if (friendp
7699 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
7701 if (funcdef_flag)
7702 error
7703 ("defining explicit specialization %qD in friend declaration",
7704 orig_declarator);
7705 else
7707 tree fns = TREE_OPERAND (orig_declarator, 0);
7708 tree args = TREE_OPERAND (orig_declarator, 1);
7710 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
7712 /* Something like `template <class T> friend void f<T>()'. */
7713 error ("invalid use of template-id %qD in declaration "
7714 "of primary template",
7715 orig_declarator);
7716 return NULL_TREE;
7720 /* A friend declaration of the form friend void f<>(). Record
7721 the information in the TEMPLATE_ID_EXPR. */
7722 SET_DECL_IMPLICIT_INSTANTIATION (decl);
7724 gcc_assert (identifier_p (fns) || TREE_CODE (fns) == OVERLOAD);
7725 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
7727 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
7728 if (TREE_PURPOSE (t)
7729 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
7731 error ("default arguments are not allowed in declaration "
7732 "of friend template specialization %qD",
7733 decl);
7734 return NULL_TREE;
7737 if (inlinep & 1)
7738 error ("%<inline%> is not allowed in declaration of friend "
7739 "template specialization %qD",
7740 decl);
7741 if (inlinep & 2)
7742 error ("%<constexpr%> is not allowed in declaration of friend "
7743 "template specialization %qD",
7744 decl);
7745 if (inlinep)
7746 return NULL_TREE;
7750 /* If this decl has namespace scope, set that up. */
7751 if (in_namespace)
7752 set_decl_namespace (decl, in_namespace, friendp);
7753 else if (!ctype)
7754 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
7756 /* `main' and builtins have implicit 'C' linkage. */
7757 if ((MAIN_NAME_P (declarator)
7758 || (IDENTIFIER_LENGTH (declarator) > 10
7759 && IDENTIFIER_POINTER (declarator)[0] == '_'
7760 && IDENTIFIER_POINTER (declarator)[1] == '_'
7761 && strncmp (IDENTIFIER_POINTER (declarator)+2, "builtin_", 8) == 0)
7762 || (targetcm.cxx_implicit_extern_c
7763 && targetcm.cxx_implicit_extern_c(IDENTIFIER_POINTER (declarator))))
7764 && current_lang_name == lang_name_cplusplus
7765 && ctype == NULL_TREE
7766 && DECL_FILE_SCOPE_P (decl))
7767 SET_DECL_LANGUAGE (decl, lang_c);
7769 /* Should probably propagate const out from type to decl I bet (mrs). */
7770 if (staticp)
7772 DECL_STATIC_FUNCTION_P (decl) = 1;
7773 DECL_CONTEXT (decl) = ctype;
7776 if (deletedp)
7777 DECL_DELETED_FN (decl) = 1;
7779 if (ctype)
7781 DECL_CONTEXT (decl) = ctype;
7782 if (funcdef_flag)
7783 check_class_member_definition_namespace (decl);
7786 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
7788 if (PROCESSING_REAL_TEMPLATE_DECL_P())
7789 error ("cannot declare %<::main%> to be a template");
7790 if (inlinep & 1)
7791 error ("cannot declare %<::main%> to be inline");
7792 if (inlinep & 2)
7793 error ("cannot declare %<::main%> to be constexpr");
7794 if (!publicp)
7795 error ("cannot declare %<::main%> to be static");
7796 inlinep = 0;
7797 publicp = 1;
7800 /* Members of anonymous types and local classes have no linkage; make
7801 them internal. If a typedef is made later, this will be changed. */
7802 if (ctype && (TYPE_ANONYMOUS_P (ctype)
7803 || decl_function_context (TYPE_MAIN_DECL (ctype))))
7804 publicp = 0;
7806 if (publicp && cxx_dialect == cxx98)
7808 /* [basic.link]: A name with no linkage (notably, the name of a class
7809 or enumeration declared in a local scope) shall not be used to
7810 declare an entity with linkage.
7812 DR 757 relaxes this restriction for C++0x. */
7813 no_linkage_error (decl);
7816 TREE_PUBLIC (decl) = publicp;
7817 if (! publicp)
7819 DECL_INTERFACE_KNOWN (decl) = 1;
7820 DECL_NOT_REALLY_EXTERN (decl) = 1;
7823 /* If the declaration was declared inline, mark it as such. */
7824 if (inlinep)
7826 DECL_DECLARED_INLINE_P (decl) = 1;
7827 if (publicp)
7828 DECL_COMDAT (decl) = 1;
7830 if (inlinep & 2)
7831 DECL_DECLARED_CONSTEXPR_P (decl) = true;
7833 DECL_EXTERNAL (decl) = 1;
7834 if (TREE_CODE (type) == FUNCTION_TYPE)
7836 if (quals)
7838 error (ctype
7839 ? G_("static member function %qD cannot have cv-qualifier")
7840 : G_("non-member function %qD cannot have cv-qualifier"),
7841 decl);
7842 quals = TYPE_UNQUALIFIED;
7845 if (rqual)
7847 error (ctype
7848 ? G_("static member function %qD cannot have ref-qualifier")
7849 : G_("non-member function %qD cannot have ref-qualifier"),
7850 decl);
7851 rqual = REF_QUAL_NONE;
7855 if (IDENTIFIER_OPNAME_P (DECL_NAME (decl))
7856 && !grok_op_properties (decl, /*complain=*/true))
7857 return NULL_TREE;
7858 else if (UDLIT_OPER_P (DECL_NAME (decl)))
7860 bool long_long_unsigned_p;
7861 bool long_double_p;
7862 const char *suffix = NULL;
7863 /* [over.literal]/6: Literal operators shall not have C linkage. */
7864 if (DECL_LANGUAGE (decl) == lang_c)
7866 error ("literal operator with C linkage");
7867 return NULL_TREE;
7870 if (DECL_NAMESPACE_SCOPE_P (decl))
7872 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
7873 &long_double_p))
7875 error ("%qD has invalid argument list", decl);
7876 return NULL_TREE;
7879 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
7880 if (long_long_unsigned_p)
7882 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
7883 warning (0, "integer suffix %<%s%>"
7884 " shadowed by implementation", suffix);
7886 else if (long_double_p)
7888 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
7889 warning (0, "floating point suffix %<%s%>"
7890 " shadowed by implementation", suffix);
7893 else
7895 error ("%qD must be a non-member function", decl);
7896 return NULL_TREE;
7900 if (funcdef_flag)
7901 /* Make the init_value nonzero so pushdecl knows this is not
7902 tentative. error_mark_node is replaced later with the BLOCK. */
7903 DECL_INITIAL (decl) = error_mark_node;
7905 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
7906 TREE_NOTHROW (decl) = 1;
7908 if (flag_openmp || flag_cilkplus)
7910 /* Adjust "omp declare simd" attributes. */
7911 tree ods = lookup_attribute ("omp declare simd", *attrlist);
7912 if (ods)
7914 tree attr;
7915 for (attr = ods; attr;
7916 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
7918 if (TREE_CODE (type) == METHOD_TYPE)
7919 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
7920 DECL_ARGUMENTS (decl), NULL);
7921 if (TREE_VALUE (attr) != NULL_TREE)
7923 tree cl = TREE_VALUE (TREE_VALUE (attr));
7924 cl = c_omp_declare_simd_clauses_to_numbers
7925 (DECL_ARGUMENTS (decl), cl);
7926 if (cl)
7927 TREE_VALUE (TREE_VALUE (attr)) = cl;
7928 else
7929 TREE_VALUE (attr) = NULL_TREE;
7935 /* Caller will do the rest of this. */
7936 if (check < 0)
7937 return decl;
7939 if (ctype != NULL_TREE)
7940 grokclassfn (ctype, decl, flags);
7942 /* 12.4/3 */
7943 if (cxx_dialect >= cxx11
7944 && DECL_DESTRUCTOR_P (decl)
7945 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
7946 && !processing_template_decl)
7947 deduce_noexcept_on_destructor (decl);
7949 decl = check_explicit_specialization (orig_declarator, decl,
7950 template_count,
7951 2 * funcdef_flag +
7952 4 * (friendp != 0));
7953 if (decl == error_mark_node)
7954 return NULL_TREE;
7956 if (DECL_STATIC_FUNCTION_P (decl))
7957 check_static_quals (decl, quals);
7959 if (attrlist)
7961 cplus_decl_attributes (&decl, *attrlist, 0);
7962 *attrlist = NULL_TREE;
7965 /* Check main's type after attributes have been applied. */
7966 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
7968 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
7969 integer_type_node))
7971 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
7972 tree newtype;
7973 error ("%<::main%> must return %<int%>");
7974 newtype = build_function_type (integer_type_node, oldtypeargs);
7975 TREE_TYPE (decl) = newtype;
7977 if (warn_main)
7978 check_main_parameter_types (decl);
7981 if (ctype != NULL_TREE
7982 && (! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
7983 && check)
7985 tree old_decl = check_classfn (ctype, decl,
7986 (processing_template_decl
7987 > template_class_depth (ctype))
7988 ? current_template_parms
7989 : NULL_TREE);
7991 if (old_decl == error_mark_node)
7992 return NULL_TREE;
7994 if (old_decl)
7996 tree ok;
7997 tree pushed_scope;
7999 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
8000 /* Because grokfndecl is always supposed to return a
8001 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
8002 here. We depend on our callers to figure out that its
8003 really a template that's being returned. */
8004 old_decl = DECL_TEMPLATE_RESULT (old_decl);
8006 if (DECL_STATIC_FUNCTION_P (old_decl)
8007 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
8009 /* Remove the `this' parm added by grokclassfn. */
8010 revert_static_member_fn (decl);
8011 check_static_quals (decl, quals);
8013 if (DECL_ARTIFICIAL (old_decl))
8015 error ("definition of implicitly-declared %qD", old_decl);
8016 return NULL_TREE;
8018 else if (DECL_DEFAULTED_FN (old_decl))
8020 error ("definition of explicitly-defaulted %q+D", decl);
8021 error ("%q+#D explicitly defaulted here", old_decl);
8022 return NULL_TREE;
8025 /* Since we've smashed OLD_DECL to its
8026 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
8027 if (TREE_CODE (decl) == TEMPLATE_DECL)
8028 decl = DECL_TEMPLATE_RESULT (decl);
8030 /* Attempt to merge the declarations. This can fail, in
8031 the case of some invalid specialization declarations. */
8032 pushed_scope = push_scope (ctype);
8033 ok = duplicate_decls (decl, old_decl, friendp);
8034 if (pushed_scope)
8035 pop_scope (pushed_scope);
8036 if (!ok)
8038 error ("no %q#D member function declared in class %qT",
8039 decl, ctype);
8040 return NULL_TREE;
8042 if (ok == error_mark_node)
8043 return NULL_TREE;
8044 return old_decl;
8048 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
8049 return NULL_TREE;
8051 if (ctype == NULL_TREE || check)
8052 return decl;
8054 if (virtualp)
8055 DECL_VIRTUAL_P (decl) = 1;
8057 return decl;
8060 /* decl is a FUNCTION_DECL.
8061 specifiers are the parsed virt-specifiers.
8063 Set flags to reflect the virt-specifiers.
8065 Returns decl. */
8067 static tree
8068 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
8070 if (decl == NULL_TREE)
8071 return decl;
8072 if (specifiers & VIRT_SPEC_OVERRIDE)
8073 DECL_OVERRIDE_P (decl) = 1;
8074 if (specifiers & VIRT_SPEC_FINAL)
8075 DECL_FINAL_P (decl) = 1;
8076 return decl;
8079 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
8080 the linkage that DECL will receive in the object file. */
8082 static void
8083 set_linkage_for_static_data_member (tree decl)
8085 /* A static data member always has static storage duration and
8086 external linkage. Note that static data members are forbidden in
8087 local classes -- the only situation in which a class has
8088 non-external linkage. */
8089 TREE_PUBLIC (decl) = 1;
8090 TREE_STATIC (decl) = 1;
8091 /* For non-template classes, static data members are always put
8092 out in exactly those files where they are defined, just as
8093 with ordinary namespace-scope variables. */
8094 if (!processing_template_decl)
8095 DECL_INTERFACE_KNOWN (decl) = 1;
8098 /* Create a VAR_DECL named NAME with the indicated TYPE.
8100 If SCOPE is non-NULL, it is the class type or namespace containing
8101 the variable. If SCOPE is NULL, the variable should is created in
8102 the innermost enclosing scope. */
8104 static tree
8105 grokvardecl (tree type,
8106 tree name,
8107 tree orig_declarator,
8108 const cp_decl_specifier_seq *declspecs,
8109 int initialized,
8110 int constp,
8111 int template_count,
8112 tree scope)
8114 tree decl;
8115 tree explicit_scope;
8117 gcc_assert (!name || identifier_p (name));
8119 /* Compute the scope in which to place the variable, but remember
8120 whether or not that scope was explicitly specified by the user. */
8121 explicit_scope = scope;
8122 if (!scope)
8124 /* An explicit "extern" specifier indicates a namespace-scope
8125 variable. */
8126 if (declspecs->storage_class == sc_extern)
8127 scope = current_decl_namespace ();
8128 else if (!at_function_scope_p ())
8129 scope = current_scope ();
8132 if (scope
8133 && (/* If the variable is a namespace-scope variable declared in a
8134 template, we need DECL_LANG_SPECIFIC. */
8135 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
8136 /* Similarly for namespace-scope variables with language linkage
8137 other than C++. */
8138 || (TREE_CODE (scope) == NAMESPACE_DECL
8139 && current_lang_name != lang_name_cplusplus)
8140 /* Similarly for static data members. */
8141 || TYPE_P (scope)
8142 /* Similarly for explicit specializations. */
8143 || (orig_declarator
8144 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
8145 decl = build_lang_decl (VAR_DECL, name, type);
8146 else
8147 decl = build_decl (input_location, VAR_DECL, name, type);
8149 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
8150 set_decl_namespace (decl, explicit_scope, 0);
8151 else
8152 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
8154 if (declspecs->storage_class == sc_extern)
8156 DECL_THIS_EXTERN (decl) = 1;
8157 DECL_EXTERNAL (decl) = !initialized;
8160 if (DECL_CLASS_SCOPE_P (decl))
8162 set_linkage_for_static_data_member (decl);
8163 /* This function is only called with out-of-class definitions. */
8164 DECL_EXTERNAL (decl) = 0;
8165 check_class_member_definition_namespace (decl);
8167 /* At top level, either `static' or no s.c. makes a definition
8168 (perhaps tentative), and absence of `static' makes it public. */
8169 else if (toplevel_bindings_p ())
8171 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
8172 && (DECL_THIS_EXTERN (decl) || ! constp));
8173 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
8175 /* Not at top level, only `static' makes a static definition. */
8176 else
8178 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
8179 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
8182 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
8184 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
8185 set_decl_tls_model (decl, decl_default_tls_model (decl));
8186 if (declspecs->gnu_thread_keyword_p)
8187 DECL_GNU_TLS_P (decl) = true;
8190 /* If the type of the decl has no linkage, make sure that we'll
8191 notice that in mark_used. */
8192 if (cxx_dialect > cxx98
8193 && decl_linkage (decl) != lk_none
8194 && DECL_LANG_SPECIFIC (decl) == NULL
8195 && !DECL_EXTERN_C_P (decl)
8196 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
8197 retrofit_lang_decl (decl);
8199 if (TREE_PUBLIC (decl))
8201 /* [basic.link]: A name with no linkage (notably, the name of a class
8202 or enumeration declared in a local scope) shall not be used to
8203 declare an entity with linkage.
8205 DR 757 relaxes this restriction for C++0x. */
8206 if (cxx_dialect < cxx11)
8207 no_linkage_error (decl);
8209 else
8210 DECL_INTERFACE_KNOWN (decl) = 1;
8212 // Handle explicit specializations and instantiations of variable templates.
8213 if (orig_declarator)
8214 decl = check_explicit_specialization (orig_declarator, decl,
8215 template_count, 0);
8217 return decl != error_mark_node ? decl : NULL_TREE;
8220 /* Create and return a canonical pointer to member function type, for
8221 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
8223 tree
8224 build_ptrmemfunc_type (tree type)
8226 tree field, fields;
8227 tree t;
8229 if (type == error_mark_node)
8230 return type;
8232 /* If a canonical type already exists for this type, use it. We use
8233 this method instead of type_hash_canon, because it only does a
8234 simple equality check on the list of field members. */
8236 if ((t = TYPE_GET_PTRMEMFUNC_TYPE (type)))
8237 return t;
8239 /* Make sure that we always have the unqualified pointer-to-member
8240 type first. */
8241 if (cp_cv_quals quals = cp_type_quals (type))
8243 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
8244 return cp_build_qualified_type (unqual, quals);
8247 t = make_node (RECORD_TYPE);
8249 /* Let the front end know this is a pointer to member function. */
8250 TYPE_PTRMEMFUNC_FLAG (t) = 1;
8252 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
8253 fields = field;
8255 field = build_decl (input_location, FIELD_DECL, delta_identifier,
8256 delta_type_node);
8257 DECL_CHAIN (field) = fields;
8258 fields = field;
8260 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
8262 /* Zap out the name so that the back end will give us the debugging
8263 information for this anonymous RECORD_TYPE. */
8264 TYPE_NAME (t) = NULL_TREE;
8266 /* Cache this pointer-to-member type so that we can find it again
8267 later. */
8268 TYPE_SET_PTRMEMFUNC_TYPE (type, t);
8270 if (TYPE_STRUCTURAL_EQUALITY_P (type))
8271 SET_TYPE_STRUCTURAL_EQUALITY (t);
8272 else if (TYPE_CANONICAL (type) != type)
8273 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
8275 return t;
8278 /* Create and return a pointer to data member type. */
8280 tree
8281 build_ptrmem_type (tree class_type, tree member_type)
8283 if (TREE_CODE (member_type) == METHOD_TYPE)
8285 cp_cv_quals quals = type_memfn_quals (member_type);
8286 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
8287 member_type = build_memfn_type (member_type, class_type, quals, rqual);
8288 return build_ptrmemfunc_type (build_pointer_type (member_type));
8290 else
8292 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
8293 return build_offset_type (class_type, member_type);
8297 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
8298 Check to see that the definition is valid. Issue appropriate error
8299 messages. Return 1 if the definition is particularly bad, or 0
8300 otherwise. */
8302 static int
8303 check_static_variable_definition (tree decl, tree type)
8305 /* Can't check yet if we don't know the type. */
8306 if (dependent_type_p (type))
8307 return 0;
8308 /* If DECL is declared constexpr, we'll do the appropriate checks
8309 in check_initializer. */
8310 if (DECL_P (decl) && DECL_DECLARED_CONSTEXPR_P (decl))
8311 return 0;
8312 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8314 if (!COMPLETE_TYPE_P (type))
8315 error ("in-class initialization of static data member %q#D of "
8316 "incomplete type", decl);
8317 else if (literal_type_p (type))
8318 permerror (input_location,
8319 "%<constexpr%> needed for in-class initialization of "
8320 "static data member %q#D of non-integral type", decl);
8321 else
8322 error ("in-class initialization of static data member %q#D of "
8323 "non-literal type", decl);
8324 return 1;
8327 /* Motion 10 at San Diego: If a static const integral data member is
8328 initialized with an integral constant expression, the initializer
8329 may appear either in the declaration (within the class), or in
8330 the definition, but not both. If it appears in the class, the
8331 member is a member constant. The file-scope definition is always
8332 required. */
8333 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
8335 error ("invalid in-class initialization of static data member "
8336 "of non-integral type %qT",
8337 type);
8338 return 1;
8340 else if (!CP_TYPE_CONST_P (type))
8341 error ("ISO C++ forbids in-class initialization of non-const "
8342 "static member %qD",
8343 decl);
8344 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8345 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids initialization of member constant "
8346 "%qD of non-integral type %qT", decl, type);
8348 return 0;
8351 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
8352 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
8353 expressions out into temporary variables so that walk_tree doesn't
8354 step into them (c++/15764). */
8356 static tree
8357 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
8359 hash_set<tree> *pset = (hash_set<tree> *)data;
8360 tree expr = *expr_p;
8361 if (TREE_CODE (expr) == SAVE_EXPR)
8363 tree op = TREE_OPERAND (expr, 0);
8364 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
8365 if (TREE_SIDE_EFFECTS (op))
8366 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
8367 *walk_subtrees = 0;
8369 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
8370 *walk_subtrees = 0;
8371 return NULL;
8374 /* Entry point for the above. */
8376 static void
8377 stabilize_vla_size (tree size)
8379 hash_set<tree> pset;
8380 /* Break out any function calls into temporary variables. */
8381 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
8384 /* Helper function for compute_array_index_type. Look for SIZEOF_EXPR
8385 not inside of SAVE_EXPR and fold them. */
8387 static tree
8388 fold_sizeof_expr_r (tree *expr_p, int *walk_subtrees, void *data)
8390 tree expr = *expr_p;
8391 if (TREE_CODE (expr) == SAVE_EXPR || TYPE_P (expr))
8392 *walk_subtrees = 0;
8393 else if (TREE_CODE (expr) == SIZEOF_EXPR)
8395 *(bool *)data = true;
8396 if (SIZEOF_EXPR_TYPE_P (expr))
8397 expr = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (expr, 0)),
8398 SIZEOF_EXPR, false);
8399 else if (TYPE_P (TREE_OPERAND (expr, 0)))
8400 expr = cxx_sizeof_or_alignof_type (TREE_OPERAND (expr, 0), SIZEOF_EXPR,
8401 false);
8402 else
8403 expr = cxx_sizeof_or_alignof_expr (TREE_OPERAND (expr, 0), SIZEOF_EXPR,
8404 false);
8405 if (expr == error_mark_node)
8406 expr = size_one_node;
8407 *expr_p = expr;
8408 *walk_subtrees = 0;
8410 return NULL;
8413 /* Given the SIZE (i.e., number of elements) in an array, compute an
8414 appropriate index type for the array. If non-NULL, NAME is the
8415 name of the thing being declared. */
8417 tree
8418 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
8420 tree itype;
8421 tree osize = size;
8423 if (error_operand_p (size))
8424 return error_mark_node;
8426 if (!type_dependent_expression_p (size))
8428 tree type = TREE_TYPE (size);
8430 mark_rvalue_use (size);
8432 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
8433 && TREE_SIDE_EFFECTS (size))
8434 /* In C++98, we mark a non-constant array bound with a magic
8435 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
8436 else
8438 size = instantiate_non_dependent_expr_sfinae (size, complain);
8440 if (CLASS_TYPE_P (type)
8441 && CLASSTYPE_LITERAL_P (type))
8443 size = build_expr_type_conversion (WANT_INT, size, true);
8444 if (!size)
8446 if (!(complain & tf_error))
8447 return error_mark_node;
8448 if (name)
8449 error ("size of array %qD has non-integral type %qT",
8450 name, type);
8451 else
8452 error ("size of array has non-integral type %qT", type);
8453 size = integer_one_node;
8455 if (size == error_mark_node)
8456 return error_mark_node;
8457 type = TREE_TYPE (size);
8460 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8461 size = maybe_constant_value (size);
8463 if (!TREE_CONSTANT (size))
8464 size = osize;
8467 if (error_operand_p (size))
8468 return error_mark_node;
8470 /* The array bound must be an integer type. */
8471 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8473 if (!(complain & tf_error))
8474 return error_mark_node;
8475 if (name)
8476 error ("size of array %qD has non-integral type %qT", name, type);
8477 else
8478 error ("size of array has non-integral type %qT", type);
8479 size = integer_one_node;
8480 type = TREE_TYPE (size);
8484 /* A type is dependent if it is...an array type constructed from any
8485 dependent type or whose size is specified by a constant expression
8486 that is value-dependent. */
8487 /* We can only call value_dependent_expression_p on integral constant
8488 expressions; treat non-constant expressions as dependent, too. */
8489 if (processing_template_decl
8490 && (type_dependent_expression_p (size)
8491 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
8493 /* We cannot do any checking for a SIZE that isn't known to be
8494 constant. Just build the index type and mark that it requires
8495 structural equality checks. */
8496 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
8497 size, size_one_node));
8498 TYPE_DEPENDENT_P (itype) = 1;
8499 TYPE_DEPENDENT_P_VALID (itype) = 1;
8500 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8501 return itype;
8504 /* Normally, the array-bound will be a constant. */
8505 if (TREE_CODE (size) == INTEGER_CST)
8507 /* Check to see if the array bound overflowed. Make that an
8508 error, no matter how generous we're being. */
8509 constant_expression_error (size);
8511 /* An array must have a positive number of elements. */
8512 if (tree_int_cst_lt (size, integer_zero_node))
8514 if (!(complain & tf_error))
8515 return error_mark_node;
8516 if (name)
8517 error ("size of array %qD is negative", name);
8518 else
8519 error ("size of array is negative");
8520 size = integer_one_node;
8522 /* As an extension we allow zero-sized arrays. */
8523 else if (integer_zerop (size))
8525 if (!(complain & tf_error))
8526 /* We must fail if performing argument deduction (as
8527 indicated by the state of complain), so that
8528 another substitution can be found. */
8529 return error_mark_node;
8530 else if (in_system_header_at (input_location))
8531 /* Allow them in system headers because glibc uses them. */;
8532 else if (name)
8533 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array %qD", name);
8534 else
8535 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array");
8538 else if (TREE_CONSTANT (size)
8539 /* We don't allow VLAs at non-function scopes, or during
8540 tentative template substitution. */
8541 || !at_function_scope_p ()
8542 || !(complain & tf_error))
8544 if (!(complain & tf_error))
8545 return error_mark_node;
8546 /* `(int) &fn' is not a valid array bound. */
8547 if (name)
8548 error ("size of array %qD is not an integral constant-expression",
8549 name);
8550 else
8551 error ("size of array is not an integral constant-expression");
8552 size = integer_one_node;
8554 else if (pedantic && warn_vla != 0)
8556 if (name)
8557 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array %qD", name);
8558 else
8559 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array");
8561 else if (warn_vla > 0)
8563 if (name)
8564 warning (OPT_Wvla,
8565 "variable length array %qD is used", name);
8566 else
8567 warning (OPT_Wvla,
8568 "variable length array is used");
8571 if (processing_template_decl && !TREE_CONSTANT (size))
8572 /* A variable sized array. */
8573 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
8574 else
8576 HOST_WIDE_INT saved_processing_template_decl;
8578 /* Compute the index of the largest element in the array. It is
8579 one less than the number of elements in the array. We save
8580 and restore PROCESSING_TEMPLATE_DECL so that computations in
8581 cp_build_binary_op will be appropriately folded. */
8582 saved_processing_template_decl = processing_template_decl;
8583 processing_template_decl = 0;
8584 itype = cp_build_binary_op (input_location,
8585 MINUS_EXPR,
8586 cp_convert (ssizetype, size, complain),
8587 cp_convert (ssizetype, integer_one_node,
8588 complain),
8589 complain);
8590 itype = fold (itype);
8591 processing_template_decl = saved_processing_template_decl;
8593 if (!TREE_CONSTANT (itype))
8595 /* A variable sized array. */
8596 itype = variable_size (itype);
8598 if (TREE_CODE (itype) != SAVE_EXPR)
8600 /* Look for SIZEOF_EXPRs in itype and fold them, otherwise
8601 they might survive till gimplification. */
8602 tree newitype = itype;
8603 bool found = false;
8604 cp_walk_tree_without_duplicates (&newitype,
8605 fold_sizeof_expr_r, &found);
8606 if (found)
8607 itype = variable_size (fold (newitype));
8610 stabilize_vla_size (itype);
8612 if (flag_sanitize & SANITIZE_VLA
8613 && do_ubsan_in_current_function ())
8615 /* We have to add 1 -- in the ubsan routine we generate
8616 LE_EXPR rather than LT_EXPR. */
8617 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
8618 build_one_cst (TREE_TYPE (itype)));
8619 t = ubsan_instrument_vla (input_location, t);
8620 finish_expr_stmt (t);
8623 /* Make sure that there was no overflow when creating to a signed
8624 index type. (For example, on a 32-bit machine, an array with
8625 size 2^32 - 1 is too big.) */
8626 else if (TREE_CODE (itype) == INTEGER_CST
8627 && TREE_OVERFLOW (itype))
8629 if (!(complain & tf_error))
8630 return error_mark_node;
8631 error ("overflow in array dimension");
8632 TREE_OVERFLOW (itype) = 0;
8636 /* Create and return the appropriate index type. */
8637 itype = build_index_type (itype);
8639 /* If the index type were dependent, we would have returned early, so
8640 remember that it isn't. */
8641 TYPE_DEPENDENT_P (itype) = 0;
8642 TYPE_DEPENDENT_P_VALID (itype) = 1;
8643 return itype;
8646 /* Returns the scope (if any) in which the entity declared by
8647 DECLARATOR will be located. If the entity was declared with an
8648 unqualified name, NULL_TREE is returned. */
8650 tree
8651 get_scope_of_declarator (const cp_declarator *declarator)
8653 while (declarator && declarator->kind != cdk_id)
8654 declarator = declarator->declarator;
8656 /* If the declarator-id is a SCOPE_REF, the scope in which the
8657 declaration occurs is the first operand. */
8658 if (declarator
8659 && declarator->u.id.qualifying_scope)
8660 return declarator->u.id.qualifying_scope;
8662 /* Otherwise, the declarator is not a qualified name; the entity will
8663 be declared in the current scope. */
8664 return NULL_TREE;
8667 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
8668 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
8669 with this type. */
8671 static tree
8672 create_array_type_for_decl (tree name, tree type, tree size)
8674 tree itype = NULL_TREE;
8676 /* If things have already gone awry, bail now. */
8677 if (type == error_mark_node || size == error_mark_node)
8678 return error_mark_node;
8680 /* 8.3.4/1: If the type of the identifier of D contains the auto
8681 type-specifier, the program is ill-formed. */
8682 if (type_uses_auto (type))
8684 error ("%qD declared as array of %qT", name, type);
8685 return error_mark_node;
8688 /* If there are some types which cannot be array elements,
8689 issue an error-message and return. */
8690 switch (TREE_CODE (type))
8692 case VOID_TYPE:
8693 if (name)
8694 error ("declaration of %qD as array of void", name);
8695 else
8696 error ("creating array of void");
8697 return error_mark_node;
8699 case FUNCTION_TYPE:
8700 if (name)
8701 error ("declaration of %qD as array of functions", name);
8702 else
8703 error ("creating array of functions");
8704 return error_mark_node;
8706 case REFERENCE_TYPE:
8707 if (name)
8708 error ("declaration of %qD as array of references", name);
8709 else
8710 error ("creating array of references");
8711 return error_mark_node;
8713 case METHOD_TYPE:
8714 if (name)
8715 error ("declaration of %qD as array of function members", name);
8716 else
8717 error ("creating array of function members");
8718 return error_mark_node;
8720 default:
8721 break;
8724 /* [dcl.array]
8726 The constant expressions that specify the bounds of the arrays
8727 can be omitted only for the first member of the sequence. */
8728 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
8730 if (name)
8731 error ("declaration of %qD as multidimensional array must "
8732 "have bounds for all dimensions except the first",
8733 name);
8734 else
8735 error ("multidimensional array must have bounds for all "
8736 "dimensions except the first");
8738 return error_mark_node;
8741 /* Figure out the index type for the array. */
8742 if (size)
8743 itype = compute_array_index_type (name, size, tf_warning_or_error);
8745 /* [dcl.array]
8746 T is called the array element type; this type shall not be [...] an
8747 abstract class type. */
8748 abstract_virtuals_error (name, type);
8750 return build_cplus_array_type (type, itype);
8753 /* Check that it's OK to declare a function with the indicated TYPE.
8754 SFK indicates the kind of special function (if any) that this
8755 function is. OPTYPE is the type given in a conversion operator
8756 declaration, or the class type for a constructor/destructor.
8757 Returns the actual return type of the function; that
8758 may be different than TYPE if an error occurs, or for certain
8759 special functions. */
8761 static tree
8762 check_special_function_return_type (special_function_kind sfk,
8763 tree type,
8764 tree optype)
8766 switch (sfk)
8768 case sfk_constructor:
8769 if (type)
8770 error ("return type specification for constructor invalid");
8772 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
8773 type = build_pointer_type (optype);
8774 else
8775 type = void_type_node;
8776 break;
8778 case sfk_destructor:
8779 if (type)
8780 error ("return type specification for destructor invalid");
8781 /* We can't use the proper return type here because we run into
8782 problems with ambiguous bases and covariant returns.
8783 Java classes are left unchanged because (void *) isn't a valid
8784 Java type, and we don't want to change the Java ABI. */
8785 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
8786 type = build_pointer_type (void_type_node);
8787 else
8788 type = void_type_node;
8789 break;
8791 case sfk_conversion:
8792 if (type)
8793 error ("return type specified for %<operator %T%>", optype);
8794 type = optype;
8795 break;
8797 default:
8798 gcc_unreachable ();
8801 return type;
8804 /* A variable or data member (whose unqualified name is IDENTIFIER)
8805 has been declared with the indicated TYPE. If the TYPE is not
8806 acceptable, issue an error message and return a type to use for
8807 error-recovery purposes. */
8809 tree
8810 check_var_type (tree identifier, tree type)
8812 if (VOID_TYPE_P (type))
8814 if (!identifier)
8815 error ("unnamed variable or field declared void");
8816 else if (identifier_p (identifier))
8818 gcc_assert (!IDENTIFIER_OPNAME_P (identifier));
8819 error ("variable or field %qE declared void", identifier);
8821 else
8822 error ("variable or field declared void");
8823 type = error_mark_node;
8826 return type;
8829 /* Given declspecs and a declarator (abstract or otherwise), determine
8830 the name and type of the object declared and construct a DECL node
8831 for it.
8833 DECLSPECS points to the representation of declaration-specifier
8834 sequence that precedes declarator.
8836 DECL_CONTEXT says which syntactic context this declaration is in:
8837 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
8838 FUNCDEF for a function definition. Like NORMAL but a few different
8839 error messages in each case. Return value may be zero meaning
8840 this definition is too screwy to try to parse.
8841 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
8842 handle member functions (which have FIELD context).
8843 Return value may be zero meaning this definition is too screwy to
8844 try to parse.
8845 PARM for a parameter declaration (either within a function prototype
8846 or before a function body). Make a PARM_DECL, or return void_type_node.
8847 TPARM for a template parameter declaration.
8848 CATCHPARM for a parameter declaration before a catch clause.
8849 TYPENAME if for a typename (in a cast or sizeof).
8850 Don't make a DECL node; just return the ..._TYPE node.
8851 FIELD for a struct or union field; make a FIELD_DECL.
8852 BITFIELD for a field with specified width.
8854 INITIALIZED is as for start_decl.
8856 ATTRLIST is a pointer to the list of attributes, which may be NULL
8857 if there are none; *ATTRLIST may be modified if attributes from inside
8858 the declarator should be applied to the declaration.
8860 When this function is called, scoping variables (such as
8861 CURRENT_CLASS_TYPE) should reflect the scope in which the
8862 declaration occurs, not the scope in which the new declaration will
8863 be placed. For example, on:
8865 void S::f() { ... }
8867 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
8868 should not be `S'.
8870 Returns a DECL (if a declarator is present), a TYPE (if there is no
8871 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
8872 error occurs. */
8874 tree
8875 grokdeclarator (const cp_declarator *declarator,
8876 cp_decl_specifier_seq *declspecs,
8877 enum decl_context decl_context,
8878 int initialized,
8879 tree* attrlist)
8881 tree type = NULL_TREE;
8882 int longlong = 0;
8883 int explicit_intN = 0;
8884 int virtualp, explicitp, friendp, inlinep, staticp;
8885 int explicit_int = 0;
8886 int explicit_char = 0;
8887 int defaulted_int = 0;
8889 tree typedef_decl = NULL_TREE;
8890 const char *name = NULL;
8891 tree typedef_type = NULL_TREE;
8892 /* True if this declarator is a function definition. */
8893 bool funcdef_flag = false;
8894 cp_declarator_kind innermost_code = cdk_error;
8895 int bitfield = 0;
8896 #if 0
8897 /* See the code below that used this. */
8898 tree decl_attr = NULL_TREE;
8899 #endif
8901 /* Keep track of what sort of function is being processed
8902 so that we can warn about default return values, or explicit
8903 return values which do not match prescribed defaults. */
8904 special_function_kind sfk = sfk_none;
8906 tree dname = NULL_TREE;
8907 tree ctor_return_type = NULL_TREE;
8908 enum overload_flags flags = NO_SPECIAL;
8909 /* cv-qualifiers that apply to the declarator, for a declaration of
8910 a member function. */
8911 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
8912 /* virt-specifiers that apply to the declarator, for a declaration of
8913 a member function. */
8914 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
8915 /* ref-qualifier that applies to the declarator, for a declaration of
8916 a member function. */
8917 cp_ref_qualifier rqual = REF_QUAL_NONE;
8918 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
8919 int type_quals;
8920 tree raises = NULL_TREE;
8921 int template_count = 0;
8922 tree returned_attrs = NULL_TREE;
8923 tree parms = NULL_TREE;
8924 const cp_declarator *id_declarator;
8925 /* The unqualified name of the declarator; either an
8926 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
8927 tree unqualified_id;
8928 /* The class type, if any, in which this entity is located,
8929 or NULL_TREE if none. Note that this value may be different from
8930 the current class type; for example if an attempt is made to declare
8931 "A::f" inside "B", this value will be "A". */
8932 tree ctype = current_class_type;
8933 /* The NAMESPACE_DECL for the namespace in which this entity is
8934 located. If an unqualified name is used to declare the entity,
8935 this value will be NULL_TREE, even if the entity is located at
8936 namespace scope. */
8937 tree in_namespace = NULL_TREE;
8938 cp_storage_class storage_class;
8939 bool unsigned_p, signed_p, short_p, long_p, thread_p;
8940 bool type_was_error_mark_node = false;
8941 bool parameter_pack_p = declarator? declarator->parameter_pack_p : false;
8942 bool template_type_arg = false;
8943 bool template_parm_flag = false;
8944 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
8945 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
8946 bool late_return_type_p = false;
8947 bool array_parameter_p = false;
8948 source_location saved_loc = input_location;
8949 const char *errmsg;
8951 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
8952 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
8953 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
8954 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
8955 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
8956 explicit_intN = declspecs->explicit_intN_p;
8957 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
8959 if (decl_context == FUNCDEF)
8960 funcdef_flag = true, decl_context = NORMAL;
8961 else if (decl_context == MEMFUNCDEF)
8962 funcdef_flag = true, decl_context = FIELD;
8963 else if (decl_context == BITFIELD)
8964 bitfield = 1, decl_context = FIELD;
8965 else if (decl_context == TEMPLATE_TYPE_ARG)
8966 template_type_arg = true, decl_context = TYPENAME;
8967 else if (decl_context == TPARM)
8968 template_parm_flag = true, decl_context = PARM;
8970 if (initialized > 1)
8971 funcdef_flag = true;
8973 /* Look inside a declarator for the name being declared
8974 and get it as a string, for an error message. */
8975 for (id_declarator = declarator;
8976 id_declarator;
8977 id_declarator = id_declarator->declarator)
8979 if (id_declarator->kind != cdk_id)
8980 innermost_code = id_declarator->kind;
8982 switch (id_declarator->kind)
8984 case cdk_function:
8985 if (id_declarator->declarator
8986 && id_declarator->declarator->kind == cdk_id)
8988 sfk = id_declarator->declarator->u.id.sfk;
8989 if (sfk == sfk_destructor)
8990 flags = DTOR_FLAG;
8992 break;
8994 case cdk_id:
8996 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
8997 tree decl = id_declarator->u.id.unqualified_name;
8998 if (!decl)
8999 break;
9000 if (qualifying_scope)
9002 if (at_function_scope_p ())
9004 /* [dcl.meaning]
9006 A declarator-id shall not be qualified except
9007 for ...
9009 None of the cases are permitted in block
9010 scope. */
9011 if (qualifying_scope == global_namespace)
9012 error ("invalid use of qualified-name %<::%D%>",
9013 decl);
9014 else if (TYPE_P (qualifying_scope))
9015 error ("invalid use of qualified-name %<%T::%D%>",
9016 qualifying_scope, decl);
9017 else
9018 error ("invalid use of qualified-name %<%D::%D%>",
9019 qualifying_scope, decl);
9020 return error_mark_node;
9022 else if (TYPE_P (qualifying_scope))
9024 ctype = qualifying_scope;
9025 if (!MAYBE_CLASS_TYPE_P (ctype))
9027 error ("%q#T is not a class or a namespace", ctype);
9028 ctype = NULL_TREE;
9030 else if (innermost_code != cdk_function
9031 && current_class_type
9032 && !uniquely_derived_from_p (ctype,
9033 current_class_type))
9035 error ("invalid use of qualified-name %<%T::%D%>",
9036 qualifying_scope, decl);
9037 return error_mark_node;
9040 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
9041 in_namespace = qualifying_scope;
9043 switch (TREE_CODE (decl))
9045 case BIT_NOT_EXPR:
9047 tree type;
9049 if (innermost_code != cdk_function)
9051 error ("declaration of %qD as non-function", decl);
9052 return error_mark_node;
9054 else if (!qualifying_scope
9055 && !(current_class_type && at_class_scope_p ()))
9057 error ("declaration of %qD as non-member", decl);
9058 return error_mark_node;
9061 type = TREE_OPERAND (decl, 0);
9062 if (TYPE_P (type))
9063 type = constructor_name (type);
9064 name = identifier_to_locale (IDENTIFIER_POINTER (type));
9065 dname = decl;
9067 break;
9069 case TEMPLATE_ID_EXPR:
9071 tree fns = TREE_OPERAND (decl, 0);
9073 dname = fns;
9074 if (!identifier_p (dname))
9076 if (variable_template_p (dname))
9077 dname = DECL_NAME (dname);
9078 else
9080 gcc_assert (is_overloaded_fn (dname));
9081 dname = DECL_NAME (get_first_fn (dname));
9085 /* Fall through. */
9087 case IDENTIFIER_NODE:
9088 if (identifier_p (decl))
9089 dname = decl;
9091 if (C_IS_RESERVED_WORD (dname))
9093 error ("declarator-id missing; using reserved word %qD",
9094 dname);
9095 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9097 else if (!IDENTIFIER_TYPENAME_P (dname))
9098 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9099 else
9101 gcc_assert (flags == NO_SPECIAL);
9102 flags = TYPENAME_FLAG;
9103 ctor_return_type = TREE_TYPE (dname);
9104 sfk = sfk_conversion;
9105 if (is_typename_at_global_scope (dname))
9106 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9107 else
9108 name = "<invalid operator>";
9110 break;
9112 default:
9113 gcc_unreachable ();
9115 break;
9118 case cdk_array:
9119 case cdk_pointer:
9120 case cdk_reference:
9121 case cdk_ptrmem:
9122 break;
9124 case cdk_error:
9125 return error_mark_node;
9127 default:
9128 gcc_unreachable ();
9130 if (id_declarator->kind == cdk_id)
9131 break;
9134 /* [dcl.fct.edf]
9136 The declarator in a function-definition shall have the form
9137 D1 ( parameter-declaration-clause) ... */
9138 if (funcdef_flag && innermost_code != cdk_function)
9140 error ("function definition does not declare parameters");
9141 return error_mark_node;
9144 if (flags == TYPENAME_FLAG
9145 && innermost_code != cdk_function
9146 && ! (ctype && !declspecs->any_specifiers_p))
9148 error ("declaration of %qD as non-function", dname);
9149 return error_mark_node;
9152 if (dname
9153 && identifier_p (dname)
9154 && UDLIT_OPER_P (dname)
9155 && innermost_code != cdk_function)
9157 error ("declaration of %qD as non-function", dname);
9158 return error_mark_node;
9161 if (dname && IDENTIFIER_OPNAME_P (dname))
9163 if (typedef_p)
9165 error ("declaration of %qD as %<typedef%>", dname);
9166 return error_mark_node;
9168 else if (decl_context == PARM || decl_context == CATCHPARM)
9170 error ("declaration of %qD as parameter", dname);
9171 return error_mark_node;
9175 /* Anything declared one level down from the top level
9176 must be one of the parameters of a function
9177 (because the body is at least two levels down). */
9179 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
9180 by not allowing C++ class definitions to specify their parameters
9181 with xdecls (must be spec.d in the parmlist).
9183 Since we now wait to push a class scope until we are sure that
9184 we are in a legitimate method context, we must set oldcname
9185 explicitly (since current_class_name is not yet alive).
9187 We also want to avoid calling this a PARM if it is in a namespace. */
9189 if (decl_context == NORMAL && !toplevel_bindings_p ())
9191 cp_binding_level *b = current_binding_level;
9192 current_binding_level = b->level_chain;
9193 if (current_binding_level != 0 && toplevel_bindings_p ())
9194 decl_context = PARM;
9195 current_binding_level = b;
9198 if (name == NULL)
9199 name = decl_context == PARM ? "parameter" : "type name";
9201 if (constexpr_p && typedef_p)
9203 error ("%<constexpr%> cannot appear in a typedef declaration");
9204 return error_mark_node;
9207 /* If there were multiple types specified in the decl-specifier-seq,
9208 issue an error message. */
9209 if (declspecs->multiple_types_p)
9211 error ("two or more data types in declaration of %qs", name);
9212 return error_mark_node;
9215 if (declspecs->conflicting_specifiers_p)
9217 error ("conflicting specifiers in declaration of %qs", name);
9218 return error_mark_node;
9221 /* Extract the basic type from the decl-specifier-seq. */
9222 type = declspecs->type;
9223 if (type == error_mark_node)
9225 type = NULL_TREE;
9226 type_was_error_mark_node = true;
9228 /* If the entire declaration is itself tagged as deprecated then
9229 suppress reports of deprecated items. */
9230 if (type && TREE_DEPRECATED (type)
9231 && deprecated_state != DEPRECATED_SUPPRESS)
9232 warn_deprecated_use (type, NULL_TREE);
9233 if (type && TREE_CODE (type) == TYPE_DECL)
9235 typedef_decl = type;
9236 type = TREE_TYPE (typedef_decl);
9237 if (TREE_DEPRECATED (type)
9238 && DECL_ARTIFICIAL (typedef_decl)
9239 && deprecated_state != DEPRECATED_SUPPRESS)
9240 warn_deprecated_use (type, NULL_TREE);
9242 /* No type at all: default to `int', and set DEFAULTED_INT
9243 because it was not a user-defined typedef. */
9244 if (type == NULL_TREE)
9246 if (signed_p || unsigned_p || long_p || short_p)
9248 /* These imply 'int'. */
9249 type = integer_type_node;
9250 defaulted_int = 1;
9252 /* If we just have "complex", it is equivalent to "complex double". */
9253 else if (!longlong && !explicit_intN
9254 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
9256 type = double_type_node;
9257 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
9258 "ISO C++ does not support plain %<complex%> meaning "
9259 "%<double complex%>");
9262 /* Gather flags. */
9263 explicit_int = declspecs->explicit_int_p;
9264 explicit_char = declspecs->explicit_char_p;
9266 #if 0
9267 /* See the code below that used this. */
9268 if (typedef_decl)
9269 decl_attr = DECL_ATTRIBUTES (typedef_decl);
9270 #endif
9271 typedef_type = type;
9274 if (sfk != sfk_conversion)
9275 ctor_return_type = ctype;
9277 if (sfk != sfk_none)
9278 type = check_special_function_return_type (sfk, type,
9279 ctor_return_type);
9280 else if (type == NULL_TREE)
9282 int is_main;
9284 explicit_int = -1;
9286 /* We handle `main' specially here, because 'main () { }' is so
9287 common. With no options, it is allowed. With -Wreturn-type,
9288 it is a warning. It is only an error with -pedantic-errors. */
9289 is_main = (funcdef_flag
9290 && dname && identifier_p (dname)
9291 && MAIN_NAME_P (dname)
9292 && ctype == NULL_TREE
9293 && in_namespace == NULL_TREE
9294 && current_namespace == global_namespace);
9296 if (type_was_error_mark_node)
9297 /* We've already issued an error, don't complain more. */;
9298 else if (in_system_header_at (input_location) || flag_ms_extensions)
9299 /* Allow it, sigh. */;
9300 else if (! is_main)
9301 permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
9302 else if (pedantic)
9303 pedwarn (input_location, OPT_Wpedantic,
9304 "ISO C++ forbids declaration of %qs with no type", name);
9305 else
9306 warning (OPT_Wreturn_type,
9307 "ISO C++ forbids declaration of %qs with no type", name);
9309 type = integer_type_node;
9312 ctype = NULL_TREE;
9314 if (explicit_intN)
9316 if (! int_n_enabled_p[declspecs->int_n_idx])
9318 error ("%<__int%d%> is not supported by this target",
9319 int_n_data[declspecs->int_n_idx].bitsize);
9320 explicit_intN = false;
9322 else if (pedantic && ! in_system_header_at (input_location))
9323 pedwarn (input_location, OPT_Wpedantic,
9324 "ISO C++ does not support %<__int%d%> for %qs",
9325 int_n_data[declspecs->int_n_idx].bitsize, name);
9328 /* Now process the modifiers that were specified
9329 and check for invalid combinations. */
9331 /* Long double is a special combination. */
9332 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
9334 long_p = false;
9335 type = cp_build_qualified_type (long_double_type_node,
9336 cp_type_quals (type));
9339 /* Check all other uses of type modifiers. */
9341 if (unsigned_p || signed_p || long_p || short_p)
9343 int ok = 0;
9345 if ((signed_p || unsigned_p) && TREE_CODE (type) != INTEGER_TYPE)
9346 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9347 else if (signed_p && unsigned_p)
9348 error ("%<signed%> and %<unsigned%> specified together for %qs", name);
9349 else if (longlong && TREE_CODE (type) != INTEGER_TYPE)
9350 error ("%<long long%> invalid for %qs", name);
9351 else if (long_p && TREE_CODE (type) == REAL_TYPE)
9352 error ("%<long%> invalid for %qs", name);
9353 else if (short_p && TREE_CODE (type) == REAL_TYPE)
9354 error ("%<short%> invalid for %qs", name);
9355 else if ((long_p || short_p) && TREE_CODE (type) != INTEGER_TYPE)
9356 error ("%<long%> or %<short%> invalid for %qs", name);
9357 else if ((long_p || short_p || explicit_char || explicit_int) && explicit_intN)
9358 error ("%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs", name);
9359 else if ((long_p || short_p) && explicit_char)
9360 error ("%<long%> or %<short%> specified with char for %qs", name);
9361 else if (long_p && short_p)
9362 error ("%<long%> and %<short%> specified together for %qs", name);
9363 else if (type == char16_type_node || type == char32_type_node)
9365 if (signed_p || unsigned_p)
9366 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9367 else if (short_p || long_p)
9368 error ("%<short%> or %<long%> invalid for %qs", name);
9370 else
9372 ok = 1;
9373 if (!explicit_int && !defaulted_int && !explicit_char && !explicit_intN && pedantic)
9375 pedwarn (input_location, OPT_Wpedantic,
9376 "long, short, signed or unsigned used invalidly for %qs",
9377 name);
9378 if (flag_pedantic_errors)
9379 ok = 0;
9383 /* Discard the type modifiers if they are invalid. */
9384 if (! ok)
9386 unsigned_p = false;
9387 signed_p = false;
9388 long_p = false;
9389 short_p = false;
9390 longlong = 0;
9394 /* Decide whether an integer type is signed or not.
9395 Optionally treat bitfields as signed by default. */
9396 if (unsigned_p
9397 /* [class.bit]
9399 It is implementation-defined whether a plain (neither
9400 explicitly signed or unsigned) char, short, int, or long
9401 bit-field is signed or unsigned.
9403 Naturally, we extend this to long long as well. Note that
9404 this does not include wchar_t. */
9405 || (bitfield && !flag_signed_bitfields
9406 && !signed_p
9407 /* A typedef for plain `int' without `signed' can be
9408 controlled just like plain `int', but a typedef for
9409 `signed int' cannot be so controlled. */
9410 && !(typedef_decl
9411 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
9412 && TREE_CODE (type) == INTEGER_TYPE
9413 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
9415 if (explicit_intN)
9416 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
9417 else if (longlong)
9418 type = long_long_unsigned_type_node;
9419 else if (long_p)
9420 type = long_unsigned_type_node;
9421 else if (short_p)
9422 type = short_unsigned_type_node;
9423 else if (type == char_type_node)
9424 type = unsigned_char_type_node;
9425 else if (typedef_decl)
9426 type = unsigned_type_for (type);
9427 else
9428 type = unsigned_type_node;
9430 else if (signed_p && type == char_type_node)
9431 type = signed_char_type_node;
9432 else if (explicit_intN)
9433 type = int_n_trees[declspecs->int_n_idx].signed_type;
9434 else if (longlong)
9435 type = long_long_integer_type_node;
9436 else if (long_p)
9437 type = long_integer_type_node;
9438 else if (short_p)
9439 type = short_integer_type_node;
9441 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
9443 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
9444 error ("complex invalid for %qs", name);
9445 /* If a modifier is specified, the resulting complex is the complex
9446 form of TYPE. E.g, "complex short" is "complex short int". */
9447 else if (type == integer_type_node)
9448 type = complex_integer_type_node;
9449 else if (type == float_type_node)
9450 type = complex_float_type_node;
9451 else if (type == double_type_node)
9452 type = complex_double_type_node;
9453 else if (type == long_double_type_node)
9454 type = complex_long_double_type_node;
9455 else
9456 type = build_complex_type (type);
9459 type_quals = TYPE_UNQUALIFIED;
9460 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
9461 type_quals |= TYPE_QUAL_CONST;
9462 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
9463 type_quals |= TYPE_QUAL_VOLATILE;
9464 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
9465 type_quals |= TYPE_QUAL_RESTRICT;
9466 if (sfk == sfk_conversion && type_quals != TYPE_UNQUALIFIED)
9467 error ("qualifiers are not allowed on declaration of %<operator %T%>",
9468 ctor_return_type);
9470 /* If we're using the injected-class-name to form a compound type or a
9471 declaration, replace it with the underlying class so we don't get
9472 redundant typedefs in the debug output. But if we are returning the
9473 type unchanged, leave it alone so that it's available to
9474 maybe_get_template_decl_from_type_decl. */
9475 if (CLASS_TYPE_P (type)
9476 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
9477 && type == TREE_TYPE (TYPE_NAME (type))
9478 && (declarator || type_quals))
9479 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
9481 type_quals |= cp_type_quals (type);
9482 type = cp_build_qualified_type_real
9483 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
9484 || declspecs->decltype_p)
9485 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
9486 /* We might have ignored or rejected some of the qualifiers. */
9487 type_quals = cp_type_quals (type);
9489 staticp = 0;
9490 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
9491 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
9492 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
9494 storage_class = declspecs->storage_class;
9495 if (storage_class == sc_static)
9496 staticp = 1 + (decl_context == FIELD);
9498 if (virtualp && staticp == 2)
9500 error ("member %qD cannot be declared both virtual and static", dname);
9501 storage_class = sc_none;
9502 staticp = 0;
9504 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
9506 /* Issue errors about use of storage classes for parameters. */
9507 if (decl_context == PARM)
9509 if (typedef_p)
9511 error ("typedef declaration invalid in parameter declaration");
9512 return error_mark_node;
9514 else if (template_parm_flag && storage_class != sc_none)
9516 error ("storage class specified for template parameter %qs", name);
9517 return error_mark_node;
9519 else if (storage_class == sc_static
9520 || storage_class == sc_extern
9521 || thread_p)
9522 error ("storage class specifiers invalid in parameter declarations");
9524 /* Function parameters cannot be constexpr. If we saw one, moan
9525 and pretend it wasn't there. */
9526 if (constexpr_p)
9528 error ("a parameter cannot be declared %<constexpr%>");
9529 constexpr_p = 0;
9533 /* Give error if `virtual' is used outside of class declaration. */
9534 if (virtualp
9535 && (current_class_name == NULL_TREE || decl_context != FIELD))
9537 error ("%<virtual%> outside class declaration");
9538 virtualp = 0;
9541 /* Static anonymous unions are dealt with here. */
9542 if (staticp && decl_context == TYPENAME
9543 && declspecs->type
9544 && ANON_AGGR_TYPE_P (declspecs->type))
9545 decl_context = FIELD;
9547 /* Warn about storage classes that are invalid for certain
9548 kinds of declarations (parameters, typenames, etc.). */
9549 if (thread_p
9550 && ((storage_class
9551 && storage_class != sc_extern
9552 && storage_class != sc_static)
9553 || typedef_p))
9555 error ("multiple storage classes in declaration of %qs", name);
9556 thread_p = false;
9558 if (decl_context != NORMAL
9559 && ((storage_class != sc_none
9560 && storage_class != sc_mutable)
9561 || thread_p))
9563 if ((decl_context == PARM || decl_context == CATCHPARM)
9564 && (storage_class == sc_register
9565 || storage_class == sc_auto))
9567 else if (typedef_p)
9569 else if (decl_context == FIELD
9570 /* C++ allows static class elements. */
9571 && storage_class == sc_static)
9572 /* C++ also allows inlines and signed and unsigned elements,
9573 but in those cases we don't come in here. */
9575 else
9577 if (decl_context == FIELD)
9578 error ("storage class specified for %qs", name);
9579 else
9581 if (decl_context == PARM || decl_context == CATCHPARM)
9582 error ("storage class specified for parameter %qs", name);
9583 else
9584 error ("storage class specified for typename");
9586 if (storage_class == sc_register
9587 || storage_class == sc_auto
9588 || storage_class == sc_extern
9589 || thread_p)
9590 storage_class = sc_none;
9593 else if (storage_class == sc_extern && funcdef_flag
9594 && ! toplevel_bindings_p ())
9595 error ("nested function %qs declared %<extern%>", name);
9596 else if (toplevel_bindings_p ())
9598 if (storage_class == sc_auto)
9599 error ("top-level declaration of %qs specifies %<auto%>", name);
9601 else if (thread_p
9602 && storage_class != sc_extern
9603 && storage_class != sc_static)
9605 if (declspecs->gnu_thread_keyword_p)
9606 pedwarn (input_location, 0, "function-scope %qs implicitly auto and "
9607 "declared %<__thread%>", name);
9609 /* When thread_local is applied to a variable of block scope the
9610 storage-class-specifier static is implied if it does not appear
9611 explicitly. */
9612 storage_class = declspecs->storage_class = sc_static;
9613 staticp = 1;
9616 if (storage_class && friendp)
9618 error ("storage class specifiers invalid in friend function declarations");
9619 storage_class = sc_none;
9620 staticp = 0;
9623 if (!id_declarator)
9624 unqualified_id = NULL_TREE;
9625 else
9627 unqualified_id = id_declarator->u.id.unqualified_name;
9628 switch (TREE_CODE (unqualified_id))
9630 case BIT_NOT_EXPR:
9631 unqualified_id = TREE_OPERAND (unqualified_id, 0);
9632 if (TYPE_P (unqualified_id))
9633 unqualified_id = constructor_name (unqualified_id);
9634 break;
9636 case IDENTIFIER_NODE:
9637 case TEMPLATE_ID_EXPR:
9638 break;
9640 default:
9641 gcc_unreachable ();
9645 if (declspecs->std_attributes)
9647 /* Apply the c++11 attributes to the type preceding them. */
9648 input_location = declspecs->locations[ds_std_attribute];
9649 decl_attributes (&type, declspecs->std_attributes, 0);
9650 input_location = saved_loc;
9653 /* Determine the type of the entity declared by recurring on the
9654 declarator. */
9655 for (; declarator; declarator = declarator->declarator)
9657 const cp_declarator *inner_declarator;
9658 tree attrs;
9660 if (type == error_mark_node)
9661 return error_mark_node;
9663 attrs = declarator->attributes;
9664 if (attrs)
9666 int attr_flags;
9668 attr_flags = 0;
9669 if (declarator == NULL || declarator->kind == cdk_id)
9670 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
9671 if (declarator->kind == cdk_function)
9672 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
9673 if (declarator->kind == cdk_array)
9674 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
9675 returned_attrs = decl_attributes (&type,
9676 chainon (returned_attrs, attrs),
9677 attr_flags);
9680 if (declarator->kind == cdk_id)
9681 break;
9683 inner_declarator = declarator->declarator;
9685 switch (declarator->kind)
9687 case cdk_array:
9688 type = create_array_type_for_decl (dname, type,
9689 declarator->u.array.bounds);
9690 if (declarator->std_attributes)
9691 /* [dcl.array]/1:
9693 The optional attribute-specifier-seq appertains to the
9694 array. */
9695 returned_attrs = chainon (returned_attrs,
9696 declarator->std_attributes);
9697 break;
9699 case cdk_function:
9701 tree arg_types;
9702 int funcdecl_p;
9704 /* Declaring a function type.
9705 Make sure we have a valid type for the function to return. */
9707 if (type_quals != TYPE_UNQUALIFIED)
9709 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
9710 warning (OPT_Wignored_qualifiers,
9711 "type qualifiers ignored on function return type");
9712 /* We now know that the TYPE_QUALS don't apply to the
9713 decl, but to its return type. */
9714 type_quals = TYPE_UNQUALIFIED;
9716 errmsg = targetm.invalid_return_type (type);
9717 if (errmsg)
9719 error (errmsg);
9720 type = integer_type_node;
9723 /* Error about some types functions can't return. */
9725 if (TREE_CODE (type) == FUNCTION_TYPE)
9727 error ("%qs declared as function returning a function", name);
9728 return error_mark_node;
9730 if (TREE_CODE (type) == ARRAY_TYPE)
9732 error ("%qs declared as function returning an array", name);
9733 return error_mark_node;
9736 input_location = declspecs->locations[ds_type_spec];
9737 abstract_virtuals_error (ACU_RETURN, type);
9738 input_location = saved_loc;
9740 /* Pick up type qualifiers which should be applied to `this'. */
9741 memfn_quals = declarator->u.function.qualifiers;
9742 /* Pick up virt-specifiers. */
9743 virt_specifiers = declarator->u.function.virt_specifiers;
9744 /* And ref-qualifier, too */
9745 rqual = declarator->u.function.ref_qualifier;
9746 /* Pick up the exception specifications. */
9747 raises = declarator->u.function.exception_specification;
9748 /* If the exception-specification is ill-formed, let's pretend
9749 there wasn't one. */
9750 if (raises == error_mark_node)
9751 raises = NULL_TREE;
9753 /* Say it's a definition only for the CALL_EXPR
9754 closest to the identifier. */
9755 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
9757 /* Handle a late-specified return type. */
9758 if (funcdecl_p)
9760 if (type_uses_auto (type))
9762 if (!declarator->u.function.late_return_type)
9764 if (current_class_type
9765 && LAMBDA_TYPE_P (current_class_type))
9766 /* OK for C++11 lambdas. */;
9767 else if (cxx_dialect < cxx14)
9769 error ("%qs function uses "
9770 "%<auto%> type specifier without trailing "
9771 "return type", name);
9772 inform (input_location, "deduced return type "
9773 "only available with -std=c++14 or "
9774 "-std=gnu++14");
9776 else if (virtualp)
9778 error ("virtual function cannot "
9779 "have deduced return type");
9780 virtualp = false;
9783 else if (!is_auto (type))
9785 error ("%qs function with trailing return type has"
9786 " %qT as its type rather than plain %<auto%>",
9787 name, type);
9788 return error_mark_node;
9791 else if (declarator->u.function.late_return_type)
9793 if (cxx_dialect < cxx11)
9794 /* Not using maybe_warn_cpp0x because this should
9795 always be an error. */
9796 error ("trailing return type only available with "
9797 "-std=c++11 or -std=gnu++11");
9798 else
9799 error ("%qs function with trailing return type not "
9800 "declared with %<auto%> type specifier", name);
9801 return error_mark_node;
9804 type = splice_late_return_type
9805 (type, declarator->u.function.late_return_type);
9806 if (type == error_mark_node)
9807 return error_mark_node;
9809 if (declarator->u.function.late_return_type)
9810 late_return_type_p = true;
9812 if (ctype == NULL_TREE
9813 && decl_context == FIELD
9814 && funcdecl_p
9815 && friendp == 0)
9816 ctype = current_class_type;
9818 if (ctype && (sfk == sfk_constructor
9819 || sfk == sfk_destructor))
9821 /* We are within a class's scope. If our declarator name
9822 is the same as the class name, and we are defining
9823 a function, then it is a constructor/destructor, and
9824 therefore returns a void type. */
9826 /* ISO C++ 12.4/2. A destructor may not be declared
9827 const or volatile. A destructor may not be static.
9828 A destructor may not be declared with ref-qualifier.
9830 ISO C++ 12.1. A constructor may not be declared
9831 const or volatile. A constructor may not be
9832 virtual. A constructor may not be static.
9833 A constructor may not be declared with ref-qualifier. */
9834 if (staticp == 2)
9835 error ((flags == DTOR_FLAG)
9836 ? G_("destructor cannot be static member function")
9837 : G_("constructor cannot be static member function"));
9838 if (memfn_quals)
9840 error ((flags == DTOR_FLAG)
9841 ? G_("destructors may not be cv-qualified")
9842 : G_("constructors may not be cv-qualified"));
9843 memfn_quals = TYPE_UNQUALIFIED;
9846 if (rqual)
9848 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
9849 error ((flags == DTOR_FLAG)
9850 ? "destructors may not be ref-qualified"
9851 : "constructors may not be ref-qualified");
9852 rqual = REF_QUAL_NONE;
9855 if (decl_context == FIELD
9856 && !member_function_or_else (ctype,
9857 current_class_type,
9858 flags))
9859 return error_mark_node;
9861 if (flags != DTOR_FLAG)
9863 /* It's a constructor. */
9864 if (explicitp == 1)
9865 explicitp = 2;
9866 if (virtualp)
9868 permerror (input_location, "constructors cannot be declared virtual");
9869 virtualp = 0;
9871 if (decl_context == FIELD
9872 && sfk != sfk_constructor)
9873 return error_mark_node;
9875 if (decl_context == FIELD)
9876 staticp = 0;
9878 else if (friendp)
9880 if (virtualp)
9882 /* Cannot be both friend and virtual. */
9883 error ("virtual functions cannot be friends");
9884 friendp = 0;
9886 if (decl_context == NORMAL)
9887 error ("friend declaration not in class definition");
9888 if (current_function_decl && funcdef_flag)
9889 error ("can%'t define friend function %qs in a local "
9890 "class definition",
9891 name);
9893 else if (ctype && sfk == sfk_conversion)
9895 if (explicitp == 1)
9897 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
9898 explicitp = 2;
9902 arg_types = grokparms (declarator->u.function.parameters,
9903 &parms);
9905 if (inner_declarator
9906 && inner_declarator->kind == cdk_id
9907 && inner_declarator->u.id.sfk == sfk_destructor
9908 && arg_types != void_list_node)
9910 error ("destructors may not have parameters");
9911 arg_types = void_list_node;
9912 parms = NULL_TREE;
9915 type = build_function_type (type, arg_types);
9916 if (declarator->std_attributes)
9917 /* [dcl.fct]/2:
9919 The optional attribute-specifier-seq appertains to
9920 the function type. */
9921 decl_attributes (&type, declarator->std_attributes,
9924 break;
9926 case cdk_pointer:
9927 case cdk_reference:
9928 case cdk_ptrmem:
9929 /* Filter out pointers-to-references and references-to-references.
9930 We can get these if a TYPE_DECL is used. */
9932 if (TREE_CODE (type) == REFERENCE_TYPE)
9934 if (declarator->kind != cdk_reference)
9936 error ("cannot declare pointer to %q#T", type);
9937 type = TREE_TYPE (type);
9940 /* In C++0x, we allow reference to reference declarations
9941 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
9942 and template type arguments [14.3.1/4 temp.arg.type]. The
9943 check for direct reference to reference declarations, which
9944 are still forbidden, occurs below. Reasoning behind the change
9945 can be found in DR106, DR540, and the rvalue reference
9946 proposals. */
9947 else if (cxx_dialect == cxx98)
9949 error ("cannot declare reference to %q#T", type);
9950 type = TREE_TYPE (type);
9953 else if (VOID_TYPE_P (type))
9955 if (declarator->kind == cdk_reference)
9956 error ("cannot declare reference to %q#T", type);
9957 else if (declarator->kind == cdk_ptrmem)
9958 error ("cannot declare pointer to %q#T member", type);
9961 /* We now know that the TYPE_QUALS don't apply to the decl,
9962 but to the target of the pointer. */
9963 type_quals = TYPE_UNQUALIFIED;
9965 /* This code used to handle METHOD_TYPE, but I don't think it's
9966 possible to get it here anymore. */
9967 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
9968 if (declarator->kind == cdk_ptrmem
9969 && TREE_CODE (type) == FUNCTION_TYPE)
9971 memfn_quals |= type_memfn_quals (type);
9972 type = build_memfn_type (type,
9973 declarator->u.pointer.class_type,
9974 memfn_quals,
9975 rqual);
9976 if (type == error_mark_node)
9977 return error_mark_node;
9979 rqual = REF_QUAL_NONE;
9980 memfn_quals = TYPE_UNQUALIFIED;
9983 if (TREE_CODE (type) == FUNCTION_TYPE
9984 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
9985 || type_memfn_rqual (type) != REF_QUAL_NONE))
9986 error (declarator->kind == cdk_reference
9987 ? G_("cannot declare reference to qualified function type %qT")
9988 : G_("cannot declare pointer to qualified function type %qT"),
9989 type);
9991 /* When the pointed-to type involves components of variable size,
9992 care must be taken to ensure that the size evaluation code is
9993 emitted early enough to dominate all the possible later uses
9994 and late enough for the variables on which it depends to have
9995 been assigned.
9997 This is expected to happen automatically when the pointed-to
9998 type has a name/declaration of it's own, but special attention
9999 is required if the type is anonymous.
10001 We handle the NORMAL and FIELD contexts here by inserting a
10002 dummy statement that just evaluates the size at a safe point
10003 and ensures it is not deferred until e.g. within a deeper
10004 conditional context (c++/43555).
10006 We expect nothing to be needed here for PARM or TYPENAME.
10007 Evaluating the size at this point for TYPENAME would
10008 actually be incorrect, as we might be in the middle of an
10009 expression with side effects on the pointed-to type size
10010 "arguments" prior to the pointer declaration point and the
10011 size evaluation could end up prior to the side effects. */
10013 if (!TYPE_NAME (type)
10014 && (decl_context == NORMAL || decl_context == FIELD)
10015 && at_function_scope_p ()
10016 && variably_modified_type_p (type, NULL_TREE))
10017 /* Force evaluation of the SAVE_EXPR. */
10018 finish_expr_stmt (TYPE_SIZE (type));
10020 if (declarator->kind == cdk_reference)
10022 /* In C++0x, the type we are creating a reference to might be
10023 a typedef which is itself a reference type. In that case,
10024 we follow the reference collapsing rules in
10025 [7.1.3/8 dcl.typedef] to create the final reference type:
10027 "If a typedef TD names a type that is a reference to a type
10028 T, an attempt to create the type 'lvalue reference to cv TD'
10029 creates the type 'lvalue reference to T,' while an attempt
10030 to create the type "rvalue reference to cv TD' creates the
10031 type TD."
10033 if (VOID_TYPE_P (type))
10034 /* We already gave an error. */;
10035 else if (TREE_CODE (type) == REFERENCE_TYPE)
10037 if (declarator->u.reference.rvalue_ref)
10038 /* Leave type alone. */;
10039 else
10040 type = cp_build_reference_type (TREE_TYPE (type), false);
10042 else
10043 type = cp_build_reference_type
10044 (type, declarator->u.reference.rvalue_ref);
10046 /* In C++0x, we need this check for direct reference to
10047 reference declarations, which are forbidden by
10048 [8.3.2/5 dcl.ref]. Reference to reference declarations
10049 are only allowed indirectly through typedefs and template
10050 type arguments. Example:
10052 void foo(int & &); // invalid ref-to-ref decl
10054 typedef int & int_ref;
10055 void foo(int_ref &); // valid ref-to-ref decl
10057 if (inner_declarator && inner_declarator->kind == cdk_reference)
10058 error ("cannot declare reference to %q#T, which is not "
10059 "a typedef or a template type argument", type);
10061 else if (TREE_CODE (type) == METHOD_TYPE)
10062 type = build_ptrmemfunc_type (build_pointer_type (type));
10063 else if (declarator->kind == cdk_ptrmem)
10065 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
10066 != NAMESPACE_DECL);
10067 if (declarator->u.pointer.class_type == error_mark_node)
10068 /* We will already have complained. */
10069 type = error_mark_node;
10070 else
10071 type = build_ptrmem_type (declarator->u.pointer.class_type,
10072 type);
10074 else
10075 type = build_pointer_type (type);
10077 /* Process a list of type modifier keywords (such as
10078 const or volatile) that were given inside the `*' or `&'. */
10080 if (declarator->u.pointer.qualifiers)
10082 type
10083 = cp_build_qualified_type (type,
10084 declarator->u.pointer.qualifiers);
10085 type_quals = cp_type_quals (type);
10088 /* Apply C++11 attributes to the pointer, and not to the
10089 type pointed to. This is unlike what is done for GNU
10090 attributes above. It is to comply with [dcl.ptr]/1:
10092 [the optional attribute-specifier-seq (7.6.1) appertains
10093 to the pointer and not to the object pointed to]. */
10094 if (declarator->std_attributes)
10095 decl_attributes (&type, declarator->std_attributes,
10098 ctype = NULL_TREE;
10099 break;
10101 case cdk_error:
10102 break;
10104 default:
10105 gcc_unreachable ();
10109 /* A `constexpr' specifier used in an object declaration declares
10110 the object as `const'. */
10111 if (constexpr_p && innermost_code != cdk_function)
10113 if (type_quals & TYPE_QUAL_VOLATILE)
10114 error ("both %<volatile%> and %<constexpr%> cannot be used here");
10115 if (TREE_CODE (type) != REFERENCE_TYPE)
10117 type_quals |= TYPE_QUAL_CONST;
10118 type = cp_build_qualified_type (type, type_quals);
10122 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
10123 && TREE_CODE (type) != FUNCTION_TYPE
10124 && TREE_CODE (type) != METHOD_TYPE
10125 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
10127 error ("template-id %qD used as a declarator",
10128 unqualified_id);
10129 unqualified_id = dname;
10132 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
10133 qualified with a class-name, turn it into a METHOD_TYPE, unless
10134 we know that the function is static. We take advantage of this
10135 opportunity to do other processing that pertains to entities
10136 explicitly declared to be class members. Note that if DECLARATOR
10137 is non-NULL, we know it is a cdk_id declarator; otherwise, we
10138 would not have exited the loop above. */
10139 if (declarator
10140 && declarator->u.id.qualifying_scope
10141 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
10143 ctype = declarator->u.id.qualifying_scope;
10144 ctype = TYPE_MAIN_VARIANT (ctype);
10145 template_count = num_template_headers_for_class (ctype);
10147 if (ctype == current_class_type)
10149 if (friendp)
10151 permerror (input_location, "member functions are implicitly friends of their class");
10152 friendp = 0;
10154 else
10155 permerror (declarator->id_loc,
10156 "extra qualification %<%T::%> on member %qs",
10157 ctype, name);
10159 else if (/* If the qualifying type is already complete, then we
10160 can skip the following checks. */
10161 !COMPLETE_TYPE_P (ctype)
10162 && (/* If the function is being defined, then
10163 qualifying type must certainly be complete. */
10164 funcdef_flag
10165 /* A friend declaration of "T::f" is OK, even if
10166 "T" is a template parameter. But, if this
10167 function is not a friend, the qualifying type
10168 must be a class. */
10169 || (!friendp && !CLASS_TYPE_P (ctype))
10170 /* For a declaration, the type need not be
10171 complete, if either it is dependent (since there
10172 is no meaningful definition of complete in that
10173 case) or the qualifying class is currently being
10174 defined. */
10175 || !(dependent_type_p (ctype)
10176 || currently_open_class (ctype)))
10177 /* Check that the qualifying type is complete. */
10178 && !complete_type_or_else (ctype, NULL_TREE))
10179 return error_mark_node;
10180 else if (TREE_CODE (type) == FUNCTION_TYPE)
10182 if (current_class_type
10183 && (!friendp || funcdef_flag))
10185 error (funcdef_flag
10186 ? G_("cannot define member function %<%T::%s%> "
10187 "within %<%T%>")
10188 : G_("cannot declare member function %<%T::%s%> "
10189 "within %<%T%>"),
10190 ctype, name, current_class_type);
10191 return error_mark_node;
10194 else if (typedef_p && current_class_type)
10196 error ("cannot declare member %<%T::%s%> within %qT",
10197 ctype, name, current_class_type);
10198 return error_mark_node;
10202 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
10203 ctype = current_class_type;
10205 /* Now TYPE has the actual type. */
10207 if (returned_attrs)
10209 if (attrlist)
10210 *attrlist = chainon (returned_attrs, *attrlist);
10211 else
10212 attrlist = &returned_attrs;
10215 if (declarator
10216 && declarator->kind == cdk_id
10217 && declarator->std_attributes)
10218 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
10219 a declarator-id appertains to the entity that is declared. */
10220 *attrlist = chainon (*attrlist, declarator->std_attributes);
10222 /* Handle parameter packs. */
10223 if (parameter_pack_p)
10225 if (decl_context == PARM)
10226 /* Turn the type into a pack expansion.*/
10227 type = make_pack_expansion (type);
10228 else
10229 error ("non-parameter %qs cannot be a parameter pack", name);
10232 /* Did array size calculations overflow or does the array cover more
10233 than half of the address-space? */
10234 if (TREE_CODE (type) == ARRAY_TYPE
10235 && COMPLETE_TYPE_P (type)
10236 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
10237 && ! valid_constant_size_p (TYPE_SIZE_UNIT (type)))
10239 error ("size of array %qs is too large", name);
10240 /* If we proceed with the array type as it is, we'll eventually
10241 crash in tree_to_[su]hwi(). */
10242 type = error_mark_node;
10245 if ((decl_context == FIELD || decl_context == PARM)
10246 && !processing_template_decl
10247 && variably_modified_type_p (type, NULL_TREE))
10249 if (decl_context == FIELD)
10250 error ("data member may not have variably modified type %qT", type);
10251 else
10252 error ("parameter may not have variably modified type %qT", type);
10253 type = error_mark_node;
10256 if (explicitp == 1 || (explicitp && friendp))
10258 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
10259 in the declaration of a constructor or conversion function within
10260 a class definition. */
10261 if (!current_class_type)
10262 error ("%<explicit%> outside class declaration");
10263 else if (friendp)
10264 error ("%<explicit%> in friend declaration");
10265 else
10266 error ("only declarations of constructors and conversion operators "
10267 "can be %<explicit%>");
10268 explicitp = 0;
10271 if (storage_class == sc_mutable)
10273 if (decl_context != FIELD || friendp)
10275 error ("non-member %qs cannot be declared %<mutable%>", name);
10276 storage_class = sc_none;
10278 else if (decl_context == TYPENAME || typedef_p)
10280 error ("non-object member %qs cannot be declared %<mutable%>", name);
10281 storage_class = sc_none;
10283 else if (TREE_CODE (type) == FUNCTION_TYPE
10284 || TREE_CODE (type) == METHOD_TYPE)
10286 error ("function %qs cannot be declared %<mutable%>", name);
10287 storage_class = sc_none;
10289 else if (staticp)
10291 error ("static %qs cannot be declared %<mutable%>", name);
10292 storage_class = sc_none;
10294 else if (type_quals & TYPE_QUAL_CONST)
10296 error ("const %qs cannot be declared %<mutable%>", name);
10297 storage_class = sc_none;
10299 else if (TREE_CODE (type) == REFERENCE_TYPE)
10301 permerror (input_location, "reference %qs cannot be declared "
10302 "%<mutable%>", name);
10303 storage_class = sc_none;
10307 /* If this is declaring a typedef name, return a TYPE_DECL. */
10308 if (typedef_p && decl_context != TYPENAME)
10310 tree decl;
10312 /* Note that the grammar rejects storage classes
10313 in typenames, fields or parameters. */
10314 if (current_lang_name == lang_name_java)
10315 TYPE_FOR_JAVA (type) = 1;
10317 /* This declaration:
10319 typedef void f(int) const;
10321 declares a function type which is not a member of any
10322 particular class, but which is cv-qualified; for
10323 example "f S::*" declares a pointer to a const-qualified
10324 member function of S. We record the cv-qualification in the
10325 function type. */
10326 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
10328 type = apply_memfn_quals (type, memfn_quals, rqual);
10330 /* We have now dealt with these qualifiers. */
10331 memfn_quals = TYPE_UNQUALIFIED;
10332 rqual = REF_QUAL_NONE;
10335 if (type_uses_auto (type))
10337 error ("typedef declared %<auto%>");
10338 type = error_mark_node;
10341 if (decl_context == FIELD)
10342 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
10343 else
10344 decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
10345 if (id_declarator && declarator->u.id.qualifying_scope) {
10346 error_at (DECL_SOURCE_LOCATION (decl),
10347 "typedef name may not be a nested-name-specifier");
10348 TREE_TYPE (decl) = error_mark_node;
10351 if (decl_context != FIELD)
10353 if (!current_function_decl)
10354 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
10355 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl)
10356 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
10357 (current_function_decl)))
10358 /* The TYPE_DECL is "abstract" because there will be
10359 clones of this constructor/destructor, and there will
10360 be copies of this TYPE_DECL generated in those
10361 clones. The decloning optimization (for space) may
10362 revert this subsequently if it determines that
10363 the clones should share a common implementation. */
10364 DECL_ABSTRACT_P (decl) = true;
10366 else if (current_class_type
10367 && constructor_name_p (unqualified_id, current_class_type))
10368 permerror (input_location, "ISO C++ forbids nested type %qD with same name "
10369 "as enclosing class",
10370 unqualified_id);
10372 /* If the user declares "typedef struct {...} foo" then the
10373 struct will have an anonymous name. Fill that name in now.
10374 Nothing can refer to it, so nothing needs know about the name
10375 change. */
10376 if (type != error_mark_node
10377 && unqualified_id
10378 && TYPE_NAME (type)
10379 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10380 && TYPE_ANONYMOUS_P (type)
10381 && declspecs->type_definition_p
10382 && attributes_naming_typedef_ok (*attrlist)
10383 && cp_type_quals (type) == TYPE_UNQUALIFIED)
10385 tree t;
10387 /* Replace the anonymous name with the real name everywhere. */
10388 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
10390 if (ANON_AGGRNAME_P (TYPE_IDENTIFIER (t)))
10391 /* We do not rename the debug info representing the
10392 anonymous tagged type because the standard says in
10393 [dcl.typedef] that the naming applies only for
10394 linkage purposes. */
10395 /*debug_hooks->set_name (t, decl);*/
10396 TYPE_NAME (t) = decl;
10399 if (TYPE_LANG_SPECIFIC (type))
10400 TYPE_WAS_ANONYMOUS (type) = 1;
10402 /* If this is a typedef within a template class, the nested
10403 type is a (non-primary) template. The name for the
10404 template needs updating as well. */
10405 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
10406 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
10407 = TYPE_IDENTIFIER (type);
10409 /* Adjust linkage now that we aren't anonymous anymore. */
10410 reset_type_linkage (type);
10412 /* FIXME remangle member functions; member functions of a
10413 type with external linkage have external linkage. */
10416 if (signed_p
10417 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
10418 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
10420 bad_specifiers (decl, BSP_TYPE, virtualp,
10421 memfn_quals != TYPE_UNQUALIFIED,
10422 inlinep, friendp, raises != NULL_TREE);
10424 if (decl_spec_seq_has_spec_p (declspecs, ds_alias))
10425 /* Acknowledge that this was written:
10426 `using analias = atype;'. */
10427 TYPE_DECL_ALIAS_P (decl) = 1;
10429 return decl;
10432 /* Detect the case of an array type of unspecified size
10433 which came, as such, direct from a typedef name.
10434 We must copy the type, so that the array's domain can be
10435 individually set by the object's initializer. */
10437 if (type && typedef_type
10438 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
10439 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
10440 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
10442 /* Detect where we're using a typedef of function type to declare a
10443 function. PARMS will not be set, so we must create it now. */
10445 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
10447 tree decls = NULL_TREE;
10448 tree args;
10450 for (args = TYPE_ARG_TYPES (type);
10451 args && args != void_list_node;
10452 args = TREE_CHAIN (args))
10454 tree decl = cp_build_parm_decl (NULL_TREE, TREE_VALUE (args));
10456 DECL_CHAIN (decl) = decls;
10457 decls = decl;
10460 parms = nreverse (decls);
10462 if (decl_context != TYPENAME)
10464 /* The qualifiers on the function type become the qualifiers on
10465 the non-static member function. */
10466 memfn_quals |= type_memfn_quals (type);
10467 rqual = type_memfn_rqual (type);
10468 type_quals = TYPE_UNQUALIFIED;
10472 /* If this is a type name (such as, in a cast or sizeof),
10473 compute the type and return it now. */
10475 if (decl_context == TYPENAME)
10477 /* Note that the grammar rejects storage classes
10478 in typenames, fields or parameters. */
10479 if (type_quals != TYPE_UNQUALIFIED)
10480 type_quals = TYPE_UNQUALIFIED;
10482 /* Special case: "friend class foo" looks like a TYPENAME context. */
10483 if (friendp)
10485 if (type_quals != TYPE_UNQUALIFIED)
10487 error ("type qualifiers specified for friend class declaration");
10488 type_quals = TYPE_UNQUALIFIED;
10490 if (inlinep)
10492 error ("%<inline%> specified for friend class declaration");
10493 inlinep = 0;
10496 if (!current_aggr)
10498 /* Don't allow friend declaration without a class-key. */
10499 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
10500 permerror (input_location, "template parameters cannot be friends");
10501 else if (TREE_CODE (type) == TYPENAME_TYPE)
10502 permerror (input_location, "friend declaration requires class-key, "
10503 "i.e. %<friend class %T::%D%>",
10504 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
10505 else
10506 permerror (input_location, "friend declaration requires class-key, "
10507 "i.e. %<friend %#T%>",
10508 type);
10511 /* Only try to do this stuff if we didn't already give up. */
10512 if (type != integer_type_node)
10514 /* A friendly class? */
10515 if (current_class_type)
10516 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
10517 /*complain=*/true);
10518 else
10519 error ("trying to make class %qT a friend of global scope",
10520 type);
10522 type = void_type_node;
10525 else if (memfn_quals || rqual)
10527 if (ctype == NULL_TREE
10528 && TREE_CODE (type) == METHOD_TYPE)
10529 ctype = TYPE_METHOD_BASETYPE (type);
10531 if (ctype)
10532 type = build_memfn_type (type, ctype, memfn_quals, rqual);
10533 /* Core issue #547: need to allow this in template type args.
10534 Allow it in general in C++11 for alias-declarations. */
10535 else if ((template_type_arg || cxx_dialect >= cxx11)
10536 && TREE_CODE (type) == FUNCTION_TYPE)
10537 type = apply_memfn_quals (type, memfn_quals, rqual);
10538 else
10539 error ("invalid qualifiers on non-member function type");
10542 return type;
10544 else if (unqualified_id == NULL_TREE && decl_context != PARM
10545 && decl_context != CATCHPARM
10546 && TREE_CODE (type) != UNION_TYPE
10547 && ! bitfield)
10549 error ("abstract declarator %qT used as declaration", type);
10550 return error_mark_node;
10553 /* Only functions may be declared using an operator-function-id. */
10554 if (unqualified_id
10555 && IDENTIFIER_OPNAME_P (unqualified_id)
10556 && TREE_CODE (type) != FUNCTION_TYPE
10557 && TREE_CODE (type) != METHOD_TYPE)
10559 error ("declaration of %qD as non-function", unqualified_id);
10560 return error_mark_node;
10563 /* We don't check parameter types here because we can emit a better
10564 error message later. */
10565 if (decl_context != PARM)
10567 type = check_var_type (unqualified_id, type);
10568 if (type == error_mark_node)
10569 return error_mark_node;
10572 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
10573 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
10575 if (decl_context == PARM || decl_context == CATCHPARM)
10577 if (ctype || in_namespace)
10578 error ("cannot use %<::%> in parameter declaration");
10580 if (type_uses_auto (type))
10582 if (cxx_dialect >= cxx14)
10583 error ("%<auto%> parameter not permitted in this context");
10584 else
10585 error ("parameter declared %<auto%>");
10586 type = error_mark_node;
10589 /* A parameter declared as an array of T is really a pointer to T.
10590 One declared as a function is really a pointer to a function.
10591 One declared as a member is really a pointer to member. */
10593 if (TREE_CODE (type) == ARRAY_TYPE)
10595 /* Transfer const-ness of array into that of type pointed to. */
10596 type = build_pointer_type (TREE_TYPE (type));
10597 type_quals = TYPE_UNQUALIFIED;
10598 array_parameter_p = true;
10600 else if (TREE_CODE (type) == FUNCTION_TYPE)
10601 type = build_pointer_type (type);
10604 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
10605 && !NEW_DELETE_OPNAME_P (unqualified_id))
10607 cp_cv_quals real_quals = memfn_quals;
10608 if (cxx_dialect < cxx14 && constexpr_p
10609 && sfk != sfk_constructor && sfk != sfk_destructor)
10610 real_quals |= TYPE_QUAL_CONST;
10611 type = build_memfn_type (type, ctype, real_quals, rqual);
10615 tree decl;
10617 if (decl_context == PARM)
10619 decl = cp_build_parm_decl (unqualified_id, type);
10620 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
10622 bad_specifiers (decl, BSP_PARM, virtualp,
10623 memfn_quals != TYPE_UNQUALIFIED,
10624 inlinep, friendp, raises != NULL_TREE);
10626 else if (decl_context == FIELD)
10628 if (!staticp && TREE_CODE (type) != METHOD_TYPE
10629 && type_uses_auto (type))
10631 error ("non-static data member declared %<auto%>");
10632 type = error_mark_node;
10635 /* The C99 flexible array extension. */
10636 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
10637 && TYPE_DOMAIN (type) == NULL_TREE)
10639 tree itype = compute_array_index_type (dname, integer_zero_node,
10640 tf_warning_or_error);
10641 type = build_cplus_array_type (TREE_TYPE (type), itype);
10644 if (type == error_mark_node)
10646 /* Happens when declaring arrays of sizes which
10647 are error_mark_node, for example. */
10648 decl = NULL_TREE;
10650 else if (in_namespace && !friendp)
10652 /* Something like struct S { int N::j; }; */
10653 error ("invalid use of %<::%>");
10654 return error_mark_node;
10656 else if (TREE_CODE (type) == FUNCTION_TYPE
10657 || TREE_CODE (type) == METHOD_TYPE)
10659 int publicp = 0;
10660 tree function_context;
10662 if (friendp == 0)
10664 /* This should never happen in pure C++ (the check
10665 could be an assert). It could happen in
10666 Objective-C++ if someone writes invalid code that
10667 uses a function declaration for an instance
10668 variable or property (instance variables and
10669 properties are parsed as FIELD_DECLs, but they are
10670 part of an Objective-C class, not a C++ class).
10671 That code is invalid and is caught by this
10672 check. */
10673 if (!ctype)
10675 error ("declaration of function %qD in invalid context",
10676 unqualified_id);
10677 return error_mark_node;
10680 /* ``A union may [ ... ] not [ have ] virtual functions.''
10681 ARM 9.5 */
10682 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
10684 error ("function %qD declared virtual inside a union",
10685 unqualified_id);
10686 return error_mark_node;
10689 if (NEW_DELETE_OPNAME_P (unqualified_id))
10691 if (virtualp)
10693 error ("%qD cannot be declared virtual, since it "
10694 "is always static",
10695 unqualified_id);
10696 virtualp = 0;
10701 /* Check that the name used for a destructor makes sense. */
10702 if (sfk == sfk_destructor)
10704 tree uqname = id_declarator->u.id.unqualified_name;
10706 if (!ctype)
10708 gcc_assert (friendp);
10709 error ("expected qualified name in friend declaration "
10710 "for destructor %qD", uqname);
10711 return error_mark_node;
10714 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
10716 error ("declaration of %qD as member of %qT",
10717 uqname, ctype);
10718 return error_mark_node;
10720 if (constexpr_p)
10722 error ("a destructor cannot be %<constexpr%>");
10723 return error_mark_node;
10726 else if (sfk == sfk_constructor && friendp && !ctype)
10728 error ("expected qualified name in friend declaration "
10729 "for constructor %qD",
10730 id_declarator->u.id.unqualified_name);
10731 return error_mark_node;
10734 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
10736 tree tmpl = TREE_OPERAND (unqualified_id, 0);
10737 if (variable_template_p (tmpl))
10739 error ("specialization of variable template %qD "
10740 "declared as function", tmpl);
10741 inform (DECL_SOURCE_LOCATION (tmpl),
10742 "variable template declared here");
10743 return error_mark_node;
10747 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
10748 function_context = (ctype != NULL_TREE) ?
10749 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
10750 publicp = (! friendp || ! staticp)
10751 && function_context == NULL_TREE;
10753 if (late_return_type_p)
10754 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
10756 decl = grokfndecl (ctype, type,
10757 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
10758 ? unqualified_id : dname,
10759 parms,
10760 unqualified_id,
10761 virtualp, flags, memfn_quals, rqual, raises,
10762 friendp ? -1 : 0, friendp, publicp,
10763 inlinep | (2 * constexpr_p),
10764 initialized == SD_DELETED, sfk,
10765 funcdef_flag, template_count, in_namespace,
10766 attrlist, declarator->id_loc);
10767 decl = set_virt_specifiers (decl, virt_specifiers);
10768 if (decl == NULL_TREE)
10769 return error_mark_node;
10770 #if 0
10771 /* This clobbers the attrs stored in `decl' from `attrlist'. */
10772 /* The decl and setting of decl_attr is also turned off. */
10773 decl = build_decl_attribute_variant (decl, decl_attr);
10774 #endif
10776 /* [class.conv.ctor]
10778 A constructor declared without the function-specifier
10779 explicit that can be called with a single parameter
10780 specifies a conversion from the type of its first
10781 parameter to the type of its class. Such a constructor
10782 is called a converting constructor. */
10783 if (explicitp == 2)
10784 DECL_NONCONVERTING_P (decl) = 1;
10786 else if (!staticp && !dependent_type_p (type)
10787 && !COMPLETE_TYPE_P (complete_type (type))
10788 && (TREE_CODE (type) != ARRAY_TYPE
10789 || !COMPLETE_TYPE_P (TREE_TYPE (type))
10790 || initialized == 0))
10792 if (unqualified_id)
10794 error ("field %qD has incomplete type %qT",
10795 unqualified_id, type);
10796 cxx_incomplete_type_inform (strip_array_types (type));
10798 else
10799 error ("name %qT has incomplete type", type);
10801 type = error_mark_node;
10802 decl = NULL_TREE;
10804 else
10806 if (friendp)
10808 error ("%qE is neither function nor member function; "
10809 "cannot be declared friend", unqualified_id);
10810 friendp = 0;
10812 decl = NULL_TREE;
10815 if (friendp)
10817 /* Friends are treated specially. */
10818 if (ctype == current_class_type)
10819 ; /* We already issued a permerror. */
10820 else if (decl && DECL_NAME (decl))
10822 if (template_class_depth (current_class_type) == 0)
10824 decl = check_explicit_specialization
10825 (unqualified_id, decl, template_count,
10826 2 * funcdef_flag + 4);
10827 if (decl == error_mark_node)
10828 return error_mark_node;
10831 decl = do_friend (ctype, unqualified_id, decl,
10832 *attrlist, flags,
10833 funcdef_flag);
10834 return decl;
10836 else
10837 return error_mark_node;
10840 /* Structure field. It may not be a function, except for C++. */
10842 if (decl == NULL_TREE)
10844 if (staticp)
10846 /* C++ allows static class members. All other work
10847 for this is done by grokfield. */
10848 decl = build_lang_decl_loc (declarator
10849 ? declarator->id_loc
10850 : input_location,
10851 VAR_DECL, unqualified_id, type);
10852 set_linkage_for_static_data_member (decl);
10853 /* Even if there is an in-class initialization, DECL
10854 is considered undefined until an out-of-class
10855 definition is provided. */
10856 DECL_EXTERNAL (decl) = 1;
10858 if (thread_p)
10860 set_decl_tls_model (decl, decl_default_tls_model (decl));
10861 if (declspecs->gnu_thread_keyword_p)
10862 DECL_GNU_TLS_P (decl) = true;
10865 if (constexpr_p && !initialized)
10867 error ("constexpr static data member %qD must have an "
10868 "initializer", decl);
10869 constexpr_p = false;
10872 else
10874 if (constexpr_p)
10876 error ("non-static data member %qE declared %<constexpr%>",
10877 unqualified_id);
10878 constexpr_p = false;
10880 decl = build_decl (input_location,
10881 FIELD_DECL, unqualified_id, type);
10882 DECL_NONADDRESSABLE_P (decl) = bitfield;
10883 if (bitfield && !unqualified_id)
10884 TREE_NO_WARNING (decl) = 1;
10886 if (storage_class == sc_mutable)
10888 DECL_MUTABLE_P (decl) = 1;
10889 storage_class = sc_none;
10892 if (initialized)
10894 /* An attempt is being made to initialize a non-static
10895 member. This is new in C++11. */
10896 maybe_warn_cpp0x (CPP0X_NSDMI);
10898 /* If this has been parsed with static storage class, but
10899 errors forced staticp to be cleared, ensure NSDMI is
10900 not present. */
10901 if (declspecs->storage_class == sc_static)
10902 DECL_INITIAL (decl) = error_mark_node;
10906 bad_specifiers (decl, BSP_FIELD, virtualp,
10907 memfn_quals != TYPE_UNQUALIFIED,
10908 inlinep, friendp, raises != NULL_TREE);
10911 else if (TREE_CODE (type) == FUNCTION_TYPE
10912 || TREE_CODE (type) == METHOD_TYPE)
10914 tree original_name;
10915 int publicp = 0;
10917 if (!unqualified_id)
10918 return error_mark_node;
10920 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
10921 original_name = dname;
10922 else
10923 original_name = unqualified_id;
10925 if (storage_class == sc_auto)
10926 error ("storage class %<auto%> invalid for function %qs", name);
10927 else if (storage_class == sc_register)
10928 error ("storage class %<register%> invalid for function %qs", name);
10929 else if (thread_p)
10931 if (declspecs->gnu_thread_keyword_p)
10932 error ("storage class %<__thread%> invalid for function %qs",
10933 name);
10934 else
10935 error ("storage class %<thread_local%> invalid for function %qs",
10936 name);
10939 if (virt_specifiers)
10940 error ("virt-specifiers in %qs not allowed outside a class definition", name);
10941 /* Function declaration not at top level.
10942 Storage classes other than `extern' are not allowed
10943 and `extern' makes no difference. */
10944 if (! toplevel_bindings_p ()
10945 && (storage_class == sc_static
10946 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
10947 && pedantic)
10949 if (storage_class == sc_static)
10950 pedwarn (input_location, OPT_Wpedantic,
10951 "%<static%> specified invalid for function %qs "
10952 "declared out of global scope", name);
10953 else
10954 pedwarn (input_location, OPT_Wpedantic,
10955 "%<inline%> specifier invalid for function %qs "
10956 "declared out of global scope", name);
10959 if (ctype == NULL_TREE)
10961 if (virtualp)
10963 error ("virtual non-class function %qs", name);
10964 virtualp = 0;
10966 else if (sfk == sfk_constructor
10967 || sfk == sfk_destructor)
10969 error (funcdef_flag
10970 ? G_("%qs defined in a non-class scope")
10971 : G_("%qs declared in a non-class scope"), name);
10972 sfk = sfk_none;
10976 /* Record whether the function is public. */
10977 publicp = (ctype != NULL_TREE
10978 || storage_class != sc_static);
10980 if (late_return_type_p)
10981 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
10983 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
10984 virtualp, flags, memfn_quals, rqual, raises,
10985 1, friendp,
10986 publicp, inlinep | (2 * constexpr_p),
10987 initialized == SD_DELETED, sfk,
10988 funcdef_flag,
10989 template_count, in_namespace, attrlist,
10990 declarator->id_loc);
10991 if (decl == NULL_TREE)
10992 return error_mark_node;
10994 if (staticp == 1)
10996 int invalid_static = 0;
10998 /* Don't allow a static member function in a class, and forbid
10999 declaring main to be static. */
11000 if (TREE_CODE (type) == METHOD_TYPE)
11002 permerror (input_location, "cannot declare member function %qD to have "
11003 "static linkage", decl);
11004 invalid_static = 1;
11006 else if (current_function_decl)
11008 /* FIXME need arm citation */
11009 error ("cannot declare static function inside another function");
11010 invalid_static = 1;
11013 if (invalid_static)
11015 staticp = 0;
11016 storage_class = sc_none;
11020 else
11022 /* It's a variable. */
11024 /* An uninitialized decl with `extern' is a reference. */
11025 decl = grokvardecl (type, dname, unqualified_id,
11026 declspecs,
11027 initialized,
11028 (type_quals & TYPE_QUAL_CONST) != 0,
11029 template_count,
11030 ctype ? ctype : in_namespace);
11031 if (decl == NULL_TREE)
11032 return error_mark_node;
11034 bad_specifiers (decl, BSP_VAR, virtualp,
11035 memfn_quals != TYPE_UNQUALIFIED,
11036 inlinep, friendp, raises != NULL_TREE);
11038 if (ctype)
11040 DECL_CONTEXT (decl) = ctype;
11041 if (staticp == 1)
11043 permerror (input_location, "%<static%> may not be used when defining "
11044 "(as opposed to declaring) a static data member");
11045 staticp = 0;
11046 storage_class = sc_none;
11048 if (storage_class == sc_register && TREE_STATIC (decl))
11050 error ("static member %qD declared %<register%>", decl);
11051 storage_class = sc_none;
11053 if (storage_class == sc_extern && pedantic)
11055 pedwarn (input_location, OPT_Wpedantic,
11056 "cannot explicitly declare member %q#D to have "
11057 "extern linkage", decl);
11058 storage_class = sc_none;
11061 else if (constexpr_p && DECL_EXTERNAL (decl))
11063 error ("declaration of constexpr variable %qD is not a definition",
11064 decl);
11065 constexpr_p = false;
11069 if (storage_class == sc_extern && initialized && !funcdef_flag)
11071 if (toplevel_bindings_p ())
11073 /* It's common practice (and completely valid) to have a const
11074 be initialized and declared extern. */
11075 if (!(type_quals & TYPE_QUAL_CONST))
11076 warning (0, "%qs initialized and declared %<extern%>", name);
11078 else
11080 error ("%qs has both %<extern%> and initializer", name);
11081 return error_mark_node;
11085 /* Record `register' declaration for warnings on &
11086 and in case doing stupid register allocation. */
11088 if (storage_class == sc_register)
11089 DECL_REGISTER (decl) = 1;
11090 else if (storage_class == sc_extern)
11091 DECL_THIS_EXTERN (decl) = 1;
11092 else if (storage_class == sc_static)
11093 DECL_THIS_STATIC (decl) = 1;
11095 /* Set constexpr flag on vars (functions got it in grokfndecl). */
11096 if (constexpr_p && VAR_P (decl))
11097 DECL_DECLARED_CONSTEXPR_P (decl) = true;
11099 /* Record constancy and volatility on the DECL itself . There's
11100 no need to do this when processing a template; we'll do this
11101 for the instantiated declaration based on the type of DECL. */
11102 if (!processing_template_decl)
11103 cp_apply_type_quals_to_decl (type_quals, decl);
11105 return decl;
11109 /* Subroutine of start_function. Ensure that each of the parameter
11110 types (as listed in PARMS) is complete, as is required for a
11111 function definition. */
11113 static void
11114 require_complete_types_for_parms (tree parms)
11116 for (; parms; parms = DECL_CHAIN (parms))
11118 if (dependent_type_p (TREE_TYPE (parms)))
11119 continue;
11120 if (!VOID_TYPE_P (TREE_TYPE (parms))
11121 && complete_type_or_else (TREE_TYPE (parms), parms))
11123 relayout_decl (parms);
11124 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
11126 else
11127 /* grokparms or complete_type_or_else will have already issued
11128 an error. */
11129 TREE_TYPE (parms) = error_mark_node;
11133 /* Returns nonzero if T is a local variable. */
11136 local_variable_p (const_tree t)
11138 if ((VAR_P (t)
11139 /* A VAR_DECL with a context that is a _TYPE is a static data
11140 member. */
11141 && !TYPE_P (CP_DECL_CONTEXT (t))
11142 /* Any other non-local variable must be at namespace scope. */
11143 && !DECL_NAMESPACE_SCOPE_P (t))
11144 || (TREE_CODE (t) == PARM_DECL))
11145 return 1;
11147 return 0;
11150 /* Like local_variable_p, but suitable for use as a tree-walking
11151 function. */
11153 static tree
11154 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
11155 void * /*data*/)
11157 if (local_variable_p (*tp)
11158 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
11159 return *tp;
11160 else if (TYPE_P (*tp))
11161 *walk_subtrees = 0;
11163 return NULL_TREE;
11166 /* Check that ARG, which is a default-argument expression for a
11167 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
11168 something goes wrong. DECL may also be a _TYPE node, rather than a
11169 DECL, if there is no DECL available. */
11171 tree
11172 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
11174 tree var;
11175 tree decl_type;
11177 if (TREE_CODE (arg) == DEFAULT_ARG)
11178 /* We get a DEFAULT_ARG when looking at an in-class declaration
11179 with a default argument. Ignore the argument for now; we'll
11180 deal with it after the class is complete. */
11181 return arg;
11183 if (TYPE_P (decl))
11185 decl_type = decl;
11186 decl = NULL_TREE;
11188 else
11189 decl_type = TREE_TYPE (decl);
11191 if (arg == error_mark_node
11192 || decl == error_mark_node
11193 || TREE_TYPE (arg) == error_mark_node
11194 || decl_type == error_mark_node)
11195 /* Something already went wrong. There's no need to check
11196 further. */
11197 return error_mark_node;
11199 /* [dcl.fct.default]
11201 A default argument expression is implicitly converted to the
11202 parameter type. */
11203 ++cp_unevaluated_operand;
11204 perform_implicit_conversion_flags (decl_type, arg, complain,
11205 LOOKUP_IMPLICIT);
11206 --cp_unevaluated_operand;
11208 if (warn_zero_as_null_pointer_constant
11209 && TYPE_PTR_OR_PTRMEM_P (decl_type)
11210 && null_ptr_cst_p (arg)
11211 && (complain & tf_warning)
11212 && maybe_warn_zero_as_null_pointer_constant (arg, input_location))
11213 return nullptr_node;
11215 /* [dcl.fct.default]
11217 Local variables shall not be used in default argument
11218 expressions.
11220 The keyword `this' shall not be used in a default argument of a
11221 member function. */
11222 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
11223 if (var)
11225 if (complain & tf_warning_or_error)
11227 if (DECL_NAME (var) == this_identifier)
11228 permerror (input_location, "default argument %qE uses %qD",
11229 arg, var);
11230 else
11231 error ("default argument %qE uses local variable %qD", arg, var);
11233 return error_mark_node;
11236 /* All is well. */
11237 return arg;
11240 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
11242 static tree
11243 type_is_deprecated (tree type)
11245 enum tree_code code;
11246 if (TREE_DEPRECATED (type))
11247 return type;
11248 if (TYPE_NAME (type)
11249 && TREE_DEPRECATED (TYPE_NAME (type)))
11250 return type;
11252 /* Do warn about using typedefs to a deprecated class. */
11253 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
11254 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
11256 code = TREE_CODE (type);
11258 if (code == POINTER_TYPE || code == REFERENCE_TYPE
11259 || code == OFFSET_TYPE || code == FUNCTION_TYPE
11260 || code == METHOD_TYPE || code == ARRAY_TYPE)
11261 return type_is_deprecated (TREE_TYPE (type));
11263 if (TYPE_PTRMEMFUNC_P (type))
11264 return type_is_deprecated
11265 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
11267 return NULL_TREE;
11270 /* Decode the list of parameter types for a function type.
11271 Given the list of things declared inside the parens,
11272 return a list of types.
11274 If this parameter does not end with an ellipsis, we append
11275 void_list_node.
11277 *PARMS is set to the chain of PARM_DECLs created. */
11279 static tree
11280 grokparms (tree parmlist, tree *parms)
11282 tree result = NULL_TREE;
11283 tree decls = NULL_TREE;
11284 tree parm;
11285 int any_error = 0;
11287 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
11289 tree type = NULL_TREE;
11290 tree init = TREE_PURPOSE (parm);
11291 tree decl = TREE_VALUE (parm);
11292 const char *errmsg;
11294 if (parm == void_list_node)
11295 break;
11297 if (! decl || TREE_TYPE (decl) == error_mark_node)
11298 continue;
11300 type = TREE_TYPE (decl);
11301 if (VOID_TYPE_P (type))
11303 if (same_type_p (type, void_type_node)
11304 && !init
11305 && !DECL_NAME (decl) && !result
11306 && TREE_CHAIN (parm) == void_list_node)
11307 /* DR 577: A parameter list consisting of a single
11308 unnamed parameter of non-dependent type 'void'. */
11309 break;
11310 else if (cv_qualified_p (type))
11311 error_at (DECL_SOURCE_LOCATION (decl),
11312 "invalid use of cv-qualified type %qT in "
11313 "parameter declaration", type);
11314 else
11315 error_at (DECL_SOURCE_LOCATION (decl),
11316 "invalid use of type %<void%> in parameter "
11317 "declaration");
11318 /* It's not a good idea to actually create parameters of
11319 type `void'; other parts of the compiler assume that a
11320 void type terminates the parameter list. */
11321 type = error_mark_node;
11322 TREE_TYPE (decl) = error_mark_node;
11325 if (type != error_mark_node
11326 && TYPE_FOR_JAVA (type)
11327 && MAYBE_CLASS_TYPE_P (type))
11329 error ("parameter %qD has Java class type", decl);
11330 type = error_mark_node;
11331 TREE_TYPE (decl) = error_mark_node;
11332 init = NULL_TREE;
11335 if (type != error_mark_node
11336 && (errmsg = targetm.invalid_parameter_type (type)))
11338 error (errmsg);
11339 type = error_mark_node;
11340 TREE_TYPE (decl) = error_mark_node;
11343 if (type != error_mark_node)
11345 if (deprecated_state != DEPRECATED_SUPPRESS)
11347 tree deptype = type_is_deprecated (type);
11348 if (deptype)
11349 warn_deprecated_use (deptype, NULL_TREE);
11352 /* Top-level qualifiers on the parameters are
11353 ignored for function types. */
11354 type = cp_build_qualified_type (type, 0);
11355 if (TREE_CODE (type) == METHOD_TYPE)
11357 error ("parameter %qD invalidly declared method type", decl);
11358 type = build_pointer_type (type);
11359 TREE_TYPE (decl) = type;
11361 else if (abstract_virtuals_error (decl, type))
11362 any_error = 1; /* Seems like a good idea. */
11363 else if (POINTER_TYPE_P (type))
11365 /* [dcl.fct]/6, parameter types cannot contain pointers
11366 (references) to arrays of unknown bound. */
11367 tree t = TREE_TYPE (type);
11368 int ptr = TYPE_PTR_P (type);
11370 while (1)
11372 if (TYPE_PTR_P (t))
11373 ptr = 1;
11374 else if (TREE_CODE (t) != ARRAY_TYPE)
11375 break;
11376 else if (!TYPE_DOMAIN (t))
11377 break;
11378 t = TREE_TYPE (t);
11380 if (TREE_CODE (t) == ARRAY_TYPE)
11381 error (ptr
11382 ? G_("parameter %qD includes pointer to array of "
11383 "unknown bound %qT")
11384 : G_("parameter %qD includes reference to array of "
11385 "unknown bound %qT"),
11386 decl, t);
11389 if (any_error)
11390 init = NULL_TREE;
11391 else if (init && !processing_template_decl)
11392 init = check_default_argument (decl, init, tf_warning_or_error);
11395 DECL_CHAIN (decl) = decls;
11396 decls = decl;
11397 result = tree_cons (init, type, result);
11399 decls = nreverse (decls);
11400 result = nreverse (result);
11401 if (parm)
11402 result = chainon (result, void_list_node);
11403 *parms = decls;
11405 return result;
11409 /* D is a constructor or overloaded `operator='.
11411 Let T be the class in which D is declared. Then, this function
11412 returns:
11414 -1 if D's is an ill-formed constructor or copy assignment operator
11415 whose first parameter is of type `T'.
11416 0 if D is not a copy constructor or copy assignment
11417 operator.
11418 1 if D is a copy constructor or copy assignment operator whose
11419 first parameter is a reference to non-const qualified T.
11420 2 if D is a copy constructor or copy assignment operator whose
11421 first parameter is a reference to const qualified T.
11423 This function can be used as a predicate. Positive values indicate
11424 a copy constructor and nonzero values indicate a copy assignment
11425 operator. */
11428 copy_fn_p (const_tree d)
11430 tree args;
11431 tree arg_type;
11432 int result = 1;
11434 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11436 if (TREE_CODE (d) == TEMPLATE_DECL
11437 || (DECL_TEMPLATE_INFO (d)
11438 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11439 /* Instantiations of template member functions are never copy
11440 functions. Note that member functions of templated classes are
11441 represented as template functions internally, and we must
11442 accept those as copy functions. */
11443 return 0;
11445 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11446 if (!args)
11447 return 0;
11449 arg_type = TREE_VALUE (args);
11450 if (arg_type == error_mark_node)
11451 return 0;
11453 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
11455 /* Pass by value copy assignment operator. */
11456 result = -1;
11458 else if (TREE_CODE (arg_type) == REFERENCE_TYPE
11459 && !TYPE_REF_IS_RVALUE (arg_type)
11460 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
11462 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
11463 result = 2;
11465 else
11466 return 0;
11468 args = TREE_CHAIN (args);
11470 if (args && args != void_list_node && !TREE_PURPOSE (args))
11471 /* There are more non-optional args. */
11472 return 0;
11474 return result;
11477 /* D is a constructor or overloaded `operator='.
11479 Let T be the class in which D is declared. Then, this function
11480 returns true when D is a move constructor or move assignment
11481 operator, false otherwise. */
11483 bool
11484 move_fn_p (const_tree d)
11486 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11488 if (cxx_dialect == cxx98)
11489 /* There are no move constructors if we are in C++98 mode. */
11490 return false;
11492 if (TREE_CODE (d) == TEMPLATE_DECL
11493 || (DECL_TEMPLATE_INFO (d)
11494 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11495 /* Instantiations of template member functions are never move
11496 functions. Note that member functions of templated classes are
11497 represented as template functions internally, and we must
11498 accept those as move functions. */
11499 return 0;
11501 return move_signature_fn_p (d);
11504 /* D is a constructor or overloaded `operator='.
11506 Then, this function returns true when D has the same signature as a move
11507 constructor or move assignment operator (because either it is such a
11508 ctor/op= or it is a template specialization with the same signature),
11509 false otherwise. */
11511 bool
11512 move_signature_fn_p (const_tree d)
11514 tree args;
11515 tree arg_type;
11516 bool result = false;
11518 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11519 if (!args)
11520 return 0;
11522 arg_type = TREE_VALUE (args);
11523 if (arg_type == error_mark_node)
11524 return 0;
11526 if (TREE_CODE (arg_type) == REFERENCE_TYPE
11527 && TYPE_REF_IS_RVALUE (arg_type)
11528 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
11529 DECL_CONTEXT (d)))
11530 result = true;
11532 args = TREE_CHAIN (args);
11534 if (args && args != void_list_node && !TREE_PURPOSE (args))
11535 /* There are more non-optional args. */
11536 return false;
11538 return result;
11541 /* Remember any special properties of member function DECL. */
11543 void
11544 grok_special_member_properties (tree decl)
11546 tree class_type;
11548 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
11549 return;
11551 class_type = DECL_CONTEXT (decl);
11552 if (DECL_CONSTRUCTOR_P (decl))
11554 int ctor = copy_fn_p (decl);
11556 if (!DECL_ARTIFICIAL (decl))
11557 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
11559 if (ctor > 0)
11561 /* [class.copy]
11563 A non-template constructor for class X is a copy
11564 constructor if its first parameter is of type X&, const
11565 X&, volatile X& or const volatile X&, and either there
11566 are no other parameters or else all other parameters have
11567 default arguments. */
11568 TYPE_HAS_COPY_CTOR (class_type) = 1;
11569 if (user_provided_p (decl))
11570 TYPE_HAS_COMPLEX_COPY_CTOR (class_type) = 1;
11571 if (ctor > 1)
11572 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
11574 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
11575 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
11576 else if (move_fn_p (decl) && user_provided_p (decl))
11577 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type) = 1;
11578 else if (is_list_ctor (decl))
11579 TYPE_HAS_LIST_CTOR (class_type) = 1;
11581 if (DECL_DECLARED_CONSTEXPR_P (decl)
11582 && !copy_fn_p (decl) && !move_fn_p (decl))
11583 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
11585 else if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
11587 /* [class.copy]
11589 A non-template assignment operator for class X is a copy
11590 assignment operator if its parameter is of type X, X&, const
11591 X&, volatile X& or const volatile X&. */
11593 int assop = copy_fn_p (decl);
11595 if (assop)
11597 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
11598 if (user_provided_p (decl))
11599 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type) = 1;
11600 if (assop != 1)
11601 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
11603 else if (move_fn_p (decl) && user_provided_p (decl))
11604 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type) = 1;
11606 /* Destructors are handled in check_methods. */
11609 /* Check a constructor DECL has the correct form. Complains
11610 if the class has a constructor of the form X(X). */
11613 grok_ctor_properties (const_tree ctype, const_tree decl)
11615 int ctor_parm = copy_fn_p (decl);
11617 if (ctor_parm < 0)
11619 /* [class.copy]
11621 A declaration of a constructor for a class X is ill-formed if
11622 its first parameter is of type (optionally cv-qualified) X
11623 and either there are no other parameters or else all other
11624 parameters have default arguments.
11626 We *don't* complain about member template instantiations that
11627 have this form, though; they can occur as we try to decide
11628 what constructor to use during overload resolution. Since
11629 overload resolution will never prefer such a constructor to
11630 the non-template copy constructor (which is either explicitly
11631 or implicitly defined), there's no need to worry about their
11632 existence. Theoretically, they should never even be
11633 instantiated, but that's hard to forestall. */
11634 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
11635 ctype, ctype);
11636 return 0;
11639 return 1;
11642 /* An operator with this code is unary, but can also be binary. */
11644 static int
11645 ambi_op_p (enum tree_code code)
11647 return (code == INDIRECT_REF
11648 || code == ADDR_EXPR
11649 || code == UNARY_PLUS_EXPR
11650 || code == NEGATE_EXPR
11651 || code == PREINCREMENT_EXPR
11652 || code == PREDECREMENT_EXPR);
11655 /* An operator with this name can only be unary. */
11657 static int
11658 unary_op_p (enum tree_code code)
11660 return (code == TRUTH_NOT_EXPR
11661 || code == BIT_NOT_EXPR
11662 || code == COMPONENT_REF
11663 || code == TYPE_EXPR);
11666 /* DECL is a declaration for an overloaded operator. If COMPLAIN is true,
11667 errors are issued for invalid declarations. */
11669 bool
11670 grok_op_properties (tree decl, bool complain)
11672 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
11673 tree argtype;
11674 int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
11675 tree name = DECL_NAME (decl);
11676 enum tree_code operator_code;
11677 int arity;
11678 bool ellipsis_p;
11679 tree class_type;
11681 /* Count the number of arguments and check for ellipsis. */
11682 for (argtype = argtypes, arity = 0;
11683 argtype && argtype != void_list_node;
11684 argtype = TREE_CHAIN (argtype))
11685 ++arity;
11686 ellipsis_p = !argtype;
11688 class_type = DECL_CONTEXT (decl);
11689 if (class_type && !CLASS_TYPE_P (class_type))
11690 class_type = NULL_TREE;
11692 if (DECL_CONV_FN_P (decl))
11693 operator_code = TYPE_EXPR;
11694 else
11697 #define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P) \
11698 if (ansi_opname (CODE) == name) \
11700 operator_code = (CODE); \
11701 break; \
11703 else if (ansi_assopname (CODE) == name) \
11705 operator_code = (CODE); \
11706 DECL_ASSIGNMENT_OPERATOR_P (decl) = 1; \
11707 break; \
11710 #include "operators.def"
11711 #undef DEF_OPERATOR
11713 gcc_unreachable ();
11715 while (0);
11716 gcc_assert (operator_code != MAX_TREE_CODES);
11717 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
11719 if (class_type)
11720 switch (operator_code)
11722 case NEW_EXPR:
11723 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
11724 break;
11726 case DELETE_EXPR:
11727 TYPE_GETS_DELETE (class_type) |= 1;
11728 break;
11730 case VEC_NEW_EXPR:
11731 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
11732 break;
11734 case VEC_DELETE_EXPR:
11735 TYPE_GETS_DELETE (class_type) |= 2;
11736 break;
11738 default:
11739 break;
11742 /* [basic.std.dynamic.allocation]/1:
11744 A program is ill-formed if an allocation function is declared
11745 in a namespace scope other than global scope or declared static
11746 in global scope.
11748 The same also holds true for deallocation functions. */
11749 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR
11750 || operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
11752 if (DECL_NAMESPACE_SCOPE_P (decl))
11754 if (CP_DECL_CONTEXT (decl) != global_namespace)
11756 error ("%qD may not be declared within a namespace", decl);
11757 return false;
11759 else if (!TREE_PUBLIC (decl))
11761 error ("%qD may not be declared as static", decl);
11762 return false;
11764 if (!flag_sized_deallocation && warn_cxx14_compat)
11766 tree parm = FUNCTION_ARG_CHAIN (decl);
11767 if (parm && same_type_p (TREE_VALUE (parm), size_type_node)
11768 && TREE_CHAIN (parm) == void_list_node)
11769 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc__14_compat,
11770 "%qD is a usual (non-placement) deallocation "
11771 "function in C++14 (or with -fsized-deallocation)",
11772 decl);
11777 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR)
11779 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
11780 DECL_IS_OPERATOR_NEW (decl) = 1;
11782 else if (operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
11783 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
11784 else
11786 /* An operator function must either be a non-static member function
11787 or have at least one parameter of a class, a reference to a class,
11788 an enumeration, or a reference to an enumeration. 13.4.0.6 */
11789 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
11791 if (operator_code == TYPE_EXPR
11792 || operator_code == CALL_EXPR
11793 || operator_code == COMPONENT_REF
11794 || operator_code == ARRAY_REF
11795 || operator_code == NOP_EXPR)
11797 error ("%qD must be a nonstatic member function", decl);
11798 return false;
11800 else
11802 tree p;
11804 if (DECL_STATIC_FUNCTION_P (decl))
11806 error ("%qD must be either a non-static member "
11807 "function or a non-member function", decl);
11808 return false;
11811 for (p = argtypes; p && p != void_list_node; p = TREE_CHAIN (p))
11813 tree arg = non_reference (TREE_VALUE (p));
11814 if (arg == error_mark_node)
11815 return false;
11817 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
11818 because these checks are performed even on
11819 template functions. */
11820 if (MAYBE_CLASS_TYPE_P (arg)
11821 || TREE_CODE (arg) == ENUMERAL_TYPE)
11822 break;
11825 if (!p || p == void_list_node)
11827 if (complain)
11828 error ("%qD must have an argument of class or "
11829 "enumerated type", decl);
11830 return false;
11835 /* There are no restrictions on the arguments to an overloaded
11836 "operator ()". */
11837 if (operator_code == CALL_EXPR)
11838 return true;
11840 /* Warn about conversion operators that will never be used. */
11841 if (IDENTIFIER_TYPENAME_P (name)
11842 && ! DECL_TEMPLATE_INFO (decl)
11843 && warn_conversion
11844 /* Warn only declaring the function; there is no need to
11845 warn again about out-of-class definitions. */
11846 && class_type == current_class_type)
11848 tree t = TREE_TYPE (name);
11849 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
11851 if (ref)
11852 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
11854 if (VOID_TYPE_P (t))
11855 warning (OPT_Wconversion,
11857 ? G_("conversion to a reference to void "
11858 "will never use a type conversion operator")
11859 : G_("conversion to void "
11860 "will never use a type conversion operator"));
11861 else if (class_type)
11863 if (t == class_type)
11864 warning (OPT_Wconversion,
11866 ? G_("conversion to a reference to the same type "
11867 "will never use a type conversion operator")
11868 : G_("conversion to the same type "
11869 "will never use a type conversion operator"));
11870 /* Don't force t to be complete here. */
11871 else if (MAYBE_CLASS_TYPE_P (t)
11872 && COMPLETE_TYPE_P (t)
11873 && DERIVED_FROM_P (t, class_type))
11874 warning (OPT_Wconversion,
11876 ? G_("conversion to a reference to a base class "
11877 "will never use a type conversion operator")
11878 : G_("conversion to a base class "
11879 "will never use a type conversion operator"));
11884 if (operator_code == COND_EXPR)
11886 /* 13.4.0.3 */
11887 error ("ISO C++ prohibits overloading operator ?:");
11888 return false;
11890 else if (ellipsis_p)
11892 error ("%qD must not have variable number of arguments", decl);
11893 return false;
11895 else if (ambi_op_p (operator_code))
11897 if (arity == 1)
11898 /* We pick the one-argument operator codes by default, so
11899 we don't have to change anything. */
11901 else if (arity == 2)
11903 /* If we thought this was a unary operator, we now know
11904 it to be a binary operator. */
11905 switch (operator_code)
11907 case INDIRECT_REF:
11908 operator_code = MULT_EXPR;
11909 break;
11911 case ADDR_EXPR:
11912 operator_code = BIT_AND_EXPR;
11913 break;
11915 case UNARY_PLUS_EXPR:
11916 operator_code = PLUS_EXPR;
11917 break;
11919 case NEGATE_EXPR:
11920 operator_code = MINUS_EXPR;
11921 break;
11923 case PREINCREMENT_EXPR:
11924 operator_code = POSTINCREMENT_EXPR;
11925 break;
11927 case PREDECREMENT_EXPR:
11928 operator_code = POSTDECREMENT_EXPR;
11929 break;
11931 default:
11932 gcc_unreachable ();
11935 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
11937 if ((operator_code == POSTINCREMENT_EXPR
11938 || operator_code == POSTDECREMENT_EXPR)
11939 && ! processing_template_decl
11940 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)), integer_type_node))
11942 if (methodp)
11943 error ("postfix %qD must take %<int%> as its argument",
11944 decl);
11945 else
11946 error ("postfix %qD must take %<int%> as its second "
11947 "argument", decl);
11948 return false;
11951 else
11953 if (methodp)
11954 error ("%qD must take either zero or one argument", decl);
11955 else
11956 error ("%qD must take either one or two arguments", decl);
11957 return false;
11960 /* More Effective C++ rule 6. */
11961 if (warn_ecpp
11962 && (operator_code == POSTINCREMENT_EXPR
11963 || operator_code == POSTDECREMENT_EXPR
11964 || operator_code == PREINCREMENT_EXPR
11965 || operator_code == PREDECREMENT_EXPR))
11967 tree arg = TREE_VALUE (argtypes);
11968 tree ret = TREE_TYPE (TREE_TYPE (decl));
11969 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
11970 arg = TREE_TYPE (arg);
11971 arg = TYPE_MAIN_VARIANT (arg);
11972 if (operator_code == PREINCREMENT_EXPR
11973 || operator_code == PREDECREMENT_EXPR)
11975 if (TREE_CODE (ret) != REFERENCE_TYPE
11976 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)),
11977 arg))
11978 warning (OPT_Weffc__, "prefix %qD should return %qT", decl,
11979 build_reference_type (arg));
11981 else
11983 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
11984 warning (OPT_Weffc__, "postfix %qD should return %qT", decl, arg);
11988 else if (unary_op_p (operator_code))
11990 if (arity != 1)
11992 if (methodp)
11993 error ("%qD must take %<void%>", decl);
11994 else
11995 error ("%qD must take exactly one argument", decl);
11996 return false;
11999 else /* if (binary_op_p (operator_code)) */
12001 if (arity != 2)
12003 if (methodp)
12004 error ("%qD must take exactly one argument", decl);
12005 else
12006 error ("%qD must take exactly two arguments", decl);
12007 return false;
12010 /* More Effective C++ rule 7. */
12011 if (warn_ecpp
12012 && (operator_code == TRUTH_ANDIF_EXPR
12013 || operator_code == TRUTH_ORIF_EXPR
12014 || operator_code == COMPOUND_EXPR))
12015 warning (OPT_Weffc__, "user-defined %qD always evaluates both arguments",
12016 decl);
12019 /* Effective C++ rule 23. */
12020 if (warn_ecpp
12021 && arity == 2
12022 && !DECL_ASSIGNMENT_OPERATOR_P (decl)
12023 && (operator_code == PLUS_EXPR
12024 || operator_code == MINUS_EXPR
12025 || operator_code == TRUNC_DIV_EXPR
12026 || operator_code == MULT_EXPR
12027 || operator_code == TRUNC_MOD_EXPR)
12028 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
12029 warning (OPT_Weffc__, "%qD should return by value", decl);
12031 /* [over.oper]/8 */
12032 for (; argtypes && argtypes != void_list_node;
12033 argtypes = TREE_CHAIN (argtypes))
12034 if (TREE_PURPOSE (argtypes))
12036 TREE_PURPOSE (argtypes) = NULL_TREE;
12037 if (operator_code == POSTINCREMENT_EXPR
12038 || operator_code == POSTDECREMENT_EXPR)
12040 pedwarn (input_location, OPT_Wpedantic, "%qD cannot have default arguments",
12041 decl);
12043 else
12045 error ("%qD cannot have default arguments", decl);
12046 return false;
12050 return true;
12053 /* Return a string giving the keyword associate with CODE. */
12055 static const char *
12056 tag_name (enum tag_types code)
12058 switch (code)
12060 case record_type:
12061 return "struct";
12062 case class_type:
12063 return "class";
12064 case union_type:
12065 return "union";
12066 case enum_type:
12067 return "enum";
12068 case typename_type:
12069 return "typename";
12070 default:
12071 gcc_unreachable ();
12075 /* Name lookup in an elaborated-type-specifier (after the keyword
12076 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
12077 elaborated-type-specifier is invalid, issue a diagnostic and return
12078 error_mark_node; otherwise, return the *_TYPE to which it referred.
12079 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
12081 tree
12082 check_elaborated_type_specifier (enum tag_types tag_code,
12083 tree decl,
12084 bool allow_template_p)
12086 tree type;
12088 /* In the case of:
12090 struct S { struct S *p; };
12092 name lookup will find the TYPE_DECL for the implicit "S::S"
12093 typedef. Adjust for that here. */
12094 if (DECL_SELF_REFERENCE_P (decl))
12095 decl = TYPE_NAME (TREE_TYPE (decl));
12097 type = TREE_TYPE (decl);
12099 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
12100 is false for this case as well. */
12101 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
12103 error ("using template type parameter %qT after %qs",
12104 type, tag_name (tag_code));
12105 return error_mark_node;
12107 /* Accept template template parameters. */
12108 else if (allow_template_p
12109 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
12110 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
12112 /* [dcl.type.elab]
12114 If the identifier resolves to a typedef-name or the
12115 simple-template-id resolves to an alias template
12116 specialization, the elaborated-type-specifier is ill-formed.
12118 In other words, the only legitimate declaration to use in the
12119 elaborated type specifier is the implicit typedef created when
12120 the type is declared. */
12121 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
12122 && !DECL_SELF_REFERENCE_P (decl)
12123 && tag_code != typename_type)
12125 if (alias_template_specialization_p (type))
12126 error ("using alias template specialization %qT after %qs",
12127 type, tag_name (tag_code));
12128 else
12129 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
12130 inform (DECL_SOURCE_LOCATION (decl),
12131 "%qD has a previous declaration here", decl);
12132 return error_mark_node;
12134 else if (TREE_CODE (type) != RECORD_TYPE
12135 && TREE_CODE (type) != UNION_TYPE
12136 && tag_code != enum_type
12137 && tag_code != typename_type)
12139 error ("%qT referred to as %qs", type, tag_name (tag_code));
12140 inform (input_location, "%q+T has a previous declaration here", type);
12141 return error_mark_node;
12143 else if (TREE_CODE (type) != ENUMERAL_TYPE
12144 && tag_code == enum_type)
12146 error ("%qT referred to as enum", type);
12147 inform (input_location, "%q+T has a previous declaration here", type);
12148 return error_mark_node;
12150 else if (!allow_template_p
12151 && TREE_CODE (type) == RECORD_TYPE
12152 && CLASSTYPE_IS_TEMPLATE (type))
12154 /* If a class template appears as elaborated type specifier
12155 without a template header such as:
12157 template <class T> class C {};
12158 void f(class C); // No template header here
12160 then the required template argument is missing. */
12161 error ("template argument required for %<%s %T%>",
12162 tag_name (tag_code),
12163 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
12164 return error_mark_node;
12167 return type;
12170 /* Lookup NAME in elaborate type specifier in scope according to
12171 SCOPE and issue diagnostics if necessary.
12172 Return *_TYPE node upon success, NULL_TREE when the NAME is not
12173 found, and ERROR_MARK_NODE for type error. */
12175 static tree
12176 lookup_and_check_tag (enum tag_types tag_code, tree name,
12177 tag_scope scope, bool template_header_p)
12179 tree t;
12180 tree decl;
12181 if (scope == ts_global)
12183 /* First try ordinary name lookup, ignoring hidden class name
12184 injected via friend declaration. */
12185 decl = lookup_name_prefer_type (name, 2);
12186 /* If that fails, the name will be placed in the smallest
12187 non-class, non-function-prototype scope according to 3.3.1/5.
12188 We may already have a hidden name declared as friend in this
12189 scope. So lookup again but not ignoring hidden names.
12190 If we find one, that name will be made visible rather than
12191 creating a new tag. */
12192 if (!decl)
12193 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
12195 else
12196 decl = lookup_type_scope (name, scope);
12198 if (decl
12199 && (DECL_CLASS_TEMPLATE_P (decl)
12200 /* If scope is ts_current we're defining a class, so ignore a
12201 template template parameter. */
12202 || (scope != ts_current
12203 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
12204 decl = DECL_TEMPLATE_RESULT (decl);
12206 if (decl && TREE_CODE (decl) == TYPE_DECL)
12208 /* Look for invalid nested type:
12209 class C {
12210 class C {};
12211 }; */
12212 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
12214 error ("%qD has the same name as the class in which it is "
12215 "declared",
12216 decl);
12217 return error_mark_node;
12220 /* Two cases we need to consider when deciding if a class
12221 template is allowed as an elaborated type specifier:
12222 1. It is a self reference to its own class.
12223 2. It comes with a template header.
12225 For example:
12227 template <class T> class C {
12228 class C *c1; // DECL_SELF_REFERENCE_P is true
12229 class D;
12231 template <class U> class C; // template_header_p is true
12232 template <class T> class C<T>::D {
12233 class C *c2; // DECL_SELF_REFERENCE_P is true
12234 }; */
12236 t = check_elaborated_type_specifier (tag_code,
12237 decl,
12238 template_header_p
12239 | DECL_SELF_REFERENCE_P (decl));
12240 return t;
12242 else if (decl && TREE_CODE (decl) == TREE_LIST)
12244 error ("reference to %qD is ambiguous", name);
12245 print_candidates (decl);
12246 return error_mark_node;
12248 else
12249 return NULL_TREE;
12252 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
12253 Define the tag as a forward-reference if it is not defined.
12255 If a declaration is given, process it here, and report an error if
12256 multiple declarations are not identical.
12258 SCOPE is TS_CURRENT when this is also a definition. Only look in
12259 the current frame for the name (since C++ allows new names in any
12260 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
12261 declaration. Only look beginning from the current scope outward up
12262 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
12264 TEMPLATE_HEADER_P is true when this declaration is preceded by
12265 a set of template parameters. */
12267 static tree
12268 xref_tag_1 (enum tag_types tag_code, tree name,
12269 tag_scope orig_scope, bool template_header_p)
12271 enum tree_code code;
12272 tree t;
12273 tree context = NULL_TREE;
12274 tag_scope scope;
12276 gcc_assert (identifier_p (name));
12278 switch (tag_code)
12280 case record_type:
12281 case class_type:
12282 code = RECORD_TYPE;
12283 break;
12284 case union_type:
12285 code = UNION_TYPE;
12286 break;
12287 case enum_type:
12288 code = ENUMERAL_TYPE;
12289 break;
12290 default:
12291 gcc_unreachable ();
12294 if (orig_scope == ts_lambda)
12295 scope = ts_current;
12296 else
12297 scope = orig_scope;
12299 /* In case of anonymous name, xref_tag is only called to
12300 make type node and push name. Name lookup is not required. */
12301 if (ANON_AGGRNAME_P (name))
12302 t = NULL_TREE;
12303 else
12304 t = lookup_and_check_tag (tag_code, name,
12305 scope, template_header_p);
12307 if (t == error_mark_node)
12308 return error_mark_node;
12310 if (scope != ts_current && t && current_class_type
12311 && template_class_depth (current_class_type)
12312 && template_header_p)
12314 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
12315 return t;
12317 /* Since SCOPE is not TS_CURRENT, we are not looking at a
12318 definition of this tag. Since, in addition, we are currently
12319 processing a (member) template declaration of a template
12320 class, we must be very careful; consider:
12322 template <class X>
12323 struct S1
12325 template <class U>
12326 struct S2
12327 { template <class V>
12328 friend struct S1; };
12330 Here, the S2::S1 declaration should not be confused with the
12331 outer declaration. In particular, the inner version should
12332 have a template parameter of level 2, not level 1. This
12333 would be particularly important if the member declaration
12334 were instead:
12336 template <class V = U> friend struct S1;
12338 say, when we should tsubst into `U' when instantiating
12339 S2. On the other hand, when presented with:
12341 template <class T>
12342 struct S1 {
12343 template <class U>
12344 struct S2 {};
12345 template <class U>
12346 friend struct S2;
12349 we must find the inner binding eventually. We
12350 accomplish this by making sure that the new type we
12351 create to represent this declaration has the right
12352 TYPE_CONTEXT. */
12353 context = TYPE_CONTEXT (t);
12354 t = NULL_TREE;
12357 if (! t)
12359 /* If no such tag is yet defined, create a forward-reference node
12360 and record it as the "definition".
12361 When a real declaration of this type is found,
12362 the forward-reference will be altered into a real type. */
12363 if (code == ENUMERAL_TYPE)
12365 error ("use of enum %q#D without previous declaration", name);
12366 return error_mark_node;
12368 else
12370 t = make_class_type (code);
12371 TYPE_CONTEXT (t) = context;
12372 if (orig_scope == ts_lambda)
12373 /* Remember that we're declaring a lambda to avoid bogus errors
12374 in push_template_decl. */
12375 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
12376 t = pushtag (name, t, scope);
12379 else
12381 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
12383 if (!redeclare_class_template (t, current_template_parms))
12384 return error_mark_node;
12386 else if (!processing_template_decl
12387 && CLASS_TYPE_P (t)
12388 && CLASSTYPE_IS_TEMPLATE (t))
12390 error ("redeclaration of %qT as a non-template", t);
12391 error ("previous declaration %q+D", t);
12392 return error_mark_node;
12395 /* Make injected friend class visible. */
12396 if (scope != ts_within_enclosing_non_class
12397 && hidden_name_p (TYPE_NAME (t)))
12399 DECL_ANTICIPATED (TYPE_NAME (t)) = 0;
12400 DECL_FRIEND_P (TYPE_NAME (t)) = 0;
12402 if (TYPE_TEMPLATE_INFO (t))
12404 DECL_ANTICIPATED (TYPE_TI_TEMPLATE (t)) = 0;
12405 DECL_FRIEND_P (TYPE_TI_TEMPLATE (t)) = 0;
12410 return t;
12413 /* Wrapper for xref_tag_1. */
12415 tree
12416 xref_tag (enum tag_types tag_code, tree name,
12417 tag_scope scope, bool template_header_p)
12419 tree ret;
12420 bool subtime;
12421 subtime = timevar_cond_start (TV_NAME_LOOKUP);
12422 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
12423 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
12424 return ret;
12428 tree
12429 xref_tag_from_type (tree old, tree id, tag_scope scope)
12431 enum tag_types tag_kind;
12433 if (TREE_CODE (old) == RECORD_TYPE)
12434 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
12435 else
12436 tag_kind = union_type;
12438 if (id == NULL_TREE)
12439 id = TYPE_IDENTIFIER (old);
12441 return xref_tag (tag_kind, id, scope, false);
12444 /* Create the binfo hierarchy for REF with (possibly NULL) base list
12445 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
12446 access_* node, and the TREE_VALUE is the type of the base-class.
12447 Non-NULL TREE_TYPE indicates virtual inheritance.
12449 Returns true if the binfo hierarchy was successfully created,
12450 false if an error was detected. */
12452 bool
12453 xref_basetypes (tree ref, tree base_list)
12455 tree *basep;
12456 tree binfo, base_binfo;
12457 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
12458 unsigned max_bases = 0; /* Maximum direct bases. */
12459 int i;
12460 tree default_access;
12461 tree igo_prev; /* Track Inheritance Graph Order. */
12463 if (ref == error_mark_node)
12464 return false;
12466 /* The base of a derived class is private by default, all others are
12467 public. */
12468 default_access = (TREE_CODE (ref) == RECORD_TYPE
12469 && CLASSTYPE_DECLARED_CLASS (ref)
12470 ? access_private_node : access_public_node);
12472 /* First, make sure that any templates in base-classes are
12473 instantiated. This ensures that if we call ourselves recursively
12474 we do not get confused about which classes are marked and which
12475 are not. */
12476 basep = &base_list;
12477 while (*basep)
12479 tree basetype = TREE_VALUE (*basep);
12481 /* The dependent_type_p call below should really be dependent_scope_p
12482 so that we give a hard error about using an incomplete type as a
12483 base, but we allow it with a pedwarn for backward
12484 compatibility. */
12485 if (processing_template_decl
12486 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
12487 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
12488 if (!dependent_type_p (basetype)
12489 && !complete_type_or_else (basetype, NULL))
12490 /* An incomplete type. Remove it from the list. */
12491 *basep = TREE_CHAIN (*basep);
12492 else
12494 max_bases++;
12495 if (TREE_TYPE (*basep))
12496 max_vbases++;
12497 if (CLASS_TYPE_P (basetype))
12498 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
12499 basep = &TREE_CHAIN (*basep);
12503 TYPE_MARKED_P (ref) = 1;
12505 /* The binfo slot should be empty, unless this is an (ill-formed)
12506 redefinition. */
12507 if (TYPE_BINFO (ref) && !TYPE_SIZE (ref))
12509 error ("redefinition of %q#T", ref);
12510 return false;
12513 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
12515 binfo = make_tree_binfo (max_bases);
12517 TYPE_BINFO (ref) = binfo;
12518 BINFO_OFFSET (binfo) = size_zero_node;
12519 BINFO_TYPE (binfo) = ref;
12521 /* Apply base-class info set up to the variants of this type. */
12522 fixup_type_variants (ref);
12524 if (max_bases)
12526 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
12527 /* An aggregate cannot have baseclasses. */
12528 CLASSTYPE_NON_AGGREGATE (ref) = 1;
12530 if (TREE_CODE (ref) == UNION_TYPE)
12532 error ("derived union %qT invalid", ref);
12533 return false;
12537 if (max_bases > 1)
12539 if (TYPE_FOR_JAVA (ref))
12541 error ("Java class %qT cannot have multiple bases", ref);
12542 return false;
12546 if (max_vbases)
12548 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
12550 if (TYPE_FOR_JAVA (ref))
12552 error ("Java class %qT cannot have virtual bases", ref);
12553 return false;
12557 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
12559 tree access = TREE_PURPOSE (base_list);
12560 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
12561 tree basetype = TREE_VALUE (base_list);
12563 if (access == access_default_node)
12564 access = default_access;
12566 if (PACK_EXPANSION_P (basetype))
12567 basetype = PACK_EXPANSION_PATTERN (basetype);
12568 if (TREE_CODE (basetype) == TYPE_DECL)
12569 basetype = TREE_TYPE (basetype);
12570 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
12572 error ("base type %qT fails to be a struct or class type",
12573 basetype);
12574 return false;
12577 if (TYPE_FOR_JAVA (basetype) && (current_lang_depth () == 0))
12578 TYPE_FOR_JAVA (ref) = 1;
12580 base_binfo = NULL_TREE;
12581 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
12583 base_binfo = TYPE_BINFO (basetype);
12584 /* The original basetype could have been a typedef'd type. */
12585 basetype = BINFO_TYPE (base_binfo);
12587 /* Inherit flags from the base. */
12588 TYPE_HAS_NEW_OPERATOR (ref)
12589 |= TYPE_HAS_NEW_OPERATOR (basetype);
12590 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
12591 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
12592 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
12593 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
12594 CLASSTYPE_DIAMOND_SHAPED_P (ref)
12595 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
12596 CLASSTYPE_REPEATED_BASE_P (ref)
12597 |= CLASSTYPE_REPEATED_BASE_P (basetype);
12600 /* We must do this test after we've seen through a typedef
12601 type. */
12602 if (TYPE_MARKED_P (basetype))
12604 if (basetype == ref)
12605 error ("recursive type %qT undefined", basetype);
12606 else
12607 error ("duplicate base type %qT invalid", basetype);
12608 return false;
12611 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
12612 /* Regenerate the pack expansion for the bases. */
12613 basetype = make_pack_expansion (basetype);
12615 TYPE_MARKED_P (basetype) = 1;
12617 base_binfo = copy_binfo (base_binfo, basetype, ref,
12618 &igo_prev, via_virtual);
12619 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
12620 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
12622 BINFO_BASE_APPEND (binfo, base_binfo);
12623 BINFO_BASE_ACCESS_APPEND (binfo, access);
12626 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
12627 /* If we didn't get max_vbases vbases, we must have shared at
12628 least one of them, and are therefore diamond shaped. */
12629 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
12631 /* Unmark all the types. */
12632 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12633 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
12634 TYPE_MARKED_P (ref) = 0;
12636 /* Now see if we have a repeated base type. */
12637 if (!CLASSTYPE_REPEATED_BASE_P (ref))
12639 for (base_binfo = binfo; base_binfo;
12640 base_binfo = TREE_CHAIN (base_binfo))
12642 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
12644 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
12645 break;
12647 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
12649 for (base_binfo = binfo; base_binfo;
12650 base_binfo = TREE_CHAIN (base_binfo))
12651 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
12652 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
12653 else
12654 break;
12657 return true;
12661 /* Copies the enum-related properties from type SRC to type DST.
12662 Used with the underlying type of an enum and the enum itself. */
12663 static void
12664 copy_type_enum (tree dst, tree src)
12666 tree t;
12667 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
12669 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
12670 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
12671 TYPE_SIZE (t) = TYPE_SIZE (src);
12672 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
12673 SET_TYPE_MODE (dst, TYPE_MODE (src));
12674 TYPE_PRECISION (t) = TYPE_PRECISION (src);
12675 TYPE_ALIGN (t) = TYPE_ALIGN (src);
12676 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
12677 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
12681 /* Begin compiling the definition of an enumeration type.
12682 NAME is its name,
12684 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
12686 UNDERLYING_TYPE is the type that will be used as the storage for
12687 the enumeration type. This should be NULL_TREE if no storage type
12688 was specified.
12690 SCOPED_ENUM_P is true if this is a scoped enumeration type.
12692 if IS_NEW is not NULL, gets TRUE iff a new type is created.
12694 Returns the type object, as yet incomplete.
12695 Also records info about it so that build_enumerator
12696 may be used to declare the individual values as they are read. */
12698 tree
12699 start_enum (tree name, tree enumtype, tree underlying_type,
12700 bool scoped_enum_p, bool *is_new)
12702 tree prevtype = NULL_TREE;
12703 gcc_assert (identifier_p (name));
12705 if (is_new)
12706 *is_new = false;
12707 /* [C++0x dcl.enum]p5:
12709 If not explicitly specified, the underlying type of a scoped
12710 enumeration type is int. */
12711 if (!underlying_type && scoped_enum_p)
12712 underlying_type = integer_type_node;
12714 if (underlying_type)
12715 underlying_type = cv_unqualified (underlying_type);
12717 /* If this is the real definition for a previous forward reference,
12718 fill in the contents in the same object that used to be the
12719 forward reference. */
12720 if (!enumtype)
12721 enumtype = lookup_and_check_tag (enum_type, name,
12722 /*tag_scope=*/ts_current,
12723 /*template_header_p=*/false);
12725 /* In case of a template_decl, the only check that should be deferred
12726 to instantiation time is the comparison of underlying types. */
12727 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
12729 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
12731 error_at (input_location, "scoped/unscoped mismatch "
12732 "in enum %q#T", enumtype);
12733 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
12734 "previous definition here");
12735 enumtype = error_mark_node;
12737 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
12739 error_at (input_location, "underlying type mismatch "
12740 "in enum %q#T", enumtype);
12741 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
12742 "previous definition here");
12743 enumtype = error_mark_node;
12745 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
12746 && !dependent_type_p (underlying_type)
12747 && !dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))
12748 && !same_type_p (underlying_type,
12749 ENUM_UNDERLYING_TYPE (enumtype)))
12751 error_at (input_location, "different underlying type "
12752 "in enum %q#T", enumtype);
12753 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
12754 "previous definition here");
12755 underlying_type = NULL_TREE;
12759 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
12760 || processing_template_decl)
12762 /* In case of error, make a dummy enum to allow parsing to
12763 continue. */
12764 if (enumtype == error_mark_node)
12766 name = make_anon_name ();
12767 enumtype = NULL_TREE;
12770 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
12771 of an opaque enum, or an opaque enum of an already defined
12772 enumeration (C++0x only).
12773 In any other case, it'll be NULL_TREE. */
12774 if (!enumtype)
12776 if (is_new)
12777 *is_new = true;
12779 prevtype = enumtype;
12781 /* Do not push the decl more than once, unless we need to
12782 compare underlying types at instantiation time */
12783 if (!enumtype
12784 || TREE_CODE (enumtype) != ENUMERAL_TYPE
12785 || (underlying_type
12786 && dependent_type_p (underlying_type))
12787 || (ENUM_UNDERLYING_TYPE (enumtype)
12788 && dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))))
12790 enumtype = cxx_make_type (ENUMERAL_TYPE);
12791 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
12793 else
12794 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
12795 false);
12797 if (enumtype == error_mark_node)
12798 return error_mark_node;
12800 /* The enum is considered opaque until the opening '{' of the
12801 enumerator list. */
12802 SET_OPAQUE_ENUM_P (enumtype, true);
12803 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
12806 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
12808 if (underlying_type)
12810 if (CP_INTEGRAL_TYPE_P (underlying_type))
12812 copy_type_enum (enumtype, underlying_type);
12813 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
12815 else if (dependent_type_p (underlying_type))
12816 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
12817 else
12818 error ("underlying type %<%T%> of %<%T%> must be an integral type",
12819 underlying_type, enumtype);
12822 /* If into a template class, the returned enum is always the first
12823 declaration (opaque or not) seen. This way all the references to
12824 this type will be to the same declaration. The following ones are used
12825 only to check for definition errors. */
12826 if (prevtype && processing_template_decl)
12827 return prevtype;
12828 else
12829 return enumtype;
12832 /* After processing and defining all the values of an enumeration type,
12833 install their decls in the enumeration type.
12834 ENUMTYPE is the type object. */
12836 void
12837 finish_enum_value_list (tree enumtype)
12839 tree values;
12840 tree underlying_type;
12841 tree decl;
12842 tree value;
12843 tree minnode, maxnode;
12844 tree t;
12846 bool fixed_underlying_type_p
12847 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
12849 /* We built up the VALUES in reverse order. */
12850 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
12852 /* For an enum defined in a template, just set the type of the values;
12853 all further processing is postponed until the template is
12854 instantiated. We need to set the type so that tsubst of a CONST_DECL
12855 works. */
12856 if (processing_template_decl)
12858 for (values = TYPE_VALUES (enumtype);
12859 values;
12860 values = TREE_CHAIN (values))
12861 TREE_TYPE (TREE_VALUE (values)) = enumtype;
12862 return;
12865 /* Determine the minimum and maximum values of the enumerators. */
12866 if (TYPE_VALUES (enumtype))
12868 minnode = maxnode = NULL_TREE;
12870 for (values = TYPE_VALUES (enumtype);
12871 values;
12872 values = TREE_CHAIN (values))
12874 decl = TREE_VALUE (values);
12876 /* [dcl.enum]: Following the closing brace of an enum-specifier,
12877 each enumerator has the type of its enumeration. Prior to the
12878 closing brace, the type of each enumerator is the type of its
12879 initializing value. */
12880 TREE_TYPE (decl) = enumtype;
12882 /* Update the minimum and maximum values, if appropriate. */
12883 value = DECL_INITIAL (decl);
12884 if (value == error_mark_node)
12885 value = integer_zero_node;
12886 /* Figure out what the minimum and maximum values of the
12887 enumerators are. */
12888 if (!minnode)
12889 minnode = maxnode = value;
12890 else if (tree_int_cst_lt (maxnode, value))
12891 maxnode = value;
12892 else if (tree_int_cst_lt (value, minnode))
12893 minnode = value;
12896 else
12897 /* [dcl.enum]
12899 If the enumerator-list is empty, the underlying type is as if
12900 the enumeration had a single enumerator with value 0. */
12901 minnode = maxnode = integer_zero_node;
12903 if (!fixed_underlying_type_p)
12905 /* Compute the number of bits require to represent all values of the
12906 enumeration. We must do this before the type of MINNODE and
12907 MAXNODE are transformed, since tree_int_cst_min_precision relies
12908 on the TREE_TYPE of the value it is passed. */
12909 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
12910 int lowprec = tree_int_cst_min_precision (minnode, sgn);
12911 int highprec = tree_int_cst_min_precision (maxnode, sgn);
12912 int precision = MAX (lowprec, highprec);
12913 unsigned int itk;
12914 bool use_short_enum;
12916 /* Determine the underlying type of the enumeration.
12918 [dcl.enum]
12920 The underlying type of an enumeration is an integral type that
12921 can represent all the enumerator values defined in the
12922 enumeration. It is implementation-defined which integral type is
12923 used as the underlying type for an enumeration except that the
12924 underlying type shall not be larger than int unless the value of
12925 an enumerator cannot fit in an int or unsigned int.
12927 We use "int" or an "unsigned int" as the underlying type, even if
12928 a smaller integral type would work, unless the user has
12929 explicitly requested that we use the smallest possible type. The
12930 user can request that for all enumerations with a command line
12931 flag, or for just one enumeration with an attribute. */
12933 use_short_enum = flag_short_enums
12934 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
12936 for (itk = (use_short_enum ? itk_char : itk_int);
12937 itk != itk_none;
12938 itk++)
12940 underlying_type = integer_types[itk];
12941 if (underlying_type != NULL_TREE
12942 && TYPE_PRECISION (underlying_type) >= precision
12943 && TYPE_SIGN (underlying_type) == sgn)
12944 break;
12946 if (itk == itk_none)
12948 /* DR 377
12950 IF no integral type can represent all the enumerator values, the
12951 enumeration is ill-formed. */
12952 error ("no integral type can represent all of the enumerator values "
12953 "for %qT", enumtype);
12954 precision = TYPE_PRECISION (long_long_integer_type_node);
12955 underlying_type = integer_types[itk_unsigned_long_long];
12958 /* [dcl.enum]
12960 The value of sizeof() applied to an enumeration type, an object
12961 of an enumeration type, or an enumerator, is the value of sizeof()
12962 applied to the underlying type. */
12963 copy_type_enum (enumtype, underlying_type);
12965 /* Compute the minimum and maximum values for the type.
12967 [dcl.enum]
12969 For an enumeration where emin is the smallest enumerator and emax
12970 is the largest, the values of the enumeration are the values of the
12971 underlying type in the range bmin to bmax, where bmin and bmax are,
12972 respectively, the smallest and largest values of the smallest bit-
12973 field that can store emin and emax. */
12975 /* The middle-end currently assumes that types with TYPE_PRECISION
12976 narrower than their underlying type are suitably zero or sign
12977 extended to fill their mode. Similarly, it assumes that the front
12978 end assures that a value of a particular type must be within
12979 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
12981 We used to set these fields based on bmin and bmax, but that led
12982 to invalid assumptions like optimizing away bounds checking. So
12983 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
12984 TYPE_MAX_VALUE to the values for the mode above and only restrict
12985 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
12986 ENUM_UNDERLYING_TYPE (enumtype)
12987 = build_distinct_type_copy (underlying_type);
12988 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
12989 set_min_and_max_values_for_integral_type
12990 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
12992 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
12993 if (flag_strict_enums)
12994 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
12996 else
12997 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
12999 /* Convert each of the enumerators to the type of the underlying
13000 type of the enumeration. */
13001 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
13003 location_t saved_location;
13005 decl = TREE_VALUE (values);
13006 saved_location = input_location;
13007 input_location = DECL_SOURCE_LOCATION (decl);
13008 if (fixed_underlying_type_p)
13009 /* If the enumeration type has a fixed underlying type, we
13010 already checked all of the enumerator values. */
13011 value = DECL_INITIAL (decl);
13012 else
13013 value = perform_implicit_conversion (underlying_type,
13014 DECL_INITIAL (decl),
13015 tf_warning_or_error);
13016 input_location = saved_location;
13018 /* Do not clobber shared ints. */
13019 value = copy_node (value);
13021 TREE_TYPE (value) = enumtype;
13022 DECL_INITIAL (decl) = value;
13025 /* Fix up all variant types of this enum type. */
13026 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
13027 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
13029 if (at_class_scope_p ()
13030 && COMPLETE_TYPE_P (current_class_type)
13031 && UNSCOPED_ENUM_P (enumtype))
13032 insert_late_enum_def_into_classtype_sorted_fields (enumtype,
13033 current_class_type);
13035 /* Finish debugging output for this type. */
13036 rest_of_type_compilation (enumtype, namespace_bindings_p ());
13039 /* Finishes the enum type. This is called only the first time an
13040 enumeration is seen, be it opaque or odinary.
13041 ENUMTYPE is the type object. */
13043 void
13044 finish_enum (tree enumtype)
13046 if (processing_template_decl)
13048 if (at_function_scope_p ())
13049 add_stmt (build_min (TAG_DEFN, enumtype));
13050 return;
13053 /* If this is a forward declaration, there should not be any variants,
13054 though we can get a variant in the middle of an enum-specifier with
13055 wacky code like 'enum E { e = sizeof(const E*) };' */
13056 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
13057 && (TYPE_VALUES (enumtype)
13058 || !TYPE_NEXT_VARIANT (enumtype)));
13061 /* Build and install a CONST_DECL for an enumeration constant of the
13062 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
13063 LOC is the location of NAME.
13064 Assignment of sequential values by default is handled here. */
13066 void
13067 build_enumerator (tree name, tree value, tree enumtype, location_t loc)
13069 tree decl;
13070 tree context;
13071 tree type;
13073 /* scalar_constant_value will pull out this expression, so make sure
13074 it's folded as appropriate. */
13075 if (processing_template_decl)
13076 value = fold_non_dependent_expr (value);
13078 /* If the VALUE was erroneous, pretend it wasn't there; that will
13079 result in the enum being assigned the next value in sequence. */
13080 if (value == error_mark_node)
13081 value = NULL_TREE;
13083 /* Remove no-op casts from the value. */
13084 if (value)
13085 STRIP_TYPE_NOPS (value);
13087 if (! processing_template_decl)
13089 /* Validate and default VALUE. */
13090 if (value != NULL_TREE)
13092 if (!ENUM_UNDERLYING_TYPE (enumtype))
13094 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
13095 value, true);
13096 if (tmp_value)
13097 value = tmp_value;
13099 else if (! INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (value)))
13100 value = perform_implicit_conversion_flags
13101 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
13102 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
13104 if (value == error_mark_node)
13105 value = NULL_TREE;
13107 if (value != NULL_TREE)
13109 value = cxx_constant_value (value);
13111 if (TREE_CODE (value) != INTEGER_CST
13112 || ! INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (value)))
13114 error ("enumerator value for %qD is not an integer constant",
13115 name);
13116 value = NULL_TREE;
13121 /* Default based on previous value. */
13122 if (value == NULL_TREE)
13124 if (TYPE_VALUES (enumtype))
13126 tree prev_value;
13127 bool overflowed;
13129 /* C++03 7.2/4: If no initializer is specified for the first
13130 enumerator, the type is an unspecified integral
13131 type. Otherwise the type is the same as the type of the
13132 initializing value of the preceding enumerator unless the
13133 incremented value is not representable in that type, in
13134 which case the type is an unspecified integral type
13135 sufficient to contain the incremented value. */
13136 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
13137 if (error_operand_p (prev_value))
13138 value = error_mark_node;
13139 else
13141 tree type = TREE_TYPE (prev_value);
13142 signop sgn = TYPE_SIGN (type);
13143 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
13144 &overflowed);
13145 if (!overflowed)
13147 bool pos = !wi::neg_p (wi, sgn);
13148 if (!wi::fits_to_tree_p (wi, type))
13150 unsigned int itk;
13151 for (itk = itk_int; itk != itk_none; itk++)
13153 type = integer_types[itk];
13154 if (type != NULL_TREE
13155 && (pos || !TYPE_UNSIGNED (type))
13156 && wi::fits_to_tree_p (wi, type))
13157 break;
13159 if (type && cxx_dialect < cxx11
13160 && itk > itk_unsigned_long)
13161 pedwarn (input_location, OPT_Wlong_long, pos ? "\
13162 incremented enumerator value is too large for %<unsigned long%>" : "\
13163 incremented enumerator value is too large for %<long%>");
13165 if (type == NULL_TREE)
13166 overflowed = true;
13167 else
13168 value = wide_int_to_tree (type, wi);
13171 if (overflowed)
13173 error ("overflow in enumeration values at %qD", name);
13174 value = error_mark_node;
13178 else
13179 value = integer_zero_node;
13182 /* Remove no-op casts from the value. */
13183 STRIP_TYPE_NOPS (value);
13185 /* If the underlying type of the enum is fixed, check whether
13186 the enumerator values fits in the underlying type. If it
13187 does not fit, the program is ill-formed [C++0x dcl.enum]. */
13188 if (ENUM_UNDERLYING_TYPE (enumtype)
13189 && value
13190 && TREE_CODE (value) == INTEGER_CST)
13192 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
13193 error ("enumerator value %E is outside the range of underlying "
13194 "type %<%T%>", value, ENUM_UNDERLYING_TYPE (enumtype));
13196 /* Convert the value to the appropriate type. */
13197 value = convert (ENUM_UNDERLYING_TYPE (enumtype), value);
13201 /* C++ associates enums with global, function, or class declarations. */
13202 context = current_scope ();
13204 /* Build the actual enumeration constant. Note that the enumeration
13205 constants have the underlying type of the enum (if it is fixed)
13206 or the type of their initializer (if the underlying type of the
13207 enum is not fixed):
13209 [ C++0x dcl.enum ]
13211 If the underlying type is fixed, the type of each enumerator
13212 prior to the closing brace is the underlying type; if the
13213 initializing value of an enumerator cannot be represented by
13214 the underlying type, the program is ill-formed. If the
13215 underlying type is not fixed, the type of each enumerator is
13216 the type of its initializing value.
13218 If the underlying type is not fixed, it will be computed by
13219 finish_enum and we will reset the type of this enumerator. Of
13220 course, if we're processing a template, there may be no value. */
13221 type = value ? TREE_TYPE (value) : NULL_TREE;
13223 decl = build_decl (loc, CONST_DECL, name, type);
13225 DECL_CONTEXT (decl) = enumtype;
13226 TREE_CONSTANT (decl) = 1;
13227 TREE_READONLY (decl) = 1;
13228 DECL_INITIAL (decl) = value;
13230 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
13231 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
13232 on the TYPE_FIELDS list for `S'. (That's so that you can say
13233 things like `S::i' later.) */
13234 finish_member_declaration (decl);
13235 else
13236 pushdecl (decl);
13238 /* Add this enumeration constant to the list for this type. */
13239 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
13242 /* Look for an enumerator with the given NAME within the enumeration
13243 type ENUMTYPE. This routine is used primarily for qualified name
13244 lookup into an enumerator in C++0x, e.g.,
13246 enum class Color { Red, Green, Blue };
13248 Color color = Color::Red;
13250 Returns the value corresponding to the enumerator, or
13251 NULL_TREE if no such enumerator was found. */
13252 tree
13253 lookup_enumerator (tree enumtype, tree name)
13255 tree e;
13256 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
13258 e = purpose_member (name, TYPE_VALUES (enumtype));
13259 return e? TREE_VALUE (e) : NULL_TREE;
13263 /* We're defining DECL. Make sure that its type is OK. */
13265 static void
13266 check_function_type (tree decl, tree current_function_parms)
13268 tree fntype = TREE_TYPE (decl);
13269 tree return_type = complete_type (TREE_TYPE (fntype));
13271 /* In a function definition, arg types must be complete. */
13272 require_complete_types_for_parms (current_function_parms);
13274 if (dependent_type_p (return_type)
13275 || type_uses_auto (return_type))
13276 return;
13277 if (!COMPLETE_OR_VOID_TYPE_P (return_type)
13278 || (TYPE_FOR_JAVA (return_type) && MAYBE_CLASS_TYPE_P (return_type)))
13280 tree args = TYPE_ARG_TYPES (fntype);
13282 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
13283 error ("return type %q#T is incomplete", return_type);
13284 else
13285 error ("return type has Java class type %q#T", return_type);
13287 /* Make it return void instead. */
13288 if (TREE_CODE (fntype) == METHOD_TYPE)
13289 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
13290 void_type_node,
13291 TREE_CHAIN (args));
13292 else
13293 fntype = build_function_type (void_type_node, args);
13294 fntype
13295 = build_exception_variant (fntype,
13296 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)));
13297 fntype = (cp_build_type_attribute_variant
13298 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
13299 TREE_TYPE (decl) = fntype;
13301 else
13302 abstract_virtuals_error (decl, TREE_TYPE (fntype));
13305 /* Create the FUNCTION_DECL for a function definition.
13306 DECLSPECS and DECLARATOR are the parts of the declaration;
13307 they describe the function's name and the type it returns,
13308 but twisted together in a fashion that parallels the syntax of C.
13310 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
13311 DECLARATOR is really the DECL for the function we are about to
13312 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
13313 indicating that the function is an inline defined in-class.
13315 This function creates a binding context for the function body
13316 as well as setting up the FUNCTION_DECL in current_function_decl.
13318 For C++, we must first check whether that datum makes any sense.
13319 For example, "class A local_a(1,2);" means that variable local_a
13320 is an aggregate of type A, which should have a constructor
13321 applied to it with the argument list [1, 2].
13323 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
13324 or may be a BLOCK if the function has been defined previously
13325 in this translation unit. On exit, DECL_INITIAL (decl1) will be
13326 error_mark_node if the function has never been defined, or
13327 a BLOCK if the function has been defined somewhere. */
13329 bool
13330 start_preparsed_function (tree decl1, tree attrs, int flags)
13332 tree ctype = NULL_TREE;
13333 tree fntype;
13334 tree restype;
13335 int doing_friend = 0;
13336 cp_binding_level *bl;
13337 tree current_function_parms;
13338 struct c_fileinfo *finfo
13339 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
13340 bool honor_interface;
13342 /* Sanity check. */
13343 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
13344 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
13346 fntype = TREE_TYPE (decl1);
13347 if (TREE_CODE (fntype) == METHOD_TYPE)
13348 ctype = TYPE_METHOD_BASETYPE (fntype);
13350 /* ISO C++ 11.4/5. A friend function defined in a class is in
13351 the (lexical) scope of the class in which it is defined. */
13352 if (!ctype && DECL_FRIEND_P (decl1))
13354 ctype = DECL_FRIEND_CONTEXT (decl1);
13356 /* CTYPE could be null here if we're dealing with a template;
13357 for example, `inline friend float foo()' inside a template
13358 will have no CTYPE set. */
13359 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
13360 ctype = NULL_TREE;
13361 else
13362 doing_friend = 1;
13365 if (DECL_DECLARED_INLINE_P (decl1)
13366 && lookup_attribute ("noinline", attrs))
13367 warning (0, "inline function %q+D given attribute noinline", decl1);
13369 /* Handle gnu_inline attribute. */
13370 if (GNU_INLINE_P (decl1))
13372 DECL_EXTERNAL (decl1) = 1;
13373 DECL_NOT_REALLY_EXTERN (decl1) = 0;
13374 DECL_INTERFACE_KNOWN (decl1) = 1;
13375 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
13378 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
13379 /* This is a constructor, we must ensure that any default args
13380 introduced by this definition are propagated to the clones
13381 now. The clones are used directly in overload resolution. */
13382 adjust_clone_args (decl1);
13384 /* Sometimes we don't notice that a function is a static member, and
13385 build a METHOD_TYPE for it. Fix that up now. */
13386 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
13387 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
13389 /* Set up current_class_type, and enter the scope of the class, if
13390 appropriate. */
13391 if (ctype)
13392 push_nested_class (ctype);
13393 else if (DECL_STATIC_FUNCTION_P (decl1))
13394 push_nested_class (DECL_CONTEXT (decl1));
13396 /* Now that we have entered the scope of the class, we must restore
13397 the bindings for any template parameters surrounding DECL1, if it
13398 is an inline member template. (Order is important; consider the
13399 case where a template parameter has the same name as a field of
13400 the class.) It is not until after this point that
13401 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
13402 if (flags & SF_INCLASS_INLINE)
13403 maybe_begin_member_template_processing (decl1);
13405 /* Effective C++ rule 15. */
13406 if (warn_ecpp
13407 && DECL_OVERLOADED_OPERATOR_P (decl1) == NOP_EXPR
13408 && VOID_TYPE_P (TREE_TYPE (fntype)))
13409 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
13411 /* Make the init_value nonzero so pushdecl knows this is not tentative.
13412 error_mark_node is replaced below (in poplevel) with the BLOCK. */
13413 if (!DECL_INITIAL (decl1))
13414 DECL_INITIAL (decl1) = error_mark_node;
13416 /* This function exists in static storage.
13417 (This does not mean `static' in the C sense!) */
13418 TREE_STATIC (decl1) = 1;
13420 /* We must call push_template_decl after current_class_type is set
13421 up. (If we are processing inline definitions after exiting a
13422 class scope, current_class_type will be NULL_TREE until set above
13423 by push_nested_class.) */
13424 if (processing_template_decl)
13426 tree newdecl1 = push_template_decl (decl1);
13427 if (newdecl1 == error_mark_node)
13429 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
13430 pop_nested_class ();
13431 return false;
13433 decl1 = newdecl1;
13436 /* We are now in the scope of the function being defined. */
13437 current_function_decl = decl1;
13439 /* Save the parm names or decls from this function's declarator
13440 where store_parm_decls will find them. */
13441 current_function_parms = DECL_ARGUMENTS (decl1);
13443 /* Make sure the parameter and return types are reasonable. When
13444 you declare a function, these types can be incomplete, but they
13445 must be complete when you define the function. */
13446 check_function_type (decl1, current_function_parms);
13448 /* Build the return declaration for the function. */
13449 restype = TREE_TYPE (fntype);
13451 if (DECL_RESULT (decl1) == NULL_TREE)
13453 tree resdecl;
13455 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
13456 DECL_ARTIFICIAL (resdecl) = 1;
13457 DECL_IGNORED_P (resdecl) = 1;
13458 DECL_RESULT (decl1) = resdecl;
13460 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
13463 /* Let the user know we're compiling this function. */
13464 announce_function (decl1);
13466 /* Record the decl so that the function name is defined.
13467 If we already have a decl for this name, and it is a FUNCTION_DECL,
13468 use the old decl. */
13469 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
13471 /* A specialization is not used to guide overload resolution. */
13472 if (!DECL_FUNCTION_MEMBER_P (decl1)
13473 && !(DECL_USE_TEMPLATE (decl1) &&
13474 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
13476 tree olddecl = pushdecl (decl1);
13478 if (olddecl == error_mark_node)
13479 /* If something went wrong when registering the declaration,
13480 use DECL1; we have to have a FUNCTION_DECL to use when
13481 parsing the body of the function. */
13483 else
13485 /* Otherwise, OLDDECL is either a previous declaration
13486 of the same function or DECL1 itself. */
13488 if (warn_missing_declarations
13489 && olddecl == decl1
13490 && !DECL_MAIN_P (decl1)
13491 && TREE_PUBLIC (decl1)
13492 && !DECL_DECLARED_INLINE_P (decl1))
13494 tree context;
13496 /* Check whether DECL1 is in an anonymous
13497 namespace. */
13498 for (context = DECL_CONTEXT (decl1);
13499 context;
13500 context = DECL_CONTEXT (context))
13502 if (TREE_CODE (context) == NAMESPACE_DECL
13503 && DECL_NAME (context) == NULL_TREE)
13504 break;
13507 if (context == NULL)
13508 warning (OPT_Wmissing_declarations,
13509 "no previous declaration for %q+D", decl1);
13512 decl1 = olddecl;
13515 else
13517 /* We need to set the DECL_CONTEXT. */
13518 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
13519 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
13521 fntype = TREE_TYPE (decl1);
13522 restype = TREE_TYPE (fntype);
13524 /* If #pragma weak applies, mark the decl appropriately now.
13525 The pragma only applies to global functions. Because
13526 determining whether or not the #pragma applies involves
13527 computing the mangled name for the declaration, we cannot
13528 apply the pragma until after we have merged this declaration
13529 with any previous declarations; if the original declaration
13530 has a linkage specification, that specification applies to
13531 the definition as well, and may affect the mangled name. */
13532 if (DECL_FILE_SCOPE_P (decl1))
13533 maybe_apply_pragma_weak (decl1);
13536 /* Reset this in case the call to pushdecl changed it. */
13537 current_function_decl = decl1;
13539 gcc_assert (DECL_INITIAL (decl1));
13541 /* This function may already have been parsed, in which case just
13542 return; our caller will skip over the body without parsing. */
13543 if (DECL_INITIAL (decl1) != error_mark_node)
13544 return true;
13546 /* Initialize RTL machinery. We cannot do this until
13547 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
13548 even when processing a template; this is how we get
13549 CFUN set up, and our per-function variables initialized.
13550 FIXME factor out the non-RTL stuff. */
13551 bl = current_binding_level;
13552 allocate_struct_function (decl1, processing_template_decl);
13554 /* Initialize the language data structures. Whenever we start
13555 a new function, we destroy temporaries in the usual way. */
13556 cfun->language = ggc_cleared_alloc<language_function> ();
13557 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
13558 current_binding_level = bl;
13560 if (!processing_template_decl && type_uses_auto (restype))
13562 FNDECL_USED_AUTO (decl1) = true;
13563 current_function_auto_return_pattern = restype;
13566 /* Start the statement-tree, start the tree now. */
13567 DECL_SAVED_TREE (decl1) = push_stmt_list ();
13569 /* If we are (erroneously) defining a function that we have already
13570 defined before, wipe out what we knew before. */
13571 if (!DECL_PENDING_INLINE_P (decl1))
13572 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
13574 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
13576 /* We know that this was set up by `grokclassfn'. We do not
13577 wait until `store_parm_decls', since evil parse errors may
13578 never get us to that point. Here we keep the consistency
13579 between `current_class_type' and `current_class_ptr'. */
13580 tree t = DECL_ARGUMENTS (decl1);
13582 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
13583 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
13585 cp_function_chain->x_current_class_ref
13586 = cp_build_indirect_ref (t, RO_NULL, tf_warning_or_error);
13587 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
13588 cp_function_chain->x_current_class_ptr = t;
13590 /* Constructors and destructors need to know whether they're "in
13591 charge" of initializing virtual base classes. */
13592 t = DECL_CHAIN (t);
13593 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
13595 current_in_charge_parm = t;
13596 t = DECL_CHAIN (t);
13598 if (DECL_HAS_VTT_PARM_P (decl1))
13600 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
13601 current_vtt_parm = t;
13605 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
13606 /* Implicitly-defined methods (like the
13607 destructor for a class in which no destructor
13608 is explicitly declared) must not be defined
13609 until their definition is needed. So, we
13610 ignore interface specifications for
13611 compiler-generated functions. */
13612 && !DECL_ARTIFICIAL (decl1));
13614 if (processing_template_decl)
13615 /* Don't mess with interface flags. */;
13616 else if (DECL_INTERFACE_KNOWN (decl1))
13618 tree ctx = decl_function_context (decl1);
13620 if (DECL_NOT_REALLY_EXTERN (decl1))
13621 DECL_EXTERNAL (decl1) = 0;
13623 if (ctx != NULL_TREE && vague_linkage_p (ctx))
13624 /* This is a function in a local class in an extern inline
13625 or template function. */
13626 comdat_linkage (decl1);
13628 /* If this function belongs to an interface, it is public.
13629 If it belongs to someone else's interface, it is also external.
13630 This only affects inlines and template instantiations. */
13631 else if (!finfo->interface_unknown && honor_interface)
13633 if (DECL_DECLARED_INLINE_P (decl1)
13634 || DECL_TEMPLATE_INSTANTIATION (decl1))
13636 DECL_EXTERNAL (decl1)
13637 = (finfo->interface_only
13638 || (DECL_DECLARED_INLINE_P (decl1)
13639 && ! flag_implement_inlines
13640 && !DECL_VINDEX (decl1)));
13642 /* For WIN32 we also want to put these in linkonce sections. */
13643 maybe_make_one_only (decl1);
13645 else
13646 DECL_EXTERNAL (decl1) = 0;
13647 DECL_INTERFACE_KNOWN (decl1) = 1;
13648 /* If this function is in an interface implemented in this file,
13649 make sure that the back end knows to emit this function
13650 here. */
13651 if (!DECL_EXTERNAL (decl1))
13652 mark_needed (decl1);
13654 else if (finfo->interface_unknown && finfo->interface_only
13655 && honor_interface)
13657 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
13658 interface, we will have both finfo->interface_unknown and
13659 finfo->interface_only set. In that case, we don't want to
13660 use the normal heuristics because someone will supply a
13661 #pragma implementation elsewhere, and deducing it here would
13662 produce a conflict. */
13663 comdat_linkage (decl1);
13664 DECL_EXTERNAL (decl1) = 0;
13665 DECL_INTERFACE_KNOWN (decl1) = 1;
13666 DECL_DEFER_OUTPUT (decl1) = 1;
13668 else
13670 /* This is a definition, not a reference.
13671 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
13672 if (!GNU_INLINE_P (decl1))
13673 DECL_EXTERNAL (decl1) = 0;
13675 if ((DECL_DECLARED_INLINE_P (decl1)
13676 || DECL_TEMPLATE_INSTANTIATION (decl1))
13677 && ! DECL_INTERFACE_KNOWN (decl1))
13678 DECL_DEFER_OUTPUT (decl1) = 1;
13679 else
13680 DECL_INTERFACE_KNOWN (decl1) = 1;
13683 /* Determine the ELF visibility attribute for the function. We must not
13684 do this before calling "pushdecl", as we must allow "duplicate_decls"
13685 to merge any attributes appropriately. We also need to wait until
13686 linkage is set. */
13687 if (!DECL_CLONED_FUNCTION_P (decl1))
13688 determine_visibility (decl1);
13690 if (!processing_template_decl)
13691 maybe_instantiate_noexcept (decl1);
13693 begin_scope (sk_function_parms, decl1);
13695 ++function_depth;
13697 if (DECL_DESTRUCTOR_P (decl1)
13698 || (DECL_CONSTRUCTOR_P (decl1)
13699 && targetm.cxx.cdtor_returns_this ()))
13701 cdtor_label = build_decl (input_location,
13702 LABEL_DECL, NULL_TREE, NULL_TREE);
13703 DECL_CONTEXT (cdtor_label) = current_function_decl;
13706 start_fname_decls ();
13708 store_parm_decls (current_function_parms);
13710 return true;
13714 /* Like start_preparsed_function, except that instead of a
13715 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
13717 Returns true on success. If the DECLARATOR is not suitable
13718 for a function, we return false, which tells the parser to
13719 skip the entire function. */
13721 bool
13722 start_function (cp_decl_specifier_seq *declspecs,
13723 const cp_declarator *declarator,
13724 tree attrs)
13726 tree decl1;
13728 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
13729 if (decl1 == error_mark_node)
13730 return false;
13731 /* If the declarator is not suitable for a function definition,
13732 cause a syntax error. */
13733 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
13735 error ("invalid function declaration");
13736 return false;
13739 if (DECL_MAIN_P (decl1))
13740 /* main must return int. grokfndecl should have corrected it
13741 (and issued a diagnostic) if the user got it wrong. */
13742 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
13743 integer_type_node));
13745 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
13748 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
13749 FN. */
13751 static bool
13752 use_eh_spec_block (tree fn)
13754 return (flag_exceptions && flag_enforce_eh_specs
13755 && !processing_template_decl
13756 && !type_throw_all_p (TREE_TYPE (fn))
13757 /* We insert the EH_SPEC_BLOCK only in the original
13758 function; then, it is copied automatically to the
13759 clones. */
13760 && !DECL_CLONED_FUNCTION_P (fn)
13761 /* Implicitly-generated constructors and destructors have
13762 exception specifications. However, those specifications
13763 are the union of the possible exceptions specified by the
13764 constructors/destructors for bases and members, so no
13765 unallowed exception will ever reach this function. By
13766 not creating the EH_SPEC_BLOCK we save a little memory,
13767 and we avoid spurious warnings about unreachable
13768 code. */
13769 && !DECL_DEFAULTED_FN (fn));
13772 /* Store the parameter declarations into the current function declaration.
13773 This is called after parsing the parameter declarations, before
13774 digesting the body of the function.
13776 Also install to binding contour return value identifier, if any. */
13778 static void
13779 store_parm_decls (tree current_function_parms)
13781 tree fndecl = current_function_decl;
13782 tree parm;
13784 /* This is a chain of any other decls that came in among the parm
13785 declarations. If a parm is declared with enum {foo, bar} x;
13786 then CONST_DECLs for foo and bar are put here. */
13787 tree nonparms = NULL_TREE;
13789 if (current_function_parms)
13791 /* This case is when the function was defined with an ANSI prototype.
13792 The parms already have decls, so we need not do anything here
13793 except record them as in effect
13794 and complain if any redundant old-style parm decls were written. */
13796 tree specparms = current_function_parms;
13797 tree next;
13799 /* Must clear this because it might contain TYPE_DECLs declared
13800 at class level. */
13801 current_binding_level->names = NULL;
13803 /* If we're doing semantic analysis, then we'll call pushdecl
13804 for each of these. We must do them in reverse order so that
13805 they end in the correct forward order. */
13806 specparms = nreverse (specparms);
13808 for (parm = specparms; parm; parm = next)
13810 next = DECL_CHAIN (parm);
13811 if (TREE_CODE (parm) == PARM_DECL)
13813 if (DECL_NAME (parm) == NULL_TREE
13814 || !VOID_TYPE_P (parm))
13815 pushdecl (parm);
13816 else
13817 error ("parameter %qD declared void", parm);
13819 else
13821 /* If we find an enum constant or a type tag,
13822 put it aside for the moment. */
13823 TREE_CHAIN (parm) = NULL_TREE;
13824 nonparms = chainon (nonparms, parm);
13828 /* Get the decls in their original chain order and record in the
13829 function. This is all and only the PARM_DECLs that were
13830 pushed into scope by the loop above. */
13831 DECL_ARGUMENTS (fndecl) = getdecls ();
13833 else
13834 DECL_ARGUMENTS (fndecl) = NULL_TREE;
13836 /* Now store the final chain of decls for the arguments
13837 as the decl-chain of the current lexical scope.
13838 Put the enumerators in as well, at the front so that
13839 DECL_ARGUMENTS is not modified. */
13840 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
13842 if (use_eh_spec_block (current_function_decl))
13843 current_eh_spec_block = begin_eh_spec_block ();
13847 /* We have finished doing semantic analysis on DECL, but have not yet
13848 generated RTL for its body. Save away our current state, so that
13849 when we want to generate RTL later we know what to do. */
13851 static void
13852 save_function_data (tree decl)
13854 struct language_function *f;
13856 /* Save the language-specific per-function data so that we can
13857 get it back when we really expand this function. */
13858 gcc_assert (!DECL_PENDING_INLINE_P (decl));
13860 /* Make a copy. */
13861 f = ggc_alloc<language_function> ();
13862 memcpy (f, cp_function_chain, sizeof (struct language_function));
13863 DECL_SAVED_FUNCTION_DATA (decl) = f;
13865 /* Clear out the bits we don't need. */
13866 f->base.x_stmt_tree.x_cur_stmt_list = NULL;
13867 f->bindings = NULL;
13868 f->x_local_names = NULL;
13869 f->base.local_typedefs = NULL;
13873 /* Set the return value of the constructor (if present). */
13875 static void
13876 finish_constructor_body (void)
13878 tree val;
13879 tree exprstmt;
13881 if (targetm.cxx.cdtor_returns_this ()
13882 && (! TYPE_FOR_JAVA (current_class_type)))
13884 /* Any return from a constructor will end up here. */
13885 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
13887 val = DECL_ARGUMENTS (current_function_decl);
13888 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
13889 DECL_RESULT (current_function_decl), val);
13890 /* Return the address of the object. */
13891 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
13892 add_stmt (exprstmt);
13896 /* Do all the processing for the beginning of a destructor; set up the
13897 vtable pointers and cleanups for bases and members. */
13899 static void
13900 begin_destructor_body (void)
13902 tree compound_stmt;
13904 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
13905 issued an error message. We still want to try to process the
13906 body of the function, but initialize_vtbl_ptrs will crash if
13907 TYPE_BINFO is NULL. */
13908 if (COMPLETE_TYPE_P (current_class_type))
13910 compound_stmt = begin_compound_stmt (0);
13911 /* Make all virtual function table pointers in non-virtual base
13912 classes point to CURRENT_CLASS_TYPE's virtual function
13913 tables. */
13914 initialize_vtbl_ptrs (current_class_ptr);
13915 finish_compound_stmt (compound_stmt);
13917 /* Insert a cleanup to let the back end know that the object is dead
13918 when we exit the destructor, either normally or via exception. */
13919 tree btype = CLASSTYPE_AS_BASE (current_class_type);
13920 tree clobber = build_constructor (btype, NULL);
13921 TREE_THIS_VOLATILE (clobber) = true;
13922 tree bref = build_nop (build_reference_type (btype), current_class_ptr);
13923 bref = convert_from_reference (bref);
13924 tree exprstmt = build2 (MODIFY_EXPR, btype, bref, clobber);
13925 finish_decl_cleanup (NULL_TREE, exprstmt);
13927 /* And insert cleanups for our bases and members so that they
13928 will be properly destroyed if we throw. */
13929 push_base_cleanups ();
13933 /* At the end of every destructor we generate code to delete the object if
13934 necessary. Do that now. */
13936 static void
13937 finish_destructor_body (void)
13939 tree exprstmt;
13941 /* Any return from a destructor will end up here; that way all base
13942 and member cleanups will be run when the function returns. */
13943 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
13945 /* In a virtual destructor, we must call delete. */
13946 if (DECL_VIRTUAL_P (current_function_decl))
13948 tree if_stmt;
13949 tree virtual_size = cxx_sizeof (current_class_type);
13951 /* [class.dtor]
13953 At the point of definition of a virtual destructor (including
13954 an implicit definition), non-placement operator delete shall
13955 be looked up in the scope of the destructor's class and if
13956 found shall be accessible and unambiguous. */
13957 exprstmt = build_op_delete_call (DELETE_EXPR, current_class_ptr,
13958 virtual_size,
13959 /*global_p=*/false,
13960 /*placement=*/NULL_TREE,
13961 /*alloc_fn=*/NULL_TREE,
13962 tf_warning_or_error);
13964 if_stmt = begin_if_stmt ();
13965 finish_if_stmt_cond (build2 (BIT_AND_EXPR, integer_type_node,
13966 current_in_charge_parm,
13967 integer_one_node),
13968 if_stmt);
13969 finish_expr_stmt (exprstmt);
13970 finish_then_clause (if_stmt);
13971 finish_if_stmt (if_stmt);
13974 if (targetm.cxx.cdtor_returns_this ())
13976 tree val;
13978 val = DECL_ARGUMENTS (current_function_decl);
13979 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
13980 DECL_RESULT (current_function_decl), val);
13981 /* Return the address of the object. */
13982 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
13983 add_stmt (exprstmt);
13987 /* Do the necessary processing for the beginning of a function body, which
13988 in this case includes member-initializers, but not the catch clauses of
13989 a function-try-block. Currently, this means opening a binding level
13990 for the member-initializers (in a ctor), member cleanups (in a dtor),
13991 and capture proxies (in a lambda operator()). */
13993 tree
13994 begin_function_body (void)
13996 tree stmt;
13998 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
13999 return NULL_TREE;
14001 if (processing_template_decl)
14002 /* Do nothing now. */;
14003 else
14004 /* Always keep the BLOCK node associated with the outermost pair of
14005 curly braces of a function. These are needed for correct
14006 operation of dwarfout.c. */
14007 keep_next_level (true);
14009 stmt = begin_compound_stmt (BCS_FN_BODY);
14011 if (processing_template_decl)
14012 /* Do nothing now. */;
14013 else if (DECL_DESTRUCTOR_P (current_function_decl))
14014 begin_destructor_body ();
14016 return stmt;
14019 /* Do the processing for the end of a function body. Currently, this means
14020 closing out the cleanups for fully-constructed bases and members, and in
14021 the case of the destructor, deleting the object if desired. Again, this
14022 is only meaningful for [cd]tors, since they are the only functions where
14023 there is a significant distinction between the main body and any
14024 function catch clauses. Handling, say, main() return semantics here
14025 would be wrong, as flowing off the end of a function catch clause for
14026 main() would also need to return 0. */
14028 void
14029 finish_function_body (tree compstmt)
14031 if (compstmt == NULL_TREE)
14032 return;
14034 /* Close the block. */
14035 finish_compound_stmt (compstmt);
14037 if (processing_template_decl)
14038 /* Do nothing now. */;
14039 else if (DECL_CONSTRUCTOR_P (current_function_decl))
14040 finish_constructor_body ();
14041 else if (DECL_DESTRUCTOR_P (current_function_decl))
14042 finish_destructor_body ();
14045 /* Given a function, returns the BLOCK corresponding to the outermost level
14046 of curly braces, skipping the artificial block created for constructor
14047 initializers. */
14049 tree
14050 outer_curly_brace_block (tree fndecl)
14052 tree block = BLOCK_SUBBLOCKS (DECL_INITIAL (fndecl));
14053 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
14054 /* Skip the artificial function body block. */
14055 block = BLOCK_SUBBLOCKS (block);
14056 return block;
14059 /* If FNDECL is a class's key method, add the class to the list of
14060 keyed classes that should be emitted. */
14062 static void
14063 record_key_method_defined (tree fndecl)
14065 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
14066 && DECL_VIRTUAL_P (fndecl)
14067 && !processing_template_decl)
14069 tree fnclass = DECL_CONTEXT (fndecl);
14070 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
14071 keyed_classes = tree_cons (NULL_TREE, fnclass, keyed_classes);
14075 /* Subroutine of finish_function.
14076 Save the body of constexpr functions for possible
14077 future compile time evaluation. */
14079 static void
14080 maybe_save_function_definition (tree fun)
14082 if (!processing_template_decl
14083 && DECL_DECLARED_CONSTEXPR_P (fun)
14084 && !cp_function_chain->invalid_constexpr
14085 && !DECL_CLONED_FUNCTION_P (fun))
14086 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
14089 /* Finish up a function declaration and compile that function
14090 all the way to assembler language output. The free the storage
14091 for the function definition.
14093 FLAGS is a bitwise or of the following values:
14094 2 - INCLASS_INLINE
14095 We just finished processing the body of an in-class inline
14096 function definition. (This processing will have taken place
14097 after the class definition is complete.) */
14099 tree
14100 finish_function (int flags)
14102 tree fndecl = current_function_decl;
14103 tree fntype, ctype = NULL_TREE;
14104 int inclass_inline = (flags & 2) != 0;
14106 /* When we get some parse errors, we can end up without a
14107 current_function_decl, so cope. */
14108 if (fndecl == NULL_TREE)
14109 return error_mark_node;
14111 if (c_dialect_objc ())
14112 objc_finish_function ();
14114 gcc_assert (!defer_mark_used_calls);
14115 defer_mark_used_calls = true;
14117 record_key_method_defined (fndecl);
14119 fntype = TREE_TYPE (fndecl);
14121 /* TREE_READONLY (fndecl) = 1;
14122 This caused &foo to be of type ptr-to-const-function
14123 which then got a warning when stored in a ptr-to-function variable. */
14125 gcc_assert (building_stmt_list_p ());
14126 /* The current function is being defined, so its DECL_INITIAL should
14127 be set, and unless there's a multiple definition, it should be
14128 error_mark_node. */
14129 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
14131 /* For a cloned function, we've already got all the code we need;
14132 there's no need to add any extra bits. */
14133 if (!DECL_CLONED_FUNCTION_P (fndecl))
14135 /* Make it so that `main' always returns 0 by default. */
14136 if (DECL_MAIN_P (current_function_decl))
14137 finish_return_stmt (integer_zero_node);
14139 if (use_eh_spec_block (current_function_decl))
14140 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
14141 (TREE_TYPE (current_function_decl)),
14142 current_eh_spec_block);
14145 /* If we're saving up tree structure, tie off the function now. */
14146 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
14148 if (fn_contains_cilk_spawn_p (cfun) && !processing_template_decl)
14149 cfun->cilk_frame_decl = insert_cilk_frame (fndecl);
14151 finish_fname_decls ();
14153 /* If this function can't throw any exceptions, remember that. */
14154 if (!processing_template_decl
14155 && !cp_function_chain->can_throw
14156 && !flag_non_call_exceptions
14157 && !decl_replaceable_p (fndecl))
14158 TREE_NOTHROW (fndecl) = 1;
14160 /* This must come after expand_function_end because cleanups might
14161 have declarations (from inline functions) that need to go into
14162 this function's blocks. */
14164 /* If the current binding level isn't the outermost binding level
14165 for this function, either there is a bug, or we have experienced
14166 syntax errors and the statement tree is malformed. */
14167 if (current_binding_level->kind != sk_function_parms)
14169 /* Make sure we have already experienced errors. */
14170 gcc_assert (errorcount);
14172 /* Throw away the broken statement tree and extra binding
14173 levels. */
14174 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
14176 while (current_binding_level->kind != sk_function_parms)
14178 if (current_binding_level->kind == sk_class)
14179 pop_nested_class ();
14180 else
14181 poplevel (0, 0, 0);
14184 poplevel (1, 0, 1);
14186 /* Statements should always be full-expressions at the outermost set
14187 of curly braces for a function. */
14188 gcc_assert (stmts_are_full_exprs_p ());
14190 /* If there are no return statements in a function with auto return type,
14191 the return type is void. But if the declared type is something like
14192 auto*, this is an error. */
14193 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
14194 && TREE_TYPE (fntype) == current_function_auto_return_pattern)
14196 if (!is_auto (current_function_auto_return_pattern)
14197 && !current_function_returns_value && !current_function_returns_null)
14199 error ("no return statements in function returning %qT",
14200 current_function_auto_return_pattern);
14201 inform (input_location, "only plain %<auto%> return type can be "
14202 "deduced to %<void%>");
14204 apply_deduced_return_type (fndecl, void_type_node);
14205 fntype = TREE_TYPE (fndecl);
14208 /* Save constexpr function body before it gets munged by
14209 the NRV transformation. */
14210 maybe_save_function_definition (fndecl);
14212 /* Set up the named return value optimization, if we can. Candidate
14213 variables are selected in check_return_expr. */
14214 if (current_function_return_value)
14216 tree r = current_function_return_value;
14217 tree outer;
14219 if (r != error_mark_node
14220 /* This is only worth doing for fns that return in memory--and
14221 simpler, since we don't have to worry about promoted modes. */
14222 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
14223 /* Only allow this for variables declared in the outer scope of
14224 the function so we know that their lifetime always ends with a
14225 return; see g++.dg/opt/nrv6.C. We could be more flexible if
14226 we were to do this optimization in tree-ssa. */
14227 && (outer = outer_curly_brace_block (fndecl))
14228 && chain_member (r, BLOCK_VARS (outer)))
14229 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
14231 current_function_return_value = NULL_TREE;
14234 /* Remember that we were in class scope. */
14235 if (current_class_name)
14236 ctype = current_class_type;
14238 /* Must mark the RESULT_DECL as being in this function. */
14239 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
14241 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
14242 to the FUNCTION_DECL node itself. */
14243 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
14245 /* Save away current state, if appropriate. */
14246 if (!processing_template_decl)
14247 save_function_data (fndecl);
14249 /* Complain if there's just no return statement. */
14250 if (warn_return_type
14251 && !VOID_TYPE_P (TREE_TYPE (fntype))
14252 && !dependent_type_p (TREE_TYPE (fntype))
14253 && !current_function_returns_value && !current_function_returns_null
14254 /* Don't complain if we abort or throw. */
14255 && !current_function_returns_abnormally
14256 /* Don't complain if there's an infinite loop. */
14257 && !current_function_infinite_loop
14258 /* Don't complain if we are declared noreturn. */
14259 && !TREE_THIS_VOLATILE (fndecl)
14260 && !DECL_NAME (DECL_RESULT (fndecl))
14261 && !TREE_NO_WARNING (fndecl)
14262 /* Structor return values (if any) are set by the compiler. */
14263 && !DECL_CONSTRUCTOR_P (fndecl)
14264 && !DECL_DESTRUCTOR_P (fndecl)
14265 && targetm.warn_func_return (fndecl))
14267 warning (OPT_Wreturn_type,
14268 "no return statement in function returning non-void");
14269 TREE_NO_WARNING (fndecl) = 1;
14272 /* Store the end of the function, so that we get good line number
14273 info for the epilogue. */
14274 cfun->function_end_locus = input_location;
14276 /* Complain about parameters that are only set, but never otherwise used. */
14277 if (warn_unused_but_set_parameter
14278 && !processing_template_decl
14279 && errorcount == unused_but_set_errorcount
14280 && !DECL_CLONED_FUNCTION_P (fndecl))
14282 tree decl;
14284 for (decl = DECL_ARGUMENTS (fndecl);
14285 decl;
14286 decl = DECL_CHAIN (decl))
14287 if (TREE_USED (decl)
14288 && TREE_CODE (decl) == PARM_DECL
14289 && !DECL_READ_P (decl)
14290 && DECL_NAME (decl)
14291 && !DECL_ARTIFICIAL (decl)
14292 && !TREE_NO_WARNING (decl)
14293 && !DECL_IN_SYSTEM_HEADER (decl)
14294 && TREE_TYPE (decl) != error_mark_node
14295 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
14296 && (!CLASS_TYPE_P (TREE_TYPE (decl))
14297 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
14298 warning (OPT_Wunused_but_set_parameter,
14299 "parameter %q+D set but not used", decl);
14300 unused_but_set_errorcount = errorcount;
14303 /* Complain about locally defined typedefs that are not used in this
14304 function. */
14305 maybe_warn_unused_local_typedefs ();
14307 /* Genericize before inlining. */
14308 if (!processing_template_decl)
14310 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
14311 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
14312 cp_genericize (fndecl);
14313 /* Clear out the bits we don't need. */
14314 f->x_current_class_ptr = NULL;
14315 f->x_current_class_ref = NULL;
14316 f->x_eh_spec_block = NULL;
14317 f->x_in_charge_parm = NULL;
14318 f->x_vtt_parm = NULL;
14319 f->x_return_value = NULL;
14320 f->bindings = NULL;
14321 f->extern_decl_map = NULL;
14322 f->infinite_loops = NULL;
14324 /* Clear out the bits we don't need. */
14325 local_names = NULL;
14327 /* We're leaving the context of this function, so zap cfun. It's still in
14328 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
14329 set_cfun (NULL);
14330 current_function_decl = NULL;
14332 /* If this is an in-class inline definition, we may have to pop the
14333 bindings for the template parameters that we added in
14334 maybe_begin_member_template_processing when start_function was
14335 called. */
14336 if (inclass_inline)
14337 maybe_end_member_template_processing ();
14339 /* Leave the scope of the class. */
14340 if (ctype)
14341 pop_nested_class ();
14343 --function_depth;
14345 /* Clean up. */
14346 current_function_decl = NULL_TREE;
14348 defer_mark_used_calls = false;
14349 if (deferred_mark_used_calls)
14351 unsigned int i;
14352 tree decl;
14354 FOR_EACH_VEC_SAFE_ELT (deferred_mark_used_calls, i, decl)
14355 mark_used (decl);
14356 vec_free (deferred_mark_used_calls);
14359 return fndecl;
14362 /* Create the FUNCTION_DECL for a function definition.
14363 DECLSPECS and DECLARATOR are the parts of the declaration;
14364 they describe the return type and the name of the function,
14365 but twisted together in a fashion that parallels the syntax of C.
14367 This function creates a binding context for the function body
14368 as well as setting up the FUNCTION_DECL in current_function_decl.
14370 Returns a FUNCTION_DECL on success.
14372 If the DECLARATOR is not suitable for a function (it defines a datum
14373 instead), we return 0, which tells yyparse to report a parse error.
14375 May return void_type_node indicating that this method is actually
14376 a friend. See grokfield for more details.
14378 Came here with a `.pushlevel' .
14380 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
14381 CHANGES TO CODE IN `grokfield'. */
14383 tree
14384 grokmethod (cp_decl_specifier_seq *declspecs,
14385 const cp_declarator *declarator, tree attrlist)
14387 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
14388 &attrlist);
14390 if (fndecl == error_mark_node)
14391 return error_mark_node;
14393 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
14395 error ("invalid member function declaration");
14396 return error_mark_node;
14399 if (attrlist)
14400 cplus_decl_attributes (&fndecl, attrlist, 0);
14402 /* Pass friends other than inline friend functions back. */
14403 if (fndecl == void_type_node)
14404 return fndecl;
14406 if (DECL_IN_AGGR_P (fndecl))
14408 if (DECL_CLASS_SCOPE_P (fndecl))
14409 error ("%qD is already defined in class %qT", fndecl,
14410 DECL_CONTEXT (fndecl));
14411 return error_mark_node;
14414 check_template_shadow (fndecl);
14416 DECL_COMDAT (fndecl) = 1;
14417 DECL_DECLARED_INLINE_P (fndecl) = 1;
14418 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
14420 /* We process method specializations in finish_struct_1. */
14421 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
14423 fndecl = push_template_decl (fndecl);
14424 if (fndecl == error_mark_node)
14425 return fndecl;
14428 if (! DECL_FRIEND_P (fndecl))
14430 if (DECL_CHAIN (fndecl))
14432 fndecl = copy_node (fndecl);
14433 TREE_CHAIN (fndecl) = NULL_TREE;
14437 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
14439 DECL_IN_AGGR_P (fndecl) = 1;
14440 return fndecl;
14444 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
14445 we can lay it out later, when and if its type becomes complete.
14447 Also handle constexpr variables where the initializer involves
14448 an unlowered PTRMEM_CST because the class isn't complete yet. */
14450 void
14451 maybe_register_incomplete_var (tree var)
14453 gcc_assert (VAR_P (var));
14455 /* Keep track of variables with incomplete types. */
14456 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
14457 && DECL_EXTERNAL (var))
14459 tree inner_type = TREE_TYPE (var);
14461 while (TREE_CODE (inner_type) == ARRAY_TYPE)
14462 inner_type = TREE_TYPE (inner_type);
14463 inner_type = TYPE_MAIN_VARIANT (inner_type);
14465 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
14466 /* RTTI TD entries are created while defining the type_info. */
14467 || (TYPE_LANG_SPECIFIC (inner_type)
14468 && TYPE_BEING_DEFINED (inner_type)))
14470 incomplete_var iv = {var, inner_type};
14471 vec_safe_push (incomplete_vars, iv);
14473 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
14474 && decl_constant_var_p (var)
14475 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
14477 /* When the outermost open class is complete we can resolve any
14478 pointers-to-members. */
14479 tree context = outermost_open_class ();
14480 incomplete_var iv = {var, context};
14481 vec_safe_push (incomplete_vars, iv);
14486 /* Called when a class type (given by TYPE) is defined. If there are
14487 any existing VAR_DECLs whose type has been completed by this
14488 declaration, update them now. */
14490 void
14491 complete_vars (tree type)
14493 unsigned ix;
14494 incomplete_var *iv;
14496 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
14498 if (same_type_p (type, iv->incomplete_type))
14500 tree var = iv->decl;
14501 tree type = TREE_TYPE (var);
14503 if (TYPE_MAIN_VARIANT (strip_array_types (type))
14504 == iv->incomplete_type)
14506 /* Complete the type of the variable. The VAR_DECL itself
14507 will be laid out in expand_expr. */
14508 complete_type (type);
14509 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
14512 if (DECL_INITIAL (var)
14513 && decl_constant_var_p (var))
14514 DECL_INITIAL (var) = cplus_expand_constant (DECL_INITIAL (var));
14516 /* Remove this entry from the list. */
14517 incomplete_vars->unordered_remove (ix);
14519 else
14520 ix++;
14523 /* Check for pending declarations which may have abstract type. */
14524 complete_type_check_abstract (type);
14527 /* If DECL is of a type which needs a cleanup, build and return an
14528 expression to perform that cleanup here. Return NULL_TREE if no
14529 cleanup need be done. */
14531 tree
14532 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
14534 tree type;
14535 tree attr;
14536 tree cleanup;
14538 /* Assume no cleanup is required. */
14539 cleanup = NULL_TREE;
14541 if (error_operand_p (decl))
14542 return cleanup;
14544 /* Handle "__attribute__((cleanup))". We run the cleanup function
14545 before the destructor since the destructor is what actually
14546 terminates the lifetime of the object. */
14547 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
14548 if (attr)
14550 tree id;
14551 tree fn;
14552 tree arg;
14554 /* Get the name specified by the user for the cleanup function. */
14555 id = TREE_VALUE (TREE_VALUE (attr));
14556 /* Look up the name to find the cleanup function to call. It is
14557 important to use lookup_name here because that is what is
14558 used in c-common.c:handle_cleanup_attribute when performing
14559 initial checks on the attribute. Note that those checks
14560 include ensuring that the function found is not an overloaded
14561 function, or an object with an overloaded call operator,
14562 etc.; we can rely on the fact that the function found is an
14563 ordinary FUNCTION_DECL. */
14564 fn = lookup_name (id);
14565 arg = build_address (decl);
14566 mark_used (decl);
14567 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
14568 if (cleanup == error_mark_node)
14569 return error_mark_node;
14571 /* Handle ordinary C++ destructors. */
14572 type = TREE_TYPE (decl);
14573 if (type_build_dtor_call (type))
14575 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
14576 tree addr;
14577 tree call;
14579 if (TREE_CODE (type) == ARRAY_TYPE)
14580 addr = decl;
14581 else
14582 addr = build_address (decl);
14584 call = build_delete (TREE_TYPE (addr), addr,
14585 sfk_complete_destructor, flags, 0, complain);
14586 if (call == error_mark_node)
14587 cleanup = error_mark_node;
14588 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
14589 /* Discard the call. */;
14590 else if (cleanup)
14591 cleanup = cp_build_compound_expr (cleanup, call, complain);
14592 else
14593 cleanup = call;
14596 /* build_delete sets the location of the destructor call to the
14597 current location, even though the destructor is going to be
14598 called later, at the end of the current scope. This can lead to
14599 a "jumpy" behaviour for users of debuggers when they step around
14600 the end of the block. So let's unset the location of the
14601 destructor call instead. */
14602 if (cleanup != NULL && EXPR_P (cleanup))
14603 SET_EXPR_LOCATION (cleanup, UNKNOWN_LOCATION);
14605 if (cleanup
14606 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl))))
14607 /* Treat objects with destructors as used; the destructor may do
14608 something substantive. */
14609 mark_used (decl);
14611 return cleanup;
14615 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
14616 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
14617 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
14619 tree
14620 static_fn_type (tree memfntype)
14622 tree fntype;
14623 tree args;
14625 if (TYPE_PTRMEMFUNC_P (memfntype))
14626 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
14627 if (POINTER_TYPE_P (memfntype)
14628 || TREE_CODE (memfntype) == FUNCTION_DECL)
14629 memfntype = TREE_TYPE (memfntype);
14630 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
14631 return memfntype;
14632 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
14633 args = TYPE_ARG_TYPES (memfntype);
14634 cp_ref_qualifier rqual = type_memfn_rqual (memfntype);
14635 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
14636 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype), rqual);
14637 fntype = (cp_build_type_attribute_variant
14638 (fntype, TYPE_ATTRIBUTES (memfntype)));
14639 fntype = (build_exception_variant
14640 (fntype, TYPE_RAISES_EXCEPTIONS (memfntype)));
14641 if (TYPE_HAS_LATE_RETURN_TYPE (memfntype))
14642 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
14643 return fntype;
14646 /* DECL was originally constructed as a non-static member function,
14647 but turned out to be static. Update it accordingly. */
14649 void
14650 revert_static_member_fn (tree decl)
14652 tree stype = static_fn_type (decl);
14653 cp_cv_quals quals = type_memfn_quals (stype);
14654 cp_ref_qualifier rqual = type_memfn_rqual (stype);
14656 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
14657 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
14659 TREE_TYPE (decl) = stype;
14661 if (DECL_ARGUMENTS (decl))
14662 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
14663 DECL_STATIC_FUNCTION_P (decl) = 1;
14666 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
14667 one of the language-independent trees. */
14669 enum cp_tree_node_structure_enum
14670 cp_tree_node_structure (union lang_tree_node * t)
14672 switch (TREE_CODE (&t->generic))
14674 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
14675 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
14676 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
14677 case OVERLOAD: return TS_CP_OVERLOAD;
14678 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
14679 case PTRMEM_CST: return TS_CP_PTRMEM;
14680 case BASELINK: return TS_CP_BASELINK;
14681 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
14682 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
14683 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
14684 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
14685 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
14686 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
14687 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
14688 default: return TS_CP_GENERIC;
14692 /* Build the void_list_node (void_type_node having been created). */
14693 tree
14694 build_void_list_node (void)
14696 tree t = build_tree_list (NULL_TREE, void_type_node);
14697 return t;
14700 bool
14701 cp_missing_noreturn_ok_p (tree decl)
14703 /* A missing noreturn is ok for the `main' function. */
14704 return DECL_MAIN_P (decl);
14707 /* Return the decl used to identify the COMDAT group into which DECL should
14708 be placed. */
14710 tree
14711 cxx_comdat_group (tree decl)
14713 /* Virtual tables, construction virtual tables, and virtual table
14714 tables all go in a single COMDAT group, named after the primary
14715 virtual table. */
14716 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
14717 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
14718 /* For all other DECLs, the COMDAT group is the mangled name of the
14719 declaration itself. */
14720 else
14722 while (DECL_THUNK_P (decl))
14724 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
14725 into the same section as the target function. In that case
14726 we must return target's name. */
14727 tree target = THUNK_TARGET (decl);
14728 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
14729 && DECL_SECTION_NAME (target) != NULL
14730 && DECL_ONE_ONLY (target))
14731 decl = target;
14732 else
14733 break;
14737 return decl;
14740 /* Returns the return type for FN as written by the user, which may include
14741 a placeholder for a deduced return type. */
14743 tree
14744 fndecl_declared_return_type (tree fn)
14746 fn = STRIP_TEMPLATE (fn);
14747 if (FNDECL_USED_AUTO (fn))
14749 struct language_function *f = NULL;
14750 if (DECL_STRUCT_FUNCTION (fn))
14751 f = DECL_STRUCT_FUNCTION (fn)->language;
14752 if (f == NULL)
14753 f = DECL_SAVED_FUNCTION_DATA (fn);
14754 return f->x_auto_return_pattern;
14756 return TREE_TYPE (TREE_TYPE (fn));
14759 /* Returns true iff DECL was declared with an auto return type and it has
14760 not yet been deduced to a real type. */
14762 bool
14763 undeduced_auto_decl (tree decl)
14765 if (cxx_dialect < cxx14)
14766 return false;
14767 return type_uses_auto (TREE_TYPE (decl));
14770 /* Complain if DECL has an undeduced return type. */
14772 void
14773 require_deduced_type (tree decl)
14775 if (undeduced_auto_decl (decl))
14776 error ("use of %qD before deduction of %<auto%>", decl);
14779 #include "gt-cp-decl.h"