2015-06-23 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / gcc / cp / decl.c
bloba8fc1a57a959f6b55fafb2a3ff91f54b77b601e5
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988-2015 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 /* Process declarations and symbol lookup for C++ front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "tm.h"
33 #include "alias.h"
34 #include "symtab.h"
35 #include "tree.h"
36 #include "tree-hasher.h"
37 #include "stringpool.h"
38 #include "stor-layout.h"
39 #include "varasm.h"
40 #include "attribs.h"
41 #include "calls.h"
42 #include "flags.h"
43 #include "cp-tree.h"
44 #include "tree-iterator.h"
45 #include "tree-inline.h"
46 #include "decl.h"
47 #include "intl.h"
48 #include "toplev.h"
49 #include "tm_p.h"
50 #include "target.h"
51 #include "c-family/c-common.h"
52 #include "c-family/c-objc.h"
53 #include "c-family/c-pragma.h"
54 #include "c-family/c-target.h"
55 #include "c-family/c-ubsan.h"
56 #include "diagnostic.h"
57 #include "intl.h"
58 #include "debug.h"
59 #include "timevar.h"
60 #include "splay-tree.h"
61 #include "plugin.h"
62 #include "plugin-api.h"
63 #include "hard-reg-set.h"
64 #include "function.h"
65 #include "ipa-ref.h"
66 #include "cgraph.h"
67 #include "cilk.h"
68 #include "builtins.h"
70 /* Possible cases of bad specifiers type used by bad_specifiers. */
71 enum bad_spec_place {
72 BSP_VAR, /* variable */
73 BSP_PARM, /* parameter */
74 BSP_TYPE, /* type */
75 BSP_FIELD /* field */
78 static tree grokparms (tree parmlist, tree *);
79 static const char *redeclaration_error_message (tree, tree);
81 static int decl_jump_unsafe (tree);
82 static void require_complete_types_for_parms (tree);
83 static int ambi_op_p (enum tree_code);
84 static int unary_op_p (enum tree_code);
85 static void push_local_name (tree);
86 static tree grok_reference_init (tree, tree, tree, int);
87 static tree grokvardecl (tree, tree, tree, const cp_decl_specifier_seq *,
88 int, int, int, tree);
89 static int check_static_variable_definition (tree, tree);
90 static void record_unknown_type (tree, const char *);
91 static tree builtin_function_1 (tree, tree, bool);
92 static int member_function_or_else (tree, tree, enum overload_flags);
93 static void bad_specifiers (tree, enum bad_spec_place, int, int, int, int,
94 int);
95 static void check_for_uninitialized_const_var (tree);
96 static tree local_variable_p_walkfn (tree *, int *, void *);
97 static tree record_builtin_java_type (const char *, int);
98 static const char *tag_name (enum tag_types);
99 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
100 static int walk_namespaces_r (tree, walk_namespaces_fn, void *);
101 static void maybe_deduce_size_from_array_init (tree, tree);
102 static void layout_var_decl (tree);
103 static tree check_initializer (tree, tree, int, vec<tree, va_gc> **);
104 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
105 static void save_function_data (tree);
106 static void copy_type_enum (tree , tree);
107 static void check_function_type (tree, tree);
108 static void finish_constructor_body (void);
109 static void begin_destructor_body (void);
110 static void finish_destructor_body (void);
111 static void record_key_method_defined (tree);
112 static tree create_array_type_for_decl (tree, tree, tree);
113 static tree get_atexit_node (void);
114 static tree get_dso_handle_node (void);
115 static tree start_cleanup_fn (void);
116 static void end_cleanup_fn (void);
117 static tree cp_make_fname_decl (location_t, tree, int);
118 static void initialize_predefined_identifiers (void);
119 static tree check_special_function_return_type
120 (special_function_kind, tree, tree);
121 static tree push_cp_library_fn (enum tree_code, tree, int);
122 static tree build_cp_library_fn (tree, enum tree_code, tree, int);
123 static void store_parm_decls (tree);
124 static void initialize_local_var (tree, tree);
125 static void expand_static_init (tree, tree);
127 /* The following symbols are subsumed in the cp_global_trees array, and
128 listed here individually for documentation purposes.
130 C++ extensions
131 tree wchar_decl_node;
133 tree vtable_entry_type;
134 tree delta_type_node;
135 tree __t_desc_type_node;
137 tree class_type_node;
138 tree unknown_type_node;
140 Array type `vtable_entry_type[]'
142 tree vtbl_type_node;
143 tree vtbl_ptr_type_node;
145 Namespaces,
147 tree std_node;
148 tree abi_node;
150 A FUNCTION_DECL which can call `abort'. Not necessarily the
151 one that the user will declare, but sufficient to be called
152 by routines that want to abort the program.
154 tree abort_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((for_user)) 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. */
397 pop_labels_1 (named_label_entry **slot, tree block)
399 struct named_label_entry *ent = *slot;
401 pop_label (ent->label_decl, NULL_TREE);
403 /* Put the labels into the "variables" of the top-level block,
404 so debugger can see them. */
405 DECL_CHAIN (ent->label_decl) = BLOCK_VARS (block);
406 BLOCK_VARS (block) = ent->label_decl;
408 named_labels->clear_slot (slot);
410 return 1;
413 static void
414 pop_labels (tree block)
416 if (named_labels)
418 named_labels->traverse<tree, pop_labels_1> (block);
419 named_labels = NULL;
423 /* At the end of a block with local labels, restore the outer definition. */
425 static void
426 pop_local_label (tree label, tree old_value)
428 struct named_label_entry dummy;
430 pop_label (label, old_value);
432 dummy.label_decl = label;
433 named_label_entry **slot = named_labels->find_slot (&dummy, NO_INSERT);
434 named_labels->clear_slot (slot);
437 /* The following two routines are used to interface to Objective-C++.
438 The binding level is purposely treated as an opaque type. */
440 void *
441 objc_get_current_scope (void)
443 return current_binding_level;
446 /* The following routine is used by the NeXT-style SJLJ exceptions;
447 variables get marked 'volatile' so as to not be clobbered by
448 _setjmp()/_longjmp() calls. All variables in the current scope,
449 as well as parent scopes up to (but not including) ENCLOSING_BLK
450 shall be thusly marked. */
452 void
453 objc_mark_locals_volatile (void *enclosing_blk)
455 cp_binding_level *scope;
457 for (scope = current_binding_level;
458 scope && scope != enclosing_blk;
459 scope = scope->level_chain)
461 tree decl;
463 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
464 objc_volatilize_decl (decl);
466 /* Do not climb up past the current function. */
467 if (scope->kind == sk_function_parms)
468 break;
472 /* Update data for defined and undefined labels when leaving a scope. */
475 poplevel_named_label_1 (named_label_entry **slot, cp_binding_level *bl)
477 named_label_entry *ent = *slot;
478 cp_binding_level *obl = bl->level_chain;
480 if (ent->binding_level == bl)
482 tree decl;
484 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
485 TREE_LISTs representing OVERLOADs, so be careful. */
486 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
487 ? DECL_CHAIN (decl)
488 : TREE_CHAIN (decl)))
489 if (decl_jump_unsafe (decl))
490 vec_safe_push (ent->bad_decls, decl);
492 ent->binding_level = obl;
493 ent->names_in_scope = obl->names;
494 switch (bl->kind)
496 case sk_try:
497 ent->in_try_scope = true;
498 break;
499 case sk_catch:
500 ent->in_catch_scope = true;
501 break;
502 case sk_omp:
503 ent->in_omp_scope = true;
504 break;
505 default:
506 break;
509 else if (ent->uses)
511 struct named_label_use_entry *use;
513 for (use = ent->uses; use ; use = use->next)
514 if (use->binding_level == bl)
516 use->binding_level = obl;
517 use->names_in_scope = obl->names;
518 if (bl->kind == sk_omp)
519 use->in_omp_scope = true;
523 return 1;
526 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
527 when errors were reported, except for -Werror-unused-but-set-*. */
528 static int unused_but_set_errorcount;
530 /* Exit a binding level.
531 Pop the level off, and restore the state of the identifier-decl mappings
532 that were in effect when this level was entered.
534 If KEEP == 1, this level had explicit declarations, so
535 and create a "block" (a BLOCK node) for the level
536 to record its declarations and subblocks for symbol table output.
538 If FUNCTIONBODY is nonzero, this level is the body of a function,
539 so create a block as if KEEP were set and also clear out all
540 label names.
542 If REVERSE is nonzero, reverse the order of decls before putting
543 them into the BLOCK. */
545 tree
546 poplevel (int keep, int reverse, int functionbody)
548 tree link;
549 /* The chain of decls was accumulated in reverse order.
550 Put it into forward order, just for cleanliness. */
551 tree decls;
552 tree subblocks;
553 tree block;
554 tree decl;
555 int leaving_for_scope;
556 scope_kind kind;
557 unsigned ix;
558 cp_label_binding *label_bind;
560 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
561 restart:
563 block = NULL_TREE;
565 gcc_assert (current_binding_level->kind != sk_class);
567 if (current_binding_level->kind == sk_cleanup)
568 functionbody = 0;
569 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
571 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
573 /* We used to use KEEP == 2 to indicate that the new block should go
574 at the beginning of the list of blocks at this binding level,
575 rather than the end. This hack is no longer used. */
576 gcc_assert (keep == 0 || keep == 1);
578 if (current_binding_level->keep)
579 keep = 1;
581 /* Any uses of undefined labels, and any defined labels, now operate
582 under constraints of next binding contour. */
583 if (cfun && !functionbody && named_labels)
584 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
585 (current_binding_level);
587 /* Get the decls in the order they were written.
588 Usually current_binding_level->names is in reverse order.
589 But parameter decls were previously put in forward order. */
591 if (reverse)
592 current_binding_level->names
593 = decls = nreverse (current_binding_level->names);
594 else
595 decls = current_binding_level->names;
597 /* If there were any declarations or structure tags in that level,
598 or if this level is a function body,
599 create a BLOCK to record them for the life of this function. */
600 block = NULL_TREE;
601 /* Avoid function body block if possible. */
602 if (functionbody && subblocks && BLOCK_CHAIN (subblocks) == NULL_TREE)
603 keep = 0;
604 else 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 && current_binding_level->kind != sk_template_parms
627 && !processing_template_decl)
628 for (tree d = getdecls (); d; d = TREE_CHAIN (d))
630 /* There are cases where D itself is a TREE_LIST. See in
631 push_local_binding where the list of decls returned by
632 getdecls is built. */
633 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
634 tree type = 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 if (block)
789 /* Since this is the top level block of a function, the vars are
790 the function's parameters. Don't leave them in the BLOCK
791 because they are found in the FUNCTION_DECL instead. */
792 BLOCK_VARS (block) = 0;
793 pop_labels (block);
795 else
796 pop_labels (subblocks);
799 kind = current_binding_level->kind;
800 if (kind == sk_cleanup)
802 tree stmt;
804 /* If this is a temporary binding created for a cleanup, then we'll
805 have pushed a statement list level. Pop that, create a new
806 BIND_EXPR for the block, and insert it into the stream. */
807 stmt = pop_stmt_list (current_binding_level->statement_list);
808 stmt = c_build_bind_expr (input_location, block, stmt);
809 add_stmt (stmt);
812 leave_scope ();
813 if (functionbody)
815 /* The current function is being defined, so its DECL_INITIAL
816 should be error_mark_node. */
817 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
818 DECL_INITIAL (current_function_decl) = block ? block : subblocks;
819 if (subblocks)
821 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
823 if (BLOCK_SUBBLOCKS (subblocks))
824 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks)) = 1;
826 else
827 BLOCK_OUTER_CURLY_BRACE_P (subblocks) = 1;
830 else if (block)
831 current_binding_level->blocks
832 = block_chainon (current_binding_level->blocks, block);
834 /* If we did not make a block for the level just exited,
835 any blocks made for inner levels
836 (since they cannot be recorded as subblocks in that level)
837 must be carried forward so they will later become subblocks
838 of something else. */
839 else if (subblocks)
840 current_binding_level->blocks
841 = block_chainon (current_binding_level->blocks, subblocks);
843 /* Each and every BLOCK node created here in `poplevel' is important
844 (e.g. for proper debugging information) so if we created one
845 earlier, mark it as "used". */
846 if (block)
847 TREE_USED (block) = 1;
849 /* All temporary bindings created for cleanups are popped silently. */
850 if (kind == sk_cleanup)
851 goto restart;
853 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
854 return block;
857 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
858 itself, calling F for each. The DATA is passed to F as well. */
860 static int
861 walk_namespaces_r (tree name_space, walk_namespaces_fn f, void* data)
863 int result = 0;
864 tree current = NAMESPACE_LEVEL (name_space)->namespaces;
866 result |= (*f) (name_space, data);
868 for (; current; current = DECL_CHAIN (current))
869 result |= walk_namespaces_r (current, f, data);
871 return result;
874 /* Walk all the namespaces, calling F for each. The DATA is passed to
875 F as well. */
878 walk_namespaces (walk_namespaces_fn f, void* data)
880 return walk_namespaces_r (global_namespace, f, data);
883 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
886 wrapup_globals_for_namespace (tree name_space, void* data ATTRIBUTE_UNUSED)
888 cp_binding_level *level = NAMESPACE_LEVEL (name_space);
889 vec<tree, va_gc> *statics = level->static_decls;
890 tree *vec = statics->address ();
891 int len = statics->length ();
893 /* Write out any globals that need to be output. */
894 return wrapup_global_declarations (vec, len);
897 /* In C++, you don't have to write `struct S' to refer to `S'; you
898 can just use `S'. We accomplish this by creating a TYPE_DECL as
899 if the user had written `typedef struct S S'. Create and return
900 the TYPE_DECL for TYPE. */
902 tree
903 create_implicit_typedef (tree name, tree type)
905 tree decl;
907 decl = build_decl (input_location, TYPE_DECL, name, type);
908 DECL_ARTIFICIAL (decl) = 1;
909 /* There are other implicit type declarations, like the one *within*
910 a class that allows you to write `S::S'. We must distinguish
911 amongst these. */
912 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
913 TYPE_NAME (type) = decl;
914 TYPE_STUB_DECL (type) = decl;
916 return decl;
919 /* Remember a local name for name-mangling purposes. */
921 static void
922 push_local_name (tree decl)
924 size_t i, nelts;
925 tree t, name;
927 timevar_start (TV_NAME_LOOKUP);
929 name = DECL_NAME (decl);
931 nelts = vec_safe_length (local_names);
932 for (i = 0; i < nelts; i++)
934 t = (*local_names)[i];
935 if (DECL_NAME (t) == name)
937 if (!DECL_LANG_SPECIFIC (decl))
938 retrofit_lang_decl (decl);
939 DECL_LANG_SPECIFIC (decl)->u.base.u2sel = 1;
940 if (DECL_DISCRIMINATOR_SET_P (t))
941 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
942 else
943 DECL_DISCRIMINATOR (decl) = 1;
945 (*local_names)[i] = decl;
946 timevar_stop (TV_NAME_LOOKUP);
947 return;
951 vec_safe_push (local_names, decl);
952 timevar_stop (TV_NAME_LOOKUP);
955 /* Subroutine of duplicate_decls: return truthvalue of whether
956 or not types of these decls match.
958 For C++, we must compare the parameter list so that `int' can match
959 `int&' in a parameter position, but `int&' is not confused with
960 `const int&'. */
963 decls_match (tree newdecl, tree olddecl)
965 int types_match;
967 if (newdecl == olddecl)
968 return 1;
970 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
971 /* If the two DECLs are not even the same kind of thing, we're not
972 interested in their types. */
973 return 0;
975 gcc_assert (DECL_P (newdecl));
977 if (TREE_CODE (newdecl) == FUNCTION_DECL)
979 tree f1 = TREE_TYPE (newdecl);
980 tree f2 = TREE_TYPE (olddecl);
981 tree p1 = TYPE_ARG_TYPES (f1);
982 tree p2 = TYPE_ARG_TYPES (f2);
983 tree r2;
985 /* Specializations of different templates are different functions
986 even if they have the same type. */
987 tree t1 = (DECL_USE_TEMPLATE (newdecl)
988 ? DECL_TI_TEMPLATE (newdecl)
989 : NULL_TREE);
990 tree t2 = (DECL_USE_TEMPLATE (olddecl)
991 ? DECL_TI_TEMPLATE (olddecl)
992 : NULL_TREE);
993 if (t1 != t2)
994 return 0;
996 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
997 && ! (DECL_EXTERN_C_P (newdecl)
998 && DECL_EXTERN_C_P (olddecl)))
999 return 0;
1001 /* A new declaration doesn't match a built-in one unless it
1002 is also extern "C". */
1003 if (DECL_IS_BUILTIN (olddecl)
1004 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
1005 return 0;
1007 if (TREE_CODE (f1) != TREE_CODE (f2))
1008 return 0;
1010 /* A declaration with deduced return type should use its pre-deduction
1011 type for declaration matching. */
1012 r2 = fndecl_declared_return_type (olddecl);
1014 if (same_type_p (TREE_TYPE (f1), r2))
1016 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
1017 && (DECL_BUILT_IN (olddecl)
1018 #ifndef NO_IMPLICIT_EXTERN_C
1019 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
1020 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
1021 #endif
1024 types_match = self_promoting_args_p (p1);
1025 if (p1 == void_list_node)
1026 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1028 #ifndef NO_IMPLICIT_EXTERN_C
1029 else if (!prototype_p (f1)
1030 && (DECL_EXTERN_C_P (olddecl)
1031 && DECL_IN_SYSTEM_HEADER (olddecl)
1032 && !DECL_CLASS_SCOPE_P (olddecl))
1033 && (DECL_EXTERN_C_P (newdecl)
1034 && DECL_IN_SYSTEM_HEADER (newdecl)
1035 && !DECL_CLASS_SCOPE_P (newdecl)))
1037 types_match = self_promoting_args_p (p2);
1038 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1040 #endif
1041 else
1042 types_match =
1043 compparms (p1, p2)
1044 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
1045 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
1046 || comp_type_attributes (TREE_TYPE (newdecl),
1047 TREE_TYPE (olddecl)) != 0);
1049 else
1050 types_match = 0;
1052 /* The decls dont match if they correspond to two different versions
1053 of the same function. Disallow extern "C" functions to be
1054 versions for now. */
1055 if (types_match
1056 && !DECL_EXTERN_C_P (newdecl)
1057 && !DECL_EXTERN_C_P (olddecl)
1058 && targetm.target_option.function_versions (newdecl, olddecl))
1060 /* Mark functions as versions if necessary. Modify the mangled decl
1061 name if necessary. */
1062 if (DECL_FUNCTION_VERSIONED (newdecl)
1063 && DECL_FUNCTION_VERSIONED (olddecl))
1064 return 0;
1065 if (!DECL_FUNCTION_VERSIONED (newdecl))
1067 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1068 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1069 mangle_decl (newdecl);
1071 if (!DECL_FUNCTION_VERSIONED (olddecl))
1073 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1074 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1075 mangle_decl (olddecl);
1077 cgraph_node::record_function_versions (olddecl, newdecl);
1078 return 0;
1081 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1083 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl))
1084 != TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)))
1085 return 0;
1087 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1088 DECL_TEMPLATE_PARMS (olddecl)))
1089 return 0;
1091 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1092 types_match = same_type_p (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl)),
1093 TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl)));
1094 else
1095 types_match = decls_match (DECL_TEMPLATE_RESULT (olddecl),
1096 DECL_TEMPLATE_RESULT (newdecl));
1098 else
1100 /* Need to check scope for variable declaration (VAR_DECL).
1101 For typedef (TYPE_DECL), scope is ignored. */
1102 if (VAR_P (newdecl)
1103 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1104 /* [dcl.link]
1105 Two declarations for an object with C language linkage
1106 with the same name (ignoring the namespace that qualify
1107 it) that appear in different namespace scopes refer to
1108 the same object. */
1109 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1110 return 0;
1112 if (TREE_TYPE (newdecl) == error_mark_node)
1113 types_match = TREE_TYPE (olddecl) == error_mark_node;
1114 else if (TREE_TYPE (olddecl) == NULL_TREE)
1115 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1116 else if (TREE_TYPE (newdecl) == NULL_TREE)
1117 types_match = 0;
1118 else
1119 types_match = comptypes (TREE_TYPE (newdecl),
1120 TREE_TYPE (olddecl),
1121 COMPARE_REDECLARATION);
1124 return types_match;
1127 /* If NEWDECL is `static' and an `extern' was seen previously,
1128 warn about it. OLDDECL is the previous declaration.
1130 Note that this does not apply to the C++ case of declaring
1131 a variable `extern const' and then later `const'.
1133 Don't complain about built-in functions, since they are beyond
1134 the user's control. */
1136 void
1137 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1139 if (TREE_CODE (newdecl) == TYPE_DECL
1140 || TREE_CODE (newdecl) == TEMPLATE_DECL
1141 || TREE_CODE (newdecl) == CONST_DECL
1142 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1143 return;
1145 /* Don't get confused by static member functions; that's a different
1146 use of `static'. */
1147 if (TREE_CODE (newdecl) == FUNCTION_DECL
1148 && DECL_STATIC_FUNCTION_P (newdecl))
1149 return;
1151 /* If the old declaration was `static', or the new one isn't, then
1152 everything is OK. */
1153 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1154 return;
1156 /* It's OK to declare a builtin function as `static'. */
1157 if (TREE_CODE (olddecl) == FUNCTION_DECL
1158 && DECL_ARTIFICIAL (olddecl))
1159 return;
1161 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1162 "%qD was declared %<extern%> and later %<static%>", newdecl))
1163 inform (input_location, "previous declaration of %q+D", olddecl);
1166 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1167 function templates. If their exception specifications do not
1168 match, issue a diagnostic. */
1170 static void
1171 check_redeclaration_exception_specification (tree new_decl,
1172 tree old_decl)
1174 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1175 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1177 /* Two default specs are equivalent, don't force evaluation. */
1178 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1179 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1180 return;
1182 maybe_instantiate_noexcept (new_decl);
1183 maybe_instantiate_noexcept (old_decl);
1184 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1185 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1187 /* [except.spec]
1189 If any declaration of a function has an exception-specification,
1190 all declarations, including the definition and an explicit
1191 specialization, of that function shall have an
1192 exception-specification with the same set of type-ids. */
1193 if (! DECL_IS_BUILTIN (old_decl)
1194 && flag_exceptions
1195 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1197 const char *msg
1198 = "declaration of %q+F has a different exception specifier";
1199 bool complained = true;
1200 if (! DECL_IN_SYSTEM_HEADER (old_decl))
1201 error (msg, new_decl);
1202 else
1203 complained = pedwarn (0, OPT_Wsystem_headers, msg, new_decl);
1204 if (complained)
1205 inform (0, "from previous declaration %q+F", old_decl);
1209 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1210 Otherwise issue diagnostics. */
1212 static bool
1213 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1215 old_decl = STRIP_TEMPLATE (old_decl);
1216 new_decl = STRIP_TEMPLATE (new_decl);
1217 if (!VAR_OR_FUNCTION_DECL_P (old_decl)
1218 || !VAR_OR_FUNCTION_DECL_P (new_decl))
1219 return true;
1220 if (DECL_DECLARED_CONSTEXPR_P (old_decl)
1221 == DECL_DECLARED_CONSTEXPR_P (new_decl))
1222 return true;
1223 if (TREE_CODE (old_decl) == FUNCTION_DECL)
1225 if (DECL_BUILT_IN (old_decl))
1227 /* Hide a built-in declaration. */
1228 DECL_DECLARED_CONSTEXPR_P (old_decl)
1229 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1230 return true;
1232 /* 7.1.5 [dcl.constexpr]
1233 Note: An explicit specialization can differ from the template
1234 declaration with respect to the constexpr specifier. */
1235 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl)
1236 && DECL_TEMPLATE_SPECIALIZATION (new_decl))
1237 return true;
1239 error ("redeclaration %q+D differs in %<constexpr%>", new_decl);
1240 error ("from previous declaration %q+D", old_decl);
1241 return false;
1243 return true;
1246 /* DECL is a redeclaration of a function or function template. If
1247 it does have default arguments issue a diagnostic. Note: this
1248 function is used to enforce the requirements in C++11 8.3.6 about
1249 no default arguments in redeclarations. */
1251 static void
1252 check_redeclaration_no_default_args (tree decl)
1254 gcc_assert (DECL_DECLARES_FUNCTION_P (decl));
1256 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
1257 t && t != void_list_node; t = TREE_CHAIN (t))
1258 if (TREE_PURPOSE (t))
1260 permerror (input_location,
1261 "redeclaration of %q+#D may not have default "
1262 "arguments", decl);
1263 return;
1267 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1268 && lookup_attribute ("gnu_inline", \
1269 DECL_ATTRIBUTES (fn)))
1271 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1272 If the redeclaration is invalid, a diagnostic is issued, and the
1273 error_mark_node is returned. Otherwise, OLDDECL is returned.
1275 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1276 returned.
1278 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1280 tree
1281 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1283 unsigned olddecl_uid = DECL_UID (olddecl);
1284 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1285 int new_defines_function = 0;
1286 tree new_template_info;
1288 if (newdecl == olddecl)
1289 return olddecl;
1291 types_match = decls_match (newdecl, olddecl);
1293 /* If either the type of the new decl or the type of the old decl is an
1294 error_mark_node, then that implies that we have already issued an
1295 error (earlier) for some bogus type specification, and in that case,
1296 it is rather pointless to harass the user with yet more error message
1297 about the same declaration, so just pretend the types match here. */
1298 if (TREE_TYPE (newdecl) == error_mark_node
1299 || TREE_TYPE (olddecl) == error_mark_node)
1300 return error_mark_node;
1302 if (UDLIT_OPER_P (DECL_NAME (newdecl))
1303 && UDLIT_OPER_P (DECL_NAME (olddecl)))
1305 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1306 && TREE_CODE (olddecl) != TEMPLATE_DECL
1307 && check_raw_literal_operator (olddecl))
1308 error ("literal operator template %q+D conflicts with"
1309 " raw literal operator %qD", newdecl, olddecl);
1310 else if (TREE_CODE (newdecl) != TEMPLATE_DECL
1311 && TREE_CODE (olddecl) == TEMPLATE_DECL
1312 && check_raw_literal_operator (newdecl))
1313 error ("raw literal operator %q+D conflicts with"
1314 " literal operator template %qD", newdecl, olddecl);
1317 if (DECL_P (olddecl)
1318 && TREE_CODE (newdecl) == FUNCTION_DECL
1319 && TREE_CODE (olddecl) == FUNCTION_DECL
1320 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1322 if (DECL_DECLARED_INLINE_P (newdecl)
1323 && DECL_UNINLINABLE (newdecl)
1324 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1325 /* Already warned elsewhere. */;
1326 else if (DECL_DECLARED_INLINE_P (olddecl)
1327 && DECL_UNINLINABLE (olddecl)
1328 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1329 /* Already warned. */;
1330 else if (DECL_DECLARED_INLINE_P (newdecl)
1331 && DECL_UNINLINABLE (olddecl)
1332 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1334 if (warning (OPT_Wattributes, "function %q+D redeclared as inline",
1335 newdecl))
1336 inform (DECL_SOURCE_LOCATION (olddecl),
1337 "previous declaration of %qD with attribute noinline",
1338 olddecl);
1340 else if (DECL_DECLARED_INLINE_P (olddecl)
1341 && DECL_UNINLINABLE (newdecl)
1342 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1344 if (warning (OPT_Wattributes, "function %q+D redeclared with "
1345 "attribute noinline", newdecl))
1346 inform (DECL_SOURCE_LOCATION (olddecl),
1347 "previous declaration of %qD was inline",
1348 olddecl);
1352 /* Check for redeclaration and other discrepancies. */
1353 if (TREE_CODE (olddecl) == FUNCTION_DECL
1354 && DECL_ARTIFICIAL (olddecl))
1356 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1357 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1359 /* Avoid warnings redeclaring built-ins which have not been
1360 explicitly declared. */
1361 if (DECL_ANTICIPATED (olddecl))
1362 return NULL_TREE;
1364 /* If you declare a built-in or predefined function name as static,
1365 the old definition is overridden, but optionally warn this was a
1366 bad choice of name. */
1367 if (! TREE_PUBLIC (newdecl))
1369 warning (OPT_Wshadow,
1370 DECL_BUILT_IN (olddecl)
1371 ? G_("shadowing built-in function %q#D")
1372 : G_("shadowing library function %q#D"), olddecl);
1373 /* Discard the old built-in function. */
1374 return NULL_TREE;
1376 /* If the built-in is not ansi, then programs can override
1377 it even globally without an error. */
1378 else if (! DECL_BUILT_IN (olddecl))
1379 warning (0, "library function %q#D redeclared as non-function %q+#D",
1380 olddecl, newdecl);
1381 else
1382 error ("declaration of %q+#D conflicts with built-in "
1383 "declaration %q#D", newdecl, olddecl);
1384 return NULL_TREE;
1386 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1388 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1389 error_at (DECL_SOURCE_LOCATION (newdecl),
1390 "redeclaration of %<pragma omp declare reduction%>");
1391 inform (DECL_SOURCE_LOCATION (olddecl),
1392 "previous %<pragma omp declare reduction%> declaration");
1393 return error_mark_node;
1395 else if (!types_match)
1397 /* Avoid warnings redeclaring built-ins which have not been
1398 explicitly declared. */
1399 if (DECL_ANTICIPATED (olddecl))
1401 /* Deal with fileptr_type_node. FILE type is not known
1402 at the time we create the builtins. */
1403 tree t1, t2;
1405 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1406 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1407 t1 || t2;
1408 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1409 if (!t1 || !t2)
1410 break;
1411 else if (TREE_VALUE (t2) == fileptr_type_node)
1413 tree t = TREE_VALUE (t1);
1415 if (TYPE_PTR_P (t)
1416 && TYPE_IDENTIFIER (TREE_TYPE (t))
1417 == get_identifier ("FILE")
1418 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1420 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1422 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1423 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1424 types_match = decls_match (newdecl, olddecl);
1425 if (types_match)
1426 return duplicate_decls (newdecl, olddecl,
1427 newdecl_is_friend);
1428 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1431 else if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1432 break;
1434 else if ((DECL_EXTERN_C_P (newdecl)
1435 && DECL_EXTERN_C_P (olddecl))
1436 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1437 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1439 /* A near match; override the builtin. */
1441 if (TREE_PUBLIC (newdecl))
1442 warning (0, "new declaration %q+#D ambiguates built-in "
1443 "declaration %q#D", newdecl, olddecl);
1444 else
1445 warning (OPT_Wshadow,
1446 DECL_BUILT_IN (olddecl)
1447 ? G_("shadowing built-in function %q#D")
1448 : G_("shadowing library function %q#D"), olddecl);
1450 else
1451 /* Discard the old built-in function. */
1452 return NULL_TREE;
1454 /* Replace the old RTL to avoid problems with inlining. */
1455 COPY_DECL_RTL (newdecl, olddecl);
1457 /* Even if the types match, prefer the new declarations type for
1458 built-ins which have not been explicitly declared, for
1459 exception lists, etc... */
1460 else if (DECL_IS_BUILTIN (olddecl))
1462 tree type = TREE_TYPE (newdecl);
1463 tree attribs = (*targetm.merge_type_attributes)
1464 (TREE_TYPE (olddecl), type);
1466 type = cp_build_type_attribute_variant (type, attribs);
1467 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1470 /* If a function is explicitly declared "throw ()", propagate that to
1471 the corresponding builtin. */
1472 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1473 && DECL_ANTICIPATED (olddecl)
1474 && TREE_NOTHROW (newdecl)
1475 && !TREE_NOTHROW (olddecl))
1477 enum built_in_function fncode = DECL_FUNCTION_CODE (olddecl);
1478 tree tmpdecl = builtin_decl_explicit (fncode);
1479 if (tmpdecl && tmpdecl != olddecl && types_match)
1480 TREE_NOTHROW (tmpdecl) = 1;
1483 /* Whether or not the builtin can throw exceptions has no
1484 bearing on this declarator. */
1485 TREE_NOTHROW (olddecl) = 0;
1487 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1489 /* If a builtin function is redeclared as `static', merge
1490 the declarations, but make the original one static. */
1491 DECL_THIS_STATIC (olddecl) = 1;
1492 TREE_PUBLIC (olddecl) = 0;
1494 /* Make the old declaration consistent with the new one so
1495 that all remnants of the builtin-ness of this function
1496 will be banished. */
1497 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1498 COPY_DECL_RTL (newdecl, olddecl);
1501 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1503 /* C++ Standard, 3.3, clause 4:
1504 "[Note: a namespace name or a class template name must be unique
1505 in its declarative region (7.3.2, clause 14). ]" */
1506 if (TREE_CODE (olddecl) != NAMESPACE_DECL
1507 && TREE_CODE (newdecl) != NAMESPACE_DECL
1508 && (TREE_CODE (olddecl) != TEMPLATE_DECL
1509 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) != TYPE_DECL)
1510 && (TREE_CODE (newdecl) != TEMPLATE_DECL
1511 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != TYPE_DECL))
1513 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1514 && TREE_CODE (newdecl) != TYPE_DECL)
1515 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1516 && TREE_CODE (olddecl) != TYPE_DECL))
1518 /* We do nothing special here, because C++ does such nasty
1519 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1520 get shadowed, and know that if we need to find a TYPE_DECL
1521 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1522 slot of the identifier. */
1523 return NULL_TREE;
1526 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1527 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1528 || (TREE_CODE (olddecl) == FUNCTION_DECL
1529 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1530 return NULL_TREE;
1533 error ("%q#D redeclared as different kind of symbol", newdecl);
1534 if (TREE_CODE (olddecl) == TREE_LIST)
1535 olddecl = TREE_VALUE (olddecl);
1536 inform (DECL_SOURCE_LOCATION (olddecl),
1537 "previous declaration %q#D", olddecl);
1539 return error_mark_node;
1541 else if (!types_match)
1543 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1544 /* These are certainly not duplicate declarations; they're
1545 from different scopes. */
1546 return NULL_TREE;
1548 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1550 /* The name of a class template may not be declared to refer to
1551 any other template, class, function, object, namespace, value,
1552 or type in the same scope. */
1553 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1554 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1556 error ("conflicting declaration of template %q+#D", newdecl);
1557 inform (DECL_SOURCE_LOCATION (olddecl),
1558 "previous declaration %q#D", olddecl);
1559 return error_mark_node;
1561 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1562 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1563 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1564 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1565 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1566 DECL_TEMPLATE_PARMS (olddecl))
1567 /* Template functions can be disambiguated by
1568 return type. */
1569 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1570 TREE_TYPE (TREE_TYPE (olddecl))))
1572 error ("ambiguating new declaration %q+#D", newdecl);
1573 inform (DECL_SOURCE_LOCATION (olddecl),
1574 "old declaration %q#D", olddecl);
1576 return NULL_TREE;
1578 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1580 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1582 error ("conflicting declaration of C function %q+#D",
1583 newdecl);
1584 inform (DECL_SOURCE_LOCATION (olddecl),
1585 "previous declaration %q#D", olddecl);
1586 return NULL_TREE;
1588 /* For function versions, params and types match, but they
1589 are not ambiguous. */
1590 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1591 && !DECL_FUNCTION_VERSIONED (olddecl))
1592 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1593 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1595 error ("ambiguating new declaration of %q+#D", newdecl);
1596 inform (DECL_SOURCE_LOCATION (olddecl),
1597 "old declaration %q#D", olddecl);
1598 return error_mark_node;
1600 else
1601 return NULL_TREE;
1603 else
1605 error ("conflicting declaration %q+#D", newdecl);
1606 inform (DECL_SOURCE_LOCATION (olddecl),
1607 "previous declaration as %q#D", olddecl);
1608 return error_mark_node;
1611 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1612 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1613 && (!DECL_TEMPLATE_INFO (newdecl)
1614 || (DECL_TI_TEMPLATE (newdecl)
1615 != DECL_TI_TEMPLATE (olddecl))))
1616 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1617 && (!DECL_TEMPLATE_INFO (olddecl)
1618 || (DECL_TI_TEMPLATE (olddecl)
1619 != DECL_TI_TEMPLATE (newdecl))))))
1620 /* It's OK to have a template specialization and a non-template
1621 with the same type, or to have specializations of two
1622 different templates with the same type. Note that if one is a
1623 specialization, and the other is an instantiation of the same
1624 template, that we do not exit at this point. That situation
1625 can occur if we instantiate a template class, and then
1626 specialize one of its methods. This situation is valid, but
1627 the declarations must be merged in the usual way. */
1628 return NULL_TREE;
1629 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1630 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1631 && !DECL_USE_TEMPLATE (newdecl))
1632 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1633 && !DECL_USE_TEMPLATE (olddecl))))
1634 /* One of the declarations is a template instantiation, and the
1635 other is not a template at all. That's OK. */
1636 return NULL_TREE;
1637 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1639 /* In [namespace.alias] we have:
1641 In a declarative region, a namespace-alias-definition can be
1642 used to redefine a namespace-alias declared in that declarative
1643 region to refer only to the namespace to which it already
1644 refers.
1646 Therefore, if we encounter a second alias directive for the same
1647 alias, we can just ignore the second directive. */
1648 if (DECL_NAMESPACE_ALIAS (newdecl)
1649 && (DECL_NAMESPACE_ALIAS (newdecl)
1650 == DECL_NAMESPACE_ALIAS (olddecl)))
1651 return olddecl;
1652 /* [namespace.alias]
1654 A namespace-name or namespace-alias shall not be declared as
1655 the name of any other entity in the same declarative region.
1656 A namespace-name defined at global scope shall not be
1657 declared as the name of any other entity in any global scope
1658 of the program. */
1659 error ("conflicting declaration of namespace %q+D", newdecl);
1660 inform (DECL_SOURCE_LOCATION (olddecl),
1661 "previous declaration of namespace %qD here", olddecl);
1662 return error_mark_node;
1664 else
1666 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1667 if (errmsg)
1669 error_at (DECL_SOURCE_LOCATION (newdecl), errmsg, newdecl);
1670 if (DECL_NAME (olddecl) != NULL_TREE)
1671 inform (input_location,
1672 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1673 ? G_("%q+#D previously defined here")
1674 : G_("%q+#D previously declared here"), olddecl);
1675 return error_mark_node;
1677 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1678 && DECL_INITIAL (olddecl) != NULL_TREE
1679 && !prototype_p (TREE_TYPE (olddecl))
1680 && prototype_p (TREE_TYPE (newdecl)))
1682 /* Prototype decl follows defn w/o prototype. */
1683 if (warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1684 "prototype specified for %q+#D", newdecl))
1685 inform (DECL_SOURCE_LOCATION (olddecl),
1686 "previous non-prototype definition here");
1688 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1689 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1691 /* [dcl.link]
1692 If two declarations of the same function or object
1693 specify different linkage-specifications ..., the program
1694 is ill-formed.... Except for functions with C++ linkage,
1695 a function declaration without a linkage specification
1696 shall not precede the first linkage specification for
1697 that function. A function can be declared without a
1698 linkage specification after an explicit linkage
1699 specification has been seen; the linkage explicitly
1700 specified in the earlier declaration is not affected by
1701 such a function declaration.
1703 DR 563 raises the question why the restrictions on
1704 functions should not also apply to objects. Older
1705 versions of G++ silently ignore the linkage-specification
1706 for this example:
1708 namespace N {
1709 extern int i;
1710 extern "C" int i;
1713 which is clearly wrong. Therefore, we now treat objects
1714 like functions. */
1715 if (current_lang_depth () == 0)
1717 /* There is no explicit linkage-specification, so we use
1718 the linkage from the previous declaration. */
1719 if (!DECL_LANG_SPECIFIC (newdecl))
1720 retrofit_lang_decl (newdecl);
1721 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1723 else
1725 error ("conflicting declaration of %q+#D with %qL linkage",
1726 newdecl, DECL_LANGUAGE (newdecl));
1727 inform (DECL_SOURCE_LOCATION (olddecl),
1728 "previous declaration with %qL linkage",
1729 DECL_LANGUAGE (olddecl));
1733 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1735 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1737 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1738 if (DECL_FUNCTION_MEMBER_P (olddecl)
1739 && (/* grokfndecl passes member function templates too
1740 as FUNCTION_DECLs. */
1741 DECL_TEMPLATE_INFO (olddecl)
1742 /* C++11 8.3.6/6.
1743 Default arguments for a member function of a class
1744 template shall be specified on the initial declaration
1745 of the member function within the class template. */
1746 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
1747 check_redeclaration_no_default_args (newdecl);
1748 else
1750 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1751 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1752 int i = 1;
1754 for (; t1 && t1 != void_list_node;
1755 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1756 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1758 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
1759 TREE_PURPOSE (t2)))
1761 if (permerror (input_location,
1762 "default argument given for parameter "
1763 "%d of %q#D", i, newdecl))
1764 inform (DECL_SOURCE_LOCATION (olddecl),
1765 "previous specification in %q#D here",
1766 olddecl);
1768 else
1770 error ("default argument given for parameter %d "
1771 "of %q#D", i, newdecl);
1772 inform (DECL_SOURCE_LOCATION (olddecl),
1773 "previous specification in %q#D here",
1774 olddecl);
1781 /* Do not merge an implicit typedef with an explicit one. In:
1783 class A;
1785 typedef class A A __attribute__ ((foo));
1787 the attribute should apply only to the typedef. */
1788 if (TREE_CODE (olddecl) == TYPE_DECL
1789 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1790 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1791 return NULL_TREE;
1793 /* If new decl is `static' and an `extern' was seen previously,
1794 warn about it. */
1795 warn_extern_redeclared_static (newdecl, olddecl);
1797 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1798 return error_mark_node;
1800 /* We have committed to returning 1 at this point. */
1801 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1803 /* Now that functions must hold information normally held
1804 by field decls, there is extra work to do so that
1805 declaration information does not get destroyed during
1806 definition. */
1807 if (DECL_VINDEX (olddecl))
1808 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1809 if (DECL_CONTEXT (olddecl))
1810 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1811 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1812 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1813 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1814 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1815 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1816 DECL_FINAL_P (newdecl) |= DECL_FINAL_P (olddecl);
1817 DECL_OVERRIDE_P (newdecl) |= DECL_OVERRIDE_P (olddecl);
1818 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1819 if (DECL_OVERLOADED_OPERATOR_P (olddecl) != ERROR_MARK)
1820 SET_OVERLOADED_OPERATOR_CODE
1821 (newdecl, DECL_OVERLOADED_OPERATOR_P (olddecl));
1822 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1824 /* Optionally warn about more than one declaration for the same
1825 name, but don't warn about a function declaration followed by a
1826 definition. */
1827 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1828 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1829 /* Don't warn about extern decl followed by definition. */
1830 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1831 /* Don't warn about friends, let add_friend take care of it. */
1832 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1833 /* Don't warn about declaration followed by specialization. */
1834 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1835 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1837 if (warning (OPT_Wredundant_decls,
1838 "redundant redeclaration of %q+D in same scope",
1839 newdecl))
1840 inform (DECL_SOURCE_LOCATION (olddecl),
1841 "previous declaration of %qD", olddecl);
1844 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1845 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1847 if (DECL_DELETED_FN (newdecl))
1849 error ("deleted definition of %q+D", newdecl);
1850 inform (DECL_SOURCE_LOCATION (olddecl),
1851 "previous declaration of %qD", olddecl);
1853 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
1857 /* Deal with C++: must preserve virtual function table size. */
1858 if (TREE_CODE (olddecl) == TYPE_DECL)
1860 tree newtype = TREE_TYPE (newdecl);
1861 tree oldtype = TREE_TYPE (olddecl);
1863 if (newtype != error_mark_node && oldtype != error_mark_node
1864 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1865 CLASSTYPE_FRIEND_CLASSES (newtype)
1866 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1868 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1871 /* Copy all the DECL_... slots specified in the new decl
1872 except for any that we copy here from the old type. */
1873 DECL_ATTRIBUTES (newdecl)
1874 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1876 if (DECL_DECLARES_FUNCTION_P (olddecl) && DECL_DECLARES_FUNCTION_P (newdecl))
1878 olddecl_friend = DECL_FRIEND_P (olddecl);
1879 hidden_friend = (DECL_ANTICIPATED (olddecl)
1880 && DECL_HIDDEN_FRIEND_P (olddecl)
1881 && newdecl_is_friend);
1882 if (!hidden_friend)
1884 DECL_ANTICIPATED (olddecl) = 0;
1885 DECL_HIDDEN_FRIEND_P (olddecl) = 0;
1889 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1891 tree old_result;
1892 tree new_result;
1893 old_result = DECL_TEMPLATE_RESULT (olddecl);
1894 new_result = DECL_TEMPLATE_RESULT (newdecl);
1895 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
1896 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
1897 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
1898 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
1900 DECL_ATTRIBUTES (old_result)
1901 = (*targetm.merge_decl_attributes) (old_result, new_result);
1903 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1905 /* Per C++11 8.3.6/4, default arguments cannot be added in later
1906 declarations of a function template. */
1907 if (DECL_SOURCE_LOCATION (newdecl)
1908 != DECL_SOURCE_LOCATION (olddecl))
1909 check_redeclaration_no_default_args (newdecl);
1911 check_default_args (newdecl);
1913 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
1914 && DECL_INITIAL (new_result))
1916 if (DECL_INITIAL (old_result))
1917 DECL_UNINLINABLE (old_result) = 1;
1918 else
1919 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
1920 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
1921 DECL_NOT_REALLY_EXTERN (old_result)
1922 = DECL_NOT_REALLY_EXTERN (new_result);
1923 DECL_INTERFACE_KNOWN (old_result)
1924 = DECL_INTERFACE_KNOWN (new_result);
1925 DECL_DECLARED_INLINE_P (old_result)
1926 = DECL_DECLARED_INLINE_P (new_result);
1927 DECL_DISREGARD_INLINE_LIMITS (old_result)
1928 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
1931 else
1933 DECL_DECLARED_INLINE_P (old_result)
1934 |= DECL_DECLARED_INLINE_P (new_result);
1935 DECL_DISREGARD_INLINE_LIMITS (old_result)
1936 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
1937 check_redeclaration_exception_specification (newdecl, olddecl);
1941 /* If the new declaration is a definition, update the file and
1942 line information on the declaration, and also make
1943 the old declaration the same definition. */
1944 if (DECL_INITIAL (new_result) != NULL_TREE)
1946 DECL_SOURCE_LOCATION (olddecl)
1947 = DECL_SOURCE_LOCATION (old_result)
1948 = DECL_SOURCE_LOCATION (newdecl);
1949 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
1950 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1952 tree parm;
1953 DECL_ARGUMENTS (old_result)
1954 = DECL_ARGUMENTS (new_result);
1955 for (parm = DECL_ARGUMENTS (old_result); parm;
1956 parm = DECL_CHAIN (parm))
1957 DECL_CONTEXT (parm) = old_result;
1961 return olddecl;
1964 if (types_match)
1966 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1967 check_redeclaration_exception_specification (newdecl, olddecl);
1969 /* Automatically handles default parameters. */
1970 tree oldtype = TREE_TYPE (olddecl);
1971 tree newtype;
1973 /* For typedefs use the old type, as the new type's DECL_NAME points
1974 at newdecl, which will be ggc_freed. */
1975 if (TREE_CODE (newdecl) == TYPE_DECL)
1976 newtype = oldtype;
1977 else
1978 /* Merge the data types specified in the two decls. */
1979 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1981 if (VAR_P (newdecl))
1983 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
1984 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
1985 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
1986 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
1987 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
1988 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
1990 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
1991 if (DECL_LANG_SPECIFIC (olddecl)
1992 && CP_DECL_THREADPRIVATE_P (olddecl))
1994 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
1995 if (!DECL_LANG_SPECIFIC (newdecl))
1996 retrofit_lang_decl (newdecl);
1998 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
2002 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2004 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2005 check_default_args (newdecl);
2007 /* Lay the type out, unless already done. */
2008 if (! same_type_p (newtype, oldtype)
2009 && TREE_TYPE (newdecl) != error_mark_node
2010 && !(processing_template_decl && uses_template_parms (newdecl)))
2011 layout_type (TREE_TYPE (newdecl));
2013 if ((VAR_P (newdecl)
2014 || TREE_CODE (newdecl) == PARM_DECL
2015 || TREE_CODE (newdecl) == RESULT_DECL
2016 || TREE_CODE (newdecl) == FIELD_DECL
2017 || TREE_CODE (newdecl) == TYPE_DECL)
2018 && !(processing_template_decl && uses_template_parms (newdecl)))
2019 layout_decl (newdecl, 0);
2021 /* Merge the type qualifiers. */
2022 if (TREE_READONLY (newdecl))
2023 TREE_READONLY (olddecl) = 1;
2024 if (TREE_THIS_VOLATILE (newdecl))
2025 TREE_THIS_VOLATILE (olddecl) = 1;
2026 if (TREE_NOTHROW (newdecl))
2027 TREE_NOTHROW (olddecl) = 1;
2029 /* Merge deprecatedness. */
2030 if (TREE_DEPRECATED (newdecl))
2031 TREE_DEPRECATED (olddecl) = 1;
2033 /* Preserve function specific target and optimization options */
2034 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2036 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2037 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2038 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2039 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2041 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2042 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2043 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2044 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2047 /* Merge the initialization information. */
2048 if (DECL_INITIAL (newdecl) == NULL_TREE
2049 && DECL_INITIAL (olddecl) != NULL_TREE)
2051 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2052 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2053 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2055 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2056 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2060 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2062 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2063 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2064 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2065 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2066 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
2067 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2068 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2069 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2070 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2071 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2072 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2073 /* Keep the old RTL. */
2074 COPY_DECL_RTL (olddecl, newdecl);
2076 else if (VAR_P (newdecl)
2077 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2079 /* Keep the old RTL. We cannot keep the old RTL if the old
2080 declaration was for an incomplete object and the new
2081 declaration is not since many attributes of the RTL will
2082 change. */
2083 COPY_DECL_RTL (olddecl, newdecl);
2086 /* If cannot merge, then use the new type and qualifiers,
2087 and don't preserve the old rtl. */
2088 else
2090 /* Clean out any memory we had of the old declaration. */
2091 tree oldstatic = value_member (olddecl, static_aggregates);
2092 if (oldstatic)
2093 TREE_VALUE (oldstatic) = error_mark_node;
2095 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2096 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2097 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2098 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2101 /* Merge the storage class information. */
2102 merge_weak (newdecl, olddecl);
2104 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2105 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2106 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2107 if (! DECL_EXTERNAL (olddecl))
2108 DECL_EXTERNAL (newdecl) = 0;
2110 new_template_info = NULL_TREE;
2111 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2113 bool new_redefines_gnu_inline = false;
2115 if (new_defines_function
2116 && ((DECL_INTERFACE_KNOWN (olddecl)
2117 && TREE_CODE (olddecl) == FUNCTION_DECL)
2118 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2119 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2120 == FUNCTION_DECL))))
2122 tree fn = olddecl;
2124 if (TREE_CODE (fn) == TEMPLATE_DECL)
2125 fn = DECL_TEMPLATE_RESULT (olddecl);
2127 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2130 if (!new_redefines_gnu_inline)
2132 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2133 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2134 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2136 DECL_TEMPLATE_INSTANTIATED (newdecl)
2137 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2138 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2140 /* If the OLDDECL is an instantiation and/or specialization,
2141 then the NEWDECL must be too. But, it may not yet be marked
2142 as such if the caller has created NEWDECL, but has not yet
2143 figured out that it is a redeclaration. */
2144 if (!DECL_USE_TEMPLATE (newdecl))
2145 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2147 /* Don't really know how much of the language-specific
2148 values we should copy from old to new. */
2149 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2150 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
2151 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2152 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2154 if (LANG_DECL_HAS_MIN (newdecl))
2156 DECL_LANG_SPECIFIC (newdecl)->u.min.u2 =
2157 DECL_LANG_SPECIFIC (olddecl)->u.min.u2;
2158 if (DECL_TEMPLATE_INFO (newdecl))
2160 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2161 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2162 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2163 /* Remember the presence of explicit specialization args. */
2164 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2165 = TINFO_USED_TEMPLATE_ID (new_template_info);
2167 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2169 /* Only functions have these fields. */
2170 if (DECL_DECLARES_FUNCTION_P (newdecl))
2172 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2173 DECL_BEFRIENDING_CLASSES (newdecl)
2174 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2175 DECL_BEFRIENDING_CLASSES (olddecl));
2176 /* DECL_THUNKS is only valid for virtual functions,
2177 otherwise it is a DECL_FRIEND_CONTEXT. */
2178 if (DECL_VIRTUAL_P (newdecl))
2179 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2181 /* Only variables have this field. */
2182 else if (VAR_P (newdecl)
2183 && VAR_HAD_UNKNOWN_BOUND (olddecl))
2184 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2187 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2189 tree parm;
2191 /* Merge parameter attributes. */
2192 tree oldarg, newarg;
2193 for (oldarg = DECL_ARGUMENTS(olddecl),
2194 newarg = DECL_ARGUMENTS(newdecl);
2195 oldarg && newarg;
2196 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg)) {
2197 DECL_ATTRIBUTES (newarg)
2198 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2199 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2202 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2203 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2205 /* If newdecl is not a specialization, then it is not a
2206 template-related function at all. And that means that we
2207 should have exited above, returning 0. */
2208 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2210 if (DECL_ODR_USED (olddecl))
2211 /* From [temp.expl.spec]:
2213 If a template, a member template or the member of a class
2214 template is explicitly specialized then that
2215 specialization shall be declared before the first use of
2216 that specialization that would cause an implicit
2217 instantiation to take place, in every translation unit in
2218 which such a use occurs. */
2219 error ("explicit specialization of %qD after first use",
2220 olddecl);
2222 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2223 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2224 && DECL_DECLARED_INLINE_P (newdecl));
2226 /* Don't propagate visibility from the template to the
2227 specialization here. We'll do that in determine_visibility if
2228 appropriate. */
2229 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2231 /* [temp.expl.spec/14] We don't inline explicit specialization
2232 just because the primary template says so. */
2234 /* But still keep DECL_DISREGARD_INLINE_LIMITS in sync with
2235 the always_inline attribute. */
2236 if (DECL_DISREGARD_INLINE_LIMITS (olddecl)
2237 && !DECL_DISREGARD_INLINE_LIMITS (newdecl))
2239 if (DECL_DECLARED_INLINE_P (newdecl))
2240 DECL_DISREGARD_INLINE_LIMITS (newdecl) = true;
2241 else
2242 DECL_ATTRIBUTES (newdecl)
2243 = remove_attribute ("always_inline",
2244 DECL_ATTRIBUTES (newdecl));
2247 else if (new_defines_function && DECL_INITIAL (olddecl))
2249 /* Never inline re-defined extern inline functions.
2250 FIXME: this could be better handled by keeping both
2251 function as separate declarations. */
2252 DECL_UNINLINABLE (newdecl) = 1;
2254 else
2256 if (DECL_PENDING_INLINE_INFO (newdecl) == 0)
2257 DECL_PENDING_INLINE_INFO (newdecl) = DECL_PENDING_INLINE_INFO (olddecl);
2259 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2261 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2262 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2264 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2265 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2266 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2267 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2270 /* Preserve abstractness on cloned [cd]tors. */
2271 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2273 /* Update newdecl's parms to point at olddecl. */
2274 for (parm = DECL_ARGUMENTS (newdecl); parm;
2275 parm = DECL_CHAIN (parm))
2276 DECL_CONTEXT (parm) = olddecl;
2278 if (! types_match)
2280 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2281 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2282 COPY_DECL_RTL (newdecl, olddecl);
2284 if (! types_match || new_defines_function)
2286 /* These need to be copied so that the names are available.
2287 Note that if the types do match, we'll preserve inline
2288 info and other bits, but if not, we won't. */
2289 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2290 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2292 /* If redeclaring a builtin function, it stays built in
2293 if newdecl is a gnu_inline definition, or if newdecl is just
2294 a declaration. */
2295 if (DECL_BUILT_IN (olddecl)
2296 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2298 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2299 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2300 /* If we're keeping the built-in definition, keep the rtl,
2301 regardless of declaration matches. */
2302 COPY_DECL_RTL (olddecl, newdecl);
2303 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2305 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2306 switch (fncode)
2308 /* If a compatible prototype of these builtin functions
2309 is seen, assume the runtime implements it with the
2310 expected semantics. */
2311 case BUILT_IN_STPCPY:
2312 if (builtin_decl_explicit_p (fncode))
2313 set_builtin_decl_implicit_p (fncode, true);
2314 break;
2315 default:
2316 if (builtin_decl_explicit_p (fncode))
2317 set_builtin_decl_declared_p (fncode, true);
2318 break;
2322 if (new_defines_function)
2323 /* If defining a function declared with other language
2324 linkage, use the previously declared language linkage. */
2325 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2326 else if (types_match)
2328 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2329 /* Don't clear out the arguments if we're just redeclaring a
2330 function. */
2331 if (DECL_ARGUMENTS (olddecl))
2332 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2335 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2336 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2338 /* Now preserve various other info from the definition. */
2339 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2340 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2341 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2342 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2344 /* Warn about conflicting visibility specifications. */
2345 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2346 && DECL_VISIBILITY_SPECIFIED (newdecl)
2347 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2349 if (warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wattributes,
2350 "%qD: visibility attribute ignored because it "
2351 "conflicts with previous declaration", newdecl))
2352 inform (DECL_SOURCE_LOCATION (olddecl),
2353 "previous declaration of %qD", olddecl);
2355 /* Choose the declaration which specified visibility. */
2356 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2358 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2359 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2361 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2362 so keep this behavior. */
2363 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2365 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2366 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2368 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2369 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2371 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
2372 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2374 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2375 if (TREE_CODE (newdecl) == FIELD_DECL)
2376 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2378 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2379 with that from NEWDECL below. */
2380 if (DECL_LANG_SPECIFIC (olddecl))
2382 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2383 != DECL_LANG_SPECIFIC (newdecl));
2384 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2387 /* Merge the USED information. */
2388 if (TREE_USED (olddecl))
2389 TREE_USED (newdecl) = 1;
2390 else if (TREE_USED (newdecl))
2391 TREE_USED (olddecl) = 1;
2392 if (VAR_P (newdecl))
2394 if (DECL_READ_P (olddecl))
2395 DECL_READ_P (newdecl) = 1;
2396 else if (DECL_READ_P (newdecl))
2397 DECL_READ_P (olddecl) = 1;
2399 if (DECL_PRESERVE_P (olddecl))
2400 DECL_PRESERVE_P (newdecl) = 1;
2401 else if (DECL_PRESERVE_P (newdecl))
2402 DECL_PRESERVE_P (olddecl) = 1;
2404 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2405 to olddecl and deleted. */
2406 if (TREE_CODE (newdecl) == FUNCTION_DECL
2407 && DECL_FUNCTION_VERSIONED (olddecl))
2409 /* Set the flag for newdecl so that it gets copied to olddecl. */
2410 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2411 /* newdecl will be purged after copying to olddecl and is no longer
2412 a version. */
2413 cgraph_node::delete_function_version (newdecl);
2416 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2418 int function_size;
2419 struct symtab_node *snode = symtab_node::get (olddecl);
2421 function_size = sizeof (struct tree_decl_common);
2423 memcpy ((char *) olddecl + sizeof (struct tree_common),
2424 (char *) newdecl + sizeof (struct tree_common),
2425 function_size - sizeof (struct tree_common));
2427 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2428 (char *) newdecl + sizeof (struct tree_decl_common),
2429 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2431 /* Preserve symtab node mapping. */
2432 olddecl->decl_with_vis.symtab_node = snode;
2434 if (new_template_info)
2435 /* If newdecl is a template instantiation, it is possible that
2436 the following sequence of events has occurred:
2438 o A friend function was declared in a class template. The
2439 class template was instantiated.
2441 o The instantiation of the friend declaration was
2442 recorded on the instantiation list, and is newdecl.
2444 o Later, however, instantiate_class_template called pushdecl
2445 on the newdecl to perform name injection. But, pushdecl in
2446 turn called duplicate_decls when it discovered that another
2447 declaration of a global function with the same name already
2448 existed.
2450 o Here, in duplicate_decls, we decided to clobber newdecl.
2452 If we're going to do that, we'd better make sure that
2453 olddecl, and not newdecl, is on the list of
2454 instantiations so that if we try to do the instantiation
2455 again we won't get the clobbered declaration. */
2456 reregister_specialization (newdecl,
2457 new_template_info,
2458 olddecl);
2460 else
2462 size_t size = tree_code_size (TREE_CODE (newdecl));
2464 memcpy ((char *) olddecl + sizeof (struct tree_common),
2465 (char *) newdecl + sizeof (struct tree_common),
2466 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2467 switch (TREE_CODE (newdecl))
2469 case LABEL_DECL:
2470 case VAR_DECL:
2471 case RESULT_DECL:
2472 case PARM_DECL:
2473 case FIELD_DECL:
2474 case TYPE_DECL:
2475 case CONST_DECL:
2477 struct symtab_node *snode = NULL;
2479 if (TREE_CODE (newdecl) == VAR_DECL
2480 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl) || DECL_EXTERNAL (olddecl)))
2481 snode = symtab_node::get (olddecl);
2482 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2483 (char *) newdecl + sizeof (struct tree_decl_common),
2484 size - sizeof (struct tree_decl_common)
2485 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2486 if (TREE_CODE (newdecl) == VAR_DECL)
2487 olddecl->decl_with_vis.symtab_node = snode;
2489 break;
2490 default:
2491 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2492 (char *) newdecl + sizeof (struct tree_decl_common),
2493 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2494 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2495 break;
2499 if (TREE_CODE (newdecl) == FUNCTION_DECL
2500 || TREE_CODE (newdecl) == VAR_DECL)
2502 if (DECL_EXTERNAL (olddecl)
2503 || TREE_PUBLIC (olddecl)
2504 || TREE_STATIC (olddecl))
2506 /* Merge the section attribute.
2507 We want to issue an error if the sections conflict but that must be
2508 done later in decl_attributes since we are called before attributes
2509 are assigned. */
2510 if (DECL_SECTION_NAME (newdecl) != NULL)
2511 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2513 if (DECL_ONE_ONLY (newdecl))
2515 struct symtab_node *oldsym, *newsym;
2516 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2517 oldsym = cgraph_node::get_create (olddecl);
2518 else
2519 oldsym = varpool_node::get_create (olddecl);
2520 newsym = symtab_node::get (newdecl);
2521 oldsym->set_comdat_group (newsym->get_comdat_group ());
2525 if (TREE_CODE (newdecl) == VAR_DECL
2526 && DECL_THREAD_LOCAL_P (newdecl))
2527 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2530 DECL_UID (olddecl) = olddecl_uid;
2531 if (olddecl_friend)
2532 DECL_FRIEND_P (olddecl) = 1;
2533 if (hidden_friend)
2535 DECL_ANTICIPATED (olddecl) = 1;
2536 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2539 /* NEWDECL contains the merged attribute lists.
2540 Update OLDDECL to be the same. */
2541 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2543 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2544 so that encode_section_info has a chance to look at the new decl
2545 flags and attributes. */
2546 if (DECL_RTL_SET_P (olddecl)
2547 && (TREE_CODE (olddecl) == FUNCTION_DECL
2548 || (VAR_P (olddecl)
2549 && TREE_STATIC (olddecl))))
2550 make_decl_rtl (olddecl);
2552 /* The NEWDECL will no longer be needed. Because every out-of-class
2553 declaration of a member results in a call to duplicate_decls,
2554 freeing these nodes represents in a significant savings.
2556 Before releasing the node, be sore to remove function from symbol
2557 table that might have been inserted there to record comdat group.
2558 Be sure to however do not free DECL_STRUCT_FUNCTION becuase this
2559 structure is shared in between newdecl and oldecl. */
2560 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2561 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2562 if (TREE_CODE (newdecl) == FUNCTION_DECL
2563 || TREE_CODE (newdecl) == VAR_DECL)
2565 struct symtab_node *snode = symtab_node::get (newdecl);
2566 if (snode)
2567 snode->remove ();
2569 ggc_free (newdecl);
2571 return olddecl;
2574 /* Return zero if the declaration NEWDECL is valid
2575 when the declaration OLDDECL (assumed to be for the same name)
2576 has already been seen.
2577 Otherwise return an error message format string with a %s
2578 where the identifier should go. */
2580 static const char *
2581 redeclaration_error_message (tree newdecl, tree olddecl)
2583 if (TREE_CODE (newdecl) == TYPE_DECL)
2585 /* Because C++ can put things into name space for free,
2586 constructs like "typedef struct foo { ... } foo"
2587 would look like an erroneous redeclaration. */
2588 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2589 return NULL;
2590 else
2591 return G_("redefinition of %q#D");
2593 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2595 /* If this is a pure function, its olddecl will actually be
2596 the original initialization to `0' (which we force to call
2597 abort()). Don't complain about redefinition in this case. */
2598 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2599 && DECL_INITIAL (olddecl) == NULL_TREE)
2600 return NULL;
2602 /* If both functions come from different namespaces, this is not
2603 a redeclaration - this is a conflict with a used function. */
2604 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2605 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2606 && ! decls_match (olddecl, newdecl))
2607 return G_("%qD conflicts with used function");
2609 /* We'll complain about linkage mismatches in
2610 warn_extern_redeclared_static. */
2612 /* Defining the same name twice is no good. */
2613 if (DECL_INITIAL (olddecl) != NULL_TREE
2614 && DECL_INITIAL (newdecl) != NULL_TREE)
2616 if (DECL_NAME (olddecl) == NULL_TREE)
2617 return G_("%q#D not declared in class");
2618 else if (!GNU_INLINE_P (olddecl)
2619 || GNU_INLINE_P (newdecl))
2620 return G_("redefinition of %q#D");
2623 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2625 bool olda = GNU_INLINE_P (olddecl);
2626 bool newa = GNU_INLINE_P (newdecl);
2628 if (olda != newa)
2630 if (newa)
2631 return G_("%q+D redeclared inline with "
2632 "%<gnu_inline%> attribute");
2633 else
2634 return G_("%q+D redeclared inline without "
2635 "%<gnu_inline%> attribute");
2639 check_abi_tag_redeclaration
2640 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2641 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2643 return NULL;
2645 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2647 tree nt, ot;
2649 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2651 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2652 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2653 return G_("redefinition of %q#D");
2654 return NULL;
2657 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2658 || (DECL_TEMPLATE_RESULT (newdecl)
2659 == DECL_TEMPLATE_RESULT (olddecl)))
2660 return NULL;
2662 nt = DECL_TEMPLATE_RESULT (newdecl);
2663 if (DECL_TEMPLATE_INFO (nt))
2664 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2665 ot = DECL_TEMPLATE_RESULT (olddecl);
2666 if (DECL_TEMPLATE_INFO (ot))
2667 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2668 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2669 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2670 return G_("redefinition of %q#D");
2672 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2674 bool olda = GNU_INLINE_P (ot);
2675 bool newa = GNU_INLINE_P (nt);
2677 if (olda != newa)
2679 if (newa)
2680 return G_("%q+D redeclared inline with "
2681 "%<gnu_inline%> attribute");
2682 else
2683 return G_("%q+D redeclared inline without "
2684 "%<gnu_inline%> attribute");
2688 /* Core issue #226 (C++0x):
2690 If a friend function template declaration specifies a
2691 default template-argument, that declaration shall be a
2692 definition and shall be the only declaration of the
2693 function template in the translation unit. */
2694 if ((cxx_dialect != cxx98)
2695 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2696 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2697 /*is_primary=*/true,
2698 /*is_partial=*/false,
2699 /*is_friend_decl=*/2))
2700 return G_("redeclaration of friend %q#D "
2701 "may not have default template arguments");
2703 return NULL;
2705 else if (VAR_P (newdecl)
2706 && DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl)
2707 && (! DECL_LANG_SPECIFIC (olddecl)
2708 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2709 || DECL_THREAD_LOCAL_P (newdecl)))
2711 /* Only variables can be thread-local, and all declarations must
2712 agree on this property. */
2713 if (DECL_THREAD_LOCAL_P (newdecl))
2714 return G_("thread-local declaration of %q#D follows "
2715 "non-thread-local declaration");
2716 else
2717 return G_("non-thread-local declaration of %q#D follows "
2718 "thread-local declaration");
2720 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2722 /* The objects have been declared at namespace scope. If either
2723 is a member of an anonymous union, then this is an invalid
2724 redeclaration. For example:
2726 int i;
2727 union { int i; };
2729 is invalid. */
2730 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2731 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2732 return G_("redeclaration of %q#D");
2733 /* If at least one declaration is a reference, there is no
2734 conflict. For example:
2736 int i = 3;
2737 extern int i;
2739 is valid. */
2740 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2741 return NULL;
2742 /* Reject two definitions. */
2743 return G_("redefinition of %q#D");
2745 else
2747 /* Objects declared with block scope: */
2748 /* Reject two definitions, and reject a definition
2749 together with an external reference. */
2750 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2751 return G_("redeclaration of %q#D");
2752 return NULL;
2756 /* Hash and equality functions for the named_label table. */
2758 hashval_t
2759 named_label_hasher::hash (named_label_entry *ent)
2761 return DECL_UID (ent->label_decl);
2764 bool
2765 named_label_hasher::equal (named_label_entry *a, named_label_entry *b)
2767 return a->label_decl == b->label_decl;
2770 /* Create a new label, named ID. */
2772 static tree
2773 make_label_decl (tree id, int local_p)
2775 struct named_label_entry *ent;
2776 tree decl;
2778 decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
2780 DECL_CONTEXT (decl) = current_function_decl;
2781 DECL_MODE (decl) = VOIDmode;
2782 C_DECLARED_LABEL_FLAG (decl) = local_p;
2784 /* Say where one reference is to the label, for the sake of the
2785 error if it is not defined. */
2786 DECL_SOURCE_LOCATION (decl) = input_location;
2788 /* Record the fact that this identifier is bound to this label. */
2789 SET_IDENTIFIER_LABEL_VALUE (id, decl);
2791 /* Create the label htab for the function on demand. */
2792 if (!named_labels)
2793 named_labels = hash_table<named_label_hasher>::create_ggc (13);
2795 /* Record this label on the list of labels used in this function.
2796 We do this before calling make_label_decl so that we get the
2797 IDENTIFIER_LABEL_VALUE before the new label is declared. */
2798 ent = ggc_cleared_alloc<named_label_entry> ();
2799 ent->label_decl = decl;
2801 named_label_entry **slot = named_labels->find_slot (ent, INSERT);
2802 gcc_assert (*slot == NULL);
2803 *slot = ent;
2805 return decl;
2808 /* Look for a label named ID in the current function. If one cannot
2809 be found, create one. (We keep track of used, but undefined,
2810 labels, and complain about them at the end of a function.) */
2812 static tree
2813 lookup_label_1 (tree id)
2815 tree decl;
2817 /* You can't use labels at global scope. */
2818 if (current_function_decl == NULL_TREE)
2820 error ("label %qE referenced outside of any function", id);
2821 return NULL_TREE;
2824 /* See if we've already got this label. */
2825 decl = IDENTIFIER_LABEL_VALUE (id);
2826 if (decl != NULL_TREE && DECL_CONTEXT (decl) == current_function_decl)
2827 return decl;
2829 decl = make_label_decl (id, /*local_p=*/0);
2830 return decl;
2833 /* Wrapper for lookup_label_1. */
2835 tree
2836 lookup_label (tree id)
2838 tree ret;
2839 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
2840 ret = lookup_label_1 (id);
2841 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
2842 return ret;
2845 /* Declare a local label named ID. */
2847 tree
2848 declare_local_label (tree id)
2850 tree decl;
2851 cp_label_binding bind;
2853 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
2854 this scope we can restore the old value of IDENTIFIER_TYPE_VALUE. */
2855 bind.prev_value = IDENTIFIER_LABEL_VALUE (id);
2857 decl = make_label_decl (id, /*local_p=*/1);
2858 bind.label = decl;
2859 vec_safe_push (current_binding_level->shadowed_labels, bind);
2861 return decl;
2864 /* Returns nonzero if it is ill-formed to jump past the declaration of
2865 DECL. Returns 2 if it's also a real problem. */
2867 static int
2868 decl_jump_unsafe (tree decl)
2870 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
2871 with automatic storage duration is not in scope to a point where it is
2872 in scope is ill-formed unless the variable has scalar type, class type
2873 with a trivial default constructor and a trivial destructor, a
2874 cv-qualified version of one of these types, or an array of one of the
2875 preceding types and is declared without an initializer (8.5). */
2876 tree type = TREE_TYPE (decl);
2878 if (!VAR_P (decl) || TREE_STATIC (decl)
2879 || type == error_mark_node)
2880 return 0;
2882 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
2883 || variably_modified_type_p (type, NULL_TREE))
2884 return 2;
2886 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
2887 return 1;
2889 return 0;
2892 /* A subroutine of check_previous_goto_1 to identify a branch to the user. */
2894 static bool
2895 identify_goto (tree decl, const location_t *locus)
2897 bool complained = (decl
2898 ? permerror (input_location, "jump to label %qD", decl)
2899 : permerror (input_location, "jump to case label"));
2900 if (complained && locus)
2901 inform (*locus, " from here");
2902 return complained;
2905 /* Check that a single previously seen jump to a newly defined label
2906 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
2907 the jump context; NAMES are the names in scope in LEVEL at the jump
2908 context; LOCUS is the source position of the jump or 0. Returns
2909 true if all is well. */
2911 static bool
2912 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
2913 bool exited_omp, const location_t *locus)
2915 cp_binding_level *b;
2916 bool identified = false, complained = false;
2917 bool saw_eh = false, saw_omp = false;
2919 if (exited_omp)
2921 complained = identify_goto (decl, locus);
2922 if (complained)
2923 inform (input_location, " exits OpenMP structured block");
2924 identified = saw_omp = true;
2927 for (b = current_binding_level; b ; b = b->level_chain)
2929 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
2931 for (new_decls = b->names; new_decls != old_decls;
2932 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
2933 : TREE_CHAIN (new_decls)))
2935 int problem = decl_jump_unsafe (new_decls);
2936 if (! problem)
2937 continue;
2939 if (!identified)
2941 complained = identify_goto (decl, locus);
2942 identified = true;
2944 if (complained)
2946 if (problem > 1)
2947 inform (input_location,
2948 " crosses initialization of %q+#D", new_decls);
2949 else
2950 inform (input_location, " enters scope of %q+#D which has "
2951 "non-trivial destructor", new_decls);
2955 if (b == level)
2956 break;
2957 if ((b->kind == sk_try || b->kind == sk_catch) && !saw_eh)
2959 if (!identified)
2961 complained = identify_goto (decl, locus);
2962 identified = true;
2964 if (complained)
2966 if (b->kind == sk_try)
2967 inform (input_location, " enters try block");
2968 else
2969 inform (input_location, " enters catch block");
2971 saw_eh = true;
2973 if (b->kind == sk_omp && !saw_omp)
2975 if (!identified)
2977 complained = identify_goto (decl, locus);
2978 identified = true;
2980 if (complained)
2981 inform (input_location, " enters OpenMP structured block");
2982 saw_omp = true;
2986 return !identified;
2989 static void
2990 check_previous_goto (tree decl, struct named_label_use_entry *use)
2992 check_previous_goto_1 (decl, use->binding_level,
2993 use->names_in_scope, use->in_omp_scope,
2994 &use->o_goto_locus);
2997 static bool
2998 check_switch_goto (cp_binding_level* level)
3000 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
3003 /* Check that a new jump to a label DECL is OK. Called by
3004 finish_goto_stmt. */
3006 void
3007 check_goto (tree decl)
3009 struct named_label_entry *ent, dummy;
3010 bool saw_catch = false, identified = false, complained = false;
3011 tree bad;
3012 unsigned ix;
3014 /* We can't know where a computed goto is jumping.
3015 So we assume that it's OK. */
3016 if (TREE_CODE (decl) != LABEL_DECL)
3017 return;
3019 /* We didn't record any information about this label when we created it,
3020 and there's not much point since it's trivial to analyze as a return. */
3021 if (decl == cdtor_label)
3022 return;
3024 dummy.label_decl = decl;
3025 ent = named_labels->find (&dummy);
3026 gcc_assert (ent != NULL);
3028 /* If the label hasn't been defined yet, defer checking. */
3029 if (! DECL_INITIAL (decl))
3031 struct named_label_use_entry *new_use;
3033 /* Don't bother creating another use if the last goto had the
3034 same data, and will therefore create the same set of errors. */
3035 if (ent->uses
3036 && ent->uses->names_in_scope == current_binding_level->names)
3037 return;
3039 new_use = ggc_alloc<named_label_use_entry> ();
3040 new_use->binding_level = current_binding_level;
3041 new_use->names_in_scope = current_binding_level->names;
3042 new_use->o_goto_locus = input_location;
3043 new_use->in_omp_scope = false;
3045 new_use->next = ent->uses;
3046 ent->uses = new_use;
3047 return;
3050 if (ent->in_try_scope || ent->in_catch_scope
3051 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3053 complained = permerror (input_location, "jump to label %q+D", decl);
3054 if (complained)
3055 inform (input_location, " from here");
3056 identified = true;
3059 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3061 int u = decl_jump_unsafe (bad);
3063 if (u > 1 && DECL_ARTIFICIAL (bad))
3065 /* Can't skip init of __exception_info. */
3066 if (complained)
3067 inform (DECL_SOURCE_LOCATION (bad), " enters catch block");
3068 saw_catch = true;
3070 else if (complained)
3072 if (u > 1)
3073 inform (input_location, " skips initialization of %q+#D", bad);
3074 else
3075 inform (input_location, " enters scope of %q+#D which has "
3076 "non-trivial destructor", bad);
3080 if (complained)
3082 if (ent->in_try_scope)
3083 inform (input_location, " enters try block");
3084 else if (ent->in_catch_scope && !saw_catch)
3085 inform (input_location, " enters catch block");
3088 if (ent->in_omp_scope)
3090 if (complained)
3091 inform (input_location, " enters OpenMP structured block");
3093 else if (flag_openmp)
3095 cp_binding_level *b;
3096 for (b = current_binding_level; b ; b = b->level_chain)
3098 if (b == ent->binding_level)
3099 break;
3100 if (b->kind == sk_omp)
3102 if (!identified)
3104 complained = permerror (input_location,
3105 "jump to label %q+D", decl);
3106 if (complained)
3107 inform (input_location, " from here");
3108 identified = true;
3110 if (complained)
3111 inform (input_location, " exits OpenMP structured block");
3112 break;
3118 /* Check that a return is ok wrt OpenMP structured blocks.
3119 Called by finish_return_stmt. Returns true if all is well. */
3121 bool
3122 check_omp_return (void)
3124 cp_binding_level *b;
3125 for (b = current_binding_level; b ; b = b->level_chain)
3126 if (b->kind == sk_omp)
3128 error ("invalid exit from OpenMP structured block");
3129 return false;
3131 else if (b->kind == sk_function_parms)
3132 break;
3133 return true;
3136 /* Define a label, specifying the location in the source file.
3137 Return the LABEL_DECL node for the label. */
3139 static tree
3140 define_label_1 (location_t location, tree name)
3142 struct named_label_entry *ent, dummy;
3143 cp_binding_level *p;
3144 tree decl;
3146 decl = lookup_label (name);
3148 dummy.label_decl = decl;
3149 ent = named_labels->find (&dummy);
3150 gcc_assert (ent != NULL);
3152 /* After labels, make any new cleanups in the function go into their
3153 own new (temporary) binding contour. */
3154 for (p = current_binding_level;
3155 p->kind != sk_function_parms;
3156 p = p->level_chain)
3157 p->more_cleanups_ok = 0;
3159 if (name == get_identifier ("wchar_t"))
3160 permerror (input_location, "label named wchar_t");
3162 if (DECL_INITIAL (decl) != NULL_TREE)
3164 error ("duplicate label %qD", decl);
3165 return error_mark_node;
3167 else
3169 struct named_label_use_entry *use;
3171 /* Mark label as having been defined. */
3172 DECL_INITIAL (decl) = error_mark_node;
3173 /* Say where in the source. */
3174 DECL_SOURCE_LOCATION (decl) = location;
3176 ent->binding_level = current_binding_level;
3177 ent->names_in_scope = current_binding_level->names;
3179 for (use = ent->uses; use ; use = use->next)
3180 check_previous_goto (decl, use);
3181 ent->uses = NULL;
3184 return decl;
3187 /* Wrapper for define_label_1. */
3189 tree
3190 define_label (location_t location, tree name)
3192 tree ret;
3193 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3194 ret = define_label_1 (location, name);
3195 timevar_cond_stop (TV_NAME_LOOKUP, running);
3196 return ret;
3200 struct cp_switch
3202 cp_binding_level *level;
3203 struct cp_switch *next;
3204 /* The SWITCH_STMT being built. */
3205 tree switch_stmt;
3206 /* A splay-tree mapping the low element of a case range to the high
3207 element, or NULL_TREE if there is no high element. Used to
3208 determine whether or not a new case label duplicates an old case
3209 label. We need a tree, rather than simply a hash table, because
3210 of the GNU case range extension. */
3211 splay_tree cases;
3214 /* A stack of the currently active switch statements. The innermost
3215 switch statement is on the top of the stack. There is no need to
3216 mark the stack for garbage collection because it is only active
3217 during the processing of the body of a function, and we never
3218 collect at that point. */
3220 static struct cp_switch *switch_stack;
3222 /* Called right after a switch-statement condition is parsed.
3223 SWITCH_STMT is the switch statement being parsed. */
3225 void
3226 push_switch (tree switch_stmt)
3228 struct cp_switch *p = XNEW (struct cp_switch);
3229 p->level = current_binding_level;
3230 p->next = switch_stack;
3231 p->switch_stmt = switch_stmt;
3232 p->cases = splay_tree_new (case_compare, NULL, NULL);
3233 switch_stack = p;
3236 void
3237 pop_switch (void)
3239 struct cp_switch *cs = switch_stack;
3240 location_t switch_location;
3242 /* Emit warnings as needed. */
3243 switch_location = EXPR_LOC_OR_LOC (cs->switch_stmt, input_location);
3244 if (!processing_template_decl)
3245 c_do_switch_warnings (cs->cases, switch_location,
3246 SWITCH_STMT_TYPE (cs->switch_stmt),
3247 SWITCH_STMT_COND (cs->switch_stmt));
3249 splay_tree_delete (cs->cases);
3250 switch_stack = switch_stack->next;
3251 free (cs);
3254 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3255 condition. Note that if TYPE and VALUE are already integral we don't
3256 really do the conversion because the language-independent
3257 warning/optimization code will work better that way. */
3259 static tree
3260 case_conversion (tree type, tree value)
3262 if (value == NULL_TREE)
3263 return value;
3265 if (cxx_dialect >= cxx11
3266 && (SCOPED_ENUM_P (type)
3267 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))))
3269 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3270 type = type_promotes_to (type);
3271 value = (perform_implicit_conversion_flags
3272 (type, value, tf_warning_or_error,
3273 LOOKUP_IMPLICIT | LOOKUP_NO_NON_INTEGRAL));
3275 return cxx_constant_value (value);
3278 /* Note that we've seen a definition of a case label, and complain if this
3279 is a bad place for one. */
3281 tree
3282 finish_case_label (location_t loc, tree low_value, tree high_value)
3284 tree cond, r;
3285 cp_binding_level *p;
3286 tree type;
3288 if (processing_template_decl)
3290 tree label;
3292 /* For templates, just add the case label; we'll do semantic
3293 analysis at instantiation-time. */
3294 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
3295 return add_stmt (build_case_label (low_value, high_value, label));
3298 /* Find the condition on which this switch statement depends. */
3299 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3300 if (cond && TREE_CODE (cond) == TREE_LIST)
3301 cond = TREE_VALUE (cond);
3303 if (!check_switch_goto (switch_stack->level))
3304 return error_mark_node;
3306 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3308 low_value = case_conversion (type, low_value);
3309 high_value = case_conversion (type, high_value);
3311 r = c_add_case_label (loc, switch_stack->cases, cond, type,
3312 low_value, high_value);
3314 /* After labels, make any new cleanups in the function go into their
3315 own new (temporary) binding contour. */
3316 for (p = current_binding_level;
3317 p->kind != sk_function_parms;
3318 p = p->level_chain)
3319 p->more_cleanups_ok = 0;
3321 return r;
3324 struct typename_info {
3325 tree scope;
3326 tree name;
3327 tree template_id;
3328 bool enum_p;
3329 bool class_p;
3332 struct typename_hasher : ggc_hasher<tree>
3334 typedef typename_info *compare_type;
3336 /* Hash a TYPENAME_TYPE. */
3338 static hashval_t
3339 hash (tree t)
3341 hashval_t hash;
3343 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3344 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3346 return hash;
3349 /* Compare two TYPENAME_TYPEs. */
3351 static bool
3352 equal (tree t1, const typename_info *t2)
3354 return (TYPE_IDENTIFIER (t1) == t2->name
3355 && TYPE_CONTEXT (t1) == t2->scope
3356 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3357 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3358 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3362 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3363 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3365 Returns the new TYPENAME_TYPE. */
3367 static GTY (()) hash_table<typename_hasher> *typename_htab;
3369 static tree
3370 build_typename_type (tree context, tree name, tree fullname,
3371 enum tag_types tag_type)
3373 tree t;
3374 tree d;
3375 typename_info ti;
3376 tree *e;
3377 hashval_t hash;
3379 if (typename_htab == NULL)
3380 typename_htab = hash_table<typename_hasher>::create_ggc (61);
3382 ti.scope = FROB_CONTEXT (context);
3383 ti.name = name;
3384 ti.template_id = fullname;
3385 ti.enum_p = tag_type == enum_type;
3386 ti.class_p = (tag_type == class_type
3387 || tag_type == record_type
3388 || tag_type == union_type);
3389 hash = (htab_hash_pointer (ti.scope)
3390 ^ htab_hash_pointer (ti.name));
3392 /* See if we already have this type. */
3393 e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
3394 if (*e)
3395 t = *e;
3396 else
3398 /* Build the TYPENAME_TYPE. */
3399 t = cxx_make_type (TYPENAME_TYPE);
3400 TYPE_CONTEXT (t) = ti.scope;
3401 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3402 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3403 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3405 /* Build the corresponding TYPE_DECL. */
3406 d = build_decl (input_location, TYPE_DECL, name, t);
3407 TYPE_NAME (TREE_TYPE (d)) = d;
3408 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3409 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3410 DECL_ARTIFICIAL (d) = 1;
3412 /* Store it in the hash table. */
3413 *e = t;
3415 /* TYPENAME_TYPEs must always be compared structurally, because
3416 they may or may not resolve down to another type depending on
3417 the currently open classes. */
3418 SET_TYPE_STRUCTURAL_EQUALITY (t);
3421 return t;
3424 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3425 provided to name the type. Returns an appropriate type, unless an
3426 error occurs, in which case error_mark_node is returned. If we
3427 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3428 return that, rather than the _TYPE it corresponds to, in other
3429 cases we look through the type decl. If TF_ERROR is set, complain
3430 about errors, otherwise be quiet. */
3432 tree
3433 make_typename_type (tree context, tree name, enum tag_types tag_type,
3434 tsubst_flags_t complain)
3436 tree fullname;
3437 tree t;
3438 bool want_template;
3440 if (name == error_mark_node
3441 || context == NULL_TREE
3442 || context == error_mark_node)
3443 return error_mark_node;
3445 if (TYPE_P (name))
3447 if (!(TYPE_LANG_SPECIFIC (name)
3448 && (CLASSTYPE_IS_TEMPLATE (name)
3449 || CLASSTYPE_USE_TEMPLATE (name))))
3450 name = TYPE_IDENTIFIER (name);
3451 else
3452 /* Create a TEMPLATE_ID_EXPR for the type. */
3453 name = build_nt (TEMPLATE_ID_EXPR,
3454 CLASSTYPE_TI_TEMPLATE (name),
3455 CLASSTYPE_TI_ARGS (name));
3457 else if (TREE_CODE (name) == TYPE_DECL)
3458 name = DECL_NAME (name);
3460 fullname = name;
3462 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3464 name = TREE_OPERAND (name, 0);
3465 if (DECL_TYPE_TEMPLATE_P (name))
3466 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3467 if (TREE_CODE (name) != IDENTIFIER_NODE)
3469 if (complain & tf_error)
3470 error ("%qD is not a type", name);
3471 return error_mark_node;
3474 if (TREE_CODE (name) == TEMPLATE_DECL)
3476 if (complain & tf_error)
3477 error ("%qD used without template parameters", name);
3478 return error_mark_node;
3480 gcc_assert (identifier_p (name));
3481 gcc_assert (TYPE_P (context));
3483 if (!MAYBE_CLASS_TYPE_P (context))
3485 if (complain & tf_error)
3486 error ("%q#T is not a class", context);
3487 return error_mark_node;
3490 /* When the CONTEXT is a dependent type, NAME could refer to a
3491 dependent base class of CONTEXT. But look inside it anyway
3492 if CONTEXT is a currently open scope, in case it refers to a
3493 member of the current instantiation or a non-dependent base;
3494 lookup will stop when we hit a dependent base. */
3495 if (!dependent_scope_p (context))
3496 /* We should only set WANT_TYPE when we're a nested typename type.
3497 Then we can give better diagnostics if we find a non-type. */
3498 t = lookup_field (context, name, 2, /*want_type=*/true);
3499 else
3500 t = NULL_TREE;
3502 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3503 return build_typename_type (context, name, fullname, tag_type);
3505 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3507 if (!t)
3509 if (complain & tf_error)
3510 error (want_template ? G_("no class template named %q#T in %q#T")
3511 : G_("no type named %q#T in %q#T"), name, context);
3512 return error_mark_node;
3515 /* Pull out the template from an injected-class-name (or multiple). */
3516 if (want_template)
3517 t = maybe_get_template_decl_from_type_decl (t);
3519 if (TREE_CODE (t) == TREE_LIST)
3521 if (complain & tf_error)
3523 error ("lookup of %qT in %qT is ambiguous", name, context);
3524 print_candidates (t);
3526 return error_mark_node;
3529 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3531 if (complain & tf_error)
3532 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3533 context, name, t);
3534 return error_mark_node;
3536 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3538 if (complain & tf_error)
3539 error ("%<typename %T::%D%> names %q#T, which is not a type",
3540 context, name, t);
3541 return error_mark_node;
3544 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3545 return error_mark_node;
3547 /* If we are currently parsing a template and if T is a typedef accessed
3548 through CONTEXT then we need to remember and check access of T at
3549 template instantiation time. */
3550 add_typedef_to_current_template_for_access_check (t, context, input_location);
3552 if (want_template)
3553 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3554 NULL_TREE, context,
3555 /*entering_scope=*/0,
3556 complain | tf_user);
3558 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3559 t = TREE_TYPE (t);
3561 maybe_record_typedef_use (t);
3563 return t;
3566 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3567 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3568 in which case error_mark_node is returned.
3570 If PARM_LIST is non-NULL, also make sure that the template parameter
3571 list of TEMPLATE_DECL matches.
3573 If COMPLAIN zero, don't complain about any errors that occur. */
3575 tree
3576 make_unbound_class_template (tree context, tree name, tree parm_list,
3577 tsubst_flags_t complain)
3579 tree t;
3580 tree d;
3582 if (TYPE_P (name))
3583 name = TYPE_IDENTIFIER (name);
3584 else if (DECL_P (name))
3585 name = DECL_NAME (name);
3586 gcc_assert (identifier_p (name));
3588 if (!dependent_type_p (context)
3589 || currently_open_class (context))
3591 tree tmpl = NULL_TREE;
3593 if (MAYBE_CLASS_TYPE_P (context))
3594 tmpl = lookup_field (context, name, 0, false);
3596 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3597 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3599 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3601 if (complain & tf_error)
3602 error ("no class template named %q#T in %q#T", name, context);
3603 return error_mark_node;
3606 if (parm_list
3607 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3609 if (complain & tf_error)
3611 error ("template parameters do not match template %qD", tmpl);
3612 inform (DECL_SOURCE_LOCATION (tmpl),
3613 "%qD declared here", tmpl);
3615 return error_mark_node;
3618 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
3619 complain))
3620 return error_mark_node;
3622 return tmpl;
3625 /* Build the UNBOUND_CLASS_TEMPLATE. */
3626 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3627 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3628 TREE_TYPE (t) = NULL_TREE;
3629 SET_TYPE_STRUCTURAL_EQUALITY (t);
3631 /* Build the corresponding TEMPLATE_DECL. */
3632 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3633 TYPE_NAME (TREE_TYPE (d)) = d;
3634 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3635 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3636 DECL_ARTIFICIAL (d) = 1;
3637 DECL_TEMPLATE_PARMS (d) = parm_list;
3639 return t;
3644 /* Push the declarations of builtin types into the namespace.
3645 RID_INDEX is the index of the builtin type in the array
3646 RID_POINTERS. NAME is the name used when looking up the builtin
3647 type. TYPE is the _TYPE node for the builtin type. */
3649 void
3650 record_builtin_type (enum rid rid_index,
3651 const char* name,
3652 tree type)
3654 tree rname = NULL_TREE, tname = NULL_TREE;
3655 tree tdecl = NULL_TREE;
3657 if ((int) rid_index < (int) RID_MAX)
3658 rname = ridpointers[(int) rid_index];
3659 if (name)
3660 tname = get_identifier (name);
3662 /* The calls to SET_IDENTIFIER_GLOBAL_VALUE below should be
3663 eliminated. Built-in types should not be looked up name; their
3664 names are keywords that the parser can recognize. However, there
3665 is code in c-common.c that uses identifier_global_value to look
3666 up built-in types by name. */
3667 if (tname)
3669 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
3670 DECL_ARTIFICIAL (tdecl) = 1;
3671 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
3673 if (rname)
3675 if (!tdecl)
3677 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
3678 DECL_ARTIFICIAL (tdecl) = 1;
3680 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
3683 if (!TYPE_NAME (type))
3684 TYPE_NAME (type) = tdecl;
3686 if (tdecl)
3687 debug_hooks->type_decl (tdecl, 0);
3690 /* Record one of the standard Java types.
3691 * Declare it as having the given NAME.
3692 * If SIZE > 0, it is the size of one of the integral types;
3693 * otherwise it is the negative of the size of one of the other types. */
3695 static tree
3696 record_builtin_java_type (const char* name, int size)
3698 tree type, decl;
3699 if (size > 0)
3701 type = build_nonstandard_integer_type (size, 0);
3702 type = build_distinct_type_copy (type);
3704 else if (size > -32)
3706 tree stype;
3707 /* "__java_char" or ""__java_boolean". */
3708 type = build_nonstandard_integer_type (-size, 1);
3709 type = build_distinct_type_copy (type);
3710 /* Get the signed type cached and attached to the unsigned type,
3711 so it doesn't get garbage-collected at "random" times,
3712 causing potential codegen differences out of different UIDs
3713 and different alias set numbers. */
3714 stype = build_nonstandard_integer_type (-size, 0);
3715 stype = build_distinct_type_copy (stype);
3716 TREE_CHAIN (type) = stype;
3717 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
3719 else
3720 { /* "__java_float" or ""__java_double". */
3721 type = make_node (REAL_TYPE);
3722 TYPE_PRECISION (type) = - size;
3723 layout_type (type);
3725 record_builtin_type (RID_MAX, name, type);
3726 decl = TYPE_NAME (type);
3728 /* Suppress generate debug symbol entries for these types,
3729 since for normal C++ they are just clutter.
3730 However, push_lang_context undoes this if extern "Java" is seen. */
3731 DECL_IGNORED_P (decl) = 1;
3733 TYPE_FOR_JAVA (type) = 1;
3734 return type;
3737 /* Push a type into the namespace so that the back ends ignore it. */
3739 static void
3740 record_unknown_type (tree type, const char* name)
3742 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
3743 TYPE_DECL, get_identifier (name), type));
3744 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3745 DECL_IGNORED_P (decl) = 1;
3746 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
3747 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
3748 TYPE_ALIGN (type) = 1;
3749 TYPE_USER_ALIGN (type) = 0;
3750 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
3753 /* A string for which we should create an IDENTIFIER_NODE at
3754 startup. */
3756 typedef struct predefined_identifier
3758 /* The name of the identifier. */
3759 const char *const name;
3760 /* The place where the IDENTIFIER_NODE should be stored. */
3761 tree *const node;
3762 /* Nonzero if this is the name of a constructor or destructor. */
3763 const int ctor_or_dtor_p;
3764 } predefined_identifier;
3766 /* Create all the predefined identifiers. */
3768 static void
3769 initialize_predefined_identifiers (void)
3771 const predefined_identifier *pid;
3773 /* A table of identifiers to create at startup. */
3774 static const predefined_identifier predefined_identifiers[] = {
3775 { "C++", &lang_name_cplusplus, 0 },
3776 { "C", &lang_name_c, 0 },
3777 { "Java", &lang_name_java, 0 },
3778 /* Some of these names have a trailing space so that it is
3779 impossible for them to conflict with names written by users. */
3780 { "__ct ", &ctor_identifier, 1 },
3781 { "__base_ctor ", &base_ctor_identifier, 1 },
3782 { "__comp_ctor ", &complete_ctor_identifier, 1 },
3783 { "__dt ", &dtor_identifier, 1 },
3784 { "__comp_dtor ", &complete_dtor_identifier, 1 },
3785 { "__base_dtor ", &base_dtor_identifier, 1 },
3786 { "__deleting_dtor ", &deleting_dtor_identifier, 1 },
3787 { IN_CHARGE_NAME, &in_charge_identifier, 0 },
3788 { "nelts", &nelts_identifier, 0 },
3789 { THIS_NAME, &this_identifier, 0 },
3790 { VTABLE_DELTA_NAME, &delta_identifier, 0 },
3791 { VTABLE_PFN_NAME, &pfn_identifier, 0 },
3792 { "_vptr", &vptr_identifier, 0 },
3793 { "__vtt_parm", &vtt_parm_identifier, 0 },
3794 { "::", &global_scope_name, 0 },
3795 { "std", &std_identifier, 0 },
3796 { NULL, NULL, 0 }
3799 for (pid = predefined_identifiers; pid->name; ++pid)
3801 *pid->node = get_identifier (pid->name);
3802 if (pid->ctor_or_dtor_p)
3803 IDENTIFIER_CTOR_OR_DTOR_P (*pid->node) = 1;
3807 /* Create the predefined scalar types of C,
3808 and some nodes representing standard constants (0, 1, (void *)0).
3809 Initialize the global binding level.
3810 Make definitions for built-in primitive functions. */
3812 void
3813 cxx_init_decl_processing (void)
3815 tree void_ftype;
3816 tree void_ftype_ptr;
3818 /* Create all the identifiers we need. */
3819 initialize_predefined_identifiers ();
3821 /* Create the global variables. */
3822 push_to_top_level ();
3824 current_function_decl = NULL_TREE;
3825 current_binding_level = NULL;
3826 /* Enter the global namespace. */
3827 gcc_assert (global_namespace == NULL_TREE);
3828 global_namespace = build_lang_decl (NAMESPACE_DECL, global_scope_name,
3829 void_type_node);
3830 DECL_CONTEXT (global_namespace) = build_translation_unit_decl (NULL_TREE);
3831 debug_hooks->register_main_translation_unit
3832 (DECL_CONTEXT (global_namespace));
3833 TREE_PUBLIC (global_namespace) = 1;
3834 begin_scope (sk_namespace, global_namespace);
3836 if (flag_visibility_ms_compat)
3837 default_visibility = VISIBILITY_HIDDEN;
3839 /* Initially, C. */
3840 current_lang_name = lang_name_c;
3842 /* Create the `std' namespace. */
3843 push_namespace (std_identifier);
3844 std_node = current_namespace;
3845 pop_namespace ();
3847 c_common_nodes_and_builtins ();
3849 java_byte_type_node = record_builtin_java_type ("__java_byte", 8);
3850 java_short_type_node = record_builtin_java_type ("__java_short", 16);
3851 java_int_type_node = record_builtin_java_type ("__java_int", 32);
3852 java_long_type_node = record_builtin_java_type ("__java_long", 64);
3853 java_float_type_node = record_builtin_java_type ("__java_float", -32);
3854 java_double_type_node = record_builtin_java_type ("__java_double", -64);
3855 java_char_type_node = record_builtin_java_type ("__java_char", -16);
3856 java_boolean_type_node = record_builtin_java_type ("__java_boolean", -1);
3858 integer_two_node = build_int_cst (NULL_TREE, 2);
3860 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
3861 truthvalue_type_node = boolean_type_node;
3862 truthvalue_false_node = boolean_false_node;
3863 truthvalue_true_node = boolean_true_node;
3865 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
3866 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
3867 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
3869 #if 0
3870 record_builtin_type (RID_MAX, NULL, string_type_node);
3871 #endif
3873 delta_type_node = ptrdiff_type_node;
3874 vtable_index_type = ptrdiff_type_node;
3876 vtt_parm_type = build_pointer_type (const_ptr_type_node);
3877 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
3878 void_ftype_ptr = build_function_type_list (void_type_node,
3879 ptr_type_node, NULL_TREE);
3880 void_ftype_ptr
3881 = build_exception_variant (void_ftype_ptr, empty_except_spec);
3883 /* C++ extensions */
3885 unknown_type_node = make_node (LANG_TYPE);
3886 record_unknown_type (unknown_type_node, "unknown type");
3888 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
3889 TREE_TYPE (unknown_type_node) = unknown_type_node;
3891 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
3892 result. */
3893 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
3894 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
3896 init_list_type_node = make_node (LANG_TYPE);
3897 record_unknown_type (init_list_type_node, "init list");
3900 /* Make sure we get a unique function type, so we can give
3901 its pointer type a name. (This wins for gdb.) */
3902 tree vfunc_type = make_node (FUNCTION_TYPE);
3903 TREE_TYPE (vfunc_type) = integer_type_node;
3904 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
3905 layout_type (vfunc_type);
3907 vtable_entry_type = build_pointer_type (vfunc_type);
3909 record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
3911 vtbl_type_node
3912 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
3913 layout_type (vtbl_type_node);
3914 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
3915 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
3916 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
3917 layout_type (vtbl_ptr_type_node);
3918 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
3920 push_namespace (get_identifier ("__cxxabiv1"));
3921 abi_node = current_namespace;
3922 pop_namespace ();
3924 global_type_node = make_node (LANG_TYPE);
3925 record_unknown_type (global_type_node, "global type");
3927 /* Now, C++. */
3928 current_lang_name = lang_name_cplusplus;
3931 tree newattrs, extvisattr;
3932 tree newtype, deltype;
3933 tree ptr_ftype_sizetype;
3934 tree new_eh_spec;
3936 ptr_ftype_sizetype
3937 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
3938 if (cxx_dialect == cxx98)
3940 tree bad_alloc_id;
3941 tree bad_alloc_type_node;
3942 tree bad_alloc_decl;
3944 push_namespace (std_identifier);
3945 bad_alloc_id = get_identifier ("bad_alloc");
3946 bad_alloc_type_node = make_class_type (RECORD_TYPE);
3947 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
3948 bad_alloc_decl
3949 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
3950 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
3951 pop_namespace ();
3953 new_eh_spec
3954 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
3956 else
3957 new_eh_spec = noexcept_false_spec;
3959 /* Ensure attribs.c is initialized. */
3960 init_attributes ();
3961 extvisattr = build_tree_list (get_identifier ("externally_visible"),
3962 NULL_TREE);
3963 newattrs = tree_cons (get_identifier ("alloc_size"),
3964 build_tree_list (NULL_TREE, integer_one_node),
3965 extvisattr);
3966 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
3967 newtype = build_exception_variant (newtype, new_eh_spec);
3968 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
3969 deltype = build_exception_variant (deltype, empty_except_spec);
3970 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
3971 DECL_IS_MALLOC (opnew) = 1;
3972 DECL_IS_OPERATOR_NEW (opnew) = 1;
3973 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
3974 DECL_IS_MALLOC (opnew) = 1;
3975 DECL_IS_OPERATOR_NEW (opnew) = 1;
3976 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
3977 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
3978 if (flag_sized_deallocation)
3980 /* Also push the sized deallocation variants:
3981 void operator delete(void*, std::size_t) throw();
3982 void operator delete[](void*, std::size_t) throw(); */
3983 tree void_ftype_ptr_size
3984 = build_function_type_list (void_type_node, ptr_type_node,
3985 size_type_node, NULL_TREE);
3986 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
3987 extvisattr);
3988 deltype = build_exception_variant (deltype, empty_except_spec);
3989 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
3990 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
3993 nullptr_type_node = make_node (NULLPTR_TYPE);
3994 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
3995 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
3996 TYPE_UNSIGNED (nullptr_type_node) = 1;
3997 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
3998 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
3999 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4000 nullptr_node = build_int_cst (nullptr_type_node, 0);
4003 abort_fndecl
4004 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4005 ECF_NORETURN | ECF_NOTHROW);
4007 /* Perform other language dependent initializations. */
4008 init_class_processing ();
4009 init_rtti_processing ();
4010 init_template_processing ();
4012 if (flag_exceptions)
4013 init_exception_processing ();
4015 if (! supports_one_only ())
4016 flag_weak = 0;
4018 make_fname_decl = cp_make_fname_decl;
4019 start_fname_decls ();
4021 /* Show we use EH for cleanups. */
4022 if (flag_exceptions)
4023 using_eh_for_cleanups ();
4026 /* Generate an initializer for a function naming variable from
4027 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4028 filled in with the type of the init. */
4030 tree
4031 cp_fname_init (const char* name, tree *type_p)
4033 tree domain = NULL_TREE;
4034 tree type;
4035 tree init = NULL_TREE;
4036 size_t length = 0;
4038 if (name)
4040 length = strlen (name);
4041 domain = build_index_type (size_int (length));
4042 init = build_string (length + 1, name);
4045 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4046 type = build_cplus_array_type (type, domain);
4048 *type_p = type;
4050 if (init)
4051 TREE_TYPE (init) = type;
4052 else
4053 init = error_mark_node;
4055 return init;
4058 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4059 the decl, LOC is the location to give the decl, NAME is the
4060 initialization string and TYPE_DEP indicates whether NAME depended
4061 on the type of the function. We make use of that to detect
4062 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4063 at the point of first use, so we mustn't push the decl now. */
4065 static tree
4066 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4068 const char *const name = (type_dep && processing_template_decl
4069 ? NULL : fname_as_string (type_dep));
4070 tree type;
4071 tree init = cp_fname_init (name, &type);
4072 tree decl = build_decl (loc, VAR_DECL, id, type);
4074 if (name)
4075 free (CONST_CAST (char *, name));
4077 /* As we're using pushdecl_with_scope, we must set the context. */
4078 DECL_CONTEXT (decl) = current_function_decl;
4080 TREE_STATIC (decl) = 1;
4081 TREE_READONLY (decl) = 1;
4082 DECL_ARTIFICIAL (decl) = 1;
4084 TREE_USED (decl) = 1;
4086 if (current_function_decl)
4088 cp_binding_level *b = current_binding_level;
4089 if (b->kind == sk_function_parms)
4090 return error_mark_node;
4091 while (b->level_chain->kind != sk_function_parms)
4092 b = b->level_chain;
4093 pushdecl_with_scope (decl, b, /*is_friend=*/false);
4094 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
4095 LOOKUP_ONLYCONVERTING);
4097 else
4099 DECL_THIS_STATIC (decl) = true;
4100 pushdecl_top_level_and_finish (decl, init);
4103 return decl;
4106 static tree
4107 builtin_function_1 (tree decl, tree context, bool is_global)
4109 tree id = DECL_NAME (decl);
4110 const char *name = IDENTIFIER_POINTER (id);
4112 retrofit_lang_decl (decl);
4114 DECL_ARTIFICIAL (decl) = 1;
4115 SET_OVERLOADED_OPERATOR_CODE (decl, ERROR_MARK);
4116 SET_DECL_LANGUAGE (decl, lang_c);
4117 /* Runtime library routines are, by definition, available in an
4118 external shared object. */
4119 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4120 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4122 DECL_CONTEXT (decl) = context;
4124 if (is_global)
4125 pushdecl_top_level (decl);
4126 else
4127 pushdecl (decl);
4129 /* A function in the user's namespace should have an explicit
4130 declaration before it is used. Mark the built-in function as
4131 anticipated but not actually declared. */
4132 if (name[0] != '_' || name[1] != '_')
4133 DECL_ANTICIPATED (decl) = 1;
4134 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
4136 size_t len = strlen (name);
4138 /* Treat __*_chk fortification functions as anticipated as well,
4139 unless they are __builtin_*. */
4140 if (len > strlen ("___chk")
4141 && memcmp (name + len - strlen ("_chk"),
4142 "_chk", strlen ("_chk") + 1) == 0)
4143 DECL_ANTICIPATED (decl) = 1;
4146 return decl;
4149 tree
4150 cxx_builtin_function (tree decl)
4152 tree id = DECL_NAME (decl);
4153 const char *name = IDENTIFIER_POINTER (id);
4154 /* All builtins that don't begin with an '_' should additionally
4155 go in the 'std' namespace. */
4156 if (name[0] != '_')
4158 tree decl2 = copy_node(decl);
4159 push_namespace (std_identifier);
4160 builtin_function_1 (decl2, std_node, false);
4161 pop_namespace ();
4164 return builtin_function_1 (decl, NULL_TREE, false);
4167 /* Like cxx_builtin_function, but guarantee the function is added to the global
4168 scope. This is to allow function specific options to add new machine
4169 dependent builtins when the target ISA changes via attribute((target(...)))
4170 which saves space on program startup if the program does not use non-generic
4171 ISAs. */
4173 tree
4174 cxx_builtin_function_ext_scope (tree decl)
4177 tree id = DECL_NAME (decl);
4178 const char *name = IDENTIFIER_POINTER (id);
4179 /* All builtins that don't begin with an '_' should additionally
4180 go in the 'std' namespace. */
4181 if (name[0] != '_')
4183 tree decl2 = copy_node(decl);
4184 push_namespace (std_identifier);
4185 builtin_function_1 (decl2, std_node, true);
4186 pop_namespace ();
4189 return builtin_function_1 (decl, NULL_TREE, true);
4192 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4193 function. Not called directly. */
4195 static tree
4196 build_library_fn (tree name, enum tree_code operator_code, tree type,
4197 int ecf_flags)
4199 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4200 DECL_EXTERNAL (fn) = 1;
4201 TREE_PUBLIC (fn) = 1;
4202 DECL_ARTIFICIAL (fn) = 1;
4203 SET_OVERLOADED_OPERATOR_CODE (fn, operator_code);
4204 SET_DECL_LANGUAGE (fn, lang_c);
4205 /* Runtime library routines are, by definition, available in an
4206 external shared object. */
4207 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4208 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4209 set_call_expr_flags (fn, ecf_flags);
4210 return fn;
4213 /* Returns the _DECL for a library function with C++ linkage. */
4215 static tree
4216 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4217 int ecf_flags)
4219 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4220 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4221 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4222 return fn;
4225 /* Like build_library_fn, but takes a C string instead of an
4226 IDENTIFIER_NODE. */
4228 tree
4229 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4231 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4234 /* Like build_cp_library_fn, but takes a C string instead of an
4235 IDENTIFIER_NODE. */
4237 tree
4238 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4240 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4241 ecf_flags);
4244 /* Like build_library_fn, but also pushes the function so that we will
4245 be able to find it via IDENTIFIER_GLOBAL_VALUE. Also, the function
4246 may throw exceptions listed in RAISES. */
4248 tree
4249 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4251 tree fn;
4253 if (raises)
4254 type = build_exception_variant (type, raises);
4256 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4257 pushdecl_top_level (fn);
4258 return fn;
4261 /* Like build_cp_library_fn, but also pushes the function so that it
4262 will be found by normal lookup. */
4264 static tree
4265 push_cp_library_fn (enum tree_code operator_code, tree type,
4266 int ecf_flags)
4268 tree fn = build_cp_library_fn (ansi_opname (operator_code),
4269 operator_code,
4270 type, ecf_flags);
4271 pushdecl (fn);
4272 if (flag_tm)
4273 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4274 return fn;
4277 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4278 a FUNCTION_TYPE. */
4280 tree
4281 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4283 tree type = build_function_type (void_type_node, parmtypes);
4284 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4287 /* Like push_library_fn, but also note that this function throws
4288 and does not return. Used for __throw_foo and the like. */
4290 tree
4291 push_throw_library_fn (tree name, tree type)
4293 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN);
4294 return fn;
4297 /* When we call finish_struct for an anonymous union, we create
4298 default copy constructors and such. But, an anonymous union
4299 shouldn't have such things; this function undoes the damage to the
4300 anonymous union type T.
4302 (The reason that we create the synthesized methods is that we don't
4303 distinguish `union { int i; }' from `typedef union { int i; } U'.
4304 The first is an anonymous union; the second is just an ordinary
4305 union type.) */
4307 void
4308 fixup_anonymous_aggr (tree t)
4310 tree *q;
4312 /* Wipe out memory of synthesized methods. */
4313 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4314 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4315 TYPE_HAS_COPY_CTOR (t) = 0;
4316 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4317 TYPE_HAS_COPY_ASSIGN (t) = 0;
4318 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4320 /* Splice the implicitly generated functions out of the TYPE_METHODS
4321 list. */
4322 q = &TYPE_METHODS (t);
4323 while (*q)
4325 if (DECL_ARTIFICIAL (*q))
4326 *q = TREE_CHAIN (*q);
4327 else
4328 q = &DECL_CHAIN (*q);
4331 /* ISO C++ 9.5.3. Anonymous unions may not have function members. */
4332 if (TYPE_METHODS (t))
4334 tree decl = TYPE_MAIN_DECL (t);
4336 if (TREE_CODE (t) != UNION_TYPE)
4337 error_at (DECL_SOURCE_LOCATION (decl),
4338 "an anonymous struct cannot have function members");
4339 else
4340 error_at (DECL_SOURCE_LOCATION (decl),
4341 "an anonymous union cannot have function members");
4344 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4345 assignment operators (because they cannot have these methods themselves).
4346 For anonymous unions this is already checked because they are not allowed
4347 in any union, otherwise we have to check it. */
4348 if (TREE_CODE (t) != UNION_TYPE)
4350 tree field, type;
4352 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4353 if (TREE_CODE (field) == FIELD_DECL)
4355 type = TREE_TYPE (field);
4356 if (CLASS_TYPE_P (type))
4358 if (TYPE_NEEDS_CONSTRUCTING (type))
4359 error ("member %q+#D with constructor not allowed "
4360 "in anonymous aggregate", field);
4361 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4362 error ("member %q+#D with destructor not allowed "
4363 "in anonymous aggregate", field);
4364 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4365 error ("member %q+#D with copy assignment operator "
4366 "not allowed in anonymous aggregate", field);
4372 /* Warn for an attribute located at LOCATION that appertains to the
4373 class type CLASS_TYPE that has not been properly placed after its
4374 class-key, in it class-specifier. */
4376 void
4377 warn_misplaced_attr_for_class_type (source_location location,
4378 tree class_type)
4380 gcc_assert (OVERLOAD_TYPE_P (class_type));
4382 if (warning_at (location, OPT_Wattributes,
4383 "attribute ignored in declaration "
4384 "of %q#T", class_type))
4385 inform (location,
4386 "attribute for %q#T must follow the %qs keyword",
4387 class_type, class_key_or_enum_as_string (class_type));
4390 /* Make sure that a declaration with no declarator is well-formed, i.e.
4391 just declares a tagged type or anonymous union.
4393 Returns the type declared; or NULL_TREE if none. */
4395 tree
4396 check_tag_decl (cp_decl_specifier_seq *declspecs,
4397 bool explicit_type_instantiation_p)
4399 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4400 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4401 /* If a class, struct, or enum type is declared by the DECLSPECS
4402 (i.e, if a class-specifier, enum-specifier, or non-typename
4403 elaborated-type-specifier appears in the DECLSPECS),
4404 DECLARED_TYPE is set to the corresponding type. */
4405 tree declared_type = NULL_TREE;
4406 bool error_p = false;
4408 if (declspecs->multiple_types_p)
4409 error ("multiple types in one declaration");
4410 else if (declspecs->redefined_builtin_type)
4412 if (!in_system_header_at (input_location))
4413 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4414 "redeclaration of C++ built-in type %qT",
4415 declspecs->redefined_builtin_type);
4416 return NULL_TREE;
4419 if (declspecs->type
4420 && TYPE_P (declspecs->type)
4421 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4422 && MAYBE_CLASS_TYPE_P (declspecs->type))
4423 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4424 declared_type = declspecs->type;
4425 else if (declspecs->type == error_mark_node)
4426 error_p = true;
4427 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
4428 permerror (input_location, "declaration does not declare anything");
4429 else if (declared_type != NULL_TREE && type_uses_auto (declared_type))
4431 error ("%<auto%> can only be specified for variables "
4432 "or function declarations");
4433 return error_mark_node;
4435 /* Check for an anonymous union. */
4436 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4437 && TYPE_ANONYMOUS_P (declared_type))
4439 /* 7/3 In a simple-declaration, the optional init-declarator-list
4440 can be omitted only when declaring a class (clause 9) or
4441 enumeration (7.2), that is, when the decl-specifier-seq contains
4442 either a class-specifier, an elaborated-type-specifier with
4443 a class-key (9.1), or an enum-specifier. In these cases and
4444 whenever a class-specifier or enum-specifier is present in the
4445 decl-specifier-seq, the identifiers in these specifiers are among
4446 the names being declared by the declaration (as class-name,
4447 enum-names, or enumerators, depending on the syntax). In such
4448 cases, and except for the declaration of an unnamed bit-field (9.6),
4449 the decl-specifier-seq shall introduce one or more names into the
4450 program, or shall redeclare a name introduced by a previous
4451 declaration. [Example:
4452 enum { }; // ill-formed
4453 typedef class { }; // ill-formed
4454 --end example] */
4455 if (saw_typedef)
4457 error ("missing type-name in typedef-declaration");
4458 return NULL_TREE;
4460 /* Anonymous unions are objects, so they can have specifiers. */;
4461 SET_ANON_AGGR_TYPE_P (declared_type);
4463 if (TREE_CODE (declared_type) != UNION_TYPE
4464 && !in_system_header_at (input_location))
4465 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4468 else
4470 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
4471 error_at (declspecs->locations[ds_inline],
4472 "%<inline%> can only be specified for functions");
4473 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4474 error_at (declspecs->locations[ds_virtual],
4475 "%<virtual%> can only be specified for functions");
4476 else if (saw_friend
4477 && (!current_class_type
4478 || current_scope () != current_class_type))
4479 error_at (declspecs->locations[ds_friend],
4480 "%<friend%> can only be specified inside a class");
4481 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4482 error_at (declspecs->locations[ds_explicit],
4483 "%<explicit%> can only be specified for constructors");
4484 else if (declspecs->storage_class)
4485 error_at (declspecs->locations[ds_storage_class],
4486 "a storage class can only be specified for objects "
4487 "and functions");
4488 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
4489 error_at (declspecs->locations[ds_const],
4490 "%<const%> can only be specified for objects and "
4491 "functions");
4492 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
4493 error_at (declspecs->locations[ds_volatile],
4494 "%<volatile%> can only be specified for objects and "
4495 "functions");
4496 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
4497 error_at (declspecs->locations[ds_restrict],
4498 "%<__restrict%> can only be specified for objects and "
4499 "functions");
4500 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
4501 error_at (declspecs->locations[ds_thread],
4502 "%<__thread%> can only be specified for objects "
4503 "and functions");
4504 else if (saw_typedef)
4505 warning_at (declspecs->locations[ds_typedef], 0,
4506 "%<typedef%> was ignored in this declaration");
4507 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4508 error_at (declspecs->locations[ds_constexpr],
4509 "%<constexpr%> cannot be used for type declarations");
4512 if (declspecs->attributes && warn_attributes && declared_type)
4514 location_t loc;
4515 if (!CLASS_TYPE_P (declared_type)
4516 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4517 /* For a non-template class, use the name location. */
4518 loc = location_of (declared_type);
4519 else
4520 /* For a template class (an explicit instantiation), use the
4521 current location. */
4522 loc = input_location;
4524 if (explicit_type_instantiation_p)
4525 /* [dcl.attr.grammar]/4:
4527 No attribute-specifier-seq shall appertain to an explicit
4528 instantiation. */
4530 if (warning_at (loc, OPT_Wattributes,
4531 "attribute ignored in explicit instantiation %q#T",
4532 declared_type))
4533 inform (loc,
4534 "no attribute can be applied to "
4535 "an explicit instantiation");
4537 else
4538 warn_misplaced_attr_for_class_type (loc, declared_type);
4541 return declared_type;
4544 /* Called when a declaration is seen that contains no names to declare.
4545 If its type is a reference to a structure, union or enum inherited
4546 from a containing scope, shadow that tag name for the current scope
4547 with a forward reference.
4548 If its type defines a new named structure or union
4549 or defines an enum, it is valid but we need not do anything here.
4550 Otherwise, it is an error.
4552 C++: may have to grok the declspecs to learn about static,
4553 complain for anonymous unions.
4555 Returns the TYPE declared -- or NULL_TREE if none. */
4557 tree
4558 shadow_tag (cp_decl_specifier_seq *declspecs)
4560 tree t = check_tag_decl (declspecs,
4561 /*explicit_type_instantiation_p=*/false);
4563 if (!t)
4564 return NULL_TREE;
4566 if (maybe_process_partial_specialization (t) == error_mark_node)
4567 return NULL_TREE;
4569 /* This is where the variables in an anonymous union are
4570 declared. An anonymous union declaration looks like:
4571 union { ... } ;
4572 because there is no declarator after the union, the parser
4573 sends that declaration here. */
4574 if (ANON_AGGR_TYPE_P (t))
4576 fixup_anonymous_aggr (t);
4578 if (TYPE_FIELDS (t))
4580 tree decl = grokdeclarator (/*declarator=*/NULL,
4581 declspecs, NORMAL, 0, NULL);
4582 finish_anon_union (decl);
4586 return t;
4589 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4591 tree
4592 groktypename (cp_decl_specifier_seq *type_specifiers,
4593 const cp_declarator *declarator,
4594 bool is_template_arg)
4596 tree attrs;
4597 tree type;
4598 enum decl_context context
4599 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
4600 attrs = type_specifiers->attributes;
4601 type_specifiers->attributes = NULL_TREE;
4602 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
4603 if (attrs && type != error_mark_node)
4605 if (CLASS_TYPE_P (type))
4606 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
4607 "outside of definition", type);
4608 else if (MAYBE_CLASS_TYPE_P (type))
4609 /* A template type parameter or other dependent type. */
4610 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
4611 "type %qT without an associated declaration", type);
4612 else
4613 cplus_decl_attributes (&type, attrs, 0);
4615 return type;
4618 /* Process a DECLARATOR for a function-scope variable declaration,
4619 namespace-scope variable declaration, or function declaration.
4620 (Function definitions go through start_function; class member
4621 declarations appearing in the body of the class go through
4622 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4623 If an error occurs, the error_mark_node is returned instead.
4625 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
4626 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
4627 for an explicitly defaulted function, or SD_DELETED for an explicitly
4628 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
4629 implicitly initialized via a default constructor. ATTRIBUTES and
4630 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
4632 The scope represented by the context of the returned DECL is pushed
4633 (if it is not the global namespace) and is assigned to
4634 *PUSHED_SCOPE_P. The caller is then responsible for calling
4635 pop_scope on *PUSHED_SCOPE_P if it is set. */
4637 tree
4638 start_decl (const cp_declarator *declarator,
4639 cp_decl_specifier_seq *declspecs,
4640 int initialized,
4641 tree attributes,
4642 tree prefix_attributes,
4643 tree *pushed_scope_p)
4645 tree decl;
4646 tree context;
4647 bool was_public;
4648 int flags;
4649 bool alias;
4651 *pushed_scope_p = NULL_TREE;
4653 /* An object declared as __attribute__((deprecated)) suppresses
4654 warnings of uses of other deprecated items. */
4655 if (lookup_attribute ("deprecated", attributes))
4656 deprecated_state = DEPRECATED_SUPPRESS;
4658 attributes = chainon (attributes, prefix_attributes);
4660 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
4661 &attributes);
4663 deprecated_state = DEPRECATED_NORMAL;
4665 if (decl == NULL_TREE || VOID_TYPE_P (decl)
4666 || decl == error_mark_node)
4667 return error_mark_node;
4669 context = CP_DECL_CONTEXT (decl);
4670 if (context != global_namespace)
4671 *pushed_scope_p = push_scope (context);
4673 /* Is it valid for this decl to have an initializer at all?
4674 If not, set INITIALIZED to zero, which will indirectly
4675 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4676 if (initialized
4677 && TREE_CODE (decl) == TYPE_DECL)
4679 error ("typedef %qD is initialized (use decltype instead)", decl);
4680 return error_mark_node;
4683 if (initialized)
4685 if (! toplevel_bindings_p ()
4686 && DECL_EXTERNAL (decl))
4687 warning (0, "declaration of %q#D has %<extern%> and is initialized",
4688 decl);
4689 DECL_EXTERNAL (decl) = 0;
4690 if (toplevel_bindings_p ())
4691 TREE_STATIC (decl) = 1;
4693 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
4695 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
4696 record_key_method_defined (decl);
4698 /* If this is a typedef that names the class for linkage purposes
4699 (7.1.3p8), apply any attributes directly to the type. */
4700 if (TREE_CODE (decl) == TYPE_DECL
4701 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
4702 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
4703 flags = ATTR_FLAG_TYPE_IN_PLACE;
4704 else
4705 flags = 0;
4707 /* Set attributes here so if duplicate decl, will have proper attributes. */
4708 cplus_decl_attributes (&decl, attributes, flags);
4710 /* Dllimported symbols cannot be defined. Static data members (which
4711 can be initialized in-class and dllimported) go through grokfield,
4712 not here, so we don't need to exclude those decls when checking for
4713 a definition. */
4714 if (initialized && DECL_DLLIMPORT_P (decl))
4716 error ("definition of %q#D is marked %<dllimport%>", decl);
4717 DECL_DLLIMPORT_P (decl) = 0;
4720 /* If #pragma weak was used, mark the decl weak now. */
4721 if (!processing_template_decl)
4722 maybe_apply_pragma_weak (decl);
4724 if (TREE_CODE (decl) == FUNCTION_DECL
4725 && DECL_DECLARED_INLINE_P (decl)
4726 && DECL_UNINLINABLE (decl)
4727 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4728 warning (0, "inline function %q+D given attribute noinline", decl);
4730 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
4732 bool this_tmpl = (processing_template_decl
4733 > template_class_depth (context));
4734 if (VAR_P (decl))
4736 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
4737 if (field == NULL_TREE
4738 || !(VAR_P (field) || variable_template_p (field)))
4739 error ("%q+#D is not a static data member of %q#T", decl, context);
4740 else if (variable_template_p (field) && !this_tmpl)
4742 if (DECL_LANG_SPECIFIC (decl)
4743 && DECL_TEMPLATE_SPECIALIZATION (decl))
4744 /* OK, specialization was already checked. */;
4745 else
4747 error_at (DECL_SOURCE_LOCATION (decl),
4748 "non-member-template declaration of %qD", decl);
4749 inform (DECL_SOURCE_LOCATION (field), "does not match "
4750 "member template declaration here");
4751 return error_mark_node;
4754 else
4756 if (variable_template_p (field))
4757 field = DECL_TEMPLATE_RESULT (field);
4759 if (DECL_CONTEXT (field) != context)
4761 if (!same_type_p (DECL_CONTEXT (field), context))
4762 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
4763 "to be defined as %<%T::%D%>",
4764 DECL_CONTEXT (field), DECL_NAME (decl),
4765 context, DECL_NAME (decl));
4766 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
4768 /* Static data member are tricky; an in-class initialization
4769 still doesn't provide a definition, so the in-class
4770 declaration will have DECL_EXTERNAL set, but will have an
4771 initialization. Thus, duplicate_decls won't warn
4772 about this situation, and so we check here. */
4773 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
4774 error ("duplicate initialization of %qD", decl);
4775 if (duplicate_decls (decl, field, /*newdecl_is_friend=*/false))
4776 decl = field;
4777 if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr)
4778 && !DECL_DECLARED_CONSTEXPR_P (field))
4779 error ("%qD declared %<constexpr%> outside its class", field);
4782 else
4784 tree field = check_classfn (context, decl,
4785 this_tmpl
4786 ? current_template_parms
4787 : NULL_TREE);
4788 if (field && field != error_mark_node
4789 && duplicate_decls (decl, field,
4790 /*newdecl_is_friend=*/false))
4791 decl = field;
4794 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
4795 DECL_IN_AGGR_P (decl) = 0;
4796 /* Do not mark DECL as an explicit specialization if it was not
4797 already marked as an instantiation; a declaration should
4798 never be marked as a specialization unless we know what
4799 template is being specialized. */
4800 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
4802 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
4803 if (TREE_CODE (decl) == FUNCTION_DECL)
4804 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
4805 && DECL_DECLARED_INLINE_P (decl));
4806 else
4807 DECL_COMDAT (decl) = false;
4809 /* [temp.expl.spec] An explicit specialization of a static data
4810 member of a template is a definition if the declaration
4811 includes an initializer; otherwise, it is a declaration.
4813 We check for processing_specialization so this only applies
4814 to the new specialization syntax. */
4815 if (!initialized && processing_specialization)
4816 DECL_EXTERNAL (decl) = 1;
4819 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
4820 /* Aliases are definitions. */
4821 && !alias)
4822 permerror (input_location, "declaration of %q#D outside of class is not definition",
4823 decl);
4826 was_public = TREE_PUBLIC (decl);
4828 /* Enter this declaration into the symbol table. Don't push the plain
4829 VAR_DECL for a variable template. */
4830 if (!template_parm_scope_p ()
4831 || TREE_CODE (decl) != VAR_DECL)
4832 decl = maybe_push_decl (decl);
4834 if (processing_template_decl)
4835 decl = push_template_decl (decl);
4836 if (decl == error_mark_node)
4837 return error_mark_node;
4839 if (VAR_P (decl)
4840 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
4841 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
4843 /* This is a const variable with implicit 'static'. Set
4844 DECL_THIS_STATIC so we can tell it from variables that are
4845 !TREE_PUBLIC because of the anonymous namespace. */
4846 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
4847 DECL_THIS_STATIC (decl) = 1;
4850 if (current_function_decl && VAR_P (decl)
4851 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
4853 bool ok = false;
4854 if (DECL_THREAD_LOCAL_P (decl))
4855 error ("%qD declared %<thread_local%> in %<constexpr%> function",
4856 decl);
4857 else if (TREE_STATIC (decl))
4858 error ("%qD declared %<static%> in %<constexpr%> function", decl);
4859 else
4860 ok = true;
4861 if (!ok)
4862 cp_function_chain->invalid_constexpr = true;
4865 if (!processing_template_decl && VAR_P (decl))
4866 start_decl_1 (decl, initialized);
4868 return decl;
4871 /* Process the declaration of a variable DECL. INITIALIZED is true
4872 iff DECL is explicitly initialized. (INITIALIZED is false if the
4873 variable is initialized via an implicitly-called constructor.)
4874 This function must be called for ordinary variables (including, for
4875 example, implicit instantiations of templates), but must not be
4876 called for template declarations. */
4878 void
4879 start_decl_1 (tree decl, bool initialized)
4881 tree type;
4882 bool complete_p;
4883 bool aggregate_definition_p;
4885 gcc_assert (!processing_template_decl);
4887 if (error_operand_p (decl))
4888 return;
4890 gcc_assert (VAR_P (decl));
4892 type = TREE_TYPE (decl);
4893 complete_p = COMPLETE_TYPE_P (type);
4894 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
4896 /* If an explicit initializer is present, or if this is a definition
4897 of an aggregate, then we need a complete type at this point.
4898 (Scalars are always complete types, so there is nothing to
4899 check.) This code just sets COMPLETE_P; errors (if necessary)
4900 are issued below. */
4901 if ((initialized || aggregate_definition_p)
4902 && !complete_p
4903 && COMPLETE_TYPE_P (complete_type (type)))
4905 complete_p = true;
4906 /* We will not yet have set TREE_READONLY on DECL if the type
4907 was "const", but incomplete, before this point. But, now, we
4908 have a complete type, so we can try again. */
4909 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
4912 if (initialized)
4913 /* Is it valid for this decl to have an initializer at all? */
4915 /* Don't allow initializations for incomplete types except for
4916 arrays which might be completed by the initialization. */
4917 if (complete_p)
4918 ; /* A complete type is ok. */
4919 else if (type_uses_auto (type))
4920 ; /* An auto type is ok. */
4921 else if (TREE_CODE (type) != ARRAY_TYPE)
4923 error ("variable %q#D has initializer but incomplete type", decl);
4924 type = TREE_TYPE (decl) = error_mark_node;
4926 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
4928 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
4929 error ("elements of array %q#D have incomplete type", decl);
4930 /* else we already gave an error in start_decl. */
4933 else if (aggregate_definition_p && !complete_p)
4935 if (type_uses_auto (type))
4936 error ("declaration of %q#D has no initializer", decl);
4937 else
4938 error ("aggregate %q#D has incomplete type and cannot be defined",
4939 decl);
4940 /* Change the type so that assemble_variable will give
4941 DECL an rtl we can live with: (mem (const_int 0)). */
4942 type = TREE_TYPE (decl) = error_mark_node;
4945 /* Create a new scope to hold this declaration if necessary.
4946 Whether or not a new scope is necessary cannot be determined
4947 until after the type has been completed; if the type is a
4948 specialization of a class template it is not until after
4949 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
4950 will be set correctly. */
4951 maybe_push_cleanup_level (type);
4954 /* Handle initialization of references. DECL, TYPE, and INIT have the
4955 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
4956 but will be set to a new CLEANUP_STMT if a temporary is created
4957 that must be destroyed subsequently.
4959 Returns an initializer expression to use to initialize DECL, or
4960 NULL if the initialization can be performed statically.
4962 Quotes on semantics can be found in ARM 8.4.3. */
4964 static tree
4965 grok_reference_init (tree decl, tree type, tree init, int flags)
4967 if (init == NULL_TREE)
4969 if ((DECL_LANG_SPECIFIC (decl) == 0
4970 || DECL_IN_AGGR_P (decl) == 0)
4971 && ! DECL_THIS_EXTERN (decl))
4972 error ("%qD declared as reference but not initialized", decl);
4973 return NULL_TREE;
4976 if (TREE_CODE (init) == TREE_LIST)
4977 init = build_x_compound_expr_from_list (init, ELK_INIT,
4978 tf_warning_or_error);
4980 tree ttype = TREE_TYPE (type);
4981 if (TREE_CODE (ttype) != ARRAY_TYPE
4982 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
4983 /* Note: default conversion is only called in very special cases. */
4984 init = decay_conversion (init, tf_warning_or_error);
4986 /* check_initializer handles this for non-reference variables, but for
4987 references we need to do it here or the initializer will get the
4988 incomplete array type and confuse later calls to
4989 cp_complete_array_type. */
4990 if (TREE_CODE (ttype) == ARRAY_TYPE
4991 && TYPE_DOMAIN (ttype) == NULL_TREE
4992 && (BRACE_ENCLOSED_INITIALIZER_P (init)
4993 || TREE_CODE (init) == STRING_CST))
4995 cp_complete_array_type (&ttype, init, false);
4996 if (ttype != TREE_TYPE (type))
4997 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
5000 /* Convert INIT to the reference type TYPE. This may involve the
5001 creation of a temporary, whose lifetime must be the same as that
5002 of the reference. If so, a DECL_EXPR for the temporary will be
5003 added just after the DECL_EXPR for DECL. That's why we don't set
5004 DECL_INITIAL for local references (instead assigning to them
5005 explicitly); we need to allow the temporary to be initialized
5006 first. */
5007 return initialize_reference (type, init, flags,
5008 tf_warning_or_error);
5011 /* Designated initializers in arrays are not supported in GNU C++.
5012 The parser cannot detect this error since it does not know whether
5013 a given brace-enclosed initializer is for a class type or for an
5014 array. This function checks that CE does not use a designated
5015 initializer. If it does, an error is issued. Returns true if CE
5016 is valid, i.e., does not have a designated initializer. */
5018 static bool
5019 check_array_designated_initializer (constructor_elt *ce,
5020 unsigned HOST_WIDE_INT index)
5022 /* Designated initializers for array elements are not supported. */
5023 if (ce->index)
5025 /* The parser only allows identifiers as designated
5026 initializers. */
5027 if (ce->index == error_mark_node)
5029 error ("name used in a GNU-style designated "
5030 "initializer for an array");
5031 return false;
5033 else if (identifier_p (ce->index))
5035 error ("name %qD used in a GNU-style designated "
5036 "initializer for an array", ce->index);
5037 return false;
5040 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5041 ce->index, true);
5042 if (ce_index
5043 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
5044 && (TREE_CODE (ce_index = maybe_constant_value (ce_index))
5045 == INTEGER_CST))
5047 /* A C99 designator is OK if it matches the current index. */
5048 if (wi::eq_p (ce_index, index))
5049 return true;
5050 else
5051 sorry ("non-trivial designated initializers not supported");
5053 else
5054 error ("C99 designator %qE is not an integral constant-expression",
5055 ce->index);
5057 return false;
5060 return true;
5063 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5064 array until we finish parsing the initializer. If that's the
5065 situation we're in, update DECL accordingly. */
5067 static void
5068 maybe_deduce_size_from_array_init (tree decl, tree init)
5070 tree type = TREE_TYPE (decl);
5072 if (TREE_CODE (type) == ARRAY_TYPE
5073 && TYPE_DOMAIN (type) == NULL_TREE
5074 && TREE_CODE (decl) != TYPE_DECL)
5076 /* do_default is really a C-ism to deal with tentative definitions.
5077 But let's leave it here to ease the eventual merge. */
5078 int do_default = !DECL_EXTERNAL (decl);
5079 tree initializer = init ? init : DECL_INITIAL (decl);
5080 int failure = 0;
5082 /* Check that there are no designated initializers in INIT, as
5083 those are not supported in GNU C++, and as the middle-end
5084 will crash if presented with a non-numeric designated
5085 initializer. */
5086 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
5088 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
5089 constructor_elt *ce;
5090 HOST_WIDE_INT i;
5091 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
5092 if (!check_array_designated_initializer (ce, i))
5093 failure = 1;
5096 if (!failure)
5098 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
5099 do_default);
5100 if (failure == 1)
5102 error ("initializer fails to determine size of %qD", decl);
5104 else if (failure == 2)
5106 if (do_default)
5108 error ("array size missing in %qD", decl);
5110 /* If a `static' var's size isn't known, make it extern as
5111 well as static, so it does not get allocated. If it's not
5112 `static', then don't mark it extern; finish_incomplete_decl
5113 will give it a default size and it will get allocated. */
5114 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
5115 DECL_EXTERNAL (decl) = 1;
5117 else if (failure == 3)
5119 error ("zero-size array %qD", decl);
5123 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
5125 relayout_decl (decl);
5129 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5130 any appropriate error messages regarding the layout. */
5132 static void
5133 layout_var_decl (tree decl)
5135 tree type;
5137 type = TREE_TYPE (decl);
5138 if (type == error_mark_node)
5139 return;
5141 /* If we haven't already laid out this declaration, do so now.
5142 Note that we must not call complete type for an external object
5143 because it's type might involve templates that we are not
5144 supposed to instantiate yet. (And it's perfectly valid to say
5145 `extern X x' for some incomplete type `X'.) */
5146 if (!DECL_EXTERNAL (decl))
5147 complete_type (type);
5148 if (!DECL_SIZE (decl)
5149 && TREE_TYPE (decl) != error_mark_node
5150 && (COMPLETE_TYPE_P (type)
5151 || (TREE_CODE (type) == ARRAY_TYPE
5152 && !TYPE_DOMAIN (type)
5153 && COMPLETE_TYPE_P (TREE_TYPE (type)))))
5154 layout_decl (decl, 0);
5156 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
5158 /* An automatic variable with an incomplete type: that is an error.
5159 Don't talk about array types here, since we took care of that
5160 message in grokdeclarator. */
5161 error ("storage size of %qD isn%'t known", decl);
5162 TREE_TYPE (decl) = error_mark_node;
5164 #if 0
5165 /* Keep this code around in case we later want to control debug info
5166 based on whether a type is "used". (jason 1999-11-11) */
5168 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
5169 /* Let debugger know it should output info for this type. */
5170 note_debug_info_needed (ttype);
5172 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
5173 note_debug_info_needed (DECL_CONTEXT (decl));
5174 #endif
5176 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
5177 && DECL_SIZE (decl) != NULL_TREE
5178 && ! TREE_CONSTANT (DECL_SIZE (decl)))
5180 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
5181 constant_expression_warning (DECL_SIZE (decl));
5182 else
5184 error ("storage size of %qD isn%'t constant", decl);
5185 TREE_TYPE (decl) = error_mark_node;
5190 /* If a local static variable is declared in an inline function, or if
5191 we have a weak definition, we must endeavor to create only one
5192 instance of the variable at link-time. */
5194 void
5195 maybe_commonize_var (tree decl)
5197 /* Static data in a function with comdat linkage also has comdat
5198 linkage. */
5199 if (TREE_STATIC (decl)
5200 /* Don't mess with __FUNCTION__. */
5201 && ! DECL_ARTIFICIAL (decl)
5202 && DECL_FUNCTION_SCOPE_P (decl)
5203 && vague_linkage_p (DECL_CONTEXT (decl)))
5205 if (flag_weak)
5207 /* With weak symbols, we simply make the variable COMDAT;
5208 that will cause copies in multiple translations units to
5209 be merged. */
5210 comdat_linkage (decl);
5212 else
5214 if (DECL_INITIAL (decl) == NULL_TREE
5215 || DECL_INITIAL (decl) == error_mark_node)
5217 /* Without weak symbols, we can use COMMON to merge
5218 uninitialized variables. */
5219 TREE_PUBLIC (decl) = 1;
5220 DECL_COMMON (decl) = 1;
5222 else
5224 /* While for initialized variables, we must use internal
5225 linkage -- which means that multiple copies will not
5226 be merged. */
5227 TREE_PUBLIC (decl) = 0;
5228 DECL_COMMON (decl) = 0;
5229 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
5230 "sorry: semantics of inline function static "
5231 "data %q#D are wrong (you%'ll wind up "
5232 "with multiple copies)", decl))
5233 inform (DECL_SOURCE_LOCATION (decl),
5234 "you can work around this by removing the initializer");
5240 /* Issue an error message if DECL is an uninitialized const variable. */
5242 static void
5243 check_for_uninitialized_const_var (tree decl)
5245 tree type = strip_array_types (TREE_TYPE (decl));
5247 /* ``Unless explicitly declared extern, a const object does not have
5248 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5249 7.1.6 */
5250 if (VAR_P (decl)
5251 && TREE_CODE (type) != REFERENCE_TYPE
5252 && (CP_TYPE_CONST_P (type) || var_in_constexpr_fn (decl))
5253 && !DECL_INITIAL (decl))
5255 tree field = default_init_uninitialized_part (type);
5256 if (!field)
5257 return;
5259 if (CP_TYPE_CONST_P (type))
5260 permerror (DECL_SOURCE_LOCATION (decl),
5261 "uninitialized const %qD", decl);
5262 else
5264 error_at (DECL_SOURCE_LOCATION (decl),
5265 "uninitialized variable %qD in %<constexpr%> function",
5266 decl);
5267 cp_function_chain->invalid_constexpr = true;
5270 if (CLASS_TYPE_P (type))
5272 tree defaulted_ctor;
5274 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5275 "%q#T has no user-provided default constructor", type);
5276 defaulted_ctor = in_class_defaulted_default_constructor (type);
5277 if (defaulted_ctor)
5278 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5279 "constructor is not user-provided because it is "
5280 "explicitly defaulted in the class body");
5281 inform (0, "and the implicitly-defined constructor does not "
5282 "initialize %q+#D", field);
5287 /* Structure holding the current initializer being processed by reshape_init.
5288 CUR is a pointer to the current element being processed, END is a pointer
5289 after the last element present in the initializer. */
5290 typedef struct reshape_iterator_t
5292 constructor_elt *cur;
5293 constructor_elt *end;
5294 } reshape_iter;
5296 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5298 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5299 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5300 initialized. If there are no more such fields, the return value
5301 will be NULL. */
5303 tree
5304 next_initializable_field (tree field)
5306 while (field
5307 && (TREE_CODE (field) != FIELD_DECL
5308 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
5309 || DECL_ARTIFICIAL (field)))
5310 field = DECL_CHAIN (field);
5312 return field;
5315 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5316 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5317 INTEGER_CST representing the size of the array minus one (the maximum index),
5318 or NULL_TREE if the array was declared without specifying the size. D is
5319 the iterator within the constructor. */
5321 static tree
5322 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5323 tsubst_flags_t complain)
5325 tree new_init;
5326 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5327 unsigned HOST_WIDE_INT max_index_cst = 0;
5328 unsigned HOST_WIDE_INT index;
5330 /* The initializer for an array is always a CONSTRUCTOR. */
5331 new_init = build_constructor (init_list_type_node, NULL);
5333 if (sized_array_p)
5335 /* Minus 1 is used for zero sized arrays. */
5336 if (integer_all_onesp (max_index))
5337 return new_init;
5339 if (tree_fits_uhwi_p (max_index))
5340 max_index_cst = tree_to_uhwi (max_index);
5341 /* sizetype is sign extended, not zero extended. */
5342 else
5343 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5346 /* Loop until there are no more initializers. */
5347 for (index = 0;
5348 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5349 ++index)
5351 tree elt_init;
5352 constructor_elt *old_cur = d->cur;
5354 check_array_designated_initializer (d->cur, index);
5355 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5356 complain);
5357 if (elt_init == error_mark_node)
5358 return error_mark_node;
5359 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5360 size_int (index), elt_init);
5361 if (!TREE_CONSTANT (elt_init))
5362 TREE_CONSTANT (new_init) = false;
5364 /* This can happen with an invalid initializer (c++/54501). */
5365 if (d->cur == old_cur && !sized_array_p)
5366 break;
5369 return new_init;
5372 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5373 Parameters are the same of reshape_init_r. */
5375 static tree
5376 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5378 tree max_index = NULL_TREE;
5380 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5382 if (TYPE_DOMAIN (type))
5383 max_index = array_type_nelts (type);
5385 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5388 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5389 Parameters are the same of reshape_init_r. */
5391 static tree
5392 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5394 tree max_index = NULL_TREE;
5396 gcc_assert (TREE_CODE (type) == VECTOR_TYPE);
5398 if (COMPOUND_LITERAL_P (d->cur->value))
5400 tree value = d->cur->value;
5401 if (!same_type_p (TREE_TYPE (value), type))
5403 if (complain & tf_error)
5404 error ("invalid type %qT as initializer for a vector of type %qT",
5405 TREE_TYPE (d->cur->value), type);
5406 value = error_mark_node;
5408 ++d->cur;
5409 return value;
5412 /* For a vector, we initialize it as an array of the appropriate size. */
5413 if (TREE_CODE (type) == VECTOR_TYPE)
5414 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5416 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5419 /* Subroutine of reshape_init_r, processes the initializers for classes
5420 or union. Parameters are the same of reshape_init_r. */
5422 static tree
5423 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
5424 tsubst_flags_t complain)
5426 tree field;
5427 tree new_init;
5429 gcc_assert (CLASS_TYPE_P (type));
5431 /* The initializer for a class is always a CONSTRUCTOR. */
5432 new_init = build_constructor (init_list_type_node, NULL);
5433 field = next_initializable_field (TYPE_FIELDS (type));
5435 if (!field)
5437 /* [dcl.init.aggr]
5439 An initializer for an aggregate member that is an
5440 empty class shall have the form of an empty
5441 initializer-list {}. */
5442 if (!first_initializer_p)
5444 if (complain & tf_error)
5445 error ("initializer for %qT must be brace-enclosed", type);
5446 return error_mark_node;
5448 return new_init;
5451 /* Loop through the initializable fields, gathering initializers. */
5452 while (d->cur != d->end)
5454 tree field_init;
5455 constructor_elt *old_cur = d->cur;
5457 /* Handle designated initializers, as an extension. */
5458 if (d->cur->index)
5460 if (d->cur->index == error_mark_node)
5461 return error_mark_node;
5463 if (TREE_CODE (d->cur->index) == FIELD_DECL)
5464 /* We already reshaped this. */
5465 gcc_assert (d->cur->index == field);
5466 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
5467 field = lookup_field_1 (type, d->cur->index, /*want_type=*/false);
5468 else
5470 if (complain & tf_error)
5471 error ("%<[%E] =%> used in a GNU-style designated initializer"
5472 " for class %qT", d->cur->index, type);
5473 return error_mark_node;
5476 if (!field || TREE_CODE (field) != FIELD_DECL)
5478 if (complain & tf_error)
5479 error ("%qT has no non-static data member named %qD", type,
5480 d->cur->index);
5481 return error_mark_node;
5485 /* If we processed all the member of the class, we are done. */
5486 if (!field)
5487 break;
5489 field_init = reshape_init_r (TREE_TYPE (field), d,
5490 /*first_initializer_p=*/false, complain);
5491 if (field_init == error_mark_node)
5492 return error_mark_node;
5494 if (d->cur == old_cur && d->cur->index)
5496 /* This can happen with an invalid initializer for a flexible
5497 array member (c++/54441). */
5498 if (complain & tf_error)
5499 error ("invalid initializer for %q#D", field);
5500 return error_mark_node;
5503 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
5505 /* [dcl.init.aggr]
5507 When a union is initialized with a brace-enclosed
5508 initializer, the braces shall only contain an
5509 initializer for the first member of the union. */
5510 if (TREE_CODE (type) == UNION_TYPE)
5511 break;
5513 field = next_initializable_field (DECL_CHAIN (field));
5516 return new_init;
5519 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5520 designators are not valid; either complain or return true to indicate
5521 that reshape_init_r should return error_mark_node. */
5523 static bool
5524 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
5526 if (d->cur->index)
5528 if (complain & tf_error)
5529 error ("C99 designator %qE outside aggregate initializer",
5530 d->cur->index);
5531 else
5532 return true;
5534 return false;
5537 /* Subroutine of reshape_init, which processes a single initializer (part of
5538 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5539 iterator within the CONSTRUCTOR which points to the initializer to process.
5540 FIRST_INITIALIZER_P is true if this is the first initializer of the
5541 outermost CONSTRUCTOR node. */
5543 static tree
5544 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
5545 tsubst_flags_t complain)
5547 tree init = d->cur->value;
5549 if (error_operand_p (init))
5550 return error_mark_node;
5552 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
5553 && has_designator_problem (d, complain))
5554 return error_mark_node;
5556 if (TREE_CODE (type) == COMPLEX_TYPE)
5558 /* A complex type can be initialized from one or two initializers,
5559 but braces are not elided. */
5560 d->cur++;
5561 if (BRACE_ENCLOSED_INITIALIZER_P (init))
5563 if (CONSTRUCTOR_NELTS (init) > 2)
5565 if (complain & tf_error)
5566 error ("too many initializers for %qT", type);
5567 else
5568 return error_mark_node;
5571 else if (first_initializer_p && d->cur != d->end)
5573 vec<constructor_elt, va_gc> *v = 0;
5574 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
5575 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
5576 if (has_designator_problem (d, complain))
5577 return error_mark_node;
5578 d->cur++;
5579 init = build_constructor (init_list_type_node, v);
5581 return init;
5584 /* A non-aggregate type is always initialized with a single
5585 initializer. */
5586 if (!CP_AGGREGATE_TYPE_P (type))
5588 /* It is invalid to initialize a non-aggregate type with a
5589 brace-enclosed initializer before C++0x.
5590 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
5591 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
5592 a CONSTRUCTOR (with a record type). */
5593 if (TREE_CODE (init) == CONSTRUCTOR
5594 /* Don't complain about a capture-init. */
5595 && !CONSTRUCTOR_IS_DIRECT_INIT (init)
5596 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
5598 if (SCALAR_TYPE_P (type))
5600 if (cxx_dialect < cxx11
5601 /* Isn't value-initialization. */
5602 || CONSTRUCTOR_NELTS (init) > 0)
5604 if (complain & tf_error)
5605 error ("braces around scalar initializer for type %qT",
5606 type);
5607 init = error_mark_node;
5610 else
5611 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5614 d->cur++;
5615 return init;
5618 /* "If T is a class type and the initializer list has a single element of
5619 type cv U, where U is T or a class derived from T, the object is
5620 initialized from that element." Even if T is an aggregate. */
5621 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
5622 && first_initializer_p
5623 && d->end - d->cur == 1
5624 && reference_related_p (type, TREE_TYPE (init)))
5626 d->cur++;
5627 return init;
5630 /* [dcl.init.aggr]
5632 All implicit type conversions (clause _conv_) are considered when
5633 initializing the aggregate member with an initializer from an
5634 initializer-list. If the initializer can initialize a member,
5635 the member is initialized. Otherwise, if the member is itself a
5636 non-empty subaggregate, brace elision is assumed and the
5637 initializer is considered for the initialization of the first
5638 member of the subaggregate. */
5639 if (TREE_CODE (init) != CONSTRUCTOR
5640 /* But don't try this for the first initializer, since that would be
5641 looking through the outermost braces; A a2 = { a1 }; is not a
5642 valid aggregate initialization. */
5643 && !first_initializer_p
5644 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
5645 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
5646 complain)))
5648 d->cur++;
5649 return init;
5652 /* [dcl.init.string]
5654 A char array (whether plain char, signed char, or unsigned char)
5655 can be initialized by a string-literal (optionally enclosed in
5656 braces); a wchar_t array can be initialized by a wide
5657 string-literal (optionally enclosed in braces). */
5658 if (TREE_CODE (type) == ARRAY_TYPE
5659 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
5661 tree str_init = init;
5663 /* Strip one level of braces if and only if they enclose a single
5664 element (as allowed by [dcl.init.string]). */
5665 if (!first_initializer_p
5666 && TREE_CODE (str_init) == CONSTRUCTOR
5667 && vec_safe_length (CONSTRUCTOR_ELTS (str_init)) == 1)
5669 str_init = (*CONSTRUCTOR_ELTS (str_init))[0].value;
5672 /* If it's a string literal, then it's the initializer for the array
5673 as a whole. Otherwise, continue with normal initialization for
5674 array types (one value per array element). */
5675 if (TREE_CODE (str_init) == STRING_CST)
5677 if (has_designator_problem (d, complain))
5678 return error_mark_node;
5679 d->cur++;
5680 return str_init;
5684 /* The following cases are about aggregates. If we are not within a full
5685 initializer already, and there is not a CONSTRUCTOR, it means that there
5686 is a missing set of braces (that is, we are processing the case for
5687 which reshape_init exists). */
5688 if (!first_initializer_p)
5690 if (TREE_CODE (init) == CONSTRUCTOR)
5692 if (TREE_TYPE (init) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init)))
5693 /* There is no need to reshape pointer-to-member function
5694 initializers, as they are always constructed correctly
5695 by the front end. */
5697 else if (COMPOUND_LITERAL_P (init))
5698 /* For a nested compound literal, there is no need to reshape since
5699 brace elision is not allowed. Even if we decided to allow it,
5700 we should add a call to reshape_init in finish_compound_literal,
5701 before calling digest_init, so changing this code would still
5702 not be necessary. */
5703 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
5704 else
5706 ++d->cur;
5707 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5708 return reshape_init (type, init, complain);
5712 warning (OPT_Wmissing_braces, "missing braces around initializer for %qT",
5713 type);
5716 /* Dispatch to specialized routines. */
5717 if (CLASS_TYPE_P (type))
5718 return reshape_init_class (type, d, first_initializer_p, complain);
5719 else if (TREE_CODE (type) == ARRAY_TYPE)
5720 return reshape_init_array (type, d, complain);
5721 else if (TREE_CODE (type) == VECTOR_TYPE)
5722 return reshape_init_vector (type, d, complain);
5723 else
5724 gcc_unreachable();
5727 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
5728 brace-enclosed aggregate initializer.
5730 INIT is the CONSTRUCTOR containing the list of initializers describing
5731 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
5732 It may not presently match the shape of the TYPE; for example:
5734 struct S { int a; int b; };
5735 struct S a[] = { 1, 2, 3, 4 };
5737 Here INIT will hold a vector of four elements, rather than a
5738 vector of two elements, each itself a vector of two elements. This
5739 routine transforms INIT from the former form into the latter. The
5740 revised CONSTRUCTOR node is returned. */
5742 tree
5743 reshape_init (tree type, tree init, tsubst_flags_t complain)
5745 vec<constructor_elt, va_gc> *v;
5746 reshape_iter d;
5747 tree new_init;
5749 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5751 v = CONSTRUCTOR_ELTS (init);
5753 /* An empty constructor does not need reshaping, and it is always a valid
5754 initializer. */
5755 if (vec_safe_is_empty (v))
5756 return init;
5758 /* Recurse on this CONSTRUCTOR. */
5759 d.cur = &(*v)[0];
5760 d.end = d.cur + v->length ();
5762 new_init = reshape_init_r (type, &d, true, complain);
5763 if (new_init == error_mark_node)
5764 return error_mark_node;
5766 /* Make sure all the element of the constructor were used. Otherwise,
5767 issue an error about exceeding initializers. */
5768 if (d.cur != d.end)
5770 if (complain & tf_error)
5771 error ("too many initializers for %qT", type);
5772 else
5773 return error_mark_node;
5776 return new_init;
5779 /* Verify array initializer. Returns true if errors have been reported. */
5781 bool
5782 check_array_initializer (tree decl, tree type, tree init)
5784 tree element_type = TREE_TYPE (type);
5786 /* The array type itself need not be complete, because the
5787 initializer may tell us how many elements are in the array.
5788 But, the elements of the array must be complete. */
5789 if (!COMPLETE_TYPE_P (complete_type (element_type)))
5791 if (decl)
5792 error ("elements of array %q#D have incomplete type", decl);
5793 else
5794 error ("elements of array %q#T have incomplete type", type);
5795 return true;
5797 /* A compound literal can't have variable size. */
5798 if (init && !decl
5799 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
5800 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
5802 error ("variable-sized compound literal");
5803 return true;
5805 return false;
5808 /* Subroutine of check_initializer; args are passed down from that function.
5809 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
5811 static tree
5812 build_aggr_init_full_exprs (tree decl, tree init, int flags)
5815 gcc_assert (stmts_are_full_exprs_p ());
5816 return build_aggr_init (decl, init, flags, tf_warning_or_error);
5819 /* Verify INIT (the initializer for DECL), and record the
5820 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
5821 grok_reference_init.
5823 If the return value is non-NULL, it is an expression that must be
5824 evaluated dynamically to initialize DECL. */
5826 static tree
5827 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
5829 tree type = TREE_TYPE (decl);
5830 tree init_code = NULL;
5831 tree core_type;
5833 /* Things that are going to be initialized need to have complete
5834 type. */
5835 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
5837 if (DECL_HAS_VALUE_EXPR_P (decl))
5839 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
5840 it doesn't have storage to be initialized. */
5841 gcc_assert (init == NULL_TREE);
5842 return NULL_TREE;
5845 if (type == error_mark_node)
5846 /* We will have already complained. */
5847 return NULL_TREE;
5849 if (TREE_CODE (type) == ARRAY_TYPE)
5851 if (check_array_initializer (decl, type, init))
5852 return NULL_TREE;
5854 else if (!COMPLETE_TYPE_P (type))
5856 error ("%q#D has incomplete type", decl);
5857 TREE_TYPE (decl) = error_mark_node;
5858 return NULL_TREE;
5860 else
5861 /* There is no way to make a variable-sized class type in GNU C++. */
5862 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
5864 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
5866 int init_len = vec_safe_length (CONSTRUCTOR_ELTS (init));
5867 if (SCALAR_TYPE_P (type))
5869 if (init_len == 0)
5871 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5872 init = build_zero_init (type, NULL_TREE, false);
5874 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
5876 error ("scalar object %qD requires one element in initializer",
5877 decl);
5878 TREE_TYPE (decl) = error_mark_node;
5879 return NULL_TREE;
5884 if (TREE_CODE (decl) == CONST_DECL)
5886 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
5888 DECL_INITIAL (decl) = init;
5890 gcc_assert (init != NULL_TREE);
5891 init = NULL_TREE;
5893 else if (!init && DECL_REALLY_EXTERN (decl))
5895 else if (init || type_build_ctor_call (type)
5896 || TREE_CODE (type) == REFERENCE_TYPE)
5898 if (TREE_CODE (type) == REFERENCE_TYPE)
5900 init = grok_reference_init (decl, type, init, flags);
5901 flags |= LOOKUP_ALREADY_DIGESTED;
5903 else if (!init)
5904 check_for_uninitialized_const_var (decl);
5905 /* Do not reshape constructors of vectors (they don't need to be
5906 reshaped. */
5907 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
5909 if (is_std_init_list (type))
5911 init = perform_implicit_conversion (type, init,
5912 tf_warning_or_error);
5913 flags |= LOOKUP_ALREADY_DIGESTED;
5915 else if (TYPE_NON_AGGREGATE_CLASS (type))
5917 /* Don't reshape if the class has constructors. */
5918 if (cxx_dialect == cxx98)
5919 error ("in C++98 %qD must be initialized by constructor, "
5920 "not by %<{...}%>",
5921 decl);
5923 else if (TREE_CODE (type) == VECTOR_TYPE && TYPE_VECTOR_OPAQUE (type))
5925 error ("opaque vector types cannot be initialized");
5926 init = error_mark_node;
5928 else
5930 init = reshape_init (type, init, tf_warning_or_error);
5931 flags |= LOOKUP_NO_NARROWING;
5934 else if (TREE_CODE (init) == TREE_LIST
5935 && TREE_TYPE (init) != unknown_type_node
5936 && !MAYBE_CLASS_TYPE_P (type))
5938 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
5940 /* We get here with code like `int a (2);' */
5941 init = build_x_compound_expr_from_list (init, ELK_INIT,
5942 tf_warning_or_error);
5945 /* If DECL has an array type without a specific bound, deduce the
5946 array size from the initializer. */
5947 maybe_deduce_size_from_array_init (decl, init);
5948 type = TREE_TYPE (decl);
5949 if (type == error_mark_node)
5950 return NULL_TREE;
5952 if ((type_build_ctor_call (type) || CLASS_TYPE_P (type))
5953 && !(flags & LOOKUP_ALREADY_DIGESTED)
5954 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
5955 && CP_AGGREGATE_TYPE_P (type)
5956 && (CLASS_TYPE_P (type)
5957 || !TYPE_NEEDS_CONSTRUCTING (type)
5958 || type_has_extended_temps (type))))
5960 init_code = build_aggr_init_full_exprs (decl, init, flags);
5962 /* A constructor call is a non-trivial initializer even if
5963 it isn't explicitly written. */
5964 if (TREE_SIDE_EFFECTS (init_code))
5965 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
5967 /* If this is a constexpr initializer, expand_default_init will
5968 have returned an INIT_EXPR rather than a CALL_EXPR. In that
5969 case, pull the initializer back out and pass it down into
5970 store_init_value. */
5971 while (TREE_CODE (init_code) == EXPR_STMT
5972 || TREE_CODE (init_code) == CONVERT_EXPR)
5973 init_code = TREE_OPERAND (init_code, 0);
5974 if (TREE_CODE (init_code) == INIT_EXPR)
5976 init = TREE_OPERAND (init_code, 1);
5977 init_code = NULL_TREE;
5978 /* Don't call digest_init; it's unnecessary and will complain
5979 about aggregate initialization of non-aggregate classes. */
5980 flags |= LOOKUP_ALREADY_DIGESTED;
5982 else if (DECL_DECLARED_CONSTEXPR_P (decl))
5984 /* Declared constexpr, but no suitable initializer; massage
5985 init appropriately so we can pass it into store_init_value
5986 for the error. */
5987 if (CLASS_TYPE_P (type)
5988 && (!init || TREE_CODE (init) == TREE_LIST))
5990 init = build_functional_cast (type, init, tf_none);
5991 if (TREE_CODE (init) == TARGET_EXPR)
5992 TARGET_EXPR_DIRECT_INIT_P (init) = true;
5994 init_code = NULL_TREE;
5996 else
5997 init = NULL_TREE;
6000 if (init && TREE_CODE (init) != TREE_VEC)
6002 /* In aggregate initialization of a variable, each element
6003 initialization is a full-expression because there is no
6004 enclosing expression. */
6005 gcc_assert (stmts_are_full_exprs_p ());
6007 init_code = store_init_value (decl, init, cleanups, flags);
6009 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
6010 && DECL_INITIAL (decl)
6011 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
6012 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
6013 warning (0, "array %qD initialized by parenthesized string literal %qE",
6014 decl, DECL_INITIAL (decl));
6015 init = NULL;
6018 else
6020 if (CLASS_TYPE_P (core_type = strip_array_types (type))
6021 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
6022 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
6023 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
6024 /*complain=*/true);
6026 check_for_uninitialized_const_var (decl);
6029 if (init && init != error_mark_node)
6030 init_code = build2 (INIT_EXPR, type, decl, init);
6032 if (init_code)
6034 /* We might have set these in cp_finish_decl. */
6035 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
6036 TREE_CONSTANT (decl) = false;
6039 if (init_code && DECL_IN_AGGR_P (decl))
6041 static int explained = 0;
6043 if (cxx_dialect < cxx11)
6044 error ("initializer invalid for static member with constructor");
6045 else
6046 error ("non-constant in-class initialization invalid for static "
6047 "member %qD", decl);
6048 if (!explained)
6050 inform (input_location,
6051 "(an out of class initialization is required)");
6052 explained = 1;
6054 return NULL_TREE;
6057 return init_code;
6060 /* If DECL is not a local variable, give it RTL. */
6062 static void
6063 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
6065 int toplev = toplevel_bindings_p ();
6066 int defer_p;
6068 /* Set the DECL_ASSEMBLER_NAME for the object. */
6069 if (asmspec)
6071 /* The `register' keyword, when used together with an
6072 asm-specification, indicates that the variable should be
6073 placed in a particular register. */
6074 if (VAR_P (decl) && DECL_REGISTER (decl))
6076 set_user_assembler_name (decl, asmspec);
6077 DECL_HARD_REGISTER (decl) = 1;
6079 else
6081 if (TREE_CODE (decl) == FUNCTION_DECL
6082 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
6083 set_builtin_user_assembler_name (decl, asmspec);
6084 set_user_assembler_name (decl, asmspec);
6088 /* Handle non-variables up front. */
6089 if (!VAR_P (decl))
6091 rest_of_decl_compilation (decl, toplev, at_eof);
6092 return;
6095 /* If we see a class member here, it should be a static data
6096 member. */
6097 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
6099 gcc_assert (TREE_STATIC (decl));
6100 /* An in-class declaration of a static data member should be
6101 external; it is only a declaration, and not a definition. */
6102 if (init == NULL_TREE)
6103 gcc_assert (DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl));
6106 /* We don't create any RTL for local variables. */
6107 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6108 return;
6110 /* We defer emission of local statics until the corresponding
6111 DECL_EXPR is expanded. */
6112 defer_p = DECL_FUNCTION_SCOPE_P (decl) || DECL_VIRTUAL_P (decl);
6114 /* Defer template instantiations. */
6115 if (DECL_LANG_SPECIFIC (decl)
6116 && DECL_IMPLICIT_INSTANTIATION (decl))
6117 defer_p = 1;
6119 /* If we're not deferring, go ahead and assemble the variable. */
6120 if (!defer_p)
6121 rest_of_decl_compilation (decl, toplev, at_eof);
6124 /* walk_tree helper for wrap_temporary_cleanups, below. */
6126 static tree
6127 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
6129 /* Stop at types or full-expression boundaries. */
6130 if (TYPE_P (*stmt_p)
6131 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
6133 *walk_subtrees = 0;
6134 return NULL_TREE;
6137 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
6139 tree guard = (tree)data;
6140 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
6142 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
6143 /* Tell honor_protect_cleanup_actions to handle this as a separate
6144 cleanup. */
6145 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
6147 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
6150 return NULL_TREE;
6153 /* We're initializing a local variable which has a cleanup GUARD. If there
6154 are any temporaries used in the initializer INIT of this variable, we
6155 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6156 variable will be cleaned up properly if one of them throws.
6158 Unfortunately, there's no way to express this properly in terms of
6159 nesting, as the regions for the temporaries overlap the region for the
6160 variable itself; if there are two temporaries, the variable needs to be
6161 the first thing destroyed if either of them throws. However, we only
6162 want to run the variable's cleanup if it actually got constructed. So
6163 we need to guard the temporary cleanups with the variable's cleanup if
6164 they are run on the normal path, but not if they are run on the
6165 exceptional path. We implement this by telling
6166 honor_protect_cleanup_actions to strip the variable cleanup from the
6167 exceptional path. */
6169 static void
6170 wrap_temporary_cleanups (tree init, tree guard)
6172 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
6175 /* Generate code to initialize DECL (a local variable). */
6177 static void
6178 initialize_local_var (tree decl, tree init)
6180 tree type = TREE_TYPE (decl);
6181 tree cleanup;
6182 int already_used;
6184 gcc_assert (VAR_P (decl)
6185 || TREE_CODE (decl) == RESULT_DECL);
6186 gcc_assert (!TREE_STATIC (decl));
6188 if (DECL_SIZE (decl) == NULL_TREE)
6190 /* If we used it already as memory, it must stay in memory. */
6191 DECL_INITIAL (decl) = NULL_TREE;
6192 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6193 return;
6196 if (type == error_mark_node)
6197 return;
6199 /* Compute and store the initial value. */
6200 already_used = TREE_USED (decl) || TREE_USED (type);
6201 if (TREE_USED (type))
6202 DECL_READ_P (decl) = 1;
6204 /* Generate a cleanup, if necessary. */
6205 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6207 /* Perform the initialization. */
6208 if (init)
6210 tree rinit = (TREE_CODE (init) == INIT_EXPR
6211 ? TREE_OPERAND (init, 1) : NULL_TREE);
6212 if (rinit && !TREE_SIDE_EFFECTS (rinit))
6214 /* Stick simple initializers in DECL_INITIAL so that
6215 -Wno-init-self works (c++/34772). */
6216 gcc_assert (TREE_OPERAND (init, 0) == decl);
6217 DECL_INITIAL (decl) = rinit;
6219 if (warn_init_self && TREE_CODE (type) == REFERENCE_TYPE)
6221 STRIP_NOPS (rinit);
6222 if (rinit == decl)
6223 warning_at (DECL_SOURCE_LOCATION (decl),
6224 OPT_Winit_self,
6225 "reference %qD is initialized with itself", decl);
6228 else
6230 int saved_stmts_are_full_exprs_p;
6232 /* If we're only initializing a single object, guard the
6233 destructors of any temporaries used in its initializer with
6234 its destructor. This isn't right for arrays because each
6235 element initialization is a full-expression. */
6236 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6237 wrap_temporary_cleanups (init, cleanup);
6239 gcc_assert (building_stmt_list_p ());
6240 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6241 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6242 finish_expr_stmt (init);
6243 current_stmt_tree ()->stmts_are_full_exprs_p =
6244 saved_stmts_are_full_exprs_p;
6248 /* Set this to 0 so we can tell whether an aggregate which was
6249 initialized was ever used. Don't do this if it has a
6250 destructor, so we don't complain about the 'resource
6251 allocation is initialization' idiom. Now set
6252 attribute((unused)) on types so decls of that type will be
6253 marked used. (see TREE_USED, above.) */
6254 if (TYPE_NEEDS_CONSTRUCTING (type)
6255 && ! already_used
6256 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6257 && DECL_NAME (decl))
6258 TREE_USED (decl) = 0;
6259 else if (already_used)
6260 TREE_USED (decl) = 1;
6262 if (cleanup)
6263 finish_decl_cleanup (decl, cleanup);
6266 /* DECL is a VAR_DECL for a compiler-generated variable with static
6267 storage duration (like a virtual table) whose initializer is a
6268 compile-time constant. Initialize the variable and provide it to the
6269 back end. */
6271 void
6272 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6274 tree init;
6275 gcc_assert (DECL_ARTIFICIAL (decl));
6276 init = build_constructor (TREE_TYPE (decl), v);
6277 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6278 DECL_INITIAL (decl) = init;
6279 DECL_INITIALIZED_P (decl) = 1;
6280 determine_visibility (decl);
6281 layout_var_decl (decl);
6282 maybe_commonize_var (decl);
6283 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6286 /* INIT is the initializer for a variable, as represented by the
6287 parser. Returns true iff INIT is type-dependent. */
6289 static bool
6290 type_dependent_init_p (tree init)
6292 if (TREE_CODE (init) == TREE_LIST)
6293 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6294 return any_type_dependent_elements_p (init);
6295 else if (TREE_CODE (init) == CONSTRUCTOR)
6296 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6298 vec<constructor_elt, va_gc> *elts;
6299 size_t nelts;
6300 size_t i;
6302 elts = CONSTRUCTOR_ELTS (init);
6303 nelts = vec_safe_length (elts);
6304 for (i = 0; i < nelts; ++i)
6305 if (type_dependent_init_p ((*elts)[i].value))
6306 return true;
6308 else
6309 /* It must be a simple expression, e.g., int i = 3; */
6310 return type_dependent_expression_p (init);
6312 return false;
6315 /* INIT is the initializer for a variable, as represented by the
6316 parser. Returns true iff INIT is value-dependent. */
6318 static bool
6319 value_dependent_init_p (tree init)
6321 if (TREE_CODE (init) == TREE_LIST)
6322 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6323 return any_value_dependent_elements_p (init);
6324 else if (TREE_CODE (init) == CONSTRUCTOR)
6325 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6327 vec<constructor_elt, va_gc> *elts;
6328 size_t nelts;
6329 size_t i;
6331 elts = CONSTRUCTOR_ELTS (init);
6332 nelts = vec_safe_length (elts);
6333 for (i = 0; i < nelts; ++i)
6334 if (value_dependent_init_p ((*elts)[i].value))
6335 return true;
6337 else
6338 /* It must be a simple expression, e.g., int i = 3; */
6339 return value_dependent_expression_p (init);
6341 return false;
6344 /* Finish processing of a declaration;
6345 install its line number and initial value.
6346 If the length of an array type is not known before,
6347 it must be determined now, from the initial value, or it is an error.
6349 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6350 true, then INIT is an integral constant expression.
6352 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6353 if the (init) syntax was used. */
6355 void
6356 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
6357 tree asmspec_tree, int flags)
6359 tree type;
6360 vec<tree, va_gc> *cleanups = NULL;
6361 const char *asmspec = NULL;
6362 int was_readonly = 0;
6363 bool var_definition_p = false;
6364 tree auto_node;
6366 if (decl == error_mark_node)
6367 return;
6368 else if (! decl)
6370 if (init)
6371 error ("assignment (not initialization) in declaration");
6372 return;
6375 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6376 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6377 gcc_assert (TREE_CODE (decl) != PARM_DECL);
6379 type = TREE_TYPE (decl);
6380 if (type == error_mark_node)
6381 return;
6383 /* If a name was specified, get the string. */
6384 if (at_namespace_scope_p ())
6385 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
6386 if (asmspec_tree && asmspec_tree != error_mark_node)
6387 asmspec = TREE_STRING_POINTER (asmspec_tree);
6389 if (current_class_type
6390 && CP_DECL_CONTEXT (decl) == current_class_type
6391 && TYPE_BEING_DEFINED (current_class_type)
6392 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
6393 && (DECL_INITIAL (decl) || init))
6394 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
6396 if (TREE_CODE (decl) != FUNCTION_DECL
6397 && (auto_node = type_uses_auto (type)))
6399 tree d_init;
6400 if (init == NULL_TREE)
6402 if (DECL_LANG_SPECIFIC (decl)
6403 && DECL_TEMPLATE_INSTANTIATION (decl)
6404 && !DECL_TEMPLATE_INSTANTIATED (decl))
6406 /* init is null because we're deferring instantiating the
6407 initializer until we need it. Well, we need it now. */
6408 instantiate_decl (decl, /*defer_ok*/true, /*expl*/false);
6409 return;
6412 error ("declaration of %q#D has no initializer", decl);
6413 TREE_TYPE (decl) = error_mark_node;
6414 return;
6416 d_init = init;
6417 if (TREE_CODE (d_init) == TREE_LIST)
6418 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
6419 tf_warning_or_error);
6420 d_init = resolve_nondeduced_context (d_init);
6421 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init,
6422 auto_node);
6423 if (type == error_mark_node)
6424 return;
6425 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
6428 if (!ensure_literal_type_for_constexpr_object (decl))
6429 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
6431 if (VAR_P (decl)
6432 && DECL_CLASS_SCOPE_P (decl)
6433 && DECL_INITIALIZED_IN_CLASS_P (decl))
6434 check_static_variable_definition (decl, type);
6436 if (init && TREE_CODE (decl) == FUNCTION_DECL)
6438 tree clone;
6439 if (init == ridpointers[(int)RID_DELETE])
6441 /* FIXME check this is 1st decl. */
6442 DECL_DELETED_FN (decl) = 1;
6443 DECL_DECLARED_INLINE_P (decl) = 1;
6444 DECL_INITIAL (decl) = error_mark_node;
6445 FOR_EACH_CLONE (clone, decl)
6447 DECL_DELETED_FN (clone) = 1;
6448 DECL_DECLARED_INLINE_P (clone) = 1;
6449 DECL_INITIAL (clone) = error_mark_node;
6451 init = NULL_TREE;
6453 else if (init == ridpointers[(int)RID_DEFAULT])
6455 if (defaultable_fn_check (decl))
6456 DECL_DEFAULTED_FN (decl) = 1;
6457 else
6458 DECL_INITIAL (decl) = NULL_TREE;
6462 if (init && VAR_P (decl))
6464 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
6465 /* If DECL is a reference, then we want to know whether init is a
6466 reference constant; init_const_expr_p as passed tells us whether
6467 it's an rvalue constant. */
6468 if (TREE_CODE (type) == REFERENCE_TYPE)
6469 init_const_expr_p = potential_constant_expression (init);
6470 if (init_const_expr_p)
6472 /* Set these flags now for templates. We'll update the flags in
6473 store_init_value for instantiations. */
6474 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
6475 if (decl_maybe_constant_var_p (decl))
6476 TREE_CONSTANT (decl) = 1;
6480 if (processing_template_decl)
6482 bool type_dependent_p;
6484 /* Add this declaration to the statement-tree. */
6485 if (at_function_scope_p ())
6486 add_decl_expr (decl);
6488 type_dependent_p = dependent_type_p (type);
6490 if (check_for_bare_parameter_packs (init))
6492 init = NULL_TREE;
6493 DECL_INITIAL (decl) = NULL_TREE;
6496 /* Generally, initializers in templates are expanded when the
6497 template is instantiated. But, if DECL is a variable constant
6498 then it can be used in future constant expressions, so its value
6499 must be available. */
6501 if (!VAR_P (decl) || dependent_type_p (type))
6502 /* We can't do anything if the decl has dependent type. */;
6503 else if (init
6504 && init_const_expr_p
6505 && !type_dependent_p
6506 && TREE_CODE (type) != REFERENCE_TYPE
6507 && decl_maybe_constant_var_p (decl)
6508 && !type_dependent_init_p (init)
6509 && !value_dependent_init_p (init))
6511 /* This variable seems to be a non-dependent constant, so process
6512 its initializer. If check_initializer returns non-null the
6513 initialization wasn't constant after all. */
6514 tree init_code;
6515 cleanups = make_tree_vector ();
6516 init_code = check_initializer (decl, init, flags, &cleanups);
6517 if (init_code == NULL_TREE)
6518 init = NULL_TREE;
6519 release_tree_vector (cleanups);
6521 else if (!DECL_PRETTY_FUNCTION_P (decl))
6523 /* Deduce array size even if the initializer is dependent. */
6524 maybe_deduce_size_from_array_init (decl, init);
6525 /* And complain about multiple initializers. */
6526 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
6527 && !MAYBE_CLASS_TYPE_P (type))
6528 init = build_x_compound_expr_from_list (init, ELK_INIT,
6529 tf_warning_or_error);
6532 if (init)
6533 DECL_INITIAL (decl) = init;
6534 return;
6537 /* Just store non-static data member initializers for later. */
6538 if (init && TREE_CODE (decl) == FIELD_DECL)
6539 DECL_INITIAL (decl) = init;
6541 /* Take care of TYPE_DECLs up front. */
6542 if (TREE_CODE (decl) == TYPE_DECL)
6544 if (type != error_mark_node
6545 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
6547 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
6548 warning (0, "shadowing previous type declaration of %q#D", decl);
6549 set_identifier_type_value (DECL_NAME (decl), decl);
6552 /* If we have installed this as the canonical typedef for this
6553 type, and that type has not been defined yet, delay emitting
6554 the debug information for it, as we will emit it later. */
6555 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
6556 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
6557 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
6559 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
6560 at_eof);
6561 return;
6564 /* A reference will be modified here, as it is initialized. */
6565 if (! DECL_EXTERNAL (decl)
6566 && TREE_READONLY (decl)
6567 && TREE_CODE (type) == REFERENCE_TYPE)
6569 was_readonly = 1;
6570 TREE_READONLY (decl) = 0;
6573 if (VAR_P (decl))
6575 /* If this is a local variable that will need a mangled name,
6576 register it now. We must do this before processing the
6577 initializer for the variable, since the initialization might
6578 require a guard variable, and since the mangled name of the
6579 guard variable will depend on the mangled name of this
6580 variable. */
6581 if (DECL_FUNCTION_SCOPE_P (decl)
6582 && TREE_STATIC (decl)
6583 && !DECL_ARTIFICIAL (decl))
6585 push_local_name (decl);
6586 if (DECL_CONSTRUCTOR_P (current_function_decl)
6587 || DECL_DESTRUCTOR_P (current_function_decl))
6588 /* Normally local_decls is populated during GIMPLE lowering,
6589 but [cd]tors are never actually compiled directly. We need
6590 to put statics on the list so we can deal with the label
6591 address extension. FIXME. */
6592 add_local_decl (cfun, decl);
6595 /* Convert the initializer to the type of DECL, if we have not
6596 already initialized DECL. */
6597 if (!DECL_INITIALIZED_P (decl)
6598 /* If !DECL_EXTERNAL then DECL is being defined. In the
6599 case of a static data member initialized inside the
6600 class-specifier, there can be an initializer even if DECL
6601 is *not* defined. */
6602 && (!DECL_EXTERNAL (decl) || init))
6604 if (TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6606 tree jclass
6607 = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jclass"));
6608 /* Allow libjava/prims.cc define primitive classes. */
6609 if (init != NULL_TREE
6610 || jclass == NULL_TREE
6611 || TREE_CODE (jclass) != TYPE_DECL
6612 || !POINTER_TYPE_P (TREE_TYPE (jclass))
6613 || !same_type_ignoring_top_level_qualifiers_p
6614 (type, TREE_TYPE (TREE_TYPE (jclass))))
6615 error ("Java object %qD not allocated with %<new%>", decl);
6616 init = NULL_TREE;
6618 cleanups = make_tree_vector ();
6619 init = check_initializer (decl, init, flags, &cleanups);
6621 /* Handle:
6623 [dcl.init]
6625 The memory occupied by any object of static storage
6626 duration is zero-initialized at program startup before
6627 any other initialization takes place.
6629 We cannot create an appropriate initializer until after
6630 the type of DECL is finalized. If DECL_INITIAL is set,
6631 then the DECL is statically initialized, and any
6632 necessary zero-initialization has already been performed. */
6633 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
6634 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
6635 /*nelts=*/NULL_TREE,
6636 /*static_storage_p=*/true);
6637 /* Remember that the initialization for this variable has
6638 taken place. */
6639 DECL_INITIALIZED_P (decl) = 1;
6640 /* This declaration is the definition of this variable,
6641 unless we are initializing a static data member within
6642 the class specifier. */
6643 if (!DECL_EXTERNAL (decl))
6644 var_definition_p = true;
6646 /* If the variable has an array type, lay out the type, even if
6647 there is no initializer. It is valid to index through the
6648 array, and we must get TYPE_ALIGN set correctly on the array
6649 type. */
6650 else if (TREE_CODE (type) == ARRAY_TYPE)
6651 layout_type (type);
6653 if (TREE_STATIC (decl)
6654 && !at_function_scope_p ()
6655 && current_function_decl == NULL)
6656 /* So decl is a global variable or a static member of a
6657 non local class. Record the types it uses
6658 so that we can decide later to emit debug info for them. */
6659 record_types_used_by_current_var_decl (decl);
6661 else if (TREE_CODE (decl) == FIELD_DECL
6662 && TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6663 error ("non-static data member %qD has Java class type", decl);
6665 /* Add this declaration to the statement-tree. This needs to happen
6666 after the call to check_initializer so that the DECL_EXPR for a
6667 reference temp is added before the DECL_EXPR for the reference itself. */
6668 if (DECL_FUNCTION_SCOPE_P (decl))
6670 /* If we're building a variable sized type, and we might be
6671 reachable other than via the top of the current binding
6672 level, then create a new BIND_EXPR so that we deallocate
6673 the object at the right time. */
6674 if (VAR_P (decl)
6675 && DECL_SIZE (decl)
6676 && !TREE_CONSTANT (DECL_SIZE (decl))
6677 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
6679 tree bind;
6680 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6681 TREE_SIDE_EFFECTS (bind) = 1;
6682 add_stmt (bind);
6683 BIND_EXPR_BODY (bind) = push_stmt_list ();
6685 add_decl_expr (decl);
6688 /* Let the middle end know about variables and functions -- but not
6689 static data members in uninstantiated class templates. */
6690 if (VAR_OR_FUNCTION_DECL_P (decl))
6692 if (VAR_P (decl))
6694 layout_var_decl (decl);
6695 maybe_commonize_var (decl);
6698 /* This needs to happen after the linkage is set. */
6699 determine_visibility (decl);
6701 if (var_definition_p && TREE_STATIC (decl))
6703 /* If a TREE_READONLY variable needs initialization
6704 at runtime, it is no longer readonly and we need to
6705 avoid MEM_READONLY_P being set on RTL created for it. */
6706 if (init)
6708 if (TREE_READONLY (decl))
6709 TREE_READONLY (decl) = 0;
6710 was_readonly = 0;
6712 else if (was_readonly)
6713 TREE_READONLY (decl) = 1;
6715 /* Likewise if it needs destruction. */
6716 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
6717 TREE_READONLY (decl) = 0;
6720 make_rtl_for_nonlocal_decl (decl, init, asmspec);
6722 /* Check for abstractness of the type. Notice that there is no
6723 need to strip array types here since the check for those types
6724 is already done within create_array_type_for_decl. */
6725 abstract_virtuals_error (decl, type);
6727 if (TREE_TYPE (decl) == error_mark_node)
6728 /* No initialization required. */
6730 else if (TREE_CODE (decl) == FUNCTION_DECL)
6732 if (init)
6734 if (init == ridpointers[(int)RID_DEFAULT])
6736 /* An out-of-class default definition is defined at
6737 the point where it is explicitly defaulted. */
6738 if (DECL_DELETED_FN (decl))
6739 maybe_explain_implicit_delete (decl);
6740 else if (DECL_INITIAL (decl) == error_mark_node)
6741 synthesize_method (decl);
6743 else
6744 error ("function %q#D is initialized like a variable", decl);
6746 /* else no initialization required. */
6748 else if (DECL_EXTERNAL (decl)
6749 && ! (DECL_LANG_SPECIFIC (decl)
6750 && DECL_NOT_REALLY_EXTERN (decl)))
6752 if (init)
6753 DECL_INITIAL (decl) = init;
6755 /* A variable definition. */
6756 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6757 /* Initialize the local variable. */
6758 initialize_local_var (decl, init);
6760 /* If a variable is defined, and then a subsequent
6761 definition with external linkage is encountered, we will
6762 get here twice for the same variable. We want to avoid
6763 calling expand_static_init more than once. For variables
6764 that are not static data members, we can call
6765 expand_static_init only when we actually process the
6766 initializer. It is not legal to redeclare a static data
6767 member, so this issue does not arise in that case. */
6768 else if (var_definition_p && TREE_STATIC (decl))
6769 expand_static_init (decl, init);
6772 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
6773 reference, insert it in the statement-tree now. */
6774 if (cleanups)
6776 unsigned i; tree t;
6777 FOR_EACH_VEC_ELT (*cleanups, i, t)
6778 push_cleanup (decl, t, false);
6779 release_tree_vector (cleanups);
6782 if (was_readonly)
6783 TREE_READONLY (decl) = 1;
6785 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
6788 /* Returns a declaration for a VAR_DECL as if:
6790 extern "C" TYPE NAME;
6792 had been seen. Used to create compiler-generated global
6793 variables. */
6795 static tree
6796 declare_global_var (tree name, tree type)
6798 tree decl;
6800 push_to_top_level ();
6801 decl = build_decl (input_location, VAR_DECL, name, type);
6802 TREE_PUBLIC (decl) = 1;
6803 DECL_EXTERNAL (decl) = 1;
6804 DECL_ARTIFICIAL (decl) = 1;
6805 /* If the user has explicitly declared this variable (perhaps
6806 because the code we are compiling is part of a low-level runtime
6807 library), then it is possible that our declaration will be merged
6808 with theirs by pushdecl. */
6809 decl = pushdecl (decl);
6810 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
6811 pop_from_top_level ();
6813 return decl;
6816 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
6817 if "__cxa_atexit" is not being used) corresponding to the function
6818 to be called when the program exits. */
6820 static tree
6821 get_atexit_fn_ptr_type (void)
6823 tree fn_type;
6825 if (!atexit_fn_ptr_type_node)
6827 tree arg_type;
6828 if (flag_use_cxa_atexit
6829 && !targetm.cxx.use_atexit_for_cxa_atexit ())
6830 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
6831 arg_type = ptr_type_node;
6832 else
6833 /* The parameter to "atexit" is "void (*)(void)". */
6834 arg_type = NULL_TREE;
6836 fn_type = build_function_type_list (void_type_node,
6837 arg_type, NULL_TREE);
6838 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
6841 return atexit_fn_ptr_type_node;
6844 /* Returns a pointer to the `atexit' function. Note that if
6845 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
6846 `__cxa_atexit' function specified in the IA64 C++ ABI. */
6848 static tree
6849 get_atexit_node (void)
6851 tree atexit_fndecl;
6852 tree fn_type;
6853 tree fn_ptr_type;
6854 const char *name;
6855 bool use_aeabi_atexit;
6857 if (atexit_node)
6858 return atexit_node;
6860 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
6862 /* The declaration for `__cxa_atexit' is:
6864 int __cxa_atexit (void (*)(void *), void *, void *)
6866 We build up the argument types and then the function type
6867 itself. */
6868 tree argtype0, argtype1, argtype2;
6870 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
6871 /* First, build the pointer-to-function type for the first
6872 argument. */
6873 fn_ptr_type = get_atexit_fn_ptr_type ();
6874 /* Then, build the rest of the argument types. */
6875 argtype2 = ptr_type_node;
6876 if (use_aeabi_atexit)
6878 argtype1 = fn_ptr_type;
6879 argtype0 = ptr_type_node;
6881 else
6883 argtype1 = ptr_type_node;
6884 argtype0 = fn_ptr_type;
6886 /* And the final __cxa_atexit type. */
6887 fn_type = build_function_type_list (integer_type_node,
6888 argtype0, argtype1, argtype2,
6889 NULL_TREE);
6890 if (use_aeabi_atexit)
6891 name = "__aeabi_atexit";
6892 else
6893 name = "__cxa_atexit";
6895 else
6897 /* The declaration for `atexit' is:
6899 int atexit (void (*)());
6901 We build up the argument types and then the function type
6902 itself. */
6903 fn_ptr_type = get_atexit_fn_ptr_type ();
6904 /* Build the final atexit type. */
6905 fn_type = build_function_type_list (integer_type_node,
6906 fn_ptr_type, NULL_TREE);
6907 name = "atexit";
6910 /* Now, build the function declaration. */
6911 push_lang_context (lang_name_c);
6912 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
6913 mark_used (atexit_fndecl);
6914 pop_lang_context ();
6915 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
6917 return atexit_node;
6920 /* Like get_atexit_node, but for thread-local cleanups. */
6922 static tree
6923 get_thread_atexit_node (void)
6925 /* The declaration for `__cxa_thread_atexit' is:
6927 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
6928 tree fn_type = build_function_type_list (integer_type_node,
6929 get_atexit_fn_ptr_type (),
6930 ptr_type_node, ptr_type_node,
6931 NULL_TREE);
6933 /* Now, build the function declaration. */
6934 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
6935 ECF_LEAF | ECF_NOTHROW);
6936 return decay_conversion (atexit_fndecl, tf_warning_or_error);
6939 /* Returns the __dso_handle VAR_DECL. */
6941 static tree
6942 get_dso_handle_node (void)
6944 if (dso_handle_node)
6945 return dso_handle_node;
6947 /* Declare the variable. */
6948 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
6949 ptr_type_node);
6951 #ifdef HAVE_GAS_HIDDEN
6952 if (dso_handle_node != error_mark_node)
6954 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
6955 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
6957 #endif
6959 return dso_handle_node;
6962 /* Begin a new function with internal linkage whose job will be simply
6963 to destroy some particular variable. */
6965 static GTY(()) int start_cleanup_cnt;
6967 static tree
6968 start_cleanup_fn (void)
6970 char name[32];
6971 tree fntype;
6972 tree fndecl;
6973 bool use_cxa_atexit = flag_use_cxa_atexit
6974 && !targetm.cxx.use_atexit_for_cxa_atexit ();
6976 push_to_top_level ();
6978 /* No need to mangle this. */
6979 push_lang_context (lang_name_c);
6981 /* Build the name of the function. */
6982 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
6983 /* Build the function declaration. */
6984 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
6985 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
6986 /* It's a function with internal linkage, generated by the
6987 compiler. */
6988 TREE_PUBLIC (fndecl) = 0;
6989 DECL_ARTIFICIAL (fndecl) = 1;
6990 /* Make the function `inline' so that it is only emitted if it is
6991 actually needed. It is unlikely that it will be inlined, since
6992 it is only called via a function pointer, but we avoid unnecessary
6993 emissions this way. */
6994 DECL_DECLARED_INLINE_P (fndecl) = 1;
6995 DECL_INTERFACE_KNOWN (fndecl) = 1;
6996 /* Build the parameter. */
6997 if (use_cxa_atexit)
6999 tree parmdecl;
7001 parmdecl = cp_build_parm_decl (NULL_TREE, ptr_type_node);
7002 DECL_CONTEXT (parmdecl) = fndecl;
7003 TREE_USED (parmdecl) = 1;
7004 DECL_READ_P (parmdecl) = 1;
7005 DECL_ARGUMENTS (fndecl) = parmdecl;
7008 pushdecl (fndecl);
7009 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
7011 pop_lang_context ();
7013 return current_function_decl;
7016 /* Finish the cleanup function begun by start_cleanup_fn. */
7018 static void
7019 end_cleanup_fn (void)
7021 expand_or_defer_fn (finish_function (0));
7023 pop_from_top_level ();
7026 /* Generate code to handle the destruction of DECL, an object with
7027 static storage duration. */
7029 tree
7030 register_dtor_fn (tree decl)
7032 tree cleanup;
7033 tree addr;
7034 tree compound_stmt;
7035 tree fcall;
7036 tree type;
7037 bool ob_parm, dso_parm, use_dtor;
7038 tree arg0, arg1, arg2;
7039 tree atex_node;
7041 type = TREE_TYPE (decl);
7042 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
7043 return void_node;
7045 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
7046 "__aeabi_atexit"), and DECL is a class object, we can just pass the
7047 destructor to "__cxa_atexit"; we don't have to build a temporary
7048 function to do the cleanup. */
7049 dso_parm = (flag_use_cxa_atexit
7050 && !targetm.cxx.use_atexit_for_cxa_atexit ());
7051 ob_parm = (DECL_THREAD_LOCAL_P (decl) || dso_parm);
7052 use_dtor = ob_parm && CLASS_TYPE_P (type);
7053 if (use_dtor)
7055 int idx;
7057 /* Find the destructor. */
7058 idx = lookup_fnfields_1 (type, complete_dtor_identifier);
7059 gcc_assert (idx >= 0);
7060 cleanup = (*CLASSTYPE_METHOD_VEC (type))[idx];
7061 /* Make sure it is accessible. */
7062 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
7063 tf_warning_or_error);
7065 else
7067 /* Call build_cleanup before we enter the anonymous function so
7068 that any access checks will be done relative to the current
7069 scope, rather than the scope of the anonymous function. */
7070 build_cleanup (decl);
7072 /* Now start the function. */
7073 cleanup = start_cleanup_fn ();
7075 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
7076 to the original function, rather than the anonymous one. That
7077 will make the back end think that nested functions are in use,
7078 which causes confusion. */
7079 push_deferring_access_checks (dk_no_check);
7080 fcall = build_cleanup (decl);
7081 pop_deferring_access_checks ();
7083 /* Create the body of the anonymous function. */
7084 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
7085 finish_expr_stmt (fcall);
7086 finish_compound_stmt (compound_stmt);
7087 end_cleanup_fn ();
7090 /* Call atexit with the cleanup function. */
7091 mark_used (cleanup);
7092 cleanup = build_address (cleanup);
7094 if (DECL_THREAD_LOCAL_P (decl))
7095 atex_node = get_thread_atexit_node ();
7096 else
7097 atex_node = get_atexit_node ();
7099 if (use_dtor)
7101 /* We must convert CLEANUP to the type that "__cxa_atexit"
7102 expects. */
7103 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
7104 /* "__cxa_atexit" will pass the address of DECL to the
7105 cleanup function. */
7106 mark_used (decl);
7107 addr = build_address (decl);
7108 /* The declared type of the parameter to "__cxa_atexit" is
7109 "void *". For plain "T*", we could just let the
7110 machinery in cp_build_function_call convert it -- but if the
7111 type is "cv-qualified T *", then we need to convert it
7112 before passing it in, to avoid spurious errors. */
7113 addr = build_nop (ptr_type_node, addr);
7115 else
7116 /* Since the cleanup functions we build ignore the address
7117 they're given, there's no reason to pass the actual address
7118 in, and, in general, it's cheaper to pass NULL than any
7119 other value. */
7120 addr = null_pointer_node;
7122 if (dso_parm)
7123 arg2 = cp_build_addr_expr (get_dso_handle_node (),
7124 tf_warning_or_error);
7125 else if (ob_parm)
7126 /* Just pass NULL to the dso handle parm if we don't actually
7127 have a DSO handle on this target. */
7128 arg2 = null_pointer_node;
7129 else
7130 arg2 = NULL_TREE;
7132 if (ob_parm)
7134 if (!DECL_THREAD_LOCAL_P (decl)
7135 && targetm.cxx.use_aeabi_atexit ())
7137 arg1 = cleanup;
7138 arg0 = addr;
7140 else
7142 arg1 = addr;
7143 arg0 = cleanup;
7146 else
7148 arg0 = cleanup;
7149 arg1 = NULL_TREE;
7151 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
7152 arg0, arg1, arg2, NULL_TREE);
7155 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
7156 is its initializer. Generate code to handle the construction
7157 and destruction of DECL. */
7159 static void
7160 expand_static_init (tree decl, tree init)
7162 gcc_assert (VAR_P (decl));
7163 gcc_assert (TREE_STATIC (decl));
7165 /* Some variables require no dynamic initialization. */
7166 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
7168 /* Make sure the destructor is callable. */
7169 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
7170 if (!init)
7171 return;
7174 if (DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
7175 && !DECL_FUNCTION_SCOPE_P (decl))
7177 if (init)
7178 error ("non-local variable %qD declared %<__thread%> "
7179 "needs dynamic initialization", decl);
7180 else
7181 error ("non-local variable %qD declared %<__thread%> "
7182 "has a non-trivial destructor", decl);
7183 static bool informed;
7184 if (!informed)
7186 inform (DECL_SOURCE_LOCATION (decl),
7187 "C++11 %<thread_local%> allows dynamic initialization "
7188 "and destruction");
7189 informed = true;
7191 return;
7194 if (DECL_FUNCTION_SCOPE_P (decl))
7196 /* Emit code to perform this initialization but once. */
7197 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
7198 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
7199 tree guard, guard_addr;
7200 tree flag, begin;
7201 /* We don't need thread-safety code for thread-local vars. */
7202 bool thread_guard = (flag_threadsafe_statics
7203 && !DECL_THREAD_LOCAL_P (decl));
7205 /* Emit code to perform this initialization but once. This code
7206 looks like:
7208 static <type> guard;
7209 if (!__atomic_load (guard.first_byte)) {
7210 if (__cxa_guard_acquire (&guard)) {
7211 bool flag = false;
7212 try {
7213 // Do initialization.
7214 flag = true; __cxa_guard_release (&guard);
7215 // Register variable for destruction at end of program.
7216 } catch {
7217 if (!flag) __cxa_guard_abort (&guard);
7221 Note that the `flag' variable is only set to 1 *after* the
7222 initialization is complete. This ensures that an exception,
7223 thrown during the construction, will cause the variable to
7224 reinitialized when we pass through this code again, as per:
7226 [stmt.dcl]
7228 If the initialization exits by throwing an exception, the
7229 initialization is not complete, so it will be tried again
7230 the next time control enters the declaration.
7232 This process should be thread-safe, too; multiple threads
7233 should not be able to initialize the variable more than
7234 once. */
7236 /* Create the guard variable. */
7237 guard = get_guard (decl);
7239 /* Begin the conditional initialization. */
7240 if_stmt = begin_if_stmt ();
7242 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
7243 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7245 if (thread_guard)
7247 tree vfntype = NULL_TREE;
7248 tree acquire_name, release_name, abort_name;
7249 tree acquire_fn, release_fn, abort_fn;
7250 guard_addr = build_address (guard);
7252 acquire_name = get_identifier ("__cxa_guard_acquire");
7253 release_name = get_identifier ("__cxa_guard_release");
7254 abort_name = get_identifier ("__cxa_guard_abort");
7255 acquire_fn = identifier_global_value (acquire_name);
7256 release_fn = identifier_global_value (release_name);
7257 abort_fn = identifier_global_value (abort_name);
7258 if (!acquire_fn)
7259 acquire_fn = push_library_fn
7260 (acquire_name, build_function_type_list (integer_type_node,
7261 TREE_TYPE (guard_addr),
7262 NULL_TREE),
7263 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
7264 if (!release_fn || !abort_fn)
7265 vfntype = build_function_type_list (void_type_node,
7266 TREE_TYPE (guard_addr),
7267 NULL_TREE);
7268 if (!release_fn)
7269 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
7270 ECF_NOTHROW | ECF_LEAF);
7271 if (!abort_fn)
7272 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
7273 ECF_NOTHROW | ECF_LEAF);
7275 inner_if_stmt = begin_if_stmt ();
7276 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
7277 inner_if_stmt);
7279 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7280 begin = get_target_expr (boolean_false_node);
7281 flag = TARGET_EXPR_SLOT (begin);
7283 TARGET_EXPR_CLEANUP (begin)
7284 = build3 (COND_EXPR, void_type_node, flag,
7285 void_node,
7286 build_call_n (abort_fn, 1, guard_addr));
7287 CLEANUP_EH_ONLY (begin) = 1;
7289 /* Do the initialization itself. */
7290 init = add_stmt_to_compound (begin, init);
7291 init = add_stmt_to_compound
7292 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
7293 init = add_stmt_to_compound
7294 (init, build_call_n (release_fn, 1, guard_addr));
7296 else
7297 init = add_stmt_to_compound (init, set_guard (guard));
7299 /* Use atexit to register a function for destroying this static
7300 variable. */
7301 init = add_stmt_to_compound (init, register_dtor_fn (decl));
7303 finish_expr_stmt (init);
7305 if (thread_guard)
7307 finish_compound_stmt (inner_then_clause);
7308 finish_then_clause (inner_if_stmt);
7309 finish_if_stmt (inner_if_stmt);
7312 finish_compound_stmt (then_clause);
7313 finish_then_clause (if_stmt);
7314 finish_if_stmt (if_stmt);
7316 else if (DECL_THREAD_LOCAL_P (decl))
7317 tls_aggregates = tree_cons (init, decl, tls_aggregates);
7318 else
7319 static_aggregates = tree_cons (init, decl, static_aggregates);
7323 /* Make TYPE a complete type based on INITIAL_VALUE.
7324 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
7325 2 if there was no information (in which case assume 0 if DO_DEFAULT),
7326 3 if the initializer list is empty (in pedantic mode). */
7329 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
7331 int failure;
7332 tree type, elt_type;
7334 /* Don't get confused by a CONSTRUCTOR for some other type. */
7335 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
7336 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value))
7337 return 1;
7339 if (initial_value)
7341 unsigned HOST_WIDE_INT i;
7342 tree value;
7344 /* An array of character type can be initialized from a
7345 brace-enclosed string constant.
7347 FIXME: this code is duplicated from reshape_init. Probably
7348 we should just call reshape_init here? */
7349 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
7350 && TREE_CODE (initial_value) == CONSTRUCTOR
7351 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
7353 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
7354 tree value = (*v)[0].value;
7356 if (TREE_CODE (value) == STRING_CST
7357 && v->length () == 1)
7358 initial_value = value;
7361 /* If any of the elements are parameter packs, we can't actually
7362 complete this type now because the array size is dependent. */
7363 if (TREE_CODE (initial_value) == CONSTRUCTOR)
7365 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
7366 i, value)
7368 if (PACK_EXPANSION_P (value))
7369 return 0;
7374 failure = complete_array_type (ptype, initial_value, do_default);
7376 /* We can create the array before the element type is complete, which
7377 means that we didn't have these two bits set in the original type
7378 either. In completing the type, we are expected to propagate these
7379 bits. See also complete_type which does the same thing for arrays
7380 of fixed size. */
7381 type = *ptype;
7382 if (TYPE_DOMAIN (type))
7384 elt_type = TREE_TYPE (type);
7385 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
7386 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
7387 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
7390 return failure;
7393 /* As above, but either give an error or reject zero-size arrays, depending
7394 on COMPLAIN. */
7397 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
7398 bool do_default, tsubst_flags_t complain)
7400 int failure;
7401 bool sfinae = !(complain & tf_error);
7402 /* In SFINAE context we can't be lenient about zero-size arrays. */
7403 if (sfinae)
7404 ++pedantic;
7405 failure = cp_complete_array_type (ptype, initial_value, do_default);
7406 if (sfinae)
7407 --pedantic;
7408 if (failure)
7410 if (sfinae)
7411 /* Not an error. */;
7412 else if (failure == 1)
7413 error ("initializer fails to determine size of %qT", *ptype);
7414 else if (failure == 2)
7416 if (do_default)
7417 error ("array size missing in %qT", *ptype);
7419 else if (failure == 3)
7420 error ("zero-size array %qT", *ptype);
7421 *ptype = error_mark_node;
7423 return failure;
7426 /* Return zero if something is declared to be a member of type
7427 CTYPE when in the context of CUR_TYPE. STRING is the error
7428 message to print in that case. Otherwise, quietly return 1. */
7430 static int
7431 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
7433 if (ctype && ctype != cur_type)
7435 if (flags == DTOR_FLAG)
7436 error ("destructor for alien class %qT cannot be a member", ctype);
7437 else
7438 error ("constructor for alien class %qT cannot be a member", ctype);
7439 return 0;
7441 return 1;
7444 /* Subroutine of `grokdeclarator'. */
7446 /* Generate errors possibly applicable for a given set of specifiers.
7447 This is for ARM $7.1.2. */
7449 static void
7450 bad_specifiers (tree object,
7451 enum bad_spec_place type,
7452 int virtualp,
7453 int quals,
7454 int inlinep,
7455 int friendp,
7456 int raises)
7458 switch (type)
7460 case BSP_VAR:
7461 if (virtualp)
7462 error ("%qD declared as a %<virtual%> variable", object);
7463 if (inlinep)
7464 error ("%qD declared as an %<inline%> variable", object);
7465 if (quals)
7466 error ("%<const%> and %<volatile%> function specifiers on "
7467 "%qD invalid in variable declaration", object);
7468 break;
7469 case BSP_PARM:
7470 if (virtualp)
7471 error ("%qD declared as a %<virtual%> parameter", object);
7472 if (inlinep)
7473 error ("%qD declared as an %<inline%> parameter", object);
7474 if (quals)
7475 error ("%<const%> and %<volatile%> function specifiers on "
7476 "%qD invalid in parameter declaration", object);
7477 break;
7478 case BSP_TYPE:
7479 if (virtualp)
7480 error ("%qD declared as a %<virtual%> type", object);
7481 if (inlinep)
7482 error ("%qD declared as an %<inline%> type", object);
7483 if (quals)
7484 error ("%<const%> and %<volatile%> function specifiers on "
7485 "%qD invalid in type declaration", object);
7486 break;
7487 case BSP_FIELD:
7488 if (virtualp)
7489 error ("%qD declared as a %<virtual%> field", object);
7490 if (inlinep)
7491 error ("%qD declared as an %<inline%> field", object);
7492 if (quals)
7493 error ("%<const%> and %<volatile%> function specifiers on "
7494 "%qD invalid in field declaration", object);
7495 break;
7496 default:
7497 gcc_unreachable();
7499 if (friendp)
7500 error ("%q+D declared as a friend", object);
7501 if (raises
7502 && (TREE_CODE (object) == TYPE_DECL
7503 || (!TYPE_PTRFN_P (TREE_TYPE (object))
7504 && !TYPE_REFFN_P (TREE_TYPE (object))
7505 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
7506 error ("%q+D declared with an exception specification", object);
7509 /* DECL is a member function or static data member and is presently
7510 being defined. Check that the definition is taking place in a
7511 valid namespace. */
7513 static void
7514 check_class_member_definition_namespace (tree decl)
7516 /* These checks only apply to member functions and static data
7517 members. */
7518 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
7519 /* We check for problems with specializations in pt.c in
7520 check_specialization_namespace, where we can issue better
7521 diagnostics. */
7522 if (processing_specialization)
7523 return;
7524 /* There are no restrictions on the placement of
7525 explicit instantiations. */
7526 if (processing_explicit_instantiation)
7527 return;
7528 /* [class.mfct]
7530 A member function definition that appears outside of the
7531 class definition shall appear in a namespace scope enclosing
7532 the class definition.
7534 [class.static.data]
7536 The definition for a static data member shall appear in a
7537 namespace scope enclosing the member's class definition. */
7538 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
7539 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
7540 decl, DECL_CONTEXT (decl));
7543 /* Build a PARM_DECL for the "this" parameter. TYPE is the
7544 METHOD_TYPE for a non-static member function; QUALS are the
7545 cv-qualifiers that apply to the function. */
7547 tree
7548 build_this_parm (tree type, cp_cv_quals quals)
7550 tree this_type;
7551 tree qual_type;
7552 tree parm;
7553 cp_cv_quals this_quals;
7555 if (CLASS_TYPE_P (type))
7557 this_type
7558 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
7559 this_type = build_pointer_type (this_type);
7561 else
7562 this_type = type_of_this_parm (type);
7563 /* The `this' parameter is implicitly `const'; it cannot be
7564 assigned to. */
7565 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
7566 qual_type = cp_build_qualified_type (this_type, this_quals);
7567 parm = build_artificial_parm (this_identifier, qual_type);
7568 cp_apply_type_quals_to_decl (this_quals, parm);
7569 return parm;
7572 /* DECL is a static member function. Complain if it was declared
7573 with function-cv-quals. */
7575 static void
7576 check_static_quals (tree decl, cp_cv_quals quals)
7578 if (quals != TYPE_UNQUALIFIED)
7579 error ("static member function %q#D declared with type qualifiers",
7580 decl);
7583 /* Helper function. Replace the temporary this parameter injected
7584 during cp_finish_omp_declare_simd with the real this parameter. */
7586 static tree
7587 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
7589 tree this_parm = (tree) data;
7590 if (TREE_CODE (*tp) == PARM_DECL
7591 && DECL_NAME (*tp) == this_identifier
7592 && *tp != this_parm)
7593 *tp = this_parm;
7594 else if (TYPE_P (*tp))
7595 *walk_subtrees = 0;
7596 return NULL_TREE;
7599 /* CTYPE is class type, or null if non-class.
7600 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
7601 or METHOD_TYPE.
7602 DECLARATOR is the function's name.
7603 PARMS is a chain of PARM_DECLs for the function.
7604 VIRTUALP is truthvalue of whether the function is virtual or not.
7605 FLAGS are to be passed through to `grokclassfn'.
7606 QUALS are qualifiers indicating whether the function is `const'
7607 or `volatile'.
7608 RAISES is a list of exceptions that this function can raise.
7609 CHECK is 1 if we must find this method in CTYPE, 0 if we should
7610 not look, and -1 if we should not call `grokclassfn' at all.
7612 SFK is the kind of special function (if any) for the new function.
7614 Returns `NULL_TREE' if something goes wrong, after issuing
7615 applicable error messages. */
7617 static tree
7618 grokfndecl (tree ctype,
7619 tree type,
7620 tree declarator,
7621 tree parms,
7622 tree orig_declarator,
7623 int virtualp,
7624 enum overload_flags flags,
7625 cp_cv_quals quals,
7626 cp_ref_qualifier rqual,
7627 tree raises,
7628 int check,
7629 int friendp,
7630 int publicp,
7631 int inlinep,
7632 bool deletedp,
7633 special_function_kind sfk,
7634 bool funcdef_flag,
7635 int template_count,
7636 tree in_namespace,
7637 tree* attrlist,
7638 location_t location)
7640 tree decl;
7641 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
7642 tree t;
7644 if (rqual)
7645 type = build_ref_qualified_type (type, rqual);
7646 if (raises)
7647 type = build_exception_variant (type, raises);
7649 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
7651 /* If we have an explicit location, use it, otherwise use whatever
7652 build_lang_decl used (probably input_location). */
7653 if (location != UNKNOWN_LOCATION)
7654 DECL_SOURCE_LOCATION (decl) = location;
7656 if (TREE_CODE (type) == METHOD_TYPE)
7658 tree parm;
7659 parm = build_this_parm (type, quals);
7660 DECL_CHAIN (parm) = parms;
7661 parms = parm;
7663 DECL_ARGUMENTS (decl) = parms;
7664 for (t = parms; t; t = DECL_CHAIN (t))
7665 DECL_CONTEXT (t) = decl;
7666 /* Propagate volatile out from type to decl. */
7667 if (TYPE_VOLATILE (type))
7668 TREE_THIS_VOLATILE (decl) = 1;
7670 /* Setup decl according to sfk. */
7671 switch (sfk)
7673 case sfk_constructor:
7674 case sfk_copy_constructor:
7675 case sfk_move_constructor:
7676 DECL_CONSTRUCTOR_P (decl) = 1;
7677 break;
7678 case sfk_destructor:
7679 DECL_DESTRUCTOR_P (decl) = 1;
7680 break;
7681 default:
7682 break;
7685 /* If pointers to member functions use the least significant bit to
7686 indicate whether a function is virtual, ensure a pointer
7687 to this function will have that bit clear. */
7688 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
7689 && TREE_CODE (type) == METHOD_TYPE
7690 && DECL_ALIGN (decl) < 2 * BITS_PER_UNIT)
7691 DECL_ALIGN (decl) = 2 * BITS_PER_UNIT;
7693 if (friendp
7694 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
7696 if (funcdef_flag)
7697 error
7698 ("defining explicit specialization %qD in friend declaration",
7699 orig_declarator);
7700 else
7702 tree fns = TREE_OPERAND (orig_declarator, 0);
7703 tree args = TREE_OPERAND (orig_declarator, 1);
7705 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
7707 /* Something like `template <class T> friend void f<T>()'. */
7708 error ("invalid use of template-id %qD in declaration "
7709 "of primary template",
7710 orig_declarator);
7711 return NULL_TREE;
7715 /* A friend declaration of the form friend void f<>(). Record
7716 the information in the TEMPLATE_ID_EXPR. */
7717 SET_DECL_IMPLICIT_INSTANTIATION (decl);
7719 gcc_assert (identifier_p (fns) || TREE_CODE (fns) == OVERLOAD);
7720 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
7722 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
7723 if (TREE_PURPOSE (t)
7724 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
7726 error ("default arguments are not allowed in declaration "
7727 "of friend template specialization %qD",
7728 decl);
7729 return NULL_TREE;
7732 if (inlinep & 1)
7733 error ("%<inline%> is not allowed in declaration of friend "
7734 "template specialization %qD",
7735 decl);
7736 if (inlinep & 2)
7737 error ("%<constexpr%> is not allowed in declaration of friend "
7738 "template specialization %qD",
7739 decl);
7740 if (inlinep)
7741 return NULL_TREE;
7745 /* If this decl has namespace scope, set that up. */
7746 if (in_namespace)
7747 set_decl_namespace (decl, in_namespace, friendp);
7748 else if (!ctype)
7749 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
7751 /* `main' and builtins have implicit 'C' linkage. */
7752 if ((MAIN_NAME_P (declarator)
7753 || (IDENTIFIER_LENGTH (declarator) > 10
7754 && IDENTIFIER_POINTER (declarator)[0] == '_'
7755 && IDENTIFIER_POINTER (declarator)[1] == '_'
7756 && strncmp (IDENTIFIER_POINTER (declarator)+2, "builtin_", 8) == 0)
7757 || (targetcm.cxx_implicit_extern_c
7758 && targetcm.cxx_implicit_extern_c(IDENTIFIER_POINTER (declarator))))
7759 && current_lang_name == lang_name_cplusplus
7760 && ctype == NULL_TREE
7761 && DECL_FILE_SCOPE_P (decl))
7762 SET_DECL_LANGUAGE (decl, lang_c);
7764 /* Should probably propagate const out from type to decl I bet (mrs). */
7765 if (staticp)
7767 DECL_STATIC_FUNCTION_P (decl) = 1;
7768 DECL_CONTEXT (decl) = ctype;
7771 if (deletedp)
7772 DECL_DELETED_FN (decl) = 1;
7774 if (ctype)
7776 DECL_CONTEXT (decl) = ctype;
7777 if (funcdef_flag)
7778 check_class_member_definition_namespace (decl);
7781 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
7783 if (PROCESSING_REAL_TEMPLATE_DECL_P())
7784 error ("cannot declare %<::main%> to be a template");
7785 if (inlinep & 1)
7786 error ("cannot declare %<::main%> to be inline");
7787 if (inlinep & 2)
7788 error ("cannot declare %<::main%> to be constexpr");
7789 if (!publicp)
7790 error ("cannot declare %<::main%> to be static");
7791 inlinep = 0;
7792 publicp = 1;
7795 /* Members of anonymous types and local classes have no linkage; make
7796 them internal. If a typedef is made later, this will be changed. */
7797 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
7798 || decl_function_context (TYPE_MAIN_DECL (ctype))))
7799 publicp = 0;
7801 if (publicp && cxx_dialect == cxx98)
7803 /* [basic.link]: A name with no linkage (notably, the name of a class
7804 or enumeration declared in a local scope) shall not be used to
7805 declare an entity with linkage.
7807 DR 757 relaxes this restriction for C++0x. */
7808 no_linkage_error (decl);
7811 TREE_PUBLIC (decl) = publicp;
7812 if (! publicp)
7814 DECL_INTERFACE_KNOWN (decl) = 1;
7815 DECL_NOT_REALLY_EXTERN (decl) = 1;
7818 /* If the declaration was declared inline, mark it as such. */
7819 if (inlinep)
7821 DECL_DECLARED_INLINE_P (decl) = 1;
7822 if (publicp)
7823 DECL_COMDAT (decl) = 1;
7825 if (inlinep & 2)
7826 DECL_DECLARED_CONSTEXPR_P (decl) = true;
7828 DECL_EXTERNAL (decl) = 1;
7829 if (TREE_CODE (type) == FUNCTION_TYPE)
7831 if (quals)
7833 error (ctype
7834 ? G_("static member function %qD cannot have cv-qualifier")
7835 : G_("non-member function %qD cannot have cv-qualifier"),
7836 decl);
7837 quals = TYPE_UNQUALIFIED;
7840 if (rqual)
7842 error (ctype
7843 ? G_("static member function %qD cannot have ref-qualifier")
7844 : G_("non-member function %qD cannot have ref-qualifier"),
7845 decl);
7846 rqual = REF_QUAL_NONE;
7850 if (IDENTIFIER_OPNAME_P (DECL_NAME (decl))
7851 && !grok_op_properties (decl, /*complain=*/true))
7852 return NULL_TREE;
7853 else if (UDLIT_OPER_P (DECL_NAME (decl)))
7855 bool long_long_unsigned_p;
7856 bool long_double_p;
7857 const char *suffix = NULL;
7858 /* [over.literal]/6: Literal operators shall not have C linkage. */
7859 if (DECL_LANGUAGE (decl) == lang_c)
7861 error ("literal operator with C linkage");
7862 return NULL_TREE;
7865 if (DECL_NAMESPACE_SCOPE_P (decl))
7867 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
7868 &long_double_p))
7870 error ("%qD has invalid argument list", decl);
7871 return NULL_TREE;
7874 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
7875 if (long_long_unsigned_p)
7877 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
7878 warning (0, "integer suffix %<%s%>"
7879 " shadowed by implementation", suffix);
7881 else if (long_double_p)
7883 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
7884 warning (0, "floating point suffix %<%s%>"
7885 " shadowed by implementation", suffix);
7888 else
7890 error ("%qD must be a non-member function", decl);
7891 return NULL_TREE;
7895 if (funcdef_flag)
7896 /* Make the init_value nonzero so pushdecl knows this is not
7897 tentative. error_mark_node is replaced later with the BLOCK. */
7898 DECL_INITIAL (decl) = error_mark_node;
7900 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
7901 TREE_NOTHROW (decl) = 1;
7903 if (flag_openmp || flag_cilkplus)
7905 /* Adjust "omp declare simd" attributes. */
7906 tree ods = lookup_attribute ("omp declare simd", *attrlist);
7907 if (ods)
7909 tree attr;
7910 for (attr = ods; attr;
7911 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
7913 if (TREE_CODE (type) == METHOD_TYPE)
7914 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
7915 DECL_ARGUMENTS (decl), NULL);
7916 if (TREE_VALUE (attr) != NULL_TREE)
7918 tree cl = TREE_VALUE (TREE_VALUE (attr));
7919 cl = c_omp_declare_simd_clauses_to_numbers
7920 (DECL_ARGUMENTS (decl), cl);
7921 if (cl)
7922 TREE_VALUE (TREE_VALUE (attr)) = cl;
7923 else
7924 TREE_VALUE (attr) = NULL_TREE;
7930 /* Caller will do the rest of this. */
7931 if (check < 0)
7932 return decl;
7934 if (ctype != NULL_TREE)
7935 grokclassfn (ctype, decl, flags);
7937 /* 12.4/3 */
7938 if (cxx_dialect >= cxx11
7939 && DECL_DESTRUCTOR_P (decl)
7940 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
7941 && !processing_template_decl)
7942 deduce_noexcept_on_destructor (decl);
7944 decl = check_explicit_specialization (orig_declarator, decl,
7945 template_count,
7946 2 * funcdef_flag +
7947 4 * (friendp != 0));
7948 if (decl == error_mark_node)
7949 return NULL_TREE;
7951 if (DECL_STATIC_FUNCTION_P (decl))
7952 check_static_quals (decl, quals);
7954 if (attrlist)
7956 cplus_decl_attributes (&decl, *attrlist, 0);
7957 *attrlist = NULL_TREE;
7960 /* Check main's type after attributes have been applied. */
7961 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
7963 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
7964 integer_type_node))
7966 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
7967 tree newtype;
7968 error ("%<::main%> must return %<int%>");
7969 newtype = build_function_type (integer_type_node, oldtypeargs);
7970 TREE_TYPE (decl) = newtype;
7972 if (warn_main)
7973 check_main_parameter_types (decl);
7976 if (ctype != NULL_TREE
7977 && (! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
7978 && check)
7980 tree old_decl = check_classfn (ctype, decl,
7981 (processing_template_decl
7982 > template_class_depth (ctype))
7983 ? current_template_parms
7984 : NULL_TREE);
7986 if (old_decl == error_mark_node)
7987 return NULL_TREE;
7989 if (old_decl)
7991 tree ok;
7992 tree pushed_scope;
7994 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
7995 /* Because grokfndecl is always supposed to return a
7996 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
7997 here. We depend on our callers to figure out that its
7998 really a template that's being returned. */
7999 old_decl = DECL_TEMPLATE_RESULT (old_decl);
8001 if (DECL_STATIC_FUNCTION_P (old_decl)
8002 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
8004 /* Remove the `this' parm added by grokclassfn. */
8005 revert_static_member_fn (decl);
8006 check_static_quals (decl, quals);
8008 if (DECL_ARTIFICIAL (old_decl))
8010 error ("definition of implicitly-declared %qD", old_decl);
8011 return NULL_TREE;
8013 else if (DECL_DEFAULTED_FN (old_decl))
8015 error ("definition of explicitly-defaulted %q+D", decl);
8016 error ("%q+#D explicitly defaulted here", old_decl);
8017 return NULL_TREE;
8020 /* Since we've smashed OLD_DECL to its
8021 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
8022 if (TREE_CODE (decl) == TEMPLATE_DECL)
8023 decl = DECL_TEMPLATE_RESULT (decl);
8025 /* Attempt to merge the declarations. This can fail, in
8026 the case of some invalid specialization declarations. */
8027 pushed_scope = push_scope (ctype);
8028 ok = duplicate_decls (decl, old_decl, friendp);
8029 if (pushed_scope)
8030 pop_scope (pushed_scope);
8031 if (!ok)
8033 error ("no %q#D member function declared in class %qT",
8034 decl, ctype);
8035 return NULL_TREE;
8037 if (ok == error_mark_node)
8038 return NULL_TREE;
8039 return old_decl;
8043 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
8044 return NULL_TREE;
8046 if (ctype == NULL_TREE || check)
8047 return decl;
8049 if (virtualp)
8050 DECL_VIRTUAL_P (decl) = 1;
8052 return decl;
8055 /* decl is a FUNCTION_DECL.
8056 specifiers are the parsed virt-specifiers.
8058 Set flags to reflect the virt-specifiers.
8060 Returns decl. */
8062 static tree
8063 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
8065 if (decl == NULL_TREE)
8066 return decl;
8067 if (specifiers & VIRT_SPEC_OVERRIDE)
8068 DECL_OVERRIDE_P (decl) = 1;
8069 if (specifiers & VIRT_SPEC_FINAL)
8070 DECL_FINAL_P (decl) = 1;
8071 return decl;
8074 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
8075 the linkage that DECL will receive in the object file. */
8077 static void
8078 set_linkage_for_static_data_member (tree decl)
8080 /* A static data member always has static storage duration and
8081 external linkage. Note that static data members are forbidden in
8082 local classes -- the only situation in which a class has
8083 non-external linkage. */
8084 TREE_PUBLIC (decl) = 1;
8085 TREE_STATIC (decl) = 1;
8086 /* For non-template classes, static data members are always put
8087 out in exactly those files where they are defined, just as
8088 with ordinary namespace-scope variables. */
8089 if (!processing_template_decl)
8090 DECL_INTERFACE_KNOWN (decl) = 1;
8093 /* Create a VAR_DECL named NAME with the indicated TYPE.
8095 If SCOPE is non-NULL, it is the class type or namespace containing
8096 the variable. If SCOPE is NULL, the variable should is created in
8097 the innermost enclosing scope. */
8099 static tree
8100 grokvardecl (tree type,
8101 tree name,
8102 tree orig_declarator,
8103 const cp_decl_specifier_seq *declspecs,
8104 int initialized,
8105 int constp,
8106 int template_count,
8107 tree scope)
8109 tree decl;
8110 tree explicit_scope;
8112 gcc_assert (!name || identifier_p (name));
8114 /* Compute the scope in which to place the variable, but remember
8115 whether or not that scope was explicitly specified by the user. */
8116 explicit_scope = scope;
8117 if (!scope)
8119 /* An explicit "extern" specifier indicates a namespace-scope
8120 variable. */
8121 if (declspecs->storage_class == sc_extern)
8122 scope = current_decl_namespace ();
8123 else if (!at_function_scope_p ())
8124 scope = current_scope ();
8127 if (scope
8128 && (/* If the variable is a namespace-scope variable declared in a
8129 template, we need DECL_LANG_SPECIFIC. */
8130 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
8131 /* Similarly for namespace-scope variables with language linkage
8132 other than C++. */
8133 || (TREE_CODE (scope) == NAMESPACE_DECL
8134 && current_lang_name != lang_name_cplusplus)
8135 /* Similarly for static data members. */
8136 || TYPE_P (scope)
8137 /* Similarly for explicit specializations. */
8138 || (orig_declarator
8139 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
8140 decl = build_lang_decl (VAR_DECL, name, type);
8141 else
8142 decl = build_decl (input_location, VAR_DECL, name, type);
8144 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
8145 set_decl_namespace (decl, explicit_scope, 0);
8146 else
8147 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
8149 if (declspecs->storage_class == sc_extern)
8151 DECL_THIS_EXTERN (decl) = 1;
8152 DECL_EXTERNAL (decl) = !initialized;
8155 if (DECL_CLASS_SCOPE_P (decl))
8157 set_linkage_for_static_data_member (decl);
8158 /* This function is only called with out-of-class definitions. */
8159 DECL_EXTERNAL (decl) = 0;
8160 check_class_member_definition_namespace (decl);
8162 /* At top level, either `static' or no s.c. makes a definition
8163 (perhaps tentative), and absence of `static' makes it public. */
8164 else if (toplevel_bindings_p ())
8166 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
8167 && (DECL_THIS_EXTERN (decl) || ! constp));
8168 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
8170 /* Not at top level, only `static' makes a static definition. */
8171 else
8173 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
8174 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
8177 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
8179 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
8180 set_decl_tls_model (decl, decl_default_tls_model (decl));
8181 if (declspecs->gnu_thread_keyword_p)
8182 DECL_GNU_TLS_P (decl) = true;
8185 /* If the type of the decl has no linkage, make sure that we'll
8186 notice that in mark_used. */
8187 if (cxx_dialect > cxx98
8188 && decl_linkage (decl) != lk_none
8189 && DECL_LANG_SPECIFIC (decl) == NULL
8190 && !DECL_EXTERN_C_P (decl)
8191 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
8192 retrofit_lang_decl (decl);
8194 if (TREE_PUBLIC (decl))
8196 /* [basic.link]: A name with no linkage (notably, the name of a class
8197 or enumeration declared in a local scope) shall not be used to
8198 declare an entity with linkage.
8200 DR 757 relaxes this restriction for C++0x. */
8201 if (cxx_dialect < cxx11)
8202 no_linkage_error (decl);
8204 else
8205 DECL_INTERFACE_KNOWN (decl) = 1;
8207 // Handle explicit specializations and instantiations of variable templates.
8208 if (orig_declarator)
8209 decl = check_explicit_specialization (orig_declarator, decl,
8210 template_count, 0);
8212 return decl != error_mark_node ? decl : NULL_TREE;
8215 /* Create and return a canonical pointer to member function type, for
8216 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
8218 tree
8219 build_ptrmemfunc_type (tree type)
8221 tree field, fields;
8222 tree t;
8224 if (type == error_mark_node)
8225 return type;
8227 /* Make sure that we always have the unqualified pointer-to-member
8228 type first. */
8229 if (cp_cv_quals quals = cp_type_quals (type))
8231 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
8232 return cp_build_qualified_type (unqual, quals);
8235 /* If a canonical type already exists for this type, use it. We use
8236 this method instead of type_hash_canon, because it only does a
8237 simple equality check on the list of field members. */
8239 if ((t = TYPE_GET_PTRMEMFUNC_TYPE (type)))
8240 return t;
8242 t = make_node (RECORD_TYPE);
8244 /* Let the front end know this is a pointer to member function. */
8245 TYPE_PTRMEMFUNC_FLAG (t) = 1;
8247 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
8248 fields = field;
8250 field = build_decl (input_location, FIELD_DECL, delta_identifier,
8251 delta_type_node);
8252 DECL_CHAIN (field) = fields;
8253 fields = field;
8255 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
8257 /* Zap out the name so that the back end will give us the debugging
8258 information for this anonymous RECORD_TYPE. */
8259 TYPE_NAME (t) = NULL_TREE;
8261 /* Cache this pointer-to-member type so that we can find it again
8262 later. */
8263 TYPE_SET_PTRMEMFUNC_TYPE (type, t);
8265 if (TYPE_STRUCTURAL_EQUALITY_P (type))
8266 SET_TYPE_STRUCTURAL_EQUALITY (t);
8267 else if (TYPE_CANONICAL (type) != type)
8268 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
8270 return t;
8273 /* Create and return a pointer to data member type. */
8275 tree
8276 build_ptrmem_type (tree class_type, tree member_type)
8278 if (TREE_CODE (member_type) == METHOD_TYPE)
8280 cp_cv_quals quals = type_memfn_quals (member_type);
8281 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
8282 member_type = build_memfn_type (member_type, class_type, quals, rqual);
8283 return build_ptrmemfunc_type (build_pointer_type (member_type));
8285 else
8287 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
8288 return build_offset_type (class_type, member_type);
8292 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
8293 Check to see that the definition is valid. Issue appropriate error
8294 messages. Return 1 if the definition is particularly bad, or 0
8295 otherwise. */
8297 static int
8298 check_static_variable_definition (tree decl, tree type)
8300 /* Can't check yet if we don't know the type. */
8301 if (dependent_type_p (type))
8302 return 0;
8303 /* If DECL is declared constexpr, we'll do the appropriate checks
8304 in check_initializer. */
8305 if (DECL_P (decl) && DECL_DECLARED_CONSTEXPR_P (decl))
8306 return 0;
8307 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8309 if (!COMPLETE_TYPE_P (type))
8310 error ("in-class initialization of static data member %q#D of "
8311 "incomplete type", decl);
8312 else if (literal_type_p (type))
8313 permerror (input_location,
8314 "%<constexpr%> needed for in-class initialization of "
8315 "static data member %q#D of non-integral type", decl);
8316 else
8317 error ("in-class initialization of static data member %q#D of "
8318 "non-literal type", decl);
8319 return 1;
8322 /* Motion 10 at San Diego: If a static const integral data member is
8323 initialized with an integral constant expression, the initializer
8324 may appear either in the declaration (within the class), or in
8325 the definition, but not both. If it appears in the class, the
8326 member is a member constant. The file-scope definition is always
8327 required. */
8328 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
8330 error ("invalid in-class initialization of static data member "
8331 "of non-integral type %qT",
8332 type);
8333 return 1;
8335 else if (!CP_TYPE_CONST_P (type))
8336 error ("ISO C++ forbids in-class initialization of non-const "
8337 "static member %qD",
8338 decl);
8339 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8340 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids initialization of member constant "
8341 "%qD of non-integral type %qT", decl, type);
8343 return 0;
8346 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
8347 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
8348 expressions out into temporary variables so that walk_tree doesn't
8349 step into them (c++/15764). */
8351 static tree
8352 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
8354 hash_set<tree> *pset = (hash_set<tree> *)data;
8355 tree expr = *expr_p;
8356 if (TREE_CODE (expr) == SAVE_EXPR)
8358 tree op = TREE_OPERAND (expr, 0);
8359 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
8360 if (TREE_SIDE_EFFECTS (op))
8361 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
8362 *walk_subtrees = 0;
8364 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
8365 *walk_subtrees = 0;
8366 return NULL;
8369 /* Entry point for the above. */
8371 static void
8372 stabilize_vla_size (tree size)
8374 hash_set<tree> pset;
8375 /* Break out any function calls into temporary variables. */
8376 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
8379 /* Helper function for compute_array_index_type. Look for SIZEOF_EXPR
8380 not inside of SAVE_EXPR and fold them. */
8382 static tree
8383 fold_sizeof_expr_r (tree *expr_p, int *walk_subtrees, void *data)
8385 tree expr = *expr_p;
8386 if (TREE_CODE (expr) == SAVE_EXPR || TYPE_P (expr))
8387 *walk_subtrees = 0;
8388 else if (TREE_CODE (expr) == SIZEOF_EXPR)
8390 *(bool *)data = true;
8391 if (SIZEOF_EXPR_TYPE_P (expr))
8392 expr = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (expr, 0)),
8393 SIZEOF_EXPR, false);
8394 else if (TYPE_P (TREE_OPERAND (expr, 0)))
8395 expr = cxx_sizeof_or_alignof_type (TREE_OPERAND (expr, 0), SIZEOF_EXPR,
8396 false);
8397 else
8398 expr = cxx_sizeof_or_alignof_expr (TREE_OPERAND (expr, 0), SIZEOF_EXPR,
8399 false);
8400 if (expr == error_mark_node)
8401 expr = size_one_node;
8402 *expr_p = expr;
8403 *walk_subtrees = 0;
8405 return NULL;
8408 /* Given the SIZE (i.e., number of elements) in an array, compute an
8409 appropriate index type for the array. If non-NULL, NAME is the
8410 name of the thing being declared. */
8412 tree
8413 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
8415 tree itype;
8416 tree osize = size;
8418 if (error_operand_p (size))
8419 return error_mark_node;
8421 if (!type_dependent_expression_p (size))
8423 tree type = TREE_TYPE (size);
8425 mark_rvalue_use (size);
8427 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
8428 && TREE_SIDE_EFFECTS (size))
8429 /* In C++98, we mark a non-constant array bound with a magic
8430 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
8431 else
8433 size = instantiate_non_dependent_expr_sfinae (size, complain);
8435 if (CLASS_TYPE_P (type)
8436 && CLASSTYPE_LITERAL_P (type))
8438 size = build_expr_type_conversion (WANT_INT, size, true);
8439 if (!size)
8441 if (!(complain & tf_error))
8442 return error_mark_node;
8443 if (name)
8444 error ("size of array %qD has non-integral type %qT",
8445 name, type);
8446 else
8447 error ("size of array has non-integral type %qT", type);
8448 size = integer_one_node;
8450 if (size == error_mark_node)
8451 return error_mark_node;
8452 type = TREE_TYPE (size);
8455 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8456 size = maybe_constant_value (size);
8458 if (!TREE_CONSTANT (size))
8459 size = osize;
8462 if (error_operand_p (size))
8463 return error_mark_node;
8465 /* The array bound must be an integer type. */
8466 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8468 if (!(complain & tf_error))
8469 return error_mark_node;
8470 if (name)
8471 error ("size of array %qD has non-integral type %qT", name, type);
8472 else
8473 error ("size of array has non-integral type %qT", type);
8474 size = integer_one_node;
8475 type = TREE_TYPE (size);
8479 /* A type is dependent if it is...an array type constructed from any
8480 dependent type or whose size is specified by a constant expression
8481 that is value-dependent. */
8482 /* We can only call value_dependent_expression_p on integral constant
8483 expressions; treat non-constant expressions as dependent, too. */
8484 if (processing_template_decl
8485 && (type_dependent_expression_p (size)
8486 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
8488 /* We cannot do any checking for a SIZE that isn't known to be
8489 constant. Just build the index type and mark that it requires
8490 structural equality checks. */
8491 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
8492 size, size_one_node));
8493 TYPE_DEPENDENT_P (itype) = 1;
8494 TYPE_DEPENDENT_P_VALID (itype) = 1;
8495 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8496 return itype;
8499 /* Normally, the array-bound will be a constant. */
8500 if (TREE_CODE (size) == INTEGER_CST)
8502 /* Check to see if the array bound overflowed. Make that an
8503 error, no matter how generous we're being. */
8504 constant_expression_error (size);
8506 /* An array must have a positive number of elements. */
8507 if (tree_int_cst_lt (size, integer_zero_node))
8509 if (!(complain & tf_error))
8510 return error_mark_node;
8511 if (name)
8512 error ("size of array %qD is negative", name);
8513 else
8514 error ("size of array is negative");
8515 size = integer_one_node;
8517 /* As an extension we allow zero-sized arrays. */
8518 else if (integer_zerop (size))
8520 if (!(complain & tf_error))
8521 /* We must fail if performing argument deduction (as
8522 indicated by the state of complain), so that
8523 another substitution can be found. */
8524 return error_mark_node;
8525 else if (in_system_header_at (input_location))
8526 /* Allow them in system headers because glibc uses them. */;
8527 else if (name)
8528 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array %qD", name);
8529 else
8530 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array");
8533 else if (TREE_CONSTANT (size)
8534 /* We don't allow VLAs at non-function scopes, or during
8535 tentative template substitution. */
8536 || !at_function_scope_p ()
8537 || !(complain & tf_error))
8539 if (!(complain & tf_error))
8540 return error_mark_node;
8541 /* `(int) &fn' is not a valid array bound. */
8542 if (name)
8543 error ("size of array %qD is not an integral constant-expression",
8544 name);
8545 else
8546 error ("size of array is not an integral constant-expression");
8547 size = integer_one_node;
8549 else if (pedantic && warn_vla != 0)
8551 if (name)
8552 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array %qD", name);
8553 else
8554 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array");
8556 else if (warn_vla > 0)
8558 if (name)
8559 warning (OPT_Wvla,
8560 "variable length array %qD is used", name);
8561 else
8562 warning (OPT_Wvla,
8563 "variable length array is used");
8566 if (processing_template_decl && !TREE_CONSTANT (size))
8567 /* A variable sized array. */
8568 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
8569 else
8571 HOST_WIDE_INT saved_processing_template_decl;
8573 /* Compute the index of the largest element in the array. It is
8574 one less than the number of elements in the array. We save
8575 and restore PROCESSING_TEMPLATE_DECL so that computations in
8576 cp_build_binary_op will be appropriately folded. */
8577 saved_processing_template_decl = processing_template_decl;
8578 processing_template_decl = 0;
8579 itype = cp_build_binary_op (input_location,
8580 MINUS_EXPR,
8581 cp_convert (ssizetype, size, complain),
8582 cp_convert (ssizetype, integer_one_node,
8583 complain),
8584 complain);
8585 itype = fold (itype);
8586 processing_template_decl = saved_processing_template_decl;
8588 if (!TREE_CONSTANT (itype))
8590 /* A variable sized array. */
8591 itype = variable_size (itype);
8593 if (TREE_CODE (itype) != SAVE_EXPR)
8595 /* Look for SIZEOF_EXPRs in itype and fold them, otherwise
8596 they might survive till gimplification. */
8597 tree newitype = itype;
8598 bool found = false;
8599 cp_walk_tree_without_duplicates (&newitype,
8600 fold_sizeof_expr_r, &found);
8601 if (found)
8602 itype = variable_size (fold (newitype));
8605 stabilize_vla_size (itype);
8607 if (flag_sanitize & SANITIZE_VLA
8608 && do_ubsan_in_current_function ())
8610 /* We have to add 1 -- in the ubsan routine we generate
8611 LE_EXPR rather than LT_EXPR. */
8612 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
8613 build_one_cst (TREE_TYPE (itype)));
8614 t = ubsan_instrument_vla (input_location, t);
8615 finish_expr_stmt (t);
8618 /* Make sure that there was no overflow when creating to a signed
8619 index type. (For example, on a 32-bit machine, an array with
8620 size 2^32 - 1 is too big.) */
8621 else if (TREE_CODE (itype) == INTEGER_CST
8622 && TREE_OVERFLOW (itype))
8624 if (!(complain & tf_error))
8625 return error_mark_node;
8626 error ("overflow in array dimension");
8627 TREE_OVERFLOW (itype) = 0;
8631 /* Create and return the appropriate index type. */
8632 itype = build_index_type (itype);
8634 /* If the index type were dependent, we would have returned early, so
8635 remember that it isn't. */
8636 TYPE_DEPENDENT_P (itype) = 0;
8637 TYPE_DEPENDENT_P_VALID (itype) = 1;
8638 return itype;
8641 /* Returns the scope (if any) in which the entity declared by
8642 DECLARATOR will be located. If the entity was declared with an
8643 unqualified name, NULL_TREE is returned. */
8645 tree
8646 get_scope_of_declarator (const cp_declarator *declarator)
8648 while (declarator && declarator->kind != cdk_id)
8649 declarator = declarator->declarator;
8651 /* If the declarator-id is a SCOPE_REF, the scope in which the
8652 declaration occurs is the first operand. */
8653 if (declarator
8654 && declarator->u.id.qualifying_scope)
8655 return declarator->u.id.qualifying_scope;
8657 /* Otherwise, the declarator is not a qualified name; the entity will
8658 be declared in the current scope. */
8659 return NULL_TREE;
8662 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
8663 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
8664 with this type. */
8666 static tree
8667 create_array_type_for_decl (tree name, tree type, tree size)
8669 tree itype = NULL_TREE;
8671 /* If things have already gone awry, bail now. */
8672 if (type == error_mark_node || size == error_mark_node)
8673 return error_mark_node;
8675 /* 8.3.4/1: If the type of the identifier of D contains the auto
8676 type-specifier, the program is ill-formed. */
8677 if (type_uses_auto (type))
8679 error ("%qD declared as array of %qT", name, type);
8680 return error_mark_node;
8683 /* If there are some types which cannot be array elements,
8684 issue an error-message and return. */
8685 switch (TREE_CODE (type))
8687 case VOID_TYPE:
8688 if (name)
8689 error ("declaration of %qD as array of void", name);
8690 else
8691 error ("creating array of void");
8692 return error_mark_node;
8694 case FUNCTION_TYPE:
8695 if (name)
8696 error ("declaration of %qD as array of functions", name);
8697 else
8698 error ("creating array of functions");
8699 return error_mark_node;
8701 case REFERENCE_TYPE:
8702 if (name)
8703 error ("declaration of %qD as array of references", name);
8704 else
8705 error ("creating array of references");
8706 return error_mark_node;
8708 case METHOD_TYPE:
8709 if (name)
8710 error ("declaration of %qD as array of function members", name);
8711 else
8712 error ("creating array of function members");
8713 return error_mark_node;
8715 default:
8716 break;
8719 /* [dcl.array]
8721 The constant expressions that specify the bounds of the arrays
8722 can be omitted only for the first member of the sequence. */
8723 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
8725 if (name)
8726 error ("declaration of %qD as multidimensional array must "
8727 "have bounds for all dimensions except the first",
8728 name);
8729 else
8730 error ("multidimensional array must have bounds for all "
8731 "dimensions except the first");
8733 return error_mark_node;
8736 /* Figure out the index type for the array. */
8737 if (size)
8738 itype = compute_array_index_type (name, size, tf_warning_or_error);
8740 /* [dcl.array]
8741 T is called the array element type; this type shall not be [...] an
8742 abstract class type. */
8743 abstract_virtuals_error (name, type);
8745 return build_cplus_array_type (type, itype);
8748 /* Check that it's OK to declare a function with the indicated TYPE.
8749 SFK indicates the kind of special function (if any) that this
8750 function is. OPTYPE is the type given in a conversion operator
8751 declaration, or the class type for a constructor/destructor.
8752 Returns the actual return type of the function; that
8753 may be different than TYPE if an error occurs, or for certain
8754 special functions. */
8756 static tree
8757 check_special_function_return_type (special_function_kind sfk,
8758 tree type,
8759 tree optype)
8761 switch (sfk)
8763 case sfk_constructor:
8764 if (type)
8765 error ("return type specification for constructor invalid");
8767 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
8768 type = build_pointer_type (optype);
8769 else
8770 type = void_type_node;
8771 break;
8773 case sfk_destructor:
8774 if (type)
8775 error ("return type specification for destructor invalid");
8776 /* We can't use the proper return type here because we run into
8777 problems with ambiguous bases and covariant returns.
8778 Java classes are left unchanged because (void *) isn't a valid
8779 Java type, and we don't want to change the Java ABI. */
8780 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
8781 type = build_pointer_type (void_type_node);
8782 else
8783 type = void_type_node;
8784 break;
8786 case sfk_conversion:
8787 if (type)
8788 error ("return type specified for %<operator %T%>", optype);
8789 type = optype;
8790 break;
8792 default:
8793 gcc_unreachable ();
8796 return type;
8799 /* A variable or data member (whose unqualified name is IDENTIFIER)
8800 has been declared with the indicated TYPE. If the TYPE is not
8801 acceptable, issue an error message and return a type to use for
8802 error-recovery purposes. */
8804 tree
8805 check_var_type (tree identifier, tree type)
8807 if (VOID_TYPE_P (type))
8809 if (!identifier)
8810 error ("unnamed variable or field declared void");
8811 else if (identifier_p (identifier))
8813 gcc_assert (!IDENTIFIER_OPNAME_P (identifier));
8814 error ("variable or field %qE declared void", identifier);
8816 else
8817 error ("variable or field declared void");
8818 type = error_mark_node;
8821 return type;
8824 /* Given declspecs and a declarator (abstract or otherwise), determine
8825 the name and type of the object declared and construct a DECL node
8826 for it.
8828 DECLSPECS points to the representation of declaration-specifier
8829 sequence that precedes declarator.
8831 DECL_CONTEXT says which syntactic context this declaration is in:
8832 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
8833 FUNCDEF for a function definition. Like NORMAL but a few different
8834 error messages in each case. Return value may be zero meaning
8835 this definition is too screwy to try to parse.
8836 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
8837 handle member functions (which have FIELD context).
8838 Return value may be zero meaning this definition is too screwy to
8839 try to parse.
8840 PARM for a parameter declaration (either within a function prototype
8841 or before a function body). Make a PARM_DECL, or return void_type_node.
8842 TPARM for a template parameter declaration.
8843 CATCHPARM for a parameter declaration before a catch clause.
8844 TYPENAME if for a typename (in a cast or sizeof).
8845 Don't make a DECL node; just return the ..._TYPE node.
8846 FIELD for a struct or union field; make a FIELD_DECL.
8847 BITFIELD for a field with specified width.
8849 INITIALIZED is as for start_decl.
8851 ATTRLIST is a pointer to the list of attributes, which may be NULL
8852 if there are none; *ATTRLIST may be modified if attributes from inside
8853 the declarator should be applied to the declaration.
8855 When this function is called, scoping variables (such as
8856 CURRENT_CLASS_TYPE) should reflect the scope in which the
8857 declaration occurs, not the scope in which the new declaration will
8858 be placed. For example, on:
8860 void S::f() { ... }
8862 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
8863 should not be `S'.
8865 Returns a DECL (if a declarator is present), a TYPE (if there is no
8866 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
8867 error occurs. */
8869 tree
8870 grokdeclarator (const cp_declarator *declarator,
8871 cp_decl_specifier_seq *declspecs,
8872 enum decl_context decl_context,
8873 int initialized,
8874 tree* attrlist)
8876 tree type = NULL_TREE;
8877 int longlong = 0;
8878 int explicit_intN = 0;
8879 int virtualp, explicitp, friendp, inlinep, staticp;
8880 int explicit_int = 0;
8881 int explicit_char = 0;
8882 int defaulted_int = 0;
8884 tree typedef_decl = NULL_TREE;
8885 const char *name = NULL;
8886 tree typedef_type = NULL_TREE;
8887 /* True if this declarator is a function definition. */
8888 bool funcdef_flag = false;
8889 cp_declarator_kind innermost_code = cdk_error;
8890 int bitfield = 0;
8891 #if 0
8892 /* See the code below that used this. */
8893 tree decl_attr = NULL_TREE;
8894 #endif
8896 /* Keep track of what sort of function is being processed
8897 so that we can warn about default return values, or explicit
8898 return values which do not match prescribed defaults. */
8899 special_function_kind sfk = sfk_none;
8901 tree dname = NULL_TREE;
8902 tree ctor_return_type = NULL_TREE;
8903 enum overload_flags flags = NO_SPECIAL;
8904 /* cv-qualifiers that apply to the declarator, for a declaration of
8905 a member function. */
8906 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
8907 /* virt-specifiers that apply to the declarator, for a declaration of
8908 a member function. */
8909 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
8910 /* ref-qualifier that applies to the declarator, for a declaration of
8911 a member function. */
8912 cp_ref_qualifier rqual = REF_QUAL_NONE;
8913 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
8914 int type_quals;
8915 tree raises = NULL_TREE;
8916 int template_count = 0;
8917 tree returned_attrs = NULL_TREE;
8918 tree parms = NULL_TREE;
8919 const cp_declarator *id_declarator;
8920 /* The unqualified name of the declarator; either an
8921 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
8922 tree unqualified_id;
8923 /* The class type, if any, in which this entity is located,
8924 or NULL_TREE if none. Note that this value may be different from
8925 the current class type; for example if an attempt is made to declare
8926 "A::f" inside "B", this value will be "A". */
8927 tree ctype = current_class_type;
8928 /* The NAMESPACE_DECL for the namespace in which this entity is
8929 located. If an unqualified name is used to declare the entity,
8930 this value will be NULL_TREE, even if the entity is located at
8931 namespace scope. */
8932 tree in_namespace = NULL_TREE;
8933 cp_storage_class storage_class;
8934 bool unsigned_p, signed_p, short_p, long_p, thread_p;
8935 bool type_was_error_mark_node = false;
8936 bool parameter_pack_p = declarator? declarator->parameter_pack_p : false;
8937 bool template_type_arg = false;
8938 bool template_parm_flag = false;
8939 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
8940 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
8941 bool late_return_type_p = false;
8942 bool array_parameter_p = false;
8943 source_location saved_loc = input_location;
8944 const char *errmsg;
8946 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
8947 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
8948 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
8949 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
8950 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
8951 explicit_intN = declspecs->explicit_intN_p;
8952 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
8954 if (decl_context == FUNCDEF)
8955 funcdef_flag = true, decl_context = NORMAL;
8956 else if (decl_context == MEMFUNCDEF)
8957 funcdef_flag = true, decl_context = FIELD;
8958 else if (decl_context == BITFIELD)
8959 bitfield = 1, decl_context = FIELD;
8960 else if (decl_context == TEMPLATE_TYPE_ARG)
8961 template_type_arg = true, decl_context = TYPENAME;
8962 else if (decl_context == TPARM)
8963 template_parm_flag = true, decl_context = PARM;
8965 if (initialized > 1)
8966 funcdef_flag = true;
8968 /* Look inside a declarator for the name being declared
8969 and get it as a string, for an error message. */
8970 for (id_declarator = declarator;
8971 id_declarator;
8972 id_declarator = id_declarator->declarator)
8974 if (id_declarator->kind != cdk_id)
8975 innermost_code = id_declarator->kind;
8977 switch (id_declarator->kind)
8979 case cdk_function:
8980 if (id_declarator->declarator
8981 && id_declarator->declarator->kind == cdk_id)
8983 sfk = id_declarator->declarator->u.id.sfk;
8984 if (sfk == sfk_destructor)
8985 flags = DTOR_FLAG;
8987 break;
8989 case cdk_id:
8991 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
8992 tree decl = id_declarator->u.id.unqualified_name;
8993 if (!decl)
8994 break;
8995 if (qualifying_scope)
8997 if (at_function_scope_p ())
8999 /* [dcl.meaning]
9001 A declarator-id shall not be qualified except
9002 for ...
9004 None of the cases are permitted in block
9005 scope. */
9006 if (qualifying_scope == global_namespace)
9007 error ("invalid use of qualified-name %<::%D%>",
9008 decl);
9009 else if (TYPE_P (qualifying_scope))
9010 error ("invalid use of qualified-name %<%T::%D%>",
9011 qualifying_scope, decl);
9012 else
9013 error ("invalid use of qualified-name %<%D::%D%>",
9014 qualifying_scope, decl);
9015 return error_mark_node;
9017 else if (TYPE_P (qualifying_scope))
9019 ctype = qualifying_scope;
9020 if (!MAYBE_CLASS_TYPE_P (ctype))
9022 error ("%q#T is not a class or a namespace", ctype);
9023 ctype = NULL_TREE;
9025 else if (innermost_code != cdk_function
9026 && current_class_type
9027 && !uniquely_derived_from_p (ctype,
9028 current_class_type))
9030 error ("invalid use of qualified-name %<%T::%D%>",
9031 qualifying_scope, decl);
9032 return error_mark_node;
9035 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
9036 in_namespace = qualifying_scope;
9038 switch (TREE_CODE (decl))
9040 case BIT_NOT_EXPR:
9042 tree type;
9044 if (innermost_code != cdk_function)
9046 error ("declaration of %qD as non-function", decl);
9047 return error_mark_node;
9049 else if (!qualifying_scope
9050 && !(current_class_type && at_class_scope_p ()))
9052 error ("declaration of %qD as non-member", decl);
9053 return error_mark_node;
9056 type = TREE_OPERAND (decl, 0);
9057 if (TYPE_P (type))
9058 type = constructor_name (type);
9059 name = identifier_to_locale (IDENTIFIER_POINTER (type));
9060 dname = decl;
9062 break;
9064 case TEMPLATE_ID_EXPR:
9066 tree fns = TREE_OPERAND (decl, 0);
9068 dname = fns;
9069 if (!identifier_p (dname))
9071 if (variable_template_p (dname))
9072 dname = DECL_NAME (dname);
9073 else
9075 gcc_assert (is_overloaded_fn (dname));
9076 dname = DECL_NAME (get_first_fn (dname));
9080 /* Fall through. */
9082 case IDENTIFIER_NODE:
9083 if (identifier_p (decl))
9084 dname = decl;
9086 if (C_IS_RESERVED_WORD (dname))
9088 error ("declarator-id missing; using reserved word %qD",
9089 dname);
9090 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9092 else if (!IDENTIFIER_TYPENAME_P (dname))
9093 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9094 else
9096 gcc_assert (flags == NO_SPECIAL);
9097 flags = TYPENAME_FLAG;
9098 ctor_return_type = TREE_TYPE (dname);
9099 sfk = sfk_conversion;
9100 if (is_typename_at_global_scope (dname))
9101 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9102 else
9103 name = "<invalid operator>";
9105 break;
9107 default:
9108 gcc_unreachable ();
9110 break;
9113 case cdk_array:
9114 case cdk_pointer:
9115 case cdk_reference:
9116 case cdk_ptrmem:
9117 break;
9119 case cdk_error:
9120 return error_mark_node;
9122 default:
9123 gcc_unreachable ();
9125 if (id_declarator->kind == cdk_id)
9126 break;
9129 /* [dcl.fct.edf]
9131 The declarator in a function-definition shall have the form
9132 D1 ( parameter-declaration-clause) ... */
9133 if (funcdef_flag && innermost_code != cdk_function)
9135 error ("function definition does not declare parameters");
9136 return error_mark_node;
9139 if (flags == TYPENAME_FLAG
9140 && innermost_code != cdk_function
9141 && ! (ctype && !declspecs->any_specifiers_p))
9143 error ("declaration of %qD as non-function", dname);
9144 return error_mark_node;
9147 if (dname
9148 && identifier_p (dname)
9149 && UDLIT_OPER_P (dname)
9150 && innermost_code != cdk_function)
9152 error ("declaration of %qD as non-function", dname);
9153 return error_mark_node;
9156 if (dname && IDENTIFIER_OPNAME_P (dname))
9158 if (typedef_p)
9160 error ("declaration of %qD as %<typedef%>", dname);
9161 return error_mark_node;
9163 else if (decl_context == PARM || decl_context == CATCHPARM)
9165 error ("declaration of %qD as parameter", dname);
9166 return error_mark_node;
9170 /* Anything declared one level down from the top level
9171 must be one of the parameters of a function
9172 (because the body is at least two levels down). */
9174 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
9175 by not allowing C++ class definitions to specify their parameters
9176 with xdecls (must be spec.d in the parmlist).
9178 Since we now wait to push a class scope until we are sure that
9179 we are in a legitimate method context, we must set oldcname
9180 explicitly (since current_class_name is not yet alive).
9182 We also want to avoid calling this a PARM if it is in a namespace. */
9184 if (decl_context == NORMAL && !toplevel_bindings_p ())
9186 cp_binding_level *b = current_binding_level;
9187 current_binding_level = b->level_chain;
9188 if (current_binding_level != 0 && toplevel_bindings_p ())
9189 decl_context = PARM;
9190 current_binding_level = b;
9193 if (name == NULL)
9194 name = decl_context == PARM ? "parameter" : "type name";
9196 if (constexpr_p && typedef_p)
9198 error ("%<constexpr%> cannot appear in a typedef declaration");
9199 return error_mark_node;
9202 /* If there were multiple types specified in the decl-specifier-seq,
9203 issue an error message. */
9204 if (declspecs->multiple_types_p)
9206 error ("two or more data types in declaration of %qs", name);
9207 return error_mark_node;
9210 if (declspecs->conflicting_specifiers_p)
9212 error ("conflicting specifiers in declaration of %qs", name);
9213 return error_mark_node;
9216 /* Extract the basic type from the decl-specifier-seq. */
9217 type = declspecs->type;
9218 if (type == error_mark_node)
9220 type = NULL_TREE;
9221 type_was_error_mark_node = true;
9223 /* If the entire declaration is itself tagged as deprecated then
9224 suppress reports of deprecated items. */
9225 if (type && TREE_DEPRECATED (type)
9226 && deprecated_state != DEPRECATED_SUPPRESS)
9227 warn_deprecated_use (type, NULL_TREE);
9228 if (type && TREE_CODE (type) == TYPE_DECL)
9230 typedef_decl = type;
9231 type = TREE_TYPE (typedef_decl);
9232 if (TREE_DEPRECATED (type)
9233 && DECL_ARTIFICIAL (typedef_decl)
9234 && deprecated_state != DEPRECATED_SUPPRESS)
9235 warn_deprecated_use (type, NULL_TREE);
9237 /* No type at all: default to `int', and set DEFAULTED_INT
9238 because it was not a user-defined typedef. */
9239 if (type == NULL_TREE)
9241 if (signed_p || unsigned_p || long_p || short_p)
9243 /* These imply 'int'. */
9244 type = integer_type_node;
9245 defaulted_int = 1;
9247 /* If we just have "complex", it is equivalent to "complex double". */
9248 else if (!longlong && !explicit_intN
9249 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
9251 type = double_type_node;
9252 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
9253 "ISO C++ does not support plain %<complex%> meaning "
9254 "%<double complex%>");
9257 /* Gather flags. */
9258 explicit_int = declspecs->explicit_int_p;
9259 explicit_char = declspecs->explicit_char_p;
9261 #if 0
9262 /* See the code below that used this. */
9263 if (typedef_decl)
9264 decl_attr = DECL_ATTRIBUTES (typedef_decl);
9265 #endif
9266 typedef_type = type;
9269 if (sfk != sfk_conversion)
9270 ctor_return_type = ctype;
9272 if (sfk != sfk_none)
9273 type = check_special_function_return_type (sfk, type,
9274 ctor_return_type);
9275 else if (type == NULL_TREE)
9277 int is_main;
9279 explicit_int = -1;
9281 /* We handle `main' specially here, because 'main () { }' is so
9282 common. With no options, it is allowed. With -Wreturn-type,
9283 it is a warning. It is only an error with -pedantic-errors. */
9284 is_main = (funcdef_flag
9285 && dname && identifier_p (dname)
9286 && MAIN_NAME_P (dname)
9287 && ctype == NULL_TREE
9288 && in_namespace == NULL_TREE
9289 && current_namespace == global_namespace);
9291 if (type_was_error_mark_node)
9292 /* We've already issued an error, don't complain more. */;
9293 else if (in_system_header_at (input_location) || flag_ms_extensions)
9294 /* Allow it, sigh. */;
9295 else if (! is_main)
9296 permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
9297 else if (pedantic)
9298 pedwarn (input_location, OPT_Wpedantic,
9299 "ISO C++ forbids declaration of %qs with no type", name);
9300 else
9301 warning (OPT_Wreturn_type,
9302 "ISO C++ forbids declaration of %qs with no type", name);
9304 type = integer_type_node;
9307 ctype = NULL_TREE;
9309 if (explicit_intN)
9311 if (! int_n_enabled_p[declspecs->int_n_idx])
9313 error ("%<__int%d%> is not supported by this target",
9314 int_n_data[declspecs->int_n_idx].bitsize);
9315 explicit_intN = false;
9317 else if (pedantic && ! in_system_header_at (input_location))
9318 pedwarn (input_location, OPT_Wpedantic,
9319 "ISO C++ does not support %<__int%d%> for %qs",
9320 int_n_data[declspecs->int_n_idx].bitsize, name);
9323 /* Now process the modifiers that were specified
9324 and check for invalid combinations. */
9326 /* Long double is a special combination. */
9327 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
9329 long_p = false;
9330 type = cp_build_qualified_type (long_double_type_node,
9331 cp_type_quals (type));
9334 /* Check all other uses of type modifiers. */
9336 if (unsigned_p || signed_p || long_p || short_p)
9338 int ok = 0;
9340 if ((signed_p || unsigned_p) && TREE_CODE (type) != INTEGER_TYPE)
9341 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9342 else if (signed_p && unsigned_p)
9343 error ("%<signed%> and %<unsigned%> specified together for %qs", name);
9344 else if (longlong && TREE_CODE (type) != INTEGER_TYPE)
9345 error ("%<long long%> invalid for %qs", name);
9346 else if (long_p && TREE_CODE (type) == REAL_TYPE)
9347 error ("%<long%> invalid for %qs", name);
9348 else if (short_p && TREE_CODE (type) == REAL_TYPE)
9349 error ("%<short%> invalid for %qs", name);
9350 else if ((long_p || short_p) && TREE_CODE (type) != INTEGER_TYPE)
9351 error ("%<long%> or %<short%> invalid for %qs", name);
9352 else if ((long_p || short_p || explicit_char || explicit_int) && explicit_intN)
9353 error ("%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs", name);
9354 else if ((long_p || short_p) && explicit_char)
9355 error ("%<long%> or %<short%> specified with char for %qs", name);
9356 else if (long_p && short_p)
9357 error ("%<long%> and %<short%> specified together for %qs", name);
9358 else if (type == char16_type_node || type == char32_type_node)
9360 if (signed_p || unsigned_p)
9361 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9362 else if (short_p || long_p)
9363 error ("%<short%> or %<long%> invalid for %qs", name);
9365 else
9367 ok = 1;
9368 if (!explicit_int && !defaulted_int && !explicit_char && !explicit_intN && pedantic)
9370 pedwarn (input_location, OPT_Wpedantic,
9371 "long, short, signed or unsigned used invalidly for %qs",
9372 name);
9373 if (flag_pedantic_errors)
9374 ok = 0;
9378 /* Discard the type modifiers if they are invalid. */
9379 if (! ok)
9381 unsigned_p = false;
9382 signed_p = false;
9383 long_p = false;
9384 short_p = false;
9385 longlong = 0;
9389 /* Decide whether an integer type is signed or not.
9390 Optionally treat bitfields as signed by default. */
9391 if (unsigned_p
9392 /* [class.bit]
9394 It is implementation-defined whether a plain (neither
9395 explicitly signed or unsigned) char, short, int, or long
9396 bit-field is signed or unsigned.
9398 Naturally, we extend this to long long as well. Note that
9399 this does not include wchar_t. */
9400 || (bitfield && !flag_signed_bitfields
9401 && !signed_p
9402 /* A typedef for plain `int' without `signed' can be
9403 controlled just like plain `int', but a typedef for
9404 `signed int' cannot be so controlled. */
9405 && !(typedef_decl
9406 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
9407 && TREE_CODE (type) == INTEGER_TYPE
9408 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
9410 if (explicit_intN)
9411 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
9412 else if (longlong)
9413 type = long_long_unsigned_type_node;
9414 else if (long_p)
9415 type = long_unsigned_type_node;
9416 else if (short_p)
9417 type = short_unsigned_type_node;
9418 else if (type == char_type_node)
9419 type = unsigned_char_type_node;
9420 else if (typedef_decl)
9421 type = unsigned_type_for (type);
9422 else
9423 type = unsigned_type_node;
9425 else if (signed_p && type == char_type_node)
9426 type = signed_char_type_node;
9427 else if (explicit_intN)
9428 type = int_n_trees[declspecs->int_n_idx].signed_type;
9429 else if (longlong)
9430 type = long_long_integer_type_node;
9431 else if (long_p)
9432 type = long_integer_type_node;
9433 else if (short_p)
9434 type = short_integer_type_node;
9436 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
9438 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
9439 error ("complex invalid for %qs", name);
9440 /* If a modifier is specified, the resulting complex is the complex
9441 form of TYPE. E.g, "complex short" is "complex short int". */
9442 else if (type == integer_type_node)
9443 type = complex_integer_type_node;
9444 else if (type == float_type_node)
9445 type = complex_float_type_node;
9446 else if (type == double_type_node)
9447 type = complex_double_type_node;
9448 else if (type == long_double_type_node)
9449 type = complex_long_double_type_node;
9450 else
9451 type = build_complex_type (type);
9454 type_quals = TYPE_UNQUALIFIED;
9455 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
9456 type_quals |= TYPE_QUAL_CONST;
9457 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
9458 type_quals |= TYPE_QUAL_VOLATILE;
9459 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
9460 type_quals |= TYPE_QUAL_RESTRICT;
9461 if (sfk == sfk_conversion && type_quals != TYPE_UNQUALIFIED)
9462 error ("qualifiers are not allowed on declaration of %<operator %T%>",
9463 ctor_return_type);
9465 /* If we're using the injected-class-name to form a compound type or a
9466 declaration, replace it with the underlying class so we don't get
9467 redundant typedefs in the debug output. But if we are returning the
9468 type unchanged, leave it alone so that it's available to
9469 maybe_get_template_decl_from_type_decl. */
9470 if (CLASS_TYPE_P (type)
9471 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
9472 && type == TREE_TYPE (TYPE_NAME (type))
9473 && (declarator || type_quals))
9474 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
9476 type_quals |= cp_type_quals (type);
9477 type = cp_build_qualified_type_real
9478 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
9479 || declspecs->decltype_p)
9480 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
9481 /* We might have ignored or rejected some of the qualifiers. */
9482 type_quals = cp_type_quals (type);
9484 staticp = 0;
9485 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
9486 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
9487 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
9489 storage_class = declspecs->storage_class;
9490 if (storage_class == sc_static)
9491 staticp = 1 + (decl_context == FIELD);
9493 if (virtualp && staticp == 2)
9495 error ("member %qD cannot be declared both virtual and static", dname);
9496 storage_class = sc_none;
9497 staticp = 0;
9499 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
9501 /* Issue errors about use of storage classes for parameters. */
9502 if (decl_context == PARM)
9504 if (typedef_p)
9506 error ("typedef declaration invalid in parameter declaration");
9507 return error_mark_node;
9509 else if (template_parm_flag && storage_class != sc_none)
9511 error ("storage class specified for template parameter %qs", name);
9512 return error_mark_node;
9514 else if (storage_class == sc_static
9515 || storage_class == sc_extern
9516 || thread_p)
9517 error ("storage class specifiers invalid in parameter declarations");
9519 /* Function parameters cannot be constexpr. If we saw one, moan
9520 and pretend it wasn't there. */
9521 if (constexpr_p)
9523 error ("a parameter cannot be declared %<constexpr%>");
9524 constexpr_p = 0;
9528 /* Give error if `virtual' is used outside of class declaration. */
9529 if (virtualp
9530 && (current_class_name == NULL_TREE || decl_context != FIELD))
9532 error_at (declspecs->locations[ds_virtual],
9533 "%<virtual%> outside class declaration");
9534 virtualp = 0;
9537 /* Static anonymous unions are dealt with here. */
9538 if (staticp && decl_context == TYPENAME
9539 && declspecs->type
9540 && ANON_AGGR_TYPE_P (declspecs->type))
9541 decl_context = FIELD;
9543 /* Warn about storage classes that are invalid for certain
9544 kinds of declarations (parameters, typenames, etc.). */
9545 if (thread_p
9546 && ((storage_class
9547 && storage_class != sc_extern
9548 && storage_class != sc_static)
9549 || typedef_p))
9551 error ("multiple storage classes in declaration of %qs", name);
9552 thread_p = false;
9554 if (decl_context != NORMAL
9555 && ((storage_class != sc_none
9556 && storage_class != sc_mutable)
9557 || thread_p))
9559 if ((decl_context == PARM || decl_context == CATCHPARM)
9560 && (storage_class == sc_register
9561 || storage_class == sc_auto))
9563 else if (typedef_p)
9565 else if (decl_context == FIELD
9566 /* C++ allows static class elements. */
9567 && storage_class == sc_static)
9568 /* C++ also allows inlines and signed and unsigned elements,
9569 but in those cases we don't come in here. */
9571 else
9573 if (decl_context == FIELD)
9574 error ("storage class specified for %qs", name);
9575 else
9577 if (decl_context == PARM || decl_context == CATCHPARM)
9578 error ("storage class specified for parameter %qs", name);
9579 else
9580 error ("storage class specified for typename");
9582 if (storage_class == sc_register
9583 || storage_class == sc_auto
9584 || storage_class == sc_extern
9585 || thread_p)
9586 storage_class = sc_none;
9589 else if (storage_class == sc_extern && funcdef_flag
9590 && ! toplevel_bindings_p ())
9591 error ("nested function %qs declared %<extern%>", name);
9592 else if (toplevel_bindings_p ())
9594 if (storage_class == sc_auto)
9595 error ("top-level declaration of %qs specifies %<auto%>", name);
9597 else if (thread_p
9598 && storage_class != sc_extern
9599 && storage_class != sc_static)
9601 if (declspecs->gnu_thread_keyword_p)
9602 pedwarn (input_location, 0, "function-scope %qs implicitly auto and "
9603 "declared %<__thread%>", name);
9605 /* When thread_local is applied to a variable of block scope the
9606 storage-class-specifier static is implied if it does not appear
9607 explicitly. */
9608 storage_class = declspecs->storage_class = sc_static;
9609 staticp = 1;
9612 if (storage_class && friendp)
9614 error ("storage class specifiers invalid in friend function declarations");
9615 storage_class = sc_none;
9616 staticp = 0;
9619 if (!id_declarator)
9620 unqualified_id = NULL_TREE;
9621 else
9623 unqualified_id = id_declarator->u.id.unqualified_name;
9624 switch (TREE_CODE (unqualified_id))
9626 case BIT_NOT_EXPR:
9627 unqualified_id = TREE_OPERAND (unqualified_id, 0);
9628 if (TYPE_P (unqualified_id))
9629 unqualified_id = constructor_name (unqualified_id);
9630 break;
9632 case IDENTIFIER_NODE:
9633 case TEMPLATE_ID_EXPR:
9634 break;
9636 default:
9637 gcc_unreachable ();
9641 if (declspecs->std_attributes)
9643 /* Apply the c++11 attributes to the type preceding them. */
9644 input_location = declspecs->locations[ds_std_attribute];
9645 decl_attributes (&type, declspecs->std_attributes, 0);
9646 input_location = saved_loc;
9649 /* Determine the type of the entity declared by recurring on the
9650 declarator. */
9651 for (; declarator; declarator = declarator->declarator)
9653 const cp_declarator *inner_declarator;
9654 tree attrs;
9656 if (type == error_mark_node)
9657 return error_mark_node;
9659 attrs = declarator->attributes;
9660 if (attrs)
9662 int attr_flags;
9664 attr_flags = 0;
9665 if (declarator == NULL || declarator->kind == cdk_id)
9666 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
9667 if (declarator->kind == cdk_function)
9668 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
9669 if (declarator->kind == cdk_array)
9670 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
9671 returned_attrs = decl_attributes (&type,
9672 chainon (returned_attrs, attrs),
9673 attr_flags);
9676 if (declarator->kind == cdk_id)
9677 break;
9679 inner_declarator = declarator->declarator;
9681 switch (declarator->kind)
9683 case cdk_array:
9684 type = create_array_type_for_decl (dname, type,
9685 declarator->u.array.bounds);
9686 if (declarator->std_attributes)
9687 /* [dcl.array]/1:
9689 The optional attribute-specifier-seq appertains to the
9690 array. */
9691 returned_attrs = chainon (returned_attrs,
9692 declarator->std_attributes);
9693 break;
9695 case cdk_function:
9697 tree arg_types;
9698 int funcdecl_p;
9700 /* Declaring a function type.
9701 Make sure we have a valid type for the function to return. */
9703 if (type_quals != TYPE_UNQUALIFIED)
9705 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
9706 warning (OPT_Wignored_qualifiers,
9707 "type qualifiers ignored on function return type");
9708 /* We now know that the TYPE_QUALS don't apply to the
9709 decl, but to its return type. */
9710 type_quals = TYPE_UNQUALIFIED;
9712 errmsg = targetm.invalid_return_type (type);
9713 if (errmsg)
9715 error (errmsg);
9716 type = integer_type_node;
9719 /* Error about some types functions can't return. */
9721 if (TREE_CODE (type) == FUNCTION_TYPE)
9723 error ("%qs declared as function returning a function", name);
9724 return error_mark_node;
9726 if (TREE_CODE (type) == ARRAY_TYPE)
9728 error ("%qs declared as function returning an array", name);
9729 return error_mark_node;
9732 input_location = declspecs->locations[ds_type_spec];
9733 abstract_virtuals_error (ACU_RETURN, type);
9734 input_location = saved_loc;
9736 /* Pick up type qualifiers which should be applied to `this'. */
9737 memfn_quals = declarator->u.function.qualifiers;
9738 /* Pick up virt-specifiers. */
9739 virt_specifiers = declarator->u.function.virt_specifiers;
9740 /* And ref-qualifier, too */
9741 rqual = declarator->u.function.ref_qualifier;
9742 /* Pick up the exception specifications. */
9743 raises = declarator->u.function.exception_specification;
9744 /* If the exception-specification is ill-formed, let's pretend
9745 there wasn't one. */
9746 if (raises == error_mark_node)
9747 raises = NULL_TREE;
9749 /* Say it's a definition only for the CALL_EXPR
9750 closest to the identifier. */
9751 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
9753 /* Handle a late-specified return type. */
9754 if (funcdecl_p)
9756 if (type_uses_auto (type))
9758 if (!declarator->u.function.late_return_type)
9760 if (current_class_type
9761 && LAMBDA_TYPE_P (current_class_type))
9762 /* OK for C++11 lambdas. */;
9763 else if (cxx_dialect < cxx14)
9765 error ("%qs function uses "
9766 "%<auto%> type specifier without trailing "
9767 "return type", name);
9768 inform (input_location, "deduced return type "
9769 "only available with -std=c++14 or "
9770 "-std=gnu++14");
9772 else if (virtualp)
9774 error ("virtual function cannot "
9775 "have deduced return type");
9776 virtualp = false;
9779 else if (!is_auto (type) && sfk != sfk_conversion)
9781 error ("%qs function with trailing return type has"
9782 " %qT as its type rather than plain %<auto%>",
9783 name, type);
9784 return error_mark_node;
9787 else if (declarator->u.function.late_return_type
9788 && sfk != sfk_conversion)
9790 if (cxx_dialect < cxx11)
9791 /* Not using maybe_warn_cpp0x because this should
9792 always be an error. */
9793 error ("trailing return type only available with "
9794 "-std=c++11 or -std=gnu++11");
9795 else
9796 error ("%qs function with trailing return type not "
9797 "declared with %<auto%> type specifier", name);
9798 return error_mark_node;
9801 type = splice_late_return_type
9802 (type, declarator->u.function.late_return_type);
9803 if (type == error_mark_node)
9804 return error_mark_node;
9806 if (declarator->u.function.late_return_type)
9807 late_return_type_p = true;
9809 if (ctype == NULL_TREE
9810 && decl_context == FIELD
9811 && funcdecl_p
9812 && friendp == 0)
9813 ctype = current_class_type;
9815 if (ctype && (sfk == sfk_constructor
9816 || sfk == sfk_destructor))
9818 /* We are within a class's scope. If our declarator name
9819 is the same as the class name, and we are defining
9820 a function, then it is a constructor/destructor, and
9821 therefore returns a void type. */
9823 /* ISO C++ 12.4/2. A destructor may not be declared
9824 const or volatile. A destructor may not be static.
9825 A destructor may not be declared with ref-qualifier.
9827 ISO C++ 12.1. A constructor may not be declared
9828 const or volatile. A constructor may not be
9829 virtual. A constructor may not be static.
9830 A constructor may not be declared with ref-qualifier. */
9831 if (staticp == 2)
9832 error ((flags == DTOR_FLAG)
9833 ? G_("destructor cannot be static member function")
9834 : G_("constructor cannot be static member function"));
9835 if (memfn_quals)
9837 error ((flags == DTOR_FLAG)
9838 ? G_("destructors may not be cv-qualified")
9839 : G_("constructors may not be cv-qualified"));
9840 memfn_quals = TYPE_UNQUALIFIED;
9843 if (rqual)
9845 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
9846 error ((flags == DTOR_FLAG)
9847 ? "destructors may not be ref-qualified"
9848 : "constructors may not be ref-qualified");
9849 rqual = REF_QUAL_NONE;
9852 if (decl_context == FIELD
9853 && !member_function_or_else (ctype,
9854 current_class_type,
9855 flags))
9856 return error_mark_node;
9858 if (flags != DTOR_FLAG)
9860 /* It's a constructor. */
9861 if (explicitp == 1)
9862 explicitp = 2;
9863 if (virtualp)
9865 permerror (input_location, "constructors cannot be declared virtual");
9866 virtualp = 0;
9868 if (decl_context == FIELD
9869 && sfk != sfk_constructor)
9870 return error_mark_node;
9872 if (decl_context == FIELD)
9873 staticp = 0;
9875 else if (friendp)
9877 if (virtualp)
9879 /* Cannot be both friend and virtual. */
9880 error ("virtual functions cannot be friends");
9881 friendp = 0;
9883 if (decl_context == NORMAL)
9884 error ("friend declaration not in class definition");
9885 if (current_function_decl && funcdef_flag)
9886 error ("can%'t define friend function %qs in a local "
9887 "class definition",
9888 name);
9890 else if (ctype && sfk == sfk_conversion)
9892 if (explicitp == 1)
9894 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
9895 explicitp = 2;
9897 if (late_return_type_p)
9898 error ("a conversion function cannot have a trailing return type");
9901 arg_types = grokparms (declarator->u.function.parameters,
9902 &parms);
9904 if (inner_declarator
9905 && inner_declarator->kind == cdk_id
9906 && inner_declarator->u.id.sfk == sfk_destructor
9907 && arg_types != void_list_node)
9909 error ("destructors may not have parameters");
9910 arg_types = void_list_node;
9911 parms = NULL_TREE;
9914 type = build_function_type (type, arg_types);
9915 if (declarator->std_attributes)
9916 /* [dcl.fct]/2:
9918 The optional attribute-specifier-seq appertains to
9919 the function type. */
9920 decl_attributes (&type, declarator->std_attributes,
9923 break;
9925 case cdk_pointer:
9926 case cdk_reference:
9927 case cdk_ptrmem:
9928 /* Filter out pointers-to-references and references-to-references.
9929 We can get these if a TYPE_DECL is used. */
9931 if (TREE_CODE (type) == REFERENCE_TYPE)
9933 if (declarator->kind != cdk_reference)
9935 error ("cannot declare pointer to %q#T", type);
9936 type = TREE_TYPE (type);
9939 /* In C++0x, we allow reference to reference declarations
9940 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
9941 and template type arguments [14.3.1/4 temp.arg.type]. The
9942 check for direct reference to reference declarations, which
9943 are still forbidden, occurs below. Reasoning behind the change
9944 can be found in DR106, DR540, and the rvalue reference
9945 proposals. */
9946 else if (cxx_dialect == cxx98)
9948 error ("cannot declare reference to %q#T", type);
9949 type = TREE_TYPE (type);
9952 else if (VOID_TYPE_P (type))
9954 if (declarator->kind == cdk_reference)
9955 error ("cannot declare reference to %q#T", type);
9956 else if (declarator->kind == cdk_ptrmem)
9957 error ("cannot declare pointer to %q#T member", type);
9960 /* We now know that the TYPE_QUALS don't apply to the decl,
9961 but to the target of the pointer. */
9962 type_quals = TYPE_UNQUALIFIED;
9964 /* This code used to handle METHOD_TYPE, but I don't think it's
9965 possible to get it here anymore. */
9966 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
9967 if (declarator->kind == cdk_ptrmem
9968 && TREE_CODE (type) == FUNCTION_TYPE)
9970 memfn_quals |= type_memfn_quals (type);
9971 type = build_memfn_type (type,
9972 declarator->u.pointer.class_type,
9973 memfn_quals,
9974 rqual);
9975 if (type == error_mark_node)
9976 return error_mark_node;
9978 rqual = REF_QUAL_NONE;
9979 memfn_quals = TYPE_UNQUALIFIED;
9982 if (TREE_CODE (type) == FUNCTION_TYPE
9983 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
9984 || type_memfn_rqual (type) != REF_QUAL_NONE))
9985 error (declarator->kind == cdk_reference
9986 ? G_("cannot declare reference to qualified function type %qT")
9987 : G_("cannot declare pointer to qualified function type %qT"),
9988 type);
9990 /* When the pointed-to type involves components of variable size,
9991 care must be taken to ensure that the size evaluation code is
9992 emitted early enough to dominate all the possible later uses
9993 and late enough for the variables on which it depends to have
9994 been assigned.
9996 This is expected to happen automatically when the pointed-to
9997 type has a name/declaration of it's own, but special attention
9998 is required if the type is anonymous.
10000 We handle the NORMAL and FIELD contexts here by inserting a
10001 dummy statement that just evaluates the size at a safe point
10002 and ensures it is not deferred until e.g. within a deeper
10003 conditional context (c++/43555).
10005 We expect nothing to be needed here for PARM or TYPENAME.
10006 Evaluating the size at this point for TYPENAME would
10007 actually be incorrect, as we might be in the middle of an
10008 expression with side effects on the pointed-to type size
10009 "arguments" prior to the pointer declaration point and the
10010 size evaluation could end up prior to the side effects. */
10012 if (!TYPE_NAME (type)
10013 && (decl_context == NORMAL || decl_context == FIELD)
10014 && at_function_scope_p ()
10015 && variably_modified_type_p (type, NULL_TREE))
10016 /* Force evaluation of the SAVE_EXPR. */
10017 finish_expr_stmt (TYPE_SIZE (type));
10019 if (declarator->kind == cdk_reference)
10021 /* In C++0x, the type we are creating a reference to might be
10022 a typedef which is itself a reference type. In that case,
10023 we follow the reference collapsing rules in
10024 [7.1.3/8 dcl.typedef] to create the final reference type:
10026 "If a typedef TD names a type that is a reference to a type
10027 T, an attempt to create the type 'lvalue reference to cv TD'
10028 creates the type 'lvalue reference to T,' while an attempt
10029 to create the type "rvalue reference to cv TD' creates the
10030 type TD."
10032 if (VOID_TYPE_P (type))
10033 /* We already gave an error. */;
10034 else if (TREE_CODE (type) == REFERENCE_TYPE)
10036 if (declarator->u.reference.rvalue_ref)
10037 /* Leave type alone. */;
10038 else
10039 type = cp_build_reference_type (TREE_TYPE (type), false);
10041 else
10042 type = cp_build_reference_type
10043 (type, declarator->u.reference.rvalue_ref);
10045 /* In C++0x, we need this check for direct reference to
10046 reference declarations, which are forbidden by
10047 [8.3.2/5 dcl.ref]. Reference to reference declarations
10048 are only allowed indirectly through typedefs and template
10049 type arguments. Example:
10051 void foo(int & &); // invalid ref-to-ref decl
10053 typedef int & int_ref;
10054 void foo(int_ref &); // valid ref-to-ref decl
10056 if (inner_declarator && inner_declarator->kind == cdk_reference)
10057 error ("cannot declare reference to %q#T, which is not "
10058 "a typedef or a template type argument", type);
10060 else if (TREE_CODE (type) == METHOD_TYPE)
10061 type = build_ptrmemfunc_type (build_pointer_type (type));
10062 else if (declarator->kind == cdk_ptrmem)
10064 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
10065 != NAMESPACE_DECL);
10066 if (declarator->u.pointer.class_type == error_mark_node)
10067 /* We will already have complained. */
10068 type = error_mark_node;
10069 else
10070 type = build_ptrmem_type (declarator->u.pointer.class_type,
10071 type);
10073 else
10074 type = build_pointer_type (type);
10076 /* Process a list of type modifier keywords (such as
10077 const or volatile) that were given inside the `*' or `&'. */
10079 if (declarator->u.pointer.qualifiers)
10081 type
10082 = cp_build_qualified_type (type,
10083 declarator->u.pointer.qualifiers);
10084 type_quals = cp_type_quals (type);
10087 /* Apply C++11 attributes to the pointer, and not to the
10088 type pointed to. This is unlike what is done for GNU
10089 attributes above. It is to comply with [dcl.ptr]/1:
10091 [the optional attribute-specifier-seq (7.6.1) appertains
10092 to the pointer and not to the object pointed to]. */
10093 if (declarator->std_attributes)
10094 decl_attributes (&type, declarator->std_attributes,
10097 ctype = NULL_TREE;
10098 break;
10100 case cdk_error:
10101 break;
10103 default:
10104 gcc_unreachable ();
10108 /* A `constexpr' specifier used in an object declaration declares
10109 the object as `const'. */
10110 if (constexpr_p && innermost_code != cdk_function)
10112 /* DR1688 says that a `constexpr' specifier in combination with
10113 `volatile' is valid. */
10115 if (TREE_CODE (type) != REFERENCE_TYPE)
10117 type_quals |= TYPE_QUAL_CONST;
10118 type = cp_build_qualified_type (type, type_quals);
10122 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
10123 && TREE_CODE (type) != FUNCTION_TYPE
10124 && TREE_CODE (type) != METHOD_TYPE
10125 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
10127 error ("template-id %qD used as a declarator",
10128 unqualified_id);
10129 unqualified_id = dname;
10132 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
10133 qualified with a class-name, turn it into a METHOD_TYPE, unless
10134 we know that the function is static. We take advantage of this
10135 opportunity to do other processing that pertains to entities
10136 explicitly declared to be class members. Note that if DECLARATOR
10137 is non-NULL, we know it is a cdk_id declarator; otherwise, we
10138 would not have exited the loop above. */
10139 if (declarator
10140 && declarator->u.id.qualifying_scope
10141 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
10143 ctype = declarator->u.id.qualifying_scope;
10144 ctype = TYPE_MAIN_VARIANT (ctype);
10145 template_count = num_template_headers_for_class (ctype);
10147 if (ctype == current_class_type)
10149 if (friendp)
10151 permerror (input_location, "member functions are implicitly friends of their class");
10152 friendp = 0;
10154 else
10155 permerror (declarator->id_loc,
10156 "extra qualification %<%T::%> on member %qs",
10157 ctype, name);
10159 else if (/* If the qualifying type is already complete, then we
10160 can skip the following checks. */
10161 !COMPLETE_TYPE_P (ctype)
10162 && (/* If the function is being defined, then
10163 qualifying type must certainly be complete. */
10164 funcdef_flag
10165 /* A friend declaration of "T::f" is OK, even if
10166 "T" is a template parameter. But, if this
10167 function is not a friend, the qualifying type
10168 must be a class. */
10169 || (!friendp && !CLASS_TYPE_P (ctype))
10170 /* For a declaration, the type need not be
10171 complete, if either it is dependent (since there
10172 is no meaningful definition of complete in that
10173 case) or the qualifying class is currently being
10174 defined. */
10175 || !(dependent_type_p (ctype)
10176 || currently_open_class (ctype)))
10177 /* Check that the qualifying type is complete. */
10178 && !complete_type_or_else (ctype, NULL_TREE))
10179 return error_mark_node;
10180 else if (TREE_CODE (type) == FUNCTION_TYPE)
10182 if (current_class_type
10183 && (!friendp || funcdef_flag))
10185 error (funcdef_flag
10186 ? G_("cannot define member function %<%T::%s%> "
10187 "within %<%T%>")
10188 : G_("cannot declare member function %<%T::%s%> "
10189 "within %<%T%>"),
10190 ctype, name, current_class_type);
10191 return error_mark_node;
10194 else if (typedef_p && current_class_type)
10196 error ("cannot declare member %<%T::%s%> within %qT",
10197 ctype, name, current_class_type);
10198 return error_mark_node;
10202 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
10203 ctype = current_class_type;
10205 /* Now TYPE has the actual type. */
10207 if (returned_attrs)
10209 if (attrlist)
10210 *attrlist = chainon (returned_attrs, *attrlist);
10211 else
10212 attrlist = &returned_attrs;
10215 if (declarator
10216 && declarator->kind == cdk_id
10217 && declarator->std_attributes)
10218 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
10219 a declarator-id appertains to the entity that is declared. */
10220 *attrlist = chainon (*attrlist, declarator->std_attributes);
10222 /* Handle parameter packs. */
10223 if (parameter_pack_p)
10225 if (decl_context == PARM)
10226 /* Turn the type into a pack expansion.*/
10227 type = make_pack_expansion (type);
10228 else
10229 error ("non-parameter %qs cannot be a parameter pack", name);
10232 /* Did array size calculations overflow or does the array cover more
10233 than half of the address-space? */
10234 if (TREE_CODE (type) == ARRAY_TYPE
10235 && COMPLETE_TYPE_P (type)
10236 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
10237 && ! valid_constant_size_p (TYPE_SIZE_UNIT (type)))
10239 error ("size of array %qs is too large", name);
10240 /* If we proceed with the array type as it is, we'll eventually
10241 crash in tree_to_[su]hwi(). */
10242 type = error_mark_node;
10245 if ((decl_context == FIELD || decl_context == PARM)
10246 && !processing_template_decl
10247 && variably_modified_type_p (type, NULL_TREE))
10249 if (decl_context == FIELD)
10250 error ("data member may not have variably modified type %qT", type);
10251 else
10252 error ("parameter may not have variably modified type %qT", type);
10253 type = error_mark_node;
10256 if (explicitp == 1 || (explicitp && friendp))
10258 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
10259 in the declaration of a constructor or conversion function within
10260 a class definition. */
10261 if (!current_class_type)
10262 error_at (declspecs->locations[ds_explicit],
10263 "%<explicit%> outside class declaration");
10264 else if (friendp)
10265 error_at (declspecs->locations[ds_explicit],
10266 "%<explicit%> in friend declaration");
10267 else
10268 error_at (declspecs->locations[ds_explicit],
10269 "only declarations of constructors and conversion operators "
10270 "can be %<explicit%>");
10271 explicitp = 0;
10274 if (storage_class == sc_mutable)
10276 if (decl_context != FIELD || friendp)
10278 error ("non-member %qs cannot be declared %<mutable%>", name);
10279 storage_class = sc_none;
10281 else if (decl_context == TYPENAME || typedef_p)
10283 error ("non-object member %qs cannot be declared %<mutable%>", name);
10284 storage_class = sc_none;
10286 else if (TREE_CODE (type) == FUNCTION_TYPE
10287 || TREE_CODE (type) == METHOD_TYPE)
10289 error ("function %qs cannot be declared %<mutable%>", name);
10290 storage_class = sc_none;
10292 else if (staticp)
10294 error ("static %qs cannot be declared %<mutable%>", name);
10295 storage_class = sc_none;
10297 else if (type_quals & TYPE_QUAL_CONST)
10299 error ("const %qs cannot be declared %<mutable%>", name);
10300 storage_class = sc_none;
10302 else if (TREE_CODE (type) == REFERENCE_TYPE)
10304 permerror (input_location, "reference %qs cannot be declared "
10305 "%<mutable%>", name);
10306 storage_class = sc_none;
10310 /* If this is declaring a typedef name, return a TYPE_DECL. */
10311 if (typedef_p && decl_context != TYPENAME)
10313 tree decl;
10315 /* Note that the grammar rejects storage classes
10316 in typenames, fields or parameters. */
10317 if (current_lang_name == lang_name_java)
10318 TYPE_FOR_JAVA (type) = 1;
10320 /* This declaration:
10322 typedef void f(int) const;
10324 declares a function type which is not a member of any
10325 particular class, but which is cv-qualified; for
10326 example "f S::*" declares a pointer to a const-qualified
10327 member function of S. We record the cv-qualification in the
10328 function type. */
10329 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
10331 type = apply_memfn_quals (type, memfn_quals, rqual);
10333 /* We have now dealt with these qualifiers. */
10334 memfn_quals = TYPE_UNQUALIFIED;
10335 rqual = REF_QUAL_NONE;
10338 if (type_uses_auto (type))
10340 error ("typedef declared %<auto%>");
10341 type = error_mark_node;
10344 if (decl_context == FIELD)
10345 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
10346 else
10347 decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
10348 if (id_declarator && declarator->u.id.qualifying_scope) {
10349 error_at (DECL_SOURCE_LOCATION (decl),
10350 "typedef name may not be a nested-name-specifier");
10351 TREE_TYPE (decl) = error_mark_node;
10354 if (decl_context != FIELD)
10356 if (!current_function_decl)
10357 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
10358 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl)
10359 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
10360 (current_function_decl)))
10361 /* The TYPE_DECL is "abstract" because there will be
10362 clones of this constructor/destructor, and there will
10363 be copies of this TYPE_DECL generated in those
10364 clones. The decloning optimization (for space) may
10365 revert this subsequently if it determines that
10366 the clones should share a common implementation. */
10367 DECL_ABSTRACT_P (decl) = true;
10369 else if (current_class_type
10370 && constructor_name_p (unqualified_id, current_class_type))
10371 permerror (input_location, "ISO C++ forbids nested type %qD with same name "
10372 "as enclosing class",
10373 unqualified_id);
10375 /* If the user declares "typedef struct {...} foo" then the
10376 struct will have an anonymous name. Fill that name in now.
10377 Nothing can refer to it, so nothing needs know about the name
10378 change. */
10379 if (type != error_mark_node
10380 && unqualified_id
10381 && TYPE_NAME (type)
10382 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10383 && TYPE_ANONYMOUS_P (type)
10384 && declspecs->type_definition_p
10385 && attributes_naming_typedef_ok (*attrlist)
10386 && cp_type_quals (type) == TYPE_UNQUALIFIED)
10388 tree t;
10390 /* Replace the anonymous name with the real name everywhere. */
10391 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
10393 if (anon_aggrname_p (TYPE_IDENTIFIER (t)))
10394 /* We do not rename the debug info representing the
10395 anonymous tagged type because the standard says in
10396 [dcl.typedef] that the naming applies only for
10397 linkage purposes. */
10398 /*debug_hooks->set_name (t, decl);*/
10399 TYPE_NAME (t) = decl;
10402 if (TYPE_LANG_SPECIFIC (type))
10403 TYPE_WAS_ANONYMOUS (type) = 1;
10405 /* If this is a typedef within a template class, the nested
10406 type is a (non-primary) template. The name for the
10407 template needs updating as well. */
10408 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
10409 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
10410 = TYPE_IDENTIFIER (type);
10412 /* Adjust linkage now that we aren't anonymous anymore. */
10413 reset_type_linkage (type);
10415 /* FIXME remangle member functions; member functions of a
10416 type with external linkage have external linkage. */
10419 if (signed_p
10420 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
10421 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
10423 bad_specifiers (decl, BSP_TYPE, virtualp,
10424 memfn_quals != TYPE_UNQUALIFIED,
10425 inlinep, friendp, raises != NULL_TREE);
10427 if (decl_spec_seq_has_spec_p (declspecs, ds_alias))
10428 /* Acknowledge that this was written:
10429 `using analias = atype;'. */
10430 TYPE_DECL_ALIAS_P (decl) = 1;
10432 return decl;
10435 /* Detect the case of an array type of unspecified size
10436 which came, as such, direct from a typedef name.
10437 We must copy the type, so that the array's domain can be
10438 individually set by the object's initializer. */
10440 if (type && typedef_type
10441 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
10442 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
10443 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
10445 /* Detect where we're using a typedef of function type to declare a
10446 function. PARMS will not be set, so we must create it now. */
10448 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
10450 tree decls = NULL_TREE;
10451 tree args;
10453 for (args = TYPE_ARG_TYPES (type);
10454 args && args != void_list_node;
10455 args = TREE_CHAIN (args))
10457 tree decl = cp_build_parm_decl (NULL_TREE, TREE_VALUE (args));
10459 DECL_CHAIN (decl) = decls;
10460 decls = decl;
10463 parms = nreverse (decls);
10465 if (decl_context != TYPENAME)
10467 /* The qualifiers on the function type become the qualifiers on
10468 the non-static member function. */
10469 memfn_quals |= type_memfn_quals (type);
10470 rqual = type_memfn_rqual (type);
10471 type_quals = TYPE_UNQUALIFIED;
10475 /* If this is a type name (such as, in a cast or sizeof),
10476 compute the type and return it now. */
10478 if (decl_context == TYPENAME)
10480 /* Note that here we don't care about type_quals. */
10482 /* Special case: "friend class foo" looks like a TYPENAME context. */
10483 if (friendp)
10485 if (inlinep)
10487 error ("%<inline%> specified for friend class declaration");
10488 inlinep = 0;
10491 if (!current_aggr)
10493 /* Don't allow friend declaration without a class-key. */
10494 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
10495 permerror (input_location, "template parameters cannot be friends");
10496 else if (TREE_CODE (type) == TYPENAME_TYPE)
10497 permerror (input_location, "friend declaration requires class-key, "
10498 "i.e. %<friend class %T::%D%>",
10499 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
10500 else
10501 permerror (input_location, "friend declaration requires class-key, "
10502 "i.e. %<friend %#T%>",
10503 type);
10506 /* Only try to do this stuff if we didn't already give up. */
10507 if (type != integer_type_node)
10509 /* A friendly class? */
10510 if (current_class_type)
10511 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
10512 /*complain=*/true);
10513 else
10514 error ("trying to make class %qT a friend of global scope",
10515 type);
10517 type = void_type_node;
10520 else if (memfn_quals || rqual)
10522 if (ctype == NULL_TREE
10523 && TREE_CODE (type) == METHOD_TYPE)
10524 ctype = TYPE_METHOD_BASETYPE (type);
10526 if (ctype)
10527 type = build_memfn_type (type, ctype, memfn_quals, rqual);
10528 /* Core issue #547: need to allow this in template type args.
10529 Allow it in general in C++11 for alias-declarations. */
10530 else if ((template_type_arg || cxx_dialect >= cxx11)
10531 && TREE_CODE (type) == FUNCTION_TYPE)
10532 type = apply_memfn_quals (type, memfn_quals, rqual);
10533 else
10534 error ("invalid qualifiers on non-member function type");
10537 return type;
10539 else if (unqualified_id == NULL_TREE && decl_context != PARM
10540 && decl_context != CATCHPARM
10541 && TREE_CODE (type) != UNION_TYPE
10542 && ! bitfield)
10544 error ("abstract declarator %qT used as declaration", type);
10545 return error_mark_node;
10548 /* Only functions may be declared using an operator-function-id. */
10549 if (unqualified_id
10550 && IDENTIFIER_OPNAME_P (unqualified_id)
10551 && TREE_CODE (type) != FUNCTION_TYPE
10552 && TREE_CODE (type) != METHOD_TYPE)
10554 error ("declaration of %qD as non-function", unqualified_id);
10555 return error_mark_node;
10558 /* We don't check parameter types here because we can emit a better
10559 error message later. */
10560 if (decl_context != PARM)
10562 type = check_var_type (unqualified_id, type);
10563 if (type == error_mark_node)
10564 return error_mark_node;
10567 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
10568 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
10570 if (decl_context == PARM || decl_context == CATCHPARM)
10572 if (ctype || in_namespace)
10573 error ("cannot use %<::%> in parameter declaration");
10575 if (type_uses_auto (type))
10577 if (cxx_dialect >= cxx14)
10578 error ("%<auto%> parameter not permitted in this context");
10579 else
10580 error ("parameter declared %<auto%>");
10581 type = error_mark_node;
10584 /* A parameter declared as an array of T is really a pointer to T.
10585 One declared as a function is really a pointer to a function.
10586 One declared as a member is really a pointer to member. */
10588 if (TREE_CODE (type) == ARRAY_TYPE)
10590 /* Transfer const-ness of array into that of type pointed to. */
10591 type = build_pointer_type (TREE_TYPE (type));
10592 type_quals = TYPE_UNQUALIFIED;
10593 array_parameter_p = true;
10595 else if (TREE_CODE (type) == FUNCTION_TYPE)
10596 type = build_pointer_type (type);
10599 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
10600 && !NEW_DELETE_OPNAME_P (unqualified_id))
10602 cp_cv_quals real_quals = memfn_quals;
10603 if (cxx_dialect < cxx14 && constexpr_p
10604 && sfk != sfk_constructor && sfk != sfk_destructor)
10605 real_quals |= TYPE_QUAL_CONST;
10606 type = build_memfn_type (type, ctype, real_quals, rqual);
10610 tree decl;
10612 if (decl_context == PARM)
10614 decl = cp_build_parm_decl (unqualified_id, type);
10615 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
10617 bad_specifiers (decl, BSP_PARM, virtualp,
10618 memfn_quals != TYPE_UNQUALIFIED,
10619 inlinep, friendp, raises != NULL_TREE);
10621 else if (decl_context == FIELD)
10623 if (!staticp && !friendp && TREE_CODE (type) != METHOD_TYPE
10624 && type_uses_auto (type))
10626 error ("non-static data member declared %<auto%>");
10627 type = error_mark_node;
10630 /* The C99 flexible array extension. */
10631 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
10632 && TYPE_DOMAIN (type) == NULL_TREE)
10634 tree itype = compute_array_index_type (dname, integer_zero_node,
10635 tf_warning_or_error);
10636 type = build_cplus_array_type (TREE_TYPE (type), itype);
10639 if (type == error_mark_node)
10641 /* Happens when declaring arrays of sizes which
10642 are error_mark_node, for example. */
10643 decl = NULL_TREE;
10645 else if (in_namespace && !friendp)
10647 /* Something like struct S { int N::j; }; */
10648 error ("invalid use of %<::%>");
10649 return error_mark_node;
10651 else if (TREE_CODE (type) == FUNCTION_TYPE
10652 || TREE_CODE (type) == METHOD_TYPE)
10654 int publicp = 0;
10655 tree function_context;
10657 if (friendp == 0)
10659 /* This should never happen in pure C++ (the check
10660 could be an assert). It could happen in
10661 Objective-C++ if someone writes invalid code that
10662 uses a function declaration for an instance
10663 variable or property (instance variables and
10664 properties are parsed as FIELD_DECLs, but they are
10665 part of an Objective-C class, not a C++ class).
10666 That code is invalid and is caught by this
10667 check. */
10668 if (!ctype)
10670 error ("declaration of function %qD in invalid context",
10671 unqualified_id);
10672 return error_mark_node;
10675 /* ``A union may [ ... ] not [ have ] virtual functions.''
10676 ARM 9.5 */
10677 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
10679 error ("function %qD declared virtual inside a union",
10680 unqualified_id);
10681 return error_mark_node;
10684 if (NEW_DELETE_OPNAME_P (unqualified_id))
10686 if (virtualp)
10688 error ("%qD cannot be declared virtual, since it "
10689 "is always static",
10690 unqualified_id);
10691 virtualp = 0;
10696 /* Check that the name used for a destructor makes sense. */
10697 if (sfk == sfk_destructor)
10699 tree uqname = id_declarator->u.id.unqualified_name;
10701 if (!ctype)
10703 gcc_assert (friendp);
10704 error ("expected qualified name in friend declaration "
10705 "for destructor %qD", uqname);
10706 return error_mark_node;
10709 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
10711 error ("declaration of %qD as member of %qT",
10712 uqname, ctype);
10713 return error_mark_node;
10715 if (constexpr_p)
10717 error ("a destructor cannot be %<constexpr%>");
10718 return error_mark_node;
10721 else if (sfk == sfk_constructor && friendp && !ctype)
10723 error ("expected qualified name in friend declaration "
10724 "for constructor %qD",
10725 id_declarator->u.id.unqualified_name);
10726 return error_mark_node;
10729 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
10731 tree tmpl = TREE_OPERAND (unqualified_id, 0);
10732 if (variable_template_p (tmpl))
10734 error ("specialization of variable template %qD "
10735 "declared as function", tmpl);
10736 inform (DECL_SOURCE_LOCATION (tmpl),
10737 "variable template declared here");
10738 return error_mark_node;
10742 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
10743 function_context = (ctype != NULL_TREE) ?
10744 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
10745 publicp = (! friendp || ! staticp)
10746 && function_context == NULL_TREE;
10748 if (late_return_type_p)
10749 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
10751 decl = grokfndecl (ctype, type,
10752 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
10753 ? unqualified_id : dname,
10754 parms,
10755 unqualified_id,
10756 virtualp, flags, memfn_quals, rqual, raises,
10757 friendp ? -1 : 0, friendp, publicp,
10758 inlinep | (2 * constexpr_p),
10759 initialized == SD_DELETED, sfk,
10760 funcdef_flag, template_count, in_namespace,
10761 attrlist, declarator->id_loc);
10762 decl = set_virt_specifiers (decl, virt_specifiers);
10763 if (decl == NULL_TREE)
10764 return error_mark_node;
10765 #if 0
10766 /* This clobbers the attrs stored in `decl' from `attrlist'. */
10767 /* The decl and setting of decl_attr is also turned off. */
10768 decl = build_decl_attribute_variant (decl, decl_attr);
10769 #endif
10771 /* [class.conv.ctor]
10773 A constructor declared without the function-specifier
10774 explicit that can be called with a single parameter
10775 specifies a conversion from the type of its first
10776 parameter to the type of its class. Such a constructor
10777 is called a converting constructor. */
10778 if (explicitp == 2)
10779 DECL_NONCONVERTING_P (decl) = 1;
10781 else if (!staticp && !dependent_type_p (type)
10782 && !COMPLETE_TYPE_P (complete_type (type))
10783 && (TREE_CODE (type) != ARRAY_TYPE
10784 || !COMPLETE_TYPE_P (TREE_TYPE (type))
10785 || initialized == 0))
10787 if (unqualified_id)
10789 error ("field %qD has incomplete type %qT",
10790 unqualified_id, type);
10791 cxx_incomplete_type_inform (strip_array_types (type));
10793 else
10794 error ("name %qT has incomplete type", type);
10796 type = error_mark_node;
10797 decl = NULL_TREE;
10799 else
10801 if (friendp)
10803 error ("%qE is neither function nor member function; "
10804 "cannot be declared friend", unqualified_id);
10805 friendp = 0;
10807 decl = NULL_TREE;
10810 if (friendp)
10812 /* Friends are treated specially. */
10813 if (ctype == current_class_type)
10814 ; /* We already issued a permerror. */
10815 else if (decl && DECL_NAME (decl))
10817 if (template_class_depth (current_class_type) == 0)
10819 decl = check_explicit_specialization
10820 (unqualified_id, decl, template_count,
10821 2 * funcdef_flag + 4);
10822 if (decl == error_mark_node)
10823 return error_mark_node;
10826 decl = do_friend (ctype, unqualified_id, decl,
10827 *attrlist, flags,
10828 funcdef_flag);
10829 return decl;
10831 else
10832 return error_mark_node;
10835 /* Structure field. It may not be a function, except for C++. */
10837 if (decl == NULL_TREE)
10839 if (staticp)
10841 /* C++ allows static class members. All other work
10842 for this is done by grokfield. */
10843 decl = build_lang_decl_loc (declarator
10844 ? declarator->id_loc
10845 : input_location,
10846 VAR_DECL, unqualified_id, type);
10847 set_linkage_for_static_data_member (decl);
10848 /* Even if there is an in-class initialization, DECL
10849 is considered undefined until an out-of-class
10850 definition is provided. */
10851 DECL_EXTERNAL (decl) = 1;
10853 if (thread_p)
10855 set_decl_tls_model (decl, decl_default_tls_model (decl));
10856 if (declspecs->gnu_thread_keyword_p)
10857 DECL_GNU_TLS_P (decl) = true;
10860 if (constexpr_p && !initialized)
10862 error ("constexpr static data member %qD must have an "
10863 "initializer", decl);
10864 constexpr_p = false;
10867 else
10869 if (constexpr_p)
10871 error ("non-static data member %qE declared %<constexpr%>",
10872 unqualified_id);
10873 constexpr_p = false;
10875 decl = build_decl (input_location,
10876 FIELD_DECL, unqualified_id, type);
10877 DECL_NONADDRESSABLE_P (decl) = bitfield;
10878 if (bitfield && !unqualified_id)
10879 TREE_NO_WARNING (decl) = 1;
10881 if (storage_class == sc_mutable)
10883 DECL_MUTABLE_P (decl) = 1;
10884 storage_class = sc_none;
10887 if (initialized)
10889 /* An attempt is being made to initialize a non-static
10890 member. This is new in C++11. */
10891 maybe_warn_cpp0x (CPP0X_NSDMI);
10893 /* If this has been parsed with static storage class, but
10894 errors forced staticp to be cleared, ensure NSDMI is
10895 not present. */
10896 if (declspecs->storage_class == sc_static)
10897 DECL_INITIAL (decl) = error_mark_node;
10901 bad_specifiers (decl, BSP_FIELD, virtualp,
10902 memfn_quals != TYPE_UNQUALIFIED,
10903 inlinep, friendp, raises != NULL_TREE);
10906 else if (TREE_CODE (type) == FUNCTION_TYPE
10907 || TREE_CODE (type) == METHOD_TYPE)
10909 tree original_name;
10910 int publicp = 0;
10912 if (!unqualified_id)
10913 return error_mark_node;
10915 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
10916 original_name = dname;
10917 else
10918 original_name = unqualified_id;
10920 if (storage_class == sc_auto)
10921 error ("storage class %<auto%> invalid for function %qs", name);
10922 else if (storage_class == sc_register)
10923 error ("storage class %<register%> invalid for function %qs", name);
10924 else if (thread_p)
10926 if (declspecs->gnu_thread_keyword_p)
10927 error ("storage class %<__thread%> invalid for function %qs",
10928 name);
10929 else
10930 error ("storage class %<thread_local%> invalid for function %qs",
10931 name);
10934 if (virt_specifiers)
10935 error ("virt-specifiers in %qs not allowed outside a class definition", name);
10936 /* Function declaration not at top level.
10937 Storage classes other than `extern' are not allowed
10938 and `extern' makes no difference. */
10939 if (! toplevel_bindings_p ()
10940 && (storage_class == sc_static
10941 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
10942 && pedantic)
10944 if (storage_class == sc_static)
10945 pedwarn (input_location, OPT_Wpedantic,
10946 "%<static%> specified invalid for function %qs "
10947 "declared out of global scope", name);
10948 else
10949 pedwarn (input_location, OPT_Wpedantic,
10950 "%<inline%> specifier invalid for function %qs "
10951 "declared out of global scope", name);
10954 if (ctype == NULL_TREE)
10956 if (virtualp)
10958 error ("virtual non-class function %qs", name);
10959 virtualp = 0;
10961 else if (sfk == sfk_constructor
10962 || sfk == sfk_destructor)
10964 error (funcdef_flag
10965 ? G_("%qs defined in a non-class scope")
10966 : G_("%qs declared in a non-class scope"), name);
10967 sfk = sfk_none;
10971 /* Record whether the function is public. */
10972 publicp = (ctype != NULL_TREE
10973 || storage_class != sc_static);
10975 if (late_return_type_p)
10976 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
10978 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
10979 virtualp, flags, memfn_quals, rqual, raises,
10980 1, friendp,
10981 publicp, inlinep | (2 * constexpr_p),
10982 initialized == SD_DELETED, sfk,
10983 funcdef_flag,
10984 template_count, in_namespace, attrlist,
10985 declarator->id_loc);
10986 if (decl == NULL_TREE)
10987 return error_mark_node;
10989 if (staticp == 1)
10991 int invalid_static = 0;
10993 /* Don't allow a static member function in a class, and forbid
10994 declaring main to be static. */
10995 if (TREE_CODE (type) == METHOD_TYPE)
10997 permerror (input_location, "cannot declare member function %qD to have "
10998 "static linkage", decl);
10999 invalid_static = 1;
11001 else if (current_function_decl)
11003 /* FIXME need arm citation */
11004 error ("cannot declare static function inside another function");
11005 invalid_static = 1;
11008 if (invalid_static)
11010 staticp = 0;
11011 storage_class = sc_none;
11015 else
11017 /* It's a variable. */
11019 /* An uninitialized decl with `extern' is a reference. */
11020 decl = grokvardecl (type, dname, unqualified_id,
11021 declspecs,
11022 initialized,
11023 (type_quals & TYPE_QUAL_CONST) != 0,
11024 template_count,
11025 ctype ? ctype : in_namespace);
11026 if (decl == NULL_TREE)
11027 return error_mark_node;
11029 bad_specifiers (decl, BSP_VAR, virtualp,
11030 memfn_quals != TYPE_UNQUALIFIED,
11031 inlinep, friendp, raises != NULL_TREE);
11033 if (ctype)
11035 DECL_CONTEXT (decl) = ctype;
11036 if (staticp == 1)
11038 permerror (input_location, "%<static%> may not be used when defining "
11039 "(as opposed to declaring) a static data member");
11040 staticp = 0;
11041 storage_class = sc_none;
11043 if (storage_class == sc_register && TREE_STATIC (decl))
11045 error ("static member %qD declared %<register%>", decl);
11046 storage_class = sc_none;
11048 if (storage_class == sc_extern && pedantic)
11050 pedwarn (input_location, OPT_Wpedantic,
11051 "cannot explicitly declare member %q#D to have "
11052 "extern linkage", decl);
11053 storage_class = sc_none;
11056 else if (constexpr_p && DECL_EXTERNAL (decl))
11058 error ("declaration of constexpr variable %qD is not a definition",
11059 decl);
11060 constexpr_p = false;
11064 if (storage_class == sc_extern && initialized && !funcdef_flag)
11066 if (toplevel_bindings_p ())
11068 /* It's common practice (and completely valid) to have a const
11069 be initialized and declared extern. */
11070 if (!(type_quals & TYPE_QUAL_CONST))
11071 warning (0, "%qs initialized and declared %<extern%>", name);
11073 else
11075 error ("%qs has both %<extern%> and initializer", name);
11076 return error_mark_node;
11080 /* Record `register' declaration for warnings on &
11081 and in case doing stupid register allocation. */
11083 if (storage_class == sc_register)
11084 DECL_REGISTER (decl) = 1;
11085 else if (storage_class == sc_extern)
11086 DECL_THIS_EXTERN (decl) = 1;
11087 else if (storage_class == sc_static)
11088 DECL_THIS_STATIC (decl) = 1;
11090 /* Set constexpr flag on vars (functions got it in grokfndecl). */
11091 if (constexpr_p && VAR_P (decl))
11092 DECL_DECLARED_CONSTEXPR_P (decl) = true;
11094 /* Record constancy and volatility on the DECL itself . There's
11095 no need to do this when processing a template; we'll do this
11096 for the instantiated declaration based on the type of DECL. */
11097 if (!processing_template_decl)
11098 cp_apply_type_quals_to_decl (type_quals, decl);
11100 return decl;
11104 /* Subroutine of start_function. Ensure that each of the parameter
11105 types (as listed in PARMS) is complete, as is required for a
11106 function definition. */
11108 static void
11109 require_complete_types_for_parms (tree parms)
11111 for (; parms; parms = DECL_CHAIN (parms))
11113 if (dependent_type_p (TREE_TYPE (parms)))
11114 continue;
11115 if (!VOID_TYPE_P (TREE_TYPE (parms))
11116 && complete_type_or_else (TREE_TYPE (parms), parms))
11118 relayout_decl (parms);
11119 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
11121 else
11122 /* grokparms or complete_type_or_else will have already issued
11123 an error. */
11124 TREE_TYPE (parms) = error_mark_node;
11128 /* Returns nonzero if T is a local variable. */
11131 local_variable_p (const_tree t)
11133 if ((VAR_P (t)
11134 /* A VAR_DECL with a context that is a _TYPE is a static data
11135 member. */
11136 && !TYPE_P (CP_DECL_CONTEXT (t))
11137 /* Any other non-local variable must be at namespace scope. */
11138 && !DECL_NAMESPACE_SCOPE_P (t))
11139 || (TREE_CODE (t) == PARM_DECL))
11140 return 1;
11142 return 0;
11145 /* Like local_variable_p, but suitable for use as a tree-walking
11146 function. */
11148 static tree
11149 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
11150 void * /*data*/)
11152 if (local_variable_p (*tp)
11153 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
11154 return *tp;
11155 else if (TYPE_P (*tp))
11156 *walk_subtrees = 0;
11158 return NULL_TREE;
11161 /* Check that ARG, which is a default-argument expression for a
11162 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
11163 something goes wrong. DECL may also be a _TYPE node, rather than a
11164 DECL, if there is no DECL available. */
11166 tree
11167 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
11169 tree var;
11170 tree decl_type;
11172 if (TREE_CODE (arg) == DEFAULT_ARG)
11173 /* We get a DEFAULT_ARG when looking at an in-class declaration
11174 with a default argument. Ignore the argument for now; we'll
11175 deal with it after the class is complete. */
11176 return arg;
11178 if (TYPE_P (decl))
11180 decl_type = decl;
11181 decl = NULL_TREE;
11183 else
11184 decl_type = TREE_TYPE (decl);
11186 if (arg == error_mark_node
11187 || decl == error_mark_node
11188 || TREE_TYPE (arg) == error_mark_node
11189 || decl_type == error_mark_node)
11190 /* Something already went wrong. There's no need to check
11191 further. */
11192 return error_mark_node;
11194 /* [dcl.fct.default]
11196 A default argument expression is implicitly converted to the
11197 parameter type. */
11198 ++cp_unevaluated_operand;
11199 perform_implicit_conversion_flags (decl_type, arg, complain,
11200 LOOKUP_IMPLICIT);
11201 --cp_unevaluated_operand;
11203 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
11204 the call sites. */
11205 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
11206 && null_ptr_cst_p (arg))
11207 return nullptr_node;
11209 /* [dcl.fct.default]
11211 Local variables shall not be used in default argument
11212 expressions.
11214 The keyword `this' shall not be used in a default argument of a
11215 member function. */
11216 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
11217 if (var)
11219 if (complain & tf_warning_or_error)
11221 if (DECL_NAME (var) == this_identifier)
11222 permerror (input_location, "default argument %qE uses %qD",
11223 arg, var);
11224 else
11225 error ("default argument %qE uses local variable %qD", arg, var);
11227 return error_mark_node;
11230 /* All is well. */
11231 return arg;
11234 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
11236 static tree
11237 type_is_deprecated (tree type)
11239 enum tree_code code;
11240 if (TREE_DEPRECATED (type))
11241 return type;
11242 if (TYPE_NAME (type)
11243 && TREE_DEPRECATED (TYPE_NAME (type)))
11244 return type;
11246 /* Do warn about using typedefs to a deprecated class. */
11247 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
11248 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
11250 code = TREE_CODE (type);
11252 if (code == POINTER_TYPE || code == REFERENCE_TYPE
11253 || code == OFFSET_TYPE || code == FUNCTION_TYPE
11254 || code == METHOD_TYPE || code == ARRAY_TYPE)
11255 return type_is_deprecated (TREE_TYPE (type));
11257 if (TYPE_PTRMEMFUNC_P (type))
11258 return type_is_deprecated
11259 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
11261 return NULL_TREE;
11264 /* Decode the list of parameter types for a function type.
11265 Given the list of things declared inside the parens,
11266 return a list of types.
11268 If this parameter does not end with an ellipsis, we append
11269 void_list_node.
11271 *PARMS is set to the chain of PARM_DECLs created. */
11273 static tree
11274 grokparms (tree parmlist, tree *parms)
11276 tree result = NULL_TREE;
11277 tree decls = NULL_TREE;
11278 tree parm;
11279 int any_error = 0;
11281 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
11283 tree type = NULL_TREE;
11284 tree init = TREE_PURPOSE (parm);
11285 tree decl = TREE_VALUE (parm);
11286 const char *errmsg;
11288 if (parm == void_list_node)
11289 break;
11291 if (! decl || TREE_TYPE (decl) == error_mark_node)
11292 continue;
11294 type = TREE_TYPE (decl);
11295 if (VOID_TYPE_P (type))
11297 if (same_type_p (type, void_type_node)
11298 && !init
11299 && !DECL_NAME (decl) && !result
11300 && TREE_CHAIN (parm) == void_list_node)
11301 /* DR 577: A parameter list consisting of a single
11302 unnamed parameter of non-dependent type 'void'. */
11303 break;
11304 else if (cv_qualified_p (type))
11305 error_at (DECL_SOURCE_LOCATION (decl),
11306 "invalid use of cv-qualified type %qT in "
11307 "parameter declaration", type);
11308 else
11309 error_at (DECL_SOURCE_LOCATION (decl),
11310 "invalid use of type %<void%> in parameter "
11311 "declaration");
11312 /* It's not a good idea to actually create parameters of
11313 type `void'; other parts of the compiler assume that a
11314 void type terminates the parameter list. */
11315 type = error_mark_node;
11316 TREE_TYPE (decl) = error_mark_node;
11319 if (type != error_mark_node
11320 && TYPE_FOR_JAVA (type)
11321 && MAYBE_CLASS_TYPE_P (type))
11323 error ("parameter %qD has Java class type", decl);
11324 type = error_mark_node;
11325 TREE_TYPE (decl) = error_mark_node;
11326 init = NULL_TREE;
11329 if (type != error_mark_node
11330 && (errmsg = targetm.invalid_parameter_type (type)))
11332 error (errmsg);
11333 type = error_mark_node;
11334 TREE_TYPE (decl) = error_mark_node;
11337 if (type != error_mark_node)
11339 if (deprecated_state != DEPRECATED_SUPPRESS)
11341 tree deptype = type_is_deprecated (type);
11342 if (deptype)
11343 warn_deprecated_use (deptype, NULL_TREE);
11346 /* Top-level qualifiers on the parameters are
11347 ignored for function types. */
11348 type = cp_build_qualified_type (type, 0);
11349 if (TREE_CODE (type) == METHOD_TYPE)
11351 error ("parameter %qD invalidly declared method type", decl);
11352 type = build_pointer_type (type);
11353 TREE_TYPE (decl) = type;
11355 else if (abstract_virtuals_error (decl, type))
11356 any_error = 1; /* Seems like a good idea. */
11357 else if (POINTER_TYPE_P (type))
11359 /* [dcl.fct]/6, parameter types cannot contain pointers
11360 (references) to arrays of unknown bound. */
11361 tree t = TREE_TYPE (type);
11362 int ptr = TYPE_PTR_P (type);
11364 while (1)
11366 if (TYPE_PTR_P (t))
11367 ptr = 1;
11368 else if (TREE_CODE (t) != ARRAY_TYPE)
11369 break;
11370 else if (!TYPE_DOMAIN (t))
11371 break;
11372 t = TREE_TYPE (t);
11374 if (TREE_CODE (t) == ARRAY_TYPE)
11375 error (ptr
11376 ? G_("parameter %qD includes pointer to array of "
11377 "unknown bound %qT")
11378 : G_("parameter %qD includes reference to array of "
11379 "unknown bound %qT"),
11380 decl, t);
11383 if (any_error)
11384 init = NULL_TREE;
11385 else if (init && !processing_template_decl)
11386 init = check_default_argument (decl, init, tf_warning_or_error);
11389 DECL_CHAIN (decl) = decls;
11390 decls = decl;
11391 result = tree_cons (init, type, result);
11393 decls = nreverse (decls);
11394 result = nreverse (result);
11395 if (parm)
11396 result = chainon (result, void_list_node);
11397 *parms = decls;
11399 return result;
11403 /* D is a constructor or overloaded `operator='.
11405 Let T be the class in which D is declared. Then, this function
11406 returns:
11408 -1 if D's is an ill-formed constructor or copy assignment operator
11409 whose first parameter is of type `T'.
11410 0 if D is not a copy constructor or copy assignment
11411 operator.
11412 1 if D is a copy constructor or copy assignment operator whose
11413 first parameter is a reference to non-const qualified T.
11414 2 if D is a copy constructor or copy assignment operator whose
11415 first parameter is a reference to const qualified T.
11417 This function can be used as a predicate. Positive values indicate
11418 a copy constructor and nonzero values indicate a copy assignment
11419 operator. */
11422 copy_fn_p (const_tree d)
11424 tree args;
11425 tree arg_type;
11426 int result = 1;
11428 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11430 if (TREE_CODE (d) == TEMPLATE_DECL
11431 || (DECL_TEMPLATE_INFO (d)
11432 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11433 /* Instantiations of template member functions are never copy
11434 functions. Note that member functions of templated classes are
11435 represented as template functions internally, and we must
11436 accept those as copy functions. */
11437 return 0;
11439 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11440 if (!args)
11441 return 0;
11443 arg_type = TREE_VALUE (args);
11444 if (arg_type == error_mark_node)
11445 return 0;
11447 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
11449 /* Pass by value copy assignment operator. */
11450 result = -1;
11452 else if (TREE_CODE (arg_type) == REFERENCE_TYPE
11453 && !TYPE_REF_IS_RVALUE (arg_type)
11454 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
11456 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
11457 result = 2;
11459 else
11460 return 0;
11462 args = TREE_CHAIN (args);
11464 if (args && args != void_list_node && !TREE_PURPOSE (args))
11465 /* There are more non-optional args. */
11466 return 0;
11468 return result;
11471 /* D is a constructor or overloaded `operator='.
11473 Let T be the class in which D is declared. Then, this function
11474 returns true when D is a move constructor or move assignment
11475 operator, false otherwise. */
11477 bool
11478 move_fn_p (const_tree d)
11480 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11482 if (cxx_dialect == cxx98)
11483 /* There are no move constructors if we are in C++98 mode. */
11484 return false;
11486 if (TREE_CODE (d) == TEMPLATE_DECL
11487 || (DECL_TEMPLATE_INFO (d)
11488 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11489 /* Instantiations of template member functions are never move
11490 functions. Note that member functions of templated classes are
11491 represented as template functions internally, and we must
11492 accept those as move functions. */
11493 return 0;
11495 return move_signature_fn_p (d);
11498 /* D is a constructor or overloaded `operator='.
11500 Then, this function returns true when D has the same signature as a move
11501 constructor or move assignment operator (because either it is such a
11502 ctor/op= or it is a template specialization with the same signature),
11503 false otherwise. */
11505 bool
11506 move_signature_fn_p (const_tree d)
11508 tree args;
11509 tree arg_type;
11510 bool result = false;
11512 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11513 if (!args)
11514 return 0;
11516 arg_type = TREE_VALUE (args);
11517 if (arg_type == error_mark_node)
11518 return 0;
11520 if (TREE_CODE (arg_type) == REFERENCE_TYPE
11521 && TYPE_REF_IS_RVALUE (arg_type)
11522 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
11523 DECL_CONTEXT (d)))
11524 result = true;
11526 args = TREE_CHAIN (args);
11528 if (args && args != void_list_node && !TREE_PURPOSE (args))
11529 /* There are more non-optional args. */
11530 return false;
11532 return result;
11535 /* Remember any special properties of member function DECL. */
11537 void
11538 grok_special_member_properties (tree decl)
11540 tree class_type;
11542 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
11543 return;
11545 class_type = DECL_CONTEXT (decl);
11546 if (DECL_CONSTRUCTOR_P (decl))
11548 int ctor = copy_fn_p (decl);
11550 if (!DECL_ARTIFICIAL (decl))
11551 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
11553 if (ctor > 0)
11555 /* [class.copy]
11557 A non-template constructor for class X is a copy
11558 constructor if its first parameter is of type X&, const
11559 X&, volatile X& or const volatile X&, and either there
11560 are no other parameters or else all other parameters have
11561 default arguments. */
11562 TYPE_HAS_COPY_CTOR (class_type) = 1;
11563 if (user_provided_p (decl))
11564 TYPE_HAS_COMPLEX_COPY_CTOR (class_type) = 1;
11565 if (ctor > 1)
11566 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
11568 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
11569 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
11570 else if (move_fn_p (decl) && user_provided_p (decl))
11571 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type) = 1;
11572 else if (is_list_ctor (decl))
11573 TYPE_HAS_LIST_CTOR (class_type) = 1;
11575 if (DECL_DECLARED_CONSTEXPR_P (decl)
11576 && !copy_fn_p (decl) && !move_fn_p (decl))
11577 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
11579 else if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
11581 /* [class.copy]
11583 A non-template assignment operator for class X is a copy
11584 assignment operator if its parameter is of type X, X&, const
11585 X&, volatile X& or const volatile X&. */
11587 int assop = copy_fn_p (decl);
11589 if (assop)
11591 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
11592 if (user_provided_p (decl))
11593 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type) = 1;
11594 if (assop != 1)
11595 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
11597 else if (move_fn_p (decl) && user_provided_p (decl))
11598 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type) = 1;
11600 /* Destructors are handled in check_methods. */
11603 /* Check a constructor DECL has the correct form. Complains
11604 if the class has a constructor of the form X(X). */
11607 grok_ctor_properties (const_tree ctype, const_tree decl)
11609 int ctor_parm = copy_fn_p (decl);
11611 if (ctor_parm < 0)
11613 /* [class.copy]
11615 A declaration of a constructor for a class X is ill-formed if
11616 its first parameter is of type (optionally cv-qualified) X
11617 and either there are no other parameters or else all other
11618 parameters have default arguments.
11620 We *don't* complain about member template instantiations that
11621 have this form, though; they can occur as we try to decide
11622 what constructor to use during overload resolution. Since
11623 overload resolution will never prefer such a constructor to
11624 the non-template copy constructor (which is either explicitly
11625 or implicitly defined), there's no need to worry about their
11626 existence. Theoretically, they should never even be
11627 instantiated, but that's hard to forestall. */
11628 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
11629 ctype, ctype);
11630 return 0;
11633 return 1;
11636 /* An operator with this code is unary, but can also be binary. */
11638 static int
11639 ambi_op_p (enum tree_code code)
11641 return (code == INDIRECT_REF
11642 || code == ADDR_EXPR
11643 || code == UNARY_PLUS_EXPR
11644 || code == NEGATE_EXPR
11645 || code == PREINCREMENT_EXPR
11646 || code == PREDECREMENT_EXPR);
11649 /* An operator with this name can only be unary. */
11651 static int
11652 unary_op_p (enum tree_code code)
11654 return (code == TRUTH_NOT_EXPR
11655 || code == BIT_NOT_EXPR
11656 || code == COMPONENT_REF
11657 || code == TYPE_EXPR);
11660 /* DECL is a declaration for an overloaded operator. If COMPLAIN is true,
11661 errors are issued for invalid declarations. */
11663 bool
11664 grok_op_properties (tree decl, bool complain)
11666 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
11667 tree argtype;
11668 int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
11669 tree name = DECL_NAME (decl);
11670 enum tree_code operator_code;
11671 int arity;
11672 bool ellipsis_p;
11673 tree class_type;
11675 /* Count the number of arguments and check for ellipsis. */
11676 for (argtype = argtypes, arity = 0;
11677 argtype && argtype != void_list_node;
11678 argtype = TREE_CHAIN (argtype))
11679 ++arity;
11680 ellipsis_p = !argtype;
11682 class_type = DECL_CONTEXT (decl);
11683 if (class_type && !CLASS_TYPE_P (class_type))
11684 class_type = NULL_TREE;
11686 if (DECL_CONV_FN_P (decl))
11687 operator_code = TYPE_EXPR;
11688 else
11691 #define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P) \
11692 if (ansi_opname (CODE) == name) \
11694 operator_code = (CODE); \
11695 break; \
11697 else if (ansi_assopname (CODE) == name) \
11699 operator_code = (CODE); \
11700 DECL_ASSIGNMENT_OPERATOR_P (decl) = 1; \
11701 break; \
11704 #include "operators.def"
11705 #undef DEF_OPERATOR
11707 gcc_unreachable ();
11709 while (0);
11710 gcc_assert (operator_code != MAX_TREE_CODES);
11711 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
11713 if (class_type)
11714 switch (operator_code)
11716 case NEW_EXPR:
11717 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
11718 break;
11720 case DELETE_EXPR:
11721 TYPE_GETS_DELETE (class_type) |= 1;
11722 break;
11724 case VEC_NEW_EXPR:
11725 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
11726 break;
11728 case VEC_DELETE_EXPR:
11729 TYPE_GETS_DELETE (class_type) |= 2;
11730 break;
11732 default:
11733 break;
11736 /* [basic.std.dynamic.allocation]/1:
11738 A program is ill-formed if an allocation function is declared
11739 in a namespace scope other than global scope or declared static
11740 in global scope.
11742 The same also holds true for deallocation functions. */
11743 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR
11744 || operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
11746 if (DECL_NAMESPACE_SCOPE_P (decl))
11748 if (CP_DECL_CONTEXT (decl) != global_namespace)
11750 error ("%qD may not be declared within a namespace", decl);
11751 return false;
11753 else if (!TREE_PUBLIC (decl))
11755 error ("%qD may not be declared as static", decl);
11756 return false;
11761 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR)
11763 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
11764 DECL_IS_OPERATOR_NEW (decl) = 1;
11766 else if (operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
11767 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
11768 else
11770 /* An operator function must either be a non-static member function
11771 or have at least one parameter of a class, a reference to a class,
11772 an enumeration, or a reference to an enumeration. 13.4.0.6 */
11773 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
11775 if (operator_code == TYPE_EXPR
11776 || operator_code == CALL_EXPR
11777 || operator_code == COMPONENT_REF
11778 || operator_code == ARRAY_REF
11779 || operator_code == NOP_EXPR)
11781 error ("%qD must be a nonstatic member function", decl);
11782 return false;
11784 else
11786 tree p;
11788 if (DECL_STATIC_FUNCTION_P (decl))
11790 error ("%qD must be either a non-static member "
11791 "function or a non-member function", decl);
11792 return false;
11795 for (p = argtypes; p && p != void_list_node; p = TREE_CHAIN (p))
11797 tree arg = non_reference (TREE_VALUE (p));
11798 if (arg == error_mark_node)
11799 return false;
11801 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
11802 because these checks are performed even on
11803 template functions. */
11804 if (MAYBE_CLASS_TYPE_P (arg)
11805 || TREE_CODE (arg) == ENUMERAL_TYPE)
11806 break;
11809 if (!p || p == void_list_node)
11811 if (complain)
11812 error ("%qD must have an argument of class or "
11813 "enumerated type", decl);
11814 return false;
11819 /* There are no restrictions on the arguments to an overloaded
11820 "operator ()". */
11821 if (operator_code == CALL_EXPR)
11822 return true;
11824 /* Warn about conversion operators that will never be used. */
11825 if (IDENTIFIER_TYPENAME_P (name)
11826 && ! DECL_TEMPLATE_INFO (decl)
11827 && warn_conversion
11828 /* Warn only declaring the function; there is no need to
11829 warn again about out-of-class definitions. */
11830 && class_type == current_class_type)
11832 tree t = TREE_TYPE (name);
11833 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
11835 if (ref)
11836 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
11838 if (VOID_TYPE_P (t))
11839 warning (OPT_Wconversion,
11841 ? G_("conversion to a reference to void "
11842 "will never use a type conversion operator")
11843 : G_("conversion to void "
11844 "will never use a type conversion operator"));
11845 else if (class_type)
11847 if (t == class_type)
11848 warning (OPT_Wconversion,
11850 ? G_("conversion to a reference to the same type "
11851 "will never use a type conversion operator")
11852 : G_("conversion to the same type "
11853 "will never use a type conversion operator"));
11854 /* Don't force t to be complete here. */
11855 else if (MAYBE_CLASS_TYPE_P (t)
11856 && COMPLETE_TYPE_P (t)
11857 && DERIVED_FROM_P (t, class_type))
11858 warning (OPT_Wconversion,
11860 ? G_("conversion to a reference to a base class "
11861 "will never use a type conversion operator")
11862 : G_("conversion to a base class "
11863 "will never use a type conversion operator"));
11868 if (operator_code == COND_EXPR)
11870 /* 13.4.0.3 */
11871 error ("ISO C++ prohibits overloading operator ?:");
11872 return false;
11874 else if (ellipsis_p)
11876 error ("%qD must not have variable number of arguments", decl);
11877 return false;
11879 else if (ambi_op_p (operator_code))
11881 if (arity == 1)
11882 /* We pick the one-argument operator codes by default, so
11883 we don't have to change anything. */
11885 else if (arity == 2)
11887 /* If we thought this was a unary operator, we now know
11888 it to be a binary operator. */
11889 switch (operator_code)
11891 case INDIRECT_REF:
11892 operator_code = MULT_EXPR;
11893 break;
11895 case ADDR_EXPR:
11896 operator_code = BIT_AND_EXPR;
11897 break;
11899 case UNARY_PLUS_EXPR:
11900 operator_code = PLUS_EXPR;
11901 break;
11903 case NEGATE_EXPR:
11904 operator_code = MINUS_EXPR;
11905 break;
11907 case PREINCREMENT_EXPR:
11908 operator_code = POSTINCREMENT_EXPR;
11909 break;
11911 case PREDECREMENT_EXPR:
11912 operator_code = POSTDECREMENT_EXPR;
11913 break;
11915 default:
11916 gcc_unreachable ();
11919 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
11921 if ((operator_code == POSTINCREMENT_EXPR
11922 || operator_code == POSTDECREMENT_EXPR)
11923 && ! processing_template_decl
11924 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)), integer_type_node))
11926 if (methodp)
11927 error ("postfix %qD must take %<int%> as its argument",
11928 decl);
11929 else
11930 error ("postfix %qD must take %<int%> as its second "
11931 "argument", decl);
11932 return false;
11935 else
11937 if (methodp)
11938 error ("%qD must take either zero or one argument", decl);
11939 else
11940 error ("%qD must take either one or two arguments", decl);
11941 return false;
11944 /* More Effective C++ rule 6. */
11945 if (warn_ecpp
11946 && (operator_code == POSTINCREMENT_EXPR
11947 || operator_code == POSTDECREMENT_EXPR
11948 || operator_code == PREINCREMENT_EXPR
11949 || operator_code == PREDECREMENT_EXPR))
11951 tree arg = TREE_VALUE (argtypes);
11952 tree ret = TREE_TYPE (TREE_TYPE (decl));
11953 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
11954 arg = TREE_TYPE (arg);
11955 arg = TYPE_MAIN_VARIANT (arg);
11956 if (operator_code == PREINCREMENT_EXPR
11957 || operator_code == PREDECREMENT_EXPR)
11959 if (TREE_CODE (ret) != REFERENCE_TYPE
11960 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)),
11961 arg))
11962 warning (OPT_Weffc__, "prefix %qD should return %qT", decl,
11963 build_reference_type (arg));
11965 else
11967 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
11968 warning (OPT_Weffc__, "postfix %qD should return %qT", decl, arg);
11972 else if (unary_op_p (operator_code))
11974 if (arity != 1)
11976 if (methodp)
11977 error ("%qD must take %<void%>", decl);
11978 else
11979 error ("%qD must take exactly one argument", decl);
11980 return false;
11983 else /* if (binary_op_p (operator_code)) */
11985 if (arity != 2)
11987 if (methodp)
11988 error ("%qD must take exactly one argument", decl);
11989 else
11990 error ("%qD must take exactly two arguments", decl);
11991 return false;
11994 /* More Effective C++ rule 7. */
11995 if (warn_ecpp
11996 && (operator_code == TRUTH_ANDIF_EXPR
11997 || operator_code == TRUTH_ORIF_EXPR
11998 || operator_code == COMPOUND_EXPR))
11999 warning (OPT_Weffc__, "user-defined %qD always evaluates both arguments",
12000 decl);
12003 /* Effective C++ rule 23. */
12004 if (warn_ecpp
12005 && arity == 2
12006 && !DECL_ASSIGNMENT_OPERATOR_P (decl)
12007 && (operator_code == PLUS_EXPR
12008 || operator_code == MINUS_EXPR
12009 || operator_code == TRUNC_DIV_EXPR
12010 || operator_code == MULT_EXPR
12011 || operator_code == TRUNC_MOD_EXPR)
12012 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
12013 warning (OPT_Weffc__, "%qD should return by value", decl);
12015 /* [over.oper]/8 */
12016 for (; argtypes && argtypes != void_list_node;
12017 argtypes = TREE_CHAIN (argtypes))
12018 if (TREE_PURPOSE (argtypes))
12020 TREE_PURPOSE (argtypes) = NULL_TREE;
12021 if (operator_code == POSTINCREMENT_EXPR
12022 || operator_code == POSTDECREMENT_EXPR)
12024 pedwarn (input_location, OPT_Wpedantic, "%qD cannot have default arguments",
12025 decl);
12027 else
12029 error ("%qD cannot have default arguments", decl);
12030 return false;
12034 return true;
12037 /* Return a string giving the keyword associate with CODE. */
12039 static const char *
12040 tag_name (enum tag_types code)
12042 switch (code)
12044 case record_type:
12045 return "struct";
12046 case class_type:
12047 return "class";
12048 case union_type:
12049 return "union";
12050 case enum_type:
12051 return "enum";
12052 case typename_type:
12053 return "typename";
12054 default:
12055 gcc_unreachable ();
12059 /* Name lookup in an elaborated-type-specifier (after the keyword
12060 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
12061 elaborated-type-specifier is invalid, issue a diagnostic and return
12062 error_mark_node; otherwise, return the *_TYPE to which it referred.
12063 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
12065 tree
12066 check_elaborated_type_specifier (enum tag_types tag_code,
12067 tree decl,
12068 bool allow_template_p)
12070 tree type;
12072 /* In the case of:
12074 struct S { struct S *p; };
12076 name lookup will find the TYPE_DECL for the implicit "S::S"
12077 typedef. Adjust for that here. */
12078 if (DECL_SELF_REFERENCE_P (decl))
12079 decl = TYPE_NAME (TREE_TYPE (decl));
12081 type = TREE_TYPE (decl);
12083 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
12084 is false for this case as well. */
12085 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
12087 error ("using template type parameter %qT after %qs",
12088 type, tag_name (tag_code));
12089 return error_mark_node;
12091 /* Accept template template parameters. */
12092 else if (allow_template_p
12093 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
12094 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
12096 /* [dcl.type.elab]
12098 If the identifier resolves to a typedef-name or the
12099 simple-template-id resolves to an alias template
12100 specialization, the elaborated-type-specifier is ill-formed.
12102 In other words, the only legitimate declaration to use in the
12103 elaborated type specifier is the implicit typedef created when
12104 the type is declared. */
12105 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
12106 && !DECL_SELF_REFERENCE_P (decl)
12107 && tag_code != typename_type)
12109 if (alias_template_specialization_p (type))
12110 error ("using alias template specialization %qT after %qs",
12111 type, tag_name (tag_code));
12112 else
12113 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
12114 inform (DECL_SOURCE_LOCATION (decl),
12115 "%qD has a previous declaration here", decl);
12116 return error_mark_node;
12118 else if (TREE_CODE (type) != RECORD_TYPE
12119 && TREE_CODE (type) != UNION_TYPE
12120 && tag_code != enum_type
12121 && tag_code != typename_type)
12123 error ("%qT referred to as %qs", type, tag_name (tag_code));
12124 inform (input_location, "%q+T has a previous declaration here", type);
12125 return error_mark_node;
12127 else if (TREE_CODE (type) != ENUMERAL_TYPE
12128 && tag_code == enum_type)
12130 error ("%qT referred to as enum", type);
12131 inform (input_location, "%q+T has a previous declaration here", type);
12132 return error_mark_node;
12134 else if (!allow_template_p
12135 && TREE_CODE (type) == RECORD_TYPE
12136 && CLASSTYPE_IS_TEMPLATE (type))
12138 /* If a class template appears as elaborated type specifier
12139 without a template header such as:
12141 template <class T> class C {};
12142 void f(class C); // No template header here
12144 then the required template argument is missing. */
12145 error ("template argument required for %<%s %T%>",
12146 tag_name (tag_code),
12147 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
12148 return error_mark_node;
12151 return type;
12154 /* Lookup NAME in elaborate type specifier in scope according to
12155 SCOPE and issue diagnostics if necessary.
12156 Return *_TYPE node upon success, NULL_TREE when the NAME is not
12157 found, and ERROR_MARK_NODE for type error. */
12159 static tree
12160 lookup_and_check_tag (enum tag_types tag_code, tree name,
12161 tag_scope scope, bool template_header_p)
12163 tree t;
12164 tree decl;
12165 if (scope == ts_global)
12167 /* First try ordinary name lookup, ignoring hidden class name
12168 injected via friend declaration. */
12169 decl = lookup_name_prefer_type (name, 2);
12170 decl = strip_using_decl (decl);
12171 /* If that fails, the name will be placed in the smallest
12172 non-class, non-function-prototype scope according to 3.3.1/5.
12173 We may already have a hidden name declared as friend in this
12174 scope. So lookup again but not ignoring hidden names.
12175 If we find one, that name will be made visible rather than
12176 creating a new tag. */
12177 if (!decl)
12178 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
12180 else
12181 decl = lookup_type_scope (name, scope);
12183 if (decl
12184 && (DECL_CLASS_TEMPLATE_P (decl)
12185 /* If scope is ts_current we're defining a class, so ignore a
12186 template template parameter. */
12187 || (scope != ts_current
12188 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
12189 decl = DECL_TEMPLATE_RESULT (decl);
12191 if (decl && TREE_CODE (decl) == TYPE_DECL)
12193 /* Look for invalid nested type:
12194 class C {
12195 class C {};
12196 }; */
12197 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
12199 error ("%qD has the same name as the class in which it is "
12200 "declared",
12201 decl);
12202 return error_mark_node;
12205 /* Two cases we need to consider when deciding if a class
12206 template is allowed as an elaborated type specifier:
12207 1. It is a self reference to its own class.
12208 2. It comes with a template header.
12210 For example:
12212 template <class T> class C {
12213 class C *c1; // DECL_SELF_REFERENCE_P is true
12214 class D;
12216 template <class U> class C; // template_header_p is true
12217 template <class T> class C<T>::D {
12218 class C *c2; // DECL_SELF_REFERENCE_P is true
12219 }; */
12221 t = check_elaborated_type_specifier (tag_code,
12222 decl,
12223 template_header_p
12224 | DECL_SELF_REFERENCE_P (decl));
12225 return t;
12227 else if (decl && TREE_CODE (decl) == TREE_LIST)
12229 error ("reference to %qD is ambiguous", name);
12230 print_candidates (decl);
12231 return error_mark_node;
12233 else
12234 return NULL_TREE;
12237 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
12238 Define the tag as a forward-reference if it is not defined.
12240 If a declaration is given, process it here, and report an error if
12241 multiple declarations are not identical.
12243 SCOPE is TS_CURRENT when this is also a definition. Only look in
12244 the current frame for the name (since C++ allows new names in any
12245 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
12246 declaration. Only look beginning from the current scope outward up
12247 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
12249 TEMPLATE_HEADER_P is true when this declaration is preceded by
12250 a set of template parameters. */
12252 static tree
12253 xref_tag_1 (enum tag_types tag_code, tree name,
12254 tag_scope orig_scope, bool template_header_p)
12256 enum tree_code code;
12257 tree t;
12258 tree context = NULL_TREE;
12259 tag_scope scope;
12261 gcc_assert (identifier_p (name));
12263 switch (tag_code)
12265 case record_type:
12266 case class_type:
12267 code = RECORD_TYPE;
12268 break;
12269 case union_type:
12270 code = UNION_TYPE;
12271 break;
12272 case enum_type:
12273 code = ENUMERAL_TYPE;
12274 break;
12275 default:
12276 gcc_unreachable ();
12279 if (orig_scope == ts_lambda)
12280 scope = ts_current;
12281 else
12282 scope = orig_scope;
12284 /* In case of anonymous name, xref_tag is only called to
12285 make type node and push name. Name lookup is not required. */
12286 if (anon_aggrname_p (name))
12287 t = NULL_TREE;
12288 else
12289 t = lookup_and_check_tag (tag_code, name,
12290 scope, template_header_p);
12292 if (t == error_mark_node)
12293 return error_mark_node;
12295 if (scope != ts_current && t && current_class_type
12296 && template_class_depth (current_class_type)
12297 && template_header_p)
12299 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
12300 return t;
12302 /* Since SCOPE is not TS_CURRENT, we are not looking at a
12303 definition of this tag. Since, in addition, we are currently
12304 processing a (member) template declaration of a template
12305 class, we must be very careful; consider:
12307 template <class X>
12308 struct S1
12310 template <class U>
12311 struct S2
12312 { template <class V>
12313 friend struct S1; };
12315 Here, the S2::S1 declaration should not be confused with the
12316 outer declaration. In particular, the inner version should
12317 have a template parameter of level 2, not level 1. This
12318 would be particularly important if the member declaration
12319 were instead:
12321 template <class V = U> friend struct S1;
12323 say, when we should tsubst into `U' when instantiating
12324 S2. On the other hand, when presented with:
12326 template <class T>
12327 struct S1 {
12328 template <class U>
12329 struct S2 {};
12330 template <class U>
12331 friend struct S2;
12334 we must find the inner binding eventually. We
12335 accomplish this by making sure that the new type we
12336 create to represent this declaration has the right
12337 TYPE_CONTEXT. */
12338 context = TYPE_CONTEXT (t);
12339 t = NULL_TREE;
12342 if (! t)
12344 /* If no such tag is yet defined, create a forward-reference node
12345 and record it as the "definition".
12346 When a real declaration of this type is found,
12347 the forward-reference will be altered into a real type. */
12348 if (code == ENUMERAL_TYPE)
12350 error ("use of enum %q#D without previous declaration", name);
12351 return error_mark_node;
12353 else
12355 t = make_class_type (code);
12356 TYPE_CONTEXT (t) = context;
12357 if (orig_scope == ts_lambda)
12358 /* Remember that we're declaring a lambda to avoid bogus errors
12359 in push_template_decl. */
12360 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
12361 t = pushtag (name, t, scope);
12364 else
12366 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
12368 if (!redeclare_class_template (t, current_template_parms))
12369 return error_mark_node;
12371 else if (!processing_template_decl
12372 && CLASS_TYPE_P (t)
12373 && CLASSTYPE_IS_TEMPLATE (t))
12375 error ("redeclaration of %qT as a non-template", t);
12376 error ("previous declaration %q+D", t);
12377 return error_mark_node;
12380 /* Make injected friend class visible. */
12381 if (scope != ts_within_enclosing_non_class
12382 && hidden_name_p (TYPE_NAME (t)))
12384 DECL_ANTICIPATED (TYPE_NAME (t)) = 0;
12385 DECL_FRIEND_P (TYPE_NAME (t)) = 0;
12387 if (TYPE_TEMPLATE_INFO (t))
12389 DECL_ANTICIPATED (TYPE_TI_TEMPLATE (t)) = 0;
12390 DECL_FRIEND_P (TYPE_TI_TEMPLATE (t)) = 0;
12395 return t;
12398 /* Wrapper for xref_tag_1. */
12400 tree
12401 xref_tag (enum tag_types tag_code, tree name,
12402 tag_scope scope, bool template_header_p)
12404 tree ret;
12405 bool subtime;
12406 subtime = timevar_cond_start (TV_NAME_LOOKUP);
12407 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
12408 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
12409 return ret;
12413 tree
12414 xref_tag_from_type (tree old, tree id, tag_scope scope)
12416 enum tag_types tag_kind;
12418 if (TREE_CODE (old) == RECORD_TYPE)
12419 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
12420 else
12421 tag_kind = union_type;
12423 if (id == NULL_TREE)
12424 id = TYPE_IDENTIFIER (old);
12426 return xref_tag (tag_kind, id, scope, false);
12429 /* Create the binfo hierarchy for REF with (possibly NULL) base list
12430 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
12431 access_* node, and the TREE_VALUE is the type of the base-class.
12432 Non-NULL TREE_TYPE indicates virtual inheritance.
12434 Returns true if the binfo hierarchy was successfully created,
12435 false if an error was detected. */
12437 bool
12438 xref_basetypes (tree ref, tree base_list)
12440 tree *basep;
12441 tree binfo, base_binfo;
12442 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
12443 unsigned max_bases = 0; /* Maximum direct bases. */
12444 int i;
12445 tree default_access;
12446 tree igo_prev; /* Track Inheritance Graph Order. */
12448 if (ref == error_mark_node)
12449 return false;
12451 /* The base of a derived class is private by default, all others are
12452 public. */
12453 default_access = (TREE_CODE (ref) == RECORD_TYPE
12454 && CLASSTYPE_DECLARED_CLASS (ref)
12455 ? access_private_node : access_public_node);
12457 /* First, make sure that any templates in base-classes are
12458 instantiated. This ensures that if we call ourselves recursively
12459 we do not get confused about which classes are marked and which
12460 are not. */
12461 basep = &base_list;
12462 while (*basep)
12464 tree basetype = TREE_VALUE (*basep);
12466 /* The dependent_type_p call below should really be dependent_scope_p
12467 so that we give a hard error about using an incomplete type as a
12468 base, but we allow it with a pedwarn for backward
12469 compatibility. */
12470 if (processing_template_decl
12471 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
12472 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
12473 if (!dependent_type_p (basetype)
12474 && !complete_type_or_else (basetype, NULL))
12475 /* An incomplete type. Remove it from the list. */
12476 *basep = TREE_CHAIN (*basep);
12477 else
12479 max_bases++;
12480 if (TREE_TYPE (*basep))
12481 max_vbases++;
12482 if (CLASS_TYPE_P (basetype))
12483 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
12484 basep = &TREE_CHAIN (*basep);
12488 TYPE_MARKED_P (ref) = 1;
12490 /* The binfo slot should be empty, unless this is an (ill-formed)
12491 redefinition. */
12492 if (TYPE_BINFO (ref) && !TYPE_SIZE (ref))
12494 error ("redefinition of %q#T", ref);
12495 return false;
12498 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
12500 binfo = make_tree_binfo (max_bases);
12502 TYPE_BINFO (ref) = binfo;
12503 BINFO_OFFSET (binfo) = size_zero_node;
12504 BINFO_TYPE (binfo) = ref;
12506 /* Apply base-class info set up to the variants of this type. */
12507 fixup_type_variants (ref);
12509 if (max_bases)
12511 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
12512 /* An aggregate cannot have baseclasses. */
12513 CLASSTYPE_NON_AGGREGATE (ref) = 1;
12515 if (TREE_CODE (ref) == UNION_TYPE)
12517 error ("derived union %qT invalid", ref);
12518 return false;
12522 if (max_bases > 1)
12524 if (TYPE_FOR_JAVA (ref))
12526 error ("Java class %qT cannot have multiple bases", ref);
12527 return false;
12531 if (max_vbases)
12533 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
12535 if (TYPE_FOR_JAVA (ref))
12537 error ("Java class %qT cannot have virtual bases", ref);
12538 return false;
12542 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
12544 tree access = TREE_PURPOSE (base_list);
12545 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
12546 tree basetype = TREE_VALUE (base_list);
12548 if (access == access_default_node)
12549 access = default_access;
12551 if (PACK_EXPANSION_P (basetype))
12552 basetype = PACK_EXPANSION_PATTERN (basetype);
12553 if (TREE_CODE (basetype) == TYPE_DECL)
12554 basetype = TREE_TYPE (basetype);
12555 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
12557 error ("base type %qT fails to be a struct or class type",
12558 basetype);
12559 return false;
12562 if (TYPE_FOR_JAVA (basetype) && (current_lang_depth () == 0))
12563 TYPE_FOR_JAVA (ref) = 1;
12565 base_binfo = NULL_TREE;
12566 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
12568 base_binfo = TYPE_BINFO (basetype);
12569 /* The original basetype could have been a typedef'd type. */
12570 basetype = BINFO_TYPE (base_binfo);
12572 /* Inherit flags from the base. */
12573 TYPE_HAS_NEW_OPERATOR (ref)
12574 |= TYPE_HAS_NEW_OPERATOR (basetype);
12575 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
12576 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
12577 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
12578 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
12579 CLASSTYPE_DIAMOND_SHAPED_P (ref)
12580 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
12581 CLASSTYPE_REPEATED_BASE_P (ref)
12582 |= CLASSTYPE_REPEATED_BASE_P (basetype);
12585 /* We must do this test after we've seen through a typedef
12586 type. */
12587 if (TYPE_MARKED_P (basetype))
12589 if (basetype == ref)
12590 error ("recursive type %qT undefined", basetype);
12591 else
12592 error ("duplicate base type %qT invalid", basetype);
12593 return false;
12596 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
12597 /* Regenerate the pack expansion for the bases. */
12598 basetype = make_pack_expansion (basetype);
12600 TYPE_MARKED_P (basetype) = 1;
12602 base_binfo = copy_binfo (base_binfo, basetype, ref,
12603 &igo_prev, via_virtual);
12604 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
12605 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
12607 BINFO_BASE_APPEND (binfo, base_binfo);
12608 BINFO_BASE_ACCESS_APPEND (binfo, access);
12611 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
12612 /* If we didn't get max_vbases vbases, we must have shared at
12613 least one of them, and are therefore diamond shaped. */
12614 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
12616 /* Unmark all the types. */
12617 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12618 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
12619 TYPE_MARKED_P (ref) = 0;
12621 /* Now see if we have a repeated base type. */
12622 if (!CLASSTYPE_REPEATED_BASE_P (ref))
12624 for (base_binfo = binfo; base_binfo;
12625 base_binfo = TREE_CHAIN (base_binfo))
12627 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
12629 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
12630 break;
12632 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
12634 for (base_binfo = binfo; base_binfo;
12635 base_binfo = TREE_CHAIN (base_binfo))
12636 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
12637 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
12638 else
12639 break;
12642 return true;
12646 /* Copies the enum-related properties from type SRC to type DST.
12647 Used with the underlying type of an enum and the enum itself. */
12648 static void
12649 copy_type_enum (tree dst, tree src)
12651 tree t;
12652 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
12654 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
12655 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
12656 TYPE_SIZE (t) = TYPE_SIZE (src);
12657 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
12658 SET_TYPE_MODE (dst, TYPE_MODE (src));
12659 TYPE_PRECISION (t) = TYPE_PRECISION (src);
12660 TYPE_ALIGN (t) = TYPE_ALIGN (src);
12661 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
12662 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
12666 /* Begin compiling the definition of an enumeration type.
12667 NAME is its name,
12669 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
12671 UNDERLYING_TYPE is the type that will be used as the storage for
12672 the enumeration type. This should be NULL_TREE if no storage type
12673 was specified.
12675 SCOPED_ENUM_P is true if this is a scoped enumeration type.
12677 if IS_NEW is not NULL, gets TRUE iff a new type is created.
12679 Returns the type object, as yet incomplete.
12680 Also records info about it so that build_enumerator
12681 may be used to declare the individual values as they are read. */
12683 tree
12684 start_enum (tree name, tree enumtype, tree underlying_type,
12685 bool scoped_enum_p, bool *is_new)
12687 tree prevtype = NULL_TREE;
12688 gcc_assert (identifier_p (name));
12690 if (is_new)
12691 *is_new = false;
12692 /* [C++0x dcl.enum]p5:
12694 If not explicitly specified, the underlying type of a scoped
12695 enumeration type is int. */
12696 if (!underlying_type && scoped_enum_p)
12697 underlying_type = integer_type_node;
12699 if (underlying_type)
12700 underlying_type = cv_unqualified (underlying_type);
12702 /* If this is the real definition for a previous forward reference,
12703 fill in the contents in the same object that used to be the
12704 forward reference. */
12705 if (!enumtype)
12706 enumtype = lookup_and_check_tag (enum_type, name,
12707 /*tag_scope=*/ts_current,
12708 /*template_header_p=*/false);
12710 /* In case of a template_decl, the only check that should be deferred
12711 to instantiation time is the comparison of underlying types. */
12712 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
12714 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
12716 error_at (input_location, "scoped/unscoped mismatch "
12717 "in enum %q#T", enumtype);
12718 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
12719 "previous definition here");
12720 enumtype = error_mark_node;
12722 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
12724 error_at (input_location, "underlying type mismatch "
12725 "in enum %q#T", enumtype);
12726 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
12727 "previous definition here");
12728 enumtype = error_mark_node;
12730 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
12731 && !dependent_type_p (underlying_type)
12732 && !dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))
12733 && !same_type_p (underlying_type,
12734 ENUM_UNDERLYING_TYPE (enumtype)))
12736 error_at (input_location, "different underlying type "
12737 "in enum %q#T", enumtype);
12738 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
12739 "previous definition here");
12740 underlying_type = NULL_TREE;
12744 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
12745 || processing_template_decl)
12747 /* In case of error, make a dummy enum to allow parsing to
12748 continue. */
12749 if (enumtype == error_mark_node)
12751 name = make_anon_name ();
12752 enumtype = NULL_TREE;
12755 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
12756 of an opaque enum, or an opaque enum of an already defined
12757 enumeration (C++0x only).
12758 In any other case, it'll be NULL_TREE. */
12759 if (!enumtype)
12761 if (is_new)
12762 *is_new = true;
12764 prevtype = enumtype;
12766 /* Do not push the decl more than once, unless we need to
12767 compare underlying types at instantiation time */
12768 if (!enumtype
12769 || TREE_CODE (enumtype) != ENUMERAL_TYPE
12770 || (underlying_type
12771 && dependent_type_p (underlying_type))
12772 || (ENUM_UNDERLYING_TYPE (enumtype)
12773 && dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))))
12775 enumtype = cxx_make_type (ENUMERAL_TYPE);
12776 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
12778 else
12779 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
12780 false);
12782 if (enumtype == error_mark_node)
12783 return error_mark_node;
12785 /* The enum is considered opaque until the opening '{' of the
12786 enumerator list. */
12787 SET_OPAQUE_ENUM_P (enumtype, true);
12788 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
12791 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
12793 if (underlying_type)
12795 if (CP_INTEGRAL_TYPE_P (underlying_type))
12797 copy_type_enum (enumtype, underlying_type);
12798 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
12800 else if (dependent_type_p (underlying_type))
12801 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
12802 else
12803 error ("underlying type %<%T%> of %<%T%> must be an integral type",
12804 underlying_type, enumtype);
12807 /* If into a template class, the returned enum is always the first
12808 declaration (opaque or not) seen. This way all the references to
12809 this type will be to the same declaration. The following ones are used
12810 only to check for definition errors. */
12811 if (prevtype && processing_template_decl)
12812 return prevtype;
12813 else
12814 return enumtype;
12817 /* After processing and defining all the values of an enumeration type,
12818 install their decls in the enumeration type.
12819 ENUMTYPE is the type object. */
12821 void
12822 finish_enum_value_list (tree enumtype)
12824 tree values;
12825 tree underlying_type;
12826 tree decl;
12827 tree value;
12828 tree minnode, maxnode;
12829 tree t;
12831 bool fixed_underlying_type_p
12832 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
12834 /* We built up the VALUES in reverse order. */
12835 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
12837 /* For an enum defined in a template, just set the type of the values;
12838 all further processing is postponed until the template is
12839 instantiated. We need to set the type so that tsubst of a CONST_DECL
12840 works. */
12841 if (processing_template_decl)
12843 for (values = TYPE_VALUES (enumtype);
12844 values;
12845 values = TREE_CHAIN (values))
12846 TREE_TYPE (TREE_VALUE (values)) = enumtype;
12847 return;
12850 /* Determine the minimum and maximum values of the enumerators. */
12851 if (TYPE_VALUES (enumtype))
12853 minnode = maxnode = NULL_TREE;
12855 for (values = TYPE_VALUES (enumtype);
12856 values;
12857 values = TREE_CHAIN (values))
12859 decl = TREE_VALUE (values);
12861 /* [dcl.enum]: Following the closing brace of an enum-specifier,
12862 each enumerator has the type of its enumeration. Prior to the
12863 closing brace, the type of each enumerator is the type of its
12864 initializing value. */
12865 TREE_TYPE (decl) = enumtype;
12867 /* Update the minimum and maximum values, if appropriate. */
12868 value = DECL_INITIAL (decl);
12869 if (value == error_mark_node)
12870 value = integer_zero_node;
12871 /* Figure out what the minimum and maximum values of the
12872 enumerators are. */
12873 if (!minnode)
12874 minnode = maxnode = value;
12875 else if (tree_int_cst_lt (maxnode, value))
12876 maxnode = value;
12877 else if (tree_int_cst_lt (value, minnode))
12878 minnode = value;
12881 else
12882 /* [dcl.enum]
12884 If the enumerator-list is empty, the underlying type is as if
12885 the enumeration had a single enumerator with value 0. */
12886 minnode = maxnode = integer_zero_node;
12888 if (!fixed_underlying_type_p)
12890 /* Compute the number of bits require to represent all values of the
12891 enumeration. We must do this before the type of MINNODE and
12892 MAXNODE are transformed, since tree_int_cst_min_precision relies
12893 on the TREE_TYPE of the value it is passed. */
12894 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
12895 int lowprec = tree_int_cst_min_precision (minnode, sgn);
12896 int highprec = tree_int_cst_min_precision (maxnode, sgn);
12897 int precision = MAX (lowprec, highprec);
12898 unsigned int itk;
12899 bool use_short_enum;
12901 /* Determine the underlying type of the enumeration.
12903 [dcl.enum]
12905 The underlying type of an enumeration is an integral type that
12906 can represent all the enumerator values defined in the
12907 enumeration. It is implementation-defined which integral type is
12908 used as the underlying type for an enumeration except that the
12909 underlying type shall not be larger than int unless the value of
12910 an enumerator cannot fit in an int or unsigned int.
12912 We use "int" or an "unsigned int" as the underlying type, even if
12913 a smaller integral type would work, unless the user has
12914 explicitly requested that we use the smallest possible type. The
12915 user can request that for all enumerations with a command line
12916 flag, or for just one enumeration with an attribute. */
12918 use_short_enum = flag_short_enums
12919 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
12921 for (itk = (use_short_enum ? itk_char : itk_int);
12922 itk != itk_none;
12923 itk++)
12925 underlying_type = integer_types[itk];
12926 if (underlying_type != NULL_TREE
12927 && TYPE_PRECISION (underlying_type) >= precision
12928 && TYPE_SIGN (underlying_type) == sgn)
12929 break;
12931 if (itk == itk_none)
12933 /* DR 377
12935 IF no integral type can represent all the enumerator values, the
12936 enumeration is ill-formed. */
12937 error ("no integral type can represent all of the enumerator values "
12938 "for %qT", enumtype);
12939 precision = TYPE_PRECISION (long_long_integer_type_node);
12940 underlying_type = integer_types[itk_unsigned_long_long];
12943 /* [dcl.enum]
12945 The value of sizeof() applied to an enumeration type, an object
12946 of an enumeration type, or an enumerator, is the value of sizeof()
12947 applied to the underlying type. */
12948 copy_type_enum (enumtype, underlying_type);
12950 /* Compute the minimum and maximum values for the type.
12952 [dcl.enum]
12954 For an enumeration where emin is the smallest enumerator and emax
12955 is the largest, the values of the enumeration are the values of the
12956 underlying type in the range bmin to bmax, where bmin and bmax are,
12957 respectively, the smallest and largest values of the smallest bit-
12958 field that can store emin and emax. */
12960 /* The middle-end currently assumes that types with TYPE_PRECISION
12961 narrower than their underlying type are suitably zero or sign
12962 extended to fill their mode. Similarly, it assumes that the front
12963 end assures that a value of a particular type must be within
12964 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
12966 We used to set these fields based on bmin and bmax, but that led
12967 to invalid assumptions like optimizing away bounds checking. So
12968 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
12969 TYPE_MAX_VALUE to the values for the mode above and only restrict
12970 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
12971 ENUM_UNDERLYING_TYPE (enumtype)
12972 = build_distinct_type_copy (underlying_type);
12973 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
12974 set_min_and_max_values_for_integral_type
12975 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
12977 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
12978 if (flag_strict_enums)
12979 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
12981 else
12982 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
12984 /* Convert each of the enumerators to the type of the underlying
12985 type of the enumeration. */
12986 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
12988 location_t saved_location;
12990 decl = TREE_VALUE (values);
12991 saved_location = input_location;
12992 input_location = DECL_SOURCE_LOCATION (decl);
12993 if (fixed_underlying_type_p)
12994 /* If the enumeration type has a fixed underlying type, we
12995 already checked all of the enumerator values. */
12996 value = DECL_INITIAL (decl);
12997 else
12998 value = perform_implicit_conversion (underlying_type,
12999 DECL_INITIAL (decl),
13000 tf_warning_or_error);
13001 input_location = saved_location;
13003 /* Do not clobber shared ints. */
13004 value = copy_node (value);
13006 TREE_TYPE (value) = enumtype;
13007 DECL_INITIAL (decl) = value;
13010 /* Fix up all variant types of this enum type. */
13011 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
13012 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
13014 if (at_class_scope_p ()
13015 && COMPLETE_TYPE_P (current_class_type)
13016 && UNSCOPED_ENUM_P (enumtype))
13017 insert_late_enum_def_into_classtype_sorted_fields (enumtype,
13018 current_class_type);
13020 /* Finish debugging output for this type. */
13021 rest_of_type_compilation (enumtype, namespace_bindings_p ());
13024 /* Finishes the enum type. This is called only the first time an
13025 enumeration is seen, be it opaque or odinary.
13026 ENUMTYPE is the type object. */
13028 void
13029 finish_enum (tree enumtype)
13031 if (processing_template_decl)
13033 if (at_function_scope_p ())
13034 add_stmt (build_min (TAG_DEFN, enumtype));
13035 return;
13038 /* If this is a forward declaration, there should not be any variants,
13039 though we can get a variant in the middle of an enum-specifier with
13040 wacky code like 'enum E { e = sizeof(const E*) };' */
13041 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
13042 && (TYPE_VALUES (enumtype)
13043 || !TYPE_NEXT_VARIANT (enumtype)));
13046 /* Build and install a CONST_DECL for an enumeration constant of the
13047 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
13048 Apply ATTRIBUTES if available. LOC is the location of NAME.
13049 Assignment of sequential values by default is handled here. */
13051 void
13052 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
13053 location_t loc)
13055 tree decl;
13056 tree context;
13057 tree type;
13059 /* scalar_constant_value will pull out this expression, so make sure
13060 it's folded as appropriate. */
13061 if (processing_template_decl)
13062 value = fold_non_dependent_expr (value);
13064 /* If the VALUE was erroneous, pretend it wasn't there; that will
13065 result in the enum being assigned the next value in sequence. */
13066 if (value == error_mark_node)
13067 value = NULL_TREE;
13069 /* Remove no-op casts from the value. */
13070 if (value)
13071 STRIP_TYPE_NOPS (value);
13073 if (! processing_template_decl)
13075 /* Validate and default VALUE. */
13076 if (value != NULL_TREE)
13078 if (!ENUM_UNDERLYING_TYPE (enumtype))
13080 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
13081 value, true);
13082 if (tmp_value)
13083 value = tmp_value;
13085 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
13086 (TREE_TYPE (value)))
13087 value = perform_implicit_conversion_flags
13088 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
13089 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
13091 if (value == error_mark_node)
13092 value = NULL_TREE;
13094 if (value != NULL_TREE)
13096 value = cxx_constant_value (value);
13098 if (TREE_CODE (value) != INTEGER_CST
13099 || ! INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (value)))
13101 error ("enumerator value for %qD is not an integer constant",
13102 name);
13103 value = NULL_TREE;
13108 /* Default based on previous value. */
13109 if (value == NULL_TREE)
13111 if (TYPE_VALUES (enumtype))
13113 tree prev_value;
13114 bool overflowed;
13116 /* C++03 7.2/4: If no initializer is specified for the first
13117 enumerator, the type is an unspecified integral
13118 type. Otherwise the type is the same as the type of the
13119 initializing value of the preceding enumerator unless the
13120 incremented value is not representable in that type, in
13121 which case the type is an unspecified integral type
13122 sufficient to contain the incremented value. */
13123 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
13124 if (error_operand_p (prev_value))
13125 value = error_mark_node;
13126 else
13128 tree type = TREE_TYPE (prev_value);
13129 signop sgn = TYPE_SIGN (type);
13130 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
13131 &overflowed);
13132 if (!overflowed)
13134 bool pos = !wi::neg_p (wi, sgn);
13135 if (!wi::fits_to_tree_p (wi, type))
13137 unsigned int itk;
13138 for (itk = itk_int; itk != itk_none; itk++)
13140 type = integer_types[itk];
13141 if (type != NULL_TREE
13142 && (pos || !TYPE_UNSIGNED (type))
13143 && wi::fits_to_tree_p (wi, type))
13144 break;
13146 if (type && cxx_dialect < cxx11
13147 && itk > itk_unsigned_long)
13148 pedwarn (input_location, OPT_Wlong_long, pos ? "\
13149 incremented enumerator value is too large for %<unsigned long%>" : "\
13150 incremented enumerator value is too large for %<long%>");
13152 if (type == NULL_TREE)
13153 overflowed = true;
13154 else
13155 value = wide_int_to_tree (type, wi);
13158 if (overflowed)
13160 error ("overflow in enumeration values at %qD", name);
13161 value = error_mark_node;
13165 else
13166 value = integer_zero_node;
13169 /* Remove no-op casts from the value. */
13170 STRIP_TYPE_NOPS (value);
13172 /* If the underlying type of the enum is fixed, check whether
13173 the enumerator values fits in the underlying type. If it
13174 does not fit, the program is ill-formed [C++0x dcl.enum]. */
13175 if (ENUM_UNDERLYING_TYPE (enumtype)
13176 && value
13177 && TREE_CODE (value) == INTEGER_CST)
13179 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
13180 error ("enumerator value %E is outside the range of underlying "
13181 "type %<%T%>", value, ENUM_UNDERLYING_TYPE (enumtype));
13183 /* Convert the value to the appropriate type. */
13184 value = convert (ENUM_UNDERLYING_TYPE (enumtype), value);
13188 /* C++ associates enums with global, function, or class declarations. */
13189 context = current_scope ();
13191 /* Build the actual enumeration constant. Note that the enumeration
13192 constants have the underlying type of the enum (if it is fixed)
13193 or the type of their initializer (if the underlying type of the
13194 enum is not fixed):
13196 [ C++0x dcl.enum ]
13198 If the underlying type is fixed, the type of each enumerator
13199 prior to the closing brace is the underlying type; if the
13200 initializing value of an enumerator cannot be represented by
13201 the underlying type, the program is ill-formed. If the
13202 underlying type is not fixed, the type of each enumerator is
13203 the type of its initializing value.
13205 If the underlying type is not fixed, it will be computed by
13206 finish_enum and we will reset the type of this enumerator. Of
13207 course, if we're processing a template, there may be no value. */
13208 type = value ? TREE_TYPE (value) : NULL_TREE;
13210 decl = build_decl (loc, CONST_DECL, name, type);
13212 DECL_CONTEXT (decl) = enumtype;
13213 TREE_CONSTANT (decl) = 1;
13214 TREE_READONLY (decl) = 1;
13215 DECL_INITIAL (decl) = value;
13217 if (attributes)
13218 cplus_decl_attributes (&decl, attributes, 0);
13220 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
13221 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
13222 on the TYPE_FIELDS list for `S'. (That's so that you can say
13223 things like `S::i' later.) */
13224 finish_member_declaration (decl);
13225 else
13226 pushdecl (decl);
13228 /* Add this enumeration constant to the list for this type. */
13229 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
13232 /* Look for an enumerator with the given NAME within the enumeration
13233 type ENUMTYPE. This routine is used primarily for qualified name
13234 lookup into an enumerator in C++0x, e.g.,
13236 enum class Color { Red, Green, Blue };
13238 Color color = Color::Red;
13240 Returns the value corresponding to the enumerator, or
13241 NULL_TREE if no such enumerator was found. */
13242 tree
13243 lookup_enumerator (tree enumtype, tree name)
13245 tree e;
13246 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
13248 e = purpose_member (name, TYPE_VALUES (enumtype));
13249 return e? TREE_VALUE (e) : NULL_TREE;
13253 /* We're defining DECL. Make sure that its type is OK. */
13255 static void
13256 check_function_type (tree decl, tree current_function_parms)
13258 tree fntype = TREE_TYPE (decl);
13259 tree return_type = complete_type (TREE_TYPE (fntype));
13261 /* In a function definition, arg types must be complete. */
13262 require_complete_types_for_parms (current_function_parms);
13264 if (dependent_type_p (return_type)
13265 || type_uses_auto (return_type))
13266 return;
13267 if (!COMPLETE_OR_VOID_TYPE_P (return_type)
13268 || (TYPE_FOR_JAVA (return_type) && MAYBE_CLASS_TYPE_P (return_type)))
13270 tree args = TYPE_ARG_TYPES (fntype);
13272 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
13273 error ("return type %q#T is incomplete", return_type);
13274 else
13275 error ("return type has Java class type %q#T", return_type);
13277 /* Make it return void instead. */
13278 if (TREE_CODE (fntype) == METHOD_TYPE)
13279 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
13280 void_type_node,
13281 TREE_CHAIN (args));
13282 else
13283 fntype = build_function_type (void_type_node, args);
13284 fntype
13285 = build_exception_variant (fntype,
13286 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)));
13287 fntype = (cp_build_type_attribute_variant
13288 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
13289 TREE_TYPE (decl) = fntype;
13291 else
13292 abstract_virtuals_error (decl, TREE_TYPE (fntype));
13295 /* Create the FUNCTION_DECL for a function definition.
13296 DECLSPECS and DECLARATOR are the parts of the declaration;
13297 they describe the function's name and the type it returns,
13298 but twisted together in a fashion that parallels the syntax of C.
13300 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
13301 DECLARATOR is really the DECL for the function we are about to
13302 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
13303 indicating that the function is an inline defined in-class.
13305 This function creates a binding context for the function body
13306 as well as setting up the FUNCTION_DECL in current_function_decl.
13308 For C++, we must first check whether that datum makes any sense.
13309 For example, "class A local_a(1,2);" means that variable local_a
13310 is an aggregate of type A, which should have a constructor
13311 applied to it with the argument list [1, 2].
13313 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
13314 or may be a BLOCK if the function has been defined previously
13315 in this translation unit. On exit, DECL_INITIAL (decl1) will be
13316 error_mark_node if the function has never been defined, or
13317 a BLOCK if the function has been defined somewhere. */
13319 bool
13320 start_preparsed_function (tree decl1, tree attrs, int flags)
13322 tree ctype = NULL_TREE;
13323 tree fntype;
13324 tree restype;
13325 int doing_friend = 0;
13326 cp_binding_level *bl;
13327 tree current_function_parms;
13328 struct c_fileinfo *finfo
13329 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
13330 bool honor_interface;
13332 /* Sanity check. */
13333 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
13334 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
13336 fntype = TREE_TYPE (decl1);
13337 if (TREE_CODE (fntype) == METHOD_TYPE)
13338 ctype = TYPE_METHOD_BASETYPE (fntype);
13340 /* ISO C++ 11.4/5. A friend function defined in a class is in
13341 the (lexical) scope of the class in which it is defined. */
13342 if (!ctype && DECL_FRIEND_P (decl1))
13344 ctype = DECL_FRIEND_CONTEXT (decl1);
13346 /* CTYPE could be null here if we're dealing with a template;
13347 for example, `inline friend float foo()' inside a template
13348 will have no CTYPE set. */
13349 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
13350 ctype = NULL_TREE;
13351 else
13352 doing_friend = 1;
13355 if (DECL_DECLARED_INLINE_P (decl1)
13356 && lookup_attribute ("noinline", attrs))
13357 warning (0, "inline function %q+D given attribute noinline", decl1);
13359 /* Handle gnu_inline attribute. */
13360 if (GNU_INLINE_P (decl1))
13362 DECL_EXTERNAL (decl1) = 1;
13363 DECL_NOT_REALLY_EXTERN (decl1) = 0;
13364 DECL_INTERFACE_KNOWN (decl1) = 1;
13365 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
13368 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
13369 /* This is a constructor, we must ensure that any default args
13370 introduced by this definition are propagated to the clones
13371 now. The clones are used directly in overload resolution. */
13372 adjust_clone_args (decl1);
13374 /* Sometimes we don't notice that a function is a static member, and
13375 build a METHOD_TYPE for it. Fix that up now. */
13376 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
13377 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
13379 /* Set up current_class_type, and enter the scope of the class, if
13380 appropriate. */
13381 if (ctype)
13382 push_nested_class (ctype);
13383 else if (DECL_STATIC_FUNCTION_P (decl1))
13384 push_nested_class (DECL_CONTEXT (decl1));
13386 /* Now that we have entered the scope of the class, we must restore
13387 the bindings for any template parameters surrounding DECL1, if it
13388 is an inline member template. (Order is important; consider the
13389 case where a template parameter has the same name as a field of
13390 the class.) It is not until after this point that
13391 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
13392 if (flags & SF_INCLASS_INLINE)
13393 maybe_begin_member_template_processing (decl1);
13395 /* Effective C++ rule 15. */
13396 if (warn_ecpp
13397 && DECL_OVERLOADED_OPERATOR_P (decl1) == NOP_EXPR
13398 && VOID_TYPE_P (TREE_TYPE (fntype)))
13399 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
13401 /* Make the init_value nonzero so pushdecl knows this is not tentative.
13402 error_mark_node is replaced below (in poplevel) with the BLOCK. */
13403 if (!DECL_INITIAL (decl1))
13404 DECL_INITIAL (decl1) = error_mark_node;
13406 /* This function exists in static storage.
13407 (This does not mean `static' in the C sense!) */
13408 TREE_STATIC (decl1) = 1;
13410 /* We must call push_template_decl after current_class_type is set
13411 up. (If we are processing inline definitions after exiting a
13412 class scope, current_class_type will be NULL_TREE until set above
13413 by push_nested_class.) */
13414 if (processing_template_decl)
13416 tree newdecl1 = push_template_decl (decl1);
13417 if (newdecl1 == error_mark_node)
13419 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
13420 pop_nested_class ();
13421 return false;
13423 decl1 = newdecl1;
13426 /* We are now in the scope of the function being defined. */
13427 current_function_decl = decl1;
13429 /* Save the parm names or decls from this function's declarator
13430 where store_parm_decls will find them. */
13431 current_function_parms = DECL_ARGUMENTS (decl1);
13433 /* Make sure the parameter and return types are reasonable. When
13434 you declare a function, these types can be incomplete, but they
13435 must be complete when you define the function. */
13436 check_function_type (decl1, current_function_parms);
13438 /* Build the return declaration for the function. */
13439 restype = TREE_TYPE (fntype);
13441 if (DECL_RESULT (decl1) == NULL_TREE)
13443 tree resdecl;
13445 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
13446 DECL_ARTIFICIAL (resdecl) = 1;
13447 DECL_IGNORED_P (resdecl) = 1;
13448 DECL_RESULT (decl1) = resdecl;
13450 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
13453 /* Let the user know we're compiling this function. */
13454 announce_function (decl1);
13456 /* Record the decl so that the function name is defined.
13457 If we already have a decl for this name, and it is a FUNCTION_DECL,
13458 use the old decl. */
13459 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
13461 /* A specialization is not used to guide overload resolution. */
13462 if (!DECL_FUNCTION_MEMBER_P (decl1)
13463 && !(DECL_USE_TEMPLATE (decl1) &&
13464 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
13466 tree olddecl = pushdecl (decl1);
13468 if (olddecl == error_mark_node)
13469 /* If something went wrong when registering the declaration,
13470 use DECL1; we have to have a FUNCTION_DECL to use when
13471 parsing the body of the function. */
13473 else
13475 /* Otherwise, OLDDECL is either a previous declaration
13476 of the same function or DECL1 itself. */
13478 if (warn_missing_declarations
13479 && olddecl == decl1
13480 && !DECL_MAIN_P (decl1)
13481 && TREE_PUBLIC (decl1)
13482 && !DECL_DECLARED_INLINE_P (decl1))
13484 tree context;
13486 /* Check whether DECL1 is in an anonymous
13487 namespace. */
13488 for (context = DECL_CONTEXT (decl1);
13489 context;
13490 context = DECL_CONTEXT (context))
13492 if (TREE_CODE (context) == NAMESPACE_DECL
13493 && DECL_NAME (context) == NULL_TREE)
13494 break;
13497 if (context == NULL)
13498 warning (OPT_Wmissing_declarations,
13499 "no previous declaration for %q+D", decl1);
13502 decl1 = olddecl;
13505 else
13507 /* We need to set the DECL_CONTEXT. */
13508 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
13509 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
13511 fntype = TREE_TYPE (decl1);
13512 restype = TREE_TYPE (fntype);
13514 /* If #pragma weak applies, mark the decl appropriately now.
13515 The pragma only applies to global functions. Because
13516 determining whether or not the #pragma applies involves
13517 computing the mangled name for the declaration, we cannot
13518 apply the pragma until after we have merged this declaration
13519 with any previous declarations; if the original declaration
13520 has a linkage specification, that specification applies to
13521 the definition as well, and may affect the mangled name. */
13522 if (DECL_FILE_SCOPE_P (decl1))
13523 maybe_apply_pragma_weak (decl1);
13526 /* Reset this in case the call to pushdecl changed it. */
13527 current_function_decl = decl1;
13529 gcc_assert (DECL_INITIAL (decl1));
13531 /* This function may already have been parsed, in which case just
13532 return; our caller will skip over the body without parsing. */
13533 if (DECL_INITIAL (decl1) != error_mark_node)
13534 return true;
13536 /* Initialize RTL machinery. We cannot do this until
13537 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
13538 even when processing a template; this is how we get
13539 CFUN set up, and our per-function variables initialized.
13540 FIXME factor out the non-RTL stuff. */
13541 bl = current_binding_level;
13542 allocate_struct_function (decl1, processing_template_decl);
13544 /* Initialize the language data structures. Whenever we start
13545 a new function, we destroy temporaries in the usual way. */
13546 cfun->language = ggc_cleared_alloc<language_function> ();
13547 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
13548 current_binding_level = bl;
13550 if (!processing_template_decl && type_uses_auto (restype))
13552 FNDECL_USED_AUTO (decl1) = true;
13553 current_function_auto_return_pattern = restype;
13556 /* Start the statement-tree, start the tree now. */
13557 DECL_SAVED_TREE (decl1) = push_stmt_list ();
13559 /* If we are (erroneously) defining a function that we have already
13560 defined before, wipe out what we knew before. */
13561 if (!DECL_PENDING_INLINE_P (decl1))
13562 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
13564 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
13566 /* We know that this was set up by `grokclassfn'. We do not
13567 wait until `store_parm_decls', since evil parse errors may
13568 never get us to that point. Here we keep the consistency
13569 between `current_class_type' and `current_class_ptr'. */
13570 tree t = DECL_ARGUMENTS (decl1);
13572 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
13573 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
13575 cp_function_chain->x_current_class_ref
13576 = cp_build_indirect_ref (t, RO_NULL, tf_warning_or_error);
13577 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
13578 cp_function_chain->x_current_class_ptr = t;
13580 /* Constructors and destructors need to know whether they're "in
13581 charge" of initializing virtual base classes. */
13582 t = DECL_CHAIN (t);
13583 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
13585 current_in_charge_parm = t;
13586 t = DECL_CHAIN (t);
13588 if (DECL_HAS_VTT_PARM_P (decl1))
13590 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
13591 current_vtt_parm = t;
13595 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
13596 /* Implicitly-defined methods (like the
13597 destructor for a class in which no destructor
13598 is explicitly declared) must not be defined
13599 until their definition is needed. So, we
13600 ignore interface specifications for
13601 compiler-generated functions. */
13602 && !DECL_ARTIFICIAL (decl1));
13604 if (processing_template_decl)
13605 /* Don't mess with interface flags. */;
13606 else if (DECL_INTERFACE_KNOWN (decl1))
13608 tree ctx = decl_function_context (decl1);
13610 if (DECL_NOT_REALLY_EXTERN (decl1))
13611 DECL_EXTERNAL (decl1) = 0;
13613 if (ctx != NULL_TREE && vague_linkage_p (ctx))
13614 /* This is a function in a local class in an extern inline
13615 or template function. */
13616 comdat_linkage (decl1);
13618 /* If this function belongs to an interface, it is public.
13619 If it belongs to someone else's interface, it is also external.
13620 This only affects inlines and template instantiations. */
13621 else if (!finfo->interface_unknown && honor_interface)
13623 if (DECL_DECLARED_INLINE_P (decl1)
13624 || DECL_TEMPLATE_INSTANTIATION (decl1))
13626 DECL_EXTERNAL (decl1)
13627 = (finfo->interface_only
13628 || (DECL_DECLARED_INLINE_P (decl1)
13629 && ! flag_implement_inlines
13630 && !DECL_VINDEX (decl1)));
13632 /* For WIN32 we also want to put these in linkonce sections. */
13633 maybe_make_one_only (decl1);
13635 else
13636 DECL_EXTERNAL (decl1) = 0;
13637 DECL_INTERFACE_KNOWN (decl1) = 1;
13638 /* If this function is in an interface implemented in this file,
13639 make sure that the back end knows to emit this function
13640 here. */
13641 if (!DECL_EXTERNAL (decl1))
13642 mark_needed (decl1);
13644 else if (finfo->interface_unknown && finfo->interface_only
13645 && honor_interface)
13647 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
13648 interface, we will have both finfo->interface_unknown and
13649 finfo->interface_only set. In that case, we don't want to
13650 use the normal heuristics because someone will supply a
13651 #pragma implementation elsewhere, and deducing it here would
13652 produce a conflict. */
13653 comdat_linkage (decl1);
13654 DECL_EXTERNAL (decl1) = 0;
13655 DECL_INTERFACE_KNOWN (decl1) = 1;
13656 DECL_DEFER_OUTPUT (decl1) = 1;
13658 else
13660 /* This is a definition, not a reference.
13661 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
13662 if (!GNU_INLINE_P (decl1))
13663 DECL_EXTERNAL (decl1) = 0;
13665 if ((DECL_DECLARED_INLINE_P (decl1)
13666 || DECL_TEMPLATE_INSTANTIATION (decl1))
13667 && ! DECL_INTERFACE_KNOWN (decl1))
13668 DECL_DEFER_OUTPUT (decl1) = 1;
13669 else
13670 DECL_INTERFACE_KNOWN (decl1) = 1;
13673 /* Determine the ELF visibility attribute for the function. We must not
13674 do this before calling "pushdecl", as we must allow "duplicate_decls"
13675 to merge any attributes appropriately. We also need to wait until
13676 linkage is set. */
13677 if (!DECL_CLONED_FUNCTION_P (decl1))
13678 determine_visibility (decl1);
13680 if (!processing_template_decl)
13681 maybe_instantiate_noexcept (decl1);
13683 begin_scope (sk_function_parms, decl1);
13685 ++function_depth;
13687 if (DECL_DESTRUCTOR_P (decl1)
13688 || (DECL_CONSTRUCTOR_P (decl1)
13689 && targetm.cxx.cdtor_returns_this ()))
13691 cdtor_label = create_artificial_label (input_location);
13694 start_fname_decls ();
13696 store_parm_decls (current_function_parms);
13698 if (!processing_template_decl
13699 && flag_lifetime_dse && DECL_CONSTRUCTOR_P (decl1))
13701 /* Insert a clobber to let the back end know that the object storage
13702 is dead when we enter the constructor. */
13703 tree btype = CLASSTYPE_AS_BASE (current_class_type);
13704 tree clobber = build_constructor (btype, NULL);
13705 TREE_THIS_VOLATILE (clobber) = true;
13706 tree bref = build_nop (build_reference_type (btype), current_class_ptr);
13707 bref = convert_from_reference (bref);
13708 tree exprstmt = build2 (MODIFY_EXPR, btype, bref, clobber);
13709 finish_expr_stmt (exprstmt);
13712 return true;
13716 /* Like start_preparsed_function, except that instead of a
13717 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
13719 Returns true on success. If the DECLARATOR is not suitable
13720 for a function, we return false, which tells the parser to
13721 skip the entire function. */
13723 bool
13724 start_function (cp_decl_specifier_seq *declspecs,
13725 const cp_declarator *declarator,
13726 tree attrs)
13728 tree decl1;
13730 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
13731 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
13732 if (decl1 == error_mark_node)
13733 return false;
13734 /* If the declarator is not suitable for a function definition,
13735 cause a syntax error. */
13736 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
13738 error ("invalid function declaration");
13739 return false;
13742 if (DECL_MAIN_P (decl1))
13743 /* main must return int. grokfndecl should have corrected it
13744 (and issued a diagnostic) if the user got it wrong. */
13745 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
13746 integer_type_node));
13748 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
13751 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
13752 FN. */
13754 static bool
13755 use_eh_spec_block (tree fn)
13757 return (flag_exceptions && flag_enforce_eh_specs
13758 && !processing_template_decl
13759 && !type_throw_all_p (TREE_TYPE (fn))
13760 /* We insert the EH_SPEC_BLOCK only in the original
13761 function; then, it is copied automatically to the
13762 clones. */
13763 && !DECL_CLONED_FUNCTION_P (fn)
13764 /* Implicitly-generated constructors and destructors have
13765 exception specifications. However, those specifications
13766 are the union of the possible exceptions specified by the
13767 constructors/destructors for bases and members, so no
13768 unallowed exception will ever reach this function. By
13769 not creating the EH_SPEC_BLOCK we save a little memory,
13770 and we avoid spurious warnings about unreachable
13771 code. */
13772 && !DECL_DEFAULTED_FN (fn));
13775 /* Store the parameter declarations into the current function declaration.
13776 This is called after parsing the parameter declarations, before
13777 digesting the body of the function.
13779 Also install to binding contour return value identifier, if any. */
13781 static void
13782 store_parm_decls (tree current_function_parms)
13784 tree fndecl = current_function_decl;
13785 tree parm;
13787 /* This is a chain of any other decls that came in among the parm
13788 declarations. If a parm is declared with enum {foo, bar} x;
13789 then CONST_DECLs for foo and bar are put here. */
13790 tree nonparms = NULL_TREE;
13792 if (current_function_parms)
13794 /* This case is when the function was defined with an ANSI prototype.
13795 The parms already have decls, so we need not do anything here
13796 except record them as in effect
13797 and complain if any redundant old-style parm decls were written. */
13799 tree specparms = current_function_parms;
13800 tree next;
13802 /* Must clear this because it might contain TYPE_DECLs declared
13803 at class level. */
13804 current_binding_level->names = NULL;
13806 /* If we're doing semantic analysis, then we'll call pushdecl
13807 for each of these. We must do them in reverse order so that
13808 they end in the correct forward order. */
13809 specparms = nreverse (specparms);
13811 for (parm = specparms; parm; parm = next)
13813 next = DECL_CHAIN (parm);
13814 if (TREE_CODE (parm) == PARM_DECL)
13816 if (DECL_NAME (parm) == NULL_TREE
13817 || !VOID_TYPE_P (parm))
13818 pushdecl (parm);
13819 else
13820 error ("parameter %qD declared void", parm);
13822 else
13824 /* If we find an enum constant or a type tag,
13825 put it aside for the moment. */
13826 TREE_CHAIN (parm) = NULL_TREE;
13827 nonparms = chainon (nonparms, parm);
13831 /* Get the decls in their original chain order and record in the
13832 function. This is all and only the PARM_DECLs that were
13833 pushed into scope by the loop above. */
13834 DECL_ARGUMENTS (fndecl) = getdecls ();
13836 else
13837 DECL_ARGUMENTS (fndecl) = NULL_TREE;
13839 /* Now store the final chain of decls for the arguments
13840 as the decl-chain of the current lexical scope.
13841 Put the enumerators in as well, at the front so that
13842 DECL_ARGUMENTS is not modified. */
13843 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
13845 if (use_eh_spec_block (current_function_decl))
13846 current_eh_spec_block = begin_eh_spec_block ();
13850 /* We have finished doing semantic analysis on DECL, but have not yet
13851 generated RTL for its body. Save away our current state, so that
13852 when we want to generate RTL later we know what to do. */
13854 static void
13855 save_function_data (tree decl)
13857 struct language_function *f;
13859 /* Save the language-specific per-function data so that we can
13860 get it back when we really expand this function. */
13861 gcc_assert (!DECL_PENDING_INLINE_P (decl));
13863 /* Make a copy. */
13864 f = ggc_alloc<language_function> ();
13865 memcpy (f, cp_function_chain, sizeof (struct language_function));
13866 DECL_SAVED_FUNCTION_DATA (decl) = f;
13868 /* Clear out the bits we don't need. */
13869 f->base.x_stmt_tree.x_cur_stmt_list = NULL;
13870 f->bindings = NULL;
13871 f->x_local_names = NULL;
13872 f->base.local_typedefs = NULL;
13876 /* Set the return value of the constructor (if present). */
13878 static void
13879 finish_constructor_body (void)
13881 tree val;
13882 tree exprstmt;
13884 if (targetm.cxx.cdtor_returns_this ()
13885 && (! TYPE_FOR_JAVA (current_class_type)))
13887 /* Any return from a constructor will end up here. */
13888 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
13890 val = DECL_ARGUMENTS (current_function_decl);
13891 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
13892 DECL_RESULT (current_function_decl), val);
13893 /* Return the address of the object. */
13894 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
13895 add_stmt (exprstmt);
13899 /* Do all the processing for the beginning of a destructor; set up the
13900 vtable pointers and cleanups for bases and members. */
13902 static void
13903 begin_destructor_body (void)
13905 tree compound_stmt;
13907 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
13908 issued an error message. We still want to try to process the
13909 body of the function, but initialize_vtbl_ptrs will crash if
13910 TYPE_BINFO is NULL. */
13911 if (COMPLETE_TYPE_P (current_class_type))
13913 compound_stmt = begin_compound_stmt (0);
13914 /* Make all virtual function table pointers in non-virtual base
13915 classes point to CURRENT_CLASS_TYPE's virtual function
13916 tables. */
13917 initialize_vtbl_ptrs (current_class_ptr);
13918 finish_compound_stmt (compound_stmt);
13920 if (flag_lifetime_dse)
13922 /* Insert a cleanup to let the back end know that the object is dead
13923 when we exit the destructor, either normally or via exception. */
13924 tree btype = CLASSTYPE_AS_BASE (current_class_type);
13925 tree clobber = build_constructor (btype, NULL);
13926 TREE_THIS_VOLATILE (clobber) = true;
13927 tree bref = build_nop (build_reference_type (btype),
13928 current_class_ptr);
13929 bref = convert_from_reference (bref);
13930 tree exprstmt = build2 (MODIFY_EXPR, btype, bref, clobber);
13931 finish_decl_cleanup (NULL_TREE, exprstmt);
13934 /* And insert cleanups for our bases and members so that they
13935 will be properly destroyed if we throw. */
13936 push_base_cleanups ();
13940 /* At the end of every destructor we generate code to delete the object if
13941 necessary. Do that now. */
13943 static void
13944 finish_destructor_body (void)
13946 tree exprstmt;
13948 /* Any return from a destructor will end up here; that way all base
13949 and member cleanups will be run when the function returns. */
13950 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
13952 /* In a virtual destructor, we must call delete. */
13953 if (DECL_VIRTUAL_P (current_function_decl))
13955 tree if_stmt;
13956 tree virtual_size = cxx_sizeof (current_class_type);
13958 /* [class.dtor]
13960 At the point of definition of a virtual destructor (including
13961 an implicit definition), non-placement operator delete shall
13962 be looked up in the scope of the destructor's class and if
13963 found shall be accessible and unambiguous. */
13964 exprstmt = build_op_delete_call (DELETE_EXPR, current_class_ptr,
13965 virtual_size,
13966 /*global_p=*/false,
13967 /*placement=*/NULL_TREE,
13968 /*alloc_fn=*/NULL_TREE,
13969 tf_warning_or_error);
13971 if_stmt = begin_if_stmt ();
13972 finish_if_stmt_cond (build2 (BIT_AND_EXPR, integer_type_node,
13973 current_in_charge_parm,
13974 integer_one_node),
13975 if_stmt);
13976 finish_expr_stmt (exprstmt);
13977 finish_then_clause (if_stmt);
13978 finish_if_stmt (if_stmt);
13981 if (targetm.cxx.cdtor_returns_this ())
13983 tree val;
13985 val = DECL_ARGUMENTS (current_function_decl);
13986 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
13987 DECL_RESULT (current_function_decl), val);
13988 /* Return the address of the object. */
13989 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
13990 add_stmt (exprstmt);
13994 /* Do the necessary processing for the beginning of a function body, which
13995 in this case includes member-initializers, but not the catch clauses of
13996 a function-try-block. Currently, this means opening a binding level
13997 for the member-initializers (in a ctor), member cleanups (in a dtor),
13998 and capture proxies (in a lambda operator()). */
14000 tree
14001 begin_function_body (void)
14003 tree stmt;
14005 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
14006 return NULL_TREE;
14008 if (processing_template_decl)
14009 /* Do nothing now. */;
14010 else
14011 /* Always keep the BLOCK node associated with the outermost pair of
14012 curly braces of a function. These are needed for correct
14013 operation of dwarfout.c. */
14014 keep_next_level (true);
14016 stmt = begin_compound_stmt (BCS_FN_BODY);
14018 if (processing_template_decl)
14019 /* Do nothing now. */;
14020 else if (DECL_DESTRUCTOR_P (current_function_decl))
14021 begin_destructor_body ();
14023 return stmt;
14026 /* Do the processing for the end of a function body. Currently, this means
14027 closing out the cleanups for fully-constructed bases and members, and in
14028 the case of the destructor, deleting the object if desired. Again, this
14029 is only meaningful for [cd]tors, since they are the only functions where
14030 there is a significant distinction between the main body and any
14031 function catch clauses. Handling, say, main() return semantics here
14032 would be wrong, as flowing off the end of a function catch clause for
14033 main() would also need to return 0. */
14035 void
14036 finish_function_body (tree compstmt)
14038 if (compstmt == NULL_TREE)
14039 return;
14041 /* Close the block. */
14042 finish_compound_stmt (compstmt);
14044 if (processing_template_decl)
14045 /* Do nothing now. */;
14046 else if (DECL_CONSTRUCTOR_P (current_function_decl))
14047 finish_constructor_body ();
14048 else if (DECL_DESTRUCTOR_P (current_function_decl))
14049 finish_destructor_body ();
14052 /* Given a function, returns the BLOCK corresponding to the outermost level
14053 of curly braces, skipping the artificial block created for constructor
14054 initializers. */
14056 tree
14057 outer_curly_brace_block (tree fndecl)
14059 tree block = DECL_INITIAL (fndecl);
14060 if (BLOCK_OUTER_CURLY_BRACE_P (block))
14061 return block;
14062 block = BLOCK_SUBBLOCKS (block);
14063 if (BLOCK_OUTER_CURLY_BRACE_P (block))
14064 return block;
14065 block = BLOCK_SUBBLOCKS (block);
14066 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
14067 return block;
14070 /* If FNDECL is a class's key method, add the class to the list of
14071 keyed classes that should be emitted. */
14073 static void
14074 record_key_method_defined (tree fndecl)
14076 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
14077 && DECL_VIRTUAL_P (fndecl)
14078 && !processing_template_decl)
14080 tree fnclass = DECL_CONTEXT (fndecl);
14081 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
14082 keyed_classes = tree_cons (NULL_TREE, fnclass, keyed_classes);
14086 /* Subroutine of finish_function.
14087 Save the body of constexpr functions for possible
14088 future compile time evaluation. */
14090 static void
14091 maybe_save_function_definition (tree fun)
14093 if (!processing_template_decl
14094 && DECL_DECLARED_CONSTEXPR_P (fun)
14095 && !cp_function_chain->invalid_constexpr
14096 && !DECL_CLONED_FUNCTION_P (fun))
14097 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
14100 /* Finish up a function declaration and compile that function
14101 all the way to assembler language output. The free the storage
14102 for the function definition.
14104 FLAGS is a bitwise or of the following values:
14105 2 - INCLASS_INLINE
14106 We just finished processing the body of an in-class inline
14107 function definition. (This processing will have taken place
14108 after the class definition is complete.) */
14110 tree
14111 finish_function (int flags)
14113 tree fndecl = current_function_decl;
14114 tree fntype, ctype = NULL_TREE;
14115 int inclass_inline = (flags & 2) != 0;
14117 /* When we get some parse errors, we can end up without a
14118 current_function_decl, so cope. */
14119 if (fndecl == NULL_TREE)
14120 return error_mark_node;
14122 if (c_dialect_objc ())
14123 objc_finish_function ();
14125 gcc_assert (!defer_mark_used_calls);
14126 defer_mark_used_calls = true;
14128 record_key_method_defined (fndecl);
14130 fntype = TREE_TYPE (fndecl);
14132 /* TREE_READONLY (fndecl) = 1;
14133 This caused &foo to be of type ptr-to-const-function
14134 which then got a warning when stored in a ptr-to-function variable. */
14136 gcc_assert (building_stmt_list_p ());
14137 /* The current function is being defined, so its DECL_INITIAL should
14138 be set, and unless there's a multiple definition, it should be
14139 error_mark_node. */
14140 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
14142 /* For a cloned function, we've already got all the code we need;
14143 there's no need to add any extra bits. */
14144 if (!DECL_CLONED_FUNCTION_P (fndecl))
14146 /* Make it so that `main' always returns 0 by default. */
14147 if (DECL_MAIN_P (current_function_decl))
14148 finish_return_stmt (integer_zero_node);
14150 if (use_eh_spec_block (current_function_decl))
14151 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
14152 (TREE_TYPE (current_function_decl)),
14153 current_eh_spec_block);
14156 /* If we're saving up tree structure, tie off the function now. */
14157 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
14159 if (fn_contains_cilk_spawn_p (cfun) && !processing_template_decl)
14160 cfun->cilk_frame_decl = insert_cilk_frame (fndecl);
14162 finish_fname_decls ();
14164 /* If this function can't throw any exceptions, remember that. */
14165 if (!processing_template_decl
14166 && !cp_function_chain->can_throw
14167 && !flag_non_call_exceptions
14168 && !decl_replaceable_p (fndecl))
14169 TREE_NOTHROW (fndecl) = 1;
14171 /* This must come after expand_function_end because cleanups might
14172 have declarations (from inline functions) that need to go into
14173 this function's blocks. */
14175 /* If the current binding level isn't the outermost binding level
14176 for this function, either there is a bug, or we have experienced
14177 syntax errors and the statement tree is malformed. */
14178 if (current_binding_level->kind != sk_function_parms)
14180 /* Make sure we have already experienced errors. */
14181 gcc_assert (errorcount);
14183 /* Throw away the broken statement tree and extra binding
14184 levels. */
14185 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
14187 while (current_binding_level->kind != sk_function_parms)
14189 if (current_binding_level->kind == sk_class)
14190 pop_nested_class ();
14191 else
14192 poplevel (0, 0, 0);
14195 poplevel (1, 0, 1);
14197 /* Statements should always be full-expressions at the outermost set
14198 of curly braces for a function. */
14199 gcc_assert (stmts_are_full_exprs_p ());
14201 /* If there are no return statements in a function with auto return type,
14202 the return type is void. But if the declared type is something like
14203 auto*, this is an error. */
14204 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
14205 && TREE_TYPE (fntype) == current_function_auto_return_pattern)
14207 if (!is_auto (current_function_auto_return_pattern)
14208 && !current_function_returns_value && !current_function_returns_null)
14210 error ("no return statements in function returning %qT",
14211 current_function_auto_return_pattern);
14212 inform (input_location, "only plain %<auto%> return type can be "
14213 "deduced to %<void%>");
14215 apply_deduced_return_type (fndecl, void_type_node);
14216 fntype = TREE_TYPE (fndecl);
14219 /* Save constexpr function body before it gets munged by
14220 the NRV transformation. */
14221 maybe_save_function_definition (fndecl);
14223 /* Set up the named return value optimization, if we can. Candidate
14224 variables are selected in check_return_expr. */
14225 if (current_function_return_value)
14227 tree r = current_function_return_value;
14228 tree outer;
14230 if (r != error_mark_node
14231 /* This is only worth doing for fns that return in memory--and
14232 simpler, since we don't have to worry about promoted modes. */
14233 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
14234 /* Only allow this for variables declared in the outer scope of
14235 the function so we know that their lifetime always ends with a
14236 return; see g++.dg/opt/nrv6.C. We could be more flexible if
14237 we were to do this optimization in tree-ssa. */
14238 && (outer = outer_curly_brace_block (fndecl))
14239 && chain_member (r, BLOCK_VARS (outer)))
14240 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
14242 current_function_return_value = NULL_TREE;
14245 /* Remember that we were in class scope. */
14246 if (current_class_name)
14247 ctype = current_class_type;
14249 /* Must mark the RESULT_DECL as being in this function. */
14250 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
14252 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
14253 to the FUNCTION_DECL node itself. */
14254 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
14256 /* Save away current state, if appropriate. */
14257 if (!processing_template_decl)
14258 save_function_data (fndecl);
14260 /* Complain if there's just no return statement. */
14261 if (warn_return_type
14262 && !VOID_TYPE_P (TREE_TYPE (fntype))
14263 && !dependent_type_p (TREE_TYPE (fntype))
14264 && !current_function_returns_value && !current_function_returns_null
14265 /* Don't complain if we abort or throw. */
14266 && !current_function_returns_abnormally
14267 /* Don't complain if there's an infinite loop. */
14268 && !current_function_infinite_loop
14269 /* Don't complain if we are declared noreturn. */
14270 && !TREE_THIS_VOLATILE (fndecl)
14271 && !DECL_NAME (DECL_RESULT (fndecl))
14272 && !TREE_NO_WARNING (fndecl)
14273 /* Structor return values (if any) are set by the compiler. */
14274 && !DECL_CONSTRUCTOR_P (fndecl)
14275 && !DECL_DESTRUCTOR_P (fndecl)
14276 && targetm.warn_func_return (fndecl))
14278 warning (OPT_Wreturn_type,
14279 "no return statement in function returning non-void");
14280 TREE_NO_WARNING (fndecl) = 1;
14283 /* Store the end of the function, so that we get good line number
14284 info for the epilogue. */
14285 cfun->function_end_locus = input_location;
14287 /* Complain about parameters that are only set, but never otherwise used. */
14288 if (warn_unused_but_set_parameter
14289 && !processing_template_decl
14290 && errorcount == unused_but_set_errorcount
14291 && !DECL_CLONED_FUNCTION_P (fndecl))
14293 tree decl;
14295 for (decl = DECL_ARGUMENTS (fndecl);
14296 decl;
14297 decl = DECL_CHAIN (decl))
14298 if (TREE_USED (decl)
14299 && TREE_CODE (decl) == PARM_DECL
14300 && !DECL_READ_P (decl)
14301 && DECL_NAME (decl)
14302 && !DECL_ARTIFICIAL (decl)
14303 && !TREE_NO_WARNING (decl)
14304 && !DECL_IN_SYSTEM_HEADER (decl)
14305 && TREE_TYPE (decl) != error_mark_node
14306 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
14307 && (!CLASS_TYPE_P (TREE_TYPE (decl))
14308 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
14309 warning (OPT_Wunused_but_set_parameter,
14310 "parameter %q+D set but not used", decl);
14311 unused_but_set_errorcount = errorcount;
14314 /* Complain about locally defined typedefs that are not used in this
14315 function. */
14316 maybe_warn_unused_local_typedefs ();
14318 /* Genericize before inlining. */
14319 if (!processing_template_decl)
14321 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
14322 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
14323 cp_genericize (fndecl);
14324 /* Clear out the bits we don't need. */
14325 f->x_current_class_ptr = NULL;
14326 f->x_current_class_ref = NULL;
14327 f->x_eh_spec_block = NULL;
14328 f->x_in_charge_parm = NULL;
14329 f->x_vtt_parm = NULL;
14330 f->x_return_value = NULL;
14331 f->bindings = NULL;
14332 f->extern_decl_map = NULL;
14333 f->infinite_loops = NULL;
14335 /* Clear out the bits we don't need. */
14336 local_names = NULL;
14338 /* We're leaving the context of this function, so zap cfun. It's still in
14339 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
14340 set_cfun (NULL);
14341 current_function_decl = NULL;
14343 /* If this is an in-class inline definition, we may have to pop the
14344 bindings for the template parameters that we added in
14345 maybe_begin_member_template_processing when start_function was
14346 called. */
14347 if (inclass_inline)
14348 maybe_end_member_template_processing ();
14350 /* Leave the scope of the class. */
14351 if (ctype)
14352 pop_nested_class ();
14354 --function_depth;
14356 /* Clean up. */
14357 current_function_decl = NULL_TREE;
14359 defer_mark_used_calls = false;
14360 if (deferred_mark_used_calls)
14362 unsigned int i;
14363 tree decl;
14365 FOR_EACH_VEC_SAFE_ELT (deferred_mark_used_calls, i, decl)
14366 mark_used (decl);
14367 vec_free (deferred_mark_used_calls);
14370 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
14371 return fndecl;
14374 /* Create the FUNCTION_DECL for a function definition.
14375 DECLSPECS and DECLARATOR are the parts of the declaration;
14376 they describe the return type and the name of the function,
14377 but twisted together in a fashion that parallels the syntax of C.
14379 This function creates a binding context for the function body
14380 as well as setting up the FUNCTION_DECL in current_function_decl.
14382 Returns a FUNCTION_DECL on success.
14384 If the DECLARATOR is not suitable for a function (it defines a datum
14385 instead), we return 0, which tells yyparse to report a parse error.
14387 May return void_type_node indicating that this method is actually
14388 a friend. See grokfield for more details.
14390 Came here with a `.pushlevel' .
14392 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
14393 CHANGES TO CODE IN `grokfield'. */
14395 tree
14396 grokmethod (cp_decl_specifier_seq *declspecs,
14397 const cp_declarator *declarator, tree attrlist)
14399 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
14400 &attrlist);
14402 if (fndecl == error_mark_node)
14403 return error_mark_node;
14405 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
14407 error ("invalid member function declaration");
14408 return error_mark_node;
14411 if (attrlist)
14412 cplus_decl_attributes (&fndecl, attrlist, 0);
14414 /* Pass friends other than inline friend functions back. */
14415 if (fndecl == void_type_node)
14416 return fndecl;
14418 if (DECL_IN_AGGR_P (fndecl))
14420 if (DECL_CLASS_SCOPE_P (fndecl))
14421 error ("%qD is already defined in class %qT", fndecl,
14422 DECL_CONTEXT (fndecl));
14423 return error_mark_node;
14426 check_template_shadow (fndecl);
14428 if (TREE_PUBLIC (fndecl))
14429 DECL_COMDAT (fndecl) = 1;
14430 DECL_DECLARED_INLINE_P (fndecl) = 1;
14431 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
14433 /* We process method specializations in finish_struct_1. */
14434 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
14436 fndecl = push_template_decl (fndecl);
14437 if (fndecl == error_mark_node)
14438 return fndecl;
14441 if (! DECL_FRIEND_P (fndecl))
14443 if (DECL_CHAIN (fndecl))
14445 fndecl = copy_node (fndecl);
14446 TREE_CHAIN (fndecl) = NULL_TREE;
14450 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
14452 DECL_IN_AGGR_P (fndecl) = 1;
14453 return fndecl;
14457 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
14458 we can lay it out later, when and if its type becomes complete.
14460 Also handle constexpr variables where the initializer involves
14461 an unlowered PTRMEM_CST because the class isn't complete yet. */
14463 void
14464 maybe_register_incomplete_var (tree var)
14466 gcc_assert (VAR_P (var));
14468 /* Keep track of variables with incomplete types. */
14469 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
14470 && DECL_EXTERNAL (var))
14472 tree inner_type = TREE_TYPE (var);
14474 while (TREE_CODE (inner_type) == ARRAY_TYPE)
14475 inner_type = TREE_TYPE (inner_type);
14476 inner_type = TYPE_MAIN_VARIANT (inner_type);
14478 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
14479 /* RTTI TD entries are created while defining the type_info. */
14480 || (TYPE_LANG_SPECIFIC (inner_type)
14481 && TYPE_BEING_DEFINED (inner_type)))
14483 incomplete_var iv = {var, inner_type};
14484 vec_safe_push (incomplete_vars, iv);
14486 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
14487 && decl_constant_var_p (var)
14488 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
14490 /* When the outermost open class is complete we can resolve any
14491 pointers-to-members. */
14492 tree context = outermost_open_class ();
14493 incomplete_var iv = {var, context};
14494 vec_safe_push (incomplete_vars, iv);
14499 /* Called when a class type (given by TYPE) is defined. If there are
14500 any existing VAR_DECLs whose type has been completed by this
14501 declaration, update them now. */
14503 void
14504 complete_vars (tree type)
14506 unsigned ix;
14507 incomplete_var *iv;
14509 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
14511 if (same_type_p (type, iv->incomplete_type))
14513 tree var = iv->decl;
14514 tree type = TREE_TYPE (var);
14516 if (TYPE_MAIN_VARIANT (strip_array_types (type))
14517 == iv->incomplete_type)
14519 /* Complete the type of the variable. The VAR_DECL itself
14520 will be laid out in expand_expr. */
14521 complete_type (type);
14522 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
14525 if (DECL_INITIAL (var)
14526 && decl_constant_var_p (var))
14527 DECL_INITIAL (var) = cplus_expand_constant (DECL_INITIAL (var));
14529 /* Remove this entry from the list. */
14530 incomplete_vars->unordered_remove (ix);
14532 else
14533 ix++;
14536 /* Check for pending declarations which may have abstract type. */
14537 complete_type_check_abstract (type);
14540 /* If DECL is of a type which needs a cleanup, build and return an
14541 expression to perform that cleanup here. Return NULL_TREE if no
14542 cleanup need be done. */
14544 tree
14545 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
14547 tree type;
14548 tree attr;
14549 tree cleanup;
14551 /* Assume no cleanup is required. */
14552 cleanup = NULL_TREE;
14554 if (error_operand_p (decl))
14555 return cleanup;
14557 /* Handle "__attribute__((cleanup))". We run the cleanup function
14558 before the destructor since the destructor is what actually
14559 terminates the lifetime of the object. */
14560 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
14561 if (attr)
14563 tree id;
14564 tree fn;
14565 tree arg;
14567 /* Get the name specified by the user for the cleanup function. */
14568 id = TREE_VALUE (TREE_VALUE (attr));
14569 /* Look up the name to find the cleanup function to call. It is
14570 important to use lookup_name here because that is what is
14571 used in c-common.c:handle_cleanup_attribute when performing
14572 initial checks on the attribute. Note that those checks
14573 include ensuring that the function found is not an overloaded
14574 function, or an object with an overloaded call operator,
14575 etc.; we can rely on the fact that the function found is an
14576 ordinary FUNCTION_DECL. */
14577 fn = lookup_name (id);
14578 arg = build_address (decl);
14579 if (!mark_used (decl, complain) && !(complain & tf_error))
14580 return error_mark_node;
14581 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
14582 if (cleanup == error_mark_node)
14583 return error_mark_node;
14585 /* Handle ordinary C++ destructors. */
14586 type = TREE_TYPE (decl);
14587 if (type_build_dtor_call (type))
14589 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
14590 tree addr;
14591 tree call;
14593 if (TREE_CODE (type) == ARRAY_TYPE)
14594 addr = decl;
14595 else
14596 addr = build_address (decl);
14598 call = build_delete (TREE_TYPE (addr), addr,
14599 sfk_complete_destructor, flags, 0, complain);
14600 if (call == error_mark_node)
14601 cleanup = error_mark_node;
14602 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
14603 /* Discard the call. */;
14604 else if (cleanup)
14605 cleanup = cp_build_compound_expr (cleanup, call, complain);
14606 else
14607 cleanup = call;
14610 /* build_delete sets the location of the destructor call to the
14611 current location, even though the destructor is going to be
14612 called later, at the end of the current scope. This can lead to
14613 a "jumpy" behaviour for users of debuggers when they step around
14614 the end of the block. So let's unset the location of the
14615 destructor call instead. */
14616 if (cleanup != NULL && EXPR_P (cleanup))
14617 SET_EXPR_LOCATION (cleanup, UNKNOWN_LOCATION);
14619 if (cleanup
14620 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
14621 /* Treat objects with destructors as used; the destructor may do
14622 something substantive. */
14623 && !mark_used (decl, complain) && !(complain & tf_error))
14624 return error_mark_node;
14626 return cleanup;
14630 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
14631 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
14632 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
14634 tree
14635 static_fn_type (tree memfntype)
14637 tree fntype;
14638 tree args;
14640 if (TYPE_PTRMEMFUNC_P (memfntype))
14641 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
14642 if (POINTER_TYPE_P (memfntype)
14643 || TREE_CODE (memfntype) == FUNCTION_DECL)
14644 memfntype = TREE_TYPE (memfntype);
14645 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
14646 return memfntype;
14647 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
14648 args = TYPE_ARG_TYPES (memfntype);
14649 cp_ref_qualifier rqual = type_memfn_rqual (memfntype);
14650 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
14651 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype), rqual);
14652 fntype = (cp_build_type_attribute_variant
14653 (fntype, TYPE_ATTRIBUTES (memfntype)));
14654 fntype = (build_exception_variant
14655 (fntype, TYPE_RAISES_EXCEPTIONS (memfntype)));
14656 if (TYPE_HAS_LATE_RETURN_TYPE (memfntype))
14657 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
14658 return fntype;
14661 /* DECL was originally constructed as a non-static member function,
14662 but turned out to be static. Update it accordingly. */
14664 void
14665 revert_static_member_fn (tree decl)
14667 tree stype = static_fn_type (decl);
14668 cp_cv_quals quals = type_memfn_quals (stype);
14669 cp_ref_qualifier rqual = type_memfn_rqual (stype);
14671 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
14672 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
14674 TREE_TYPE (decl) = stype;
14676 if (DECL_ARGUMENTS (decl))
14677 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
14678 DECL_STATIC_FUNCTION_P (decl) = 1;
14681 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
14682 one of the language-independent trees. */
14684 enum cp_tree_node_structure_enum
14685 cp_tree_node_structure (union lang_tree_node * t)
14687 switch (TREE_CODE (&t->generic))
14689 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
14690 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
14691 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
14692 case OVERLOAD: return TS_CP_OVERLOAD;
14693 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
14694 case PTRMEM_CST: return TS_CP_PTRMEM;
14695 case BASELINK: return TS_CP_BASELINK;
14696 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
14697 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
14698 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
14699 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
14700 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
14701 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
14702 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
14703 default: return TS_CP_GENERIC;
14707 /* Build the void_list_node (void_type_node having been created). */
14708 tree
14709 build_void_list_node (void)
14711 tree t = build_tree_list (NULL_TREE, void_type_node);
14712 return t;
14715 bool
14716 cp_missing_noreturn_ok_p (tree decl)
14718 /* A missing noreturn is ok for the `main' function. */
14719 return DECL_MAIN_P (decl);
14722 /* Return the decl used to identify the COMDAT group into which DECL should
14723 be placed. */
14725 tree
14726 cxx_comdat_group (tree decl)
14728 /* Virtual tables, construction virtual tables, and virtual table
14729 tables all go in a single COMDAT group, named after the primary
14730 virtual table. */
14731 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
14732 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
14733 /* For all other DECLs, the COMDAT group is the mangled name of the
14734 declaration itself. */
14735 else
14737 while (DECL_THUNK_P (decl))
14739 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
14740 into the same section as the target function. In that case
14741 we must return target's name. */
14742 tree target = THUNK_TARGET (decl);
14743 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
14744 && DECL_SECTION_NAME (target) != NULL
14745 && DECL_ONE_ONLY (target))
14746 decl = target;
14747 else
14748 break;
14752 return decl;
14755 /* Returns the return type for FN as written by the user, which may include
14756 a placeholder for a deduced return type. */
14758 tree
14759 fndecl_declared_return_type (tree fn)
14761 fn = STRIP_TEMPLATE (fn);
14762 if (FNDECL_USED_AUTO (fn))
14764 struct language_function *f = NULL;
14765 if (DECL_STRUCT_FUNCTION (fn))
14766 f = DECL_STRUCT_FUNCTION (fn)->language;
14767 if (f == NULL)
14768 f = DECL_SAVED_FUNCTION_DATA (fn);
14769 return f->x_auto_return_pattern;
14771 return TREE_TYPE (TREE_TYPE (fn));
14774 /* Returns true iff DECL was declared with an auto return type and it has
14775 not yet been deduced to a real type. */
14777 bool
14778 undeduced_auto_decl (tree decl)
14780 if (cxx_dialect < cxx14)
14781 return false;
14782 return type_uses_auto (TREE_TYPE (decl));
14785 /* Complain if DECL has an undeduced return type. */
14787 void
14788 require_deduced_type (tree decl)
14790 if (undeduced_auto_decl (decl))
14791 error ("use of %qD before deduction of %<auto%>", decl);
14794 #include "gt-cp-decl.h"