re PR c++/44613 (Declaring an array with non-constant length inside a switch corrupts...
[official-gcc.git] / gcc / cp / decl.c
blobd70a8656e920a82a2d63db5dae5bf8ad989a3f83
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988-2014 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 "tree.h"
34 #include "stringpool.h"
35 #include "stor-layout.h"
36 #include "varasm.h"
37 #include "attribs.h"
38 #include "calls.h"
39 #include "flags.h"
40 #include "cp-tree.h"
41 #include "tree-iterator.h"
42 #include "tree-inline.h"
43 #include "decl.h"
44 #include "intl.h"
45 #include "toplev.h"
46 #include "hashtab.h"
47 #include "tm_p.h"
48 #include "target.h"
49 #include "c-family/c-common.h"
50 #include "c-family/c-objc.h"
51 #include "c-family/c-pragma.h"
52 #include "c-family/c-target.h"
53 #include "c-family/c-ubsan.h"
54 #include "diagnostic.h"
55 #include "intl.h"
56 #include "debug.h"
57 #include "timevar.h"
58 #include "pointer-set.h"
59 #include "splay-tree.h"
60 #include "plugin.h"
61 #include "cgraph.h"
62 #include "cilk.h"
64 /* Possible cases of bad specifiers type used by bad_specifiers. */
65 enum bad_spec_place {
66 BSP_VAR, /* variable */
67 BSP_PARM, /* parameter */
68 BSP_TYPE, /* type */
69 BSP_FIELD /* field */
72 static tree grokparms (tree parmlist, tree *);
73 static const char *redeclaration_error_message (tree, tree);
75 static int decl_jump_unsafe (tree);
76 static void require_complete_types_for_parms (tree);
77 static int ambi_op_p (enum tree_code);
78 static int unary_op_p (enum tree_code);
79 static void push_local_name (tree);
80 static tree grok_reference_init (tree, tree, tree, int);
81 static tree grokvardecl (tree, tree, const cp_decl_specifier_seq *,
82 int, int, tree);
83 static int check_static_variable_definition (tree, tree);
84 static void record_unknown_type (tree, const char *);
85 static tree builtin_function_1 (tree, tree, bool);
86 static int member_function_or_else (tree, tree, enum overload_flags);
87 static void bad_specifiers (tree, enum bad_spec_place, int, int, int, int,
88 int);
89 static void check_for_uninitialized_const_var (tree);
90 static hashval_t typename_hash (const void *);
91 static int typename_compare (const void *, const void *);
92 static tree local_variable_p_walkfn (tree *, int *, void *);
93 static tree record_builtin_java_type (const char *, int);
94 static const char *tag_name (enum tag_types);
95 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
96 static int walk_namespaces_r (tree, walk_namespaces_fn, void *);
97 static void maybe_deduce_size_from_array_init (tree, tree);
98 static void layout_var_decl (tree);
99 static tree check_initializer (tree, tree, int, vec<tree, va_gc> **);
100 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
101 static void save_function_data (tree);
102 static void copy_type_enum (tree , tree);
103 static void check_function_type (tree, tree);
104 static void finish_constructor_body (void);
105 static void begin_destructor_body (void);
106 static void finish_destructor_body (void);
107 static void record_key_method_defined (tree);
108 static tree create_array_type_for_decl (tree, tree, tree);
109 static tree get_atexit_node (void);
110 static tree get_dso_handle_node (void);
111 static tree start_cleanup_fn (void);
112 static void end_cleanup_fn (void);
113 static tree cp_make_fname_decl (location_t, tree, int);
114 static void initialize_predefined_identifiers (void);
115 static tree check_special_function_return_type
116 (special_function_kind, tree, tree);
117 static tree push_cp_library_fn (enum tree_code, tree, int);
118 static tree build_cp_library_fn (tree, enum tree_code, tree, int);
119 static void store_parm_decls (tree);
120 static void initialize_local_var (tree, tree);
121 static void expand_static_init (tree, tree);
123 /* The following symbols are subsumed in the cp_global_trees array, and
124 listed here individually for documentation purposes.
126 C++ extensions
127 tree wchar_decl_node;
129 tree vtable_entry_type;
130 tree delta_type_node;
131 tree __t_desc_type_node;
133 tree class_type_node;
134 tree unknown_type_node;
136 Array type `vtable_entry_type[]'
138 tree vtbl_type_node;
139 tree vtbl_ptr_type_node;
141 Namespaces,
143 tree std_node;
144 tree abi_node;
146 A FUNCTION_DECL which can call `abort'. Not necessarily the
147 one that the user will declare, but sufficient to be called
148 by routines that want to abort the program.
150 tree abort_fndecl;
152 The FUNCTION_DECL for the default `::operator delete'.
154 tree global_delete_fndecl;
156 Used by RTTI
157 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
158 tree tinfo_var_id; */
160 tree cp_global_trees[CPTI_MAX];
162 /* Indicates that there is a type value in some namespace, although
163 that is not necessarily in scope at the moment. */
165 tree global_type_node;
167 /* The node that holds the "name" of the global scope. */
168 tree global_scope_name;
170 #define local_names cp_function_chain->x_local_names
172 /* A list of objects which have constructors or destructors
173 which reside in the global scope. The decl is stored in
174 the TREE_VALUE slot and the initializer is stored
175 in the TREE_PURPOSE slot. */
176 tree static_aggregates;
178 /* Like static_aggregates, but for thread_local variables. */
179 tree tls_aggregates;
181 /* -- end of C++ */
183 /* A node for the integer constant 2. */
185 tree integer_two_node;
187 /* Used only for jumps to as-yet undefined labels, since jumps to
188 defined labels can have their validity checked immediately. */
190 struct GTY((chain_next ("%h.next"))) named_label_use_entry {
191 struct named_label_use_entry *next;
192 /* The binding level to which this entry is *currently* attached.
193 This is initially the binding level in which the goto appeared,
194 but is modified as scopes are closed. */
195 cp_binding_level *binding_level;
196 /* The head of the names list that was current when the goto appeared,
197 or the inner scope popped. These are the decls that will *not* be
198 skipped when jumping to the label. */
199 tree names_in_scope;
200 /* The location of the goto, for error reporting. */
201 location_t o_goto_locus;
202 /* True if an OpenMP structured block scope has been closed since
203 the goto appeared. This means that the branch from the label will
204 illegally exit an OpenMP scope. */
205 bool in_omp_scope;
208 /* A list of all LABEL_DECLs in the function that have names. Here so
209 we can clear out their names' definitions at the end of the
210 function, and so we can check the validity of jumps to these labels. */
212 struct GTY(()) named_label_entry {
213 /* The decl itself. */
214 tree label_decl;
216 /* The binding level to which the label is *currently* attached.
217 This is initially set to the binding level in which the label
218 is defined, but is modified as scopes are closed. */
219 cp_binding_level *binding_level;
220 /* The head of the names list that was current when the label was
221 defined, or the inner scope popped. These are the decls that will
222 be skipped when jumping to the label. */
223 tree names_in_scope;
224 /* A vector of all decls from all binding levels that would be
225 crossed by a backward branch to the label. */
226 vec<tree, va_gc> *bad_decls;
228 /* A list of uses of the label, before the label is defined. */
229 struct named_label_use_entry *uses;
231 /* The following bits are set after the label is defined, and are
232 updated as scopes are popped. They indicate that a backward jump
233 to the label will illegally enter a scope of the given flavor. */
234 bool in_try_scope;
235 bool in_catch_scope;
236 bool in_omp_scope;
239 #define named_labels cp_function_chain->x_named_labels
241 /* The number of function bodies which we are currently processing.
242 (Zero if we are at namespace scope, one inside the body of a
243 function, two inside the body of a function in a local class, etc.) */
244 int function_depth;
246 /* To avoid unwanted recursion, finish_function defers all mark_used calls
247 encountered during its execution until it finishes. */
248 bool defer_mark_used_calls;
249 vec<tree, va_gc> *deferred_mark_used_calls;
251 /* States indicating how grokdeclarator() should handle declspecs marked
252 with __attribute__((deprecated)). An object declared as
253 __attribute__((deprecated)) suppresses warnings of uses of other
254 deprecated items. */
255 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
258 /* A list of VAR_DECLs whose type was incomplete at the time the
259 variable was declared. */
261 typedef struct GTY(()) incomplete_var_d {
262 tree decl;
263 tree incomplete_type;
264 } incomplete_var;
267 static GTY(()) vec<incomplete_var, va_gc> *incomplete_vars;
269 /* Returns the kind of template specialization we are currently
270 processing, given that it's declaration contained N_CLASS_SCOPES
271 explicit scope qualifications. */
273 tmpl_spec_kind
274 current_tmpl_spec_kind (int n_class_scopes)
276 int n_template_parm_scopes = 0;
277 int seen_specialization_p = 0;
278 int innermost_specialization_p = 0;
279 cp_binding_level *b;
281 /* Scan through the template parameter scopes. */
282 for (b = current_binding_level;
283 b->kind == sk_template_parms;
284 b = b->level_chain)
286 /* If we see a specialization scope inside a parameter scope,
287 then something is wrong. That corresponds to a declaration
288 like:
290 template <class T> template <> ...
292 which is always invalid since [temp.expl.spec] forbids the
293 specialization of a class member template if the enclosing
294 class templates are not explicitly specialized as well. */
295 if (b->explicit_spec_p)
297 if (n_template_parm_scopes == 0)
298 innermost_specialization_p = 1;
299 else
300 seen_specialization_p = 1;
302 else if (seen_specialization_p == 1)
303 return tsk_invalid_member_spec;
305 ++n_template_parm_scopes;
308 /* Handle explicit instantiations. */
309 if (processing_explicit_instantiation)
311 if (n_template_parm_scopes != 0)
312 /* We've seen a template parameter list during an explicit
313 instantiation. For example:
315 template <class T> template void f(int);
317 This is erroneous. */
318 return tsk_invalid_expl_inst;
319 else
320 return tsk_expl_inst;
323 if (n_template_parm_scopes < n_class_scopes)
324 /* We've not seen enough template headers to match all the
325 specialized classes present. For example:
327 template <class T> void R<T>::S<T>::f(int);
329 This is invalid; there needs to be one set of template
330 parameters for each class. */
331 return tsk_insufficient_parms;
332 else if (n_template_parm_scopes == n_class_scopes)
333 /* We're processing a non-template declaration (even though it may
334 be a member of a template class.) For example:
336 template <class T> void S<T>::f(int);
338 The `class T' matches the `S<T>', leaving no template headers
339 corresponding to the `f'. */
340 return tsk_none;
341 else if (n_template_parm_scopes > n_class_scopes + 1)
342 /* We've got too many template headers. For example:
344 template <> template <class T> void f (T);
346 There need to be more enclosing classes. */
347 return tsk_excessive_parms;
348 else
349 /* This must be a template. It's of the form:
351 template <class T> template <class U> void S<T>::f(U);
353 This is a specialization if the innermost level was a
354 specialization; otherwise it's just a definition of the
355 template. */
356 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
359 /* Exit the current scope. */
361 void
362 finish_scope (void)
364 poplevel (0, 0, 0);
367 /* When a label goes out of scope, check to see if that label was used
368 in a valid manner, and issue any appropriate warnings or errors. */
370 static void
371 pop_label (tree label, tree old_value)
373 if (!processing_template_decl)
375 if (DECL_INITIAL (label) == NULL_TREE)
377 location_t location;
379 error ("label %q+D used but not defined", label);
380 location = input_location;
381 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
382 /* Avoid crashing later. */
383 define_label (location, DECL_NAME (label));
385 else
386 warn_for_unused_label (label);
389 SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), old_value);
392 /* At the end of a function, all labels declared within the function
393 go out of scope. BLOCK is the top-level block for the
394 function. */
396 static int
397 pop_labels_1 (void **slot, void *data)
399 struct named_label_entry *ent = (struct named_label_entry *) *slot;
400 tree block = (tree) data;
402 pop_label (ent->label_decl, NULL_TREE);
404 /* Put the labels into the "variables" of the top-level block,
405 so debugger can see them. */
406 DECL_CHAIN (ent->label_decl) = BLOCK_VARS (block);
407 BLOCK_VARS (block) = ent->label_decl;
409 htab_clear_slot (named_labels, slot);
411 return 1;
414 static void
415 pop_labels (tree block)
417 if (named_labels)
419 htab_traverse (named_labels, pop_labels_1, block);
420 named_labels = NULL;
424 /* At the end of a block with local labels, restore the outer definition. */
426 static void
427 pop_local_label (tree label, tree old_value)
429 struct named_label_entry dummy;
430 void **slot;
432 pop_label (label, old_value);
434 dummy.label_decl = label;
435 slot = htab_find_slot (named_labels, &dummy, NO_INSERT);
436 htab_clear_slot (named_labels, slot);
439 /* The following two routines are used to interface to Objective-C++.
440 The binding level is purposely treated as an opaque type. */
442 void *
443 objc_get_current_scope (void)
445 return current_binding_level;
448 /* The following routine is used by the NeXT-style SJLJ exceptions;
449 variables get marked 'volatile' so as to not be clobbered by
450 _setjmp()/_longjmp() calls. All variables in the current scope,
451 as well as parent scopes up to (but not including) ENCLOSING_BLK
452 shall be thusly marked. */
454 void
455 objc_mark_locals_volatile (void *enclosing_blk)
457 cp_binding_level *scope;
459 for (scope = current_binding_level;
460 scope && scope != enclosing_blk;
461 scope = scope->level_chain)
463 tree decl;
465 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
466 objc_volatilize_decl (decl);
468 /* Do not climb up past the current function. */
469 if (scope->kind == sk_function_parms)
470 break;
474 /* Update data for defined and undefined labels when leaving a scope. */
476 static int
477 poplevel_named_label_1 (void **slot, void *data)
479 struct named_label_entry *ent = (struct named_label_entry *) *slot;
480 cp_binding_level *bl = (cp_binding_level *) data;
481 cp_binding_level *obl = bl->level_chain;
483 if (ent->binding_level == bl)
485 tree decl;
487 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
488 TREE_LISTs representing OVERLOADs, so be careful. */
489 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
490 ? DECL_CHAIN (decl)
491 : TREE_CHAIN (decl)))
492 if (decl_jump_unsafe (decl))
493 vec_safe_push (ent->bad_decls, decl);
495 ent->binding_level = obl;
496 ent->names_in_scope = obl->names;
497 switch (bl->kind)
499 case sk_try:
500 ent->in_try_scope = true;
501 break;
502 case sk_catch:
503 ent->in_catch_scope = true;
504 break;
505 case sk_omp:
506 ent->in_omp_scope = true;
507 break;
508 default:
509 break;
512 else if (ent->uses)
514 struct named_label_use_entry *use;
516 for (use = ent->uses; use ; use = use->next)
517 if (use->binding_level == bl)
519 use->binding_level = obl;
520 use->names_in_scope = obl->names;
521 if (bl->kind == sk_omp)
522 use->in_omp_scope = true;
526 return 1;
529 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
530 when errors were reported, except for -Werror-unused-but-set-*. */
531 static int unused_but_set_errorcount;
533 /* Exit a binding level.
534 Pop the level off, and restore the state of the identifier-decl mappings
535 that were in effect when this level was entered.
537 If KEEP == 1, this level had explicit declarations, so
538 and create a "block" (a BLOCK node) for the level
539 to record its declarations and subblocks for symbol table output.
541 If FUNCTIONBODY is nonzero, this level is the body of a function,
542 so create a block as if KEEP were set and also clear out all
543 label names.
545 If REVERSE is nonzero, reverse the order of decls before putting
546 them into the BLOCK. */
548 tree
549 poplevel (int keep, int reverse, int functionbody)
551 tree link;
552 /* The chain of decls was accumulated in reverse order.
553 Put it into forward order, just for cleanliness. */
554 tree decls;
555 tree subblocks;
556 tree block;
557 tree decl;
558 int leaving_for_scope;
559 scope_kind kind;
560 unsigned ix;
561 cp_label_binding *label_bind;
563 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
564 restart:
566 block = NULL_TREE;
568 gcc_assert (current_binding_level->kind != sk_class);
570 if (current_binding_level->kind == sk_cleanup)
571 functionbody = 0;
572 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
574 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
576 /* We used to use KEEP == 2 to indicate that the new block should go
577 at the beginning of the list of blocks at this binding level,
578 rather than the end. This hack is no longer used. */
579 gcc_assert (keep == 0 || keep == 1);
581 if (current_binding_level->keep)
582 keep = 1;
584 /* Any uses of undefined labels, and any defined labels, now operate
585 under constraints of next binding contour. */
586 if (cfun && !functionbody && named_labels)
587 htab_traverse (named_labels, poplevel_named_label_1,
588 current_binding_level);
590 /* Get the decls in the order they were written.
591 Usually current_binding_level->names is in reverse order.
592 But parameter decls were previously put in forward order. */
594 if (reverse)
595 current_binding_level->names
596 = decls = nreverse (current_binding_level->names);
597 else
598 decls = current_binding_level->names;
600 /* If there were any declarations or structure tags in that level,
601 or if this level is a function body,
602 create a BLOCK to record them for the life of this function. */
603 block = NULL_TREE;
604 if (keep == 1 || functionbody)
605 block = make_node (BLOCK);
606 if (block != NULL_TREE)
608 BLOCK_VARS (block) = decls;
609 BLOCK_SUBBLOCKS (block) = subblocks;
612 /* In each subblock, record that this is its superior. */
613 if (keep >= 0)
614 for (link = subblocks; link; link = BLOCK_CHAIN (link))
615 BLOCK_SUPERCONTEXT (link) = block;
617 /* We still support the old for-scope rules, whereby the variables
618 in a for-init statement were in scope after the for-statement
619 ended. We only use the new rules if flag_new_for_scope is
620 nonzero. */
621 leaving_for_scope
622 = current_binding_level->kind == sk_for && flag_new_for_scope == 1;
624 /* Before we remove the declarations first check for unused variables. */
625 if ((warn_unused_variable || warn_unused_but_set_variable)
626 && !processing_template_decl)
627 for (tree d = getdecls (); d; d = TREE_CHAIN (d))
629 /* There are cases where D itself is a TREE_LIST. See in
630 push_local_binding where the list of decls returned by
631 getdecls is built. */
632 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
633 // See through references for improved -Wunused-variable (PR 38958).
634 tree type = non_reference (TREE_TYPE (decl));
635 if (VAR_P (decl)
636 && (! TREE_USED (decl) || !DECL_READ_P (decl))
637 && ! DECL_IN_SYSTEM_HEADER (decl)
638 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl)
639 && type != error_mark_node
640 && (!CLASS_TYPE_P (type)
641 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
642 || lookup_attribute ("warn_unused",
643 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
645 if (! TREE_USED (decl))
646 warning (OPT_Wunused_variable, "unused variable %q+D", decl);
647 else if (DECL_CONTEXT (decl) == current_function_decl
648 // For -Wunused-but-set-variable leave references alone.
649 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
650 && errorcount == unused_but_set_errorcount)
652 warning (OPT_Wunused_but_set_variable,
653 "variable %q+D set but not used", decl);
654 unused_but_set_errorcount = errorcount;
659 /* Remove declarations for all the DECLs in this level. */
660 for (link = decls; link; link = TREE_CHAIN (link))
662 if (leaving_for_scope && VAR_P (link)
663 /* It's hard to make this ARM compatibility hack play nicely with
664 lambdas, and it really isn't necessary in C++11 mode. */
665 && cxx_dialect < cxx11
666 && DECL_NAME (link))
668 tree name = DECL_NAME (link);
669 cxx_binding *ob;
670 tree ns_binding;
672 ob = outer_binding (name,
673 IDENTIFIER_BINDING (name),
674 /*class_p=*/true);
675 if (!ob)
676 ns_binding = IDENTIFIER_NAMESPACE_VALUE (name);
677 else
678 ns_binding = NULL_TREE;
680 if (ob && ob->scope == current_binding_level->level_chain)
681 /* We have something like:
683 int i;
684 for (int i; ;);
686 and we are leaving the `for' scope. There's no reason to
687 keep the binding of the inner `i' in this case. */
688 pop_binding (name, link);
689 else if ((ob && (TREE_CODE (ob->value) == TYPE_DECL))
690 || (ns_binding && TREE_CODE (ns_binding) == TYPE_DECL))
691 /* Here, we have something like:
693 typedef int I;
695 void f () {
696 for (int I; ;);
699 We must pop the for-scope binding so we know what's a
700 type and what isn't. */
701 pop_binding (name, link);
702 else
704 /* Mark this VAR_DECL as dead so that we can tell we left it
705 there only for backward compatibility. */
706 DECL_DEAD_FOR_LOCAL (link) = 1;
708 /* Keep track of what should have happened when we
709 popped the binding. */
710 if (ob && ob->value)
712 SET_DECL_SHADOWED_FOR_VAR (link, ob->value);
713 DECL_HAS_SHADOWED_FOR_VAR_P (link) = 1;
716 /* Add it to the list of dead variables in the next
717 outermost binding to that we can remove these when we
718 leave that binding. */
719 vec_safe_push (
720 current_binding_level->level_chain->dead_vars_from_for,
721 link);
723 /* Although we don't pop the cxx_binding, we do clear
724 its SCOPE since the scope is going away now. */
725 IDENTIFIER_BINDING (name)->scope
726 = current_binding_level->level_chain;
729 else
731 tree name;
733 /* Remove the binding. */
734 decl = link;
736 if (TREE_CODE (decl) == TREE_LIST)
737 decl = TREE_VALUE (decl);
738 name = decl;
740 if (TREE_CODE (name) == OVERLOAD)
741 name = OVL_FUNCTION (name);
743 gcc_assert (DECL_P (name));
744 pop_binding (DECL_NAME (name), decl);
748 /* Remove declarations for any `for' variables from inner scopes
749 that we kept around. */
750 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->dead_vars_from_for,
751 ix, decl)
752 pop_binding (DECL_NAME (decl), decl);
754 /* Restore the IDENTIFIER_TYPE_VALUEs. */
755 for (link = current_binding_level->type_shadowed;
756 link; link = TREE_CHAIN (link))
757 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
759 /* Restore the IDENTIFIER_LABEL_VALUEs for local labels. */
760 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->shadowed_labels,
761 ix, label_bind)
762 pop_local_label (label_bind->label, label_bind->prev_value);
764 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
765 list if a `using' declaration put them there. The debugging
766 back ends won't understand OVERLOAD, so we remove them here.
767 Because the BLOCK_VARS are (temporarily) shared with
768 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
769 popped all the bindings. */
770 if (block)
772 tree* d;
774 for (d = &BLOCK_VARS (block); *d; )
776 if (TREE_CODE (*d) == TREE_LIST)
777 *d = TREE_CHAIN (*d);
778 else
779 d = &DECL_CHAIN (*d);
783 /* If the level being exited is the top level of a function,
784 check over all the labels. */
785 if (functionbody)
787 /* Since this is the top level block of a function, the vars are
788 the function's parameters. Don't leave them in the BLOCK
789 because they are found in the FUNCTION_DECL instead. */
790 BLOCK_VARS (block) = 0;
791 pop_labels (block);
794 kind = current_binding_level->kind;
795 if (kind == sk_cleanup)
797 tree stmt;
799 /* If this is a temporary binding created for a cleanup, then we'll
800 have pushed a statement list level. Pop that, create a new
801 BIND_EXPR for the block, and insert it into the stream. */
802 stmt = pop_stmt_list (current_binding_level->statement_list);
803 stmt = c_build_bind_expr (input_location, block, stmt);
804 add_stmt (stmt);
807 leave_scope ();
808 if (functionbody)
810 /* The current function is being defined, so its DECL_INITIAL
811 should be error_mark_node. */
812 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
813 DECL_INITIAL (current_function_decl) = block;
815 else if (block)
816 current_binding_level->blocks
817 = block_chainon (current_binding_level->blocks, block);
819 /* If we did not make a block for the level just exited,
820 any blocks made for inner levels
821 (since they cannot be recorded as subblocks in that level)
822 must be carried forward so they will later become subblocks
823 of something else. */
824 else if (subblocks)
825 current_binding_level->blocks
826 = block_chainon (current_binding_level->blocks, subblocks);
828 /* Each and every BLOCK node created here in `poplevel' is important
829 (e.g. for proper debugging information) so if we created one
830 earlier, mark it as "used". */
831 if (block)
832 TREE_USED (block) = 1;
834 /* All temporary bindings created for cleanups are popped silently. */
835 if (kind == sk_cleanup)
836 goto restart;
838 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
839 return block;
842 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
843 itself, calling F for each. The DATA is passed to F as well. */
845 static int
846 walk_namespaces_r (tree name_space, walk_namespaces_fn f, void* data)
848 int result = 0;
849 tree current = NAMESPACE_LEVEL (name_space)->namespaces;
851 result |= (*f) (name_space, data);
853 for (; current; current = DECL_CHAIN (current))
854 result |= walk_namespaces_r (current, f, data);
856 return result;
859 /* Walk all the namespaces, calling F for each. The DATA is passed to
860 F as well. */
863 walk_namespaces (walk_namespaces_fn f, void* data)
865 return walk_namespaces_r (global_namespace, f, data);
868 /* Call wrapup_globals_declarations for the globals in NAMESPACE. If
869 DATA is non-NULL, this is the last time we will call
870 wrapup_global_declarations for this NAMESPACE. */
873 wrapup_globals_for_namespace (tree name_space, void* data)
875 cp_binding_level *level = NAMESPACE_LEVEL (name_space);
876 vec<tree, va_gc> *statics = level->static_decls;
877 tree *vec = statics->address ();
878 int len = statics->length ();
879 int last_time = (data != 0);
881 if (last_time)
883 check_global_declarations (vec, len);
884 emit_debug_global_declarations (vec, len);
885 return 0;
888 /* Write out any globals that need to be output. */
889 return wrapup_global_declarations (vec, len);
893 /* In C++, you don't have to write `struct S' to refer to `S'; you
894 can just use `S'. We accomplish this by creating a TYPE_DECL as
895 if the user had written `typedef struct S S'. Create and return
896 the TYPE_DECL for TYPE. */
898 tree
899 create_implicit_typedef (tree name, tree type)
901 tree decl;
903 decl = build_decl (input_location, TYPE_DECL, name, type);
904 DECL_ARTIFICIAL (decl) = 1;
905 /* There are other implicit type declarations, like the one *within*
906 a class that allows you to write `S::S'. We must distinguish
907 amongst these. */
908 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
909 TYPE_NAME (type) = decl;
910 TYPE_STUB_DECL (type) = decl;
912 return decl;
915 /* Remember a local name for name-mangling purposes. */
917 static void
918 push_local_name (tree decl)
920 size_t i, nelts;
921 tree t, name;
923 timevar_start (TV_NAME_LOOKUP);
925 name = DECL_NAME (decl);
927 nelts = vec_safe_length (local_names);
928 for (i = 0; i < nelts; i++)
930 t = (*local_names)[i];
931 if (DECL_NAME (t) == name)
933 if (!DECL_LANG_SPECIFIC (decl))
934 retrofit_lang_decl (decl);
935 DECL_LANG_SPECIFIC (decl)->u.base.u2sel = 1;
936 if (DECL_DISCRIMINATOR_SET_P (t))
937 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
938 else
939 DECL_DISCRIMINATOR (decl) = 1;
941 (*local_names)[i] = decl;
942 timevar_stop (TV_NAME_LOOKUP);
943 return;
947 vec_safe_push (local_names, decl);
948 timevar_stop (TV_NAME_LOOKUP);
951 /* Subroutine of duplicate_decls: return truthvalue of whether
952 or not types of these decls match.
954 For C++, we must compare the parameter list so that `int' can match
955 `int&' in a parameter position, but `int&' is not confused with
956 `const int&'. */
959 decls_match (tree newdecl, tree olddecl)
961 int types_match;
963 if (newdecl == olddecl)
964 return 1;
966 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
967 /* If the two DECLs are not even the same kind of thing, we're not
968 interested in their types. */
969 return 0;
971 gcc_assert (DECL_P (newdecl));
973 if (TREE_CODE (newdecl) == FUNCTION_DECL)
975 tree f1 = TREE_TYPE (newdecl);
976 tree f2 = TREE_TYPE (olddecl);
977 tree p1 = TYPE_ARG_TYPES (f1);
978 tree p2 = TYPE_ARG_TYPES (f2);
979 tree r2;
981 /* Specializations of different templates are different functions
982 even if they have the same type. */
983 tree t1 = (DECL_USE_TEMPLATE (newdecl)
984 ? DECL_TI_TEMPLATE (newdecl)
985 : NULL_TREE);
986 tree t2 = (DECL_USE_TEMPLATE (olddecl)
987 ? DECL_TI_TEMPLATE (olddecl)
988 : NULL_TREE);
989 if (t1 != t2)
990 return 0;
992 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
993 && ! (DECL_EXTERN_C_P (newdecl)
994 && DECL_EXTERN_C_P (olddecl)))
995 return 0;
997 /* A new declaration doesn't match a built-in one unless it
998 is also extern "C". */
999 if (DECL_IS_BUILTIN (olddecl)
1000 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
1001 return 0;
1003 if (TREE_CODE (f1) != TREE_CODE (f2))
1004 return 0;
1006 /* A declaration with deduced return type should use its pre-deduction
1007 type for declaration matching. */
1008 r2 = fndecl_declared_return_type (olddecl);
1010 if (same_type_p (TREE_TYPE (f1), r2))
1012 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
1013 && (DECL_BUILT_IN (olddecl)
1014 #ifndef NO_IMPLICIT_EXTERN_C
1015 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
1016 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
1017 #endif
1020 types_match = self_promoting_args_p (p1);
1021 if (p1 == void_list_node)
1022 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1024 #ifndef NO_IMPLICIT_EXTERN_C
1025 else if (!prototype_p (f1)
1026 && (DECL_EXTERN_C_P (olddecl)
1027 && DECL_IN_SYSTEM_HEADER (olddecl)
1028 && !DECL_CLASS_SCOPE_P (olddecl))
1029 && (DECL_EXTERN_C_P (newdecl)
1030 && DECL_IN_SYSTEM_HEADER (newdecl)
1031 && !DECL_CLASS_SCOPE_P (newdecl)))
1033 types_match = self_promoting_args_p (p2);
1034 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1036 #endif
1037 else
1038 types_match =
1039 compparms (p1, p2)
1040 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
1041 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
1042 || comp_type_attributes (TREE_TYPE (newdecl),
1043 TREE_TYPE (olddecl)) != 0);
1045 else
1046 types_match = 0;
1048 /* The decls dont match if they correspond to two different versions
1049 of the same function. Disallow extern "C" functions to be
1050 versions for now. */
1051 if (types_match
1052 && !DECL_EXTERN_C_P (newdecl)
1053 && !DECL_EXTERN_C_P (olddecl)
1054 && targetm.target_option.function_versions (newdecl, olddecl))
1056 /* Mark functions as versions if necessary. Modify the mangled decl
1057 name if necessary. */
1058 if (DECL_FUNCTION_VERSIONED (newdecl)
1059 && DECL_FUNCTION_VERSIONED (olddecl))
1060 return 0;
1061 if (!DECL_FUNCTION_VERSIONED (newdecl))
1063 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1064 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1065 mangle_decl (newdecl);
1067 if (!DECL_FUNCTION_VERSIONED (olddecl))
1069 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1070 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1071 mangle_decl (olddecl);
1073 record_function_versions (olddecl, newdecl);
1074 return 0;
1077 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1079 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl))
1080 != TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)))
1081 return 0;
1083 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1084 DECL_TEMPLATE_PARMS (olddecl)))
1085 return 0;
1087 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1088 types_match = same_type_p (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl)),
1089 TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl)));
1090 else
1091 types_match = decls_match (DECL_TEMPLATE_RESULT (olddecl),
1092 DECL_TEMPLATE_RESULT (newdecl));
1094 else
1096 /* Need to check scope for variable declaration (VAR_DECL).
1097 For typedef (TYPE_DECL), scope is ignored. */
1098 if (VAR_P (newdecl)
1099 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1100 /* [dcl.link]
1101 Two declarations for an object with C language linkage
1102 with the same name (ignoring the namespace that qualify
1103 it) that appear in different namespace scopes refer to
1104 the same object. */
1105 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1106 return 0;
1108 if (TREE_TYPE (newdecl) == error_mark_node)
1109 types_match = TREE_TYPE (olddecl) == error_mark_node;
1110 else if (TREE_TYPE (olddecl) == NULL_TREE)
1111 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1112 else if (TREE_TYPE (newdecl) == NULL_TREE)
1113 types_match = 0;
1114 else
1115 types_match = comptypes (TREE_TYPE (newdecl),
1116 TREE_TYPE (olddecl),
1117 COMPARE_REDECLARATION);
1120 return types_match;
1123 /* If NEWDECL is `static' and an `extern' was seen previously,
1124 warn about it. OLDDECL is the previous declaration.
1126 Note that this does not apply to the C++ case of declaring
1127 a variable `extern const' and then later `const'.
1129 Don't complain about built-in functions, since they are beyond
1130 the user's control. */
1132 void
1133 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1135 if (TREE_CODE (newdecl) == TYPE_DECL
1136 || TREE_CODE (newdecl) == TEMPLATE_DECL
1137 || TREE_CODE (newdecl) == CONST_DECL
1138 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1139 return;
1141 /* Don't get confused by static member functions; that's a different
1142 use of `static'. */
1143 if (TREE_CODE (newdecl) == FUNCTION_DECL
1144 && DECL_STATIC_FUNCTION_P (newdecl))
1145 return;
1147 /* If the old declaration was `static', or the new one isn't, then
1148 everything is OK. */
1149 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1150 return;
1152 /* It's OK to declare a builtin function as `static'. */
1153 if (TREE_CODE (olddecl) == FUNCTION_DECL
1154 && DECL_ARTIFICIAL (olddecl))
1155 return;
1157 if (permerror (input_location,
1158 "%qD was declared %<extern%> and later %<static%>", newdecl))
1159 inform (input_location, "previous declaration of %q+D", olddecl);
1162 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1163 function templates. If their exception specifications do not
1164 match, issue a diagnostic. */
1166 static void
1167 check_redeclaration_exception_specification (tree new_decl,
1168 tree old_decl)
1170 tree new_type;
1171 tree old_type;
1172 tree new_exceptions;
1173 tree old_exceptions;
1175 new_type = TREE_TYPE (new_decl);
1176 new_exceptions = TYPE_RAISES_EXCEPTIONS (new_type);
1177 old_type = TREE_TYPE (old_decl);
1178 old_exceptions = TYPE_RAISES_EXCEPTIONS (old_type);
1180 /* [except.spec]
1182 If any declaration of a function has an exception-specification,
1183 all declarations, including the definition and an explicit
1184 specialization, of that function shall have an
1185 exception-specification with the same set of type-ids. */
1186 if ((pedantic || ! DECL_IN_SYSTEM_HEADER (old_decl))
1187 && ! DECL_IS_BUILTIN (old_decl)
1188 && flag_exceptions
1189 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1191 error ("declaration of %qF has a different exception specifier",
1192 new_decl);
1193 error ("from previous declaration %q+F", old_decl);
1197 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1198 Otherwise issue diagnostics. */
1200 static bool
1201 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1203 old_decl = STRIP_TEMPLATE (old_decl);
1204 new_decl = STRIP_TEMPLATE (new_decl);
1205 if (!VAR_OR_FUNCTION_DECL_P (old_decl)
1206 || !VAR_OR_FUNCTION_DECL_P (new_decl))
1207 return true;
1208 if (DECL_DECLARED_CONSTEXPR_P (old_decl)
1209 == DECL_DECLARED_CONSTEXPR_P (new_decl))
1210 return true;
1211 if (TREE_CODE (old_decl) == FUNCTION_DECL)
1213 if (DECL_BUILT_IN (old_decl))
1215 /* Hide a built-in declaration. */
1216 DECL_DECLARED_CONSTEXPR_P (old_decl)
1217 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1218 return true;
1220 /* 7.1.5 [dcl.constexpr]
1221 Note: An explicit specialization can differ from the template
1222 declaration with respect to the constexpr specifier. */
1223 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl)
1224 && DECL_TEMPLATE_SPECIALIZATION (new_decl))
1225 return true;
1227 error ("redeclaration %qD differs in %<constexpr%>", new_decl);
1228 error ("from previous declaration %q+D", old_decl);
1229 return false;
1231 return true;
1234 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1235 && lookup_attribute ("gnu_inline", \
1236 DECL_ATTRIBUTES (fn)))
1238 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1239 If the redeclaration is invalid, a diagnostic is issued, and the
1240 error_mark_node is returned. Otherwise, OLDDECL is returned.
1242 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1243 returned.
1245 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1247 tree
1248 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1250 unsigned olddecl_uid = DECL_UID (olddecl);
1251 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1252 int new_defines_function = 0;
1253 tree new_template_info;
1255 if (newdecl == olddecl)
1256 return olddecl;
1258 types_match = decls_match (newdecl, olddecl);
1260 /* If either the type of the new decl or the type of the old decl is an
1261 error_mark_node, then that implies that we have already issued an
1262 error (earlier) for some bogus type specification, and in that case,
1263 it is rather pointless to harass the user with yet more error message
1264 about the same declaration, so just pretend the types match here. */
1265 if (TREE_TYPE (newdecl) == error_mark_node
1266 || TREE_TYPE (olddecl) == error_mark_node)
1267 return error_mark_node;
1269 if (UDLIT_OPER_P (DECL_NAME (newdecl))
1270 && UDLIT_OPER_P (DECL_NAME (olddecl)))
1272 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1273 && TREE_CODE (olddecl) != TEMPLATE_DECL
1274 && check_raw_literal_operator (olddecl))
1275 error ("literal operator template %q+D conflicts with"
1276 " raw literal operator %qD", newdecl, olddecl);
1277 else if (TREE_CODE (newdecl) != TEMPLATE_DECL
1278 && TREE_CODE (olddecl) == TEMPLATE_DECL
1279 && check_raw_literal_operator (newdecl))
1280 error ("raw literal operator %q+D conflicts with"
1281 " literal operator template %qD", newdecl, olddecl);
1284 if (DECL_P (olddecl)
1285 && TREE_CODE (newdecl) == FUNCTION_DECL
1286 && TREE_CODE (olddecl) == FUNCTION_DECL
1287 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1289 if (DECL_DECLARED_INLINE_P (newdecl)
1290 && DECL_UNINLINABLE (newdecl)
1291 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1292 /* Already warned elsewhere. */;
1293 else if (DECL_DECLARED_INLINE_P (olddecl)
1294 && DECL_UNINLINABLE (olddecl)
1295 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1296 /* Already warned. */;
1297 else if (DECL_DECLARED_INLINE_P (newdecl)
1298 && DECL_UNINLINABLE (olddecl)
1299 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1301 if (warning (OPT_Wattributes, "function %q+D redeclared as inline",
1302 newdecl))
1303 inform (DECL_SOURCE_LOCATION (olddecl),
1304 "previous declaration of %qD with attribute noinline",
1305 olddecl);
1307 else if (DECL_DECLARED_INLINE_P (olddecl)
1308 && DECL_UNINLINABLE (newdecl)
1309 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1311 if (warning (OPT_Wattributes, "function %q+D redeclared with "
1312 "attribute noinline", newdecl))
1313 inform (DECL_SOURCE_LOCATION (olddecl),
1314 "previous declaration of %qD was inline",
1315 olddecl);
1319 /* Check for redeclaration and other discrepancies. */
1320 if (TREE_CODE (olddecl) == FUNCTION_DECL
1321 && DECL_ARTIFICIAL (olddecl))
1323 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1324 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1326 /* Avoid warnings redeclaring built-ins which have not been
1327 explicitly declared. */
1328 if (DECL_ANTICIPATED (olddecl))
1329 return NULL_TREE;
1331 /* If you declare a built-in or predefined function name as static,
1332 the old definition is overridden, but optionally warn this was a
1333 bad choice of name. */
1334 if (! TREE_PUBLIC (newdecl))
1336 warning (OPT_Wshadow,
1337 DECL_BUILT_IN (olddecl)
1338 ? G_("shadowing built-in function %q#D")
1339 : G_("shadowing library function %q#D"), olddecl);
1340 /* Discard the old built-in function. */
1341 return NULL_TREE;
1343 /* If the built-in is not ansi, then programs can override
1344 it even globally without an error. */
1345 else if (! DECL_BUILT_IN (olddecl))
1346 warning (0, "library function %q#D redeclared as non-function %q#D",
1347 olddecl, newdecl);
1348 else
1349 error ("declaration of %q#D conflicts with built-in "
1350 "declaration %q#D", newdecl, olddecl);
1351 return NULL_TREE;
1353 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1355 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1356 error_at (DECL_SOURCE_LOCATION (newdecl),
1357 "redeclaration of %<pragma omp declare reduction%>");
1358 inform (DECL_SOURCE_LOCATION (olddecl),
1359 "previous %<pragma omp declare reduction%> declaration");
1360 return error_mark_node;
1362 else if (!types_match)
1364 /* Avoid warnings redeclaring built-ins which have not been
1365 explicitly declared. */
1366 if (DECL_ANTICIPATED (olddecl))
1368 /* Deal with fileptr_type_node. FILE type is not known
1369 at the time we create the builtins. */
1370 tree t1, t2;
1372 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1373 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1374 t1 || t2;
1375 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1376 if (!t1 || !t2)
1377 break;
1378 else if (TREE_VALUE (t2) == fileptr_type_node)
1380 tree t = TREE_VALUE (t1);
1382 if (TYPE_PTR_P (t)
1383 && TYPE_NAME (TREE_TYPE (t))
1384 && TYPE_IDENTIFIER (TREE_TYPE (t))
1385 == get_identifier ("FILE")
1386 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1388 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1390 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1391 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1392 types_match = decls_match (newdecl, olddecl);
1393 if (types_match)
1394 return duplicate_decls (newdecl, olddecl,
1395 newdecl_is_friend);
1396 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1399 else if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1400 break;
1402 else if ((DECL_EXTERN_C_P (newdecl)
1403 && DECL_EXTERN_C_P (olddecl))
1404 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1405 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1407 /* A near match; override the builtin. */
1409 if (TREE_PUBLIC (newdecl))
1410 warning (0, "new declaration %q#D ambiguates built-in "
1411 "declaration %q#D", newdecl, olddecl);
1412 else
1413 warning (OPT_Wshadow,
1414 DECL_BUILT_IN (olddecl)
1415 ? G_("shadowing built-in function %q#D")
1416 : G_("shadowing library function %q#D"), olddecl);
1418 else
1419 /* Discard the old built-in function. */
1420 return NULL_TREE;
1422 /* Replace the old RTL to avoid problems with inlining. */
1423 COPY_DECL_RTL (newdecl, olddecl);
1425 /* Even if the types match, prefer the new declarations type for
1426 built-ins which have not been explicitly declared, for
1427 exception lists, etc... */
1428 else if (DECL_IS_BUILTIN (olddecl))
1430 tree type = TREE_TYPE (newdecl);
1431 tree attribs = (*targetm.merge_type_attributes)
1432 (TREE_TYPE (olddecl), type);
1434 type = cp_build_type_attribute_variant (type, attribs);
1435 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1438 /* If a function is explicitly declared "throw ()", propagate that to
1439 the corresponding builtin. */
1440 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1441 && DECL_ANTICIPATED (olddecl)
1442 && TREE_NOTHROW (newdecl)
1443 && !TREE_NOTHROW (olddecl))
1445 enum built_in_function fncode = DECL_FUNCTION_CODE (olddecl);
1446 tree tmpdecl = builtin_decl_explicit (fncode);
1447 if (tmpdecl && tmpdecl != olddecl && types_match)
1448 TREE_NOTHROW (tmpdecl) = 1;
1451 /* Whether or not the builtin can throw exceptions has no
1452 bearing on this declarator. */
1453 TREE_NOTHROW (olddecl) = 0;
1455 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1457 /* If a builtin function is redeclared as `static', merge
1458 the declarations, but make the original one static. */
1459 DECL_THIS_STATIC (olddecl) = 1;
1460 TREE_PUBLIC (olddecl) = 0;
1462 /* Make the old declaration consistent with the new one so
1463 that all remnants of the builtin-ness of this function
1464 will be banished. */
1465 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1466 COPY_DECL_RTL (newdecl, olddecl);
1469 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1471 /* C++ Standard, 3.3, clause 4:
1472 "[Note: a namespace name or a class template name must be unique
1473 in its declarative region (7.3.2, clause 14). ]" */
1474 if (TREE_CODE (olddecl) != NAMESPACE_DECL
1475 && TREE_CODE (newdecl) != NAMESPACE_DECL
1476 && (TREE_CODE (olddecl) != TEMPLATE_DECL
1477 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) != TYPE_DECL)
1478 && (TREE_CODE (newdecl) != TEMPLATE_DECL
1479 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != TYPE_DECL))
1481 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1482 && TREE_CODE (newdecl) != TYPE_DECL)
1483 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1484 && TREE_CODE (olddecl) != TYPE_DECL))
1486 /* We do nothing special here, because C++ does such nasty
1487 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1488 get shadowed, and know that if we need to find a TYPE_DECL
1489 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1490 slot of the identifier. */
1491 return NULL_TREE;
1494 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1495 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1496 || (TREE_CODE (olddecl) == FUNCTION_DECL
1497 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1498 return NULL_TREE;
1501 error ("%q#D redeclared as different kind of symbol", newdecl);
1502 if (TREE_CODE (olddecl) == TREE_LIST)
1503 olddecl = TREE_VALUE (olddecl);
1504 inform (DECL_SOURCE_LOCATION (olddecl),
1505 "previous declaration %q#D", olddecl);
1507 return error_mark_node;
1509 else if (!types_match)
1511 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1512 /* These are certainly not duplicate declarations; they're
1513 from different scopes. */
1514 return NULL_TREE;
1516 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1518 /* The name of a class template may not be declared to refer to
1519 any other template, class, function, object, namespace, value,
1520 or type in the same scope. */
1521 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1522 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1524 error ("conflicting declaration of template %q#D", newdecl);
1525 inform (DECL_SOURCE_LOCATION (olddecl),
1526 "previous declaration %q#D", olddecl);
1527 return error_mark_node;
1529 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1530 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1531 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1532 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1533 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1534 DECL_TEMPLATE_PARMS (olddecl))
1535 /* Template functions can be disambiguated by
1536 return type. */
1537 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1538 TREE_TYPE (TREE_TYPE (olddecl))))
1540 error ("ambiguating new declaration %q#D", newdecl);
1541 inform (DECL_SOURCE_LOCATION (olddecl),
1542 "old declaration %q#D", olddecl);
1544 return NULL_TREE;
1546 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1548 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1550 error ("conflicting declaration of C function %q#D",
1551 newdecl);
1552 inform (DECL_SOURCE_LOCATION (olddecl),
1553 "previous declaration %q#D", olddecl);
1554 return NULL_TREE;
1556 /* For function versions, params and types match, but they
1557 are not ambiguous. */
1558 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1559 && !DECL_FUNCTION_VERSIONED (olddecl))
1560 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1561 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1563 error ("ambiguating new declaration of %q#D", newdecl);
1564 inform (DECL_SOURCE_LOCATION (olddecl),
1565 "old declaration %q#D", olddecl);
1566 return error_mark_node;
1568 else
1569 return NULL_TREE;
1571 else
1573 error ("conflicting declaration %q#D", newdecl);
1574 inform (DECL_SOURCE_LOCATION (olddecl),
1575 "previous declaration as %q#D", olddecl);
1576 return error_mark_node;
1579 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1580 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1581 && (!DECL_TEMPLATE_INFO (newdecl)
1582 || (DECL_TI_TEMPLATE (newdecl)
1583 != DECL_TI_TEMPLATE (olddecl))))
1584 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1585 && (!DECL_TEMPLATE_INFO (olddecl)
1586 || (DECL_TI_TEMPLATE (olddecl)
1587 != DECL_TI_TEMPLATE (newdecl))))))
1588 /* It's OK to have a template specialization and a non-template
1589 with the same type, or to have specializations of two
1590 different templates with the same type. Note that if one is a
1591 specialization, and the other is an instantiation of the same
1592 template, that we do not exit at this point. That situation
1593 can occur if we instantiate a template class, and then
1594 specialize one of its methods. This situation is valid, but
1595 the declarations must be merged in the usual way. */
1596 return NULL_TREE;
1597 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1598 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1599 && !DECL_USE_TEMPLATE (newdecl))
1600 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1601 && !DECL_USE_TEMPLATE (olddecl))))
1602 /* One of the declarations is a template instantiation, and the
1603 other is not a template at all. That's OK. */
1604 return NULL_TREE;
1605 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1607 /* In [namespace.alias] we have:
1609 In a declarative region, a namespace-alias-definition can be
1610 used to redefine a namespace-alias declared in that declarative
1611 region to refer only to the namespace to which it already
1612 refers.
1614 Therefore, if we encounter a second alias directive for the same
1615 alias, we can just ignore the second directive. */
1616 if (DECL_NAMESPACE_ALIAS (newdecl)
1617 && (DECL_NAMESPACE_ALIAS (newdecl)
1618 == DECL_NAMESPACE_ALIAS (olddecl)))
1619 return olddecl;
1620 /* [namespace.alias]
1622 A namespace-name or namespace-alias shall not be declared as
1623 the name of any other entity in the same declarative region.
1624 A namespace-name defined at global scope shall not be
1625 declared as the name of any other entity in any global scope
1626 of the program. */
1627 error ("conflicting declaration of namespace %qD", newdecl);
1628 inform (DECL_SOURCE_LOCATION (olddecl),
1629 "previous declaration of namespace %qD here", olddecl);
1630 return error_mark_node;
1632 else
1634 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1635 if (errmsg)
1637 error_at (DECL_SOURCE_LOCATION (newdecl), errmsg, newdecl);
1638 if (DECL_NAME (olddecl) != NULL_TREE)
1639 inform (input_location,
1640 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1641 ? G_("%q+#D previously defined here")
1642 : G_("%q+#D previously declared here"), olddecl);
1643 return error_mark_node;
1645 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1646 && DECL_INITIAL (olddecl) != NULL_TREE
1647 && !prototype_p (TREE_TYPE (olddecl))
1648 && prototype_p (TREE_TYPE (newdecl)))
1650 /* Prototype decl follows defn w/o prototype. */
1651 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1652 "prototype specified for %q#D", newdecl);
1653 inform (DECL_SOURCE_LOCATION (olddecl),
1654 "previous non-prototype definition here");
1656 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1657 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1659 /* [dcl.link]
1660 If two declarations of the same function or object
1661 specify different linkage-specifications ..., the program
1662 is ill-formed.... Except for functions with C++ linkage,
1663 a function declaration without a linkage specification
1664 shall not precede the first linkage specification for
1665 that function. A function can be declared without a
1666 linkage specification after an explicit linkage
1667 specification has been seen; the linkage explicitly
1668 specified in the earlier declaration is not affected by
1669 such a function declaration.
1671 DR 563 raises the question why the restrictions on
1672 functions should not also apply to objects. Older
1673 versions of G++ silently ignore the linkage-specification
1674 for this example:
1676 namespace N {
1677 extern int i;
1678 extern "C" int i;
1681 which is clearly wrong. Therefore, we now treat objects
1682 like functions. */
1683 if (current_lang_depth () == 0)
1685 /* There is no explicit linkage-specification, so we use
1686 the linkage from the previous declaration. */
1687 if (!DECL_LANG_SPECIFIC (newdecl))
1688 retrofit_lang_decl (newdecl);
1689 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1691 else
1693 error ("conflicting declaration of %q#D with %qL linkage",
1694 newdecl, DECL_LANGUAGE (newdecl));
1695 inform (DECL_SOURCE_LOCATION (olddecl),
1696 "previous declaration with %qL linkage",
1697 DECL_LANGUAGE (olddecl));
1701 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1703 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1705 tree t1 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1706 tree t2 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1707 int i = 1;
1709 if (TREE_CODE (TREE_TYPE (newdecl)) == METHOD_TYPE)
1710 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2);
1712 if (TREE_CODE (TREE_TYPE (newdecl)) == METHOD_TYPE
1713 && CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (newdecl)))
1715 /* C++11 8.3.6/6.
1716 Default arguments for a member function of a class template
1717 shall be specified on the initial declaration of the member
1718 function within the class template. */
1719 for (; t2 && t2 != void_list_node; t2 = TREE_CHAIN (t2))
1720 if (TREE_PURPOSE (t2))
1722 permerror (input_location,
1723 "redeclaration of %q#D may not have default "
1724 "arguments", newdecl);
1725 break;
1728 else
1730 for (; t1 && t1 != void_list_node;
1731 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1732 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1734 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
1735 TREE_PURPOSE (t2)))
1737 if (permerror (input_location,
1738 "default argument given for parameter "
1739 "%d of %q#D", i, newdecl))
1740 inform (DECL_SOURCE_LOCATION (olddecl),
1741 "previous specification in %q#D here",
1742 olddecl);
1744 else
1746 error ("default argument given for parameter %d "
1747 "of %q#D", i, newdecl);
1748 inform (DECL_SOURCE_LOCATION (olddecl),
1749 "previous specification in %q#D here",
1750 olddecl);
1757 /* Do not merge an implicit typedef with an explicit one. In:
1759 class A;
1761 typedef class A A __attribute__ ((foo));
1763 the attribute should apply only to the typedef. */
1764 if (TREE_CODE (olddecl) == TYPE_DECL
1765 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1766 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1767 return NULL_TREE;
1769 /* If new decl is `static' and an `extern' was seen previously,
1770 warn about it. */
1771 warn_extern_redeclared_static (newdecl, olddecl);
1773 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1774 return error_mark_node;
1776 /* We have committed to returning 1 at this point. */
1777 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1779 /* Now that functions must hold information normally held
1780 by field decls, there is extra work to do so that
1781 declaration information does not get destroyed during
1782 definition. */
1783 if (DECL_VINDEX (olddecl))
1784 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1785 if (DECL_CONTEXT (olddecl))
1786 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1787 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1788 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1789 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1790 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1791 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1792 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1793 if (DECL_OVERLOADED_OPERATOR_P (olddecl) != ERROR_MARK)
1794 SET_OVERLOADED_OPERATOR_CODE
1795 (newdecl, DECL_OVERLOADED_OPERATOR_P (olddecl));
1796 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1798 /* Optionally warn about more than one declaration for the same
1799 name, but don't warn about a function declaration followed by a
1800 definition. */
1801 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1802 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1803 /* Don't warn about extern decl followed by definition. */
1804 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1805 /* Don't warn about friends, let add_friend take care of it. */
1806 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1807 /* Don't warn about declaration followed by specialization. */
1808 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1809 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1811 if (warning (OPT_Wredundant_decls,
1812 "redundant redeclaration of %qD in same scope",
1813 newdecl))
1814 inform (DECL_SOURCE_LOCATION (olddecl),
1815 "previous declaration of %qD", olddecl);
1818 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1819 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1821 if (DECL_DELETED_FN (newdecl))
1823 error ("deleted definition of %qD", newdecl);
1824 inform (DECL_SOURCE_LOCATION (olddecl),
1825 "previous declaration of %qD", olddecl);
1827 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
1831 /* Deal with C++: must preserve virtual function table size. */
1832 if (TREE_CODE (olddecl) == TYPE_DECL)
1834 tree newtype = TREE_TYPE (newdecl);
1835 tree oldtype = TREE_TYPE (olddecl);
1837 if (newtype != error_mark_node && oldtype != error_mark_node
1838 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1839 CLASSTYPE_FRIEND_CLASSES (newtype)
1840 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1842 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1845 /* Copy all the DECL_... slots specified in the new decl
1846 except for any that we copy here from the old type. */
1847 DECL_ATTRIBUTES (newdecl)
1848 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1850 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1852 tree old_result;
1853 tree new_result;
1854 old_result = DECL_TEMPLATE_RESULT (olddecl);
1855 new_result = DECL_TEMPLATE_RESULT (newdecl);
1856 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
1857 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
1858 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
1859 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
1861 DECL_ATTRIBUTES (old_result)
1862 = (*targetm.merge_decl_attributes) (old_result, new_result);
1864 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1866 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
1867 && DECL_INITIAL (new_result))
1869 if (DECL_INITIAL (old_result))
1870 DECL_UNINLINABLE (old_result) = 1;
1871 else
1872 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
1873 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
1874 DECL_NOT_REALLY_EXTERN (old_result)
1875 = DECL_NOT_REALLY_EXTERN (new_result);
1876 DECL_INTERFACE_KNOWN (old_result)
1877 = DECL_INTERFACE_KNOWN (new_result);
1878 DECL_DECLARED_INLINE_P (old_result)
1879 = DECL_DECLARED_INLINE_P (new_result);
1880 DECL_DISREGARD_INLINE_LIMITS (old_result)
1881 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
1884 else
1886 DECL_DECLARED_INLINE_P (old_result)
1887 |= DECL_DECLARED_INLINE_P (new_result);
1888 DECL_DISREGARD_INLINE_LIMITS (old_result)
1889 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
1890 check_redeclaration_exception_specification (newdecl, olddecl);
1894 /* If the new declaration is a definition, update the file and
1895 line information on the declaration, and also make
1896 the old declaration the same definition. */
1897 if (DECL_INITIAL (new_result) != NULL_TREE)
1899 DECL_SOURCE_LOCATION (olddecl)
1900 = DECL_SOURCE_LOCATION (old_result)
1901 = DECL_SOURCE_LOCATION (newdecl);
1902 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
1903 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1905 tree parm;
1906 DECL_ARGUMENTS (old_result)
1907 = DECL_ARGUMENTS (new_result);
1908 for (parm = DECL_ARGUMENTS (old_result); parm;
1909 parm = DECL_CHAIN (parm))
1910 DECL_CONTEXT (parm) = old_result;
1914 return olddecl;
1917 if (types_match)
1919 /* Automatically handles default parameters. */
1920 tree oldtype = TREE_TYPE (olddecl);
1921 tree newtype;
1923 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1924 maybe_instantiate_noexcept (olddecl);
1926 /* For typedefs use the old type, as the new type's DECL_NAME points
1927 at newdecl, which will be ggc_freed. */
1928 if (TREE_CODE (newdecl) == TYPE_DECL)
1929 newtype = oldtype;
1930 else
1931 /* Merge the data types specified in the two decls. */
1932 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1934 if (VAR_P (newdecl))
1936 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
1937 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
1938 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
1939 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
1940 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
1941 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
1943 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
1944 if (DECL_LANG_SPECIFIC (olddecl)
1945 && CP_DECL_THREADPRIVATE_P (olddecl))
1947 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
1948 if (!DECL_LANG_SPECIFIC (newdecl))
1949 retrofit_lang_decl (newdecl);
1951 DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
1952 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
1956 /* Do this after calling `merge_types' so that default
1957 parameters don't confuse us. */
1958 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1959 check_redeclaration_exception_specification (newdecl, olddecl);
1960 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
1962 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1963 check_default_args (newdecl);
1965 /* Lay the type out, unless already done. */
1966 if (! same_type_p (newtype, oldtype)
1967 && TREE_TYPE (newdecl) != error_mark_node
1968 && !(processing_template_decl && uses_template_parms (newdecl)))
1969 layout_type (TREE_TYPE (newdecl));
1971 if ((VAR_P (newdecl)
1972 || TREE_CODE (newdecl) == PARM_DECL
1973 || TREE_CODE (newdecl) == RESULT_DECL
1974 || TREE_CODE (newdecl) == FIELD_DECL
1975 || TREE_CODE (newdecl) == TYPE_DECL)
1976 && !(processing_template_decl && uses_template_parms (newdecl)))
1977 layout_decl (newdecl, 0);
1979 /* Merge the type qualifiers. */
1980 if (TREE_READONLY (newdecl))
1981 TREE_READONLY (olddecl) = 1;
1982 if (TREE_THIS_VOLATILE (newdecl))
1983 TREE_THIS_VOLATILE (olddecl) = 1;
1984 if (TREE_NOTHROW (newdecl))
1985 TREE_NOTHROW (olddecl) = 1;
1987 /* Merge deprecatedness. */
1988 if (TREE_DEPRECATED (newdecl))
1989 TREE_DEPRECATED (olddecl) = 1;
1991 /* Preserve function specific target and optimization options */
1992 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1994 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
1995 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
1996 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
1997 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
1999 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2000 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2001 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2002 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2005 /* Merge the initialization information. */
2006 if (DECL_INITIAL (newdecl) == NULL_TREE
2007 && DECL_INITIAL (olddecl) != NULL_TREE)
2009 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2010 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2011 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2013 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2014 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2018 /* Merge the section attribute.
2019 We want to issue an error if the sections conflict but that must be
2020 done later in decl_attributes since we are called before attributes
2021 are assigned. */
2022 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
2023 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
2025 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2027 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2028 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2029 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2030 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2031 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
2032 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2033 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2034 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2035 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2036 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2037 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2038 /* Keep the old RTL. */
2039 COPY_DECL_RTL (olddecl, newdecl);
2041 else if (VAR_P (newdecl)
2042 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2044 /* Keep the old RTL. We cannot keep the old RTL if the old
2045 declaration was for an incomplete object and the new
2046 declaration is not since many attributes of the RTL will
2047 change. */
2048 COPY_DECL_RTL (olddecl, newdecl);
2051 /* If cannot merge, then use the new type and qualifiers,
2052 and don't preserve the old rtl. */
2053 else
2055 /* Clean out any memory we had of the old declaration. */
2056 tree oldstatic = value_member (olddecl, static_aggregates);
2057 if (oldstatic)
2058 TREE_VALUE (oldstatic) = error_mark_node;
2060 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2061 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2062 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2063 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2066 /* Merge the storage class information. */
2067 merge_weak (newdecl, olddecl);
2069 if (DECL_ONE_ONLY (olddecl))
2070 DECL_COMDAT_GROUP (newdecl) = DECL_COMDAT_GROUP (olddecl);
2072 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2073 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2074 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2075 if (! DECL_EXTERNAL (olddecl))
2076 DECL_EXTERNAL (newdecl) = 0;
2078 new_template_info = NULL_TREE;
2079 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2081 bool new_redefines_gnu_inline = false;
2083 if (new_defines_function
2084 && ((DECL_INTERFACE_KNOWN (olddecl)
2085 && TREE_CODE (olddecl) == FUNCTION_DECL)
2086 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2087 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2088 == FUNCTION_DECL))))
2090 tree fn = olddecl;
2092 if (TREE_CODE (fn) == TEMPLATE_DECL)
2093 fn = DECL_TEMPLATE_RESULT (olddecl);
2095 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2098 if (!new_redefines_gnu_inline)
2100 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2101 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2102 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2104 DECL_TEMPLATE_INSTANTIATED (newdecl)
2105 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2106 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2108 /* If the OLDDECL is an instantiation and/or specialization,
2109 then the NEWDECL must be too. But, it may not yet be marked
2110 as such if the caller has created NEWDECL, but has not yet
2111 figured out that it is a redeclaration. */
2112 if (!DECL_USE_TEMPLATE (newdecl))
2113 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2115 /* Don't really know how much of the language-specific
2116 values we should copy from old to new. */
2117 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2118 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
2119 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2120 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2122 if (LANG_DECL_HAS_MIN (newdecl))
2124 DECL_LANG_SPECIFIC (newdecl)->u.min.u2 =
2125 DECL_LANG_SPECIFIC (olddecl)->u.min.u2;
2126 if (DECL_TEMPLATE_INFO (newdecl))
2127 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2128 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2130 /* Only functions have these fields. */
2131 if (DECL_DECLARES_FUNCTION_P (newdecl))
2133 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2134 olddecl_friend = DECL_FRIEND_P (olddecl);
2135 hidden_friend = (DECL_ANTICIPATED (olddecl)
2136 && DECL_HIDDEN_FRIEND_P (olddecl)
2137 && newdecl_is_friend);
2138 DECL_BEFRIENDING_CLASSES (newdecl)
2139 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2140 DECL_BEFRIENDING_CLASSES (olddecl));
2141 /* DECL_THUNKS is only valid for virtual functions,
2142 otherwise it is a DECL_FRIEND_CONTEXT. */
2143 if (DECL_VIRTUAL_P (newdecl))
2144 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2146 /* Only variables have this field. */
2147 else if (VAR_P (newdecl)
2148 && VAR_HAD_UNKNOWN_BOUND (olddecl))
2149 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2152 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2154 tree parm;
2156 /* Merge parameter attributes. */
2157 tree oldarg, newarg;
2158 for (oldarg = DECL_ARGUMENTS(olddecl),
2159 newarg = DECL_ARGUMENTS(newdecl);
2160 oldarg && newarg;
2161 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg)) {
2162 DECL_ATTRIBUTES (newarg)
2163 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2164 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2167 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2168 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2170 /* If newdecl is not a specialization, then it is not a
2171 template-related function at all. And that means that we
2172 should have exited above, returning 0. */
2173 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2175 if (DECL_ODR_USED (olddecl))
2176 /* From [temp.expl.spec]:
2178 If a template, a member template or the member of a class
2179 template is explicitly specialized then that
2180 specialization shall be declared before the first use of
2181 that specialization that would cause an implicit
2182 instantiation to take place, in every translation unit in
2183 which such a use occurs. */
2184 error ("explicit specialization of %qD after first use",
2185 olddecl);
2187 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2189 /* Don't propagate visibility from the template to the
2190 specialization here. We'll do that in determine_visibility if
2191 appropriate. */
2192 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2194 /* [temp.expl.spec/14] We don't inline explicit specialization
2195 just because the primary template says so. */
2197 /* But still keep DECL_DISREGARD_INLINE_LIMITS in sync with
2198 the always_inline attribute. */
2199 if (DECL_DISREGARD_INLINE_LIMITS (olddecl)
2200 && !DECL_DISREGARD_INLINE_LIMITS (newdecl))
2202 if (DECL_DECLARED_INLINE_P (newdecl))
2203 DECL_DISREGARD_INLINE_LIMITS (newdecl) = true;
2204 else
2205 DECL_ATTRIBUTES (newdecl)
2206 = remove_attribute ("always_inline",
2207 DECL_ATTRIBUTES (newdecl));
2210 else if (new_defines_function && DECL_INITIAL (olddecl))
2212 /* Never inline re-defined extern inline functions.
2213 FIXME: this could be better handled by keeping both
2214 function as separate declarations. */
2215 DECL_UNINLINABLE (newdecl) = 1;
2217 else
2219 if (DECL_PENDING_INLINE_INFO (newdecl) == 0)
2220 DECL_PENDING_INLINE_INFO (newdecl) = DECL_PENDING_INLINE_INFO (olddecl);
2222 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2224 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2225 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2227 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2228 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2229 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2230 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2233 /* Preserve abstractness on cloned [cd]tors. */
2234 DECL_ABSTRACT (newdecl) = DECL_ABSTRACT (olddecl);
2236 /* Update newdecl's parms to point at olddecl. */
2237 for (parm = DECL_ARGUMENTS (newdecl); parm;
2238 parm = DECL_CHAIN (parm))
2239 DECL_CONTEXT (parm) = olddecl;
2241 if (! types_match)
2243 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2244 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2245 COPY_DECL_RTL (newdecl, olddecl);
2247 if (! types_match || new_defines_function)
2249 /* These need to be copied so that the names are available.
2250 Note that if the types do match, we'll preserve inline
2251 info and other bits, but if not, we won't. */
2252 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2253 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2255 /* If redeclaring a builtin function, it stays built in
2256 if newdecl is a gnu_inline definition, or if newdecl is just
2257 a declaration. */
2258 if (DECL_BUILT_IN (olddecl)
2259 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2261 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2262 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2263 /* If we're keeping the built-in definition, keep the rtl,
2264 regardless of declaration matches. */
2265 COPY_DECL_RTL (olddecl, newdecl);
2266 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2268 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2269 switch (fncode)
2271 /* If a compatible prototype of these builtin functions
2272 is seen, assume the runtime implements it with the
2273 expected semantics. */
2274 case BUILT_IN_STPCPY:
2275 if (builtin_decl_explicit_p (fncode))
2276 set_builtin_decl_implicit_p (fncode, true);
2277 break;
2278 default:
2279 break;
2283 if (new_defines_function)
2284 /* If defining a function declared with other language
2285 linkage, use the previously declared language linkage. */
2286 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2287 else if (types_match)
2289 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2290 /* Don't clear out the arguments if we're just redeclaring a
2291 function. */
2292 if (DECL_ARGUMENTS (olddecl))
2293 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2296 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2297 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2299 /* Now preserve various other info from the definition. */
2300 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2301 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2302 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2303 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2305 /* Warn about conflicting visibility specifications. */
2306 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2307 && DECL_VISIBILITY_SPECIFIED (newdecl)
2308 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2310 warning_at (input_location, OPT_Wattributes,
2311 "%q+D: visibility attribute ignored because it", newdecl);
2312 warning_at (DECL_SOURCE_LOCATION (olddecl), OPT_Wattributes,
2313 "conflicts with previous declaration here");
2315 /* Choose the declaration which specified visibility. */
2316 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2318 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2319 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2321 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2322 so keep this behavior. */
2323 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2325 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2326 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2328 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2329 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2331 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
2332 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2334 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2335 if (TREE_CODE (newdecl) == FIELD_DECL)
2336 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2338 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2339 with that from NEWDECL below. */
2340 if (DECL_LANG_SPECIFIC (olddecl))
2342 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2343 != DECL_LANG_SPECIFIC (newdecl));
2344 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2347 /* Merge the USED information. */
2348 if (TREE_USED (olddecl))
2349 TREE_USED (newdecl) = 1;
2350 else if (TREE_USED (newdecl))
2351 TREE_USED (olddecl) = 1;
2352 if (VAR_P (newdecl))
2354 if (DECL_READ_P (olddecl))
2355 DECL_READ_P (newdecl) = 1;
2356 else if (DECL_READ_P (newdecl))
2357 DECL_READ_P (olddecl) = 1;
2359 if (DECL_PRESERVE_P (olddecl))
2360 DECL_PRESERVE_P (newdecl) = 1;
2361 else if (DECL_PRESERVE_P (newdecl))
2362 DECL_PRESERVE_P (olddecl) = 1;
2364 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2365 to olddecl and deleted. */
2366 if (TREE_CODE (newdecl) == FUNCTION_DECL
2367 && DECL_FUNCTION_VERSIONED (olddecl))
2369 /* Set the flag for newdecl so that it gets copied to olddecl. */
2370 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2371 /* newdecl will be purged after copying to olddecl and is no longer
2372 a version. */
2373 delete_function_version (newdecl);
2376 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2378 int function_size;
2380 function_size = sizeof (struct tree_decl_common);
2382 memcpy ((char *) olddecl + sizeof (struct tree_common),
2383 (char *) newdecl + sizeof (struct tree_common),
2384 function_size - sizeof (struct tree_common));
2386 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2387 (char *) newdecl + sizeof (struct tree_decl_common),
2388 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2389 if (new_template_info)
2390 /* If newdecl is a template instantiation, it is possible that
2391 the following sequence of events has occurred:
2393 o A friend function was declared in a class template. The
2394 class template was instantiated.
2396 o The instantiation of the friend declaration was
2397 recorded on the instantiation list, and is newdecl.
2399 o Later, however, instantiate_class_template called pushdecl
2400 on the newdecl to perform name injection. But, pushdecl in
2401 turn called duplicate_decls when it discovered that another
2402 declaration of a global function with the same name already
2403 existed.
2405 o Here, in duplicate_decls, we decided to clobber newdecl.
2407 If we're going to do that, we'd better make sure that
2408 olddecl, and not newdecl, is on the list of
2409 instantiations so that if we try to do the instantiation
2410 again we won't get the clobbered declaration. */
2411 reregister_specialization (newdecl,
2412 new_template_info,
2413 olddecl);
2415 else
2417 size_t size = tree_code_size (TREE_CODE (olddecl));
2418 memcpy ((char *) olddecl + sizeof (struct tree_common),
2419 (char *) newdecl + sizeof (struct tree_common),
2420 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2421 switch (TREE_CODE (olddecl))
2423 case LABEL_DECL:
2424 case VAR_DECL:
2425 case RESULT_DECL:
2426 case PARM_DECL:
2427 case FIELD_DECL:
2428 case TYPE_DECL:
2429 case CONST_DECL:
2431 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2432 (char *) newdecl + sizeof (struct tree_decl_common),
2433 size - sizeof (struct tree_decl_common)
2434 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2436 break;
2437 default:
2438 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2439 (char *) newdecl + sizeof (struct tree_decl_common),
2440 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2441 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2442 break;
2445 DECL_UID (olddecl) = olddecl_uid;
2446 if (olddecl_friend)
2447 DECL_FRIEND_P (olddecl) = 1;
2448 if (hidden_friend)
2450 DECL_ANTICIPATED (olddecl) = 1;
2451 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2454 /* NEWDECL contains the merged attribute lists.
2455 Update OLDDECL to be the same. */
2456 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2458 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2459 so that encode_section_info has a chance to look at the new decl
2460 flags and attributes. */
2461 if (DECL_RTL_SET_P (olddecl)
2462 && (TREE_CODE (olddecl) == FUNCTION_DECL
2463 || (VAR_P (olddecl)
2464 && TREE_STATIC (olddecl))))
2465 make_decl_rtl (olddecl);
2467 /* The NEWDECL will no longer be needed. Because every out-of-class
2468 declaration of a member results in a call to duplicate_decls,
2469 freeing these nodes represents in a significant savings. */
2470 ggc_free (newdecl);
2472 return olddecl;
2475 /* Return zero if the declaration NEWDECL is valid
2476 when the declaration OLDDECL (assumed to be for the same name)
2477 has already been seen.
2478 Otherwise return an error message format string with a %s
2479 where the identifier should go. */
2481 static const char *
2482 redeclaration_error_message (tree newdecl, tree olddecl)
2484 if (TREE_CODE (newdecl) == TYPE_DECL)
2486 /* Because C++ can put things into name space for free,
2487 constructs like "typedef struct foo { ... } foo"
2488 would look like an erroneous redeclaration. */
2489 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2490 return NULL;
2491 else
2492 return G_("redefinition of %q#D");
2494 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2496 /* If this is a pure function, its olddecl will actually be
2497 the original initialization to `0' (which we force to call
2498 abort()). Don't complain about redefinition in this case. */
2499 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2500 && DECL_INITIAL (olddecl) == NULL_TREE)
2501 return NULL;
2503 /* If both functions come from different namespaces, this is not
2504 a redeclaration - this is a conflict with a used function. */
2505 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2506 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2507 && ! decls_match (olddecl, newdecl))
2508 return G_("%qD conflicts with used function");
2510 /* We'll complain about linkage mismatches in
2511 warn_extern_redeclared_static. */
2513 /* Defining the same name twice is no good. */
2514 if (DECL_INITIAL (olddecl) != NULL_TREE
2515 && DECL_INITIAL (newdecl) != NULL_TREE)
2517 if (DECL_NAME (olddecl) == NULL_TREE)
2518 return G_("%q#D not declared in class");
2519 else if (!GNU_INLINE_P (olddecl)
2520 || GNU_INLINE_P (newdecl))
2521 return G_("redefinition of %q#D");
2524 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2526 bool olda = GNU_INLINE_P (olddecl);
2527 bool newa = GNU_INLINE_P (newdecl);
2529 if (olda != newa)
2531 if (newa)
2532 return G_("%q+D redeclared inline with "
2533 "%<gnu_inline%> attribute");
2534 else
2535 return G_("%q+D redeclared inline without "
2536 "%<gnu_inline%> attribute");
2540 check_abi_tag_redeclaration
2541 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2542 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2544 return NULL;
2546 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2548 tree nt, ot;
2550 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2552 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2553 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2554 return G_("redefinition of %q#D");
2555 return NULL;
2558 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2559 || (DECL_TEMPLATE_RESULT (newdecl)
2560 == DECL_TEMPLATE_RESULT (olddecl)))
2561 return NULL;
2563 nt = DECL_TEMPLATE_RESULT (newdecl);
2564 if (DECL_TEMPLATE_INFO (nt))
2565 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2566 ot = DECL_TEMPLATE_RESULT (olddecl);
2567 if (DECL_TEMPLATE_INFO (ot))
2568 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2569 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2570 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2571 return G_("redefinition of %q#D");
2573 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2575 bool olda = GNU_INLINE_P (ot);
2576 bool newa = GNU_INLINE_P (nt);
2578 if (olda != newa)
2580 if (newa)
2581 return G_("%q+D redeclared inline with "
2582 "%<gnu_inline%> attribute");
2583 else
2584 return G_("%q+D redeclared inline without "
2585 "%<gnu_inline%> attribute");
2589 /* Core issue #226 (C++0x):
2591 If a friend function template declaration specifies a
2592 default template-argument, that declaration shall be a
2593 definition and shall be the only declaration of the
2594 function template in the translation unit. */
2595 if ((cxx_dialect != cxx98)
2596 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2597 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2598 /*is_primary=*/true,
2599 /*is_partial=*/false,
2600 /*is_friend_decl=*/2))
2601 return G_("redeclaration of friend %q#D "
2602 "may not have default template arguments");
2604 return NULL;
2606 else if (VAR_P (newdecl)
2607 && DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl)
2608 && (! DECL_LANG_SPECIFIC (olddecl)
2609 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2610 || DECL_THREAD_LOCAL_P (newdecl)))
2612 /* Only variables can be thread-local, and all declarations must
2613 agree on this property. */
2614 if (DECL_THREAD_LOCAL_P (newdecl))
2615 return G_("thread-local declaration of %q#D follows "
2616 "non-thread-local declaration");
2617 else
2618 return G_("non-thread-local declaration of %q#D follows "
2619 "thread-local declaration");
2621 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2623 /* The objects have been declared at namespace scope. If either
2624 is a member of an anonymous union, then this is an invalid
2625 redeclaration. For example:
2627 int i;
2628 union { int i; };
2630 is invalid. */
2631 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2632 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2633 return G_("redeclaration of %q#D");
2634 /* If at least one declaration is a reference, there is no
2635 conflict. For example:
2637 int i = 3;
2638 extern int i;
2640 is valid. */
2641 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2642 return NULL;
2643 /* Reject two definitions. */
2644 return G_("redefinition of %q#D");
2646 else
2648 /* Objects declared with block scope: */
2649 /* Reject two definitions, and reject a definition
2650 together with an external reference. */
2651 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2652 return G_("redeclaration of %q#D");
2653 return NULL;
2657 /* Hash and equality functions for the named_label table. */
2659 static hashval_t
2660 named_label_entry_hash (const void *data)
2662 const struct named_label_entry *ent = (const struct named_label_entry *) data;
2663 return DECL_UID (ent->label_decl);
2666 static int
2667 named_label_entry_eq (const void *a, const void *b)
2669 const struct named_label_entry *ent_a = (const struct named_label_entry *) a;
2670 const struct named_label_entry *ent_b = (const struct named_label_entry *) b;
2671 return ent_a->label_decl == ent_b->label_decl;
2674 /* Create a new label, named ID. */
2676 static tree
2677 make_label_decl (tree id, int local_p)
2679 struct named_label_entry *ent;
2680 void **slot;
2681 tree decl;
2683 decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
2685 DECL_CONTEXT (decl) = current_function_decl;
2686 DECL_MODE (decl) = VOIDmode;
2687 C_DECLARED_LABEL_FLAG (decl) = local_p;
2689 /* Say where one reference is to the label, for the sake of the
2690 error if it is not defined. */
2691 DECL_SOURCE_LOCATION (decl) = input_location;
2693 /* Record the fact that this identifier is bound to this label. */
2694 SET_IDENTIFIER_LABEL_VALUE (id, decl);
2696 /* Create the label htab for the function on demand. */
2697 if (!named_labels)
2698 named_labels = htab_create_ggc (13, named_label_entry_hash,
2699 named_label_entry_eq, NULL);
2701 /* Record this label on the list of labels used in this function.
2702 We do this before calling make_label_decl so that we get the
2703 IDENTIFIER_LABEL_VALUE before the new label is declared. */
2704 ent = ggc_alloc_cleared_named_label_entry ();
2705 ent->label_decl = decl;
2707 slot = htab_find_slot (named_labels, ent, INSERT);
2708 gcc_assert (*slot == NULL);
2709 *slot = ent;
2711 return decl;
2714 /* Look for a label named ID in the current function. If one cannot
2715 be found, create one. (We keep track of used, but undefined,
2716 labels, and complain about them at the end of a function.) */
2718 static tree
2719 lookup_label_1 (tree id)
2721 tree decl;
2723 /* You can't use labels at global scope. */
2724 if (current_function_decl == NULL_TREE)
2726 error ("label %qE referenced outside of any function", id);
2727 return NULL_TREE;
2730 /* See if we've already got this label. */
2731 decl = IDENTIFIER_LABEL_VALUE (id);
2732 if (decl != NULL_TREE && DECL_CONTEXT (decl) == current_function_decl)
2733 return decl;
2735 decl = make_label_decl (id, /*local_p=*/0);
2736 return decl;
2739 /* Wrapper for lookup_label_1. */
2741 tree
2742 lookup_label (tree id)
2744 tree ret;
2745 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
2746 ret = lookup_label_1 (id);
2747 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
2748 return ret;
2751 /* Declare a local label named ID. */
2753 tree
2754 declare_local_label (tree id)
2756 tree decl;
2757 cp_label_binding bind;
2759 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
2760 this scope we can restore the old value of IDENTIFIER_TYPE_VALUE. */
2761 bind.prev_value = IDENTIFIER_LABEL_VALUE (id);
2763 decl = make_label_decl (id, /*local_p=*/1);
2764 bind.label = decl;
2765 vec_safe_push (current_binding_level->shadowed_labels, bind);
2767 return decl;
2770 /* Returns nonzero if it is ill-formed to jump past the declaration of
2771 DECL. Returns 2 if it's also a real problem. */
2773 static int
2774 decl_jump_unsafe (tree decl)
2776 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
2777 with automatic storage duration is not in scope to a point where it is
2778 in scope is ill-formed unless the variable has scalar type, class type
2779 with a trivial default constructor and a trivial destructor, a
2780 cv-qualified version of one of these types, or an array of one of the
2781 preceding types and is declared without an initializer (8.5). */
2782 tree type = TREE_TYPE (decl);
2784 if (!VAR_P (decl) || TREE_STATIC (decl)
2785 || type == error_mark_node)
2786 return 0;
2788 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
2789 || variably_modified_type_p (type, NULL_TREE))
2790 return 2;
2792 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
2793 return 1;
2795 return 0;
2798 /* A subroutine of check_previous_goto_1 to identify a branch to the user. */
2800 static void
2801 identify_goto (tree decl, const location_t *locus)
2803 if (decl)
2804 permerror (input_location, "jump to label %qD", decl);
2805 else
2806 permerror (input_location, "jump to case label");
2807 if (locus)
2808 permerror (*locus, " from here");
2811 /* Check that a single previously seen jump to a newly defined label
2812 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
2813 the jump context; NAMES are the names in scope in LEVEL at the jump
2814 context; LOCUS is the source position of the jump or 0. Returns
2815 true if all is well. */
2817 static bool
2818 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
2819 bool exited_omp, const location_t *locus)
2821 cp_binding_level *b;
2822 bool identified = false, saw_eh = false, saw_omp = false;
2824 if (exited_omp)
2826 identify_goto (decl, locus);
2827 error (" exits OpenMP structured block");
2828 identified = saw_omp = true;
2831 for (b = current_binding_level; b ; b = b->level_chain)
2833 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
2835 for (new_decls = b->names; new_decls != old_decls;
2836 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
2837 : TREE_CHAIN (new_decls)))
2839 int problem = decl_jump_unsafe (new_decls);
2840 if (! problem)
2841 continue;
2843 if (!identified)
2845 identify_goto (decl, locus);
2846 identified = true;
2848 if (problem > 1)
2849 error (" crosses initialization of %q+#D", new_decls);
2850 else
2851 permerror (input_location, " enters scope of %q+#D which has "
2852 "non-trivial destructor", new_decls);
2855 if (b == level)
2856 break;
2857 if ((b->kind == sk_try || b->kind == sk_catch) && !saw_eh)
2859 if (!identified)
2861 identify_goto (decl, locus);
2862 identified = true;
2864 if (b->kind == sk_try)
2865 error (" enters try block");
2866 else
2867 error (" enters catch block");
2868 saw_eh = true;
2870 if (b->kind == sk_omp && !saw_omp)
2872 if (!identified)
2874 identify_goto (decl, locus);
2875 identified = true;
2877 error (" enters OpenMP structured block");
2878 saw_omp = true;
2882 return !identified;
2885 static void
2886 check_previous_goto (tree decl, struct named_label_use_entry *use)
2888 check_previous_goto_1 (decl, use->binding_level,
2889 use->names_in_scope, use->in_omp_scope,
2890 &use->o_goto_locus);
2893 static bool
2894 check_switch_goto (cp_binding_level* level)
2896 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
2899 /* Check that a new jump to a label DECL is OK. Called by
2900 finish_goto_stmt. */
2902 void
2903 check_goto (tree decl)
2905 struct named_label_entry *ent, dummy;
2906 bool saw_catch = false, identified = false;
2907 tree bad;
2908 unsigned ix;
2910 /* We can't know where a computed goto is jumping.
2911 So we assume that it's OK. */
2912 if (TREE_CODE (decl) != LABEL_DECL)
2913 return;
2915 /* We didn't record any information about this label when we created it,
2916 and there's not much point since it's trivial to analyze as a return. */
2917 if (decl == cdtor_label)
2918 return;
2920 dummy.label_decl = decl;
2921 ent = (struct named_label_entry *) htab_find (named_labels, &dummy);
2922 gcc_assert (ent != NULL);
2924 /* If the label hasn't been defined yet, defer checking. */
2925 if (! DECL_INITIAL (decl))
2927 struct named_label_use_entry *new_use;
2929 /* Don't bother creating another use if the last goto had the
2930 same data, and will therefore create the same set of errors. */
2931 if (ent->uses
2932 && ent->uses->names_in_scope == current_binding_level->names)
2933 return;
2935 new_use = ggc_alloc_named_label_use_entry ();
2936 new_use->binding_level = current_binding_level;
2937 new_use->names_in_scope = current_binding_level->names;
2938 new_use->o_goto_locus = input_location;
2939 new_use->in_omp_scope = false;
2941 new_use->next = ent->uses;
2942 ent->uses = new_use;
2943 return;
2946 if (ent->in_try_scope || ent->in_catch_scope
2947 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
2949 permerror (input_location, "jump to label %q+D", decl);
2950 permerror (input_location, " from here");
2951 identified = true;
2954 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
2956 int u = decl_jump_unsafe (bad);
2958 if (u > 1 && DECL_ARTIFICIAL (bad))
2960 /* Can't skip init of __exception_info. */
2961 error_at (DECL_SOURCE_LOCATION (bad), " enters catch block");
2962 saw_catch = true;
2964 else if (u > 1)
2965 error (" skips initialization of %q+#D", bad);
2966 else
2967 permerror (input_location, " enters scope of %q+#D which has "
2968 "non-trivial destructor", bad);
2971 if (ent->in_try_scope)
2972 error (" enters try block");
2973 else if (ent->in_catch_scope && !saw_catch)
2974 error (" enters catch block");
2976 if (ent->in_omp_scope)
2977 error (" enters OpenMP structured block");
2978 else if (flag_openmp)
2980 cp_binding_level *b;
2981 for (b = current_binding_level; b ; b = b->level_chain)
2983 if (b == ent->binding_level)
2984 break;
2985 if (b->kind == sk_omp)
2987 if (!identified)
2989 permerror (input_location, "jump to label %q+D", decl);
2990 permerror (input_location, " from here");
2991 identified = true;
2993 error (" exits OpenMP structured block");
2994 break;
3000 /* Check that a return is ok wrt OpenMP structured blocks.
3001 Called by finish_return_stmt. Returns true if all is well. */
3003 bool
3004 check_omp_return (void)
3006 cp_binding_level *b;
3007 for (b = current_binding_level; b ; b = b->level_chain)
3008 if (b->kind == sk_omp)
3010 error ("invalid exit from OpenMP structured block");
3011 return false;
3013 else if (b->kind == sk_function_parms)
3014 break;
3015 return true;
3018 /* Define a label, specifying the location in the source file.
3019 Return the LABEL_DECL node for the label. */
3021 static tree
3022 define_label_1 (location_t location, tree name)
3024 struct named_label_entry *ent, dummy;
3025 cp_binding_level *p;
3026 tree decl;
3028 decl = lookup_label (name);
3030 dummy.label_decl = decl;
3031 ent = (struct named_label_entry *) htab_find (named_labels, &dummy);
3032 gcc_assert (ent != NULL);
3034 /* After labels, make any new cleanups in the function go into their
3035 own new (temporary) binding contour. */
3036 for (p = current_binding_level;
3037 p->kind != sk_function_parms;
3038 p = p->level_chain)
3039 p->more_cleanups_ok = 0;
3041 if (name == get_identifier ("wchar_t"))
3042 permerror (input_location, "label named wchar_t");
3044 if (DECL_INITIAL (decl) != NULL_TREE)
3046 error ("duplicate label %qD", decl);
3047 return error_mark_node;
3049 else
3051 struct named_label_use_entry *use;
3053 /* Mark label as having been defined. */
3054 DECL_INITIAL (decl) = error_mark_node;
3055 /* Say where in the source. */
3056 DECL_SOURCE_LOCATION (decl) = location;
3058 ent->binding_level = current_binding_level;
3059 ent->names_in_scope = current_binding_level->names;
3061 for (use = ent->uses; use ; use = use->next)
3062 check_previous_goto (decl, use);
3063 ent->uses = NULL;
3066 return decl;
3069 /* Wrapper for define_label_1. */
3071 tree
3072 define_label (location_t location, tree name)
3074 tree ret;
3075 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3076 ret = define_label_1 (location, name);
3077 timevar_cond_stop (TV_NAME_LOOKUP, running);
3078 return ret;
3082 struct cp_switch
3084 cp_binding_level *level;
3085 struct cp_switch *next;
3086 /* The SWITCH_STMT being built. */
3087 tree switch_stmt;
3088 /* A splay-tree mapping the low element of a case range to the high
3089 element, or NULL_TREE if there is no high element. Used to
3090 determine whether or not a new case label duplicates an old case
3091 label. We need a tree, rather than simply a hash table, because
3092 of the GNU case range extension. */
3093 splay_tree cases;
3096 /* A stack of the currently active switch statements. The innermost
3097 switch statement is on the top of the stack. There is no need to
3098 mark the stack for garbage collection because it is only active
3099 during the processing of the body of a function, and we never
3100 collect at that point. */
3102 static struct cp_switch *switch_stack;
3104 /* Called right after a switch-statement condition is parsed.
3105 SWITCH_STMT is the switch statement being parsed. */
3107 void
3108 push_switch (tree switch_stmt)
3110 struct cp_switch *p = XNEW (struct cp_switch);
3111 p->level = current_binding_level;
3112 p->next = switch_stack;
3113 p->switch_stmt = switch_stmt;
3114 p->cases = splay_tree_new (case_compare, NULL, NULL);
3115 switch_stack = p;
3118 void
3119 pop_switch (void)
3121 struct cp_switch *cs = switch_stack;
3122 location_t switch_location;
3124 /* Emit warnings as needed. */
3125 switch_location = EXPR_LOC_OR_LOC (cs->switch_stmt, input_location);
3126 if (!processing_template_decl)
3127 c_do_switch_warnings (cs->cases, switch_location,
3128 SWITCH_STMT_TYPE (cs->switch_stmt),
3129 SWITCH_STMT_COND (cs->switch_stmt));
3131 splay_tree_delete (cs->cases);
3132 switch_stack = switch_stack->next;
3133 free (cs);
3136 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3137 condition. Note that if TYPE and VALUE are already integral we don't
3138 really do the conversion because the language-independent
3139 warning/optimization code will work better that way. */
3141 static tree
3142 case_conversion (tree type, tree value)
3144 if (value == NULL_TREE)
3145 return value;
3147 if (cxx_dialect >= cxx11
3148 && (SCOPED_ENUM_P (type)
3149 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))))
3151 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3152 type = type_promotes_to (type);
3153 value = (perform_implicit_conversion_flags
3154 (type, value, tf_warning_or_error,
3155 LOOKUP_IMPLICIT | LOOKUP_NO_NON_INTEGRAL));
3157 return cxx_constant_value (value);
3160 /* Note that we've seen a definition of a case label, and complain if this
3161 is a bad place for one. */
3163 tree
3164 finish_case_label (location_t loc, tree low_value, tree high_value)
3166 tree cond, r;
3167 cp_binding_level *p;
3168 tree type;
3170 if (processing_template_decl)
3172 tree label;
3174 /* For templates, just add the case label; we'll do semantic
3175 analysis at instantiation-time. */
3176 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
3177 return add_stmt (build_case_label (low_value, high_value, label));
3180 /* Find the condition on which this switch statement depends. */
3181 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3182 if (cond && TREE_CODE (cond) == TREE_LIST)
3183 cond = TREE_VALUE (cond);
3185 if (!check_switch_goto (switch_stack->level))
3186 return error_mark_node;
3188 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3190 low_value = case_conversion (type, low_value);
3191 high_value = case_conversion (type, high_value);
3193 r = c_add_case_label (loc, switch_stack->cases, cond, type,
3194 low_value, high_value);
3196 /* After labels, make any new cleanups in the function go into their
3197 own new (temporary) binding contour. */
3198 for (p = current_binding_level;
3199 p->kind != sk_function_parms;
3200 p = p->level_chain)
3201 p->more_cleanups_ok = 0;
3203 return r;
3206 /* Hash a TYPENAME_TYPE. K is really of type `tree'. */
3208 static hashval_t
3209 typename_hash (const void* k)
3211 hashval_t hash;
3212 const_tree const t = (const_tree) k;
3214 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3215 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3217 return hash;
3220 typedef struct typename_info {
3221 tree scope;
3222 tree name;
3223 tree template_id;
3224 bool enum_p;
3225 bool class_p;
3226 } typename_info;
3228 /* Compare two TYPENAME_TYPEs. K1 is really of type `tree', K2 is
3229 really of type `typename_info*' */
3231 static int
3232 typename_compare (const void * k1, const void * k2)
3234 const_tree const t1 = (const_tree) k1;
3235 const typename_info *const t2 = (const typename_info *) k2;
3237 return (TYPE_IDENTIFIER (t1) == t2->name
3238 && TYPE_CONTEXT (t1) == t2->scope
3239 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3240 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3241 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3244 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3245 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3247 Returns the new TYPENAME_TYPE. */
3249 static GTY ((param_is (union tree_node))) htab_t typename_htab;
3251 static tree
3252 build_typename_type (tree context, tree name, tree fullname,
3253 enum tag_types tag_type)
3255 tree t;
3256 tree d;
3257 typename_info ti;
3258 void **e;
3259 hashval_t hash;
3261 if (typename_htab == NULL)
3262 typename_htab = htab_create_ggc (61, &typename_hash,
3263 &typename_compare, NULL);
3265 ti.scope = FROB_CONTEXT (context);
3266 ti.name = name;
3267 ti.template_id = fullname;
3268 ti.enum_p = tag_type == enum_type;
3269 ti.class_p = (tag_type == class_type
3270 || tag_type == record_type
3271 || tag_type == union_type);
3272 hash = (htab_hash_pointer (ti.scope)
3273 ^ htab_hash_pointer (ti.name));
3275 /* See if we already have this type. */
3276 e = htab_find_slot_with_hash (typename_htab, &ti, hash, INSERT);
3277 if (*e)
3278 t = (tree) *e;
3279 else
3281 /* Build the TYPENAME_TYPE. */
3282 t = cxx_make_type (TYPENAME_TYPE);
3283 TYPE_CONTEXT (t) = ti.scope;
3284 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3285 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3286 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3288 /* Build the corresponding TYPE_DECL. */
3289 d = build_decl (input_location, TYPE_DECL, name, t);
3290 TYPE_NAME (TREE_TYPE (d)) = d;
3291 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3292 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3293 DECL_ARTIFICIAL (d) = 1;
3295 /* Store it in the hash table. */
3296 *e = t;
3298 /* TYPENAME_TYPEs must always be compared structurally, because
3299 they may or may not resolve down to another type depending on
3300 the currently open classes. */
3301 SET_TYPE_STRUCTURAL_EQUALITY (t);
3304 return t;
3307 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3308 provided to name the type. Returns an appropriate type, unless an
3309 error occurs, in which case error_mark_node is returned. If we
3310 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3311 return that, rather than the _TYPE it corresponds to, in other
3312 cases we look through the type decl. If TF_ERROR is set, complain
3313 about errors, otherwise be quiet. */
3315 tree
3316 make_typename_type (tree context, tree name, enum tag_types tag_type,
3317 tsubst_flags_t complain)
3319 tree fullname;
3320 tree t;
3321 bool want_template;
3323 if (name == error_mark_node
3324 || context == NULL_TREE
3325 || context == error_mark_node)
3326 return error_mark_node;
3328 if (TYPE_P (name))
3330 if (!(TYPE_LANG_SPECIFIC (name)
3331 && (CLASSTYPE_IS_TEMPLATE (name)
3332 || CLASSTYPE_USE_TEMPLATE (name))))
3333 name = TYPE_IDENTIFIER (name);
3334 else
3335 /* Create a TEMPLATE_ID_EXPR for the type. */
3336 name = build_nt (TEMPLATE_ID_EXPR,
3337 CLASSTYPE_TI_TEMPLATE (name),
3338 CLASSTYPE_TI_ARGS (name));
3340 else if (TREE_CODE (name) == TYPE_DECL)
3341 name = DECL_NAME (name);
3343 fullname = name;
3345 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3347 name = TREE_OPERAND (name, 0);
3348 if (TREE_CODE (name) == TEMPLATE_DECL)
3349 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3350 else if (TREE_CODE (name) == OVERLOAD)
3352 if (complain & tf_error)
3353 error ("%qD is not a type", name);
3354 return error_mark_node;
3357 if (TREE_CODE (name) == TEMPLATE_DECL)
3359 if (complain & tf_error)
3360 error ("%qD used without template parameters", name);
3361 return error_mark_node;
3363 gcc_assert (identifier_p (name));
3364 gcc_assert (TYPE_P (context));
3366 if (!MAYBE_CLASS_TYPE_P (context))
3368 if (complain & tf_error)
3369 error ("%q#T is not a class", context);
3370 return error_mark_node;
3373 /* When the CONTEXT is a dependent type, NAME could refer to a
3374 dependent base class of CONTEXT. But look inside it anyway
3375 if CONTEXT is a currently open scope, in case it refers to a
3376 member of the current instantiation or a non-dependent base;
3377 lookup will stop when we hit a dependent base. */
3378 if (!dependent_scope_p (context))
3379 /* We should only set WANT_TYPE when we're a nested typename type.
3380 Then we can give better diagnostics if we find a non-type. */
3381 t = lookup_field (context, name, 2, /*want_type=*/true);
3382 else
3383 t = NULL_TREE;
3385 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3386 return build_typename_type (context, name, fullname, tag_type);
3388 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3390 if (!t)
3392 if (complain & tf_error)
3393 error (want_template ? G_("no class template named %q#T in %q#T")
3394 : G_("no type named %q#T in %q#T"), name, context);
3395 return error_mark_node;
3398 /* Pull out the template from an injected-class-name (or multiple). */
3399 if (want_template)
3400 t = maybe_get_template_decl_from_type_decl (t);
3402 if (TREE_CODE (t) == TREE_LIST)
3404 if (complain & tf_error)
3406 error ("lookup of %qT in %qT is ambiguous", name, context);
3407 print_candidates (t);
3409 return error_mark_node;
3412 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3414 if (complain & tf_error)
3415 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3416 context, name, t);
3417 return error_mark_node;
3419 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3421 if (complain & tf_error)
3422 error ("%<typename %T::%D%> names %q#T, which is not a type",
3423 context, name, t);
3424 return error_mark_node;
3427 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3428 return error_mark_node;
3430 /* If we are currently parsing a template and if T is a typedef accessed
3431 through CONTEXT then we need to remember and check access of T at
3432 template instantiation time. */
3433 add_typedef_to_current_template_for_access_check (t, context, input_location);
3435 if (want_template)
3436 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3437 NULL_TREE, context,
3438 /*entering_scope=*/0,
3439 tf_warning_or_error | tf_user);
3441 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3442 t = TREE_TYPE (t);
3444 maybe_record_typedef_use (t);
3446 return t;
3449 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3450 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3451 in which case error_mark_node is returned.
3453 If PARM_LIST is non-NULL, also make sure that the template parameter
3454 list of TEMPLATE_DECL matches.
3456 If COMPLAIN zero, don't complain about any errors that occur. */
3458 tree
3459 make_unbound_class_template (tree context, tree name, tree parm_list,
3460 tsubst_flags_t complain)
3462 tree t;
3463 tree d;
3465 if (TYPE_P (name))
3466 name = TYPE_IDENTIFIER (name);
3467 else if (DECL_P (name))
3468 name = DECL_NAME (name);
3469 gcc_assert (identifier_p (name));
3471 if (!dependent_type_p (context)
3472 || currently_open_class (context))
3474 tree tmpl = NULL_TREE;
3476 if (MAYBE_CLASS_TYPE_P (context))
3477 tmpl = lookup_field (context, name, 0, false);
3479 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3480 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3482 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3484 if (complain & tf_error)
3485 error ("no class template named %q#T in %q#T", name, context);
3486 return error_mark_node;
3489 if (parm_list
3490 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3492 if (complain & tf_error)
3494 error ("template parameters do not match template");
3495 error ("%q+D declared here", tmpl);
3497 return error_mark_node;
3500 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
3501 complain))
3502 return error_mark_node;
3504 return tmpl;
3507 /* Build the UNBOUND_CLASS_TEMPLATE. */
3508 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3509 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3510 TREE_TYPE (t) = NULL_TREE;
3511 SET_TYPE_STRUCTURAL_EQUALITY (t);
3513 /* Build the corresponding TEMPLATE_DECL. */
3514 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3515 TYPE_NAME (TREE_TYPE (d)) = d;
3516 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3517 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3518 DECL_ARTIFICIAL (d) = 1;
3519 DECL_TEMPLATE_PARMS (d) = parm_list;
3521 return t;
3526 /* Push the declarations of builtin types into the namespace.
3527 RID_INDEX is the index of the builtin type in the array
3528 RID_POINTERS. NAME is the name used when looking up the builtin
3529 type. TYPE is the _TYPE node for the builtin type. */
3531 void
3532 record_builtin_type (enum rid rid_index,
3533 const char* name,
3534 tree type)
3536 tree rname = NULL_TREE, tname = NULL_TREE;
3537 tree tdecl = NULL_TREE;
3539 if ((int) rid_index < (int) RID_MAX)
3540 rname = ridpointers[(int) rid_index];
3541 if (name)
3542 tname = get_identifier (name);
3544 /* The calls to SET_IDENTIFIER_GLOBAL_VALUE below should be
3545 eliminated. Built-in types should not be looked up name; their
3546 names are keywords that the parser can recognize. However, there
3547 is code in c-common.c that uses identifier_global_value to look
3548 up built-in types by name. */
3549 if (tname)
3551 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
3552 DECL_ARTIFICIAL (tdecl) = 1;
3553 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
3555 if (rname)
3557 if (!tdecl)
3559 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
3560 DECL_ARTIFICIAL (tdecl) = 1;
3562 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
3565 if (!TYPE_NAME (type))
3566 TYPE_NAME (type) = tdecl;
3568 if (tdecl)
3569 debug_hooks->type_decl (tdecl, 0);
3572 /* Record one of the standard Java types.
3573 * Declare it as having the given NAME.
3574 * If SIZE > 0, it is the size of one of the integral types;
3575 * otherwise it is the negative of the size of one of the other types. */
3577 static tree
3578 record_builtin_java_type (const char* name, int size)
3580 tree type, decl;
3581 if (size > 0)
3583 type = build_nonstandard_integer_type (size, 0);
3584 type = build_distinct_type_copy (type);
3586 else if (size > -32)
3588 tree stype;
3589 /* "__java_char" or ""__java_boolean". */
3590 type = build_nonstandard_integer_type (-size, 1);
3591 type = build_distinct_type_copy (type);
3592 /* Get the signed type cached and attached to the unsigned type,
3593 so it doesn't get garbage-collected at "random" times,
3594 causing potential codegen differences out of different UIDs
3595 and different alias set numbers. */
3596 stype = build_nonstandard_integer_type (-size, 0);
3597 stype = build_distinct_type_copy (stype);
3598 TREE_CHAIN (type) = stype;
3599 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
3601 else
3602 { /* "__java_float" or ""__java_double". */
3603 type = make_node (REAL_TYPE);
3604 TYPE_PRECISION (type) = - size;
3605 layout_type (type);
3607 record_builtin_type (RID_MAX, name, type);
3608 decl = TYPE_NAME (type);
3610 /* Suppress generate debug symbol entries for these types,
3611 since for normal C++ they are just clutter.
3612 However, push_lang_context undoes this if extern "Java" is seen. */
3613 DECL_IGNORED_P (decl) = 1;
3615 TYPE_FOR_JAVA (type) = 1;
3616 return type;
3619 /* Push a type into the namespace so that the back ends ignore it. */
3621 static void
3622 record_unknown_type (tree type, const char* name)
3624 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
3625 TYPE_DECL, get_identifier (name), type));
3626 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3627 DECL_IGNORED_P (decl) = 1;
3628 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
3629 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
3630 TYPE_ALIGN (type) = 1;
3631 TYPE_USER_ALIGN (type) = 0;
3632 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
3635 /* A string for which we should create an IDENTIFIER_NODE at
3636 startup. */
3638 typedef struct predefined_identifier
3640 /* The name of the identifier. */
3641 const char *const name;
3642 /* The place where the IDENTIFIER_NODE should be stored. */
3643 tree *const node;
3644 /* Nonzero if this is the name of a constructor or destructor. */
3645 const int ctor_or_dtor_p;
3646 } predefined_identifier;
3648 /* Create all the predefined identifiers. */
3650 static void
3651 initialize_predefined_identifiers (void)
3653 const predefined_identifier *pid;
3655 /* A table of identifiers to create at startup. */
3656 static const predefined_identifier predefined_identifiers[] = {
3657 { "C++", &lang_name_cplusplus, 0 },
3658 { "C", &lang_name_c, 0 },
3659 { "Java", &lang_name_java, 0 },
3660 /* Some of these names have a trailing space so that it is
3661 impossible for them to conflict with names written by users. */
3662 { "__ct ", &ctor_identifier, 1 },
3663 { "__base_ctor ", &base_ctor_identifier, 1 },
3664 { "__comp_ctor ", &complete_ctor_identifier, 1 },
3665 { "__dt ", &dtor_identifier, 1 },
3666 { "__comp_dtor ", &complete_dtor_identifier, 1 },
3667 { "__base_dtor ", &base_dtor_identifier, 1 },
3668 { "__deleting_dtor ", &deleting_dtor_identifier, 1 },
3669 { IN_CHARGE_NAME, &in_charge_identifier, 0 },
3670 { "nelts", &nelts_identifier, 0 },
3671 { THIS_NAME, &this_identifier, 0 },
3672 { VTABLE_DELTA_NAME, &delta_identifier, 0 },
3673 { VTABLE_PFN_NAME, &pfn_identifier, 0 },
3674 { "_vptr", &vptr_identifier, 0 },
3675 { "__vtt_parm", &vtt_parm_identifier, 0 },
3676 { "::", &global_scope_name, 0 },
3677 { "std", &std_identifier, 0 },
3678 { NULL, NULL, 0 }
3681 for (pid = predefined_identifiers; pid->name; ++pid)
3683 *pid->node = get_identifier (pid->name);
3684 if (pid->ctor_or_dtor_p)
3685 IDENTIFIER_CTOR_OR_DTOR_P (*pid->node) = 1;
3689 /* Create the predefined scalar types of C,
3690 and some nodes representing standard constants (0, 1, (void *)0).
3691 Initialize the global binding level.
3692 Make definitions for built-in primitive functions. */
3694 void
3695 cxx_init_decl_processing (void)
3697 tree void_ftype;
3698 tree void_ftype_ptr;
3700 /* Create all the identifiers we need. */
3701 initialize_predefined_identifiers ();
3703 /* Create the global variables. */
3704 push_to_top_level ();
3706 current_function_decl = NULL_TREE;
3707 current_binding_level = NULL;
3708 /* Enter the global namespace. */
3709 gcc_assert (global_namespace == NULL_TREE);
3710 global_namespace = build_lang_decl (NAMESPACE_DECL, global_scope_name,
3711 void_type_node);
3712 DECL_CONTEXT (global_namespace) = build_translation_unit_decl (NULL_TREE);
3713 TREE_PUBLIC (global_namespace) = 1;
3714 begin_scope (sk_namespace, global_namespace);
3716 if (flag_visibility_ms_compat)
3717 default_visibility = VISIBILITY_HIDDEN;
3719 /* Initially, C. */
3720 current_lang_name = lang_name_c;
3722 /* Create the `std' namespace. */
3723 push_namespace (std_identifier);
3724 std_node = current_namespace;
3725 pop_namespace ();
3727 c_common_nodes_and_builtins ();
3729 java_byte_type_node = record_builtin_java_type ("__java_byte", 8);
3730 java_short_type_node = record_builtin_java_type ("__java_short", 16);
3731 java_int_type_node = record_builtin_java_type ("__java_int", 32);
3732 java_long_type_node = record_builtin_java_type ("__java_long", 64);
3733 java_float_type_node = record_builtin_java_type ("__java_float", -32);
3734 java_double_type_node = record_builtin_java_type ("__java_double", -64);
3735 java_char_type_node = record_builtin_java_type ("__java_char", -16);
3736 java_boolean_type_node = record_builtin_java_type ("__java_boolean", -1);
3738 integer_two_node = build_int_cst (NULL_TREE, 2);
3740 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
3741 truthvalue_type_node = boolean_type_node;
3742 truthvalue_false_node = boolean_false_node;
3743 truthvalue_true_node = boolean_true_node;
3745 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
3746 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
3747 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
3749 #if 0
3750 record_builtin_type (RID_MAX, NULL, string_type_node);
3751 #endif
3753 delta_type_node = ptrdiff_type_node;
3754 vtable_index_type = ptrdiff_type_node;
3756 vtt_parm_type = build_pointer_type (const_ptr_type_node);
3757 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
3758 void_ftype_ptr = build_function_type_list (void_type_node,
3759 ptr_type_node, NULL_TREE);
3760 void_ftype_ptr
3761 = build_exception_variant (void_ftype_ptr, empty_except_spec);
3763 /* C++ extensions */
3765 unknown_type_node = make_node (LANG_TYPE);
3766 record_unknown_type (unknown_type_node, "unknown type");
3768 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
3769 TREE_TYPE (unknown_type_node) = unknown_type_node;
3771 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
3772 result. */
3773 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
3774 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
3776 init_list_type_node = make_node (LANG_TYPE);
3777 record_unknown_type (init_list_type_node, "init list");
3780 /* Make sure we get a unique function type, so we can give
3781 its pointer type a name. (This wins for gdb.) */
3782 tree vfunc_type = make_node (FUNCTION_TYPE);
3783 TREE_TYPE (vfunc_type) = integer_type_node;
3784 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
3785 layout_type (vfunc_type);
3787 vtable_entry_type = build_pointer_type (vfunc_type);
3789 record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
3791 vtbl_type_node
3792 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
3793 layout_type (vtbl_type_node);
3794 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
3795 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
3796 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
3797 layout_type (vtbl_ptr_type_node);
3798 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
3800 push_namespace (get_identifier ("__cxxabiv1"));
3801 abi_node = current_namespace;
3802 pop_namespace ();
3804 global_type_node = make_node (LANG_TYPE);
3805 record_unknown_type (global_type_node, "global type");
3807 /* Now, C++. */
3808 current_lang_name = lang_name_cplusplus;
3811 tree newattrs, extvisattr;
3812 tree newtype, deltype;
3813 tree ptr_ftype_sizetype;
3814 tree new_eh_spec;
3816 ptr_ftype_sizetype
3817 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
3818 if (cxx_dialect == cxx98)
3820 tree bad_alloc_id;
3821 tree bad_alloc_type_node;
3822 tree bad_alloc_decl;
3824 push_namespace (std_identifier);
3825 bad_alloc_id = get_identifier ("bad_alloc");
3826 bad_alloc_type_node = make_class_type (RECORD_TYPE);
3827 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
3828 bad_alloc_decl
3829 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
3830 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
3831 pop_namespace ();
3833 new_eh_spec
3834 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
3836 else
3837 new_eh_spec = noexcept_false_spec;
3839 /* Ensure attribs.c is initialized. */
3840 init_attributes ();
3841 extvisattr = build_tree_list (get_identifier ("externally_visible"),
3842 NULL_TREE);
3843 newattrs = tree_cons (get_identifier ("alloc_size"),
3844 build_tree_list (NULL_TREE, integer_one_node),
3845 extvisattr);
3846 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
3847 newtype = build_exception_variant (newtype, new_eh_spec);
3848 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
3849 deltype = build_exception_variant (deltype, empty_except_spec);
3850 DECL_IS_OPERATOR_NEW (push_cp_library_fn (NEW_EXPR, newtype, 0)) = 1;
3851 DECL_IS_OPERATOR_NEW (push_cp_library_fn (VEC_NEW_EXPR, newtype, 0)) = 1;
3852 global_delete_fndecl = push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
3853 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
3855 nullptr_type_node = make_node (NULLPTR_TYPE);
3856 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
3857 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
3858 TYPE_UNSIGNED (nullptr_type_node) = 1;
3859 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
3860 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
3861 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
3862 nullptr_node = build_int_cst (nullptr_type_node, 0);
3865 abort_fndecl
3866 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
3867 ECF_NORETURN | ECF_NOTHROW);
3869 /* Perform other language dependent initializations. */
3870 init_class_processing ();
3871 init_rtti_processing ();
3872 init_template_processing ();
3874 if (flag_exceptions)
3875 init_exception_processing ();
3877 if (! supports_one_only ())
3878 flag_weak = 0;
3880 make_fname_decl = cp_make_fname_decl;
3881 start_fname_decls ();
3883 /* Show we use EH for cleanups. */
3884 if (flag_exceptions)
3885 using_eh_for_cleanups ();
3888 /* Generate an initializer for a function naming variable from
3889 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
3890 filled in with the type of the init. */
3892 tree
3893 cp_fname_init (const char* name, tree *type_p)
3895 tree domain = NULL_TREE;
3896 tree type;
3897 tree init = NULL_TREE;
3898 size_t length = 0;
3900 if (name)
3902 length = strlen (name);
3903 domain = build_index_type (size_int (length));
3904 init = build_string (length + 1, name);
3907 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
3908 type = build_cplus_array_type (type, domain);
3910 *type_p = type;
3912 if (init)
3913 TREE_TYPE (init) = type;
3914 else
3915 init = error_mark_node;
3917 return init;
3920 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
3921 the decl, LOC is the location to give the decl, NAME is the
3922 initialization string and TYPE_DEP indicates whether NAME depended
3923 on the type of the function. We make use of that to detect
3924 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
3925 at the point of first use, so we mustn't push the decl now. */
3927 static tree
3928 cp_make_fname_decl (location_t loc, tree id, int type_dep)
3930 const char *const name = (type_dep && processing_template_decl
3931 ? NULL : fname_as_string (type_dep));
3932 tree type;
3933 tree init = cp_fname_init (name, &type);
3934 tree decl = build_decl (loc, VAR_DECL, id, type);
3936 if (name)
3937 free (CONST_CAST (char *, name));
3939 /* As we're using pushdecl_with_scope, we must set the context. */
3940 DECL_CONTEXT (decl) = current_function_decl;
3942 TREE_STATIC (decl) = 1;
3943 TREE_READONLY (decl) = 1;
3944 DECL_ARTIFICIAL (decl) = 1;
3946 TREE_USED (decl) = 1;
3948 if (current_function_decl)
3950 cp_binding_level *b = current_binding_level;
3951 if (b->kind == sk_function_parms)
3952 return error_mark_node;
3953 while (b->level_chain->kind != sk_function_parms)
3954 b = b->level_chain;
3955 pushdecl_with_scope (decl, b, /*is_friend=*/false);
3956 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
3957 LOOKUP_ONLYCONVERTING);
3959 else
3961 DECL_THIS_STATIC (decl) = true;
3962 pushdecl_top_level_and_finish (decl, init);
3965 return decl;
3968 static tree
3969 builtin_function_1 (tree decl, tree context, bool is_global)
3971 tree id = DECL_NAME (decl);
3972 const char *name = IDENTIFIER_POINTER (id);
3974 retrofit_lang_decl (decl);
3976 DECL_ARTIFICIAL (decl) = 1;
3977 SET_OVERLOADED_OPERATOR_CODE (decl, ERROR_MARK);
3978 SET_DECL_LANGUAGE (decl, lang_c);
3979 /* Runtime library routines are, by definition, available in an
3980 external shared object. */
3981 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
3982 DECL_VISIBILITY_SPECIFIED (decl) = 1;
3984 DECL_CONTEXT (decl) = context;
3986 if (is_global)
3987 pushdecl_top_level (decl);
3988 else
3989 pushdecl (decl);
3991 /* A function in the user's namespace should have an explicit
3992 declaration before it is used. Mark the built-in function as
3993 anticipated but not actually declared. */
3994 if (name[0] != '_' || name[1] != '_')
3995 DECL_ANTICIPATED (decl) = 1;
3996 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
3998 size_t len = strlen (name);
4000 /* Treat __*_chk fortification functions as anticipated as well,
4001 unless they are __builtin_*. */
4002 if (len > strlen ("___chk")
4003 && memcmp (name + len - strlen ("_chk"),
4004 "_chk", strlen ("_chk") + 1) == 0)
4005 DECL_ANTICIPATED (decl) = 1;
4008 return decl;
4011 tree
4012 cxx_builtin_function (tree decl)
4014 tree id = DECL_NAME (decl);
4015 const char *name = IDENTIFIER_POINTER (id);
4016 /* All builtins that don't begin with an '_' should additionally
4017 go in the 'std' namespace. */
4018 if (name[0] != '_')
4020 tree decl2 = copy_node(decl);
4021 push_namespace (std_identifier);
4022 builtin_function_1 (decl2, std_node, false);
4023 pop_namespace ();
4026 return builtin_function_1 (decl, NULL_TREE, false);
4029 /* Like cxx_builtin_function, but guarantee the function is added to the global
4030 scope. This is to allow function specific options to add new machine
4031 dependent builtins when the target ISA changes via attribute((target(...)))
4032 which saves space on program startup if the program does not use non-generic
4033 ISAs. */
4035 tree
4036 cxx_builtin_function_ext_scope (tree decl)
4039 tree id = DECL_NAME (decl);
4040 const char *name = IDENTIFIER_POINTER (id);
4041 /* All builtins that don't begin with an '_' should additionally
4042 go in the 'std' namespace. */
4043 if (name[0] != '_')
4045 tree decl2 = copy_node(decl);
4046 push_namespace (std_identifier);
4047 builtin_function_1 (decl2, std_node, true);
4048 pop_namespace ();
4051 return builtin_function_1 (decl, NULL_TREE, true);
4054 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4055 function. Not called directly. */
4057 static tree
4058 build_library_fn (tree name, enum tree_code operator_code, tree type,
4059 int ecf_flags)
4061 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4062 DECL_EXTERNAL (fn) = 1;
4063 TREE_PUBLIC (fn) = 1;
4064 DECL_ARTIFICIAL (fn) = 1;
4065 SET_OVERLOADED_OPERATOR_CODE (fn, operator_code);
4066 SET_DECL_LANGUAGE (fn, lang_c);
4067 /* Runtime library routines are, by definition, available in an
4068 external shared object. */
4069 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4070 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4071 set_call_expr_flags (fn, ecf_flags);
4072 return fn;
4075 /* Returns the _DECL for a library function with C++ linkage. */
4077 static tree
4078 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4079 int ecf_flags)
4081 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4082 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4083 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4084 return fn;
4087 /* Like build_library_fn, but takes a C string instead of an
4088 IDENTIFIER_NODE. */
4090 tree
4091 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4093 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4096 /* Like build_cp_library_fn, but takes a C string instead of an
4097 IDENTIFIER_NODE. */
4099 tree
4100 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4102 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4103 ecf_flags);
4106 /* Like build_library_fn, but also pushes the function so that we will
4107 be able to find it via IDENTIFIER_GLOBAL_VALUE. Also, the function
4108 may throw exceptions listed in RAISES. */
4110 tree
4111 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4113 tree fn;
4115 if (raises)
4116 type = build_exception_variant (type, raises);
4118 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4119 pushdecl_top_level (fn);
4120 return fn;
4123 /* Like build_cp_library_fn, but also pushes the function so that it
4124 will be found by normal lookup. */
4126 static tree
4127 push_cp_library_fn (enum tree_code operator_code, tree type,
4128 int ecf_flags)
4130 tree fn = build_cp_library_fn (ansi_opname (operator_code),
4131 operator_code,
4132 type, ecf_flags);
4133 pushdecl (fn);
4134 if (flag_tm)
4135 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4136 return fn;
4139 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4140 a FUNCTION_TYPE. */
4142 tree
4143 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4145 tree type = build_function_type (void_type_node, parmtypes);
4146 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4149 /* Like push_library_fn, but also note that this function throws
4150 and does not return. Used for __throw_foo and the like. */
4152 tree
4153 push_throw_library_fn (tree name, tree type)
4155 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN);
4156 return fn;
4159 /* When we call finish_struct for an anonymous union, we create
4160 default copy constructors and such. But, an anonymous union
4161 shouldn't have such things; this function undoes the damage to the
4162 anonymous union type T.
4164 (The reason that we create the synthesized methods is that we don't
4165 distinguish `union { int i; }' from `typedef union { int i; } U'.
4166 The first is an anonymous union; the second is just an ordinary
4167 union type.) */
4169 void
4170 fixup_anonymous_aggr (tree t)
4172 tree *q;
4174 /* Wipe out memory of synthesized methods. */
4175 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4176 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4177 TYPE_HAS_COPY_CTOR (t) = 0;
4178 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4179 TYPE_HAS_COPY_ASSIGN (t) = 0;
4180 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4182 /* Splice the implicitly generated functions out of the TYPE_METHODS
4183 list. */
4184 q = &TYPE_METHODS (t);
4185 while (*q)
4187 if (DECL_ARTIFICIAL (*q))
4188 *q = TREE_CHAIN (*q);
4189 else
4190 q = &DECL_CHAIN (*q);
4193 /* ISO C++ 9.5.3. Anonymous unions may not have function members. */
4194 if (TYPE_METHODS (t))
4196 tree decl = TYPE_MAIN_DECL (t);
4198 if (TREE_CODE (t) != UNION_TYPE)
4199 error_at (DECL_SOURCE_LOCATION (decl),
4200 "an anonymous struct cannot have function members");
4201 else
4202 error_at (DECL_SOURCE_LOCATION (decl),
4203 "an anonymous union cannot have function members");
4206 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4207 assignment operators (because they cannot have these methods themselves).
4208 For anonymous unions this is already checked because they are not allowed
4209 in any union, otherwise we have to check it. */
4210 if (TREE_CODE (t) != UNION_TYPE)
4212 tree field, type;
4214 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4215 if (TREE_CODE (field) == FIELD_DECL)
4217 type = TREE_TYPE (field);
4218 if (CLASS_TYPE_P (type))
4220 if (TYPE_NEEDS_CONSTRUCTING (type))
4221 error ("member %q+#D with constructor not allowed "
4222 "in anonymous aggregate", field);
4223 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4224 error ("member %q+#D with destructor not allowed "
4225 "in anonymous aggregate", field);
4226 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4227 error ("member %q+#D with copy assignment operator "
4228 "not allowed in anonymous aggregate", field);
4234 /* Warn for an attribute located at LOCATION that appertains to the
4235 class type CLASS_TYPE that has not been properly placed after its
4236 class-key, in it class-specifier. */
4238 void
4239 warn_misplaced_attr_for_class_type (source_location location,
4240 tree class_type)
4242 gcc_assert (OVERLOAD_TYPE_P (class_type));
4244 warning_at (location, OPT_Wattributes,
4245 "attribute ignored in declaration "
4246 "of %q#T", class_type);
4247 inform (location,
4248 "attribute for %q#T must follow the %qs keyword",
4249 class_type, class_key_or_enum_as_string (class_type));
4252 /* Make sure that a declaration with no declarator is well-formed, i.e.
4253 just declares a tagged type or anonymous union.
4255 Returns the type declared; or NULL_TREE if none. */
4257 tree
4258 check_tag_decl (cp_decl_specifier_seq *declspecs,
4259 bool explicit_type_instantiation_p)
4261 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4262 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4263 /* If a class, struct, or enum type is declared by the DECLSPECS
4264 (i.e, if a class-specifier, enum-specifier, or non-typename
4265 elaborated-type-specifier appears in the DECLSPECS),
4266 DECLARED_TYPE is set to the corresponding type. */
4267 tree declared_type = NULL_TREE;
4268 bool error_p = false;
4270 if (declspecs->multiple_types_p)
4271 error ("multiple types in one declaration");
4272 else if (declspecs->redefined_builtin_type)
4274 if (!in_system_header_at (input_location))
4275 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4276 "redeclaration of C++ built-in type %qT",
4277 declspecs->redefined_builtin_type);
4278 return NULL_TREE;
4281 if (declspecs->type
4282 && TYPE_P (declspecs->type)
4283 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4284 && MAYBE_CLASS_TYPE_P (declspecs->type))
4285 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4286 declared_type = declspecs->type;
4287 else if (declspecs->type == error_mark_node)
4288 error_p = true;
4289 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
4290 permerror (input_location, "declaration does not declare anything");
4291 else if (declared_type != NULL_TREE && type_uses_auto (declared_type))
4293 error ("%<auto%> can only be specified for variables "
4294 "or function declarations");
4295 return error_mark_node;
4297 /* Check for an anonymous union. */
4298 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4299 && TYPE_ANONYMOUS_P (declared_type))
4301 /* 7/3 In a simple-declaration, the optional init-declarator-list
4302 can be omitted only when declaring a class (clause 9) or
4303 enumeration (7.2), that is, when the decl-specifier-seq contains
4304 either a class-specifier, an elaborated-type-specifier with
4305 a class-key (9.1), or an enum-specifier. In these cases and
4306 whenever a class-specifier or enum-specifier is present in the
4307 decl-specifier-seq, the identifiers in these specifiers are among
4308 the names being declared by the declaration (as class-name,
4309 enum-names, or enumerators, depending on the syntax). In such
4310 cases, and except for the declaration of an unnamed bit-field (9.6),
4311 the decl-specifier-seq shall introduce one or more names into the
4312 program, or shall redeclare a name introduced by a previous
4313 declaration. [Example:
4314 enum { }; // ill-formed
4315 typedef class { }; // ill-formed
4316 --end example] */
4317 if (saw_typedef)
4319 error ("missing type-name in typedef-declaration");
4320 return NULL_TREE;
4322 /* Anonymous unions are objects, so they can have specifiers. */;
4323 SET_ANON_AGGR_TYPE_P (declared_type);
4325 if (TREE_CODE (declared_type) != UNION_TYPE
4326 && !in_system_header_at (input_location))
4327 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4330 else
4332 if (decl_spec_seq_has_spec_p (declspecs, ds_inline)
4333 || decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4334 error ("%qs can only be specified for functions",
4335 decl_spec_seq_has_spec_p (declspecs, ds_inline)
4336 ? "inline" : "virtual");
4337 else if (saw_friend
4338 && (!current_class_type
4339 || current_scope () != current_class_type))
4340 error ("%<friend%> can only be specified inside a class");
4341 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4342 error ("%<explicit%> can only be specified for constructors");
4343 else if (declspecs->storage_class)
4344 error ("a storage class can only be specified for objects "
4345 "and functions");
4346 else if (decl_spec_seq_has_spec_p (declspecs, ds_const)
4347 || decl_spec_seq_has_spec_p (declspecs, ds_volatile)
4348 || decl_spec_seq_has_spec_p (declspecs, ds_restrict)
4349 || decl_spec_seq_has_spec_p (declspecs, ds_thread))
4350 error ("qualifiers can only be specified for objects "
4351 "and functions");
4352 else if (saw_typedef)
4353 warning (0, "%<typedef%> was ignored in this declaration");
4354 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4355 error ("%<constexpr%> cannot be used for type declarations");
4358 if (declspecs->attributes && warn_attributes && declared_type)
4360 location_t loc;
4361 if (!CLASS_TYPE_P (declared_type)
4362 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4363 /* For a non-template class, use the name location. */
4364 loc = location_of (declared_type);
4365 else
4366 /* For a template class (an explicit instantiation), use the
4367 current location. */
4368 loc = input_location;
4370 if (explicit_type_instantiation_p)
4371 /* [dcl.attr.grammar]/4:
4373 No attribute-specifier-seq shall appertain to an explicit
4374 instantiation. */
4376 warning_at (loc, OPT_Wattributes,
4377 "attribute ignored in explicit instantiation %q#T",
4378 declared_type);
4379 inform (loc,
4380 "no attribute can be applied to "
4381 "an explicit instantiation");
4383 else
4384 warn_misplaced_attr_for_class_type (loc, declared_type);
4387 return declared_type;
4390 /* Called when a declaration is seen that contains no names to declare.
4391 If its type is a reference to a structure, union or enum inherited
4392 from a containing scope, shadow that tag name for the current scope
4393 with a forward reference.
4394 If its type defines a new named structure or union
4395 or defines an enum, it is valid but we need not do anything here.
4396 Otherwise, it is an error.
4398 C++: may have to grok the declspecs to learn about static,
4399 complain for anonymous unions.
4401 Returns the TYPE declared -- or NULL_TREE if none. */
4403 tree
4404 shadow_tag (cp_decl_specifier_seq *declspecs)
4406 tree t = check_tag_decl (declspecs,
4407 /*explicit_type_instantiation_p=*/false);
4409 if (!t)
4410 return NULL_TREE;
4412 if (maybe_process_partial_specialization (t) == error_mark_node)
4413 return NULL_TREE;
4415 /* This is where the variables in an anonymous union are
4416 declared. An anonymous union declaration looks like:
4417 union { ... } ;
4418 because there is no declarator after the union, the parser
4419 sends that declaration here. */
4420 if (ANON_AGGR_TYPE_P (t))
4422 fixup_anonymous_aggr (t);
4424 if (TYPE_FIELDS (t))
4426 tree decl = grokdeclarator (/*declarator=*/NULL,
4427 declspecs, NORMAL, 0, NULL);
4428 finish_anon_union (decl);
4432 return t;
4435 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4437 tree
4438 groktypename (cp_decl_specifier_seq *type_specifiers,
4439 const cp_declarator *declarator,
4440 bool is_template_arg)
4442 tree attrs;
4443 tree type;
4444 enum decl_context context
4445 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
4446 attrs = type_specifiers->attributes;
4447 type_specifiers->attributes = NULL_TREE;
4448 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
4449 if (attrs && type != error_mark_node)
4451 if (CLASS_TYPE_P (type))
4452 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
4453 "outside of definition", type);
4454 else if (MAYBE_CLASS_TYPE_P (type))
4455 /* A template type parameter or other dependent type. */
4456 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
4457 "type %qT without an associated declaration", type);
4458 else
4459 cplus_decl_attributes (&type, attrs, 0);
4461 return type;
4464 /* Process a DECLARATOR for a function-scope variable declaration,
4465 namespace-scope variable declaration, or function declaration.
4466 (Function definitions go through start_function; class member
4467 declarations appearing in the body of the class go through
4468 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4469 If an error occurs, the error_mark_node is returned instead.
4471 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
4472 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
4473 for an explicitly defaulted function, or SD_DELETED for an explicitly
4474 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
4475 implicitly initialized via a default constructor. ATTRIBUTES and
4476 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
4478 The scope represented by the context of the returned DECL is pushed
4479 (if it is not the global namespace) and is assigned to
4480 *PUSHED_SCOPE_P. The caller is then responsible for calling
4481 pop_scope on *PUSHED_SCOPE_P if it is set. */
4483 tree
4484 start_decl (const cp_declarator *declarator,
4485 cp_decl_specifier_seq *declspecs,
4486 int initialized,
4487 tree attributes,
4488 tree prefix_attributes,
4489 tree *pushed_scope_p)
4491 tree decl;
4492 tree context;
4493 bool was_public;
4494 int flags;
4495 bool alias;
4497 *pushed_scope_p = NULL_TREE;
4499 /* An object declared as __attribute__((deprecated)) suppresses
4500 warnings of uses of other deprecated items. */
4501 if (lookup_attribute ("deprecated", attributes))
4502 deprecated_state = DEPRECATED_SUPPRESS;
4504 attributes = chainon (attributes, prefix_attributes);
4506 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
4507 &attributes);
4509 deprecated_state = DEPRECATED_NORMAL;
4511 if (decl == NULL_TREE || VOID_TYPE_P (decl)
4512 || decl == error_mark_node)
4513 return error_mark_node;
4515 context = CP_DECL_CONTEXT (decl);
4516 if (context != global_namespace)
4517 *pushed_scope_p = push_scope (context);
4519 if (initialized)
4520 /* Is it valid for this decl to have an initializer at all?
4521 If not, set INITIALIZED to zero, which will indirectly
4522 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4523 switch (TREE_CODE (decl))
4525 case TYPE_DECL:
4526 error ("typedef %qD is initialized (use decltype instead)", decl);
4527 return error_mark_node;
4529 case FUNCTION_DECL:
4530 if (initialized == SD_DELETED)
4531 /* We'll handle the rest of the semantics later, but we need to
4532 set this now so it's visible to duplicate_decls. */
4533 DECL_DELETED_FN (decl) = 1;
4534 break;
4536 default:
4537 break;
4540 if (initialized)
4542 if (! toplevel_bindings_p ()
4543 && DECL_EXTERNAL (decl))
4544 warning (0, "declaration of %q#D has %<extern%> and is initialized",
4545 decl);
4546 DECL_EXTERNAL (decl) = 0;
4547 if (toplevel_bindings_p ())
4548 TREE_STATIC (decl) = 1;
4550 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
4552 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
4553 record_key_method_defined (decl);
4555 /* If this is a typedef that names the class for linkage purposes
4556 (7.1.3p8), apply any attributes directly to the type. */
4557 if (TREE_CODE (decl) == TYPE_DECL
4558 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
4559 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
4560 flags = ATTR_FLAG_TYPE_IN_PLACE;
4561 else
4562 flags = 0;
4564 /* Set attributes here so if duplicate decl, will have proper attributes. */
4565 cplus_decl_attributes (&decl, attributes, flags);
4567 /* Dllimported symbols cannot be defined. Static data members (which
4568 can be initialized in-class and dllimported) go through grokfield,
4569 not here, so we don't need to exclude those decls when checking for
4570 a definition. */
4571 if (initialized && DECL_DLLIMPORT_P (decl))
4573 error ("definition of %q#D is marked %<dllimport%>", decl);
4574 DECL_DLLIMPORT_P (decl) = 0;
4577 /* If #pragma weak was used, mark the decl weak now. */
4578 if (!processing_template_decl)
4579 maybe_apply_pragma_weak (decl);
4581 if (TREE_CODE (decl) == FUNCTION_DECL
4582 && DECL_DECLARED_INLINE_P (decl)
4583 && DECL_UNINLINABLE (decl)
4584 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4585 warning (0, "inline function %q+D given attribute noinline", decl);
4587 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
4589 if (VAR_P (decl))
4591 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
4592 if (field == NULL_TREE || !VAR_P (field))
4593 error ("%q#D is not a static member of %q#T", decl, context);
4594 else
4596 if (DECL_CONTEXT (field) != context)
4598 if (!same_type_p (DECL_CONTEXT (field), context))
4599 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
4600 "to be defined as %<%T::%D%>",
4601 DECL_CONTEXT (field), DECL_NAME (decl),
4602 context, DECL_NAME (decl));
4603 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
4605 /* Static data member are tricky; an in-class initialization
4606 still doesn't provide a definition, so the in-class
4607 declaration will have DECL_EXTERNAL set, but will have an
4608 initialization. Thus, duplicate_decls won't warn
4609 about this situation, and so we check here. */
4610 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
4611 error ("duplicate initialization of %qD", decl);
4612 if (duplicate_decls (decl, field, /*newdecl_is_friend=*/false))
4613 decl = field;
4614 if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr)
4615 && !DECL_DECLARED_CONSTEXPR_P (field))
4616 error ("%qD declared %<constexpr%> outside its class", field);
4619 else
4621 tree field = check_classfn (context, decl,
4622 (processing_template_decl
4623 > template_class_depth (context))
4624 ? current_template_parms
4625 : NULL_TREE);
4626 if (field && field != error_mark_node
4627 && duplicate_decls (decl, field,
4628 /*newdecl_is_friend=*/false))
4629 decl = field;
4632 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
4633 DECL_IN_AGGR_P (decl) = 0;
4634 /* Do not mark DECL as an explicit specialization if it was not
4635 already marked as an instantiation; a declaration should
4636 never be marked as a specialization unless we know what
4637 template is being specialized. */
4638 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
4640 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
4642 /* [temp.expl.spec] An explicit specialization of a static data
4643 member of a template is a definition if the declaration
4644 includes an initializer; otherwise, it is a declaration.
4646 We check for processing_specialization so this only applies
4647 to the new specialization syntax. */
4648 if (!initialized && processing_specialization)
4649 DECL_EXTERNAL (decl) = 1;
4652 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
4653 /* Aliases are definitions. */
4654 && !alias)
4655 permerror (input_location, "declaration of %q#D outside of class is not definition",
4656 decl);
4659 was_public = TREE_PUBLIC (decl);
4661 /* Enter this declaration into the symbol table. */
4662 decl = maybe_push_decl (decl);
4664 if (processing_template_decl)
4665 decl = push_template_decl (decl);
4666 if (decl == error_mark_node)
4667 return error_mark_node;
4669 if (VAR_P (decl)
4670 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
4671 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
4673 /* This is a const variable with implicit 'static'. Set
4674 DECL_THIS_STATIC so we can tell it from variables that are
4675 !TREE_PUBLIC because of the anonymous namespace. */
4676 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
4677 DECL_THIS_STATIC (decl) = 1;
4680 if (!processing_template_decl && VAR_P (decl))
4681 start_decl_1 (decl, initialized);
4683 return decl;
4686 /* Process the declaration of a variable DECL. INITIALIZED is true
4687 iff DECL is explicitly initialized. (INITIALIZED is false if the
4688 variable is initialized via an implicitly-called constructor.)
4689 This function must be called for ordinary variables (including, for
4690 example, implicit instantiations of templates), but must not be
4691 called for template declarations. */
4693 void
4694 start_decl_1 (tree decl, bool initialized)
4696 tree type;
4697 bool complete_p;
4698 bool aggregate_definition_p;
4700 gcc_assert (!processing_template_decl);
4702 if (error_operand_p (decl))
4703 return;
4705 gcc_assert (VAR_P (decl));
4707 type = TREE_TYPE (decl);
4708 complete_p = COMPLETE_TYPE_P (type);
4709 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
4711 /* If an explicit initializer is present, or if this is a definition
4712 of an aggregate, then we need a complete type at this point.
4713 (Scalars are always complete types, so there is nothing to
4714 check.) This code just sets COMPLETE_P; errors (if necessary)
4715 are issued below. */
4716 if ((initialized || aggregate_definition_p)
4717 && !complete_p
4718 && COMPLETE_TYPE_P (complete_type (type)))
4720 complete_p = true;
4721 /* We will not yet have set TREE_READONLY on DECL if the type
4722 was "const", but incomplete, before this point. But, now, we
4723 have a complete type, so we can try again. */
4724 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
4727 if (initialized)
4728 /* Is it valid for this decl to have an initializer at all? */
4730 /* Don't allow initializations for incomplete types except for
4731 arrays which might be completed by the initialization. */
4732 if (complete_p)
4733 ; /* A complete type is ok. */
4734 else if (type_uses_auto (type))
4735 ; /* An auto type is ok. */
4736 else if (TREE_CODE (type) != ARRAY_TYPE)
4738 error ("variable %q#D has initializer but incomplete type", decl);
4739 type = TREE_TYPE (decl) = error_mark_node;
4741 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
4743 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
4744 error ("elements of array %q#D have incomplete type", decl);
4745 /* else we already gave an error in start_decl. */
4748 else if (aggregate_definition_p && !complete_p)
4750 if (type_uses_auto (type))
4751 error ("declaration of %q#D has no initializer", decl);
4752 else
4753 error ("aggregate %q#D has incomplete type and cannot be defined",
4754 decl);
4755 /* Change the type so that assemble_variable will give
4756 DECL an rtl we can live with: (mem (const_int 0)). */
4757 type = TREE_TYPE (decl) = error_mark_node;
4760 /* Create a new scope to hold this declaration if necessary.
4761 Whether or not a new scope is necessary cannot be determined
4762 until after the type has been completed; if the type is a
4763 specialization of a class template it is not until after
4764 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
4765 will be set correctly. */
4766 maybe_push_cleanup_level (type);
4769 /* Handle initialization of references. DECL, TYPE, and INIT have the
4770 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
4771 but will be set to a new CLEANUP_STMT if a temporary is created
4772 that must be destroyed subsequently.
4774 Returns an initializer expression to use to initialize DECL, or
4775 NULL if the initialization can be performed statically.
4777 Quotes on semantics can be found in ARM 8.4.3. */
4779 static tree
4780 grok_reference_init (tree decl, tree type, tree init, int flags)
4782 if (init == NULL_TREE)
4784 if ((DECL_LANG_SPECIFIC (decl) == 0
4785 || DECL_IN_AGGR_P (decl) == 0)
4786 && ! DECL_THIS_EXTERN (decl))
4787 error ("%qD declared as reference but not initialized", decl);
4788 return NULL_TREE;
4791 if (TREE_CODE (init) == TREE_LIST)
4792 init = build_x_compound_expr_from_list (init, ELK_INIT,
4793 tf_warning_or_error);
4795 if (TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE
4796 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
4797 /* Note: default conversion is only called in very special cases. */
4798 init = decay_conversion (init, tf_warning_or_error);
4800 /* Convert INIT to the reference type TYPE. This may involve the
4801 creation of a temporary, whose lifetime must be the same as that
4802 of the reference. If so, a DECL_EXPR for the temporary will be
4803 added just after the DECL_EXPR for DECL. That's why we don't set
4804 DECL_INITIAL for local references (instead assigning to them
4805 explicitly); we need to allow the temporary to be initialized
4806 first. */
4807 return initialize_reference (type, init, flags,
4808 tf_warning_or_error);
4811 /* Designated initializers in arrays are not supported in GNU C++.
4812 The parser cannot detect this error since it does not know whether
4813 a given brace-enclosed initializer is for a class type or for an
4814 array. This function checks that CE does not use a designated
4815 initializer. If it does, an error is issued. Returns true if CE
4816 is valid, i.e., does not have a designated initializer. */
4818 static bool
4819 check_array_designated_initializer (constructor_elt *ce,
4820 unsigned HOST_WIDE_INT index)
4822 /* Designated initializers for array elements are not supported. */
4823 if (ce->index)
4825 /* The parser only allows identifiers as designated
4826 initializers. */
4827 if (ce->index == error_mark_node)
4829 error ("name used in a GNU-style designated "
4830 "initializer for an array");
4831 return false;
4833 else if (identifier_p (ce->index))
4835 error ("name %qD used in a GNU-style designated "
4836 "initializer for an array", ce->index);
4837 return false;
4840 ce->index = cxx_constant_value (ce->index);
4842 if (TREE_CODE (ce->index) == INTEGER_CST)
4844 /* A C99 designator is OK if it matches the current index. */
4845 if (TREE_INT_CST_LOW (ce->index) == index)
4846 return true;
4847 else
4848 sorry ("non-trivial designated initializers not supported");
4850 else
4851 gcc_unreachable ();
4853 return false;
4856 return true;
4859 /* When parsing `int a[] = {1, 2};' we don't know the size of the
4860 array until we finish parsing the initializer. If that's the
4861 situation we're in, update DECL accordingly. */
4863 static void
4864 maybe_deduce_size_from_array_init (tree decl, tree init)
4866 tree type = TREE_TYPE (decl);
4868 if (TREE_CODE (type) == ARRAY_TYPE
4869 && TYPE_DOMAIN (type) == NULL_TREE
4870 && TREE_CODE (decl) != TYPE_DECL)
4872 /* do_default is really a C-ism to deal with tentative definitions.
4873 But let's leave it here to ease the eventual merge. */
4874 int do_default = !DECL_EXTERNAL (decl);
4875 tree initializer = init ? init : DECL_INITIAL (decl);
4876 int failure = 0;
4878 /* Check that there are no designated initializers in INIT, as
4879 those are not supported in GNU C++, and as the middle-end
4880 will crash if presented with a non-numeric designated
4881 initializer. */
4882 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
4884 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
4885 constructor_elt *ce;
4886 HOST_WIDE_INT i;
4887 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
4888 if (!check_array_designated_initializer (ce, i))
4889 failure = 1;
4892 if (!failure)
4894 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
4895 do_default);
4896 if (failure == 1)
4898 error ("initializer fails to determine size of %qD", decl);
4900 else if (failure == 2)
4902 if (do_default)
4904 error ("array size missing in %qD", decl);
4906 /* If a `static' var's size isn't known, make it extern as
4907 well as static, so it does not get allocated. If it's not
4908 `static', then don't mark it extern; finish_incomplete_decl
4909 will give it a default size and it will get allocated. */
4910 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
4911 DECL_EXTERNAL (decl) = 1;
4913 else if (failure == 3)
4915 error ("zero-size array %qD", decl);
4919 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
4921 relayout_decl (decl);
4925 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
4926 any appropriate error messages regarding the layout. */
4928 static void
4929 layout_var_decl (tree decl)
4931 tree type;
4933 type = TREE_TYPE (decl);
4934 if (type == error_mark_node)
4935 return;
4937 /* If we haven't already laid out this declaration, do so now.
4938 Note that we must not call complete type for an external object
4939 because it's type might involve templates that we are not
4940 supposed to instantiate yet. (And it's perfectly valid to say
4941 `extern X x' for some incomplete type `X'.) */
4942 if (!DECL_EXTERNAL (decl))
4943 complete_type (type);
4944 if (!DECL_SIZE (decl)
4945 && TREE_TYPE (decl) != error_mark_node
4946 && (COMPLETE_TYPE_P (type)
4947 || (TREE_CODE (type) == ARRAY_TYPE
4948 && !TYPE_DOMAIN (type)
4949 && COMPLETE_TYPE_P (TREE_TYPE (type)))))
4950 layout_decl (decl, 0);
4952 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
4954 /* An automatic variable with an incomplete type: that is an error.
4955 Don't talk about array types here, since we took care of that
4956 message in grokdeclarator. */
4957 error ("storage size of %qD isn%'t known", decl);
4958 TREE_TYPE (decl) = error_mark_node;
4960 #if 0
4961 /* Keep this code around in case we later want to control debug info
4962 based on whether a type is "used". (jason 1999-11-11) */
4964 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
4965 /* Let debugger know it should output info for this type. */
4966 note_debug_info_needed (ttype);
4968 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
4969 note_debug_info_needed (DECL_CONTEXT (decl));
4970 #endif
4972 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
4973 && DECL_SIZE (decl) != NULL_TREE
4974 && ! TREE_CONSTANT (DECL_SIZE (decl)))
4976 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
4977 constant_expression_warning (DECL_SIZE (decl));
4978 else
4980 error ("storage size of %qD isn%'t constant", decl);
4981 TREE_TYPE (decl) = error_mark_node;
4986 /* If a local static variable is declared in an inline function, or if
4987 we have a weak definition, we must endeavor to create only one
4988 instance of the variable at link-time. */
4990 void
4991 maybe_commonize_var (tree decl)
4993 /* Static data in a function with comdat linkage also has comdat
4994 linkage. */
4995 if (TREE_STATIC (decl)
4996 /* Don't mess with __FUNCTION__. */
4997 && ! DECL_ARTIFICIAL (decl)
4998 && DECL_FUNCTION_SCOPE_P (decl)
4999 && vague_linkage_p (DECL_CONTEXT (decl)))
5001 if (flag_weak)
5003 /* With weak symbols, we simply make the variable COMDAT;
5004 that will cause copies in multiple translations units to
5005 be merged. */
5006 comdat_linkage (decl);
5008 else
5010 if (DECL_INITIAL (decl) == NULL_TREE
5011 || DECL_INITIAL (decl) == error_mark_node)
5013 /* Without weak symbols, we can use COMMON to merge
5014 uninitialized variables. */
5015 TREE_PUBLIC (decl) = 1;
5016 DECL_COMMON (decl) = 1;
5018 else
5020 /* While for initialized variables, we must use internal
5021 linkage -- which means that multiple copies will not
5022 be merged. */
5023 TREE_PUBLIC (decl) = 0;
5024 DECL_COMMON (decl) = 0;
5025 warning_at (input_location, 0,
5026 "sorry: semantics of inline function static "
5027 "data %q+#D are wrong (you%'ll wind up "
5028 "with multiple copies)", decl);
5029 warning_at (DECL_SOURCE_LOCATION (decl), 0,
5030 " you can work around this by removing "
5031 "the initializer");
5035 else if (DECL_LANG_SPECIFIC (decl) && DECL_COMDAT (decl))
5036 /* Set it up again; we might have set DECL_INITIAL since the last
5037 time. */
5038 comdat_linkage (decl);
5041 /* Issue an error message if DECL is an uninitialized const variable. */
5043 static void
5044 check_for_uninitialized_const_var (tree decl)
5046 tree type = strip_array_types (TREE_TYPE (decl));
5048 /* ``Unless explicitly declared extern, a const object does not have
5049 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5050 7.1.6 */
5051 if (VAR_P (decl)
5052 && TREE_CODE (type) != REFERENCE_TYPE
5053 && CP_TYPE_CONST_P (type)
5054 && !DECL_INITIAL (decl))
5056 tree field = default_init_uninitialized_part (type);
5057 if (!field)
5058 return;
5060 permerror (DECL_SOURCE_LOCATION (decl),
5061 "uninitialized const %qD", decl);
5063 if (CLASS_TYPE_P (type))
5065 tree defaulted_ctor;
5067 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5068 "%q#T has no user-provided default constructor", type);
5069 defaulted_ctor = in_class_defaulted_default_constructor (type);
5070 if (defaulted_ctor)
5071 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5072 "constructor is not user-provided because it is "
5073 "explicitly defaulted in the class body");
5074 inform (0, "and the implicitly-defined constructor does not "
5075 "initialize %q+#D", field);
5080 /* Structure holding the current initializer being processed by reshape_init.
5081 CUR is a pointer to the current element being processed, END is a pointer
5082 after the last element present in the initializer. */
5083 typedef struct reshape_iterator_t
5085 constructor_elt *cur;
5086 constructor_elt *end;
5087 } reshape_iter;
5089 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5091 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5092 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5093 initialized. If there are no more such fields, the return value
5094 will be NULL. */
5096 tree
5097 next_initializable_field (tree field)
5099 while (field
5100 && (TREE_CODE (field) != FIELD_DECL
5101 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
5102 || DECL_ARTIFICIAL (field)))
5103 field = DECL_CHAIN (field);
5105 return field;
5108 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5109 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5110 INTEGER_CST representing the size of the array minus one (the maximum index),
5111 or NULL_TREE if the array was declared without specifying the size. D is
5112 the iterator within the constructor. */
5114 static tree
5115 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5116 tsubst_flags_t complain)
5118 tree new_init;
5119 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5120 unsigned HOST_WIDE_INT max_index_cst = 0;
5121 unsigned HOST_WIDE_INT index;
5123 /* The initializer for an array is always a CONSTRUCTOR. */
5124 new_init = build_constructor (init_list_type_node, NULL);
5126 if (sized_array_p)
5128 /* Minus 1 is used for zero sized arrays. */
5129 if (integer_all_onesp (max_index))
5130 return new_init;
5132 if (tree_fits_uhwi_p (max_index))
5133 max_index_cst = tree_to_uhwi (max_index);
5134 /* sizetype is sign extended, not zero extended. */
5135 else
5136 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5139 /* Loop until there are no more initializers. */
5140 for (index = 0;
5141 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5142 ++index)
5144 tree elt_init;
5145 constructor_elt *old_cur = d->cur;
5147 check_array_designated_initializer (d->cur, index);
5148 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5149 complain);
5150 if (elt_init == error_mark_node)
5151 return error_mark_node;
5152 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5153 size_int (index), elt_init);
5154 if (!TREE_CONSTANT (elt_init))
5155 TREE_CONSTANT (new_init) = false;
5157 /* This can happen with an invalid initializer (c++/54501). */
5158 if (d->cur == old_cur && !sized_array_p)
5159 break;
5162 return new_init;
5165 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5166 Parameters are the same of reshape_init_r. */
5168 static tree
5169 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5171 tree max_index = NULL_TREE;
5173 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5175 if (TYPE_DOMAIN (type))
5176 max_index = array_type_nelts (type);
5178 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5181 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5182 Parameters are the same of reshape_init_r. */
5184 static tree
5185 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5187 tree max_index = NULL_TREE;
5189 gcc_assert (TREE_CODE (type) == VECTOR_TYPE);
5191 if (COMPOUND_LITERAL_P (d->cur->value))
5193 tree value = d->cur->value;
5194 if (!same_type_p (TREE_TYPE (value), type))
5196 if (complain & tf_error)
5197 error ("invalid type %qT as initializer for a vector of type %qT",
5198 TREE_TYPE (d->cur->value), type);
5199 value = error_mark_node;
5201 ++d->cur;
5202 return value;
5205 /* For a vector, we initialize it as an array of the appropriate size. */
5206 if (TREE_CODE (type) == VECTOR_TYPE)
5207 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5209 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5212 /* Subroutine of reshape_init_r, processes the initializers for classes
5213 or union. Parameters are the same of reshape_init_r. */
5215 static tree
5216 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
5217 tsubst_flags_t complain)
5219 tree field;
5220 tree new_init;
5222 gcc_assert (CLASS_TYPE_P (type));
5224 /* The initializer for a class is always a CONSTRUCTOR. */
5225 new_init = build_constructor (init_list_type_node, NULL);
5226 field = next_initializable_field (TYPE_FIELDS (type));
5228 if (!field)
5230 /* [dcl.init.aggr]
5232 An initializer for an aggregate member that is an
5233 empty class shall have the form of an empty
5234 initializer-list {}. */
5235 if (!first_initializer_p)
5237 if (complain & tf_error)
5238 error ("initializer for %qT must be brace-enclosed", type);
5239 return error_mark_node;
5241 return new_init;
5244 /* Loop through the initializable fields, gathering initializers. */
5245 while (d->cur != d->end)
5247 tree field_init;
5248 constructor_elt *old_cur = d->cur;
5250 /* Handle designated initializers, as an extension. */
5251 if (d->cur->index)
5253 if (d->cur->index == error_mark_node)
5254 return error_mark_node;
5256 if (TREE_CODE (d->cur->index) == INTEGER_CST)
5258 if (complain & tf_error)
5259 error ("%<[%E] =%> used in a GNU-style designated initializer"
5260 " for class %qT", d->cur->index, type);
5261 return error_mark_node;
5264 if (TREE_CODE (d->cur->index) == FIELD_DECL)
5265 /* We already reshaped this. */
5266 gcc_assert (d->cur->index == field);
5267 else
5268 field = lookup_field_1 (type, d->cur->index, /*want_type=*/false);
5270 if (!field || TREE_CODE (field) != FIELD_DECL)
5272 if (complain & tf_error)
5273 error ("%qT has no non-static data member named %qD", type,
5274 d->cur->index);
5275 return error_mark_node;
5279 /* If we processed all the member of the class, we are done. */
5280 if (!field)
5281 break;
5283 field_init = reshape_init_r (TREE_TYPE (field), d,
5284 /*first_initializer_p=*/false, complain);
5285 if (field_init == error_mark_node)
5286 return error_mark_node;
5288 if (d->cur == old_cur && d->cur->index)
5290 /* This can happen with an invalid initializer for a flexible
5291 array member (c++/54441). */
5292 if (complain & tf_error)
5293 error ("invalid initializer for %q#D", field);
5294 return error_mark_node;
5297 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
5299 /* [dcl.init.aggr]
5301 When a union is initialized with a brace-enclosed
5302 initializer, the braces shall only contain an
5303 initializer for the first member of the union. */
5304 if (TREE_CODE (type) == UNION_TYPE)
5305 break;
5307 field = next_initializable_field (DECL_CHAIN (field));
5310 return new_init;
5313 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5314 designators are not valid; either complain or return true to indicate
5315 that reshape_init_r should return error_mark_node. */
5317 static bool
5318 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
5320 if (d->cur->index)
5322 if (complain & tf_error)
5323 error ("C99 designator %qE outside aggregate initializer",
5324 d->cur->index);
5325 else
5326 return true;
5328 return false;
5331 /* Subroutine of reshape_init, which processes a single initializer (part of
5332 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5333 iterator within the CONSTRUCTOR which points to the initializer to process.
5334 FIRST_INITIALIZER_P is true if this is the first initializer of the
5335 outermost CONSTRUCTOR node. */
5337 static tree
5338 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
5339 tsubst_flags_t complain)
5341 tree init = d->cur->value;
5343 if (error_operand_p (init))
5344 return error_mark_node;
5346 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
5347 && has_designator_problem (d, complain))
5348 return error_mark_node;
5350 if (TREE_CODE (type) == COMPLEX_TYPE)
5352 /* A complex type can be initialized from one or two initializers,
5353 but braces are not elided. */
5354 d->cur++;
5355 if (BRACE_ENCLOSED_INITIALIZER_P (init))
5357 if (CONSTRUCTOR_NELTS (init) > 2)
5359 if (complain & tf_error)
5360 error ("too many initializers for %qT", type);
5361 else
5362 return error_mark_node;
5365 else if (first_initializer_p && d->cur != d->end)
5367 vec<constructor_elt, va_gc> *v = 0;
5368 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
5369 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
5370 if (has_designator_problem (d, complain))
5371 return error_mark_node;
5372 d->cur++;
5373 init = build_constructor (init_list_type_node, v);
5375 return init;
5378 /* A non-aggregate type is always initialized with a single
5379 initializer. */
5380 if (!CP_AGGREGATE_TYPE_P (type))
5382 /* It is invalid to initialize a non-aggregate type with a
5383 brace-enclosed initializer before C++0x.
5384 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
5385 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
5386 a CONSTRUCTOR (with a record type). */
5387 if (TREE_CODE (init) == CONSTRUCTOR
5388 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
5390 if (SCALAR_TYPE_P (type))
5392 if (complain & tf_error)
5393 error ("braces around scalar initializer for type %qT", type);
5394 init = error_mark_node;
5396 else
5397 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5400 d->cur++;
5401 return init;
5404 /* [dcl.init.aggr]
5406 All implicit type conversions (clause _conv_) are considered when
5407 initializing the aggregate member with an initializer from an
5408 initializer-list. If the initializer can initialize a member,
5409 the member is initialized. Otherwise, if the member is itself a
5410 non-empty subaggregate, brace elision is assumed and the
5411 initializer is considered for the initialization of the first
5412 member of the subaggregate. */
5413 if (TREE_CODE (init) != CONSTRUCTOR
5414 /* But don't try this for the first initializer, since that would be
5415 looking through the outermost braces; A a2 = { a1 }; is not a
5416 valid aggregate initialization. */
5417 && !first_initializer_p
5418 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
5419 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
5420 complain)))
5422 d->cur++;
5423 return init;
5426 /* [dcl.init.string]
5428 A char array (whether plain char, signed char, or unsigned char)
5429 can be initialized by a string-literal (optionally enclosed in
5430 braces); a wchar_t array can be initialized by a wide
5431 string-literal (optionally enclosed in braces). */
5432 if (TREE_CODE (type) == ARRAY_TYPE
5433 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
5435 tree str_init = init;
5437 /* Strip one level of braces if and only if they enclose a single
5438 element (as allowed by [dcl.init.string]). */
5439 if (!first_initializer_p
5440 && TREE_CODE (str_init) == CONSTRUCTOR
5441 && vec_safe_length (CONSTRUCTOR_ELTS (str_init)) == 1)
5443 str_init = (*CONSTRUCTOR_ELTS (str_init))[0].value;
5446 /* If it's a string literal, then it's the initializer for the array
5447 as a whole. Otherwise, continue with normal initialization for
5448 array types (one value per array element). */
5449 if (TREE_CODE (str_init) == STRING_CST)
5451 if (has_designator_problem (d, complain))
5452 return error_mark_node;
5453 d->cur++;
5454 return str_init;
5458 /* The following cases are about aggregates. If we are not within a full
5459 initializer already, and there is not a CONSTRUCTOR, it means that there
5460 is a missing set of braces (that is, we are processing the case for
5461 which reshape_init exists). */
5462 if (!first_initializer_p)
5464 if (TREE_CODE (init) == CONSTRUCTOR)
5466 if (TREE_TYPE (init) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init)))
5467 /* There is no need to reshape pointer-to-member function
5468 initializers, as they are always constructed correctly
5469 by the front end. */
5471 else if (COMPOUND_LITERAL_P (init))
5472 /* For a nested compound literal, there is no need to reshape since
5473 brace elision is not allowed. Even if we decided to allow it,
5474 we should add a call to reshape_init in finish_compound_literal,
5475 before calling digest_init, so changing this code would still
5476 not be necessary. */
5477 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
5478 else
5480 ++d->cur;
5481 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5482 return reshape_init (type, init, complain);
5486 warning (OPT_Wmissing_braces, "missing braces around initializer for %qT",
5487 type);
5490 /* Dispatch to specialized routines. */
5491 if (CLASS_TYPE_P (type))
5492 return reshape_init_class (type, d, first_initializer_p, complain);
5493 else if (TREE_CODE (type) == ARRAY_TYPE)
5494 return reshape_init_array (type, d, complain);
5495 else if (TREE_CODE (type) == VECTOR_TYPE)
5496 return reshape_init_vector (type, d, complain);
5497 else
5498 gcc_unreachable();
5501 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
5502 brace-enclosed aggregate initializer.
5504 INIT is the CONSTRUCTOR containing the list of initializers describing
5505 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
5506 It may not presently match the shape of the TYPE; for example:
5508 struct S { int a; int b; };
5509 struct S a[] = { 1, 2, 3, 4 };
5511 Here INIT will hold a vector of four elements, rather than a
5512 vector of two elements, each itself a vector of two elements. This
5513 routine transforms INIT from the former form into the latter. The
5514 revised CONSTRUCTOR node is returned. */
5516 tree
5517 reshape_init (tree type, tree init, tsubst_flags_t complain)
5519 vec<constructor_elt, va_gc> *v;
5520 reshape_iter d;
5521 tree new_init;
5523 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5525 v = CONSTRUCTOR_ELTS (init);
5527 /* An empty constructor does not need reshaping, and it is always a valid
5528 initializer. */
5529 if (vec_safe_is_empty (v))
5530 return init;
5532 /* Recurse on this CONSTRUCTOR. */
5533 d.cur = &(*v)[0];
5534 d.end = d.cur + v->length ();
5536 new_init = reshape_init_r (type, &d, true, complain);
5537 if (new_init == error_mark_node)
5538 return error_mark_node;
5540 /* Make sure all the element of the constructor were used. Otherwise,
5541 issue an error about exceeding initializers. */
5542 if (d.cur != d.end)
5544 if (complain & tf_error)
5545 error ("too many initializers for %qT", type);
5546 else
5547 return error_mark_node;
5550 return new_init;
5553 /* Verify array initializer. Returns true if errors have been reported. */
5555 bool
5556 check_array_initializer (tree decl, tree type, tree init)
5558 tree element_type = TREE_TYPE (type);
5560 /* The array type itself need not be complete, because the
5561 initializer may tell us how many elements are in the array.
5562 But, the elements of the array must be complete. */
5563 if (!COMPLETE_TYPE_P (complete_type (element_type)))
5565 if (decl)
5566 error ("elements of array %q#D have incomplete type", decl);
5567 else
5568 error ("elements of array %q#T have incomplete type", type);
5569 return true;
5571 /* A compound literal can't have variable size. */
5572 if (init && !decl
5573 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
5574 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
5576 error ("variable-sized compound literal");
5577 return true;
5579 return false;
5582 /* Subroutine of check_initializer; args are passed down from that function.
5583 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
5585 static tree
5586 build_aggr_init_full_exprs (tree decl, tree init, int flags)
5589 gcc_assert (stmts_are_full_exprs_p ());
5590 return build_aggr_init (decl, init, flags, tf_warning_or_error);
5593 /* Verify INIT (the initializer for DECL), and record the
5594 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
5595 grok_reference_init.
5597 If the return value is non-NULL, it is an expression that must be
5598 evaluated dynamically to initialize DECL. */
5600 static tree
5601 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
5603 tree type = TREE_TYPE (decl);
5604 tree init_code = NULL;
5605 tree core_type;
5607 /* Things that are going to be initialized need to have complete
5608 type. */
5609 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
5611 if (DECL_HAS_VALUE_EXPR_P (decl))
5613 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
5614 it doesn't have storage to be initialized. */
5615 gcc_assert (init == NULL_TREE);
5616 return NULL_TREE;
5619 if (type == error_mark_node)
5620 /* We will have already complained. */
5621 return NULL_TREE;
5623 if (TREE_CODE (type) == ARRAY_TYPE)
5625 if (check_array_initializer (decl, type, init))
5626 return NULL_TREE;
5628 else if (!COMPLETE_TYPE_P (type))
5630 error ("%q#D has incomplete type", decl);
5631 TREE_TYPE (decl) = error_mark_node;
5632 return NULL_TREE;
5634 else
5635 /* There is no way to make a variable-sized class type in GNU C++. */
5636 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
5638 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
5640 int init_len = vec_safe_length (CONSTRUCTOR_ELTS (init));
5641 if (SCALAR_TYPE_P (type))
5643 if (init_len == 0)
5645 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5646 init = build_zero_init (type, NULL_TREE, false);
5648 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
5650 error ("scalar object %qD requires one element in initializer",
5651 decl);
5652 TREE_TYPE (decl) = error_mark_node;
5653 return NULL_TREE;
5658 if (TREE_CODE (decl) == CONST_DECL)
5660 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
5662 DECL_INITIAL (decl) = init;
5664 gcc_assert (init != NULL_TREE);
5665 init = NULL_TREE;
5667 else if (!init && DECL_REALLY_EXTERN (decl))
5669 else if (init || type_build_ctor_call (type)
5670 || TREE_CODE (type) == REFERENCE_TYPE)
5672 if (TREE_CODE (type) == REFERENCE_TYPE)
5674 init = grok_reference_init (decl, type, init, flags);
5675 flags |= LOOKUP_ALREADY_DIGESTED;
5677 else if (!init)
5678 check_for_uninitialized_const_var (decl);
5679 /* Do not reshape constructors of vectors (they don't need to be
5680 reshaped. */
5681 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
5683 if (is_std_init_list (type))
5685 init = perform_implicit_conversion (type, init,
5686 tf_warning_or_error);
5687 flags |= LOOKUP_ALREADY_DIGESTED;
5689 else if (TYPE_NON_AGGREGATE_CLASS (type))
5691 /* Don't reshape if the class has constructors. */
5692 if (cxx_dialect == cxx98)
5693 error ("in C++98 %qD must be initialized by constructor, "
5694 "not by %<{...}%>",
5695 decl);
5697 else if (TREE_CODE (type) == VECTOR_TYPE && TYPE_VECTOR_OPAQUE (type))
5699 error ("opaque vector types cannot be initialized");
5700 init = error_mark_node;
5702 else
5704 init = reshape_init (type, init, tf_warning_or_error);
5705 if (SCALAR_TYPE_P (type))
5706 check_narrowing (type, init);
5710 /* If DECL has an array type without a specific bound, deduce the
5711 array size from the initializer. */
5712 maybe_deduce_size_from_array_init (decl, init);
5713 type = TREE_TYPE (decl);
5714 if (type == error_mark_node)
5715 return NULL_TREE;
5717 if ((type_build_ctor_call (type) || CLASS_TYPE_P (type))
5718 && !(flags & LOOKUP_ALREADY_DIGESTED)
5719 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
5720 && CP_AGGREGATE_TYPE_P (type)
5721 && (CLASS_TYPE_P (type)
5722 || !TYPE_NEEDS_CONSTRUCTING (type)
5723 || type_has_extended_temps (type))))
5725 init_code = build_aggr_init_full_exprs (decl, init, flags);
5727 /* A constructor call is a non-trivial initializer even if
5728 it isn't explicitly written. */
5729 if (TREE_SIDE_EFFECTS (init_code))
5730 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
5732 /* If this is a constexpr initializer, expand_default_init will
5733 have returned an INIT_EXPR rather than a CALL_EXPR. In that
5734 case, pull the initializer back out and pass it down into
5735 store_init_value. */
5736 while (TREE_CODE (init_code) == EXPR_STMT
5737 || TREE_CODE (init_code) == CONVERT_EXPR)
5738 init_code = TREE_OPERAND (init_code, 0);
5739 if (TREE_CODE (init_code) == INIT_EXPR)
5741 init = TREE_OPERAND (init_code, 1);
5742 init_code = NULL_TREE;
5743 /* Don't call digest_init; it's unnecessary and will complain
5744 about aggregate initialization of non-aggregate classes. */
5745 flags |= LOOKUP_ALREADY_DIGESTED;
5747 else if (DECL_DECLARED_CONSTEXPR_P (decl))
5749 /* Declared constexpr, but no suitable initializer; massage
5750 init appropriately so we can pass it into store_init_value
5751 for the error. */
5752 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
5753 init = finish_compound_literal (type, init,
5754 tf_warning_or_error);
5755 else if (CLASS_TYPE_P (type)
5756 && (!init || TREE_CODE (init) == TREE_LIST))
5758 init = build_functional_cast (type, init, tf_none);
5759 if (TREE_CODE (init) == TARGET_EXPR)
5760 TARGET_EXPR_DIRECT_INIT_P (init) = true;
5762 init_code = NULL_TREE;
5764 else
5765 init = NULL_TREE;
5768 if (init && TREE_CODE (init) != TREE_VEC)
5770 /* In aggregate initialization of a variable, each element
5771 initialization is a full-expression because there is no
5772 enclosing expression. */
5773 gcc_assert (stmts_are_full_exprs_p ());
5775 init_code = store_init_value (decl, init, cleanups, flags);
5777 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
5778 && DECL_INITIAL (decl)
5779 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
5780 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
5781 warning (0, "array %qD initialized by parenthesized string literal %qE",
5782 decl, DECL_INITIAL (decl));
5783 init = NULL;
5786 else
5788 if (CLASS_TYPE_P (core_type = strip_array_types (type))
5789 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
5790 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
5791 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
5792 /*complain=*/true);
5794 check_for_uninitialized_const_var (decl);
5797 if (init && init != error_mark_node)
5798 init_code = build2 (INIT_EXPR, type, decl, init);
5800 if (init_code && DECL_IN_AGGR_P (decl))
5802 static int explained = 0;
5804 if (cxx_dialect < cxx11)
5805 error ("initializer invalid for static member with constructor");
5806 else
5807 error ("non-constant in-class initialization invalid for static "
5808 "member %qD", decl);
5809 if (!explained)
5811 inform (input_location,
5812 "(an out of class initialization is required)");
5813 explained = 1;
5815 return NULL_TREE;
5818 return init_code;
5821 /* If DECL is not a local variable, give it RTL. */
5823 static void
5824 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
5826 int toplev = toplevel_bindings_p ();
5827 int defer_p;
5828 const char *filename;
5830 /* Set the DECL_ASSEMBLER_NAME for the object. */
5831 if (asmspec)
5833 /* The `register' keyword, when used together with an
5834 asm-specification, indicates that the variable should be
5835 placed in a particular register. */
5836 if (VAR_P (decl) && DECL_REGISTER (decl))
5838 set_user_assembler_name (decl, asmspec);
5839 DECL_HARD_REGISTER (decl) = 1;
5841 else
5843 if (TREE_CODE (decl) == FUNCTION_DECL
5844 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
5845 set_builtin_user_assembler_name (decl, asmspec);
5846 set_user_assembler_name (decl, asmspec);
5850 /* Handle non-variables up front. */
5851 if (!VAR_P (decl))
5853 rest_of_decl_compilation (decl, toplev, at_eof);
5854 return;
5857 /* If we see a class member here, it should be a static data
5858 member. */
5859 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
5861 gcc_assert (TREE_STATIC (decl));
5862 /* An in-class declaration of a static data member should be
5863 external; it is only a declaration, and not a definition. */
5864 if (init == NULL_TREE)
5865 gcc_assert (DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl));
5868 /* We don't create any RTL for local variables. */
5869 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
5870 return;
5872 /* We defer emission of local statics until the corresponding
5873 DECL_EXPR is expanded. */
5874 defer_p = DECL_FUNCTION_SCOPE_P (decl) || DECL_VIRTUAL_P (decl);
5876 /* We try to defer namespace-scope static constants so that they are
5877 not emitted into the object file unnecessarily. */
5878 filename = LOCATION_FILE (input_location);
5879 if (!DECL_VIRTUAL_P (decl)
5880 && TREE_READONLY (decl)
5881 && DECL_INITIAL (decl) != NULL_TREE
5882 && DECL_INITIAL (decl) != error_mark_node
5883 && filename != NULL
5884 && ! EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl))
5885 && toplev
5886 && !TREE_PUBLIC (decl))
5888 /* Fool with the linkage of static consts according to #pragma
5889 interface. */
5890 struct c_fileinfo *finfo = get_fileinfo (filename);
5891 if (!finfo->interface_unknown && !TREE_PUBLIC (decl))
5893 TREE_PUBLIC (decl) = 1;
5894 DECL_EXTERNAL (decl) = finfo->interface_only;
5897 defer_p = 1;
5899 /* Likewise for template instantiations. */
5900 else if (DECL_LANG_SPECIFIC (decl)
5901 && DECL_IMPLICIT_INSTANTIATION (decl))
5902 defer_p = 1;
5904 /* If we're not deferring, go ahead and assemble the variable. */
5905 if (!defer_p)
5906 rest_of_decl_compilation (decl, toplev, at_eof);
5909 /* walk_tree helper for wrap_temporary_cleanups, below. */
5911 static tree
5912 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
5914 /* Stop at types or full-expression boundaries. */
5915 if (TYPE_P (*stmt_p)
5916 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
5918 *walk_subtrees = 0;
5919 return NULL_TREE;
5922 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
5924 tree guard = (tree)data;
5925 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
5927 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
5928 /* Tell honor_protect_cleanup_actions to handle this as a separate
5929 cleanup. */
5930 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
5932 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
5935 return NULL_TREE;
5938 /* We're initializing a local variable which has a cleanup GUARD. If there
5939 are any temporaries used in the initializer INIT of this variable, we
5940 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
5941 variable will be cleaned up properly if one of them throws.
5943 Unfortunately, there's no way to express this properly in terms of
5944 nesting, as the regions for the temporaries overlap the region for the
5945 variable itself; if there are two temporaries, the variable needs to be
5946 the first thing destroyed if either of them throws. However, we only
5947 want to run the variable's cleanup if it actually got constructed. So
5948 we need to guard the temporary cleanups with the variable's cleanup if
5949 they are run on the normal path, but not if they are run on the
5950 exceptional path. We implement this by telling
5951 honor_protect_cleanup_actions to strip the variable cleanup from the
5952 exceptional path. */
5954 static void
5955 wrap_temporary_cleanups (tree init, tree guard)
5957 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
5960 /* Generate code to initialize DECL (a local variable). */
5962 static void
5963 initialize_local_var (tree decl, tree init)
5965 tree type = TREE_TYPE (decl);
5966 tree cleanup;
5967 int already_used;
5969 gcc_assert (VAR_P (decl)
5970 || TREE_CODE (decl) == RESULT_DECL);
5971 gcc_assert (!TREE_STATIC (decl));
5973 if (DECL_SIZE (decl) == NULL_TREE)
5975 /* If we used it already as memory, it must stay in memory. */
5976 DECL_INITIAL (decl) = NULL_TREE;
5977 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
5978 return;
5981 if (type == error_mark_node)
5982 return;
5984 /* Compute and store the initial value. */
5985 already_used = TREE_USED (decl) || TREE_USED (type);
5986 if (TREE_USED (type))
5987 DECL_READ_P (decl) = 1;
5989 /* Generate a cleanup, if necessary. */
5990 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
5992 /* Perform the initialization. */
5993 if (init)
5995 if (TREE_CODE (init) == INIT_EXPR
5996 && !TREE_SIDE_EFFECTS (TREE_OPERAND (init, 1)))
5998 /* Stick simple initializers in DECL_INITIAL so that
5999 -Wno-init-self works (c++/34772). */
6000 gcc_assert (TREE_OPERAND (init, 0) == decl);
6001 DECL_INITIAL (decl) = TREE_OPERAND (init, 1);
6003 else
6005 int saved_stmts_are_full_exprs_p;
6007 /* If we're only initializing a single object, guard the
6008 destructors of any temporaries used in its initializer with
6009 its destructor. This isn't right for arrays because each
6010 element initialization is a full-expression. */
6011 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6012 wrap_temporary_cleanups (init, cleanup);
6014 gcc_assert (building_stmt_list_p ());
6015 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6016 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6017 finish_expr_stmt (init);
6018 current_stmt_tree ()->stmts_are_full_exprs_p =
6019 saved_stmts_are_full_exprs_p;
6023 /* Set this to 0 so we can tell whether an aggregate which was
6024 initialized was ever used. Don't do this if it has a
6025 destructor, so we don't complain about the 'resource
6026 allocation is initialization' idiom. Now set
6027 attribute((unused)) on types so decls of that type will be
6028 marked used. (see TREE_USED, above.) */
6029 if (TYPE_NEEDS_CONSTRUCTING (type)
6030 && ! already_used
6031 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6032 && DECL_NAME (decl))
6033 TREE_USED (decl) = 0;
6034 else if (already_used)
6035 TREE_USED (decl) = 1;
6037 if (cleanup)
6038 finish_decl_cleanup (decl, cleanup);
6041 /* DECL is a VAR_DECL for a compiler-generated variable with static
6042 storage duration (like a virtual table) whose initializer is a
6043 compile-time constant. Initialize the variable and provide it to the
6044 back end. */
6046 void
6047 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6049 tree init;
6050 gcc_assert (DECL_ARTIFICIAL (decl));
6051 init = build_constructor (TREE_TYPE (decl), v);
6052 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6053 DECL_INITIAL (decl) = init;
6054 DECL_INITIALIZED_P (decl) = 1;
6055 determine_visibility (decl);
6056 layout_var_decl (decl);
6057 maybe_commonize_var (decl);
6058 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6061 /* INIT is the initializer for a variable, as represented by the
6062 parser. Returns true iff INIT is type-dependent. */
6064 static bool
6065 type_dependent_init_p (tree init)
6067 if (TREE_CODE (init) == TREE_LIST)
6068 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6069 return any_type_dependent_elements_p (init);
6070 else if (TREE_CODE (init) == CONSTRUCTOR)
6071 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6073 vec<constructor_elt, va_gc> *elts;
6074 size_t nelts;
6075 size_t i;
6077 elts = CONSTRUCTOR_ELTS (init);
6078 nelts = vec_safe_length (elts);
6079 for (i = 0; i < nelts; ++i)
6080 if (type_dependent_init_p ((*elts)[i].value))
6081 return true;
6083 else
6084 /* It must be a simple expression, e.g., int i = 3; */
6085 return type_dependent_expression_p (init);
6087 return false;
6090 /* INIT is the initializer for a variable, as represented by the
6091 parser. Returns true iff INIT is value-dependent. */
6093 static bool
6094 value_dependent_init_p (tree init)
6096 if (TREE_CODE (init) == TREE_LIST)
6097 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6098 return any_value_dependent_elements_p (init);
6099 else if (TREE_CODE (init) == CONSTRUCTOR)
6100 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6102 vec<constructor_elt, va_gc> *elts;
6103 size_t nelts;
6104 size_t i;
6106 elts = CONSTRUCTOR_ELTS (init);
6107 nelts = vec_safe_length (elts);
6108 for (i = 0; i < nelts; ++i)
6109 if (value_dependent_init_p ((*elts)[i].value))
6110 return true;
6112 else
6113 /* It must be a simple expression, e.g., int i = 3; */
6114 return value_dependent_expression_p (init);
6116 return false;
6119 /* Finish processing of a declaration;
6120 install its line number and initial value.
6121 If the length of an array type is not known before,
6122 it must be determined now, from the initial value, or it is an error.
6124 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6125 true, then INIT is an integral constant expression.
6127 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6128 if the (init) syntax was used. */
6130 void
6131 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
6132 tree asmspec_tree, int flags)
6134 tree type;
6135 vec<tree, va_gc> *cleanups = NULL;
6136 const char *asmspec = NULL;
6137 int was_readonly = 0;
6138 bool var_definition_p = false;
6139 tree auto_node;
6141 if (decl == error_mark_node)
6142 return;
6143 else if (! decl)
6145 if (init)
6146 error ("assignment (not initialization) in declaration");
6147 return;
6150 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6151 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6152 gcc_assert (TREE_CODE (decl) != PARM_DECL);
6154 type = TREE_TYPE (decl);
6155 if (type == error_mark_node)
6156 return;
6158 /* If a name was specified, get the string. */
6159 if (at_namespace_scope_p ())
6160 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
6161 if (asmspec_tree && asmspec_tree != error_mark_node)
6162 asmspec = TREE_STRING_POINTER (asmspec_tree);
6164 if (current_class_type
6165 && CP_DECL_CONTEXT (decl) == current_class_type
6166 && TYPE_BEING_DEFINED (current_class_type)
6167 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
6168 && (DECL_INITIAL (decl) || init))
6169 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
6171 if (TREE_CODE (decl) != FUNCTION_DECL
6172 && (auto_node = type_uses_auto (type)))
6174 tree d_init;
6175 if (init == NULL_TREE)
6177 if (DECL_LANG_SPECIFIC (decl)
6178 && DECL_TEMPLATE_INSTANTIATION (decl)
6179 && !DECL_TEMPLATE_INSTANTIATED (decl))
6181 /* init is null because we're deferring instantiating the
6182 initializer until we need it. Well, we need it now. */
6183 instantiate_decl (decl, /*defer_ok*/true, /*expl*/false);
6184 return;
6187 error ("declaration of %q#D has no initializer", decl);
6188 TREE_TYPE (decl) = error_mark_node;
6189 return;
6191 d_init = init;
6192 if (TREE_CODE (d_init) == TREE_LIST)
6193 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
6194 tf_warning_or_error);
6195 d_init = resolve_nondeduced_context (d_init);
6196 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init,
6197 auto_node);
6198 if (type == error_mark_node)
6199 return;
6200 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
6203 if (!ensure_literal_type_for_constexpr_object (decl))
6204 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
6206 if (VAR_P (decl)
6207 && DECL_CLASS_SCOPE_P (decl)
6208 && DECL_INITIALIZED_IN_CLASS_P (decl))
6209 check_static_variable_definition (decl, type);
6211 if (init && TREE_CODE (decl) == FUNCTION_DECL)
6213 tree clone;
6214 if (init == ridpointers[(int)RID_DELETE])
6216 /* FIXME check this is 1st decl. */
6217 DECL_DELETED_FN (decl) = 1;
6218 DECL_DECLARED_INLINE_P (decl) = 1;
6219 DECL_INITIAL (decl) = error_mark_node;
6220 FOR_EACH_CLONE (clone, decl)
6222 DECL_DELETED_FN (clone) = 1;
6223 DECL_DECLARED_INLINE_P (clone) = 1;
6224 DECL_INITIAL (clone) = error_mark_node;
6226 init = NULL_TREE;
6228 else if (init == ridpointers[(int)RID_DEFAULT])
6230 if (defaultable_fn_check (decl))
6231 DECL_DEFAULTED_FN (decl) = 1;
6232 else
6233 DECL_INITIAL (decl) = NULL_TREE;
6237 if (init && VAR_P (decl))
6239 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
6240 /* If DECL is a reference, then we want to know whether init is a
6241 reference constant; init_const_expr_p as passed tells us whether
6242 it's an rvalue constant. */
6243 if (TREE_CODE (type) == REFERENCE_TYPE)
6244 init_const_expr_p = potential_constant_expression (init);
6245 if (init_const_expr_p)
6247 /* Set these flags now for templates. We'll update the flags in
6248 store_init_value for instantiations. */
6249 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
6250 if (decl_maybe_constant_var_p (decl))
6251 TREE_CONSTANT (decl) = 1;
6255 if (processing_template_decl)
6257 bool type_dependent_p;
6259 /* Add this declaration to the statement-tree. */
6260 if (at_function_scope_p ())
6261 add_decl_expr (decl);
6263 type_dependent_p = dependent_type_p (type);
6265 if (check_for_bare_parameter_packs (init))
6267 init = NULL_TREE;
6268 DECL_INITIAL (decl) = NULL_TREE;
6271 /* Generally, initializers in templates are expanded when the
6272 template is instantiated. But, if DECL is a variable constant
6273 then it can be used in future constant expressions, so its value
6274 must be available. */
6276 if (!VAR_P (decl) || dependent_type_p (type))
6277 /* We can't do anything if the decl has dependent type. */;
6278 else if (init
6279 && init_const_expr_p
6280 && !type_dependent_p
6281 && decl_maybe_constant_var_p (decl)
6282 && !type_dependent_init_p (init)
6283 && !value_dependent_init_p (init))
6285 /* This variable seems to be a non-dependent constant, so process
6286 its initializer. If check_initializer returns non-null the
6287 initialization wasn't constant after all. */
6288 tree init_code;
6289 cleanups = make_tree_vector ();
6290 init_code = check_initializer (decl, init, flags, &cleanups);
6291 if (init_code == NULL_TREE)
6292 init = NULL_TREE;
6293 release_tree_vector (cleanups);
6295 else if (!DECL_PRETTY_FUNCTION_P (decl))
6297 /* Deduce array size even if the initializer is dependent. */
6298 maybe_deduce_size_from_array_init (decl, init);
6299 /* And complain about multiple initializers. */
6300 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
6301 && !MAYBE_CLASS_TYPE_P (type))
6302 init = build_x_compound_expr_from_list (init, ELK_INIT,
6303 tf_warning_or_error);
6306 if (init)
6307 DECL_INITIAL (decl) = init;
6308 return;
6311 /* Just store non-static data member initializers for later. */
6312 if (init && TREE_CODE (decl) == FIELD_DECL)
6313 DECL_INITIAL (decl) = init;
6315 /* Take care of TYPE_DECLs up front. */
6316 if (TREE_CODE (decl) == TYPE_DECL)
6318 if (type != error_mark_node
6319 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
6321 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
6322 warning (0, "shadowing previous type declaration of %q#D", decl);
6323 set_identifier_type_value (DECL_NAME (decl), decl);
6326 /* If we have installed this as the canonical typedef for this
6327 type, and that type has not been defined yet, delay emitting
6328 the debug information for it, as we will emit it later. */
6329 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
6330 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
6331 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
6333 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
6334 at_eof);
6335 return;
6338 /* A reference will be modified here, as it is initialized. */
6339 if (! DECL_EXTERNAL (decl)
6340 && TREE_READONLY (decl)
6341 && TREE_CODE (type) == REFERENCE_TYPE)
6343 was_readonly = 1;
6344 TREE_READONLY (decl) = 0;
6347 if (VAR_P (decl))
6349 /* If this is a local variable that will need a mangled name,
6350 register it now. We must do this before processing the
6351 initializer for the variable, since the initialization might
6352 require a guard variable, and since the mangled name of the
6353 guard variable will depend on the mangled name of this
6354 variable. */
6355 if (DECL_FUNCTION_SCOPE_P (decl)
6356 && TREE_STATIC (decl)
6357 && !DECL_ARTIFICIAL (decl))
6359 push_local_name (decl);
6360 if (DECL_CONSTRUCTOR_P (current_function_decl)
6361 || DECL_DESTRUCTOR_P (current_function_decl))
6362 /* Normally local_decls is populated during GIMPLE lowering,
6363 but [cd]tors are never actually compiled directly. We need
6364 to put statics on the list so we can deal with the label
6365 address extension. FIXME. */
6366 add_local_decl (cfun, decl);
6369 /* Convert the initializer to the type of DECL, if we have not
6370 already initialized DECL. */
6371 if (!DECL_INITIALIZED_P (decl)
6372 /* If !DECL_EXTERNAL then DECL is being defined. In the
6373 case of a static data member initialized inside the
6374 class-specifier, there can be an initializer even if DECL
6375 is *not* defined. */
6376 && (!DECL_EXTERNAL (decl) || init))
6378 if (TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6380 tree jclass
6381 = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jclass"));
6382 /* Allow libjava/prims.cc define primitive classes. */
6383 if (init != NULL_TREE
6384 || jclass == NULL_TREE
6385 || TREE_CODE (jclass) != TYPE_DECL
6386 || !POINTER_TYPE_P (TREE_TYPE (jclass))
6387 || !same_type_ignoring_top_level_qualifiers_p
6388 (type, TREE_TYPE (TREE_TYPE (jclass))))
6389 error ("Java object %qD not allocated with %<new%>", decl);
6390 init = NULL_TREE;
6392 cleanups = make_tree_vector ();
6393 init = check_initializer (decl, init, flags, &cleanups);
6395 /* Handle:
6397 [dcl.init]
6399 The memory occupied by any object of static storage
6400 duration is zero-initialized at program startup before
6401 any other initialization takes place.
6403 We cannot create an appropriate initializer until after
6404 the type of DECL is finalized. If DECL_INITIAL is set,
6405 then the DECL is statically initialized, and any
6406 necessary zero-initialization has already been performed. */
6407 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
6408 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
6409 /*nelts=*/NULL_TREE,
6410 /*static_storage_p=*/true);
6411 /* Remember that the initialization for this variable has
6412 taken place. */
6413 DECL_INITIALIZED_P (decl) = 1;
6414 /* This declaration is the definition of this variable,
6415 unless we are initializing a static data member within
6416 the class specifier. */
6417 if (!DECL_EXTERNAL (decl))
6418 var_definition_p = true;
6420 /* If the variable has an array type, lay out the type, even if
6421 there is no initializer. It is valid to index through the
6422 array, and we must get TYPE_ALIGN set correctly on the array
6423 type. */
6424 else if (TREE_CODE (type) == ARRAY_TYPE)
6425 layout_type (type);
6427 if (TREE_STATIC (decl)
6428 && !at_function_scope_p ()
6429 && current_function_decl == NULL)
6430 /* So decl is a global variable or a static member of a
6431 non local class. Record the types it uses
6432 so that we can decide later to emit debug info for them. */
6433 record_types_used_by_current_var_decl (decl);
6435 else if (TREE_CODE (decl) == FIELD_DECL
6436 && TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6437 error ("non-static data member %qD has Java class type", decl);
6439 /* Add this declaration to the statement-tree. This needs to happen
6440 after the call to check_initializer so that the DECL_EXPR for a
6441 reference temp is added before the DECL_EXPR for the reference itself. */
6442 if (DECL_FUNCTION_SCOPE_P (decl))
6444 /* If we're building a variable sized type, and we might be
6445 reachable other than via the top of the current binding
6446 level, then create a new BIND_EXPR so that we deallocate
6447 the object at the right time. */
6448 if (VAR_P (decl)
6449 && DECL_SIZE (decl)
6450 && !TREE_CONSTANT (DECL_SIZE (decl))
6451 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
6453 tree bind;
6454 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6455 TREE_SIDE_EFFECTS (bind) = 1;
6456 add_stmt (bind);
6457 BIND_EXPR_BODY (bind) = push_stmt_list ();
6459 add_decl_expr (decl);
6462 /* Let the middle end know about variables and functions -- but not
6463 static data members in uninstantiated class templates. */
6464 if (VAR_OR_FUNCTION_DECL_P (decl))
6466 if (VAR_P (decl))
6468 layout_var_decl (decl);
6469 maybe_commonize_var (decl);
6472 /* This needs to happen after the linkage is set. */
6473 determine_visibility (decl);
6475 if (var_definition_p && TREE_STATIC (decl))
6477 /* If a TREE_READONLY variable needs initialization
6478 at runtime, it is no longer readonly and we need to
6479 avoid MEM_READONLY_P being set on RTL created for it. */
6480 if (init)
6482 if (TREE_READONLY (decl))
6483 TREE_READONLY (decl) = 0;
6484 was_readonly = 0;
6486 else if (was_readonly)
6487 TREE_READONLY (decl) = 1;
6489 /* Likewise if it needs destruction. */
6490 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
6491 TREE_READONLY (decl) = 0;
6494 make_rtl_for_nonlocal_decl (decl, init, asmspec);
6496 /* Check for abstractness of the type. Notice that there is no
6497 need to strip array types here since the check for those types
6498 is already done within create_array_type_for_decl. */
6499 abstract_virtuals_error (decl, type);
6501 if (TREE_TYPE (decl) == error_mark_node)
6502 /* No initialization required. */
6504 else if (TREE_CODE (decl) == FUNCTION_DECL)
6506 if (init)
6508 if (init == ridpointers[(int)RID_DEFAULT])
6510 /* An out-of-class default definition is defined at
6511 the point where it is explicitly defaulted. */
6512 if (DECL_DELETED_FN (decl))
6513 maybe_explain_implicit_delete (decl);
6514 else if (DECL_INITIAL (decl) == error_mark_node)
6515 synthesize_method (decl);
6517 else
6518 error ("function %q#D is initialized like a variable", decl);
6520 /* else no initialization required. */
6522 else if (DECL_EXTERNAL (decl)
6523 && ! (DECL_LANG_SPECIFIC (decl)
6524 && DECL_NOT_REALLY_EXTERN (decl)))
6526 if (init)
6527 DECL_INITIAL (decl) = init;
6529 /* A variable definition. */
6530 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6531 /* Initialize the local variable. */
6532 initialize_local_var (decl, init);
6534 /* If a variable is defined, and then a subsequent
6535 definition with external linkage is encountered, we will
6536 get here twice for the same variable. We want to avoid
6537 calling expand_static_init more than once. For variables
6538 that are not static data members, we can call
6539 expand_static_init only when we actually process the
6540 initializer. It is not legal to redeclare a static data
6541 member, so this issue does not arise in that case. */
6542 else if (var_definition_p && TREE_STATIC (decl))
6543 expand_static_init (decl, init);
6546 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
6547 reference, insert it in the statement-tree now. */
6548 if (cleanups)
6550 unsigned i; tree t;
6551 FOR_EACH_VEC_ELT (*cleanups, i, t)
6552 push_cleanup (decl, t, false);
6553 release_tree_vector (cleanups);
6556 if (was_readonly)
6557 TREE_READONLY (decl) = 1;
6559 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
6562 /* Returns a declaration for a VAR_DECL as if:
6564 extern "C" TYPE NAME;
6566 had been seen. Used to create compiler-generated global
6567 variables. */
6569 static tree
6570 declare_global_var (tree name, tree type)
6572 tree decl;
6574 push_to_top_level ();
6575 decl = build_decl (input_location, VAR_DECL, name, type);
6576 TREE_PUBLIC (decl) = 1;
6577 DECL_EXTERNAL (decl) = 1;
6578 DECL_ARTIFICIAL (decl) = 1;
6579 /* If the user has explicitly declared this variable (perhaps
6580 because the code we are compiling is part of a low-level runtime
6581 library), then it is possible that our declaration will be merged
6582 with theirs by pushdecl. */
6583 decl = pushdecl (decl);
6584 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
6585 pop_from_top_level ();
6587 return decl;
6590 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
6591 if "__cxa_atexit" is not being used) corresponding to the function
6592 to be called when the program exits. */
6594 static tree
6595 get_atexit_fn_ptr_type (void)
6597 tree fn_type;
6599 if (!atexit_fn_ptr_type_node)
6601 tree arg_type;
6602 if (flag_use_cxa_atexit
6603 && !targetm.cxx.use_atexit_for_cxa_atexit ())
6604 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
6605 arg_type = ptr_type_node;
6606 else
6607 /* The parameter to "atexit" is "void (*)(void)". */
6608 arg_type = NULL_TREE;
6610 fn_type = build_function_type_list (void_type_node,
6611 arg_type, NULL_TREE);
6612 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
6615 return atexit_fn_ptr_type_node;
6618 /* Returns a pointer to the `atexit' function. Note that if
6619 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
6620 `__cxa_atexit' function specified in the IA64 C++ ABI. */
6622 static tree
6623 get_atexit_node (void)
6625 tree atexit_fndecl;
6626 tree fn_type;
6627 tree fn_ptr_type;
6628 const char *name;
6629 bool use_aeabi_atexit;
6631 if (atexit_node)
6632 return atexit_node;
6634 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
6636 /* The declaration for `__cxa_atexit' is:
6638 int __cxa_atexit (void (*)(void *), void *, void *)
6640 We build up the argument types and then the function type
6641 itself. */
6642 tree argtype0, argtype1, argtype2;
6644 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
6645 /* First, build the pointer-to-function type for the first
6646 argument. */
6647 fn_ptr_type = get_atexit_fn_ptr_type ();
6648 /* Then, build the rest of the argument types. */
6649 argtype2 = ptr_type_node;
6650 if (use_aeabi_atexit)
6652 argtype1 = fn_ptr_type;
6653 argtype0 = ptr_type_node;
6655 else
6657 argtype1 = ptr_type_node;
6658 argtype0 = fn_ptr_type;
6660 /* And the final __cxa_atexit type. */
6661 fn_type = build_function_type_list (integer_type_node,
6662 argtype0, argtype1, argtype2,
6663 NULL_TREE);
6664 if (use_aeabi_atexit)
6665 name = "__aeabi_atexit";
6666 else
6667 name = "__cxa_atexit";
6669 else
6671 /* The declaration for `atexit' is:
6673 int atexit (void (*)());
6675 We build up the argument types and then the function type
6676 itself. */
6677 fn_ptr_type = get_atexit_fn_ptr_type ();
6678 /* Build the final atexit type. */
6679 fn_type = build_function_type_list (integer_type_node,
6680 fn_ptr_type, NULL_TREE);
6681 name = "atexit";
6684 /* Now, build the function declaration. */
6685 push_lang_context (lang_name_c);
6686 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
6687 mark_used (atexit_fndecl);
6688 pop_lang_context ();
6689 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
6691 return atexit_node;
6694 /* Like get_atexit_node, but for thread-local cleanups. */
6696 static tree
6697 get_thread_atexit_node (void)
6699 /* The declaration for `__cxa_thread_atexit' is:
6701 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
6702 tree fn_type = build_function_type_list (integer_type_node,
6703 get_atexit_fn_ptr_type (),
6704 ptr_type_node, ptr_type_node,
6705 NULL_TREE);
6707 /* Now, build the function declaration. */
6708 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
6709 ECF_LEAF | ECF_NOTHROW);
6710 return decay_conversion (atexit_fndecl, tf_warning_or_error);
6713 /* Returns the __dso_handle VAR_DECL. */
6715 static tree
6716 get_dso_handle_node (void)
6718 if (dso_handle_node)
6719 return dso_handle_node;
6721 /* Declare the variable. */
6722 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
6723 ptr_type_node);
6725 #ifdef HAVE_GAS_HIDDEN
6726 if (dso_handle_node != error_mark_node)
6728 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
6729 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
6731 #endif
6733 return dso_handle_node;
6736 /* Begin a new function with internal linkage whose job will be simply
6737 to destroy some particular variable. */
6739 static GTY(()) int start_cleanup_cnt;
6741 static tree
6742 start_cleanup_fn (void)
6744 char name[32];
6745 tree fntype;
6746 tree fndecl;
6747 bool use_cxa_atexit = flag_use_cxa_atexit
6748 && !targetm.cxx.use_atexit_for_cxa_atexit ();
6750 push_to_top_level ();
6752 /* No need to mangle this. */
6753 push_lang_context (lang_name_c);
6755 /* Build the name of the function. */
6756 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
6757 /* Build the function declaration. */
6758 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
6759 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
6760 /* It's a function with internal linkage, generated by the
6761 compiler. */
6762 TREE_PUBLIC (fndecl) = 0;
6763 DECL_ARTIFICIAL (fndecl) = 1;
6764 /* Make the function `inline' so that it is only emitted if it is
6765 actually needed. It is unlikely that it will be inlined, since
6766 it is only called via a function pointer, but we avoid unnecessary
6767 emissions this way. */
6768 DECL_DECLARED_INLINE_P (fndecl) = 1;
6769 DECL_INTERFACE_KNOWN (fndecl) = 1;
6770 /* Build the parameter. */
6771 if (use_cxa_atexit)
6773 tree parmdecl;
6775 parmdecl = cp_build_parm_decl (NULL_TREE, ptr_type_node);
6776 DECL_CONTEXT (parmdecl) = fndecl;
6777 TREE_USED (parmdecl) = 1;
6778 DECL_READ_P (parmdecl) = 1;
6779 DECL_ARGUMENTS (fndecl) = parmdecl;
6782 pushdecl (fndecl);
6783 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
6785 pop_lang_context ();
6787 return current_function_decl;
6790 /* Finish the cleanup function begun by start_cleanup_fn. */
6792 static void
6793 end_cleanup_fn (void)
6795 expand_or_defer_fn (finish_function (0));
6797 pop_from_top_level ();
6800 /* Generate code to handle the destruction of DECL, an object with
6801 static storage duration. */
6803 tree
6804 register_dtor_fn (tree decl)
6806 tree cleanup;
6807 tree addr;
6808 tree compound_stmt;
6809 tree fcall;
6810 tree type;
6811 bool ob_parm, dso_parm, use_dtor;
6812 tree arg0, arg1, arg2;
6813 tree atex_node;
6815 type = TREE_TYPE (decl);
6816 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
6817 return void_zero_node;
6819 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
6820 "__aeabi_atexit"), and DECL is a class object, we can just pass the
6821 destructor to "__cxa_atexit"; we don't have to build a temporary
6822 function to do the cleanup. */
6823 dso_parm = (flag_use_cxa_atexit
6824 && !targetm.cxx.use_atexit_for_cxa_atexit ());
6825 ob_parm = (DECL_THREAD_LOCAL_P (decl) || dso_parm);
6826 use_dtor = ob_parm && CLASS_TYPE_P (type);
6827 if (use_dtor)
6829 int idx;
6831 /* Find the destructor. */
6832 idx = lookup_fnfields_1 (type, complete_dtor_identifier);
6833 gcc_assert (idx >= 0);
6834 cleanup = (*CLASSTYPE_METHOD_VEC (type))[idx];
6835 /* Make sure it is accessible. */
6836 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
6837 tf_warning_or_error);
6839 else
6841 /* Call build_cleanup before we enter the anonymous function so
6842 that any access checks will be done relative to the current
6843 scope, rather than the scope of the anonymous function. */
6844 build_cleanup (decl);
6846 /* Now start the function. */
6847 cleanup = start_cleanup_fn ();
6849 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
6850 to the original function, rather than the anonymous one. That
6851 will make the back end think that nested functions are in use,
6852 which causes confusion. */
6853 push_deferring_access_checks (dk_no_check);
6854 fcall = build_cleanup (decl);
6855 pop_deferring_access_checks ();
6857 /* Create the body of the anonymous function. */
6858 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
6859 finish_expr_stmt (fcall);
6860 finish_compound_stmt (compound_stmt);
6861 end_cleanup_fn ();
6864 /* Call atexit with the cleanup function. */
6865 mark_used (cleanup);
6866 cleanup = build_address (cleanup);
6868 if (DECL_THREAD_LOCAL_P (decl))
6869 atex_node = get_thread_atexit_node ();
6870 else
6871 atex_node = get_atexit_node ();
6873 if (use_dtor)
6875 /* We must convert CLEANUP to the type that "__cxa_atexit"
6876 expects. */
6877 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
6878 /* "__cxa_atexit" will pass the address of DECL to the
6879 cleanup function. */
6880 mark_used (decl);
6881 addr = build_address (decl);
6882 /* The declared type of the parameter to "__cxa_atexit" is
6883 "void *". For plain "T*", we could just let the
6884 machinery in cp_build_function_call convert it -- but if the
6885 type is "cv-qualified T *", then we need to convert it
6886 before passing it in, to avoid spurious errors. */
6887 addr = build_nop (ptr_type_node, addr);
6889 else
6890 /* Since the cleanup functions we build ignore the address
6891 they're given, there's no reason to pass the actual address
6892 in, and, in general, it's cheaper to pass NULL than any
6893 other value. */
6894 addr = null_pointer_node;
6896 if (dso_parm)
6897 arg2 = cp_build_addr_expr (get_dso_handle_node (),
6898 tf_warning_or_error);
6899 else if (ob_parm)
6900 /* Just pass NULL to the dso handle parm if we don't actually
6901 have a DSO handle on this target. */
6902 arg2 = null_pointer_node;
6903 else
6904 arg2 = NULL_TREE;
6906 if (ob_parm)
6908 if (!DECL_THREAD_LOCAL_P (decl)
6909 && targetm.cxx.use_aeabi_atexit ())
6911 arg1 = cleanup;
6912 arg0 = addr;
6914 else
6916 arg1 = addr;
6917 arg0 = cleanup;
6920 else
6922 arg0 = cleanup;
6923 arg1 = NULL_TREE;
6925 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
6926 arg0, arg1, arg2, NULL_TREE);
6929 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
6930 is its initializer. Generate code to handle the construction
6931 and destruction of DECL. */
6933 static void
6934 expand_static_init (tree decl, tree init)
6936 gcc_assert (VAR_P (decl));
6937 gcc_assert (TREE_STATIC (decl));
6939 /* Some variables require no dynamic initialization. */
6940 if (!init
6941 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
6943 /* Make sure the destructor is callable. */
6944 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6945 return;
6948 if (DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
6949 && !DECL_FUNCTION_SCOPE_P (decl))
6951 if (init)
6952 error ("non-local variable %qD declared %<__thread%> "
6953 "needs dynamic initialization", decl);
6954 else
6955 error ("non-local variable %qD declared %<__thread%> "
6956 "has a non-trivial destructor", decl);
6957 static bool informed;
6958 if (!informed)
6960 inform (DECL_SOURCE_LOCATION (decl),
6961 "C++11 %<thread_local%> allows dynamic initialization "
6962 "and destruction");
6963 informed = true;
6965 return;
6968 if (DECL_FUNCTION_SCOPE_P (decl))
6970 /* Emit code to perform this initialization but once. */
6971 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
6972 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
6973 tree guard, guard_addr;
6974 tree flag, begin;
6975 /* We don't need thread-safety code for thread-local vars. */
6976 bool thread_guard = (flag_threadsafe_statics
6977 && !DECL_THREAD_LOCAL_P (decl));
6979 /* Emit code to perform this initialization but once. This code
6980 looks like:
6982 static <type> guard;
6983 if (!guard.first_byte) {
6984 if (__cxa_guard_acquire (&guard)) {
6985 bool flag = false;
6986 try {
6987 // Do initialization.
6988 flag = true; __cxa_guard_release (&guard);
6989 // Register variable for destruction at end of program.
6990 } catch {
6991 if (!flag) __cxa_guard_abort (&guard);
6995 Note that the `flag' variable is only set to 1 *after* the
6996 initialization is complete. This ensures that an exception,
6997 thrown during the construction, will cause the variable to
6998 reinitialized when we pass through this code again, as per:
7000 [stmt.dcl]
7002 If the initialization exits by throwing an exception, the
7003 initialization is not complete, so it will be tried again
7004 the next time control enters the declaration.
7006 This process should be thread-safe, too; multiple threads
7007 should not be able to initialize the variable more than
7008 once. */
7010 /* Create the guard variable. */
7011 guard = get_guard (decl);
7013 /* This optimization isn't safe on targets with relaxed memory
7014 consistency. On such targets we force synchronization in
7015 __cxa_guard_acquire. */
7016 if (!targetm.relaxed_ordering || !thread_guard)
7018 /* Begin the conditional initialization. */
7019 if_stmt = begin_if_stmt ();
7020 finish_if_stmt_cond (get_guard_cond (guard), if_stmt);
7021 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7024 if (thread_guard)
7026 tree vfntype = NULL_TREE;
7027 tree acquire_name, release_name, abort_name;
7028 tree acquire_fn, release_fn, abort_fn;
7029 guard_addr = build_address (guard);
7031 acquire_name = get_identifier ("__cxa_guard_acquire");
7032 release_name = get_identifier ("__cxa_guard_release");
7033 abort_name = get_identifier ("__cxa_guard_abort");
7034 acquire_fn = identifier_global_value (acquire_name);
7035 release_fn = identifier_global_value (release_name);
7036 abort_fn = identifier_global_value (abort_name);
7037 if (!acquire_fn)
7038 acquire_fn = push_library_fn
7039 (acquire_name, build_function_type_list (integer_type_node,
7040 TREE_TYPE (guard_addr),
7041 NULL_TREE),
7042 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
7043 if (!release_fn || !abort_fn)
7044 vfntype = build_function_type_list (void_type_node,
7045 TREE_TYPE (guard_addr),
7046 NULL_TREE);
7047 if (!release_fn)
7048 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
7049 ECF_NOTHROW | ECF_LEAF);
7050 if (!abort_fn)
7051 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
7052 ECF_NOTHROW | ECF_LEAF);
7054 inner_if_stmt = begin_if_stmt ();
7055 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
7056 inner_if_stmt);
7058 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7059 begin = get_target_expr (boolean_false_node);
7060 flag = TARGET_EXPR_SLOT (begin);
7062 TARGET_EXPR_CLEANUP (begin)
7063 = build3 (COND_EXPR, void_type_node, flag,
7064 void_zero_node,
7065 build_call_n (abort_fn, 1, guard_addr));
7066 CLEANUP_EH_ONLY (begin) = 1;
7068 /* Do the initialization itself. */
7069 init = add_stmt_to_compound (begin, init);
7070 init = add_stmt_to_compound
7071 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
7072 init = add_stmt_to_compound
7073 (init, build_call_n (release_fn, 1, guard_addr));
7075 else
7076 init = add_stmt_to_compound (init, set_guard (guard));
7078 /* Use atexit to register a function for destroying this static
7079 variable. */
7080 init = add_stmt_to_compound (init, register_dtor_fn (decl));
7082 finish_expr_stmt (init);
7084 if (thread_guard)
7086 finish_compound_stmt (inner_then_clause);
7087 finish_then_clause (inner_if_stmt);
7088 finish_if_stmt (inner_if_stmt);
7091 if (!targetm.relaxed_ordering || !thread_guard)
7093 finish_compound_stmt (then_clause);
7094 finish_then_clause (if_stmt);
7095 finish_if_stmt (if_stmt);
7098 else if (DECL_THREAD_LOCAL_P (decl))
7099 tls_aggregates = tree_cons (init, decl, tls_aggregates);
7100 else
7101 static_aggregates = tree_cons (init, decl, static_aggregates);
7105 /* Make TYPE a complete type based on INITIAL_VALUE.
7106 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
7107 2 if there was no information (in which case assume 0 if DO_DEFAULT),
7108 3 if the initializer list is empty (in pedantic mode). */
7111 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
7113 int failure;
7114 tree type, elt_type;
7116 /* Don't get confused by a CONSTRUCTOR for some other type. */
7117 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
7118 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value))
7119 return 1;
7121 if (initial_value)
7123 unsigned HOST_WIDE_INT i;
7124 tree value;
7126 /* An array of character type can be initialized from a
7127 brace-enclosed string constant.
7129 FIXME: this code is duplicated from reshape_init. Probably
7130 we should just call reshape_init here? */
7131 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
7132 && TREE_CODE (initial_value) == CONSTRUCTOR
7133 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
7135 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
7136 tree value = (*v)[0].value;
7138 if (TREE_CODE (value) == STRING_CST
7139 && v->length () == 1)
7140 initial_value = value;
7143 /* If any of the elements are parameter packs, we can't actually
7144 complete this type now because the array size is dependent. */
7145 if (TREE_CODE (initial_value) == CONSTRUCTOR)
7147 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
7148 i, value)
7150 if (PACK_EXPANSION_P (value))
7151 return 0;
7156 failure = complete_array_type (ptype, initial_value, do_default);
7158 /* We can create the array before the element type is complete, which
7159 means that we didn't have these two bits set in the original type
7160 either. In completing the type, we are expected to propagate these
7161 bits. See also complete_type which does the same thing for arrays
7162 of fixed size. */
7163 type = *ptype;
7164 if (TYPE_DOMAIN (type))
7166 elt_type = TREE_TYPE (type);
7167 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
7168 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
7169 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
7172 return failure;
7175 /* As above, but either give an error or reject zero-size arrays, depending
7176 on COMPLAIN. */
7179 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
7180 bool do_default, tsubst_flags_t complain)
7182 int failure;
7183 bool sfinae = !(complain & tf_error);
7184 /* In SFINAE context we can't be lenient about zero-size arrays. */
7185 if (sfinae)
7186 ++pedantic;
7187 failure = cp_complete_array_type (ptype, initial_value, do_default);
7188 if (sfinae)
7189 --pedantic;
7190 if (failure)
7192 if (sfinae)
7193 /* Not an error. */;
7194 else if (failure == 1)
7195 error ("initializer fails to determine size of %qT", *ptype);
7196 else if (failure == 2)
7198 if (do_default)
7199 error ("array size missing in %qT", *ptype);
7201 else if (failure == 3)
7202 error ("zero-size array %qT", *ptype);
7203 *ptype = error_mark_node;
7205 return failure;
7208 /* Return zero if something is declared to be a member of type
7209 CTYPE when in the context of CUR_TYPE. STRING is the error
7210 message to print in that case. Otherwise, quietly return 1. */
7212 static int
7213 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
7215 if (ctype && ctype != cur_type)
7217 if (flags == DTOR_FLAG)
7218 error ("destructor for alien class %qT cannot be a member", ctype);
7219 else
7220 error ("constructor for alien class %qT cannot be a member", ctype);
7221 return 0;
7223 return 1;
7226 /* Subroutine of `grokdeclarator'. */
7228 /* Generate errors possibly applicable for a given set of specifiers.
7229 This is for ARM $7.1.2. */
7231 static void
7232 bad_specifiers (tree object,
7233 enum bad_spec_place type,
7234 int virtualp,
7235 int quals,
7236 int inlinep,
7237 int friendp,
7238 int raises)
7240 switch (type)
7242 case BSP_VAR:
7243 if (virtualp)
7244 error ("%qD declared as a %<virtual%> variable", object);
7245 if (inlinep)
7246 error ("%qD declared as an %<inline%> variable", object);
7247 if (quals)
7248 error ("%<const%> and %<volatile%> function specifiers on "
7249 "%qD invalid in variable declaration", object);
7250 break;
7251 case BSP_PARM:
7252 if (virtualp)
7253 error ("%qD declared as a %<virtual%> parameter", object);
7254 if (inlinep)
7255 error ("%qD declared as an %<inline%> parameter", object);
7256 if (quals)
7257 error ("%<const%> and %<volatile%> function specifiers on "
7258 "%qD invalid in parameter declaration", object);
7259 break;
7260 case BSP_TYPE:
7261 if (virtualp)
7262 error ("%qD declared as a %<virtual%> type", object);
7263 if (inlinep)
7264 error ("%qD declared as an %<inline%> type", object);
7265 if (quals)
7266 error ("%<const%> and %<volatile%> function specifiers on "
7267 "%qD invalid in type declaration", object);
7268 break;
7269 case BSP_FIELD:
7270 if (virtualp)
7271 error ("%qD declared as a %<virtual%> field", object);
7272 if (inlinep)
7273 error ("%qD declared as an %<inline%> field", object);
7274 if (quals)
7275 error ("%<const%> and %<volatile%> function specifiers on "
7276 "%qD invalid in field declaration", object);
7277 break;
7278 default:
7279 gcc_unreachable();
7281 if (friendp)
7282 error ("%q+D declared as a friend", object);
7283 if (raises
7284 && (TREE_CODE (object) == TYPE_DECL
7285 || (!TYPE_PTRFN_P (TREE_TYPE (object))
7286 && !TYPE_REFFN_P (TREE_TYPE (object))
7287 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
7288 error ("%q+D declared with an exception specification", object);
7291 /* DECL is a member function or static data member and is presently
7292 being defined. Check that the definition is taking place in a
7293 valid namespace. */
7295 static void
7296 check_class_member_definition_namespace (tree decl)
7298 /* These checks only apply to member functions and static data
7299 members. */
7300 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
7301 /* We check for problems with specializations in pt.c in
7302 check_specialization_namespace, where we can issue better
7303 diagnostics. */
7304 if (processing_specialization)
7305 return;
7306 /* There are no restrictions on the placement of
7307 explicit instantiations. */
7308 if (processing_explicit_instantiation)
7309 return;
7310 /* [class.mfct]
7312 A member function definition that appears outside of the
7313 class definition shall appear in a namespace scope enclosing
7314 the class definition.
7316 [class.static.data]
7318 The definition for a static data member shall appear in a
7319 namespace scope enclosing the member's class definition. */
7320 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
7321 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
7322 decl, DECL_CONTEXT (decl));
7325 /* Build a PARM_DECL for the "this" parameter. TYPE is the
7326 METHOD_TYPE for a non-static member function; QUALS are the
7327 cv-qualifiers that apply to the function. */
7329 tree
7330 build_this_parm (tree type, cp_cv_quals quals)
7332 tree this_type;
7333 tree qual_type;
7334 tree parm;
7335 cp_cv_quals this_quals;
7337 if (CLASS_TYPE_P (type))
7339 this_type
7340 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
7341 this_type = build_pointer_type (this_type);
7343 else
7344 this_type = type_of_this_parm (type);
7345 /* The `this' parameter is implicitly `const'; it cannot be
7346 assigned to. */
7347 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
7348 qual_type = cp_build_qualified_type (this_type, this_quals);
7349 parm = build_artificial_parm (this_identifier, qual_type);
7350 cp_apply_type_quals_to_decl (this_quals, parm);
7351 return parm;
7354 /* DECL is a static member function. Complain if it was declared
7355 with function-cv-quals. */
7357 static void
7358 check_static_quals (tree decl, cp_cv_quals quals)
7360 if (quals != TYPE_UNQUALIFIED)
7361 error ("static member function %q#D declared with type qualifiers",
7362 decl);
7365 /* Helper function. Replace the temporary this parameter injected
7366 during cp_finish_omp_declare_simd with the real this parameter. */
7368 static tree
7369 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
7371 tree this_parm = (tree) data;
7372 if (TREE_CODE (*tp) == PARM_DECL
7373 && DECL_NAME (*tp) == this_identifier
7374 && *tp != this_parm)
7375 *tp = this_parm;
7376 else if (TYPE_P (*tp))
7377 *walk_subtrees = 0;
7378 return NULL_TREE;
7381 /* CTYPE is class type, or null if non-class.
7382 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
7383 or METHOD_TYPE.
7384 DECLARATOR is the function's name.
7385 PARMS is a chain of PARM_DECLs for the function.
7386 VIRTUALP is truthvalue of whether the function is virtual or not.
7387 FLAGS are to be passed through to `grokclassfn'.
7388 QUALS are qualifiers indicating whether the function is `const'
7389 or `volatile'.
7390 RAISES is a list of exceptions that this function can raise.
7391 CHECK is 1 if we must find this method in CTYPE, 0 if we should
7392 not look, and -1 if we should not call `grokclassfn' at all.
7394 SFK is the kind of special function (if any) for the new function.
7396 Returns `NULL_TREE' if something goes wrong, after issuing
7397 applicable error messages. */
7399 static tree
7400 grokfndecl (tree ctype,
7401 tree type,
7402 tree declarator,
7403 tree parms,
7404 tree orig_declarator,
7405 int virtualp,
7406 enum overload_flags flags,
7407 cp_cv_quals quals,
7408 cp_ref_qualifier rqual,
7409 tree raises,
7410 int check,
7411 int friendp,
7412 int publicp,
7413 int inlinep,
7414 special_function_kind sfk,
7415 bool funcdef_flag,
7416 int template_count,
7417 tree in_namespace,
7418 tree* attrlist,
7419 location_t location)
7421 tree decl;
7422 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
7423 tree t;
7425 if (rqual)
7426 type = build_ref_qualified_type (type, rqual);
7427 if (raises)
7428 type = build_exception_variant (type, raises);
7430 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
7432 /* If we have an explicit location, use it, otherwise use whatever
7433 build_lang_decl used (probably input_location). */
7434 if (location != UNKNOWN_LOCATION)
7435 DECL_SOURCE_LOCATION (decl) = location;
7437 if (TREE_CODE (type) == METHOD_TYPE)
7439 tree parm;
7440 parm = build_this_parm (type, quals);
7441 DECL_CHAIN (parm) = parms;
7442 parms = parm;
7444 DECL_ARGUMENTS (decl) = parms;
7445 for (t = parms; t; t = DECL_CHAIN (t))
7446 DECL_CONTEXT (t) = decl;
7447 /* Propagate volatile out from type to decl. */
7448 if (TYPE_VOLATILE (type))
7449 TREE_THIS_VOLATILE (decl) = 1;
7451 /* Setup decl according to sfk. */
7452 switch (sfk)
7454 case sfk_constructor:
7455 case sfk_copy_constructor:
7456 case sfk_move_constructor:
7457 DECL_CONSTRUCTOR_P (decl) = 1;
7458 break;
7459 case sfk_destructor:
7460 DECL_DESTRUCTOR_P (decl) = 1;
7461 break;
7462 default:
7463 break;
7466 /* If pointers to member functions use the least significant bit to
7467 indicate whether a function is virtual, ensure a pointer
7468 to this function will have that bit clear. */
7469 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
7470 && TREE_CODE (type) == METHOD_TYPE
7471 && DECL_ALIGN (decl) < 2 * BITS_PER_UNIT)
7472 DECL_ALIGN (decl) = 2 * BITS_PER_UNIT;
7474 if (friendp
7475 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
7477 if (funcdef_flag)
7478 error
7479 ("defining explicit specialization %qD in friend declaration",
7480 orig_declarator);
7481 else
7483 tree fns = TREE_OPERAND (orig_declarator, 0);
7484 tree args = TREE_OPERAND (orig_declarator, 1);
7486 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
7488 /* Something like `template <class T> friend void f<T>()'. */
7489 error ("invalid use of template-id %qD in declaration "
7490 "of primary template",
7491 orig_declarator);
7492 return NULL_TREE;
7496 /* A friend declaration of the form friend void f<>(). Record
7497 the information in the TEMPLATE_ID_EXPR. */
7498 SET_DECL_IMPLICIT_INSTANTIATION (decl);
7500 gcc_assert (identifier_p (fns) || TREE_CODE (fns) == OVERLOAD);
7501 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
7503 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
7504 if (TREE_PURPOSE (t)
7505 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
7507 error ("default arguments are not allowed in declaration "
7508 "of friend template specialization %qD",
7509 decl);
7510 return NULL_TREE;
7513 if (inlinep & 1)
7514 error ("%<inline%> is not allowed in declaration of friend "
7515 "template specialization %qD",
7516 decl);
7517 if (inlinep & 2)
7518 error ("%<constexpr%> is not allowed in declaration of friend "
7519 "template specialization %qD",
7520 decl);
7521 if (inlinep)
7522 return NULL_TREE;
7526 /* If this decl has namespace scope, set that up. */
7527 if (in_namespace)
7528 set_decl_namespace (decl, in_namespace, friendp);
7529 else if (!ctype)
7530 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
7532 /* `main' and builtins have implicit 'C' linkage. */
7533 if ((MAIN_NAME_P (declarator)
7534 || (IDENTIFIER_LENGTH (declarator) > 10
7535 && IDENTIFIER_POINTER (declarator)[0] == '_'
7536 && IDENTIFIER_POINTER (declarator)[1] == '_'
7537 && strncmp (IDENTIFIER_POINTER (declarator)+2, "builtin_", 8) == 0)
7538 || (targetcm.cxx_implicit_extern_c
7539 && targetcm.cxx_implicit_extern_c(IDENTIFIER_POINTER (declarator))))
7540 && current_lang_name == lang_name_cplusplus
7541 && ctype == NULL_TREE
7542 && DECL_FILE_SCOPE_P (decl))
7543 SET_DECL_LANGUAGE (decl, lang_c);
7545 /* Should probably propagate const out from type to decl I bet (mrs). */
7546 if (staticp)
7548 DECL_STATIC_FUNCTION_P (decl) = 1;
7549 DECL_CONTEXT (decl) = ctype;
7552 if (ctype)
7554 DECL_CONTEXT (decl) = ctype;
7555 if (funcdef_flag)
7556 check_class_member_definition_namespace (decl);
7559 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
7561 if (PROCESSING_REAL_TEMPLATE_DECL_P())
7562 error ("cannot declare %<::main%> to be a template");
7563 if (inlinep & 1)
7564 error ("cannot declare %<::main%> to be inline");
7565 if (inlinep & 2)
7566 error ("cannot declare %<::main%> to be constexpr");
7567 if (!publicp)
7568 error ("cannot declare %<::main%> to be static");
7569 inlinep = 0;
7570 publicp = 1;
7573 /* Members of anonymous types and local classes have no linkage; make
7574 them internal. If a typedef is made later, this will be changed. */
7575 if (ctype && (TYPE_ANONYMOUS_P (ctype)
7576 || decl_function_context (TYPE_MAIN_DECL (ctype))))
7577 publicp = 0;
7579 if (publicp && cxx_dialect == cxx98)
7581 /* [basic.link]: A name with no linkage (notably, the name of a class
7582 or enumeration declared in a local scope) shall not be used to
7583 declare an entity with linkage.
7585 DR 757 relaxes this restriction for C++0x. */
7586 no_linkage_error (decl);
7589 TREE_PUBLIC (decl) = publicp;
7590 if (! publicp)
7592 DECL_INTERFACE_KNOWN (decl) = 1;
7593 DECL_NOT_REALLY_EXTERN (decl) = 1;
7596 /* If the declaration was declared inline, mark it as such. */
7597 if (inlinep)
7598 DECL_DECLARED_INLINE_P (decl) = 1;
7599 if (inlinep & 2)
7600 DECL_DECLARED_CONSTEXPR_P (decl) = true;
7602 DECL_EXTERNAL (decl) = 1;
7603 if (TREE_CODE (type) == FUNCTION_TYPE)
7605 if (quals)
7607 error (ctype
7608 ? G_("static member function %qD cannot have cv-qualifier")
7609 : G_("non-member function %qD cannot have cv-qualifier"),
7610 decl);
7611 quals = TYPE_UNQUALIFIED;
7614 if (rqual)
7616 error (ctype
7617 ? G_("static member function %qD cannot have ref-qualifier")
7618 : G_("non-member function %qD cannot have ref-qualifier"),
7619 decl);
7620 rqual = REF_QUAL_NONE;
7624 if (IDENTIFIER_OPNAME_P (DECL_NAME (decl))
7625 && !grok_op_properties (decl, /*complain=*/true))
7626 return NULL_TREE;
7627 else if (UDLIT_OPER_P (DECL_NAME (decl)))
7629 bool long_long_unsigned_p;
7630 bool long_double_p;
7631 const char *suffix = NULL;
7632 /* [over.literal]/6: Literal operators shall not have C linkage. */
7633 if (DECL_LANGUAGE (decl) == lang_c)
7635 error ("literal operator with C linkage");
7636 return NULL_TREE;
7639 if (DECL_NAMESPACE_SCOPE_P (decl))
7641 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
7642 &long_double_p))
7644 error ("%qD has invalid argument list", decl);
7645 return NULL_TREE;
7648 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
7649 if (long_long_unsigned_p)
7651 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
7652 warning (0, "integer suffix %<%s%>"
7653 " shadowed by implementation", suffix);
7655 else if (long_double_p)
7657 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
7658 warning (0, "floating point suffix %<%s%>"
7659 " shadowed by implementation", suffix);
7662 else
7664 error ("%qD must be a non-member function", decl);
7665 return NULL_TREE;
7669 if (funcdef_flag)
7670 /* Make the init_value nonzero so pushdecl knows this is not
7671 tentative. error_mark_node is replaced later with the BLOCK. */
7672 DECL_INITIAL (decl) = error_mark_node;
7674 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
7675 TREE_NOTHROW (decl) = 1;
7677 if (flag_openmp || flag_cilkplus)
7679 /* Adjust "omp declare simd" attributes. */
7680 tree ods = lookup_attribute ("omp declare simd", *attrlist);
7681 if (ods)
7683 tree attr;
7684 for (attr = ods; attr;
7685 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
7687 if (TREE_CODE (type) == METHOD_TYPE)
7688 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
7689 DECL_ARGUMENTS (decl), NULL);
7690 if (TREE_VALUE (attr) != NULL_TREE)
7692 tree cl = TREE_VALUE (TREE_VALUE (attr));
7693 cl = c_omp_declare_simd_clauses_to_numbers
7694 (DECL_ARGUMENTS (decl), cl);
7695 if (cl)
7696 TREE_VALUE (TREE_VALUE (attr)) = cl;
7697 else
7698 TREE_VALUE (attr) = NULL_TREE;
7704 /* Caller will do the rest of this. */
7705 if (check < 0)
7706 return decl;
7708 if (ctype != NULL_TREE)
7709 grokclassfn (ctype, decl, flags);
7711 /* 12.4/3 */
7712 if (cxx_dialect >= cxx11
7713 && DECL_DESTRUCTOR_P (decl)
7714 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
7715 && !processing_template_decl)
7716 deduce_noexcept_on_destructor (decl);
7718 decl = check_explicit_specialization (orig_declarator, decl,
7719 template_count,
7720 2 * funcdef_flag +
7721 4 * (friendp != 0));
7722 if (decl == error_mark_node)
7723 return NULL_TREE;
7725 if (DECL_STATIC_FUNCTION_P (decl))
7726 check_static_quals (decl, quals);
7728 if (attrlist)
7730 cplus_decl_attributes (&decl, *attrlist, 0);
7731 *attrlist = NULL_TREE;
7734 /* Check main's type after attributes have been applied. */
7735 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
7737 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
7738 integer_type_node))
7740 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
7741 tree newtype;
7742 error ("%<::main%> must return %<int%>");
7743 newtype = build_function_type (integer_type_node, oldtypeargs);
7744 TREE_TYPE (decl) = newtype;
7746 if (warn_main)
7747 check_main_parameter_types (decl);
7750 if (ctype != NULL_TREE
7751 && (! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
7752 && check)
7754 tree old_decl = check_classfn (ctype, decl,
7755 (processing_template_decl
7756 > template_class_depth (ctype))
7757 ? current_template_parms
7758 : NULL_TREE);
7760 if (old_decl == error_mark_node)
7761 return NULL_TREE;
7763 if (old_decl)
7765 tree ok;
7766 tree pushed_scope;
7768 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
7769 /* Because grokfndecl is always supposed to return a
7770 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
7771 here. We depend on our callers to figure out that its
7772 really a template that's being returned. */
7773 old_decl = DECL_TEMPLATE_RESULT (old_decl);
7775 if (DECL_STATIC_FUNCTION_P (old_decl)
7776 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
7778 /* Remove the `this' parm added by grokclassfn. */
7779 revert_static_member_fn (decl);
7780 check_static_quals (decl, quals);
7782 if (DECL_ARTIFICIAL (old_decl))
7784 error ("definition of implicitly-declared %qD", old_decl);
7785 return NULL_TREE;
7787 else if (DECL_DEFAULTED_FN (old_decl))
7789 error ("definition of explicitly-defaulted %q+D", decl);
7790 error ("%q+#D explicitly defaulted here", old_decl);
7791 return NULL_TREE;
7794 /* Since we've smashed OLD_DECL to its
7795 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
7796 if (TREE_CODE (decl) == TEMPLATE_DECL)
7797 decl = DECL_TEMPLATE_RESULT (decl);
7799 /* Attempt to merge the declarations. This can fail, in
7800 the case of some invalid specialization declarations. */
7801 pushed_scope = push_scope (ctype);
7802 ok = duplicate_decls (decl, old_decl, friendp);
7803 if (pushed_scope)
7804 pop_scope (pushed_scope);
7805 if (!ok)
7807 error ("no %q#D member function declared in class %qT",
7808 decl, ctype);
7809 return NULL_TREE;
7811 return old_decl;
7815 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
7816 return NULL_TREE;
7818 if (ctype == NULL_TREE || check)
7819 return decl;
7821 if (virtualp)
7822 DECL_VIRTUAL_P (decl) = 1;
7824 return decl;
7827 /* decl is a FUNCTION_DECL.
7828 specifiers are the parsed virt-specifiers.
7830 Set flags to reflect the virt-specifiers.
7832 Returns decl. */
7834 static tree
7835 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
7837 if (decl == NULL_TREE)
7838 return decl;
7839 if (specifiers & VIRT_SPEC_OVERRIDE)
7840 DECL_OVERRIDE_P (decl) = 1;
7841 if (specifiers & VIRT_SPEC_FINAL)
7842 DECL_FINAL_P (decl) = 1;
7843 return decl;
7846 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
7847 the linkage that DECL will receive in the object file. */
7849 static void
7850 set_linkage_for_static_data_member (tree decl)
7852 /* A static data member always has static storage duration and
7853 external linkage. Note that static data members are forbidden in
7854 local classes -- the only situation in which a class has
7855 non-external linkage. */
7856 TREE_PUBLIC (decl) = 1;
7857 TREE_STATIC (decl) = 1;
7858 /* For non-template classes, static data members are always put
7859 out in exactly those files where they are defined, just as
7860 with ordinary namespace-scope variables. */
7861 if (!processing_template_decl)
7862 DECL_INTERFACE_KNOWN (decl) = 1;
7865 /* Create a VAR_DECL named NAME with the indicated TYPE.
7867 If SCOPE is non-NULL, it is the class type or namespace containing
7868 the variable. If SCOPE is NULL, the variable should is created in
7869 the innermost enclosing scope. */
7871 static tree
7872 grokvardecl (tree type,
7873 tree name,
7874 const cp_decl_specifier_seq *declspecs,
7875 int initialized,
7876 int constp,
7877 tree scope)
7879 tree decl;
7880 tree explicit_scope;
7882 gcc_assert (!name || identifier_p (name));
7884 /* Compute the scope in which to place the variable, but remember
7885 whether or not that scope was explicitly specified by the user. */
7886 explicit_scope = scope;
7887 if (!scope)
7889 /* An explicit "extern" specifier indicates a namespace-scope
7890 variable. */
7891 if (declspecs->storage_class == sc_extern)
7892 scope = current_decl_namespace ();
7893 else if (!at_function_scope_p ())
7894 scope = current_scope ();
7897 if (scope
7898 && (/* If the variable is a namespace-scope variable declared in a
7899 template, we need DECL_LANG_SPECIFIC. */
7900 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
7901 /* Similarly for namespace-scope variables with language linkage
7902 other than C++. */
7903 || (TREE_CODE (scope) == NAMESPACE_DECL
7904 && current_lang_name != lang_name_cplusplus)
7905 /* Similarly for static data members. */
7906 || TYPE_P (scope)))
7907 decl = build_lang_decl (VAR_DECL, name, type);
7908 else
7909 decl = build_decl (input_location, VAR_DECL, name, type);
7911 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
7912 set_decl_namespace (decl, explicit_scope, 0);
7913 else
7914 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
7916 if (declspecs->storage_class == sc_extern)
7918 DECL_THIS_EXTERN (decl) = 1;
7919 DECL_EXTERNAL (decl) = !initialized;
7922 if (DECL_CLASS_SCOPE_P (decl))
7924 set_linkage_for_static_data_member (decl);
7925 /* This function is only called with out-of-class definitions. */
7926 DECL_EXTERNAL (decl) = 0;
7927 check_class_member_definition_namespace (decl);
7929 /* At top level, either `static' or no s.c. makes a definition
7930 (perhaps tentative), and absence of `static' makes it public. */
7931 else if (toplevel_bindings_p ())
7933 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
7934 && (DECL_THIS_EXTERN (decl) || ! constp));
7935 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
7937 /* Not at top level, only `static' makes a static definition. */
7938 else
7940 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
7941 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
7944 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
7946 DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
7947 if (declspecs->gnu_thread_keyword_p)
7948 DECL_GNU_TLS_P (decl) = true;
7951 /* If the type of the decl has no linkage, make sure that we'll
7952 notice that in mark_used. */
7953 if (cxx_dialect > cxx98
7954 && decl_linkage (decl) != lk_none
7955 && DECL_LANG_SPECIFIC (decl) == NULL
7956 && !DECL_EXTERN_C_P (decl)
7957 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
7958 retrofit_lang_decl (decl);
7960 if (TREE_PUBLIC (decl))
7962 /* [basic.link]: A name with no linkage (notably, the name of a class
7963 or enumeration declared in a local scope) shall not be used to
7964 declare an entity with linkage.
7966 DR 757 relaxes this restriction for C++0x. */
7967 if (cxx_dialect < cxx11)
7968 no_linkage_error (decl);
7970 else
7971 DECL_INTERFACE_KNOWN (decl) = 1;
7973 return decl;
7976 /* Create and return a canonical pointer to member function type, for
7977 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
7979 tree
7980 build_ptrmemfunc_type (tree type)
7982 tree field, fields;
7983 tree t;
7984 tree unqualified_variant = NULL_TREE;
7986 if (type == error_mark_node)
7987 return type;
7989 /* If a canonical type already exists for this type, use it. We use
7990 this method instead of type_hash_canon, because it only does a
7991 simple equality check on the list of field members. */
7993 if ((t = TYPE_GET_PTRMEMFUNC_TYPE (type)))
7994 return t;
7996 /* Make sure that we always have the unqualified pointer-to-member
7997 type first. */
7998 if (cp_type_quals (type) != TYPE_UNQUALIFIED)
7999 unqualified_variant
8000 = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
8002 t = make_class_type (RECORD_TYPE);
8003 xref_basetypes (t, NULL_TREE);
8005 /* Let the front end know this is a pointer to member function... */
8006 TYPE_PTRMEMFUNC_FLAG (t) = 1;
8007 /* ... and not really a class type. */
8008 SET_CLASS_TYPE_P (t, 0);
8010 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
8011 fields = field;
8013 field = build_decl (input_location, FIELD_DECL, delta_identifier,
8014 delta_type_node);
8015 DECL_CHAIN (field) = fields;
8016 fields = field;
8018 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
8020 /* Zap out the name so that the back end will give us the debugging
8021 information for this anonymous RECORD_TYPE. */
8022 TYPE_NAME (t) = NULL_TREE;
8024 /* If this is not the unqualified form of this pointer-to-member
8025 type, set the TYPE_MAIN_VARIANT for this type to be the
8026 unqualified type. Since they are actually RECORD_TYPEs that are
8027 not variants of each other, we must do this manually.
8028 As we just built a new type there is no need to do yet another copy. */
8029 if (cp_type_quals (type) != TYPE_UNQUALIFIED)
8031 int type_quals = cp_type_quals (type);
8032 TYPE_READONLY (t) = (type_quals & TYPE_QUAL_CONST) != 0;
8033 TYPE_VOLATILE (t) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
8034 TYPE_RESTRICT (t) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
8035 TYPE_MAIN_VARIANT (t) = unqualified_variant;
8036 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (unqualified_variant);
8037 TYPE_NEXT_VARIANT (unqualified_variant) = t;
8038 TREE_TYPE (TYPE_BINFO (t)) = t;
8041 /* Cache this pointer-to-member type so that we can find it again
8042 later. */
8043 TYPE_SET_PTRMEMFUNC_TYPE (type, t);
8045 if (TYPE_STRUCTURAL_EQUALITY_P (type))
8046 SET_TYPE_STRUCTURAL_EQUALITY (t);
8047 else if (TYPE_CANONICAL (type) != type)
8048 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
8050 return t;
8053 /* Create and return a pointer to data member type. */
8055 tree
8056 build_ptrmem_type (tree class_type, tree member_type)
8058 if (TREE_CODE (member_type) == METHOD_TYPE)
8060 cp_cv_quals quals = type_memfn_quals (member_type);
8061 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
8062 member_type = build_memfn_type (member_type, class_type, quals, rqual);
8063 return build_ptrmemfunc_type (build_pointer_type (member_type));
8065 else
8067 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
8068 return build_offset_type (class_type, member_type);
8072 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
8073 Check to see that the definition is valid. Issue appropriate error
8074 messages. Return 1 if the definition is particularly bad, or 0
8075 otherwise. */
8077 static int
8078 check_static_variable_definition (tree decl, tree type)
8080 /* Can't check yet if we don't know the type. */
8081 if (dependent_type_p (type))
8082 return 0;
8083 /* If DECL is declared constexpr, we'll do the appropriate checks
8084 in check_initializer. */
8085 if (DECL_P (decl) && DECL_DECLARED_CONSTEXPR_P (decl))
8086 return 0;
8087 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8089 if (!COMPLETE_TYPE_P (type))
8090 error ("in-class initialization of static data member %q#D of "
8091 "incomplete type", decl);
8092 else if (literal_type_p (type))
8093 permerror (input_location,
8094 "%<constexpr%> needed for in-class initialization of "
8095 "static data member %q#D of non-integral type", decl);
8096 else
8097 error ("in-class initialization of static data member %q#D of "
8098 "non-literal type", decl);
8099 return 1;
8102 /* Motion 10 at San Diego: If a static const integral data member is
8103 initialized with an integral constant expression, the initializer
8104 may appear either in the declaration (within the class), or in
8105 the definition, but not both. If it appears in the class, the
8106 member is a member constant. The file-scope definition is always
8107 required. */
8108 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
8110 error ("invalid in-class initialization of static data member "
8111 "of non-integral type %qT",
8112 type);
8113 return 1;
8115 else if (!CP_TYPE_CONST_P (type))
8116 error ("ISO C++ forbids in-class initialization of non-const "
8117 "static member %qD",
8118 decl);
8119 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8120 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids initialization of member constant "
8121 "%qD of non-integral type %qT", decl, type);
8123 return 0;
8126 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
8127 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
8128 expressions out into temporary variables so that walk_tree doesn't
8129 step into them (c++/15764). */
8131 static tree
8132 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
8134 struct pointer_set_t *pset = (struct pointer_set_t *)data;
8135 tree expr = *expr_p;
8136 if (TREE_CODE (expr) == SAVE_EXPR)
8138 tree op = TREE_OPERAND (expr, 0);
8139 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
8140 if (TREE_SIDE_EFFECTS (op))
8141 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
8142 *walk_subtrees = 0;
8144 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
8145 *walk_subtrees = 0;
8146 return NULL;
8149 /* Entry point for the above. */
8151 static void
8152 stabilize_vla_size (tree size)
8154 struct pointer_set_t *pset = pointer_set_create ();
8155 /* Break out any function calls into temporary variables. */
8156 cp_walk_tree (&size, stabilize_save_expr_r, pset, pset);
8157 pointer_set_destroy (pset);
8160 /* Helper function for compute_array_index_type. Look for SIZEOF_EXPR
8161 not inside of SAVE_EXPR and fold them. */
8163 static tree
8164 fold_sizeof_expr_r (tree *expr_p, int *walk_subtrees, void *data)
8166 tree expr = *expr_p;
8167 if (TREE_CODE (expr) == SAVE_EXPR || TYPE_P (expr))
8168 *walk_subtrees = 0;
8169 else if (TREE_CODE (expr) == SIZEOF_EXPR)
8171 *(bool *)data = true;
8172 if (SIZEOF_EXPR_TYPE_P (expr))
8173 expr = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (expr, 0)),
8174 SIZEOF_EXPR, false);
8175 else if (TYPE_P (TREE_OPERAND (expr, 0)))
8176 expr = cxx_sizeof_or_alignof_type (TREE_OPERAND (expr, 0), SIZEOF_EXPR,
8177 false);
8178 else
8179 expr = cxx_sizeof_or_alignof_expr (TREE_OPERAND (expr, 0), SIZEOF_EXPR,
8180 false);
8181 if (expr == error_mark_node)
8182 expr = size_one_node;
8183 *expr_p = expr;
8184 *walk_subtrees = 0;
8186 return NULL;
8189 /* Given the SIZE (i.e., number of elements) in an array, compute an
8190 appropriate index type for the array. If non-NULL, NAME is the
8191 name of the thing being declared. */
8193 tree
8194 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
8196 tree itype;
8197 tree osize = size;
8198 tree abi_1_itype = NULL_TREE;
8200 if (error_operand_p (size))
8201 return error_mark_node;
8203 if (!type_dependent_expression_p (size))
8205 tree type = TREE_TYPE (size);
8207 mark_rvalue_use (size);
8209 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
8210 && TREE_SIDE_EFFECTS (size))
8211 /* In C++98, we mark a non-constant array bound with a magic
8212 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
8213 else
8215 size = fold_non_dependent_expr_sfinae (size, complain);
8217 if (CLASS_TYPE_P (type)
8218 && CLASSTYPE_LITERAL_P (type))
8220 size = build_expr_type_conversion (WANT_INT, size, true);
8221 if (!size)
8223 if (!(complain & tf_error))
8224 return error_mark_node;
8225 if (name)
8226 error ("size of array %qD has non-integral type %qT",
8227 name, type);
8228 else
8229 error ("size of array has non-integral type %qT", type);
8230 size = integer_one_node;
8232 if (size == error_mark_node)
8233 return error_mark_node;
8234 type = TREE_TYPE (size);
8235 /* We didn't support this case in GCC 3.2, so don't bother
8236 trying to model it now in ABI v1. */
8237 abi_1_itype = error_mark_node;
8240 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8241 size = maybe_constant_value (size);
8243 if (!TREE_CONSTANT (size))
8244 size = osize;
8247 if (error_operand_p (size))
8248 return error_mark_node;
8250 /* The array bound must be an integer type. */
8251 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8253 if (!(complain & tf_error))
8254 return error_mark_node;
8255 if (name)
8256 error ("size of array %qD has non-integral type %qT", name, type);
8257 else
8258 error ("size of array has non-integral type %qT", type);
8259 size = integer_one_node;
8260 type = TREE_TYPE (size);
8264 /* A type is dependent if it is...an array type constructed from any
8265 dependent type or whose size is specified by a constant expression
8266 that is value-dependent. */
8267 /* We can only call value_dependent_expression_p on integral constant
8268 expressions; treat non-constant expressions as dependent, too. */
8269 if (processing_template_decl
8270 && (type_dependent_expression_p (size)
8271 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
8273 /* We cannot do any checking for a SIZE that isn't known to be
8274 constant. Just build the index type and mark that it requires
8275 structural equality checks. */
8276 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
8277 size, size_one_node));
8278 TYPE_DEPENDENT_P (itype) = 1;
8279 TYPE_DEPENDENT_P_VALID (itype) = 1;
8280 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8281 return itype;
8284 if (!abi_version_at_least (2) && processing_template_decl
8285 && abi_1_itype == NULL_TREE)
8286 /* For abi-1, we handled all instances in templates the same way,
8287 even when they were non-dependent. This affects the manglings
8288 produced. So, we do the normal checking for non-dependent
8289 sizes, but at the end we'll return the same type that abi-1
8290 would have, but with TYPE_CANONICAL set to the "right"
8291 value that the current ABI would provide. */
8292 abi_1_itype = build_index_type (build_min (MINUS_EXPR, sizetype,
8293 osize, integer_one_node));
8295 /* Normally, the array-bound will be a constant. */
8296 if (TREE_CODE (size) == INTEGER_CST)
8298 /* Check to see if the array bound overflowed. Make that an
8299 error, no matter how generous we're being. */
8300 constant_expression_error (size);
8302 /* An array must have a positive number of elements. */
8303 if (INT_CST_LT (size, integer_zero_node))
8305 if (!(complain & tf_error))
8306 return error_mark_node;
8307 if (name)
8308 error ("size of array %qD is negative", name);
8309 else
8310 error ("size of array is negative");
8311 size = integer_one_node;
8313 /* As an extension we allow zero-sized arrays. */
8314 else if (integer_zerop (size))
8316 if (!(complain & tf_error))
8317 /* We must fail if performing argument deduction (as
8318 indicated by the state of complain), so that
8319 another substitution can be found. */
8320 return error_mark_node;
8321 else if (in_system_header_at (input_location))
8322 /* Allow them in system headers because glibc uses them. */;
8323 else if (name)
8324 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array %qD", name);
8325 else
8326 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array");
8329 else if (TREE_CONSTANT (size)
8330 /* We don't allow VLAs at non-function scopes, or during
8331 tentative template substitution. */
8332 || !at_function_scope_p ()
8333 || (cxx_dialect < cxx1y && !(complain & tf_error)))
8335 if (!(complain & tf_error))
8336 return error_mark_node;
8337 /* `(int) &fn' is not a valid array bound. */
8338 if (name)
8339 error ("size of array %qD is not an integral constant-expression",
8340 name);
8341 else
8342 error ("size of array is not an integral constant-expression");
8343 size = integer_one_node;
8345 else if (cxx_dialect < cxx1y && pedantic && warn_vla != 0)
8347 if (name)
8348 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array %qD", name);
8349 else
8350 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array");
8352 else if (warn_vla > 0)
8354 if (name)
8355 warning (OPT_Wvla,
8356 "variable length array %qD is used", name);
8357 else
8358 warning (OPT_Wvla,
8359 "variable length array is used");
8362 if (processing_template_decl && !TREE_CONSTANT (size))
8363 /* A variable sized array. */
8364 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
8365 else
8367 HOST_WIDE_INT saved_processing_template_decl;
8369 /* Compute the index of the largest element in the array. It is
8370 one less than the number of elements in the array. We save
8371 and restore PROCESSING_TEMPLATE_DECL so that computations in
8372 cp_build_binary_op will be appropriately folded. */
8373 saved_processing_template_decl = processing_template_decl;
8374 processing_template_decl = 0;
8375 itype = cp_build_binary_op (input_location,
8376 MINUS_EXPR,
8377 cp_convert (ssizetype, size, complain),
8378 cp_convert (ssizetype, integer_one_node,
8379 complain),
8380 complain);
8381 itype = fold (itype);
8382 processing_template_decl = saved_processing_template_decl;
8384 if (!TREE_CONSTANT (itype))
8386 /* A variable sized array. */
8387 itype = variable_size (itype);
8389 if (TREE_CODE (itype) != SAVE_EXPR)
8391 /* Look for SIZEOF_EXPRs in itype and fold them, otherwise
8392 they might survive till gimplification. */
8393 tree newitype = itype;
8394 bool found = false;
8395 cp_walk_tree_without_duplicates (&newitype,
8396 fold_sizeof_expr_r, &found);
8397 if (found)
8398 itype = variable_size (fold (newitype));
8401 stabilize_vla_size (itype);
8403 if (cxx_dialect >= cxx1y && flag_exceptions)
8405 /* If the VLA bound is larger than half the address space,
8406 or less than zero, throw std::bad_array_length. */
8407 tree comp = build2 (LT_EXPR, boolean_type_node, itype,
8408 ssize_int (-1));
8409 comp = build3 (COND_EXPR, void_type_node, comp,
8410 throw_bad_array_length (), void_zero_node);
8411 finish_expr_stmt (comp);
8413 else if (flag_sanitize & SANITIZE_VLA)
8415 /* From C++1y onwards, we throw an exception on a negative
8416 length size of an array; see above. */
8418 /* We have to add 1 -- in the ubsan routine we generate
8419 LE_EXPR rather than LT_EXPR. */
8420 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
8421 build_one_cst (TREE_TYPE (itype)));
8422 t = ubsan_instrument_vla (input_location, t);
8423 finish_expr_stmt (t);
8426 /* Make sure that there was no overflow when creating to a signed
8427 index type. (For example, on a 32-bit machine, an array with
8428 size 2^32 - 1 is too big.) */
8429 else if (TREE_CODE (itype) == INTEGER_CST
8430 && TREE_OVERFLOW (itype))
8432 if (!(complain & tf_error))
8433 return error_mark_node;
8434 error ("overflow in array dimension");
8435 TREE_OVERFLOW (itype) = 0;
8439 /* Create and return the appropriate index type. */
8440 if (abi_1_itype && abi_1_itype != error_mark_node)
8442 tree t = build_index_type (itype);
8443 TYPE_CANONICAL (abi_1_itype) = TYPE_CANONICAL (t);
8444 itype = abi_1_itype;
8446 else
8447 itype = build_index_type (itype);
8449 /* If the index type were dependent, we would have returned early, so
8450 remember that it isn't. */
8451 TYPE_DEPENDENT_P (itype) = 0;
8452 TYPE_DEPENDENT_P_VALID (itype) = 1;
8453 return itype;
8456 /* Returns the scope (if any) in which the entity declared by
8457 DECLARATOR will be located. If the entity was declared with an
8458 unqualified name, NULL_TREE is returned. */
8460 tree
8461 get_scope_of_declarator (const cp_declarator *declarator)
8463 while (declarator && declarator->kind != cdk_id)
8464 declarator = declarator->declarator;
8466 /* If the declarator-id is a SCOPE_REF, the scope in which the
8467 declaration occurs is the first operand. */
8468 if (declarator
8469 && declarator->u.id.qualifying_scope)
8470 return declarator->u.id.qualifying_scope;
8472 /* Otherwise, the declarator is not a qualified name; the entity will
8473 be declared in the current scope. */
8474 return NULL_TREE;
8477 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
8478 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
8479 with this type. */
8481 static tree
8482 create_array_type_for_decl (tree name, tree type, tree size)
8484 tree itype = NULL_TREE;
8486 /* If things have already gone awry, bail now. */
8487 if (type == error_mark_node || size == error_mark_node)
8488 return error_mark_node;
8490 /* 8.3.4/1: If the type of the identifier of D contains the auto
8491 type-specifier, the program is ill-formed. */
8492 if (pedantic && type_uses_auto (type))
8493 pedwarn (input_location, OPT_Wpedantic,
8494 "declaration of %qD as array of %<auto%>", name);
8496 /* If there are some types which cannot be array elements,
8497 issue an error-message and return. */
8498 switch (TREE_CODE (type))
8500 case VOID_TYPE:
8501 if (name)
8502 error ("declaration of %qD as array of void", name);
8503 else
8504 error ("creating array of void");
8505 return error_mark_node;
8507 case FUNCTION_TYPE:
8508 if (name)
8509 error ("declaration of %qD as array of functions", name);
8510 else
8511 error ("creating array of functions");
8512 return error_mark_node;
8514 case REFERENCE_TYPE:
8515 if (name)
8516 error ("declaration of %qD as array of references", name);
8517 else
8518 error ("creating array of references");
8519 return error_mark_node;
8521 case METHOD_TYPE:
8522 if (name)
8523 error ("declaration of %qD as array of function members", name);
8524 else
8525 error ("creating array of function members");
8526 return error_mark_node;
8528 default:
8529 break;
8532 /* [dcl.array]
8534 The constant expressions that specify the bounds of the arrays
8535 can be omitted only for the first member of the sequence. */
8536 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
8538 if (name)
8539 error ("declaration of %qD as multidimensional array must "
8540 "have bounds for all dimensions except the first",
8541 name);
8542 else
8543 error ("multidimensional array must have bounds for all "
8544 "dimensions except the first");
8546 return error_mark_node;
8549 if (cxx_dialect >= cxx1y && array_of_runtime_bound_p (type)
8550 && (flag_iso || warn_vla > 0))
8551 pedwarn (input_location, OPT_Wvla, "array of array of runtime bound");
8553 /* 8.3.4p1: ...if the type of the identifier of D contains the auto
8554 type-specifier, the program is ill-formed. */
8555 if (type_uses_auto (type))
8557 error ("%qD declared as array of %qT", name, type);
8558 return error_mark_node;
8561 /* Figure out the index type for the array. */
8562 if (size)
8563 itype = compute_array_index_type (name, size, tf_warning_or_error);
8565 /* [dcl.array]
8566 T is called the array element type; this type shall not be [...] an
8567 abstract class type. */
8568 abstract_virtuals_error (name, type);
8570 return build_cplus_array_type (type, itype);
8573 /* Check that it's OK to declare a function with the indicated TYPE.
8574 SFK indicates the kind of special function (if any) that this
8575 function is. OPTYPE is the type given in a conversion operator
8576 declaration, or the class type for a constructor/destructor.
8577 Returns the actual return type of the function; that
8578 may be different than TYPE if an error occurs, or for certain
8579 special functions. */
8581 static tree
8582 check_special_function_return_type (special_function_kind sfk,
8583 tree type,
8584 tree optype)
8586 switch (sfk)
8588 case sfk_constructor:
8589 if (type)
8590 error ("return type specification for constructor invalid");
8592 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
8593 type = build_pointer_type (optype);
8594 else
8595 type = void_type_node;
8596 break;
8598 case sfk_destructor:
8599 if (type)
8600 error ("return type specification for destructor invalid");
8601 /* We can't use the proper return type here because we run into
8602 problems with ambiguous bases and covariant returns.
8603 Java classes are left unchanged because (void *) isn't a valid
8604 Java type, and we don't want to change the Java ABI. */
8605 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
8606 type = build_pointer_type (void_type_node);
8607 else
8608 type = void_type_node;
8609 break;
8611 case sfk_conversion:
8612 if (type)
8613 error ("return type specified for %<operator %T%>", optype);
8614 type = optype;
8615 break;
8617 default:
8618 gcc_unreachable ();
8621 return type;
8624 /* A variable or data member (whose unqualified name is IDENTIFIER)
8625 has been declared with the indicated TYPE. If the TYPE is not
8626 acceptable, issue an error message and return a type to use for
8627 error-recovery purposes. */
8629 tree
8630 check_var_type (tree identifier, tree type)
8632 if (VOID_TYPE_P (type))
8634 if (!identifier)
8635 error ("unnamed variable or field declared void");
8636 else if (identifier_p (identifier))
8638 gcc_assert (!IDENTIFIER_OPNAME_P (identifier));
8639 error ("variable or field %qE declared void", identifier);
8641 else
8642 error ("variable or field declared void");
8643 type = error_mark_node;
8646 return type;
8649 /* Given declspecs and a declarator (abstract or otherwise), determine
8650 the name and type of the object declared and construct a DECL node
8651 for it.
8653 DECLSPECS points to the representation of declaration-specifier
8654 sequence that precedes declarator.
8656 DECL_CONTEXT says which syntactic context this declaration is in:
8657 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
8658 FUNCDEF for a function definition. Like NORMAL but a few different
8659 error messages in each case. Return value may be zero meaning
8660 this definition is too screwy to try to parse.
8661 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
8662 handle member functions (which have FIELD context).
8663 Return value may be zero meaning this definition is too screwy to
8664 try to parse.
8665 PARM for a parameter declaration (either within a function prototype
8666 or before a function body). Make a PARM_DECL, or return void_type_node.
8667 TPARM for a template parameter declaration.
8668 CATCHPARM for a parameter declaration before a catch clause.
8669 TYPENAME if for a typename (in a cast or sizeof).
8670 Don't make a DECL node; just return the ..._TYPE node.
8671 FIELD for a struct or union field; make a FIELD_DECL.
8672 BITFIELD for a field with specified width.
8674 INITIALIZED is as for start_decl.
8676 ATTRLIST is a pointer to the list of attributes, which may be NULL
8677 if there are none; *ATTRLIST may be modified if attributes from inside
8678 the declarator should be applied to the declaration.
8680 When this function is called, scoping variables (such as
8681 CURRENT_CLASS_TYPE) should reflect the scope in which the
8682 declaration occurs, not the scope in which the new declaration will
8683 be placed. For example, on:
8685 void S::f() { ... }
8687 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
8688 should not be `S'.
8690 Returns a DECL (if a declarator is present), a TYPE (if there is no
8691 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
8692 error occurs. */
8694 tree
8695 grokdeclarator (const cp_declarator *declarator,
8696 cp_decl_specifier_seq *declspecs,
8697 enum decl_context decl_context,
8698 int initialized,
8699 tree* attrlist)
8701 tree type = NULL_TREE;
8702 int longlong = 0;
8703 int explicit_int128 = 0;
8704 int virtualp, explicitp, friendp, inlinep, staticp;
8705 int explicit_int = 0;
8706 int explicit_char = 0;
8707 int defaulted_int = 0;
8709 tree typedef_decl = NULL_TREE;
8710 const char *name = NULL;
8711 tree typedef_type = NULL_TREE;
8712 /* True if this declarator is a function definition. */
8713 bool funcdef_flag = false;
8714 cp_declarator_kind innermost_code = cdk_error;
8715 int bitfield = 0;
8716 #if 0
8717 /* See the code below that used this. */
8718 tree decl_attr = NULL_TREE;
8719 #endif
8721 /* Keep track of what sort of function is being processed
8722 so that we can warn about default return values, or explicit
8723 return values which do not match prescribed defaults. */
8724 special_function_kind sfk = sfk_none;
8726 tree dname = NULL_TREE;
8727 tree ctor_return_type = NULL_TREE;
8728 enum overload_flags flags = NO_SPECIAL;
8729 /* cv-qualifiers that apply to the declarator, for a declaration of
8730 a member function. */
8731 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
8732 /* virt-specifiers that apply to the declarator, for a declaration of
8733 a member function. */
8734 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
8735 /* ref-qualifier that applies to the declarator, for a declaration of
8736 a member function. */
8737 cp_ref_qualifier rqual = REF_QUAL_NONE;
8738 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
8739 int type_quals;
8740 tree raises = NULL_TREE;
8741 int template_count = 0;
8742 tree returned_attrs = NULL_TREE;
8743 tree parms = NULL_TREE;
8744 const cp_declarator *id_declarator;
8745 /* The unqualified name of the declarator; either an
8746 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
8747 tree unqualified_id;
8748 /* The class type, if any, in which this entity is located,
8749 or NULL_TREE if none. Note that this value may be different from
8750 the current class type; for example if an attempt is made to declare
8751 "A::f" inside "B", this value will be "A". */
8752 tree ctype = current_class_type;
8753 /* The NAMESPACE_DECL for the namespace in which this entity is
8754 located. If an unqualified name is used to declare the entity,
8755 this value will be NULL_TREE, even if the entity is located at
8756 namespace scope. */
8757 tree in_namespace = NULL_TREE;
8758 cp_storage_class storage_class;
8759 bool unsigned_p, signed_p, short_p, long_p, thread_p;
8760 bool type_was_error_mark_node = false;
8761 bool parameter_pack_p = declarator? declarator->parameter_pack_p : false;
8762 bool template_type_arg = false;
8763 bool template_parm_flag = false;
8764 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
8765 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
8766 source_location saved_loc = input_location;
8767 const char *errmsg;
8769 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
8770 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
8771 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
8772 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
8773 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
8774 explicit_int128 = declspecs->explicit_int128_p;
8775 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
8777 if (decl_context == FUNCDEF)
8778 funcdef_flag = true, decl_context = NORMAL;
8779 else if (decl_context == MEMFUNCDEF)
8780 funcdef_flag = true, decl_context = FIELD;
8781 else if (decl_context == BITFIELD)
8782 bitfield = 1, decl_context = FIELD;
8783 else if (decl_context == TEMPLATE_TYPE_ARG)
8784 template_type_arg = true, decl_context = TYPENAME;
8785 else if (decl_context == TPARM)
8786 template_parm_flag = true, decl_context = PARM;
8788 if (initialized > 1)
8789 funcdef_flag = true;
8791 /* Look inside a declarator for the name being declared
8792 and get it as a string, for an error message. */
8793 for (id_declarator = declarator;
8794 id_declarator;
8795 id_declarator = id_declarator->declarator)
8797 if (id_declarator->kind != cdk_id)
8798 innermost_code = id_declarator->kind;
8800 switch (id_declarator->kind)
8802 case cdk_function:
8803 if (id_declarator->declarator
8804 && id_declarator->declarator->kind == cdk_id)
8806 sfk = id_declarator->declarator->u.id.sfk;
8807 if (sfk == sfk_destructor)
8808 flags = DTOR_FLAG;
8810 break;
8812 case cdk_id:
8814 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
8815 tree decl = id_declarator->u.id.unqualified_name;
8816 if (!decl)
8817 break;
8818 if (qualifying_scope)
8820 if (at_function_scope_p ())
8822 /* [dcl.meaning]
8824 A declarator-id shall not be qualified except
8825 for ...
8827 None of the cases are permitted in block
8828 scope. */
8829 if (qualifying_scope == global_namespace)
8830 error ("invalid use of qualified-name %<::%D%>",
8831 decl);
8832 else if (TYPE_P (qualifying_scope))
8833 error ("invalid use of qualified-name %<%T::%D%>",
8834 qualifying_scope, decl);
8835 else
8836 error ("invalid use of qualified-name %<%D::%D%>",
8837 qualifying_scope, decl);
8838 return error_mark_node;
8840 else if (TYPE_P (qualifying_scope))
8842 ctype = qualifying_scope;
8843 if (!MAYBE_CLASS_TYPE_P (ctype))
8845 error ("%q#T is not a class or a namespace", ctype);
8846 ctype = NULL_TREE;
8848 else if (innermost_code != cdk_function
8849 && current_class_type
8850 && !uniquely_derived_from_p (ctype,
8851 current_class_type))
8853 error ("invalid use of qualified-name %<%T::%D%>",
8854 qualifying_scope, decl);
8855 return error_mark_node;
8858 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
8859 in_namespace = qualifying_scope;
8861 switch (TREE_CODE (decl))
8863 case BIT_NOT_EXPR:
8865 tree type;
8867 if (innermost_code != cdk_function)
8869 error ("declaration of %qD as non-function", decl);
8870 return error_mark_node;
8872 else if (!qualifying_scope
8873 && !(current_class_type && at_class_scope_p ()))
8875 error ("declaration of %qD as non-member", decl);
8876 return error_mark_node;
8879 type = TREE_OPERAND (decl, 0);
8880 if (TYPE_P (type))
8881 type = constructor_name (type);
8882 name = identifier_to_locale (IDENTIFIER_POINTER (type));
8883 dname = decl;
8885 break;
8887 case TEMPLATE_ID_EXPR:
8889 tree fns = TREE_OPERAND (decl, 0);
8891 dname = fns;
8892 if (!identifier_p (dname))
8894 gcc_assert (is_overloaded_fn (dname));
8895 dname = DECL_NAME (get_first_fn (dname));
8898 /* Fall through. */
8900 case IDENTIFIER_NODE:
8901 if (identifier_p (decl))
8902 dname = decl;
8904 if (C_IS_RESERVED_WORD (dname))
8906 error ("declarator-id missing; using reserved word %qD",
8907 dname);
8908 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
8910 else if (!IDENTIFIER_TYPENAME_P (dname))
8911 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
8912 else
8914 gcc_assert (flags == NO_SPECIAL);
8915 flags = TYPENAME_FLAG;
8916 ctor_return_type = TREE_TYPE (dname);
8917 sfk = sfk_conversion;
8918 if (is_typename_at_global_scope (dname))
8919 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
8920 else
8921 name = "<invalid operator>";
8923 break;
8925 default:
8926 gcc_unreachable ();
8928 break;
8931 case cdk_array:
8932 case cdk_pointer:
8933 case cdk_reference:
8934 case cdk_ptrmem:
8935 break;
8937 case cdk_error:
8938 return error_mark_node;
8940 default:
8941 gcc_unreachable ();
8943 if (id_declarator->kind == cdk_id)
8944 break;
8947 /* [dcl.fct.edf]
8949 The declarator in a function-definition shall have the form
8950 D1 ( parameter-declaration-clause) ... */
8951 if (funcdef_flag && innermost_code != cdk_function)
8953 error ("function definition does not declare parameters");
8954 return error_mark_node;
8957 if (((dname && IDENTIFIER_OPNAME_P (dname)) || flags == TYPENAME_FLAG)
8958 && innermost_code != cdk_function
8959 && ! (ctype && !declspecs->any_specifiers_p))
8961 error ("declaration of %qD as non-function", dname);
8962 return error_mark_node;
8965 if (dname
8966 && identifier_p (dname)
8967 && UDLIT_OPER_P (dname)
8968 && innermost_code != cdk_function)
8970 error ("declaration of %qD as non-function", dname);
8971 return error_mark_node;
8974 if (dname && IDENTIFIER_OPNAME_P (dname))
8976 if (typedef_p)
8978 error ("declaration of %qD as %<typedef%>", dname);
8979 return error_mark_node;
8981 else if (decl_context == PARM || decl_context == CATCHPARM)
8983 error ("declaration of %qD as parameter", dname);
8984 return error_mark_node;
8988 /* Anything declared one level down from the top level
8989 must be one of the parameters of a function
8990 (because the body is at least two levels down). */
8992 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
8993 by not allowing C++ class definitions to specify their parameters
8994 with xdecls (must be spec.d in the parmlist).
8996 Since we now wait to push a class scope until we are sure that
8997 we are in a legitimate method context, we must set oldcname
8998 explicitly (since current_class_name is not yet alive).
9000 We also want to avoid calling this a PARM if it is in a namespace. */
9002 if (decl_context == NORMAL && !toplevel_bindings_p ())
9004 cp_binding_level *b = current_binding_level;
9005 current_binding_level = b->level_chain;
9006 if (current_binding_level != 0 && toplevel_bindings_p ())
9007 decl_context = PARM;
9008 current_binding_level = b;
9011 if (name == NULL)
9012 name = decl_context == PARM ? "parameter" : "type name";
9014 if (constexpr_p && typedef_p)
9016 error ("%<constexpr%> cannot appear in a typedef declaration");
9017 return error_mark_node;
9020 /* If there were multiple types specified in the decl-specifier-seq,
9021 issue an error message. */
9022 if (declspecs->multiple_types_p)
9024 error ("two or more data types in declaration of %qs", name);
9025 return error_mark_node;
9028 if (declspecs->conflicting_specifiers_p)
9030 error ("conflicting specifiers in declaration of %qs", name);
9031 return error_mark_node;
9034 /* Extract the basic type from the decl-specifier-seq. */
9035 type = declspecs->type;
9036 if (type == error_mark_node)
9038 type = NULL_TREE;
9039 type_was_error_mark_node = true;
9041 /* If the entire declaration is itself tagged as deprecated then
9042 suppress reports of deprecated items. */
9043 if (type && TREE_DEPRECATED (type)
9044 && deprecated_state != DEPRECATED_SUPPRESS)
9045 warn_deprecated_use (type, NULL_TREE);
9046 if (type && TREE_CODE (type) == TYPE_DECL)
9048 typedef_decl = type;
9049 type = TREE_TYPE (typedef_decl);
9050 if (TREE_DEPRECATED (type)
9051 && DECL_ARTIFICIAL (typedef_decl)
9052 && deprecated_state != DEPRECATED_SUPPRESS)
9053 warn_deprecated_use (type, NULL_TREE);
9055 /* No type at all: default to `int', and set DEFAULTED_INT
9056 because it was not a user-defined typedef. */
9057 if (type == NULL_TREE && (signed_p || unsigned_p || long_p || short_p))
9059 /* These imply 'int'. */
9060 type = integer_type_node;
9061 defaulted_int = 1;
9063 /* Gather flags. */
9064 explicit_int = declspecs->explicit_int_p;
9065 explicit_char = declspecs->explicit_char_p;
9067 #if 0
9068 /* See the code below that used this. */
9069 if (typedef_decl)
9070 decl_attr = DECL_ATTRIBUTES (typedef_decl);
9071 #endif
9072 typedef_type = type;
9075 if (sfk != sfk_conversion)
9076 ctor_return_type = ctype;
9078 if (sfk != sfk_none)
9079 type = check_special_function_return_type (sfk, type,
9080 ctor_return_type);
9081 else if (type == NULL_TREE)
9083 int is_main;
9085 explicit_int = -1;
9087 /* We handle `main' specially here, because 'main () { }' is so
9088 common. With no options, it is allowed. With -Wreturn-type,
9089 it is a warning. It is only an error with -pedantic-errors. */
9090 is_main = (funcdef_flag
9091 && dname && identifier_p (dname)
9092 && MAIN_NAME_P (dname)
9093 && ctype == NULL_TREE
9094 && in_namespace == NULL_TREE
9095 && current_namespace == global_namespace);
9097 if (type_was_error_mark_node)
9098 /* We've already issued an error, don't complain more. */;
9099 else if (in_system_header_at (input_location) || flag_ms_extensions)
9100 /* Allow it, sigh. */;
9101 else if (! is_main)
9102 permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
9103 else if (pedantic)
9104 pedwarn (input_location, OPT_Wpedantic,
9105 "ISO C++ forbids declaration of %qs with no type", name);
9106 else
9107 warning (OPT_Wreturn_type,
9108 "ISO C++ forbids declaration of %qs with no type", name);
9110 type = integer_type_node;
9113 ctype = NULL_TREE;
9115 if (explicit_int128)
9117 if (int128_integer_type_node == NULL_TREE)
9119 error ("%<__int128%> is not supported by this target");
9120 explicit_int128 = false;
9122 else if (pedantic && ! in_system_header_at (input_location))
9123 pedwarn (input_location, OPT_Wpedantic,
9124 "ISO C++ does not support %<__int128%> for %qs", name);
9127 /* Now process the modifiers that were specified
9128 and check for invalid combinations. */
9130 /* Long double is a special combination. */
9131 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
9133 long_p = false;
9134 type = cp_build_qualified_type (long_double_type_node,
9135 cp_type_quals (type));
9138 /* Check all other uses of type modifiers. */
9140 if (unsigned_p || signed_p || long_p || short_p)
9142 int ok = 0;
9144 if ((signed_p || unsigned_p) && TREE_CODE (type) != INTEGER_TYPE)
9145 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9146 else if (signed_p && unsigned_p)
9147 error ("%<signed%> and %<unsigned%> specified together for %qs", name);
9148 else if (longlong && TREE_CODE (type) != INTEGER_TYPE)
9149 error ("%<long long%> invalid for %qs", name);
9150 else if (long_p && TREE_CODE (type) == REAL_TYPE)
9151 error ("%<long%> invalid for %qs", name);
9152 else if (short_p && TREE_CODE (type) == REAL_TYPE)
9153 error ("%<short%> invalid for %qs", name);
9154 else if ((long_p || short_p) && TREE_CODE (type) != INTEGER_TYPE)
9155 error ("%<long%> or %<short%> invalid for %qs", name);
9156 else if ((long_p || short_p || explicit_char || explicit_int) && explicit_int128)
9157 error ("%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs", name);
9158 else if ((long_p || short_p) && explicit_char)
9159 error ("%<long%> or %<short%> specified with char for %qs", name);
9160 else if (long_p && short_p)
9161 error ("%<long%> and %<short%> specified together for %qs", name);
9162 else if (type == char16_type_node || type == char32_type_node)
9164 if (signed_p || unsigned_p)
9165 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9166 else if (short_p || long_p)
9167 error ("%<short%> or %<long%> invalid for %qs", name);
9169 else
9171 ok = 1;
9172 if (!explicit_int && !defaulted_int && !explicit_char && !explicit_int128 && pedantic)
9174 pedwarn (input_location, OPT_Wpedantic,
9175 "long, short, signed or unsigned used invalidly for %qs",
9176 name);
9177 if (flag_pedantic_errors)
9178 ok = 0;
9182 /* Discard the type modifiers if they are invalid. */
9183 if (! ok)
9185 unsigned_p = false;
9186 signed_p = false;
9187 long_p = false;
9188 short_p = false;
9189 longlong = 0;
9193 /* Decide whether an integer type is signed or not.
9194 Optionally treat bitfields as signed by default. */
9195 if (unsigned_p
9196 /* [class.bit]
9198 It is implementation-defined whether a plain (neither
9199 explicitly signed or unsigned) char, short, int, or long
9200 bit-field is signed or unsigned.
9202 Naturally, we extend this to long long as well. Note that
9203 this does not include wchar_t. */
9204 || (bitfield && !flag_signed_bitfields
9205 && !signed_p
9206 /* A typedef for plain `int' without `signed' can be
9207 controlled just like plain `int', but a typedef for
9208 `signed int' cannot be so controlled. */
9209 && !(typedef_decl
9210 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
9211 && TREE_CODE (type) == INTEGER_TYPE
9212 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
9214 if (explicit_int128)
9215 type = int128_unsigned_type_node;
9216 else if (longlong)
9217 type = long_long_unsigned_type_node;
9218 else if (long_p)
9219 type = long_unsigned_type_node;
9220 else if (short_p)
9221 type = short_unsigned_type_node;
9222 else if (type == char_type_node)
9223 type = unsigned_char_type_node;
9224 else if (typedef_decl)
9225 type = unsigned_type_for (type);
9226 else
9227 type = unsigned_type_node;
9229 else if (signed_p && type == char_type_node)
9230 type = signed_char_type_node;
9231 else if (explicit_int128)
9232 type = int128_integer_type_node;
9233 else if (longlong)
9234 type = long_long_integer_type_node;
9235 else if (long_p)
9236 type = long_integer_type_node;
9237 else if (short_p)
9238 type = short_integer_type_node;
9240 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
9242 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
9243 error ("complex invalid for %qs", name);
9244 /* If we just have "complex", it is equivalent to
9245 "complex double", but if any modifiers at all are specified it is
9246 the complex form of TYPE. E.g, "complex short" is
9247 "complex short int". */
9248 else if (defaulted_int && ! longlong && ! explicit_int128
9249 && ! (long_p || short_p || signed_p || unsigned_p))
9250 type = complex_double_type_node;
9251 else if (type == integer_type_node)
9252 type = complex_integer_type_node;
9253 else if (type == float_type_node)
9254 type = complex_float_type_node;
9255 else if (type == double_type_node)
9256 type = complex_double_type_node;
9257 else if (type == long_double_type_node)
9258 type = complex_long_double_type_node;
9259 else
9260 type = build_complex_type (type);
9263 type_quals = TYPE_UNQUALIFIED;
9264 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
9265 type_quals |= TYPE_QUAL_CONST;
9266 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
9267 type_quals |= TYPE_QUAL_VOLATILE;
9268 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
9269 type_quals |= TYPE_QUAL_RESTRICT;
9270 if (sfk == sfk_conversion && type_quals != TYPE_UNQUALIFIED)
9271 error ("qualifiers are not allowed on declaration of %<operator %T%>",
9272 ctor_return_type);
9274 /* If we're using the injected-class-name to form a compound type or a
9275 declaration, replace it with the underlying class so we don't get
9276 redundant typedefs in the debug output. But if we are returning the
9277 type unchanged, leave it alone so that it's available to
9278 maybe_get_template_decl_from_type_decl. */
9279 if (CLASS_TYPE_P (type)
9280 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
9281 && type == TREE_TYPE (TYPE_NAME (type))
9282 && (declarator || type_quals))
9283 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
9285 type_quals |= cp_type_quals (type);
9286 type = cp_build_qualified_type_real
9287 (type, type_quals, ((typedef_decl && !DECL_ARTIFICIAL (typedef_decl)
9288 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
9289 /* We might have ignored or rejected some of the qualifiers. */
9290 type_quals = cp_type_quals (type);
9292 staticp = 0;
9293 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
9294 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
9295 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
9297 storage_class = declspecs->storage_class;
9298 if (storage_class == sc_static)
9299 staticp = 1 + (decl_context == FIELD);
9301 if (virtualp && staticp == 2)
9303 error ("member %qD cannot be declared both virtual and static", dname);
9304 storage_class = sc_none;
9305 staticp = 0;
9307 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
9309 /* Issue errors about use of storage classes for parameters. */
9310 if (decl_context == PARM)
9312 if (typedef_p)
9314 error ("typedef declaration invalid in parameter declaration");
9315 return error_mark_node;
9317 else if (template_parm_flag && storage_class != sc_none)
9319 error ("storage class specified for template parameter %qs", name);
9320 return error_mark_node;
9322 else if (storage_class == sc_static
9323 || storage_class == sc_extern
9324 || thread_p)
9325 error ("storage class specifiers invalid in parameter declarations");
9327 /* Function parameters cannot be constexpr. If we saw one, moan
9328 and pretend it wasn't there. */
9329 if (constexpr_p)
9331 error ("a parameter cannot be declared %<constexpr%>");
9332 constexpr_p = 0;
9336 /* Give error if `virtual' is used outside of class declaration. */
9337 if (virtualp
9338 && (current_class_name == NULL_TREE || decl_context != FIELD))
9340 error ("%<virtual%> outside class declaration");
9341 virtualp = 0;
9344 /* Static anonymous unions are dealt with here. */
9345 if (staticp && decl_context == TYPENAME
9346 && declspecs->type
9347 && ANON_AGGR_TYPE_P (declspecs->type))
9348 decl_context = FIELD;
9350 /* Warn about storage classes that are invalid for certain
9351 kinds of declarations (parameters, typenames, etc.). */
9352 if (thread_p
9353 && ((storage_class
9354 && storage_class != sc_extern
9355 && storage_class != sc_static)
9356 || typedef_p))
9358 error ("multiple storage classes in declaration of %qs", name);
9359 thread_p = false;
9361 if (decl_context != NORMAL
9362 && ((storage_class != sc_none
9363 && storage_class != sc_mutable)
9364 || thread_p))
9366 if ((decl_context == PARM || decl_context == CATCHPARM)
9367 && (storage_class == sc_register
9368 || storage_class == sc_auto))
9370 else if (typedef_p)
9372 else if (decl_context == FIELD
9373 /* C++ allows static class elements. */
9374 && storage_class == sc_static)
9375 /* C++ also allows inlines and signed and unsigned elements,
9376 but in those cases we don't come in here. */
9378 else
9380 if (decl_context == FIELD)
9381 error ("storage class specified for %qs", name);
9382 else
9384 if (decl_context == PARM || decl_context == CATCHPARM)
9385 error ("storage class specified for parameter %qs", name);
9386 else
9387 error ("storage class specified for typename");
9389 if (storage_class == sc_register
9390 || storage_class == sc_auto
9391 || storage_class == sc_extern
9392 || thread_p)
9393 storage_class = sc_none;
9396 else if (storage_class == sc_extern && funcdef_flag
9397 && ! toplevel_bindings_p ())
9398 error ("nested function %qs declared %<extern%>", name);
9399 else if (toplevel_bindings_p ())
9401 if (storage_class == sc_auto)
9402 error ("top-level declaration of %qs specifies %<auto%>", name);
9404 else if (thread_p
9405 && storage_class != sc_extern
9406 && storage_class != sc_static)
9408 if (declspecs->gnu_thread_keyword_p)
9409 pedwarn (input_location, 0, "function-scope %qs implicitly auto and "
9410 "declared %<__thread%>", name);
9412 /* When thread_local is applied to a variable of block scope the
9413 storage-class-specifier static is implied if it does not appear
9414 explicitly. */
9415 storage_class = declspecs->storage_class = sc_static;
9416 staticp = 1;
9419 if (storage_class && friendp)
9421 error ("storage class specifiers invalid in friend function declarations");
9422 storage_class = sc_none;
9423 staticp = 0;
9426 if (!id_declarator)
9427 unqualified_id = NULL_TREE;
9428 else
9430 unqualified_id = id_declarator->u.id.unqualified_name;
9431 switch (TREE_CODE (unqualified_id))
9433 case BIT_NOT_EXPR:
9434 unqualified_id = TREE_OPERAND (unqualified_id, 0);
9435 if (TYPE_P (unqualified_id))
9436 unqualified_id = constructor_name (unqualified_id);
9437 break;
9439 case IDENTIFIER_NODE:
9440 case TEMPLATE_ID_EXPR:
9441 break;
9443 default:
9444 gcc_unreachable ();
9448 if (declspecs->std_attributes)
9450 /* Apply the c++11 attributes to the type preceding them. */
9451 input_location = declspecs->locations[ds_std_attribute];
9452 decl_attributes (&type, declspecs->std_attributes, 0);
9453 input_location = saved_loc;
9456 /* Determine the type of the entity declared by recurring on the
9457 declarator. */
9458 for (; declarator; declarator = declarator->declarator)
9460 const cp_declarator *inner_declarator;
9461 tree attrs;
9463 if (type == error_mark_node)
9464 return error_mark_node;
9466 attrs = declarator->attributes;
9467 if (attrs)
9469 int attr_flags;
9471 attr_flags = 0;
9472 if (declarator == NULL || declarator->kind == cdk_id)
9473 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
9474 if (declarator->kind == cdk_function)
9475 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
9476 if (declarator->kind == cdk_array)
9477 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
9478 returned_attrs = decl_attributes (&type,
9479 chainon (returned_attrs, attrs),
9480 attr_flags);
9483 if (declarator->kind == cdk_id)
9484 break;
9486 inner_declarator = declarator->declarator;
9488 switch (declarator->kind)
9490 case cdk_array:
9491 type = create_array_type_for_decl (dname, type,
9492 declarator->u.array.bounds);
9493 if (declarator->std_attributes)
9494 /* [dcl.array]/1:
9496 The optional attribute-specifier-seq appertains to the
9497 array. */
9498 returned_attrs = chainon (returned_attrs,
9499 declarator->std_attributes);
9500 break;
9502 case cdk_function:
9504 tree arg_types;
9505 int funcdecl_p;
9507 /* Declaring a function type.
9508 Make sure we have a valid type for the function to return. */
9510 if (type_quals != TYPE_UNQUALIFIED)
9512 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
9513 warning (OPT_Wignored_qualifiers,
9514 "type qualifiers ignored on function return type");
9515 /* We now know that the TYPE_QUALS don't apply to the
9516 decl, but to its return type. */
9517 type_quals = TYPE_UNQUALIFIED;
9519 errmsg = targetm.invalid_return_type (type);
9520 if (errmsg)
9522 error (errmsg);
9523 type = integer_type_node;
9526 /* Error about some types functions can't return. */
9528 if (TREE_CODE (type) == FUNCTION_TYPE)
9530 error ("%qs declared as function returning a function", name);
9531 return error_mark_node;
9533 if (TREE_CODE (type) == ARRAY_TYPE)
9535 error ("%qs declared as function returning an array", name);
9536 return error_mark_node;
9539 input_location = declspecs->locations[ds_type_spec];
9540 abstract_virtuals_error (ACU_RETURN, type);
9541 input_location = saved_loc;
9543 /* Pick up type qualifiers which should be applied to `this'. */
9544 memfn_quals = declarator->u.function.qualifiers;
9545 /* Pick up virt-specifiers. */
9546 virt_specifiers = declarator->u.function.virt_specifiers;
9547 /* And ref-qualifier, too */
9548 rqual = declarator->u.function.ref_qualifier;
9549 /* Pick up the exception specifications. */
9550 raises = declarator->u.function.exception_specification;
9551 /* If the exception-specification is ill-formed, let's pretend
9552 there wasn't one. */
9553 if (raises == error_mark_node)
9554 raises = NULL_TREE;
9556 /* Say it's a definition only for the CALL_EXPR
9557 closest to the identifier. */
9558 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
9560 /* Handle a late-specified return type. */
9561 if (funcdecl_p)
9563 if (type_uses_auto (type))
9565 if (!declarator->u.function.late_return_type)
9567 if (current_class_type
9568 && LAMBDA_TYPE_P (current_class_type))
9569 /* OK for C++11 lambdas. */;
9570 else if (cxx_dialect < cxx1y)
9572 error ("%qs function uses "
9573 "%<auto%> type specifier without trailing "
9574 "return type", name);
9575 inform (input_location, "deduced return type "
9576 "only available with -std=c++1y or "
9577 "-std=gnu++1y");
9579 else if (virtualp)
9580 error ("virtual function cannot "
9581 "have deduced return type");
9583 else if (!is_auto (type))
9585 error ("%qs function with trailing return type has"
9586 " %qT as its type rather than plain %<auto%>",
9587 name, type);
9588 return error_mark_node;
9591 else if (declarator->u.function.late_return_type)
9593 if (cxx_dialect < cxx11)
9594 /* Not using maybe_warn_cpp0x because this should
9595 always be an error. */
9596 error ("trailing return type only available with "
9597 "-std=c++11 or -std=gnu++11");
9598 else
9599 error ("%qs function with trailing return type not "
9600 "declared with %<auto%> type specifier", name);
9601 return error_mark_node;
9604 type = splice_late_return_type
9605 (type, declarator->u.function.late_return_type);
9606 if (type == error_mark_node)
9607 return error_mark_node;
9609 if (ctype == NULL_TREE
9610 && decl_context == FIELD
9611 && funcdecl_p
9612 && (friendp == 0 || dname == current_class_name))
9613 ctype = current_class_type;
9615 if (ctype && (sfk == sfk_constructor
9616 || sfk == sfk_destructor))
9618 /* We are within a class's scope. If our declarator name
9619 is the same as the class name, and we are defining
9620 a function, then it is a constructor/destructor, and
9621 therefore returns a void type. */
9623 /* ISO C++ 12.4/2. A destructor may not be declared
9624 const or volatile. A destructor may not be static.
9625 A destructor may not be declared with ref-qualifier.
9627 ISO C++ 12.1. A constructor may not be declared
9628 const or volatile. A constructor may not be
9629 virtual. A constructor may not be static.
9630 A constructor may not be declared with ref-qualifier. */
9631 if (staticp == 2)
9632 error ((flags == DTOR_FLAG)
9633 ? G_("destructor cannot be static member function")
9634 : G_("constructor cannot be static member function"));
9635 if (memfn_quals)
9637 error ((flags == DTOR_FLAG)
9638 ? G_("destructors may not be cv-qualified")
9639 : G_("constructors may not be cv-qualified"));
9640 memfn_quals = TYPE_UNQUALIFIED;
9643 if (rqual)
9645 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
9646 error ((flags == DTOR_FLAG)
9647 ? "destructors may not be ref-qualified"
9648 : "constructors may not be ref-qualified");
9649 rqual = REF_QUAL_NONE;
9652 if (decl_context == FIELD
9653 && !member_function_or_else (ctype,
9654 current_class_type,
9655 flags))
9656 return error_mark_node;
9658 if (flags != DTOR_FLAG)
9660 /* It's a constructor. */
9661 if (explicitp == 1)
9662 explicitp = 2;
9663 if (virtualp)
9665 permerror (input_location, "constructors cannot be declared virtual");
9666 virtualp = 0;
9668 if (decl_context == FIELD
9669 && sfk != sfk_constructor)
9670 return error_mark_node;
9672 if (decl_context == FIELD)
9673 staticp = 0;
9675 else if (friendp)
9677 if (initialized)
9678 error ("can%'t initialize friend function %qs", name);
9679 if (virtualp)
9681 /* Cannot be both friend and virtual. */
9682 error ("virtual functions cannot be friends");
9683 friendp = 0;
9685 if (decl_context == NORMAL)
9686 error ("friend declaration not in class definition");
9687 if (current_function_decl && funcdef_flag)
9688 error ("can%'t define friend function %qs in a local "
9689 "class definition",
9690 name);
9692 else if (ctype && sfk == sfk_conversion)
9694 if (explicitp == 1)
9696 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
9697 explicitp = 2;
9701 arg_types = grokparms (declarator->u.function.parameters,
9702 &parms);
9704 if (inner_declarator
9705 && inner_declarator->kind == cdk_id
9706 && inner_declarator->u.id.sfk == sfk_destructor
9707 && arg_types != void_list_node)
9709 error ("destructors may not have parameters");
9710 arg_types = void_list_node;
9711 parms = NULL_TREE;
9714 type = build_function_type (type, arg_types);
9715 if (declarator->std_attributes)
9716 /* [dcl.fct]/2:
9718 The optional attribute-specifier-seq appertains to
9719 the function type. */
9720 decl_attributes (&type, declarator->std_attributes,
9723 break;
9725 case cdk_pointer:
9726 case cdk_reference:
9727 case cdk_ptrmem:
9728 /* Filter out pointers-to-references and references-to-references.
9729 We can get these if a TYPE_DECL is used. */
9731 if (TREE_CODE (type) == REFERENCE_TYPE)
9733 if (declarator->kind != cdk_reference)
9735 error ("cannot declare pointer to %q#T", type);
9736 type = TREE_TYPE (type);
9739 /* In C++0x, we allow reference to reference declarations
9740 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
9741 and template type arguments [14.3.1/4 temp.arg.type]. The
9742 check for direct reference to reference declarations, which
9743 are still forbidden, occurs below. Reasoning behind the change
9744 can be found in DR106, DR540, and the rvalue reference
9745 proposals. */
9746 else if (cxx_dialect == cxx98)
9748 error ("cannot declare reference to %q#T", type);
9749 type = TREE_TYPE (type);
9752 else if (VOID_TYPE_P (type))
9754 if (declarator->kind == cdk_reference)
9755 error ("cannot declare reference to %q#T", type);
9756 else if (declarator->kind == cdk_ptrmem)
9757 error ("cannot declare pointer to %q#T member", type);
9760 /* We now know that the TYPE_QUALS don't apply to the decl,
9761 but to the target of the pointer. */
9762 type_quals = TYPE_UNQUALIFIED;
9764 /* This code used to handle METHOD_TYPE, but I don't think it's
9765 possible to get it here anymore. */
9766 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
9767 if (declarator->kind == cdk_ptrmem
9768 && TREE_CODE (type) == FUNCTION_TYPE)
9770 memfn_quals |= type_memfn_quals (type);
9771 type = build_memfn_type (type,
9772 declarator->u.pointer.class_type,
9773 memfn_quals,
9774 rqual);
9775 if (type == error_mark_node)
9776 return error_mark_node;
9778 rqual = REF_QUAL_NONE;
9779 memfn_quals = TYPE_UNQUALIFIED;
9782 if (TREE_CODE (type) == FUNCTION_TYPE
9783 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
9784 || type_memfn_rqual (type) != REF_QUAL_NONE))
9785 error (declarator->kind == cdk_reference
9786 ? G_("cannot declare reference to qualified function type %qT")
9787 : G_("cannot declare pointer to qualified function type %qT"),
9788 type);
9790 if (cxx_dialect >= cxx1y && array_of_runtime_bound_p (type)
9791 && (flag_iso || warn_vla > 0))
9792 pedwarn (input_location, OPT_Wvla,
9793 declarator->kind == cdk_reference
9794 ? G_("reference to array of runtime bound")
9795 : G_("pointer to array of runtime bound"));
9797 /* When the pointed-to type involves components of variable size,
9798 care must be taken to ensure that the size evaluation code is
9799 emitted early enough to dominate all the possible later uses
9800 and late enough for the variables on which it depends to have
9801 been assigned.
9803 This is expected to happen automatically when the pointed-to
9804 type has a name/declaration of it's own, but special attention
9805 is required if the type is anonymous.
9807 We handle the NORMAL and FIELD contexts here by inserting a
9808 dummy statement that just evaluates the size at a safe point
9809 and ensures it is not deferred until e.g. within a deeper
9810 conditional context (c++/43555).
9812 We expect nothing to be needed here for PARM or TYPENAME.
9813 Evaluating the size at this point for TYPENAME would
9814 actually be incorrect, as we might be in the middle of an
9815 expression with side effects on the pointed-to type size
9816 "arguments" prior to the pointer declaration point and the
9817 size evaluation could end up prior to the side effects. */
9819 if (!TYPE_NAME (type)
9820 && (decl_context == NORMAL || decl_context == FIELD)
9821 && at_function_scope_p ()
9822 && variably_modified_type_p (type, NULL_TREE))
9823 /* Force evaluation of the SAVE_EXPR. */
9824 finish_expr_stmt (TYPE_SIZE (type));
9826 if (declarator->kind == cdk_reference)
9828 /* In C++0x, the type we are creating a reference to might be
9829 a typedef which is itself a reference type. In that case,
9830 we follow the reference collapsing rules in
9831 [7.1.3/8 dcl.typedef] to create the final reference type:
9833 "If a typedef TD names a type that is a reference to a type
9834 T, an attempt to create the type 'lvalue reference to cv TD'
9835 creates the type 'lvalue reference to T,' while an attempt
9836 to create the type "rvalue reference to cv TD' creates the
9837 type TD."
9839 if (VOID_TYPE_P (type))
9840 /* We already gave an error. */;
9841 else if (TREE_CODE (type) == REFERENCE_TYPE)
9843 if (declarator->u.reference.rvalue_ref)
9844 /* Leave type alone. */;
9845 else
9846 type = cp_build_reference_type (TREE_TYPE (type), false);
9848 else
9849 type = cp_build_reference_type
9850 (type, declarator->u.reference.rvalue_ref);
9852 /* In C++0x, we need this check for direct reference to
9853 reference declarations, which are forbidden by
9854 [8.3.2/5 dcl.ref]. Reference to reference declarations
9855 are only allowed indirectly through typedefs and template
9856 type arguments. Example:
9858 void foo(int & &); // invalid ref-to-ref decl
9860 typedef int & int_ref;
9861 void foo(int_ref &); // valid ref-to-ref decl
9863 if (inner_declarator && inner_declarator->kind == cdk_reference)
9864 error ("cannot declare reference to %q#T, which is not "
9865 "a typedef or a template type argument", type);
9867 else if (TREE_CODE (type) == METHOD_TYPE)
9868 type = build_ptrmemfunc_type (build_pointer_type (type));
9869 else if (declarator->kind == cdk_ptrmem)
9871 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
9872 != NAMESPACE_DECL);
9873 if (declarator->u.pointer.class_type == error_mark_node)
9874 /* We will already have complained. */
9875 type = error_mark_node;
9876 else
9877 type = build_ptrmem_type (declarator->u.pointer.class_type,
9878 type);
9880 else
9881 type = build_pointer_type (type);
9883 /* Process a list of type modifier keywords (such as
9884 const or volatile) that were given inside the `*' or `&'. */
9886 if (declarator->u.pointer.qualifiers)
9888 type
9889 = cp_build_qualified_type (type,
9890 declarator->u.pointer.qualifiers);
9891 type_quals = cp_type_quals (type);
9894 /* Apply C++11 attributes to the pointer, and not to the
9895 type pointed to. This is unlike what is done for GNU
9896 attributes above. It is to comply with [dcl.ptr]/1:
9898 [the optional attribute-specifier-seq (7.6.1) appertains
9899 to the pointer and not to the object pointed to]. */
9900 if (declarator->std_attributes)
9901 decl_attributes (&type, declarator->std_attributes,
9904 ctype = NULL_TREE;
9905 break;
9907 case cdk_error:
9908 break;
9910 default:
9911 gcc_unreachable ();
9915 /* A `constexpr' specifier used in an object declaration declares
9916 the object as `const'. */
9917 if (constexpr_p && innermost_code != cdk_function)
9919 if (type_quals & TYPE_QUAL_VOLATILE)
9920 error ("both %<volatile%> and %<constexpr%> cannot be used here");
9921 if (TREE_CODE (type) != REFERENCE_TYPE)
9923 type_quals |= TYPE_QUAL_CONST;
9924 type = cp_build_qualified_type (type, type_quals);
9928 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
9929 && TREE_CODE (type) != FUNCTION_TYPE
9930 && TREE_CODE (type) != METHOD_TYPE)
9932 error ("template-id %qD used as a declarator",
9933 unqualified_id);
9934 unqualified_id = dname;
9937 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
9938 qualified with a class-name, turn it into a METHOD_TYPE, unless
9939 we know that the function is static. We take advantage of this
9940 opportunity to do other processing that pertains to entities
9941 explicitly declared to be class members. Note that if DECLARATOR
9942 is non-NULL, we know it is a cdk_id declarator; otherwise, we
9943 would not have exited the loop above. */
9944 if (declarator
9945 && declarator->u.id.qualifying_scope
9946 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
9948 ctype = declarator->u.id.qualifying_scope;
9949 ctype = TYPE_MAIN_VARIANT (ctype);
9950 template_count = num_template_headers_for_class (ctype);
9952 if (ctype == current_class_type)
9954 if (friendp)
9956 permerror (input_location, "member functions are implicitly friends of their class");
9957 friendp = 0;
9959 else
9960 permerror (declarator->id_loc,
9961 "extra qualification %<%T::%> on member %qs",
9962 ctype, name);
9964 else if (/* If the qualifying type is already complete, then we
9965 can skip the following checks. */
9966 !COMPLETE_TYPE_P (ctype)
9967 && (/* If the function is being defined, then
9968 qualifying type must certainly be complete. */
9969 funcdef_flag
9970 /* A friend declaration of "T::f" is OK, even if
9971 "T" is a template parameter. But, if this
9972 function is not a friend, the qualifying type
9973 must be a class. */
9974 || (!friendp && !CLASS_TYPE_P (ctype))
9975 /* For a declaration, the type need not be
9976 complete, if either it is dependent (since there
9977 is no meaningful definition of complete in that
9978 case) or the qualifying class is currently being
9979 defined. */
9980 || !(dependent_type_p (ctype)
9981 || currently_open_class (ctype)))
9982 /* Check that the qualifying type is complete. */
9983 && !complete_type_or_else (ctype, NULL_TREE))
9984 return error_mark_node;
9985 else if (TREE_CODE (type) == FUNCTION_TYPE)
9987 if (current_class_type
9988 && (!friendp || funcdef_flag))
9990 error (funcdef_flag
9991 ? G_("cannot define member function %<%T::%s%> "
9992 "within %<%T%>")
9993 : G_("cannot declare member function %<%T::%s%> "
9994 "within %<%T%>"),
9995 ctype, name, current_class_type);
9996 return error_mark_node;
9999 else if (typedef_p && current_class_type)
10001 error ("cannot declare member %<%T::%s%> within %qT",
10002 ctype, name, current_class_type);
10003 return error_mark_node;
10007 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
10008 ctype = current_class_type;
10010 /* Now TYPE has the actual type. */
10012 if (returned_attrs)
10014 if (attrlist)
10015 *attrlist = chainon (returned_attrs, *attrlist);
10016 else
10017 attrlist = &returned_attrs;
10020 if (declarator
10021 && declarator->kind == cdk_id
10022 && declarator->std_attributes)
10023 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
10024 a declarator-id appertains to the entity that is declared. */
10025 *attrlist = chainon (*attrlist, declarator->std_attributes);
10027 /* Handle parameter packs. */
10028 if (parameter_pack_p)
10030 if (decl_context == PARM)
10031 /* Turn the type into a pack expansion.*/
10032 type = make_pack_expansion (type);
10033 else
10034 error ("non-parameter %qs cannot be a parameter pack", name);
10037 /* Did array size calculations overflow or does the array cover more
10038 than half of the address-space? */
10039 if (TREE_CODE (type) == ARRAY_TYPE
10040 && COMPLETE_TYPE_P (type)
10041 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
10042 && ! valid_constant_size_p (TYPE_SIZE_UNIT (type)))
10044 error ("size of array %qs is too large", name);
10045 /* If we proceed with the array type as it is, we'll eventually
10046 crash in tree_to_[su]hwi(). */
10047 type = error_mark_node;
10050 if ((decl_context == FIELD || decl_context == PARM)
10051 && !processing_template_decl
10052 && variably_modified_type_p (type, NULL_TREE))
10054 if (decl_context == FIELD)
10055 error ("data member may not have variably modified type %qT", type);
10056 else
10057 error ("parameter may not have variably modified type %qT", type);
10058 type = error_mark_node;
10061 if (explicitp == 1 || (explicitp && friendp))
10063 /* [dcl.fct.spec] The explicit specifier shall only be used in
10064 declarations of constructors within a class definition. */
10065 error ("only declarations of constructors can be %<explicit%>");
10066 explicitp = 0;
10069 if (storage_class == sc_mutable)
10071 if (decl_context != FIELD || friendp)
10073 error ("non-member %qs cannot be declared %<mutable%>", name);
10074 storage_class = sc_none;
10076 else if (decl_context == TYPENAME || typedef_p)
10078 error ("non-object member %qs cannot be declared %<mutable%>", name);
10079 storage_class = sc_none;
10081 else if (TREE_CODE (type) == FUNCTION_TYPE
10082 || TREE_CODE (type) == METHOD_TYPE)
10084 error ("function %qs cannot be declared %<mutable%>", name);
10085 storage_class = sc_none;
10087 else if (staticp)
10089 error ("static %qs cannot be declared %<mutable%>", name);
10090 storage_class = sc_none;
10092 else if (type_quals & TYPE_QUAL_CONST)
10094 error ("const %qs cannot be declared %<mutable%>", name);
10095 storage_class = sc_none;
10097 else if (TREE_CODE (type) == REFERENCE_TYPE)
10099 permerror (input_location, "reference %qs cannot be declared "
10100 "%<mutable%>", name);
10101 storage_class = sc_none;
10105 /* If this is declaring a typedef name, return a TYPE_DECL. */
10106 if (typedef_p && decl_context != TYPENAME)
10108 tree decl;
10110 /* Note that the grammar rejects storage classes
10111 in typenames, fields or parameters. */
10112 if (current_lang_name == lang_name_java)
10113 TYPE_FOR_JAVA (type) = 1;
10115 /* This declaration:
10117 typedef void f(int) const;
10119 declares a function type which is not a member of any
10120 particular class, but which is cv-qualified; for
10121 example "f S::*" declares a pointer to a const-qualified
10122 member function of S. We record the cv-qualification in the
10123 function type. */
10124 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
10126 type = apply_memfn_quals (type, memfn_quals, rqual);
10128 /* We have now dealt with these qualifiers. */
10129 memfn_quals = TYPE_UNQUALIFIED;
10130 rqual = REF_QUAL_NONE;
10133 if (type_uses_auto (type))
10135 error ("typedef declared %<auto%>");
10136 type = error_mark_node;
10139 if (cxx_dialect >= cxx1y && array_of_runtime_bound_p (type)
10140 && (flag_iso || warn_vla > 0))
10141 pedwarn (input_location, OPT_Wvla,
10142 "typedef naming array of runtime bound");
10144 if (decl_context == FIELD)
10145 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
10146 else
10147 decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
10148 if (id_declarator && declarator->u.id.qualifying_scope) {
10149 error_at (DECL_SOURCE_LOCATION (decl),
10150 "typedef name may not be a nested-name-specifier");
10151 TREE_TYPE (decl) = error_mark_node;
10154 if (decl_context != FIELD)
10156 if (!current_function_decl)
10157 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
10158 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl)
10159 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
10160 (current_function_decl)))
10161 /* The TYPE_DECL is "abstract" because there will be
10162 clones of this constructor/destructor, and there will
10163 be copies of this TYPE_DECL generated in those
10164 clones. The decloning optimization (for space) may
10165 revert this subsequently if it determines that
10166 the clones should share a common implementation. */
10167 DECL_ABSTRACT (decl) = 1;
10169 else if (current_class_type
10170 && constructor_name_p (unqualified_id, current_class_type))
10171 permerror (input_location, "ISO C++ forbids nested type %qD with same name "
10172 "as enclosing class",
10173 unqualified_id);
10175 /* If the user declares "typedef struct {...} foo" then the
10176 struct will have an anonymous name. Fill that name in now.
10177 Nothing can refer to it, so nothing needs know about the name
10178 change. */
10179 if (type != error_mark_node
10180 && unqualified_id
10181 && TYPE_NAME (type)
10182 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10183 && TYPE_ANONYMOUS_P (type)
10184 && declspecs->type_definition_p
10185 && attributes_naming_typedef_ok (*attrlist)
10186 && cp_type_quals (type) == TYPE_UNQUALIFIED)
10188 tree t;
10190 /* Replace the anonymous name with the real name everywhere. */
10191 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
10193 if (ANON_AGGRNAME_P (TYPE_IDENTIFIER (t)))
10194 /* We do not rename the debug info representing the
10195 anonymous tagged type because the standard says in
10196 [dcl.typedef] that the naming applies only for
10197 linkage purposes. */
10198 /*debug_hooks->set_name (t, decl);*/
10199 TYPE_NAME (t) = decl;
10202 if (TYPE_LANG_SPECIFIC (type))
10203 TYPE_WAS_ANONYMOUS (type) = 1;
10205 /* If this is a typedef within a template class, the nested
10206 type is a (non-primary) template. The name for the
10207 template needs updating as well. */
10208 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
10209 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
10210 = TYPE_IDENTIFIER (type);
10212 /* Adjust linkage now that we aren't anonymous anymore. */
10213 reset_type_linkage (type);
10215 /* FIXME remangle member functions; member functions of a
10216 type with external linkage have external linkage. */
10219 if (signed_p
10220 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
10221 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
10223 bad_specifiers (decl, BSP_TYPE, virtualp,
10224 memfn_quals != TYPE_UNQUALIFIED,
10225 inlinep, friendp, raises != NULL_TREE);
10227 if (decl_spec_seq_has_spec_p (declspecs, ds_alias))
10228 /* Acknowledge that this was written:
10229 `using analias = atype;'. */
10230 TYPE_DECL_ALIAS_P (decl) = 1;
10232 return decl;
10235 /* Detect the case of an array type of unspecified size
10236 which came, as such, direct from a typedef name.
10237 We must copy the type, so that the array's domain can be
10238 individually set by the object's initializer. */
10240 if (type && typedef_type
10241 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
10242 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
10243 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
10245 /* Detect where we're using a typedef of function type to declare a
10246 function. PARMS will not be set, so we must create it now. */
10248 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
10250 tree decls = NULL_TREE;
10251 tree args;
10253 for (args = TYPE_ARG_TYPES (type);
10254 args && args != void_list_node;
10255 args = TREE_CHAIN (args))
10257 tree decl = cp_build_parm_decl (NULL_TREE, TREE_VALUE (args));
10259 DECL_CHAIN (decl) = decls;
10260 decls = decl;
10263 parms = nreverse (decls);
10265 if (decl_context != TYPENAME)
10267 /* The qualifiers on the function type become the qualifiers on
10268 the non-static member function. */
10269 memfn_quals |= type_memfn_quals (type);
10270 rqual = type_memfn_rqual (type);
10271 type_quals = TYPE_UNQUALIFIED;
10275 /* If this is a type name (such as, in a cast or sizeof),
10276 compute the type and return it now. */
10278 if (decl_context == TYPENAME)
10280 /* Note that the grammar rejects storage classes
10281 in typenames, fields or parameters. */
10282 if (type_quals != TYPE_UNQUALIFIED)
10283 type_quals = TYPE_UNQUALIFIED;
10285 /* Special case: "friend class foo" looks like a TYPENAME context. */
10286 if (friendp)
10288 if (type_quals != TYPE_UNQUALIFIED)
10290 error ("type qualifiers specified for friend class declaration");
10291 type_quals = TYPE_UNQUALIFIED;
10293 if (inlinep)
10295 error ("%<inline%> specified for friend class declaration");
10296 inlinep = 0;
10299 if (!current_aggr)
10301 /* Don't allow friend declaration without a class-key. */
10302 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
10303 permerror (input_location, "template parameters cannot be friends");
10304 else if (TREE_CODE (type) == TYPENAME_TYPE)
10305 permerror (input_location, "friend declaration requires class-key, "
10306 "i.e. %<friend class %T::%D%>",
10307 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
10308 else
10309 permerror (input_location, "friend declaration requires class-key, "
10310 "i.e. %<friend %#T%>",
10311 type);
10314 /* Only try to do this stuff if we didn't already give up. */
10315 if (type != integer_type_node)
10317 /* A friendly class? */
10318 if (current_class_type)
10319 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
10320 /*complain=*/true);
10321 else
10322 error ("trying to make class %qT a friend of global scope",
10323 type);
10325 type = void_type_node;
10328 else if (memfn_quals || rqual)
10330 if (ctype == NULL_TREE
10331 && TREE_CODE (type) == METHOD_TYPE)
10332 ctype = TYPE_METHOD_BASETYPE (type);
10334 if (ctype)
10335 type = build_memfn_type (type, ctype, memfn_quals, rqual);
10336 /* Core issue #547: need to allow this in template type args.
10337 Allow it in general in C++11 for alias-declarations. */
10338 else if ((template_type_arg || cxx_dialect >= cxx11)
10339 && TREE_CODE (type) == FUNCTION_TYPE)
10340 type = apply_memfn_quals (type, memfn_quals, rqual);
10341 else
10342 error ("invalid qualifiers on non-member function type");
10345 return type;
10347 else if (unqualified_id == NULL_TREE && decl_context != PARM
10348 && decl_context != CATCHPARM
10349 && TREE_CODE (type) != UNION_TYPE
10350 && ! bitfield)
10352 error ("abstract declarator %qT used as declaration", type);
10353 return error_mark_node;
10356 /* Only functions may be declared using an operator-function-id. */
10357 if (unqualified_id
10358 && IDENTIFIER_OPNAME_P (unqualified_id)
10359 && TREE_CODE (type) != FUNCTION_TYPE
10360 && TREE_CODE (type) != METHOD_TYPE)
10362 error ("declaration of %qD as non-function", unqualified_id);
10363 return error_mark_node;
10366 /* We don't check parameter types here because we can emit a better
10367 error message later. */
10368 if (decl_context != PARM)
10370 type = check_var_type (unqualified_id, type);
10371 if (type == error_mark_node)
10372 return error_mark_node;
10375 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
10376 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
10378 if (decl_context == PARM || decl_context == CATCHPARM)
10380 if (ctype || in_namespace)
10381 error ("cannot use %<::%> in parameter declaration");
10383 if (type_uses_auto (type))
10385 if (cxx_dialect >= cxx1y)
10386 error ("%<auto%> parameter not permitted in this context");
10387 else
10388 error ("parameter declared %<auto%>");
10389 type = error_mark_node;
10392 /* A parameter declared as an array of T is really a pointer to T.
10393 One declared as a function is really a pointer to a function.
10394 One declared as a member is really a pointer to member. */
10396 if (TREE_CODE (type) == ARRAY_TYPE)
10398 /* Transfer const-ness of array into that of type pointed to. */
10399 type = build_pointer_type (TREE_TYPE (type));
10400 type_quals = TYPE_UNQUALIFIED;
10402 else if (TREE_CODE (type) == FUNCTION_TYPE)
10403 type = build_pointer_type (type);
10406 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
10407 && !NEW_DELETE_OPNAME_P (unqualified_id))
10409 cp_cv_quals real_quals = memfn_quals;
10410 if (constexpr_p && sfk != sfk_constructor && sfk != sfk_destructor)
10411 real_quals |= TYPE_QUAL_CONST;
10412 type = build_memfn_type (type, ctype, real_quals, rqual);
10416 tree decl;
10418 if (decl_context == PARM)
10420 decl = cp_build_parm_decl (unqualified_id, type);
10422 bad_specifiers (decl, BSP_PARM, virtualp,
10423 memfn_quals != TYPE_UNQUALIFIED,
10424 inlinep, friendp, raises != NULL_TREE);
10426 else if (decl_context == FIELD)
10428 if (!staticp && TREE_CODE (type) != METHOD_TYPE
10429 && type_uses_auto (type))
10431 error ("non-static data member declared %<auto%>");
10432 type = error_mark_node;
10435 /* The C99 flexible array extension. */
10436 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
10437 && TYPE_DOMAIN (type) == NULL_TREE)
10439 tree itype = compute_array_index_type (dname, integer_zero_node,
10440 tf_warning_or_error);
10441 type = build_cplus_array_type (TREE_TYPE (type), itype);
10444 if (type == error_mark_node)
10446 /* Happens when declaring arrays of sizes which
10447 are error_mark_node, for example. */
10448 decl = NULL_TREE;
10450 else if (in_namespace && !friendp)
10452 /* Something like struct S { int N::j; }; */
10453 error ("invalid use of %<::%>");
10454 return error_mark_node;
10456 else if (TREE_CODE (type) == FUNCTION_TYPE
10457 || TREE_CODE (type) == METHOD_TYPE)
10459 int publicp = 0;
10460 tree function_context;
10462 if (friendp == 0)
10464 /* This should never happen in pure C++ (the check
10465 could be an assert). It could happen in
10466 Objective-C++ if someone writes invalid code that
10467 uses a function declaration for an instance
10468 variable or property (instance variables and
10469 properties are parsed as FIELD_DECLs, but they are
10470 part of an Objective-C class, not a C++ class).
10471 That code is invalid and is caught by this
10472 check. */
10473 if (!ctype)
10475 error ("declaration of function %qD in invalid context",
10476 unqualified_id);
10477 return error_mark_node;
10480 /* ``A union may [ ... ] not [ have ] virtual functions.''
10481 ARM 9.5 */
10482 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
10484 error ("function %qD declared virtual inside a union",
10485 unqualified_id);
10486 return error_mark_node;
10489 if (NEW_DELETE_OPNAME_P (unqualified_id))
10491 if (virtualp)
10493 error ("%qD cannot be declared virtual, since it "
10494 "is always static",
10495 unqualified_id);
10496 virtualp = 0;
10501 /* Check that the name used for a destructor makes sense. */
10502 if (sfk == sfk_destructor)
10504 tree uqname = id_declarator->u.id.unqualified_name;
10506 if (!ctype)
10508 gcc_assert (friendp);
10509 error ("expected qualified name in friend declaration "
10510 "for destructor %qD", uqname);
10511 return error_mark_node;
10514 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
10516 error ("declaration of %qD as member of %qT",
10517 uqname, ctype);
10518 return error_mark_node;
10520 if (constexpr_p)
10522 error ("a destructor cannot be %<constexpr%>");
10523 return error_mark_node;
10526 else if (sfk == sfk_constructor && friendp && !ctype)
10528 error ("expected qualified name in friend declaration "
10529 "for constructor %qD",
10530 id_declarator->u.id.unqualified_name);
10531 return error_mark_node;
10534 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
10535 function_context = (ctype != NULL_TREE) ?
10536 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
10537 publicp = (! friendp || ! staticp)
10538 && function_context == NULL_TREE;
10539 decl = grokfndecl (ctype, type,
10540 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
10541 ? unqualified_id : dname,
10542 parms,
10543 unqualified_id,
10544 virtualp, flags, memfn_quals, rqual, raises,
10545 friendp ? -1 : 0, friendp, publicp,
10546 inlinep | (2 * constexpr_p),
10547 sfk,
10548 funcdef_flag, template_count, in_namespace,
10549 attrlist, declarator->id_loc);
10550 decl = set_virt_specifiers (decl, virt_specifiers);
10551 if (decl == NULL_TREE)
10552 return error_mark_node;
10553 #if 0
10554 /* This clobbers the attrs stored in `decl' from `attrlist'. */
10555 /* The decl and setting of decl_attr is also turned off. */
10556 decl = build_decl_attribute_variant (decl, decl_attr);
10557 #endif
10559 /* [class.conv.ctor]
10561 A constructor declared without the function-specifier
10562 explicit that can be called with a single parameter
10563 specifies a conversion from the type of its first
10564 parameter to the type of its class. Such a constructor
10565 is called a converting constructor. */
10566 if (explicitp == 2)
10567 DECL_NONCONVERTING_P (decl) = 1;
10569 else if (!staticp && !dependent_type_p (type)
10570 && !COMPLETE_TYPE_P (complete_type (type))
10571 && (TREE_CODE (type) != ARRAY_TYPE || initialized == 0))
10573 if (unqualified_id)
10574 error ("field %qD has incomplete type %qT",
10575 unqualified_id, type);
10576 else
10577 error ("name %qT has incomplete type", type);
10579 type = error_mark_node;
10580 decl = NULL_TREE;
10582 else
10584 if (friendp)
10586 error ("%qE is neither function nor member function; "
10587 "cannot be declared friend", unqualified_id);
10588 friendp = 0;
10590 decl = NULL_TREE;
10593 if (friendp)
10595 /* Friends are treated specially. */
10596 if (ctype == current_class_type)
10597 ; /* We already issued a permerror. */
10598 else if (decl && DECL_NAME (decl))
10600 if (template_class_depth (current_class_type) == 0)
10602 decl = check_explicit_specialization
10603 (unqualified_id, decl, template_count,
10604 2 * funcdef_flag + 4);
10605 if (decl == error_mark_node)
10606 return error_mark_node;
10609 decl = do_friend (ctype, unqualified_id, decl,
10610 *attrlist, flags,
10611 funcdef_flag);
10612 return decl;
10614 else
10615 return error_mark_node;
10618 /* Structure field. It may not be a function, except for C++. */
10620 if (decl == NULL_TREE)
10622 if (staticp)
10624 /* C++ allows static class members. All other work
10625 for this is done by grokfield. */
10626 decl = build_lang_decl_loc (declarator
10627 ? declarator->id_loc
10628 : input_location,
10629 VAR_DECL, unqualified_id, type);
10630 set_linkage_for_static_data_member (decl);
10631 /* Even if there is an in-class initialization, DECL
10632 is considered undefined until an out-of-class
10633 definition is provided. */
10634 DECL_EXTERNAL (decl) = 1;
10636 if (thread_p)
10638 DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
10639 if (declspecs->gnu_thread_keyword_p)
10640 DECL_GNU_TLS_P (decl) = true;
10643 if (constexpr_p && !initialized)
10645 error ("constexpr static data member %qD must have an "
10646 "initializer", decl);
10647 constexpr_p = false;
10650 else
10652 if (constexpr_p)
10654 error ("non-static data member %qE declared %<constexpr%>",
10655 unqualified_id);
10656 constexpr_p = false;
10658 decl = build_decl (input_location,
10659 FIELD_DECL, unqualified_id, type);
10660 DECL_NONADDRESSABLE_P (decl) = bitfield;
10661 if (bitfield && !unqualified_id)
10662 TREE_NO_WARNING (decl) = 1;
10664 if (storage_class == sc_mutable)
10666 DECL_MUTABLE_P (decl) = 1;
10667 storage_class = sc_none;
10670 if (initialized)
10672 /* An attempt is being made to initialize a non-static
10673 member. This is new in C++11. */
10674 maybe_warn_cpp0x (CPP0X_NSDMI);
10676 /* If this has been parsed with static storage class, but
10677 errors forced staticp to be cleared, ensure NSDMI is
10678 not present. */
10679 if (declspecs->storage_class == sc_static)
10680 DECL_INITIAL (decl) = error_mark_node;
10684 bad_specifiers (decl, BSP_FIELD, virtualp,
10685 memfn_quals != TYPE_UNQUALIFIED,
10686 inlinep, friendp, raises != NULL_TREE);
10689 else if (TREE_CODE (type) == FUNCTION_TYPE
10690 || TREE_CODE (type) == METHOD_TYPE)
10692 tree original_name;
10693 int publicp = 0;
10695 if (!unqualified_id)
10696 return error_mark_node;
10698 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
10699 original_name = dname;
10700 else
10701 original_name = unqualified_id;
10703 if (storage_class == sc_auto)
10704 error ("storage class %<auto%> invalid for function %qs", name);
10705 else if (storage_class == sc_register)
10706 error ("storage class %<register%> invalid for function %qs", name);
10707 else if (thread_p)
10709 if (declspecs->gnu_thread_keyword_p)
10710 error ("storage class %<__thread%> invalid for function %qs",
10711 name);
10712 else
10713 error ("storage class %<thread_local%> invalid for function %qs",
10714 name);
10717 if (virt_specifiers)
10718 error ("virt-specifiers in %qs not allowed outside a class definition", name);
10719 /* Function declaration not at top level.
10720 Storage classes other than `extern' are not allowed
10721 and `extern' makes no difference. */
10722 if (! toplevel_bindings_p ()
10723 && (storage_class == sc_static
10724 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
10725 && pedantic)
10727 if (storage_class == sc_static)
10728 pedwarn (input_location, OPT_Wpedantic,
10729 "%<static%> specified invalid for function %qs "
10730 "declared out of global scope", name);
10731 else
10732 pedwarn (input_location, OPT_Wpedantic,
10733 "%<inline%> specifier invalid for function %qs "
10734 "declared out of global scope", name);
10737 if (ctype == NULL_TREE)
10739 if (virtualp)
10741 error ("virtual non-class function %qs", name);
10742 virtualp = 0;
10744 else if (sfk == sfk_constructor
10745 || sfk == sfk_destructor)
10747 error (funcdef_flag
10748 ? G_("%qs defined in a non-class scope")
10749 : G_("%qs declared in a non-class scope"), name);
10750 sfk = sfk_none;
10754 /* Record whether the function is public. */
10755 publicp = (ctype != NULL_TREE
10756 || storage_class != sc_static);
10758 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
10759 virtualp, flags, memfn_quals, rqual, raises,
10760 1, friendp,
10761 publicp, inlinep | (2 * constexpr_p), sfk,
10762 funcdef_flag,
10763 template_count, in_namespace, attrlist,
10764 declarator->id_loc);
10765 if (decl == NULL_TREE)
10766 return error_mark_node;
10768 if (staticp == 1)
10770 int invalid_static = 0;
10772 /* Don't allow a static member function in a class, and forbid
10773 declaring main to be static. */
10774 if (TREE_CODE (type) == METHOD_TYPE)
10776 permerror (input_location, "cannot declare member function %qD to have "
10777 "static linkage", decl);
10778 invalid_static = 1;
10780 else if (current_function_decl)
10782 /* FIXME need arm citation */
10783 error ("cannot declare static function inside another function");
10784 invalid_static = 1;
10787 if (invalid_static)
10789 staticp = 0;
10790 storage_class = sc_none;
10794 else
10796 /* It's a variable. */
10798 /* An uninitialized decl with `extern' is a reference. */
10799 decl = grokvardecl (type, unqualified_id,
10800 declspecs,
10801 initialized,
10802 (type_quals & TYPE_QUAL_CONST) != 0,
10803 ctype ? ctype : in_namespace);
10804 bad_specifiers (decl, BSP_VAR, virtualp,
10805 memfn_quals != TYPE_UNQUALIFIED,
10806 inlinep, friendp, raises != NULL_TREE);
10808 if (ctype)
10810 DECL_CONTEXT (decl) = ctype;
10811 if (staticp == 1)
10813 permerror (input_location, "%<static%> may not be used when defining "
10814 "(as opposed to declaring) a static data member");
10815 staticp = 0;
10816 storage_class = sc_none;
10818 if (storage_class == sc_register && TREE_STATIC (decl))
10820 error ("static member %qD declared %<register%>", decl);
10821 storage_class = sc_none;
10823 if (storage_class == sc_extern && pedantic)
10825 pedwarn (input_location, OPT_Wpedantic,
10826 "cannot explicitly declare member %q#D to have "
10827 "extern linkage", decl);
10828 storage_class = sc_none;
10831 else if (constexpr_p && DECL_EXTERNAL (decl))
10833 error ("declaration of constexpr variable %qD is not a definition",
10834 decl);
10835 constexpr_p = false;
10839 if (storage_class == sc_extern && initialized && !funcdef_flag)
10841 if (toplevel_bindings_p ())
10843 /* It's common practice (and completely valid) to have a const
10844 be initialized and declared extern. */
10845 if (!(type_quals & TYPE_QUAL_CONST))
10846 warning (0, "%qs initialized and declared %<extern%>", name);
10848 else
10850 error ("%qs has both %<extern%> and initializer", name);
10851 return error_mark_node;
10855 /* Record `register' declaration for warnings on &
10856 and in case doing stupid register allocation. */
10858 if (storage_class == sc_register)
10859 DECL_REGISTER (decl) = 1;
10860 else if (storage_class == sc_extern)
10861 DECL_THIS_EXTERN (decl) = 1;
10862 else if (storage_class == sc_static)
10863 DECL_THIS_STATIC (decl) = 1;
10865 /* Set constexpr flag on vars (functions got it in grokfndecl). */
10866 if (constexpr_p && VAR_P (decl))
10867 DECL_DECLARED_CONSTEXPR_P (decl) = true;
10869 /* Record constancy and volatility on the DECL itself . There's
10870 no need to do this when processing a template; we'll do this
10871 for the instantiated declaration based on the type of DECL. */
10872 if (!processing_template_decl)
10873 cp_apply_type_quals_to_decl (type_quals, decl);
10875 return decl;
10879 /* Subroutine of start_function. Ensure that each of the parameter
10880 types (as listed in PARMS) is complete, as is required for a
10881 function definition. */
10883 static void
10884 require_complete_types_for_parms (tree parms)
10886 for (; parms; parms = DECL_CHAIN (parms))
10888 if (dependent_type_p (TREE_TYPE (parms)))
10889 continue;
10890 if (!VOID_TYPE_P (TREE_TYPE (parms))
10891 && complete_type_or_else (TREE_TYPE (parms), parms))
10893 relayout_decl (parms);
10894 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
10896 else
10897 /* grokparms or complete_type_or_else will have already issued
10898 an error. */
10899 TREE_TYPE (parms) = error_mark_node;
10903 /* Returns nonzero if T is a local variable. */
10906 local_variable_p (const_tree t)
10908 if ((VAR_P (t)
10909 /* A VAR_DECL with a context that is a _TYPE is a static data
10910 member. */
10911 && !TYPE_P (CP_DECL_CONTEXT (t))
10912 /* Any other non-local variable must be at namespace scope. */
10913 && !DECL_NAMESPACE_SCOPE_P (t))
10914 || (TREE_CODE (t) == PARM_DECL))
10915 return 1;
10917 return 0;
10920 /* Like local_variable_p, but suitable for use as a tree-walking
10921 function. */
10923 static tree
10924 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
10925 void * /*data*/)
10927 if (local_variable_p (*tp)
10928 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
10929 return *tp;
10930 else if (TYPE_P (*tp))
10931 *walk_subtrees = 0;
10933 return NULL_TREE;
10936 /* Check that ARG, which is a default-argument expression for a
10937 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
10938 something goes wrong. DECL may also be a _TYPE node, rather than a
10939 DECL, if there is no DECL available. */
10941 tree
10942 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
10944 tree var;
10945 tree decl_type;
10947 if (TREE_CODE (arg) == DEFAULT_ARG)
10948 /* We get a DEFAULT_ARG when looking at an in-class declaration
10949 with a default argument. Ignore the argument for now; we'll
10950 deal with it after the class is complete. */
10951 return arg;
10953 if (TYPE_P (decl))
10955 decl_type = decl;
10956 decl = NULL_TREE;
10958 else
10959 decl_type = TREE_TYPE (decl);
10961 if (arg == error_mark_node
10962 || decl == error_mark_node
10963 || TREE_TYPE (arg) == error_mark_node
10964 || decl_type == error_mark_node)
10965 /* Something already went wrong. There's no need to check
10966 further. */
10967 return error_mark_node;
10969 /* [dcl.fct.default]
10971 A default argument expression is implicitly converted to the
10972 parameter type. */
10973 ++cp_unevaluated_operand;
10974 perform_implicit_conversion_flags (decl_type, arg, complain,
10975 LOOKUP_IMPLICIT);
10976 --cp_unevaluated_operand;
10978 if (warn_zero_as_null_pointer_constant
10979 && TYPE_PTR_OR_PTRMEM_P (decl_type)
10980 && null_ptr_cst_p (arg)
10981 && (complain & tf_warning)
10982 && maybe_warn_zero_as_null_pointer_constant (arg, input_location))
10983 return nullptr_node;
10985 /* [dcl.fct.default]
10987 Local variables shall not be used in default argument
10988 expressions.
10990 The keyword `this' shall not be used in a default argument of a
10991 member function. */
10992 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
10993 if (var)
10995 if (complain & tf_warning_or_error)
10997 if (DECL_NAME (var) == this_identifier)
10998 permerror (input_location, "default argument %qE uses %qD",
10999 arg, var);
11000 else
11001 error ("default argument %qE uses local variable %qD", arg, var);
11003 return error_mark_node;
11006 /* All is well. */
11007 return arg;
11010 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
11012 static tree
11013 type_is_deprecated (tree type)
11015 enum tree_code code;
11016 if (TREE_DEPRECATED (type))
11017 return type;
11018 if (TYPE_NAME (type)
11019 && TREE_DEPRECATED (TYPE_NAME (type)))
11020 return type;
11022 /* Do warn about using typedefs to a deprecated class. */
11023 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
11024 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
11026 code = TREE_CODE (type);
11028 if (code == POINTER_TYPE || code == REFERENCE_TYPE
11029 || code == OFFSET_TYPE || code == FUNCTION_TYPE
11030 || code == METHOD_TYPE || code == ARRAY_TYPE)
11031 return type_is_deprecated (TREE_TYPE (type));
11033 if (TYPE_PTRMEMFUNC_P (type))
11034 return type_is_deprecated
11035 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
11037 return NULL_TREE;
11040 /* Decode the list of parameter types for a function type.
11041 Given the list of things declared inside the parens,
11042 return a list of types.
11044 If this parameter does not end with an ellipsis, we append
11045 void_list_node.
11047 *PARMS is set to the chain of PARM_DECLs created. */
11049 static tree
11050 grokparms (tree parmlist, tree *parms)
11052 tree result = NULL_TREE;
11053 tree decls = NULL_TREE;
11054 tree parm;
11055 int any_error = 0;
11057 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
11059 tree type = NULL_TREE;
11060 tree init = TREE_PURPOSE (parm);
11061 tree decl = TREE_VALUE (parm);
11062 const char *errmsg;
11064 if (parm == void_list_node)
11065 break;
11067 if (! decl || TREE_TYPE (decl) == error_mark_node)
11068 continue;
11070 type = TREE_TYPE (decl);
11071 if (VOID_TYPE_P (type))
11073 if (same_type_p (type, void_type_node)
11074 && DECL_SELF_REFERENCE_P (type)
11075 && !DECL_NAME (decl) && !result && TREE_CHAIN (parm) == void_list_node)
11076 /* this is a parmlist of `(void)', which is ok. */
11077 break;
11078 cxx_incomplete_type_error (decl, type);
11079 /* It's not a good idea to actually create parameters of
11080 type `void'; other parts of the compiler assume that a
11081 void type terminates the parameter list. */
11082 type = error_mark_node;
11083 TREE_TYPE (decl) = error_mark_node;
11086 if (type != error_mark_node
11087 && TYPE_FOR_JAVA (type)
11088 && MAYBE_CLASS_TYPE_P (type))
11090 error ("parameter %qD has Java class type", decl);
11091 type = error_mark_node;
11092 TREE_TYPE (decl) = error_mark_node;
11093 init = NULL_TREE;
11096 if (type != error_mark_node
11097 && (errmsg = targetm.invalid_parameter_type (type)))
11099 error (errmsg);
11100 type = error_mark_node;
11101 TREE_TYPE (decl) = error_mark_node;
11104 if (type != error_mark_node)
11106 if (deprecated_state != DEPRECATED_SUPPRESS)
11108 tree deptype = type_is_deprecated (type);
11109 if (deptype)
11110 warn_deprecated_use (deptype, NULL_TREE);
11113 /* Top-level qualifiers on the parameters are
11114 ignored for function types. */
11115 type = cp_build_qualified_type (type, 0);
11116 if (TREE_CODE (type) == METHOD_TYPE)
11118 error ("parameter %qD invalidly declared method type", decl);
11119 type = build_pointer_type (type);
11120 TREE_TYPE (decl) = type;
11122 else if (abstract_virtuals_error (decl, type))
11123 any_error = 1; /* Seems like a good idea. */
11124 else if (POINTER_TYPE_P (type))
11126 /* [dcl.fct]/6, parameter types cannot contain pointers
11127 (references) to arrays of unknown bound. */
11128 tree t = TREE_TYPE (type);
11129 int ptr = TYPE_PTR_P (type);
11131 while (1)
11133 if (TYPE_PTR_P (t))
11134 ptr = 1;
11135 else if (TREE_CODE (t) != ARRAY_TYPE)
11136 break;
11137 else if (!TYPE_DOMAIN (t))
11138 break;
11139 t = TREE_TYPE (t);
11141 if (TREE_CODE (t) == ARRAY_TYPE)
11142 error (ptr
11143 ? G_("parameter %qD includes pointer to array of "
11144 "unknown bound %qT")
11145 : G_("parameter %qD includes reference to array of "
11146 "unknown bound %qT"),
11147 decl, t);
11150 if (any_error)
11151 init = NULL_TREE;
11152 else if (init && !processing_template_decl)
11153 init = check_default_argument (decl, init, tf_warning_or_error);
11156 DECL_CHAIN (decl) = decls;
11157 decls = decl;
11158 result = tree_cons (init, type, result);
11160 decls = nreverse (decls);
11161 result = nreverse (result);
11162 if (parm)
11163 result = chainon (result, void_list_node);
11164 *parms = decls;
11166 return result;
11170 /* D is a constructor or overloaded `operator='.
11172 Let T be the class in which D is declared. Then, this function
11173 returns:
11175 -1 if D's is an ill-formed constructor or copy assignment operator
11176 whose first parameter is of type `T'.
11177 0 if D is not a copy constructor or copy assignment
11178 operator.
11179 1 if D is a copy constructor or copy assignment operator whose
11180 first parameter is a reference to non-const qualified T.
11181 2 if D is a copy constructor or copy assignment operator whose
11182 first parameter is a reference to const qualified T.
11184 This function can be used as a predicate. Positive values indicate
11185 a copy constructor and nonzero values indicate a copy assignment
11186 operator. */
11189 copy_fn_p (const_tree d)
11191 tree args;
11192 tree arg_type;
11193 int result = 1;
11195 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11197 if (TREE_CODE (d) == TEMPLATE_DECL
11198 || (DECL_TEMPLATE_INFO (d)
11199 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11200 /* Instantiations of template member functions are never copy
11201 functions. Note that member functions of templated classes are
11202 represented as template functions internally, and we must
11203 accept those as copy functions. */
11204 return 0;
11206 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11207 if (!args)
11208 return 0;
11210 arg_type = TREE_VALUE (args);
11211 if (arg_type == error_mark_node)
11212 return 0;
11214 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
11216 /* Pass by value copy assignment operator. */
11217 result = -1;
11219 else if (TREE_CODE (arg_type) == REFERENCE_TYPE
11220 && !TYPE_REF_IS_RVALUE (arg_type)
11221 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
11223 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
11224 result = 2;
11226 else
11227 return 0;
11229 args = TREE_CHAIN (args);
11231 if (args && args != void_list_node && !TREE_PURPOSE (args))
11232 /* There are more non-optional args. */
11233 return 0;
11235 return result;
11238 /* D is a constructor or overloaded `operator='.
11240 Let T be the class in which D is declared. Then, this function
11241 returns true when D is a move constructor or move assignment
11242 operator, false otherwise. */
11244 bool
11245 move_fn_p (const_tree d)
11247 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11249 if (cxx_dialect == cxx98)
11250 /* There are no move constructors if we are in C++98 mode. */
11251 return false;
11253 if (TREE_CODE (d) == TEMPLATE_DECL
11254 || (DECL_TEMPLATE_INFO (d)
11255 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11256 /* Instantiations of template member functions are never move
11257 functions. Note that member functions of templated classes are
11258 represented as template functions internally, and we must
11259 accept those as move functions. */
11260 return 0;
11262 return move_signature_fn_p (d);
11265 /* D is a constructor or overloaded `operator='.
11267 Then, this function returns true when D has the same signature as a move
11268 constructor or move assignment operator (because either it is such a
11269 ctor/op= or it is a template specialization with the same signature),
11270 false otherwise. */
11272 bool
11273 move_signature_fn_p (const_tree d)
11275 tree args;
11276 tree arg_type;
11277 bool result = false;
11279 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11280 if (!args)
11281 return 0;
11283 arg_type = TREE_VALUE (args);
11284 if (arg_type == error_mark_node)
11285 return 0;
11287 if (TREE_CODE (arg_type) == REFERENCE_TYPE
11288 && TYPE_REF_IS_RVALUE (arg_type)
11289 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
11290 DECL_CONTEXT (d)))
11291 result = true;
11293 args = TREE_CHAIN (args);
11295 if (args && args != void_list_node && !TREE_PURPOSE (args))
11296 /* There are more non-optional args. */
11297 return false;
11299 return result;
11302 /* Remember any special properties of member function DECL. */
11304 void
11305 grok_special_member_properties (tree decl)
11307 tree class_type;
11309 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
11310 return;
11312 class_type = DECL_CONTEXT (decl);
11313 if (DECL_CONSTRUCTOR_P (decl))
11315 int ctor = copy_fn_p (decl);
11317 if (!DECL_ARTIFICIAL (decl))
11318 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
11320 if (ctor > 0)
11322 /* [class.copy]
11324 A non-template constructor for class X is a copy
11325 constructor if its first parameter is of type X&, const
11326 X&, volatile X& or const volatile X&, and either there
11327 are no other parameters or else all other parameters have
11328 default arguments. */
11329 TYPE_HAS_COPY_CTOR (class_type) = 1;
11330 if (user_provided_p (decl))
11331 TYPE_HAS_COMPLEX_COPY_CTOR (class_type) = 1;
11332 if (ctor > 1)
11333 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
11335 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
11337 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
11338 if (user_provided_p (decl))
11339 TYPE_HAS_COMPLEX_DFLT (class_type) = 1;
11341 else if (move_fn_p (decl) && user_provided_p (decl))
11342 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type) = 1;
11343 else if (is_list_ctor (decl))
11344 TYPE_HAS_LIST_CTOR (class_type) = 1;
11346 if (DECL_DECLARED_CONSTEXPR_P (decl)
11347 && !copy_fn_p (decl) && !move_fn_p (decl))
11348 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
11350 else if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
11352 /* [class.copy]
11354 A non-template assignment operator for class X is a copy
11355 assignment operator if its parameter is of type X, X&, const
11356 X&, volatile X& or const volatile X&. */
11358 int assop = copy_fn_p (decl);
11360 if (assop)
11362 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
11363 if (user_provided_p (decl))
11364 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type) = 1;
11365 if (assop != 1)
11366 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
11368 else if (move_fn_p (decl) && user_provided_p (decl))
11369 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type) = 1;
11371 /* Destructors are handled in check_methods. */
11374 /* Check a constructor DECL has the correct form. Complains
11375 if the class has a constructor of the form X(X). */
11378 grok_ctor_properties (const_tree ctype, const_tree decl)
11380 int ctor_parm = copy_fn_p (decl);
11382 if (ctor_parm < 0)
11384 /* [class.copy]
11386 A declaration of a constructor for a class X is ill-formed if
11387 its first parameter is of type (optionally cv-qualified) X
11388 and either there are no other parameters or else all other
11389 parameters have default arguments.
11391 We *don't* complain about member template instantiations that
11392 have this form, though; they can occur as we try to decide
11393 what constructor to use during overload resolution. Since
11394 overload resolution will never prefer such a constructor to
11395 the non-template copy constructor (which is either explicitly
11396 or implicitly defined), there's no need to worry about their
11397 existence. Theoretically, they should never even be
11398 instantiated, but that's hard to forestall. */
11399 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
11400 ctype, ctype);
11401 return 0;
11404 return 1;
11407 /* An operator with this code is unary, but can also be binary. */
11409 static int
11410 ambi_op_p (enum tree_code code)
11412 return (code == INDIRECT_REF
11413 || code == ADDR_EXPR
11414 || code == UNARY_PLUS_EXPR
11415 || code == NEGATE_EXPR
11416 || code == PREINCREMENT_EXPR
11417 || code == PREDECREMENT_EXPR);
11420 /* An operator with this name can only be unary. */
11422 static int
11423 unary_op_p (enum tree_code code)
11425 return (code == TRUTH_NOT_EXPR
11426 || code == BIT_NOT_EXPR
11427 || code == COMPONENT_REF
11428 || code == TYPE_EXPR);
11431 /* DECL is a declaration for an overloaded operator. If COMPLAIN is true,
11432 errors are issued for invalid declarations. */
11434 bool
11435 grok_op_properties (tree decl, bool complain)
11437 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
11438 tree argtype;
11439 int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
11440 tree name = DECL_NAME (decl);
11441 enum tree_code operator_code;
11442 int arity;
11443 bool ellipsis_p;
11444 tree class_type;
11446 /* Count the number of arguments and check for ellipsis. */
11447 for (argtype = argtypes, arity = 0;
11448 argtype && argtype != void_list_node;
11449 argtype = TREE_CHAIN (argtype))
11450 ++arity;
11451 ellipsis_p = !argtype;
11453 class_type = DECL_CONTEXT (decl);
11454 if (class_type && !CLASS_TYPE_P (class_type))
11455 class_type = NULL_TREE;
11457 if (DECL_CONV_FN_P (decl))
11458 operator_code = TYPE_EXPR;
11459 else
11462 #define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P) \
11463 if (ansi_opname (CODE) == name) \
11465 operator_code = (CODE); \
11466 break; \
11468 else if (ansi_assopname (CODE) == name) \
11470 operator_code = (CODE); \
11471 DECL_ASSIGNMENT_OPERATOR_P (decl) = 1; \
11472 break; \
11475 #include "operators.def"
11476 #undef DEF_OPERATOR
11478 gcc_unreachable ();
11480 while (0);
11481 gcc_assert (operator_code != MAX_TREE_CODES);
11482 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
11484 if (class_type)
11485 switch (operator_code)
11487 case NEW_EXPR:
11488 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
11489 break;
11491 case DELETE_EXPR:
11492 TYPE_GETS_DELETE (class_type) |= 1;
11493 break;
11495 case VEC_NEW_EXPR:
11496 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
11497 break;
11499 case VEC_DELETE_EXPR:
11500 TYPE_GETS_DELETE (class_type) |= 2;
11501 break;
11503 default:
11504 break;
11507 /* [basic.std.dynamic.allocation]/1:
11509 A program is ill-formed if an allocation function is declared
11510 in a namespace scope other than global scope or declared static
11511 in global scope.
11513 The same also holds true for deallocation functions. */
11514 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR
11515 || operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
11517 if (DECL_NAMESPACE_SCOPE_P (decl))
11519 if (CP_DECL_CONTEXT (decl) != global_namespace)
11521 error ("%qD may not be declared within a namespace", decl);
11522 return false;
11524 else if (!TREE_PUBLIC (decl))
11526 error ("%qD may not be declared as static", decl);
11527 return false;
11532 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR)
11534 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
11535 DECL_IS_OPERATOR_NEW (decl) = 1;
11537 else if (operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
11538 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
11539 else
11541 /* An operator function must either be a non-static member function
11542 or have at least one parameter of a class, a reference to a class,
11543 an enumeration, or a reference to an enumeration. 13.4.0.6 */
11544 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
11546 if (operator_code == TYPE_EXPR
11547 || operator_code == CALL_EXPR
11548 || operator_code == COMPONENT_REF
11549 || operator_code == ARRAY_REF
11550 || operator_code == NOP_EXPR)
11552 error ("%qD must be a nonstatic member function", decl);
11553 return false;
11555 else
11557 tree p;
11559 if (DECL_STATIC_FUNCTION_P (decl))
11561 error ("%qD must be either a non-static member "
11562 "function or a non-member function", decl);
11563 return false;
11566 for (p = argtypes; p && p != void_list_node; p = TREE_CHAIN (p))
11568 tree arg = non_reference (TREE_VALUE (p));
11569 if (arg == error_mark_node)
11570 return false;
11572 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
11573 because these checks are performed even on
11574 template functions. */
11575 if (MAYBE_CLASS_TYPE_P (arg)
11576 || TREE_CODE (arg) == ENUMERAL_TYPE)
11577 break;
11580 if (!p || p == void_list_node)
11582 if (complain)
11583 error ("%qD must have an argument of class or "
11584 "enumerated type", decl);
11585 return false;
11590 /* There are no restrictions on the arguments to an overloaded
11591 "operator ()". */
11592 if (operator_code == CALL_EXPR)
11593 return true;
11595 /* Warn about conversion operators that will never be used. */
11596 if (IDENTIFIER_TYPENAME_P (name)
11597 && ! DECL_TEMPLATE_INFO (decl)
11598 && warn_conversion
11599 /* Warn only declaring the function; there is no need to
11600 warn again about out-of-class definitions. */
11601 && class_type == current_class_type)
11603 tree t = TREE_TYPE (name);
11604 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
11606 if (ref)
11607 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
11609 if (VOID_TYPE_P (t))
11610 warning (OPT_Wconversion,
11612 ? G_("conversion to a reference to void "
11613 "will never use a type conversion operator")
11614 : G_("conversion to void "
11615 "will never use a type conversion operator"));
11616 else if (class_type)
11618 if (t == class_type)
11619 warning (OPT_Wconversion,
11621 ? G_("conversion to a reference to the same type "
11622 "will never use a type conversion operator")
11623 : G_("conversion to the same type "
11624 "will never use a type conversion operator"));
11625 /* Don't force t to be complete here. */
11626 else if (MAYBE_CLASS_TYPE_P (t)
11627 && COMPLETE_TYPE_P (t)
11628 && DERIVED_FROM_P (t, class_type))
11629 warning (OPT_Wconversion,
11631 ? G_("conversion to a reference to a base class "
11632 "will never use a type conversion operator")
11633 : G_("conversion to a base class "
11634 "will never use a type conversion operator"));
11639 if (operator_code == COND_EXPR)
11641 /* 13.4.0.3 */
11642 error ("ISO C++ prohibits overloading operator ?:");
11643 return false;
11645 else if (ellipsis_p)
11647 error ("%qD must not have variable number of arguments", decl);
11648 return false;
11650 else if (ambi_op_p (operator_code))
11652 if (arity == 1)
11653 /* We pick the one-argument operator codes by default, so
11654 we don't have to change anything. */
11656 else if (arity == 2)
11658 /* If we thought this was a unary operator, we now know
11659 it to be a binary operator. */
11660 switch (operator_code)
11662 case INDIRECT_REF:
11663 operator_code = MULT_EXPR;
11664 break;
11666 case ADDR_EXPR:
11667 operator_code = BIT_AND_EXPR;
11668 break;
11670 case UNARY_PLUS_EXPR:
11671 operator_code = PLUS_EXPR;
11672 break;
11674 case NEGATE_EXPR:
11675 operator_code = MINUS_EXPR;
11676 break;
11678 case PREINCREMENT_EXPR:
11679 operator_code = POSTINCREMENT_EXPR;
11680 break;
11682 case PREDECREMENT_EXPR:
11683 operator_code = POSTDECREMENT_EXPR;
11684 break;
11686 default:
11687 gcc_unreachable ();
11690 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
11692 if ((operator_code == POSTINCREMENT_EXPR
11693 || operator_code == POSTDECREMENT_EXPR)
11694 && ! processing_template_decl
11695 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)), integer_type_node))
11697 if (methodp)
11698 error ("postfix %qD must take %<int%> as its argument",
11699 decl);
11700 else
11701 error ("postfix %qD must take %<int%> as its second "
11702 "argument", decl);
11703 return false;
11706 else
11708 if (methodp)
11709 error ("%qD must take either zero or one argument", decl);
11710 else
11711 error ("%qD must take either one or two arguments", decl);
11712 return false;
11715 /* More Effective C++ rule 6. */
11716 if (warn_ecpp
11717 && (operator_code == POSTINCREMENT_EXPR
11718 || operator_code == POSTDECREMENT_EXPR
11719 || operator_code == PREINCREMENT_EXPR
11720 || operator_code == PREDECREMENT_EXPR))
11722 tree arg = TREE_VALUE (argtypes);
11723 tree ret = TREE_TYPE (TREE_TYPE (decl));
11724 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
11725 arg = TREE_TYPE (arg);
11726 arg = TYPE_MAIN_VARIANT (arg);
11727 if (operator_code == PREINCREMENT_EXPR
11728 || operator_code == PREDECREMENT_EXPR)
11730 if (TREE_CODE (ret) != REFERENCE_TYPE
11731 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)),
11732 arg))
11733 warning (OPT_Weffc__, "prefix %qD should return %qT", decl,
11734 build_reference_type (arg));
11736 else
11738 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
11739 warning (OPT_Weffc__, "postfix %qD should return %qT", decl, arg);
11743 else if (unary_op_p (operator_code))
11745 if (arity != 1)
11747 if (methodp)
11748 error ("%qD must take %<void%>", decl);
11749 else
11750 error ("%qD must take exactly one argument", decl);
11751 return false;
11754 else /* if (binary_op_p (operator_code)) */
11756 if (arity != 2)
11758 if (methodp)
11759 error ("%qD must take exactly one argument", decl);
11760 else
11761 error ("%qD must take exactly two arguments", decl);
11762 return false;
11765 /* More Effective C++ rule 7. */
11766 if (warn_ecpp
11767 && (operator_code == TRUTH_ANDIF_EXPR
11768 || operator_code == TRUTH_ORIF_EXPR
11769 || operator_code == COMPOUND_EXPR))
11770 warning (OPT_Weffc__, "user-defined %qD always evaluates both arguments",
11771 decl);
11774 /* Effective C++ rule 23. */
11775 if (warn_ecpp
11776 && arity == 2
11777 && !DECL_ASSIGNMENT_OPERATOR_P (decl)
11778 && (operator_code == PLUS_EXPR
11779 || operator_code == MINUS_EXPR
11780 || operator_code == TRUNC_DIV_EXPR
11781 || operator_code == MULT_EXPR
11782 || operator_code == TRUNC_MOD_EXPR)
11783 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
11784 warning (OPT_Weffc__, "%qD should return by value", decl);
11786 /* [over.oper]/8 */
11787 for (; argtypes && argtypes != void_list_node;
11788 argtypes = TREE_CHAIN (argtypes))
11789 if (TREE_PURPOSE (argtypes))
11791 TREE_PURPOSE (argtypes) = NULL_TREE;
11792 if (operator_code == POSTINCREMENT_EXPR
11793 || operator_code == POSTDECREMENT_EXPR)
11795 pedwarn (input_location, OPT_Wpedantic, "%qD cannot have default arguments",
11796 decl);
11798 else
11800 error ("%qD cannot have default arguments", decl);
11801 return false;
11805 return true;
11808 /* Return a string giving the keyword associate with CODE. */
11810 static const char *
11811 tag_name (enum tag_types code)
11813 switch (code)
11815 case record_type:
11816 return "struct";
11817 case class_type:
11818 return "class";
11819 case union_type:
11820 return "union";
11821 case enum_type:
11822 return "enum";
11823 case typename_type:
11824 return "typename";
11825 default:
11826 gcc_unreachable ();
11830 /* Name lookup in an elaborated-type-specifier (after the keyword
11831 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
11832 elaborated-type-specifier is invalid, issue a diagnostic and return
11833 error_mark_node; otherwise, return the *_TYPE to which it referred.
11834 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
11836 tree
11837 check_elaborated_type_specifier (enum tag_types tag_code,
11838 tree decl,
11839 bool allow_template_p)
11841 tree type;
11843 /* In the case of:
11845 struct S { struct S *p; };
11847 name lookup will find the TYPE_DECL for the implicit "S::S"
11848 typedef. Adjust for that here. */
11849 if (DECL_SELF_REFERENCE_P (decl))
11850 decl = TYPE_NAME (TREE_TYPE (decl));
11852 type = TREE_TYPE (decl);
11854 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
11855 is false for this case as well. */
11856 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
11858 error ("using template type parameter %qT after %qs",
11859 type, tag_name (tag_code));
11860 return error_mark_node;
11862 /* Accept template template parameters. */
11863 else if (allow_template_p
11864 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
11865 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
11867 /* [dcl.type.elab]
11869 If the identifier resolves to a typedef-name or the
11870 simple-template-id resolves to an alias template
11871 specialization, the elaborated-type-specifier is ill-formed.
11873 In other words, the only legitimate declaration to use in the
11874 elaborated type specifier is the implicit typedef created when
11875 the type is declared. */
11876 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
11877 && !DECL_SELF_REFERENCE_P (decl)
11878 && tag_code != typename_type)
11880 if (alias_template_specialization_p (type))
11881 error ("using alias template specialization %qT after %qs",
11882 type, tag_name (tag_code));
11883 else
11884 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
11885 inform (DECL_SOURCE_LOCATION (decl),
11886 "%qD has a previous declaration here", decl);
11887 return error_mark_node;
11889 else if (TREE_CODE (type) != RECORD_TYPE
11890 && TREE_CODE (type) != UNION_TYPE
11891 && tag_code != enum_type
11892 && tag_code != typename_type)
11894 error ("%qT referred to as %qs", type, tag_name (tag_code));
11895 inform (input_location, "%q+T has a previous declaration here", type);
11896 return error_mark_node;
11898 else if (TREE_CODE (type) != ENUMERAL_TYPE
11899 && tag_code == enum_type)
11901 error ("%qT referred to as enum", type);
11902 inform (input_location, "%q+T has a previous declaration here", type);
11903 return error_mark_node;
11905 else if (!allow_template_p
11906 && TREE_CODE (type) == RECORD_TYPE
11907 && CLASSTYPE_IS_TEMPLATE (type))
11909 /* If a class template appears as elaborated type specifier
11910 without a template header such as:
11912 template <class T> class C {};
11913 void f(class C); // No template header here
11915 then the required template argument is missing. */
11916 error ("template argument required for %<%s %T%>",
11917 tag_name (tag_code),
11918 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
11919 return error_mark_node;
11922 return type;
11925 /* Lookup NAME in elaborate type specifier in scope according to
11926 SCOPE and issue diagnostics if necessary.
11927 Return *_TYPE node upon success, NULL_TREE when the NAME is not
11928 found, and ERROR_MARK_NODE for type error. */
11930 static tree
11931 lookup_and_check_tag (enum tag_types tag_code, tree name,
11932 tag_scope scope, bool template_header_p)
11934 tree t;
11935 tree decl;
11936 if (scope == ts_global)
11938 /* First try ordinary name lookup, ignoring hidden class name
11939 injected via friend declaration. */
11940 decl = lookup_name_prefer_type (name, 2);
11941 /* If that fails, the name will be placed in the smallest
11942 non-class, non-function-prototype scope according to 3.3.1/5.
11943 We may already have a hidden name declared as friend in this
11944 scope. So lookup again but not ignoring hidden names.
11945 If we find one, that name will be made visible rather than
11946 creating a new tag. */
11947 if (!decl)
11948 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
11950 else
11951 decl = lookup_type_scope (name, scope);
11953 if (decl
11954 && (DECL_CLASS_TEMPLATE_P (decl)
11955 /* If scope is ts_current we're defining a class, so ignore a
11956 template template parameter. */
11957 || (scope != ts_current
11958 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
11959 decl = DECL_TEMPLATE_RESULT (decl);
11961 if (decl && TREE_CODE (decl) == TYPE_DECL)
11963 /* Look for invalid nested type:
11964 class C {
11965 class C {};
11966 }; */
11967 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
11969 error ("%qD has the same name as the class in which it is "
11970 "declared",
11971 decl);
11972 return error_mark_node;
11975 /* Two cases we need to consider when deciding if a class
11976 template is allowed as an elaborated type specifier:
11977 1. It is a self reference to its own class.
11978 2. It comes with a template header.
11980 For example:
11982 template <class T> class C {
11983 class C *c1; // DECL_SELF_REFERENCE_P is true
11984 class D;
11986 template <class U> class C; // template_header_p is true
11987 template <class T> class C<T>::D {
11988 class C *c2; // DECL_SELF_REFERENCE_P is true
11989 }; */
11991 t = check_elaborated_type_specifier (tag_code,
11992 decl,
11993 template_header_p
11994 | DECL_SELF_REFERENCE_P (decl));
11995 return t;
11997 else if (decl && TREE_CODE (decl) == TREE_LIST)
11999 error ("reference to %qD is ambiguous", name);
12000 print_candidates (decl);
12001 return error_mark_node;
12003 else
12004 return NULL_TREE;
12007 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
12008 Define the tag as a forward-reference if it is not defined.
12010 If a declaration is given, process it here, and report an error if
12011 multiple declarations are not identical.
12013 SCOPE is TS_CURRENT when this is also a definition. Only look in
12014 the current frame for the name (since C++ allows new names in any
12015 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
12016 declaration. Only look beginning from the current scope outward up
12017 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
12019 TEMPLATE_HEADER_P is true when this declaration is preceded by
12020 a set of template parameters. */
12022 static tree
12023 xref_tag_1 (enum tag_types tag_code, tree name,
12024 tag_scope orig_scope, bool template_header_p)
12026 enum tree_code code;
12027 tree t;
12028 tree context = NULL_TREE;
12029 tag_scope scope;
12031 gcc_assert (identifier_p (name));
12033 switch (tag_code)
12035 case record_type:
12036 case class_type:
12037 code = RECORD_TYPE;
12038 break;
12039 case union_type:
12040 code = UNION_TYPE;
12041 break;
12042 case enum_type:
12043 code = ENUMERAL_TYPE;
12044 break;
12045 default:
12046 gcc_unreachable ();
12049 if (orig_scope == ts_lambda)
12050 scope = ts_current;
12051 else
12052 scope = orig_scope;
12054 /* In case of anonymous name, xref_tag is only called to
12055 make type node and push name. Name lookup is not required. */
12056 if (ANON_AGGRNAME_P (name))
12057 t = NULL_TREE;
12058 else
12059 t = lookup_and_check_tag (tag_code, name,
12060 scope, template_header_p);
12062 if (t == error_mark_node)
12063 return error_mark_node;
12065 if (scope != ts_current && t && current_class_type
12066 && template_class_depth (current_class_type)
12067 && template_header_p)
12069 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
12070 return t;
12072 /* Since SCOPE is not TS_CURRENT, we are not looking at a
12073 definition of this tag. Since, in addition, we are currently
12074 processing a (member) template declaration of a template
12075 class, we must be very careful; consider:
12077 template <class X>
12078 struct S1
12080 template <class U>
12081 struct S2
12082 { template <class V>
12083 friend struct S1; };
12085 Here, the S2::S1 declaration should not be confused with the
12086 outer declaration. In particular, the inner version should
12087 have a template parameter of level 2, not level 1. This
12088 would be particularly important if the member declaration
12089 were instead:
12091 template <class V = U> friend struct S1;
12093 say, when we should tsubst into `U' when instantiating
12094 S2. On the other hand, when presented with:
12096 template <class T>
12097 struct S1 {
12098 template <class U>
12099 struct S2 {};
12100 template <class U>
12101 friend struct S2;
12104 we must find the inner binding eventually. We
12105 accomplish this by making sure that the new type we
12106 create to represent this declaration has the right
12107 TYPE_CONTEXT. */
12108 context = TYPE_CONTEXT (t);
12109 t = NULL_TREE;
12112 if (! t)
12114 /* If no such tag is yet defined, create a forward-reference node
12115 and record it as the "definition".
12116 When a real declaration of this type is found,
12117 the forward-reference will be altered into a real type. */
12118 if (code == ENUMERAL_TYPE)
12120 error ("use of enum %q#D without previous declaration", name);
12121 return error_mark_node;
12123 else
12125 t = make_class_type (code);
12126 TYPE_CONTEXT (t) = context;
12127 if (orig_scope == ts_lambda)
12128 /* Remember that we're declaring a lambda to avoid bogus errors
12129 in push_template_decl. */
12130 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
12131 t = pushtag (name, t, scope);
12134 else
12136 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
12138 if (!redeclare_class_template (t, current_template_parms))
12139 return error_mark_node;
12141 else if (!processing_template_decl
12142 && CLASS_TYPE_P (t)
12143 && CLASSTYPE_IS_TEMPLATE (t))
12145 error ("redeclaration of %qT as a non-template", t);
12146 error ("previous declaration %q+D", t);
12147 return error_mark_node;
12150 /* Make injected friend class visible. */
12151 if (scope != ts_within_enclosing_non_class
12152 && hidden_name_p (TYPE_NAME (t)))
12154 DECL_ANTICIPATED (TYPE_NAME (t)) = 0;
12155 DECL_FRIEND_P (TYPE_NAME (t)) = 0;
12157 if (TYPE_TEMPLATE_INFO (t))
12159 DECL_ANTICIPATED (TYPE_TI_TEMPLATE (t)) = 0;
12160 DECL_FRIEND_P (TYPE_TI_TEMPLATE (t)) = 0;
12165 return t;
12168 /* Wrapper for xref_tag_1. */
12170 tree
12171 xref_tag (enum tag_types tag_code, tree name,
12172 tag_scope scope, bool template_header_p)
12174 tree ret;
12175 bool subtime;
12176 subtime = timevar_cond_start (TV_NAME_LOOKUP);
12177 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
12178 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
12179 return ret;
12183 tree
12184 xref_tag_from_type (tree old, tree id, tag_scope scope)
12186 enum tag_types tag_kind;
12188 if (TREE_CODE (old) == RECORD_TYPE)
12189 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
12190 else
12191 tag_kind = union_type;
12193 if (id == NULL_TREE)
12194 id = TYPE_IDENTIFIER (old);
12196 return xref_tag (tag_kind, id, scope, false);
12199 /* Create the binfo hierarchy for REF with (possibly NULL) base list
12200 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
12201 access_* node, and the TREE_VALUE is the type of the base-class.
12202 Non-NULL TREE_TYPE indicates virtual inheritance.
12204 Returns true if the binfo hierarchy was successfully created,
12205 false if an error was detected. */
12207 bool
12208 xref_basetypes (tree ref, tree base_list)
12210 tree *basep;
12211 tree binfo, base_binfo;
12212 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
12213 unsigned max_bases = 0; /* Maximum direct bases. */
12214 int i;
12215 tree default_access;
12216 tree igo_prev; /* Track Inheritance Graph Order. */
12218 if (ref == error_mark_node)
12219 return false;
12221 /* The base of a derived class is private by default, all others are
12222 public. */
12223 default_access = (TREE_CODE (ref) == RECORD_TYPE
12224 && CLASSTYPE_DECLARED_CLASS (ref)
12225 ? access_private_node : access_public_node);
12227 /* First, make sure that any templates in base-classes are
12228 instantiated. This ensures that if we call ourselves recursively
12229 we do not get confused about which classes are marked and which
12230 are not. */
12231 basep = &base_list;
12232 while (*basep)
12234 tree basetype = TREE_VALUE (*basep);
12236 /* The dependent_type_p call below should really be dependent_scope_p
12237 so that we give a hard error about using an incomplete type as a
12238 base, but we allow it with a pedwarn for backward
12239 compatibility. */
12240 if (processing_template_decl
12241 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
12242 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
12243 if (!dependent_type_p (basetype)
12244 && !complete_type_or_else (basetype, NULL))
12245 /* An incomplete type. Remove it from the list. */
12246 *basep = TREE_CHAIN (*basep);
12247 else
12249 max_bases++;
12250 if (TREE_TYPE (*basep))
12251 max_vbases++;
12252 if (CLASS_TYPE_P (basetype))
12253 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
12254 basep = &TREE_CHAIN (*basep);
12258 TYPE_MARKED_P (ref) = 1;
12260 /* The binfo slot should be empty, unless this is an (ill-formed)
12261 redefinition. */
12262 if (TYPE_BINFO (ref) && !TYPE_SIZE (ref))
12264 error ("redefinition of %q#T", ref);
12265 return false;
12268 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
12270 binfo = make_tree_binfo (max_bases);
12272 TYPE_BINFO (ref) = binfo;
12273 BINFO_OFFSET (binfo) = size_zero_node;
12274 BINFO_TYPE (binfo) = ref;
12276 /* Apply base-class info set up to the variants of this type. */
12277 fixup_type_variants (ref);
12279 if (max_bases)
12281 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
12282 /* An aggregate cannot have baseclasses. */
12283 CLASSTYPE_NON_AGGREGATE (ref) = 1;
12285 if (TREE_CODE (ref) == UNION_TYPE)
12287 error ("derived union %qT invalid", ref);
12288 return false;
12292 if (max_bases > 1)
12294 if (TYPE_FOR_JAVA (ref))
12296 error ("Java class %qT cannot have multiple bases", ref);
12297 return false;
12301 if (max_vbases)
12303 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
12305 if (TYPE_FOR_JAVA (ref))
12307 error ("Java class %qT cannot have virtual bases", ref);
12308 return false;
12312 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
12314 tree access = TREE_PURPOSE (base_list);
12315 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
12316 tree basetype = TREE_VALUE (base_list);
12318 if (access == access_default_node)
12319 access = default_access;
12321 if (PACK_EXPANSION_P (basetype))
12322 basetype = PACK_EXPANSION_PATTERN (basetype);
12323 if (TREE_CODE (basetype) == TYPE_DECL)
12324 basetype = TREE_TYPE (basetype);
12325 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
12327 error ("base type %qT fails to be a struct or class type",
12328 basetype);
12329 return false;
12332 if (TYPE_FOR_JAVA (basetype) && (current_lang_depth () == 0))
12333 TYPE_FOR_JAVA (ref) = 1;
12335 base_binfo = NULL_TREE;
12336 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
12338 base_binfo = TYPE_BINFO (basetype);
12339 /* The original basetype could have been a typedef'd type. */
12340 basetype = BINFO_TYPE (base_binfo);
12342 /* Inherit flags from the base. */
12343 TYPE_HAS_NEW_OPERATOR (ref)
12344 |= TYPE_HAS_NEW_OPERATOR (basetype);
12345 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
12346 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
12347 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
12348 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
12349 CLASSTYPE_DIAMOND_SHAPED_P (ref)
12350 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
12351 CLASSTYPE_REPEATED_BASE_P (ref)
12352 |= CLASSTYPE_REPEATED_BASE_P (basetype);
12355 /* We must do this test after we've seen through a typedef
12356 type. */
12357 if (TYPE_MARKED_P (basetype))
12359 if (basetype == ref)
12360 error ("recursive type %qT undefined", basetype);
12361 else
12362 error ("duplicate base type %qT invalid", basetype);
12363 return false;
12366 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
12367 /* Regenerate the pack expansion for the bases. */
12368 basetype = make_pack_expansion (basetype);
12370 TYPE_MARKED_P (basetype) = 1;
12372 base_binfo = copy_binfo (base_binfo, basetype, ref,
12373 &igo_prev, via_virtual);
12374 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
12375 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
12377 BINFO_BASE_APPEND (binfo, base_binfo);
12378 BINFO_BASE_ACCESS_APPEND (binfo, access);
12381 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
12382 /* If we didn't get max_vbases vbases, we must have shared at
12383 least one of them, and are therefore diamond shaped. */
12384 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
12386 /* Unmark all the types. */
12387 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12388 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
12389 TYPE_MARKED_P (ref) = 0;
12391 /* Now see if we have a repeated base type. */
12392 if (!CLASSTYPE_REPEATED_BASE_P (ref))
12394 for (base_binfo = binfo; base_binfo;
12395 base_binfo = TREE_CHAIN (base_binfo))
12397 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
12399 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
12400 break;
12402 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
12404 for (base_binfo = binfo; base_binfo;
12405 base_binfo = TREE_CHAIN (base_binfo))
12406 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
12407 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
12408 else
12409 break;
12412 return true;
12416 /* Copies the enum-related properties from type SRC to type DST.
12417 Used with the underlying type of an enum and the enum itself. */
12418 static void
12419 copy_type_enum (tree dst, tree src)
12421 tree t;
12422 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
12424 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
12425 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
12426 TYPE_SIZE (t) = TYPE_SIZE (src);
12427 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
12428 SET_TYPE_MODE (dst, TYPE_MODE (src));
12429 TYPE_PRECISION (t) = TYPE_PRECISION (src);
12430 TYPE_ALIGN (t) = TYPE_ALIGN (src);
12431 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
12432 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
12436 /* Begin compiling the definition of an enumeration type.
12437 NAME is its name,
12439 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
12441 UNDERLYING_TYPE is the type that will be used as the storage for
12442 the enumeration type. This should be NULL_TREE if no storage type
12443 was specified.
12445 SCOPED_ENUM_P is true if this is a scoped enumeration type.
12447 if IS_NEW is not NULL, gets TRUE iff a new type is created.
12449 Returns the type object, as yet incomplete.
12450 Also records info about it so that build_enumerator
12451 may be used to declare the individual values as they are read. */
12453 tree
12454 start_enum (tree name, tree enumtype, tree underlying_type,
12455 bool scoped_enum_p, bool *is_new)
12457 tree prevtype = NULL_TREE;
12458 gcc_assert (identifier_p (name));
12460 if (is_new)
12461 *is_new = false;
12462 /* [C++0x dcl.enum]p5:
12464 If not explicitly specified, the underlying type of a scoped
12465 enumeration type is int. */
12466 if (!underlying_type && scoped_enum_p)
12467 underlying_type = integer_type_node;
12469 if (underlying_type)
12470 underlying_type = cv_unqualified (underlying_type);
12472 /* If this is the real definition for a previous forward reference,
12473 fill in the contents in the same object that used to be the
12474 forward reference. */
12475 if (!enumtype)
12476 enumtype = lookup_and_check_tag (enum_type, name,
12477 /*tag_scope=*/ts_current,
12478 /*template_header_p=*/false);
12480 /* In case of a template_decl, the only check that should be deferred
12481 to instantiation time is the comparison of underlying types. */
12482 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
12484 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
12486 error_at (input_location, "scoped/unscoped mismatch "
12487 "in enum %q#T", enumtype);
12488 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
12489 "previous definition here");
12490 enumtype = error_mark_node;
12492 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
12494 error_at (input_location, "underlying type mismatch "
12495 "in enum %q#T", enumtype);
12496 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
12497 "previous definition here");
12498 enumtype = error_mark_node;
12500 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
12501 && !dependent_type_p (underlying_type)
12502 && !dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))
12503 && !same_type_p (underlying_type,
12504 ENUM_UNDERLYING_TYPE (enumtype)))
12506 error_at (input_location, "different underlying type "
12507 "in enum %q#T", enumtype);
12508 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
12509 "previous definition here");
12510 underlying_type = NULL_TREE;
12514 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
12515 || processing_template_decl)
12517 /* In case of error, make a dummy enum to allow parsing to
12518 continue. */
12519 if (enumtype == error_mark_node)
12521 name = make_anon_name ();
12522 enumtype = NULL_TREE;
12525 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
12526 of an opaque enum, or an opaque enum of an already defined
12527 enumeration (C++0x only).
12528 In any other case, it'll be NULL_TREE. */
12529 if (!enumtype)
12531 if (is_new)
12532 *is_new = true;
12534 prevtype = enumtype;
12536 /* Do not push the decl more than once, unless we need to
12537 compare underlying types at instantiation time */
12538 if (!enumtype
12539 || TREE_CODE (enumtype) != ENUMERAL_TYPE
12540 || (underlying_type
12541 && dependent_type_p (underlying_type))
12542 || (ENUM_UNDERLYING_TYPE (enumtype)
12543 && dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))))
12545 enumtype = cxx_make_type (ENUMERAL_TYPE);
12546 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
12548 else
12549 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
12550 false);
12552 if (enumtype == error_mark_node)
12553 return error_mark_node;
12555 /* The enum is considered opaque until the opening '{' of the
12556 enumerator list. */
12557 SET_OPAQUE_ENUM_P (enumtype, true);
12558 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
12561 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
12563 if (underlying_type)
12565 if (CP_INTEGRAL_TYPE_P (underlying_type))
12567 copy_type_enum (enumtype, underlying_type);
12568 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
12570 else if (dependent_type_p (underlying_type))
12571 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
12572 else
12573 error ("underlying type %<%T%> of %<%T%> must be an integral type",
12574 underlying_type, enumtype);
12577 /* If into a template class, the returned enum is always the first
12578 declaration (opaque or not) seen. This way all the references to
12579 this type will be to the same declaration. The following ones are used
12580 only to check for definition errors. */
12581 if (prevtype && processing_template_decl)
12582 return prevtype;
12583 else
12584 return enumtype;
12587 /* After processing and defining all the values of an enumeration type,
12588 install their decls in the enumeration type.
12589 ENUMTYPE is the type object. */
12591 void
12592 finish_enum_value_list (tree enumtype)
12594 tree values;
12595 tree underlying_type;
12596 tree decl;
12597 tree value;
12598 tree minnode, maxnode;
12599 tree t;
12601 bool fixed_underlying_type_p
12602 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
12604 /* We built up the VALUES in reverse order. */
12605 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
12607 /* For an enum defined in a template, just set the type of the values;
12608 all further processing is postponed until the template is
12609 instantiated. We need to set the type so that tsubst of a CONST_DECL
12610 works. */
12611 if (processing_template_decl)
12613 for (values = TYPE_VALUES (enumtype);
12614 values;
12615 values = TREE_CHAIN (values))
12616 TREE_TYPE (TREE_VALUE (values)) = enumtype;
12617 return;
12620 /* Determine the minimum and maximum values of the enumerators. */
12621 if (TYPE_VALUES (enumtype))
12623 minnode = maxnode = NULL_TREE;
12625 for (values = TYPE_VALUES (enumtype);
12626 values;
12627 values = TREE_CHAIN (values))
12629 decl = TREE_VALUE (values);
12631 /* [dcl.enum]: Following the closing brace of an enum-specifier,
12632 each enumerator has the type of its enumeration. Prior to the
12633 closing brace, the type of each enumerator is the type of its
12634 initializing value. */
12635 TREE_TYPE (decl) = enumtype;
12637 /* Update the minimum and maximum values, if appropriate. */
12638 value = DECL_INITIAL (decl);
12639 if (value == error_mark_node)
12640 value = integer_zero_node;
12641 /* Figure out what the minimum and maximum values of the
12642 enumerators are. */
12643 if (!minnode)
12644 minnode = maxnode = value;
12645 else if (tree_int_cst_lt (maxnode, value))
12646 maxnode = value;
12647 else if (tree_int_cst_lt (value, minnode))
12648 minnode = value;
12651 else
12652 /* [dcl.enum]
12654 If the enumerator-list is empty, the underlying type is as if
12655 the enumeration had a single enumerator with value 0. */
12656 minnode = maxnode = integer_zero_node;
12658 if (!fixed_underlying_type_p)
12660 /* Compute the number of bits require to represent all values of the
12661 enumeration. We must do this before the type of MINNODE and
12662 MAXNODE are transformed, since tree_int_cst_min_precision relies
12663 on the TREE_TYPE of the value it is passed. */
12664 bool unsignedp = tree_int_cst_sgn (minnode) >= 0;
12665 int lowprec = tree_int_cst_min_precision (minnode, unsignedp);
12666 int highprec = tree_int_cst_min_precision (maxnode, unsignedp);
12667 int precision = MAX (lowprec, highprec);
12668 unsigned int itk;
12669 bool use_short_enum;
12671 /* Determine the underlying type of the enumeration.
12673 [dcl.enum]
12675 The underlying type of an enumeration is an integral type that
12676 can represent all the enumerator values defined in the
12677 enumeration. It is implementation-defined which integral type is
12678 used as the underlying type for an enumeration except that the
12679 underlying type shall not be larger than int unless the value of
12680 an enumerator cannot fit in an int or unsigned int.
12682 We use "int" or an "unsigned int" as the underlying type, even if
12683 a smaller integral type would work, unless the user has
12684 explicitly requested that we use the smallest possible type. The
12685 user can request that for all enumerations with a command line
12686 flag, or for just one enumeration with an attribute. */
12688 use_short_enum = flag_short_enums
12689 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
12691 for (itk = (use_short_enum ? itk_char : itk_int);
12692 itk != itk_none;
12693 itk++)
12695 underlying_type = integer_types[itk];
12696 if (underlying_type != NULL_TREE
12697 && TYPE_PRECISION (underlying_type) >= precision
12698 && TYPE_UNSIGNED (underlying_type) == unsignedp)
12699 break;
12701 if (itk == itk_none)
12703 /* DR 377
12705 IF no integral type can represent all the enumerator values, the
12706 enumeration is ill-formed. */
12707 error ("no integral type can represent all of the enumerator values "
12708 "for %qT", enumtype);
12709 precision = TYPE_PRECISION (long_long_integer_type_node);
12710 underlying_type = integer_types[itk_unsigned_long_long];
12713 /* [dcl.enum]
12715 The value of sizeof() applied to an enumeration type, an object
12716 of an enumeration type, or an enumerator, is the value of sizeof()
12717 applied to the underlying type. */
12718 copy_type_enum (enumtype, underlying_type);
12720 /* Compute the minimum and maximum values for the type.
12722 [dcl.enum]
12724 For an enumeration where emin is the smallest enumerator and emax
12725 is the largest, the values of the enumeration are the values of the
12726 underlying type in the range bmin to bmax, where bmin and bmax are,
12727 respectively, the smallest and largest values of the smallest bit-
12728 field that can store emin and emax. */
12730 /* The middle-end currently assumes that types with TYPE_PRECISION
12731 narrower than their underlying type are suitably zero or sign
12732 extended to fill their mode. Similarly, it assumes that the front
12733 end assures that a value of a particular type must be within
12734 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
12736 We used to set these fields based on bmin and bmax, but that led
12737 to invalid assumptions like optimizing away bounds checking. So
12738 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
12739 TYPE_MAX_VALUE to the values for the mode above and only restrict
12740 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
12741 ENUM_UNDERLYING_TYPE (enumtype)
12742 = build_distinct_type_copy (underlying_type);
12743 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
12744 set_min_and_max_values_for_integral_type
12745 (ENUM_UNDERLYING_TYPE (enumtype), precision, unsignedp);
12747 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
12748 if (flag_strict_enums)
12749 set_min_and_max_values_for_integral_type (enumtype, precision,
12750 unsignedp);
12752 else
12753 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
12755 /* Convert each of the enumerators to the type of the underlying
12756 type of the enumeration. */
12757 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
12759 location_t saved_location;
12761 decl = TREE_VALUE (values);
12762 saved_location = input_location;
12763 input_location = DECL_SOURCE_LOCATION (decl);
12764 if (fixed_underlying_type_p)
12765 /* If the enumeration type has a fixed underlying type, we
12766 already checked all of the enumerator values. */
12767 value = DECL_INITIAL (decl);
12768 else
12769 value = perform_implicit_conversion (underlying_type,
12770 DECL_INITIAL (decl),
12771 tf_warning_or_error);
12772 input_location = saved_location;
12774 /* Do not clobber shared ints. */
12775 value = copy_node (value);
12777 TREE_TYPE (value) = enumtype;
12778 DECL_INITIAL (decl) = value;
12781 /* Fix up all variant types of this enum type. */
12782 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
12783 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
12785 if (at_class_scope_p ()
12786 && COMPLETE_TYPE_P (current_class_type)
12787 && UNSCOPED_ENUM_P (enumtype))
12788 insert_late_enum_def_into_classtype_sorted_fields (enumtype,
12789 current_class_type);
12791 /* Finish debugging output for this type. */
12792 rest_of_type_compilation (enumtype, namespace_bindings_p ());
12795 /* Finishes the enum type. This is called only the first time an
12796 enumeration is seen, be it opaque or odinary.
12797 ENUMTYPE is the type object. */
12799 void
12800 finish_enum (tree enumtype)
12802 if (processing_template_decl)
12804 if (at_function_scope_p ())
12805 add_stmt (build_min (TAG_DEFN, enumtype));
12806 return;
12809 /* If this is a forward declaration, there should not be any variants,
12810 though we can get a variant in the middle of an enum-specifier with
12811 wacky code like 'enum E { e = sizeof(const E*) };' */
12812 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
12813 && (TYPE_VALUES (enumtype)
12814 || !TYPE_NEXT_VARIANT (enumtype)));
12817 /* Build and install a CONST_DECL for an enumeration constant of the
12818 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
12819 LOC is the location of NAME.
12820 Assignment of sequential values by default is handled here. */
12822 void
12823 build_enumerator (tree name, tree value, tree enumtype, location_t loc)
12825 tree decl;
12826 tree context;
12827 tree type;
12829 /* If the VALUE was erroneous, pretend it wasn't there; that will
12830 result in the enum being assigned the next value in sequence. */
12831 if (value == error_mark_node)
12832 value = NULL_TREE;
12834 /* Remove no-op casts from the value. */
12835 if (value)
12836 STRIP_TYPE_NOPS (value);
12838 if (! processing_template_decl)
12840 /* Validate and default VALUE. */
12841 if (value != NULL_TREE)
12843 value = cxx_constant_value (value);
12845 if (TREE_CODE (value) != INTEGER_CST
12846 || ! INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (value)))
12848 error ("enumerator value for %qD is not an integer constant",
12849 name);
12850 value = NULL_TREE;
12854 /* Default based on previous value. */
12855 if (value == NULL_TREE)
12857 if (TYPE_VALUES (enumtype))
12859 tree prev_value;
12860 bool overflowed;
12862 /* C++03 7.2/4: If no initializer is specified for the first
12863 enumerator, the type is an unspecified integral
12864 type. Otherwise the type is the same as the type of the
12865 initializing value of the preceding enumerator unless the
12866 incremented value is not representable in that type, in
12867 which case the type is an unspecified integral type
12868 sufficient to contain the incremented value. */
12869 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
12870 if (error_operand_p (prev_value))
12871 value = error_mark_node;
12872 else
12874 double_int di = TREE_INT_CST (prev_value)
12875 .add_with_sign (double_int_one,
12876 false, &overflowed);
12877 if (!overflowed)
12879 tree type = TREE_TYPE (prev_value);
12880 bool pos = TYPE_UNSIGNED (type) || !di.is_negative ();
12881 if (!double_int_fits_to_tree_p (type, di))
12883 unsigned int itk;
12884 for (itk = itk_int; itk != itk_none; itk++)
12886 type = integer_types[itk];
12887 if (type != NULL_TREE
12888 && (pos || !TYPE_UNSIGNED (type))
12889 && double_int_fits_to_tree_p (type, di))
12890 break;
12892 if (type && cxx_dialect < cxx11
12893 && itk > itk_unsigned_long)
12894 pedwarn (input_location, OPT_Wlong_long, pos ? "\
12895 incremented enumerator value is too large for %<unsigned long%>" : "\
12896 incremented enumerator value is too large for %<long%>");
12898 if (type == NULL_TREE)
12899 overflowed = true;
12900 else
12901 value = double_int_to_tree (type, di);
12904 if (overflowed)
12906 error ("overflow in enumeration values at %qD", name);
12907 value = error_mark_node;
12911 else
12912 value = integer_zero_node;
12915 /* Remove no-op casts from the value. */
12916 STRIP_TYPE_NOPS (value);
12918 /* If the underlying type of the enum is fixed, check whether
12919 the enumerator values fits in the underlying type. If it
12920 does not fit, the program is ill-formed [C++0x dcl.enum]. */
12921 if (ENUM_UNDERLYING_TYPE (enumtype)
12922 && value
12923 && TREE_CODE (value) == INTEGER_CST)
12925 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
12926 error ("enumerator value %E is outside the range of underlying "
12927 "type %<%T%>", value, ENUM_UNDERLYING_TYPE (enumtype));
12929 /* Convert the value to the appropriate type. */
12930 value = convert (ENUM_UNDERLYING_TYPE (enumtype), value);
12934 /* C++ associates enums with global, function, or class declarations. */
12935 context = current_scope ();
12937 /* Build the actual enumeration constant. Note that the enumeration
12938 constants have the underlying type of the enum (if it is fixed)
12939 or the type of their initializer (if the underlying type of the
12940 enum is not fixed):
12942 [ C++0x dcl.enum ]
12944 If the underlying type is fixed, the type of each enumerator
12945 prior to the closing brace is the underlying type; if the
12946 initializing value of an enumerator cannot be represented by
12947 the underlying type, the program is ill-formed. If the
12948 underlying type is not fixed, the type of each enumerator is
12949 the type of its initializing value.
12951 If the underlying type is not fixed, it will be computed by
12952 finish_enum and we will reset the type of this enumerator. Of
12953 course, if we're processing a template, there may be no value. */
12954 type = value ? TREE_TYPE (value) : NULL_TREE;
12956 decl = build_decl (loc, CONST_DECL, name, type);
12958 DECL_CONTEXT (decl) = enumtype;
12959 TREE_CONSTANT (decl) = 1;
12960 TREE_READONLY (decl) = 1;
12961 DECL_INITIAL (decl) = value;
12963 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
12964 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
12965 on the TYPE_FIELDS list for `S'. (That's so that you can say
12966 things like `S::i' later.) */
12967 finish_member_declaration (decl);
12968 else
12969 pushdecl (decl);
12971 /* Add this enumeration constant to the list for this type. */
12972 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
12975 /* Look for an enumerator with the given NAME within the enumeration
12976 type ENUMTYPE. This routine is used primarily for qualified name
12977 lookup into an enumerator in C++0x, e.g.,
12979 enum class Color { Red, Green, Blue };
12981 Color color = Color::Red;
12983 Returns the value corresponding to the enumerator, or
12984 NULL_TREE if no such enumerator was found. */
12985 tree
12986 lookup_enumerator (tree enumtype, tree name)
12988 tree e;
12989 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
12991 e = purpose_member (name, TYPE_VALUES (enumtype));
12992 return e? TREE_VALUE (e) : NULL_TREE;
12996 /* We're defining DECL. Make sure that its type is OK. */
12998 static void
12999 check_function_type (tree decl, tree current_function_parms)
13001 tree fntype = TREE_TYPE (decl);
13002 tree return_type = complete_type (TREE_TYPE (fntype));
13004 /* In a function definition, arg types must be complete. */
13005 require_complete_types_for_parms (current_function_parms);
13007 if (dependent_type_p (return_type)
13008 || type_uses_auto (return_type))
13009 return;
13010 if (!COMPLETE_OR_VOID_TYPE_P (return_type)
13011 || (TYPE_FOR_JAVA (return_type) && MAYBE_CLASS_TYPE_P (return_type)))
13013 tree args = TYPE_ARG_TYPES (fntype);
13015 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
13016 error ("return type %q#T is incomplete", return_type);
13017 else
13018 error ("return type has Java class type %q#T", return_type);
13020 /* Make it return void instead. */
13021 if (TREE_CODE (fntype) == METHOD_TYPE)
13022 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
13023 void_type_node,
13024 TREE_CHAIN (args));
13025 else
13026 fntype = build_function_type (void_type_node, args);
13027 fntype
13028 = build_exception_variant (fntype,
13029 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)));
13030 fntype = (cp_build_type_attribute_variant
13031 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
13032 TREE_TYPE (decl) = fntype;
13034 else
13035 abstract_virtuals_error (decl, TREE_TYPE (fntype));
13038 /* Create the FUNCTION_DECL for a function definition.
13039 DECLSPECS and DECLARATOR are the parts of the declaration;
13040 they describe the function's name and the type it returns,
13041 but twisted together in a fashion that parallels the syntax of C.
13043 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
13044 DECLARATOR is really the DECL for the function we are about to
13045 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
13046 indicating that the function is an inline defined in-class.
13048 This function creates a binding context for the function body
13049 as well as setting up the FUNCTION_DECL in current_function_decl.
13051 For C++, we must first check whether that datum makes any sense.
13052 For example, "class A local_a(1,2);" means that variable local_a
13053 is an aggregate of type A, which should have a constructor
13054 applied to it with the argument list [1, 2].
13056 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
13057 or may be a BLOCK if the function has been defined previously
13058 in this translation unit. On exit, DECL_INITIAL (decl1) will be
13059 error_mark_node if the function has never been defined, or
13060 a BLOCK if the function has been defined somewhere. */
13062 bool
13063 start_preparsed_function (tree decl1, tree attrs, int flags)
13065 tree ctype = NULL_TREE;
13066 tree fntype;
13067 tree restype;
13068 int doing_friend = 0;
13069 cp_binding_level *bl;
13070 tree current_function_parms;
13071 struct c_fileinfo *finfo
13072 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
13073 bool honor_interface;
13075 /* Sanity check. */
13076 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
13077 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
13079 fntype = TREE_TYPE (decl1);
13080 if (TREE_CODE (fntype) == METHOD_TYPE)
13081 ctype = TYPE_METHOD_BASETYPE (fntype);
13083 /* ISO C++ 11.4/5. A friend function defined in a class is in
13084 the (lexical) scope of the class in which it is defined. */
13085 if (!ctype && DECL_FRIEND_P (decl1))
13087 ctype = DECL_FRIEND_CONTEXT (decl1);
13089 /* CTYPE could be null here if we're dealing with a template;
13090 for example, `inline friend float foo()' inside a template
13091 will have no CTYPE set. */
13092 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
13093 ctype = NULL_TREE;
13094 else
13095 doing_friend = 1;
13098 if (DECL_DECLARED_INLINE_P (decl1)
13099 && lookup_attribute ("noinline", attrs))
13100 warning (0, "inline function %q+D given attribute noinline", decl1);
13102 /* Handle gnu_inline attribute. */
13103 if (GNU_INLINE_P (decl1))
13105 DECL_EXTERNAL (decl1) = 1;
13106 DECL_NOT_REALLY_EXTERN (decl1) = 0;
13107 DECL_INTERFACE_KNOWN (decl1) = 1;
13108 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
13111 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
13112 /* This is a constructor, we must ensure that any default args
13113 introduced by this definition are propagated to the clones
13114 now. The clones are used directly in overload resolution. */
13115 adjust_clone_args (decl1);
13117 /* Sometimes we don't notice that a function is a static member, and
13118 build a METHOD_TYPE for it. Fix that up now. */
13119 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
13120 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
13122 /* Set up current_class_type, and enter the scope of the class, if
13123 appropriate. */
13124 if (ctype)
13125 push_nested_class (ctype);
13126 else if (DECL_STATIC_FUNCTION_P (decl1))
13127 push_nested_class (DECL_CONTEXT (decl1));
13129 /* Now that we have entered the scope of the class, we must restore
13130 the bindings for any template parameters surrounding DECL1, if it
13131 is an inline member template. (Order is important; consider the
13132 case where a template parameter has the same name as a field of
13133 the class.) It is not until after this point that
13134 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
13135 if (flags & SF_INCLASS_INLINE)
13136 maybe_begin_member_template_processing (decl1);
13138 /* Effective C++ rule 15. */
13139 if (warn_ecpp
13140 && DECL_OVERLOADED_OPERATOR_P (decl1) == NOP_EXPR
13141 && VOID_TYPE_P (TREE_TYPE (fntype)))
13142 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
13144 /* Make the init_value nonzero so pushdecl knows this is not tentative.
13145 error_mark_node is replaced below (in poplevel) with the BLOCK. */
13146 if (!DECL_INITIAL (decl1))
13147 DECL_INITIAL (decl1) = error_mark_node;
13149 /* This function exists in static storage.
13150 (This does not mean `static' in the C sense!) */
13151 TREE_STATIC (decl1) = 1;
13153 /* We must call push_template_decl after current_class_type is set
13154 up. (If we are processing inline definitions after exiting a
13155 class scope, current_class_type will be NULL_TREE until set above
13156 by push_nested_class.) */
13157 if (processing_template_decl)
13159 tree newdecl1 = push_template_decl (decl1);
13160 if (newdecl1 == error_mark_node)
13162 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
13163 pop_nested_class ();
13164 return false;
13166 decl1 = newdecl1;
13169 /* We are now in the scope of the function being defined. */
13170 current_function_decl = decl1;
13172 /* Save the parm names or decls from this function's declarator
13173 where store_parm_decls will find them. */
13174 current_function_parms = DECL_ARGUMENTS (decl1);
13176 /* Make sure the parameter and return types are reasonable. When
13177 you declare a function, these types can be incomplete, but they
13178 must be complete when you define the function. */
13179 check_function_type (decl1, current_function_parms);
13181 /* Build the return declaration for the function. */
13182 restype = TREE_TYPE (fntype);
13184 if (DECL_RESULT (decl1) == NULL_TREE)
13186 tree resdecl;
13188 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
13189 DECL_ARTIFICIAL (resdecl) = 1;
13190 DECL_IGNORED_P (resdecl) = 1;
13191 DECL_RESULT (decl1) = resdecl;
13193 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
13196 /* Let the user know we're compiling this function. */
13197 announce_function (decl1);
13199 /* Record the decl so that the function name is defined.
13200 If we already have a decl for this name, and it is a FUNCTION_DECL,
13201 use the old decl. */
13202 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
13204 /* A specialization is not used to guide overload resolution. */
13205 if (!DECL_FUNCTION_MEMBER_P (decl1)
13206 && !(DECL_USE_TEMPLATE (decl1) &&
13207 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
13209 tree olddecl = pushdecl (decl1);
13211 if (olddecl == error_mark_node)
13212 /* If something went wrong when registering the declaration,
13213 use DECL1; we have to have a FUNCTION_DECL to use when
13214 parsing the body of the function. */
13216 else
13218 /* Otherwise, OLDDECL is either a previous declaration
13219 of the same function or DECL1 itself. */
13221 if (warn_missing_declarations
13222 && olddecl == decl1
13223 && !DECL_MAIN_P (decl1)
13224 && TREE_PUBLIC (decl1)
13225 && !DECL_DECLARED_INLINE_P (decl1))
13227 tree context;
13229 /* Check whether DECL1 is in an anonymous
13230 namespace. */
13231 for (context = DECL_CONTEXT (decl1);
13232 context;
13233 context = DECL_CONTEXT (context))
13235 if (TREE_CODE (context) == NAMESPACE_DECL
13236 && DECL_NAME (context) == NULL_TREE)
13237 break;
13240 if (context == NULL)
13241 warning (OPT_Wmissing_declarations,
13242 "no previous declaration for %q+D", decl1);
13245 decl1 = olddecl;
13248 else
13250 /* We need to set the DECL_CONTEXT. */
13251 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
13252 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
13254 fntype = TREE_TYPE (decl1);
13255 restype = TREE_TYPE (fntype);
13257 /* If #pragma weak applies, mark the decl appropriately now.
13258 The pragma only applies to global functions. Because
13259 determining whether or not the #pragma applies involves
13260 computing the mangled name for the declaration, we cannot
13261 apply the pragma until after we have merged this declaration
13262 with any previous declarations; if the original declaration
13263 has a linkage specification, that specification applies to
13264 the definition as well, and may affect the mangled name. */
13265 if (DECL_FILE_SCOPE_P (decl1))
13266 maybe_apply_pragma_weak (decl1);
13269 /* Reset this in case the call to pushdecl changed it. */
13270 current_function_decl = decl1;
13272 gcc_assert (DECL_INITIAL (decl1));
13274 /* This function may already have been parsed, in which case just
13275 return; our caller will skip over the body without parsing. */
13276 if (DECL_INITIAL (decl1) != error_mark_node)
13277 return true;
13279 /* Initialize RTL machinery. We cannot do this until
13280 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
13281 even when processing a template; this is how we get
13282 CFUN set up, and our per-function variables initialized.
13283 FIXME factor out the non-RTL stuff. */
13284 bl = current_binding_level;
13285 allocate_struct_function (decl1, processing_template_decl);
13287 /* Initialize the language data structures. Whenever we start
13288 a new function, we destroy temporaries in the usual way. */
13289 cfun->language = ggc_alloc_cleared_language_function ();
13290 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
13291 current_binding_level = bl;
13293 if (!processing_template_decl && type_uses_auto (restype))
13295 FNDECL_USED_AUTO (decl1) = true;
13296 current_function_auto_return_pattern = restype;
13299 /* Start the statement-tree, start the tree now. */
13300 DECL_SAVED_TREE (decl1) = push_stmt_list ();
13302 /* If we are (erroneously) defining a function that we have already
13303 defined before, wipe out what we knew before. */
13304 if (!DECL_PENDING_INLINE_P (decl1))
13305 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
13307 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
13309 /* We know that this was set up by `grokclassfn'. We do not
13310 wait until `store_parm_decls', since evil parse errors may
13311 never get us to that point. Here we keep the consistency
13312 between `current_class_type' and `current_class_ptr'. */
13313 tree t = DECL_ARGUMENTS (decl1);
13315 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
13316 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
13318 cp_function_chain->x_current_class_ref
13319 = cp_build_indirect_ref (t, RO_NULL, tf_warning_or_error);
13320 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
13321 cp_function_chain->x_current_class_ptr = t;
13323 /* Constructors and destructors need to know whether they're "in
13324 charge" of initializing virtual base classes. */
13325 t = DECL_CHAIN (t);
13326 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
13328 current_in_charge_parm = t;
13329 t = DECL_CHAIN (t);
13331 if (DECL_HAS_VTT_PARM_P (decl1))
13333 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
13334 current_vtt_parm = t;
13338 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
13339 /* Implicitly-defined methods (like the
13340 destructor for a class in which no destructor
13341 is explicitly declared) must not be defined
13342 until their definition is needed. So, we
13343 ignore interface specifications for
13344 compiler-generated functions. */
13345 && !DECL_ARTIFICIAL (decl1));
13347 if (processing_template_decl)
13348 /* Don't mess with interface flags. */;
13349 else if (DECL_INTERFACE_KNOWN (decl1))
13351 tree ctx = decl_function_context (decl1);
13353 if (DECL_NOT_REALLY_EXTERN (decl1))
13354 DECL_EXTERNAL (decl1) = 0;
13356 if (ctx != NULL_TREE && vague_linkage_p (ctx))
13357 /* This is a function in a local class in an extern inline
13358 or template function. */
13359 comdat_linkage (decl1);
13361 /* If this function belongs to an interface, it is public.
13362 If it belongs to someone else's interface, it is also external.
13363 This only affects inlines and template instantiations. */
13364 else if (!finfo->interface_unknown && honor_interface)
13366 if (DECL_DECLARED_INLINE_P (decl1)
13367 || DECL_TEMPLATE_INSTANTIATION (decl1))
13369 DECL_EXTERNAL (decl1)
13370 = (finfo->interface_only
13371 || (DECL_DECLARED_INLINE_P (decl1)
13372 && ! flag_implement_inlines
13373 && !DECL_VINDEX (decl1)));
13375 /* For WIN32 we also want to put these in linkonce sections. */
13376 maybe_make_one_only (decl1);
13378 else
13379 DECL_EXTERNAL (decl1) = 0;
13380 DECL_INTERFACE_KNOWN (decl1) = 1;
13381 /* If this function is in an interface implemented in this file,
13382 make sure that the back end knows to emit this function
13383 here. */
13384 if (!DECL_EXTERNAL (decl1))
13385 mark_needed (decl1);
13387 else if (finfo->interface_unknown && finfo->interface_only
13388 && honor_interface)
13390 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
13391 interface, we will have both finfo->interface_unknown and
13392 finfo->interface_only set. In that case, we don't want to
13393 use the normal heuristics because someone will supply a
13394 #pragma implementation elsewhere, and deducing it here would
13395 produce a conflict. */
13396 comdat_linkage (decl1);
13397 DECL_EXTERNAL (decl1) = 0;
13398 DECL_INTERFACE_KNOWN (decl1) = 1;
13399 DECL_DEFER_OUTPUT (decl1) = 1;
13401 else
13403 /* This is a definition, not a reference.
13404 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
13405 if (!GNU_INLINE_P (decl1))
13406 DECL_EXTERNAL (decl1) = 0;
13408 if ((DECL_DECLARED_INLINE_P (decl1)
13409 || DECL_TEMPLATE_INSTANTIATION (decl1))
13410 && ! DECL_INTERFACE_KNOWN (decl1))
13411 DECL_DEFER_OUTPUT (decl1) = 1;
13412 else
13413 DECL_INTERFACE_KNOWN (decl1) = 1;
13416 /* Determine the ELF visibility attribute for the function. We must not
13417 do this before calling "pushdecl", as we must allow "duplicate_decls"
13418 to merge any attributes appropriately. We also need to wait until
13419 linkage is set. */
13420 if (!DECL_CLONED_FUNCTION_P (decl1))
13421 determine_visibility (decl1);
13423 begin_scope (sk_function_parms, decl1);
13425 ++function_depth;
13427 if (DECL_DESTRUCTOR_P (decl1)
13428 || (DECL_CONSTRUCTOR_P (decl1)
13429 && targetm.cxx.cdtor_returns_this ()))
13431 cdtor_label = build_decl (input_location,
13432 LABEL_DECL, NULL_TREE, NULL_TREE);
13433 DECL_CONTEXT (cdtor_label) = current_function_decl;
13436 start_fname_decls ();
13438 store_parm_decls (current_function_parms);
13440 return true;
13444 /* Like start_preparsed_function, except that instead of a
13445 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
13447 Returns true on success. If the DECLARATOR is not suitable
13448 for a function, we return false, which tells the parser to
13449 skip the entire function. */
13451 bool
13452 start_function (cp_decl_specifier_seq *declspecs,
13453 const cp_declarator *declarator,
13454 tree attrs)
13456 tree decl1;
13458 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
13459 if (decl1 == error_mark_node)
13460 return false;
13461 /* If the declarator is not suitable for a function definition,
13462 cause a syntax error. */
13463 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
13465 error ("invalid function declaration");
13466 return false;
13469 if (DECL_MAIN_P (decl1))
13470 /* main must return int. grokfndecl should have corrected it
13471 (and issued a diagnostic) if the user got it wrong. */
13472 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
13473 integer_type_node));
13475 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
13478 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
13479 FN. */
13481 static bool
13482 use_eh_spec_block (tree fn)
13484 return (flag_exceptions && flag_enforce_eh_specs
13485 && !processing_template_decl
13486 && !type_throw_all_p (TREE_TYPE (fn))
13487 /* We insert the EH_SPEC_BLOCK only in the original
13488 function; then, it is copied automatically to the
13489 clones. */
13490 && !DECL_CLONED_FUNCTION_P (fn)
13491 /* Implicitly-generated constructors and destructors have
13492 exception specifications. However, those specifications
13493 are the union of the possible exceptions specified by the
13494 constructors/destructors for bases and members, so no
13495 unallowed exception will ever reach this function. By
13496 not creating the EH_SPEC_BLOCK we save a little memory,
13497 and we avoid spurious warnings about unreachable
13498 code. */
13499 && !DECL_DEFAULTED_FN (fn));
13502 /* Store the parameter declarations into the current function declaration.
13503 This is called after parsing the parameter declarations, before
13504 digesting the body of the function.
13506 Also install to binding contour return value identifier, if any. */
13508 static void
13509 store_parm_decls (tree current_function_parms)
13511 tree fndecl = current_function_decl;
13512 tree parm;
13514 /* This is a chain of any other decls that came in among the parm
13515 declarations. If a parm is declared with enum {foo, bar} x;
13516 then CONST_DECLs for foo and bar are put here. */
13517 tree nonparms = NULL_TREE;
13519 if (current_function_parms)
13521 /* This case is when the function was defined with an ANSI prototype.
13522 The parms already have decls, so we need not do anything here
13523 except record them as in effect
13524 and complain if any redundant old-style parm decls were written. */
13526 tree specparms = current_function_parms;
13527 tree next;
13529 /* Must clear this because it might contain TYPE_DECLs declared
13530 at class level. */
13531 current_binding_level->names = NULL;
13533 /* If we're doing semantic analysis, then we'll call pushdecl
13534 for each of these. We must do them in reverse order so that
13535 they end in the correct forward order. */
13536 specparms = nreverse (specparms);
13538 for (parm = specparms; parm; parm = next)
13540 next = DECL_CHAIN (parm);
13541 if (TREE_CODE (parm) == PARM_DECL)
13543 if (DECL_NAME (parm) == NULL_TREE
13544 || !VOID_TYPE_P (parm))
13545 pushdecl (parm);
13546 else
13547 error ("parameter %qD declared void", parm);
13549 else
13551 /* If we find an enum constant or a type tag,
13552 put it aside for the moment. */
13553 TREE_CHAIN (parm) = NULL_TREE;
13554 nonparms = chainon (nonparms, parm);
13558 /* Get the decls in their original chain order and record in the
13559 function. This is all and only the PARM_DECLs that were
13560 pushed into scope by the loop above. */
13561 DECL_ARGUMENTS (fndecl) = getdecls ();
13563 else
13564 DECL_ARGUMENTS (fndecl) = NULL_TREE;
13566 /* Now store the final chain of decls for the arguments
13567 as the decl-chain of the current lexical scope.
13568 Put the enumerators in as well, at the front so that
13569 DECL_ARGUMENTS is not modified. */
13570 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
13572 if (use_eh_spec_block (current_function_decl))
13573 current_eh_spec_block = begin_eh_spec_block ();
13577 /* We have finished doing semantic analysis on DECL, but have not yet
13578 generated RTL for its body. Save away our current state, so that
13579 when we want to generate RTL later we know what to do. */
13581 static void
13582 save_function_data (tree decl)
13584 struct language_function *f;
13586 /* Save the language-specific per-function data so that we can
13587 get it back when we really expand this function. */
13588 gcc_assert (!DECL_PENDING_INLINE_P (decl));
13590 /* Make a copy. */
13591 f = ggc_alloc_language_function ();
13592 memcpy (f, cp_function_chain, sizeof (struct language_function));
13593 DECL_SAVED_FUNCTION_DATA (decl) = f;
13595 /* Clear out the bits we don't need. */
13596 f->base.x_stmt_tree.x_cur_stmt_list = NULL;
13597 f->bindings = NULL;
13598 f->x_local_names = NULL;
13599 f->base.local_typedefs = NULL;
13603 /* Set the return value of the constructor (if present). */
13605 static void
13606 finish_constructor_body (void)
13608 tree val;
13609 tree exprstmt;
13611 if (targetm.cxx.cdtor_returns_this ()
13612 && (! TYPE_FOR_JAVA (current_class_type)))
13614 /* Any return from a constructor will end up here. */
13615 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
13617 val = DECL_ARGUMENTS (current_function_decl);
13618 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
13619 DECL_RESULT (current_function_decl), val);
13620 /* Return the address of the object. */
13621 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
13622 add_stmt (exprstmt);
13626 /* Do all the processing for the beginning of a destructor; set up the
13627 vtable pointers and cleanups for bases and members. */
13629 static void
13630 begin_destructor_body (void)
13632 tree compound_stmt;
13634 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
13635 issued an error message. We still want to try to process the
13636 body of the function, but initialize_vtbl_ptrs will crash if
13637 TYPE_BINFO is NULL. */
13638 if (COMPLETE_TYPE_P (current_class_type))
13640 compound_stmt = begin_compound_stmt (0);
13641 /* Make all virtual function table pointers in non-virtual base
13642 classes point to CURRENT_CLASS_TYPE's virtual function
13643 tables. */
13644 initialize_vtbl_ptrs (current_class_ptr);
13645 finish_compound_stmt (compound_stmt);
13647 /* Insert a cleanup to let the back end know that the object is dead
13648 when we exit the destructor, either normally or via exception. */
13649 tree clobber = build_constructor (current_class_type, NULL);
13650 TREE_THIS_VOLATILE (clobber) = true;
13651 tree exprstmt = build2 (MODIFY_EXPR, current_class_type,
13652 current_class_ref, clobber);
13653 finish_decl_cleanup (NULL_TREE, exprstmt);
13655 /* And insert cleanups for our bases and members so that they
13656 will be properly destroyed if we throw. */
13657 push_base_cleanups ();
13661 /* At the end of every destructor we generate code to delete the object if
13662 necessary. Do that now. */
13664 static void
13665 finish_destructor_body (void)
13667 tree exprstmt;
13669 /* Any return from a destructor will end up here; that way all base
13670 and member cleanups will be run when the function returns. */
13671 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
13673 /* In a virtual destructor, we must call delete. */
13674 if (DECL_VIRTUAL_P (current_function_decl))
13676 tree if_stmt;
13677 tree virtual_size = cxx_sizeof (current_class_type);
13679 /* [class.dtor]
13681 At the point of definition of a virtual destructor (including
13682 an implicit definition), non-placement operator delete shall
13683 be looked up in the scope of the destructor's class and if
13684 found shall be accessible and unambiguous. */
13685 exprstmt = build_op_delete_call (DELETE_EXPR, current_class_ptr,
13686 virtual_size,
13687 /*global_p=*/false,
13688 /*placement=*/NULL_TREE,
13689 /*alloc_fn=*/NULL_TREE,
13690 tf_warning_or_error);
13692 if_stmt = begin_if_stmt ();
13693 finish_if_stmt_cond (build2 (BIT_AND_EXPR, integer_type_node,
13694 current_in_charge_parm,
13695 integer_one_node),
13696 if_stmt);
13697 finish_expr_stmt (exprstmt);
13698 finish_then_clause (if_stmt);
13699 finish_if_stmt (if_stmt);
13702 if (targetm.cxx.cdtor_returns_this ())
13704 tree val;
13706 val = DECL_ARGUMENTS (current_function_decl);
13707 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
13708 DECL_RESULT (current_function_decl), val);
13709 /* Return the address of the object. */
13710 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
13711 add_stmt (exprstmt);
13715 /* Do the necessary processing for the beginning of a function body, which
13716 in this case includes member-initializers, but not the catch clauses of
13717 a function-try-block. Currently, this means opening a binding level
13718 for the member-initializers (in a ctor), member cleanups (in a dtor),
13719 and capture proxies (in a lambda operator()). */
13721 tree
13722 begin_function_body (void)
13724 tree stmt;
13726 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
13727 return NULL_TREE;
13729 if (processing_template_decl)
13730 /* Do nothing now. */;
13731 else
13732 /* Always keep the BLOCK node associated with the outermost pair of
13733 curly braces of a function. These are needed for correct
13734 operation of dwarfout.c. */
13735 keep_next_level (true);
13737 stmt = begin_compound_stmt (BCS_FN_BODY);
13739 if (processing_template_decl)
13740 /* Do nothing now. */;
13741 else if (DECL_DESTRUCTOR_P (current_function_decl))
13742 begin_destructor_body ();
13744 return stmt;
13747 /* Do the processing for the end of a function body. Currently, this means
13748 closing out the cleanups for fully-constructed bases and members, and in
13749 the case of the destructor, deleting the object if desired. Again, this
13750 is only meaningful for [cd]tors, since they are the only functions where
13751 there is a significant distinction between the main body and any
13752 function catch clauses. Handling, say, main() return semantics here
13753 would be wrong, as flowing off the end of a function catch clause for
13754 main() would also need to return 0. */
13756 void
13757 finish_function_body (tree compstmt)
13759 if (compstmt == NULL_TREE)
13760 return;
13762 /* Close the block. */
13763 finish_compound_stmt (compstmt);
13765 if (processing_template_decl)
13766 /* Do nothing now. */;
13767 else if (DECL_CONSTRUCTOR_P (current_function_decl))
13768 finish_constructor_body ();
13769 else if (DECL_DESTRUCTOR_P (current_function_decl))
13770 finish_destructor_body ();
13773 /* Given a function, returns the BLOCK corresponding to the outermost level
13774 of curly braces, skipping the artificial block created for constructor
13775 initializers. */
13777 tree
13778 outer_curly_brace_block (tree fndecl)
13780 tree block = BLOCK_SUBBLOCKS (DECL_INITIAL (fndecl));
13781 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
13782 /* Skip the artificial function body block. */
13783 block = BLOCK_SUBBLOCKS (block);
13784 return block;
13787 /* If FNDECL is a class's key method, add the class to the list of
13788 keyed classes that should be emitted. */
13790 static void
13791 record_key_method_defined (tree fndecl)
13793 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
13794 && DECL_VIRTUAL_P (fndecl)
13795 && !processing_template_decl)
13797 tree fnclass = DECL_CONTEXT (fndecl);
13798 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
13799 keyed_classes = tree_cons (NULL_TREE, fnclass, keyed_classes);
13803 /* Subroutine of finish_function.
13804 Save the body of constexpr functions for possible
13805 future compile time evaluation. */
13807 static void
13808 maybe_save_function_definition (tree fun)
13810 if (!processing_template_decl
13811 && DECL_DECLARED_CONSTEXPR_P (fun)
13812 && !DECL_CLONED_FUNCTION_P (fun))
13813 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
13816 /* Finish up a function declaration and compile that function
13817 all the way to assembler language output. The free the storage
13818 for the function definition.
13820 FLAGS is a bitwise or of the following values:
13821 2 - INCLASS_INLINE
13822 We just finished processing the body of an in-class inline
13823 function definition. (This processing will have taken place
13824 after the class definition is complete.) */
13826 tree
13827 finish_function (int flags)
13829 tree fndecl = current_function_decl;
13830 tree fntype, ctype = NULL_TREE;
13831 int inclass_inline = (flags & 2) != 0;
13833 /* When we get some parse errors, we can end up without a
13834 current_function_decl, so cope. */
13835 if (fndecl == NULL_TREE)
13836 return error_mark_node;
13838 if (c_dialect_objc ())
13839 objc_finish_function ();
13841 gcc_assert (!defer_mark_used_calls);
13842 defer_mark_used_calls = true;
13844 record_key_method_defined (fndecl);
13846 fntype = TREE_TYPE (fndecl);
13848 /* TREE_READONLY (fndecl) = 1;
13849 This caused &foo to be of type ptr-to-const-function
13850 which then got a warning when stored in a ptr-to-function variable. */
13852 gcc_assert (building_stmt_list_p ());
13853 /* The current function is being defined, so its DECL_INITIAL should
13854 be set, and unless there's a multiple definition, it should be
13855 error_mark_node. */
13856 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
13858 /* For a cloned function, we've already got all the code we need;
13859 there's no need to add any extra bits. */
13860 if (!DECL_CLONED_FUNCTION_P (fndecl))
13862 /* Make it so that `main' always returns 0 by default. */
13863 if (DECL_MAIN_P (current_function_decl))
13864 finish_return_stmt (integer_zero_node);
13866 if (use_eh_spec_block (current_function_decl))
13867 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
13868 (TREE_TYPE (current_function_decl)),
13869 current_eh_spec_block);
13872 /* If we're saving up tree structure, tie off the function now. */
13873 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
13875 if (fn_contains_cilk_spawn_p (cfun) && !processing_template_decl)
13876 cfun->cilk_frame_decl = insert_cilk_frame (fndecl);
13878 finish_fname_decls ();
13880 /* If this function can't throw any exceptions, remember that. */
13881 if (!processing_template_decl
13882 && !cp_function_chain->can_throw
13883 && !flag_non_call_exceptions
13884 && !decl_replaceable_p (fndecl))
13885 TREE_NOTHROW (fndecl) = 1;
13887 /* This must come after expand_function_end because cleanups might
13888 have declarations (from inline functions) that need to go into
13889 this function's blocks. */
13891 /* If the current binding level isn't the outermost binding level
13892 for this function, either there is a bug, or we have experienced
13893 syntax errors and the statement tree is malformed. */
13894 if (current_binding_level->kind != sk_function_parms)
13896 /* Make sure we have already experienced errors. */
13897 gcc_assert (errorcount);
13899 /* Throw away the broken statement tree and extra binding
13900 levels. */
13901 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
13903 while (current_binding_level->kind != sk_function_parms)
13905 if (current_binding_level->kind == sk_class)
13906 pop_nested_class ();
13907 else
13908 poplevel (0, 0, 0);
13911 poplevel (1, 0, 1);
13913 /* Statements should always be full-expressions at the outermost set
13914 of curly braces for a function. */
13915 gcc_assert (stmts_are_full_exprs_p ());
13917 /* If there are no return statements in a function with auto return type,
13918 the return type is void. But if the declared type is something like
13919 auto*, this is an error. */
13920 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
13921 && TREE_TYPE (fntype) == current_function_auto_return_pattern)
13923 if (!is_auto (current_function_auto_return_pattern)
13924 && !current_function_returns_value && !current_function_returns_null)
13926 error ("no return statements in function returning %qT",
13927 current_function_auto_return_pattern);
13928 inform (input_location, "only plain %<auto%> return type can be "
13929 "deduced to %<void%>");
13931 apply_deduced_return_type (fndecl, void_type_node);
13932 fntype = TREE_TYPE (fndecl);
13935 /* Save constexpr function body before it gets munged by
13936 the NRV transformation. */
13937 maybe_save_function_definition (fndecl);
13939 /* Set up the named return value optimization, if we can. Candidate
13940 variables are selected in check_return_expr. */
13941 if (current_function_return_value)
13943 tree r = current_function_return_value;
13944 tree outer;
13946 if (r != error_mark_node
13947 /* This is only worth doing for fns that return in memory--and
13948 simpler, since we don't have to worry about promoted modes. */
13949 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
13950 /* Only allow this for variables declared in the outer scope of
13951 the function so we know that their lifetime always ends with a
13952 return; see g++.dg/opt/nrv6.C. We could be more flexible if
13953 we were to do this optimization in tree-ssa. */
13954 && (outer = outer_curly_brace_block (fndecl))
13955 && chain_member (r, BLOCK_VARS (outer)))
13956 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
13958 current_function_return_value = NULL_TREE;
13961 /* Remember that we were in class scope. */
13962 if (current_class_name)
13963 ctype = current_class_type;
13965 /* Must mark the RESULT_DECL as being in this function. */
13966 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
13968 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
13969 to the FUNCTION_DECL node itself. */
13970 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
13972 /* Save away current state, if appropriate. */
13973 if (!processing_template_decl)
13974 save_function_data (fndecl);
13976 /* Complain if there's just no return statement. */
13977 if (warn_return_type
13978 && !VOID_TYPE_P (TREE_TYPE (fntype))
13979 && !dependent_type_p (TREE_TYPE (fntype))
13980 && !current_function_returns_value && !current_function_returns_null
13981 /* Don't complain if we abort or throw. */
13982 && !current_function_returns_abnormally
13983 /* Don't complain if there's an infinite loop. */
13984 && !current_function_infinite_loop
13985 /* Don't complain if we are declared noreturn. */
13986 && !TREE_THIS_VOLATILE (fndecl)
13987 && !DECL_NAME (DECL_RESULT (fndecl))
13988 && !TREE_NO_WARNING (fndecl)
13989 /* Structor return values (if any) are set by the compiler. */
13990 && !DECL_CONSTRUCTOR_P (fndecl)
13991 && !DECL_DESTRUCTOR_P (fndecl)
13992 && targetm.warn_func_return (fndecl))
13994 warning (OPT_Wreturn_type,
13995 "no return statement in function returning non-void");
13996 TREE_NO_WARNING (fndecl) = 1;
13999 /* Store the end of the function, so that we get good line number
14000 info for the epilogue. */
14001 cfun->function_end_locus = input_location;
14003 /* Complain about parameters that are only set, but never otherwise used. */
14004 if (warn_unused_but_set_parameter
14005 && !processing_template_decl
14006 && errorcount == unused_but_set_errorcount
14007 && !DECL_CLONED_FUNCTION_P (fndecl))
14009 tree decl;
14011 for (decl = DECL_ARGUMENTS (fndecl);
14012 decl;
14013 decl = DECL_CHAIN (decl))
14014 if (TREE_USED (decl)
14015 && TREE_CODE (decl) == PARM_DECL
14016 && !DECL_READ_P (decl)
14017 && DECL_NAME (decl)
14018 && !DECL_ARTIFICIAL (decl)
14019 && !TREE_NO_WARNING (decl)
14020 && !DECL_IN_SYSTEM_HEADER (decl)
14021 && TREE_TYPE (decl) != error_mark_node
14022 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
14023 && (!CLASS_TYPE_P (TREE_TYPE (decl))
14024 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
14025 warning (OPT_Wunused_but_set_parameter,
14026 "parameter %q+D set but not used", decl);
14027 unused_but_set_errorcount = errorcount;
14030 /* Complain about locally defined typedefs that are not used in this
14031 function. */
14032 maybe_warn_unused_local_typedefs ();
14034 /* Genericize before inlining. */
14035 if (!processing_template_decl)
14037 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
14038 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
14039 cp_genericize (fndecl);
14040 /* Clear out the bits we don't need. */
14041 f->x_current_class_ptr = NULL;
14042 f->x_current_class_ref = NULL;
14043 f->x_eh_spec_block = NULL;
14044 f->x_in_charge_parm = NULL;
14045 f->x_vtt_parm = NULL;
14046 f->x_return_value = NULL;
14047 f->bindings = NULL;
14048 f->extern_decl_map = NULL;
14049 f->infinite_loops = NULL;
14051 /* Clear out the bits we don't need. */
14052 local_names = NULL;
14054 /* We're leaving the context of this function, so zap cfun. It's still in
14055 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
14056 set_cfun (NULL);
14057 current_function_decl = NULL;
14059 /* If this is an in-class inline definition, we may have to pop the
14060 bindings for the template parameters that we added in
14061 maybe_begin_member_template_processing when start_function was
14062 called. */
14063 if (inclass_inline)
14064 maybe_end_member_template_processing ();
14066 /* Leave the scope of the class. */
14067 if (ctype)
14068 pop_nested_class ();
14070 --function_depth;
14072 /* Clean up. */
14073 current_function_decl = NULL_TREE;
14075 defer_mark_used_calls = false;
14076 if (deferred_mark_used_calls)
14078 unsigned int i;
14079 tree decl;
14081 FOR_EACH_VEC_SAFE_ELT (deferred_mark_used_calls, i, decl)
14082 mark_used (decl);
14083 vec_free (deferred_mark_used_calls);
14086 return fndecl;
14089 /* Create the FUNCTION_DECL for a function definition.
14090 DECLSPECS and DECLARATOR are the parts of the declaration;
14091 they describe the return type and the name of the function,
14092 but twisted together in a fashion that parallels the syntax of C.
14094 This function creates a binding context for the function body
14095 as well as setting up the FUNCTION_DECL in current_function_decl.
14097 Returns a FUNCTION_DECL on success.
14099 If the DECLARATOR is not suitable for a function (it defines a datum
14100 instead), we return 0, which tells yyparse to report a parse error.
14102 May return void_type_node indicating that this method is actually
14103 a friend. See grokfield for more details.
14105 Came here with a `.pushlevel' .
14107 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
14108 CHANGES TO CODE IN `grokfield'. */
14110 tree
14111 grokmethod (cp_decl_specifier_seq *declspecs,
14112 const cp_declarator *declarator, tree attrlist)
14114 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
14115 &attrlist);
14117 if (fndecl == error_mark_node)
14118 return error_mark_node;
14120 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
14122 error ("invalid member function declaration");
14123 return error_mark_node;
14126 if (attrlist)
14127 cplus_decl_attributes (&fndecl, attrlist, 0);
14129 /* Pass friends other than inline friend functions back. */
14130 if (fndecl == void_type_node)
14131 return fndecl;
14133 if (DECL_IN_AGGR_P (fndecl))
14135 if (DECL_CLASS_SCOPE_P (fndecl))
14136 error ("%qD is already defined in class %qT", fndecl,
14137 DECL_CONTEXT (fndecl));
14138 return error_mark_node;
14141 check_template_shadow (fndecl);
14143 DECL_DECLARED_INLINE_P (fndecl) = 1;
14144 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
14146 /* We process method specializations in finish_struct_1. */
14147 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
14149 fndecl = push_template_decl (fndecl);
14150 if (fndecl == error_mark_node)
14151 return fndecl;
14154 if (! DECL_FRIEND_P (fndecl))
14156 if (DECL_CHAIN (fndecl))
14158 fndecl = copy_node (fndecl);
14159 TREE_CHAIN (fndecl) = NULL_TREE;
14163 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
14165 DECL_IN_AGGR_P (fndecl) = 1;
14166 return fndecl;
14170 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
14171 we can lay it out later, when and if its type becomes complete.
14173 Also handle constexpr pointer to member variables where the initializer
14174 is an unlowered PTRMEM_CST because the class isn't complete yet. */
14176 void
14177 maybe_register_incomplete_var (tree var)
14179 gcc_assert (VAR_P (var));
14181 /* Keep track of variables with incomplete types. */
14182 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
14183 && DECL_EXTERNAL (var))
14185 tree inner_type = TREE_TYPE (var);
14187 while (TREE_CODE (inner_type) == ARRAY_TYPE)
14188 inner_type = TREE_TYPE (inner_type);
14189 inner_type = TYPE_MAIN_VARIANT (inner_type);
14191 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
14192 /* RTTI TD entries are created while defining the type_info. */
14193 || (TYPE_LANG_SPECIFIC (inner_type)
14194 && TYPE_BEING_DEFINED (inner_type)))
14196 incomplete_var iv = {var, inner_type};
14197 vec_safe_push (incomplete_vars, iv);
14199 else if (TYPE_PTRMEM_P (inner_type)
14200 && DECL_INITIAL (var)
14201 && TREE_CODE (DECL_INITIAL (var)) == PTRMEM_CST)
14203 tree context = TYPE_PTRMEM_CLASS_TYPE (inner_type);
14204 gcc_assert (TYPE_BEING_DEFINED (context));
14205 incomplete_var iv = {var, context};
14206 vec_safe_push (incomplete_vars, iv);
14211 /* Called when a class type (given by TYPE) is defined. If there are
14212 any existing VAR_DECLs whose type has been completed by this
14213 declaration, update them now. */
14215 void
14216 complete_vars (tree type)
14218 unsigned ix;
14219 incomplete_var *iv;
14221 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
14223 if (same_type_p (type, iv->incomplete_type))
14225 tree var = iv->decl;
14226 tree type = TREE_TYPE (var);
14228 if (TYPE_PTRMEM_P (type))
14229 DECL_INITIAL (var) = cplus_expand_constant (DECL_INITIAL (var));
14230 else
14232 /* Complete the type of the variable. The VAR_DECL itself
14233 will be laid out in expand_expr. */
14234 complete_type (type);
14235 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
14238 /* Remove this entry from the list. */
14239 incomplete_vars->unordered_remove (ix);
14241 else
14242 ix++;
14245 /* Check for pending declarations which may have abstract type. */
14246 complete_type_check_abstract (type);
14249 /* If DECL is of a type which needs a cleanup, build and return an
14250 expression to perform that cleanup here. Return NULL_TREE if no
14251 cleanup need be done. */
14253 tree
14254 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
14256 tree type;
14257 tree attr;
14258 tree cleanup;
14260 /* Assume no cleanup is required. */
14261 cleanup = NULL_TREE;
14263 if (error_operand_p (decl))
14264 return cleanup;
14266 /* Handle "__attribute__((cleanup))". We run the cleanup function
14267 before the destructor since the destructor is what actually
14268 terminates the lifetime of the object. */
14269 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
14270 if (attr)
14272 tree id;
14273 tree fn;
14274 tree arg;
14276 /* Get the name specified by the user for the cleanup function. */
14277 id = TREE_VALUE (TREE_VALUE (attr));
14278 /* Look up the name to find the cleanup function to call. It is
14279 important to use lookup_name here because that is what is
14280 used in c-common.c:handle_cleanup_attribute when performing
14281 initial checks on the attribute. Note that those checks
14282 include ensuring that the function found is not an overloaded
14283 function, or an object with an overloaded call operator,
14284 etc.; we can rely on the fact that the function found is an
14285 ordinary FUNCTION_DECL. */
14286 fn = lookup_name (id);
14287 arg = build_address (decl);
14288 mark_used (decl);
14289 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
14290 if (cleanup == error_mark_node)
14291 return error_mark_node;
14293 /* Handle ordinary C++ destructors. */
14294 type = TREE_TYPE (decl);
14295 if (type_build_dtor_call (type))
14297 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
14298 tree addr;
14299 tree call;
14301 if (TREE_CODE (type) == ARRAY_TYPE)
14302 addr = decl;
14303 else
14304 addr = build_address (decl);
14306 call = build_delete (TREE_TYPE (addr), addr,
14307 sfk_complete_destructor, flags, 0, complain);
14308 if (call == error_mark_node)
14309 cleanup = error_mark_node;
14310 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
14311 /* Discard the call. */;
14312 else if (cleanup)
14313 cleanup = cp_build_compound_expr (cleanup, call, complain);
14314 else
14315 cleanup = call;
14318 /* build_delete sets the location of the destructor call to the
14319 current location, even though the destructor is going to be
14320 called later, at the end of the current scope. This can lead to
14321 a "jumpy" behaviour for users of debuggers when they step around
14322 the end of the block. So let's unset the location of the
14323 destructor call instead. */
14324 if (cleanup != NULL && EXPR_P (cleanup))
14325 SET_EXPR_LOCATION (cleanup, UNKNOWN_LOCATION);
14327 if (cleanup
14328 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl))))
14329 /* Treat objects with destructors as used; the destructor may do
14330 something substantive. */
14331 mark_used (decl);
14333 return cleanup;
14337 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
14338 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
14339 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
14341 tree
14342 static_fn_type (tree memfntype)
14344 tree fntype;
14345 tree args;
14347 if (TYPE_PTRMEMFUNC_P (memfntype))
14348 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
14349 if (POINTER_TYPE_P (memfntype)
14350 || TREE_CODE (memfntype) == FUNCTION_DECL)
14351 memfntype = TREE_TYPE (memfntype);
14352 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
14353 return memfntype;
14354 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
14355 args = TYPE_ARG_TYPES (memfntype);
14356 cp_ref_qualifier rqual = type_memfn_rqual (memfntype);
14357 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
14358 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype), rqual);
14359 fntype = (cp_build_type_attribute_variant
14360 (fntype, TYPE_ATTRIBUTES (memfntype)));
14361 fntype = (build_exception_variant
14362 (fntype, TYPE_RAISES_EXCEPTIONS (memfntype)));
14363 return fntype;
14366 /* DECL was originally constructed as a non-static member function,
14367 but turned out to be static. Update it accordingly. */
14369 void
14370 revert_static_member_fn (tree decl)
14372 tree stype = static_fn_type (decl);
14373 cp_cv_quals quals = type_memfn_quals (stype);
14374 cp_ref_qualifier rqual = type_memfn_rqual (stype);
14376 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
14377 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
14379 TREE_TYPE (decl) = stype;
14381 if (DECL_ARGUMENTS (decl))
14382 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
14383 DECL_STATIC_FUNCTION_P (decl) = 1;
14386 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
14387 one of the language-independent trees. */
14389 enum cp_tree_node_structure_enum
14390 cp_tree_node_structure (union lang_tree_node * t)
14392 switch (TREE_CODE (&t->generic))
14394 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
14395 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
14396 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
14397 case OVERLOAD: return TS_CP_OVERLOAD;
14398 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
14399 case PTRMEM_CST: return TS_CP_PTRMEM;
14400 case BASELINK: return TS_CP_BASELINK;
14401 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
14402 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
14403 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
14404 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
14405 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
14406 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
14407 default: return TS_CP_GENERIC;
14411 /* Build the void_list_node (void_type_node having been created). */
14412 tree
14413 build_void_list_node (void)
14415 tree t = build_tree_list (NULL_TREE, void_type_node);
14416 return t;
14419 bool
14420 cp_missing_noreturn_ok_p (tree decl)
14422 /* A missing noreturn is ok for the `main' function. */
14423 return DECL_MAIN_P (decl);
14426 /* Return the COMDAT group into which DECL should be placed. */
14428 tree
14429 cxx_comdat_group (tree decl)
14431 tree name;
14433 /* Virtual tables, construction virtual tables, and virtual table
14434 tables all go in a single COMDAT group, named after the primary
14435 virtual table. */
14436 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
14437 name = DECL_ASSEMBLER_NAME (CLASSTYPE_VTABLES (DECL_CONTEXT (decl)));
14438 /* For all other DECLs, the COMDAT group is the mangled name of the
14439 declaration itself. */
14440 else
14442 while (DECL_THUNK_P (decl))
14444 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
14445 into the same section as the target function. In that case
14446 we must return target's name. */
14447 tree target = THUNK_TARGET (decl);
14448 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
14449 && DECL_SECTION_NAME (target) != NULL
14450 && DECL_ONE_ONLY (target))
14451 decl = target;
14452 else
14453 break;
14455 name = DECL_ASSEMBLER_NAME (decl);
14458 return name;
14461 /* Returns the return type for FN as written by the user, which may include
14462 a placeholder for a deduced return type. */
14464 tree
14465 fndecl_declared_return_type (tree fn)
14467 fn = STRIP_TEMPLATE (fn);
14468 if (FNDECL_USED_AUTO (fn))
14470 struct language_function *f = NULL;
14471 if (DECL_STRUCT_FUNCTION (fn))
14472 f = DECL_STRUCT_FUNCTION (fn)->language;
14473 if (f == NULL)
14474 f = DECL_SAVED_FUNCTION_DATA (fn);
14475 return f->x_auto_return_pattern;
14477 return TREE_TYPE (TREE_TYPE (fn));
14480 /* Returns true iff DECL was declared with an auto return type and it has
14481 not yet been deduced to a real type. */
14483 bool
14484 undeduced_auto_decl (tree decl)
14486 if (cxx_dialect < cxx1y)
14487 return false;
14488 return type_uses_auto (TREE_TYPE (decl));
14491 /* Complain if DECL has an undeduced return type. */
14493 void
14494 require_deduced_type (tree decl)
14496 if (undeduced_auto_decl (decl))
14497 error ("use of %qD before deduction of %<auto%>", decl);
14500 #include "gt-cp-decl.h"