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)
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. */
31 #include "coretypes.h"
40 #include "tree-hasher.h"
41 #include "stringpool.h"
42 #include "stor-layout.h"
48 #include "tree-iterator.h"
49 #include "tree-inline.h"
56 #include "c-family/c-common.h"
57 #include "c-family/c-objc.h"
58 #include "c-family/c-pragma.h"
59 #include "c-family/c-target.h"
60 #include "c-family/c-ubsan.h"
61 #include "diagnostic.h"
65 #include "splay-tree.h"
69 #include "plugin-api.h"
70 #include "hard-reg-set.h"
78 /* Possible cases of bad specifiers type used by bad_specifiers. */
80 BSP_VAR
, /* variable */
81 BSP_PARM
, /* parameter */
86 static tree
grokparms (tree parmlist
, tree
*);
87 static const char *redeclaration_error_message (tree
, tree
);
89 static int decl_jump_unsafe (tree
);
90 static void require_complete_types_for_parms (tree
);
91 static int ambi_op_p (enum tree_code
);
92 static int unary_op_p (enum tree_code
);
93 static void push_local_name (tree
);
94 static tree
grok_reference_init (tree
, tree
, tree
, int);
95 static tree
grokvardecl (tree
, tree
, tree
, const cp_decl_specifier_seq
*,
97 static int check_static_variable_definition (tree
, tree
);
98 static void record_unknown_type (tree
, const char *);
99 static tree
builtin_function_1 (tree
, tree
, bool);
100 static int member_function_or_else (tree
, tree
, enum overload_flags
);
101 static void bad_specifiers (tree
, enum bad_spec_place
, int, int, int, int,
103 static void check_for_uninitialized_const_var (tree
);
104 static tree
local_variable_p_walkfn (tree
*, int *, void *);
105 static tree
record_builtin_java_type (const char *, int);
106 static const char *tag_name (enum tag_types
);
107 static tree
lookup_and_check_tag (enum tag_types
, tree
, tag_scope
, bool);
108 static int walk_namespaces_r (tree
, walk_namespaces_fn
, void *);
109 static void maybe_deduce_size_from_array_init (tree
, tree
);
110 static void layout_var_decl (tree
);
111 static tree
check_initializer (tree
, tree
, int, vec
<tree
, va_gc
> **);
112 static void make_rtl_for_nonlocal_decl (tree
, tree
, const char *);
113 static void save_function_data (tree
);
114 static void copy_type_enum (tree
, tree
);
115 static void check_function_type (tree
, tree
);
116 static void finish_constructor_body (void);
117 static void begin_destructor_body (void);
118 static void finish_destructor_body (void);
119 static void record_key_method_defined (tree
);
120 static tree
create_array_type_for_decl (tree
, tree
, tree
);
121 static tree
get_atexit_node (void);
122 static tree
get_dso_handle_node (void);
123 static tree
start_cleanup_fn (void);
124 static void end_cleanup_fn (void);
125 static tree
cp_make_fname_decl (location_t
, tree
, int);
126 static void initialize_predefined_identifiers (void);
127 static tree check_special_function_return_type
128 (special_function_kind
, tree
, tree
);
129 static tree
push_cp_library_fn (enum tree_code
, tree
, int);
130 static tree
build_cp_library_fn (tree
, enum tree_code
, tree
, int);
131 static void store_parm_decls (tree
);
132 static void initialize_local_var (tree
, tree
);
133 static void expand_static_init (tree
, tree
);
135 /* The following symbols are subsumed in the cp_global_trees array, and
136 listed here individually for documentation purposes.
139 tree wchar_decl_node;
141 tree vtable_entry_type;
142 tree delta_type_node;
143 tree __t_desc_type_node;
145 tree class_type_node;
146 tree unknown_type_node;
148 Array type `vtable_entry_type[]'
151 tree vtbl_ptr_type_node;
158 A FUNCTION_DECL which can call `abort'. Not necessarily the
159 one that the user will declare, but sufficient to be called
160 by routines that want to abort the program.
165 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
166 tree tinfo_var_id; */
168 tree cp_global_trees
[CPTI_MAX
];
170 /* Indicates that there is a type value in some namespace, although
171 that is not necessarily in scope at the moment. */
173 tree global_type_node
;
175 /* The node that holds the "name" of the global scope. */
176 tree global_scope_name
;
178 #define local_names cp_function_chain->x_local_names
180 /* A list of objects which have constructors or destructors
181 which reside in the global scope. The decl is stored in
182 the TREE_VALUE slot and the initializer is stored
183 in the TREE_PURPOSE slot. */
184 tree static_aggregates
;
186 /* Like static_aggregates, but for thread_local variables. */
191 /* A node for the integer constant 2. */
193 tree integer_two_node
;
195 /* Used only for jumps to as-yet undefined labels, since jumps to
196 defined labels can have their validity checked immediately. */
198 struct GTY((chain_next ("%h.next"))) named_label_use_entry
{
199 struct named_label_use_entry
*next
;
200 /* The binding level to which this entry is *currently* attached.
201 This is initially the binding level in which the goto appeared,
202 but is modified as scopes are closed. */
203 cp_binding_level
*binding_level
;
204 /* The head of the names list that was current when the goto appeared,
205 or the inner scope popped. These are the decls that will *not* be
206 skipped when jumping to the label. */
208 /* The location of the goto, for error reporting. */
209 location_t o_goto_locus
;
210 /* True if an OpenMP structured block scope has been closed since
211 the goto appeared. This means that the branch from the label will
212 illegally exit an OpenMP scope. */
216 /* A list of all LABEL_DECLs in the function that have names. Here so
217 we can clear out their names' definitions at the end of the
218 function, and so we can check the validity of jumps to these labels. */
220 struct GTY((for_user
)) named_label_entry
{
221 /* The decl itself. */
224 /* The binding level to which the label is *currently* attached.
225 This is initially set to the binding level in which the label
226 is defined, but is modified as scopes are closed. */
227 cp_binding_level
*binding_level
;
228 /* The head of the names list that was current when the label was
229 defined, or the inner scope popped. These are the decls that will
230 be skipped when jumping to the label. */
232 /* A vector of all decls from all binding levels that would be
233 crossed by a backward branch to the label. */
234 vec
<tree
, va_gc
> *bad_decls
;
236 /* A list of uses of the label, before the label is defined. */
237 struct named_label_use_entry
*uses
;
239 /* The following bits are set after the label is defined, and are
240 updated as scopes are popped. They indicate that a backward jump
241 to the label will illegally enter a scope of the given flavor. */
247 #define named_labels cp_function_chain->x_named_labels
249 /* The number of function bodies which we are currently processing.
250 (Zero if we are at namespace scope, one inside the body of a
251 function, two inside the body of a function in a local class, etc.) */
254 /* To avoid unwanted recursion, finish_function defers all mark_used calls
255 encountered during its execution until it finishes. */
256 bool defer_mark_used_calls
;
257 vec
<tree
, va_gc
> *deferred_mark_used_calls
;
259 /* States indicating how grokdeclarator() should handle declspecs marked
260 with __attribute__((deprecated)). An object declared as
261 __attribute__((deprecated)) suppresses warnings of uses of other
263 enum deprecated_states deprecated_state
= DEPRECATED_NORMAL
;
266 /* A list of VAR_DECLs whose type was incomplete at the time the
267 variable was declared. */
269 typedef struct GTY(()) incomplete_var_d
{
271 tree incomplete_type
;
275 static GTY(()) vec
<incomplete_var
, va_gc
> *incomplete_vars
;
277 /* Returns the kind of template specialization we are currently
278 processing, given that it's declaration contained N_CLASS_SCOPES
279 explicit scope qualifications. */
282 current_tmpl_spec_kind (int n_class_scopes
)
284 int n_template_parm_scopes
= 0;
285 int seen_specialization_p
= 0;
286 int innermost_specialization_p
= 0;
289 /* Scan through the template parameter scopes. */
290 for (b
= current_binding_level
;
291 b
->kind
== sk_template_parms
;
294 /* If we see a specialization scope inside a parameter scope,
295 then something is wrong. That corresponds to a declaration
298 template <class T> template <> ...
300 which is always invalid since [temp.expl.spec] forbids the
301 specialization of a class member template if the enclosing
302 class templates are not explicitly specialized as well. */
303 if (b
->explicit_spec_p
)
305 if (n_template_parm_scopes
== 0)
306 innermost_specialization_p
= 1;
308 seen_specialization_p
= 1;
310 else if (seen_specialization_p
== 1)
311 return tsk_invalid_member_spec
;
313 ++n_template_parm_scopes
;
316 /* Handle explicit instantiations. */
317 if (processing_explicit_instantiation
)
319 if (n_template_parm_scopes
!= 0)
320 /* We've seen a template parameter list during an explicit
321 instantiation. For example:
323 template <class T> template void f(int);
325 This is erroneous. */
326 return tsk_invalid_expl_inst
;
328 return tsk_expl_inst
;
331 if (n_template_parm_scopes
< n_class_scopes
)
332 /* We've not seen enough template headers to match all the
333 specialized classes present. For example:
335 template <class T> void R<T>::S<T>::f(int);
337 This is invalid; there needs to be one set of template
338 parameters for each class. */
339 return tsk_insufficient_parms
;
340 else if (n_template_parm_scopes
== n_class_scopes
)
341 /* We're processing a non-template declaration (even though it may
342 be a member of a template class.) For example:
344 template <class T> void S<T>::f(int);
346 The `class T' matches the `S<T>', leaving no template headers
347 corresponding to the `f'. */
349 else if (n_template_parm_scopes
> n_class_scopes
+ 1)
350 /* We've got too many template headers. For example:
352 template <> template <class T> void f (T);
354 There need to be more enclosing classes. */
355 return tsk_excessive_parms
;
357 /* This must be a template. It's of the form:
359 template <class T> template <class U> void S<T>::f(U);
361 This is a specialization if the innermost level was a
362 specialization; otherwise it's just a definition of the
364 return innermost_specialization_p
? tsk_expl_spec
: tsk_template
;
367 /* Exit the current scope. */
375 /* When a label goes out of scope, check to see if that label was used
376 in a valid manner, and issue any appropriate warnings or errors. */
379 pop_label (tree label
, tree old_value
)
381 if (!processing_template_decl
)
383 if (DECL_INITIAL (label
) == NULL_TREE
)
387 error ("label %q+D used but not defined", label
);
388 location
= input_location
;
389 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
390 /* Avoid crashing later. */
391 define_label (location
, DECL_NAME (label
));
394 warn_for_unused_label (label
);
397 SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label
), old_value
);
400 /* At the end of a function, all labels declared within the function
401 go out of scope. BLOCK is the top-level block for the
405 pop_labels_1 (named_label_entry
**slot
, tree block
)
407 struct named_label_entry
*ent
= *slot
;
409 pop_label (ent
->label_decl
, NULL_TREE
);
411 /* Put the labels into the "variables" of the top-level block,
412 so debugger can see them. */
413 DECL_CHAIN (ent
->label_decl
) = BLOCK_VARS (block
);
414 BLOCK_VARS (block
) = ent
->label_decl
;
416 named_labels
->clear_slot (slot
);
422 pop_labels (tree block
)
426 named_labels
->traverse
<tree
, pop_labels_1
> (block
);
431 /* At the end of a block with local labels, restore the outer definition. */
434 pop_local_label (tree label
, tree old_value
)
436 struct named_label_entry dummy
;
438 pop_label (label
, old_value
);
440 dummy
.label_decl
= label
;
441 named_label_entry
**slot
= named_labels
->find_slot (&dummy
, NO_INSERT
);
442 named_labels
->clear_slot (slot
);
445 /* The following two routines are used to interface to Objective-C++.
446 The binding level is purposely treated as an opaque type. */
449 objc_get_current_scope (void)
451 return current_binding_level
;
454 /* The following routine is used by the NeXT-style SJLJ exceptions;
455 variables get marked 'volatile' so as to not be clobbered by
456 _setjmp()/_longjmp() calls. All variables in the current scope,
457 as well as parent scopes up to (but not including) ENCLOSING_BLK
458 shall be thusly marked. */
461 objc_mark_locals_volatile (void *enclosing_blk
)
463 cp_binding_level
*scope
;
465 for (scope
= current_binding_level
;
466 scope
&& scope
!= enclosing_blk
;
467 scope
= scope
->level_chain
)
471 for (decl
= scope
->names
; decl
; decl
= TREE_CHAIN (decl
))
472 objc_volatilize_decl (decl
);
474 /* Do not climb up past the current function. */
475 if (scope
->kind
== sk_function_parms
)
480 /* Update data for defined and undefined labels when leaving a scope. */
483 poplevel_named_label_1 (named_label_entry
**slot
, cp_binding_level
*bl
)
485 named_label_entry
*ent
= *slot
;
486 cp_binding_level
*obl
= bl
->level_chain
;
488 if (ent
->binding_level
== bl
)
492 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
493 TREE_LISTs representing OVERLOADs, so be careful. */
494 for (decl
= ent
->names_in_scope
; decl
; decl
= (DECL_P (decl
)
496 : TREE_CHAIN (decl
)))
497 if (decl_jump_unsafe (decl
))
498 vec_safe_push (ent
->bad_decls
, decl
);
500 ent
->binding_level
= obl
;
501 ent
->names_in_scope
= obl
->names
;
505 ent
->in_try_scope
= true;
508 ent
->in_catch_scope
= true;
511 ent
->in_omp_scope
= true;
519 struct named_label_use_entry
*use
;
521 for (use
= ent
->uses
; use
; use
= use
->next
)
522 if (use
->binding_level
== bl
)
524 use
->binding_level
= obl
;
525 use
->names_in_scope
= obl
->names
;
526 if (bl
->kind
== sk_omp
)
527 use
->in_omp_scope
= true;
534 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
535 when errors were reported, except for -Werror-unused-but-set-*. */
536 static int unused_but_set_errorcount
;
538 /* Exit a binding level.
539 Pop the level off, and restore the state of the identifier-decl mappings
540 that were in effect when this level was entered.
542 If KEEP == 1, this level had explicit declarations, so
543 and create a "block" (a BLOCK node) for the level
544 to record its declarations and subblocks for symbol table output.
546 If FUNCTIONBODY is nonzero, this level is the body of a function,
547 so create a block as if KEEP were set and also clear out all
550 If REVERSE is nonzero, reverse the order of decls before putting
551 them into the BLOCK. */
554 poplevel (int keep
, int reverse
, int functionbody
)
557 /* The chain of decls was accumulated in reverse order.
558 Put it into forward order, just for cleanliness. */
563 int leaving_for_scope
;
566 cp_label_binding
*label_bind
;
568 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
573 gcc_assert (current_binding_level
->kind
!= sk_class
);
575 if (current_binding_level
->kind
== sk_cleanup
)
577 subblocks
= functionbody
>= 0 ? current_binding_level
->blocks
: 0;
579 gcc_assert (!vec_safe_length (current_binding_level
->class_shadowed
));
581 /* We used to use KEEP == 2 to indicate that the new block should go
582 at the beginning of the list of blocks at this binding level,
583 rather than the end. This hack is no longer used. */
584 gcc_assert (keep
== 0 || keep
== 1);
586 if (current_binding_level
->keep
)
589 /* Any uses of undefined labels, and any defined labels, now operate
590 under constraints of next binding contour. */
591 if (cfun
&& !functionbody
&& named_labels
)
592 named_labels
->traverse
<cp_binding_level
*, poplevel_named_label_1
>
593 (current_binding_level
);
595 /* Get the decls in the order they were written.
596 Usually current_binding_level->names is in reverse order.
597 But parameter decls were previously put in forward order. */
600 current_binding_level
->names
601 = decls
= nreverse (current_binding_level
->names
);
603 decls
= current_binding_level
->names
;
605 /* If there were any declarations or structure tags in that level,
606 or if this level is a function body,
607 create a BLOCK to record them for the life of this function. */
609 /* Avoid function body block if possible. */
610 if (functionbody
&& subblocks
&& BLOCK_CHAIN (subblocks
) == NULL_TREE
)
612 else if (keep
== 1 || functionbody
)
613 block
= make_node (BLOCK
);
614 if (block
!= NULL_TREE
)
616 BLOCK_VARS (block
) = decls
;
617 BLOCK_SUBBLOCKS (block
) = subblocks
;
620 /* In each subblock, record that this is its superior. */
622 for (link
= subblocks
; link
; link
= BLOCK_CHAIN (link
))
623 BLOCK_SUPERCONTEXT (link
) = block
;
625 /* We still support the old for-scope rules, whereby the variables
626 in a for-init statement were in scope after the for-statement
627 ended. We only use the new rules if flag_new_for_scope is
630 = current_binding_level
->kind
== sk_for
&& flag_new_for_scope
== 1;
632 /* Before we remove the declarations first check for unused variables. */
633 if ((warn_unused_variable
|| warn_unused_but_set_variable
)
634 && current_binding_level
->kind
!= sk_template_parms
635 && !processing_template_decl
)
636 for (tree d
= getdecls (); d
; d
= TREE_CHAIN (d
))
638 /* There are cases where D itself is a TREE_LIST. See in
639 push_local_binding where the list of decls returned by
640 getdecls is built. */
641 decl
= TREE_CODE (d
) == TREE_LIST
? TREE_VALUE (d
) : d
;
642 tree type
= TREE_TYPE (decl
);
644 && (! TREE_USED (decl
) || !DECL_READ_P (decl
))
645 && ! DECL_IN_SYSTEM_HEADER (decl
)
646 && DECL_NAME (decl
) && ! DECL_ARTIFICIAL (decl
)
647 && type
!= error_mark_node
648 && (!CLASS_TYPE_P (type
)
649 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
)
650 || lookup_attribute ("warn_unused",
651 TYPE_ATTRIBUTES (TREE_TYPE (decl
)))))
653 if (! TREE_USED (decl
))
654 warning (OPT_Wunused_variable
, "unused variable %q+D", decl
);
655 else if (DECL_CONTEXT (decl
) == current_function_decl
656 // For -Wunused-but-set-variable leave references alone.
657 && TREE_CODE (TREE_TYPE (decl
)) != REFERENCE_TYPE
658 && errorcount
== unused_but_set_errorcount
)
660 warning (OPT_Wunused_but_set_variable
,
661 "variable %q+D set but not used", decl
);
662 unused_but_set_errorcount
= errorcount
;
667 /* Remove declarations for all the DECLs in this level. */
668 for (link
= decls
; link
; link
= TREE_CHAIN (link
))
670 if (leaving_for_scope
&& VAR_P (link
)
671 /* It's hard to make this ARM compatibility hack play nicely with
672 lambdas, and it really isn't necessary in C++11 mode. */
673 && cxx_dialect
< cxx11
676 tree name
= DECL_NAME (link
);
680 ob
= outer_binding (name
,
681 IDENTIFIER_BINDING (name
),
684 ns_binding
= IDENTIFIER_NAMESPACE_VALUE (name
);
686 ns_binding
= NULL_TREE
;
688 if (ob
&& ob
->scope
== current_binding_level
->level_chain
)
689 /* We have something like:
694 and we are leaving the `for' scope. There's no reason to
695 keep the binding of the inner `i' in this case. */
696 pop_binding (name
, link
);
697 else if ((ob
&& (TREE_CODE (ob
->value
) == TYPE_DECL
))
698 || (ns_binding
&& TREE_CODE (ns_binding
) == TYPE_DECL
))
699 /* Here, we have something like:
707 We must pop the for-scope binding so we know what's a
708 type and what isn't. */
709 pop_binding (name
, link
);
712 /* Mark this VAR_DECL as dead so that we can tell we left it
713 there only for backward compatibility. */
714 DECL_DEAD_FOR_LOCAL (link
) = 1;
716 /* Keep track of what should have happened when we
717 popped the binding. */
720 SET_DECL_SHADOWED_FOR_VAR (link
, ob
->value
);
721 DECL_HAS_SHADOWED_FOR_VAR_P (link
) = 1;
724 /* Add it to the list of dead variables in the next
725 outermost binding to that we can remove these when we
726 leave that binding. */
728 current_binding_level
->level_chain
->dead_vars_from_for
,
731 /* Although we don't pop the cxx_binding, we do clear
732 its SCOPE since the scope is going away now. */
733 IDENTIFIER_BINDING (name
)->scope
734 = current_binding_level
->level_chain
;
741 /* Remove the binding. */
744 if (TREE_CODE (decl
) == TREE_LIST
)
745 decl
= TREE_VALUE (decl
);
748 if (TREE_CODE (name
) == OVERLOAD
)
749 name
= OVL_FUNCTION (name
);
751 gcc_assert (DECL_P (name
));
752 pop_binding (DECL_NAME (name
), decl
);
756 /* Remove declarations for any `for' variables from inner scopes
757 that we kept around. */
758 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level
->dead_vars_from_for
,
760 pop_binding (DECL_NAME (decl
), decl
);
762 /* Restore the IDENTIFIER_TYPE_VALUEs. */
763 for (link
= current_binding_level
->type_shadowed
;
764 link
; link
= TREE_CHAIN (link
))
765 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link
), TREE_VALUE (link
));
767 /* Restore the IDENTIFIER_LABEL_VALUEs for local labels. */
768 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level
->shadowed_labels
,
770 pop_local_label (label_bind
->label
, label_bind
->prev_value
);
772 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
773 list if a `using' declaration put them there. The debugging
774 back ends won't understand OVERLOAD, so we remove them here.
775 Because the BLOCK_VARS are (temporarily) shared with
776 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
777 popped all the bindings. */
782 for (d
= &BLOCK_VARS (block
); *d
; )
784 if (TREE_CODE (*d
) == TREE_LIST
)
785 *d
= TREE_CHAIN (*d
);
787 d
= &DECL_CHAIN (*d
);
791 /* If the level being exited is the top level of a function,
792 check over all the labels. */
797 /* Since this is the top level block of a function, the vars are
798 the function's parameters. Don't leave them in the BLOCK
799 because they are found in the FUNCTION_DECL instead. */
800 BLOCK_VARS (block
) = 0;
804 pop_labels (subblocks
);
807 kind
= current_binding_level
->kind
;
808 if (kind
== sk_cleanup
)
812 /* If this is a temporary binding created for a cleanup, then we'll
813 have pushed a statement list level. Pop that, create a new
814 BIND_EXPR for the block, and insert it into the stream. */
815 stmt
= pop_stmt_list (current_binding_level
->statement_list
);
816 stmt
= c_build_bind_expr (input_location
, block
, stmt
);
823 /* The current function is being defined, so its DECL_INITIAL
824 should be error_mark_node. */
825 gcc_assert (DECL_INITIAL (current_function_decl
) == error_mark_node
);
826 DECL_INITIAL (current_function_decl
) = block
? block
: subblocks
;
829 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl
))
831 if (BLOCK_SUBBLOCKS (subblocks
))
832 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks
)) = 1;
835 BLOCK_OUTER_CURLY_BRACE_P (subblocks
) = 1;
839 current_binding_level
->blocks
840 = block_chainon (current_binding_level
->blocks
, block
);
842 /* If we did not make a block for the level just exited,
843 any blocks made for inner levels
844 (since they cannot be recorded as subblocks in that level)
845 must be carried forward so they will later become subblocks
846 of something else. */
848 current_binding_level
->blocks
849 = block_chainon (current_binding_level
->blocks
, subblocks
);
851 /* Each and every BLOCK node created here in `poplevel' is important
852 (e.g. for proper debugging information) so if we created one
853 earlier, mark it as "used". */
855 TREE_USED (block
) = 1;
857 /* All temporary bindings created for cleanups are popped silently. */
858 if (kind
== sk_cleanup
)
861 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
865 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
866 itself, calling F for each. The DATA is passed to F as well. */
869 walk_namespaces_r (tree name_space
, walk_namespaces_fn f
, void* data
)
872 tree current
= NAMESPACE_LEVEL (name_space
)->namespaces
;
874 result
|= (*f
) (name_space
, data
);
876 for (; current
; current
= DECL_CHAIN (current
))
877 result
|= walk_namespaces_r (current
, f
, data
);
882 /* Walk all the namespaces, calling F for each. The DATA is passed to
886 walk_namespaces (walk_namespaces_fn f
, void* data
)
888 return walk_namespaces_r (global_namespace
, f
, data
);
891 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
894 wrapup_globals_for_namespace (tree name_space
, void* data ATTRIBUTE_UNUSED
)
896 cp_binding_level
*level
= NAMESPACE_LEVEL (name_space
);
897 vec
<tree
, va_gc
> *statics
= level
->static_decls
;
898 tree
*vec
= statics
->address ();
899 int len
= statics
->length ();
901 /* Write out any globals that need to be output. */
902 return wrapup_global_declarations (vec
, len
);
905 /* In C++, you don't have to write `struct S' to refer to `S'; you
906 can just use `S'. We accomplish this by creating a TYPE_DECL as
907 if the user had written `typedef struct S S'. Create and return
908 the TYPE_DECL for TYPE. */
911 create_implicit_typedef (tree name
, tree type
)
915 decl
= build_decl (input_location
, TYPE_DECL
, name
, type
);
916 DECL_ARTIFICIAL (decl
) = 1;
917 /* There are other implicit type declarations, like the one *within*
918 a class that allows you to write `S::S'. We must distinguish
920 SET_DECL_IMPLICIT_TYPEDEF_P (decl
);
921 TYPE_NAME (type
) = decl
;
922 TYPE_STUB_DECL (type
) = decl
;
927 /* Remember a local name for name-mangling purposes. */
930 push_local_name (tree decl
)
935 timevar_start (TV_NAME_LOOKUP
);
937 name
= DECL_NAME (decl
);
939 nelts
= vec_safe_length (local_names
);
940 for (i
= 0; i
< nelts
; i
++)
942 t
= (*local_names
)[i
];
943 if (DECL_NAME (t
) == name
)
945 if (!DECL_LANG_SPECIFIC (decl
))
946 retrofit_lang_decl (decl
);
947 DECL_LANG_SPECIFIC (decl
)->u
.base
.u2sel
= 1;
948 if (DECL_DISCRIMINATOR_SET_P (t
))
949 DECL_DISCRIMINATOR (decl
) = DECL_DISCRIMINATOR (t
) + 1;
951 DECL_DISCRIMINATOR (decl
) = 1;
953 (*local_names
)[i
] = decl
;
954 timevar_stop (TV_NAME_LOOKUP
);
959 vec_safe_push (local_names
, decl
);
960 timevar_stop (TV_NAME_LOOKUP
);
963 /* Subroutine of duplicate_decls: return truthvalue of whether
964 or not types of these decls match.
966 For C++, we must compare the parameter list so that `int' can match
967 `int&' in a parameter position, but `int&' is not confused with
971 decls_match (tree newdecl
, tree olddecl
)
975 if (newdecl
== olddecl
)
978 if (TREE_CODE (newdecl
) != TREE_CODE (olddecl
))
979 /* If the two DECLs are not even the same kind of thing, we're not
980 interested in their types. */
983 gcc_assert (DECL_P (newdecl
));
985 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
987 tree f1
= TREE_TYPE (newdecl
);
988 tree f2
= TREE_TYPE (olddecl
);
989 tree p1
= TYPE_ARG_TYPES (f1
);
990 tree p2
= TYPE_ARG_TYPES (f2
);
993 /* Specializations of different templates are different functions
994 even if they have the same type. */
995 tree t1
= (DECL_USE_TEMPLATE (newdecl
)
996 ? DECL_TI_TEMPLATE (newdecl
)
998 tree t2
= (DECL_USE_TEMPLATE (olddecl
)
999 ? DECL_TI_TEMPLATE (olddecl
)
1004 if (CP_DECL_CONTEXT (newdecl
) != CP_DECL_CONTEXT (olddecl
)
1005 && ! (DECL_EXTERN_C_P (newdecl
)
1006 && DECL_EXTERN_C_P (olddecl
)))
1009 /* A new declaration doesn't match a built-in one unless it
1010 is also extern "C". */
1011 if (DECL_IS_BUILTIN (olddecl
)
1012 && DECL_EXTERN_C_P (olddecl
) && !DECL_EXTERN_C_P (newdecl
))
1015 if (TREE_CODE (f1
) != TREE_CODE (f2
))
1018 /* A declaration with deduced return type should use its pre-deduction
1019 type for declaration matching. */
1020 r2
= fndecl_declared_return_type (olddecl
);
1022 if (same_type_p (TREE_TYPE (f1
), r2
))
1024 if (!prototype_p (f2
) && DECL_EXTERN_C_P (olddecl
)
1025 && (DECL_BUILT_IN (olddecl
)
1026 #ifndef NO_IMPLICIT_EXTERN_C
1027 || (DECL_IN_SYSTEM_HEADER (newdecl
) && !DECL_CLASS_SCOPE_P (newdecl
))
1028 || (DECL_IN_SYSTEM_HEADER (olddecl
) && !DECL_CLASS_SCOPE_P (olddecl
))
1032 types_match
= self_promoting_args_p (p1
);
1033 if (p1
== void_list_node
)
1034 TREE_TYPE (newdecl
) = TREE_TYPE (olddecl
);
1036 #ifndef NO_IMPLICIT_EXTERN_C
1037 else if (!prototype_p (f1
)
1038 && (DECL_EXTERN_C_P (olddecl
)
1039 && DECL_IN_SYSTEM_HEADER (olddecl
)
1040 && !DECL_CLASS_SCOPE_P (olddecl
))
1041 && (DECL_EXTERN_C_P (newdecl
)
1042 && DECL_IN_SYSTEM_HEADER (newdecl
)
1043 && !DECL_CLASS_SCOPE_P (newdecl
)))
1045 types_match
= self_promoting_args_p (p2
);
1046 TREE_TYPE (newdecl
) = TREE_TYPE (olddecl
);
1052 && type_memfn_rqual (f1
) == type_memfn_rqual (f2
)
1053 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl
)) == NULL_TREE
1054 || comp_type_attributes (TREE_TYPE (newdecl
),
1055 TREE_TYPE (olddecl
)) != 0);
1060 /* The decls dont match if they correspond to two different versions
1061 of the same function. Disallow extern "C" functions to be
1062 versions for now. */
1064 && !DECL_EXTERN_C_P (newdecl
)
1065 && !DECL_EXTERN_C_P (olddecl
)
1066 && targetm
.target_option
.function_versions (newdecl
, olddecl
))
1068 /* Mark functions as versions if necessary. Modify the mangled decl
1069 name if necessary. */
1070 if (DECL_FUNCTION_VERSIONED (newdecl
)
1071 && DECL_FUNCTION_VERSIONED (olddecl
))
1073 if (!DECL_FUNCTION_VERSIONED (newdecl
))
1075 DECL_FUNCTION_VERSIONED (newdecl
) = 1;
1076 if (DECL_ASSEMBLER_NAME_SET_P (newdecl
))
1077 mangle_decl (newdecl
);
1079 if (!DECL_FUNCTION_VERSIONED (olddecl
))
1081 DECL_FUNCTION_VERSIONED (olddecl
) = 1;
1082 if (DECL_ASSEMBLER_NAME_SET_P (olddecl
))
1083 mangle_decl (olddecl
);
1085 cgraph_node::record_function_versions (olddecl
, newdecl
);
1089 else if (TREE_CODE (newdecl
) == TEMPLATE_DECL
)
1091 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl
))
1092 != TREE_CODE (DECL_TEMPLATE_RESULT (olddecl
)))
1095 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl
),
1096 DECL_TEMPLATE_PARMS (olddecl
)))
1099 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl
)) == TYPE_DECL
)
1100 types_match
= same_type_p (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl
)),
1101 TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl
)));
1103 types_match
= decls_match (DECL_TEMPLATE_RESULT (olddecl
),
1104 DECL_TEMPLATE_RESULT (newdecl
));
1108 /* Need to check scope for variable declaration (VAR_DECL).
1109 For typedef (TYPE_DECL), scope is ignored. */
1111 && CP_DECL_CONTEXT (newdecl
) != CP_DECL_CONTEXT (olddecl
)
1113 Two declarations for an object with C language linkage
1114 with the same name (ignoring the namespace that qualify
1115 it) that appear in different namespace scopes refer to
1117 && !(DECL_EXTERN_C_P (olddecl
) && DECL_EXTERN_C_P (newdecl
)))
1120 if (TREE_TYPE (newdecl
) == error_mark_node
)
1121 types_match
= TREE_TYPE (olddecl
) == error_mark_node
;
1122 else if (TREE_TYPE (olddecl
) == NULL_TREE
)
1123 types_match
= TREE_TYPE (newdecl
) == NULL_TREE
;
1124 else if (TREE_TYPE (newdecl
) == NULL_TREE
)
1127 types_match
= comptypes (TREE_TYPE (newdecl
),
1128 TREE_TYPE (olddecl
),
1129 COMPARE_REDECLARATION
);
1135 /* If NEWDECL is `static' and an `extern' was seen previously,
1136 warn about it. OLDDECL is the previous declaration.
1138 Note that this does not apply to the C++ case of declaring
1139 a variable `extern const' and then later `const'.
1141 Don't complain about built-in functions, since they are beyond
1142 the user's control. */
1145 warn_extern_redeclared_static (tree newdecl
, tree olddecl
)
1147 if (TREE_CODE (newdecl
) == TYPE_DECL
1148 || TREE_CODE (newdecl
) == TEMPLATE_DECL
1149 || TREE_CODE (newdecl
) == CONST_DECL
1150 || TREE_CODE (newdecl
) == NAMESPACE_DECL
)
1153 /* Don't get confused by static member functions; that's a different
1155 if (TREE_CODE (newdecl
) == FUNCTION_DECL
1156 && DECL_STATIC_FUNCTION_P (newdecl
))
1159 /* If the old declaration was `static', or the new one isn't, then
1160 everything is OK. */
1161 if (DECL_THIS_STATIC (olddecl
) || !DECL_THIS_STATIC (newdecl
))
1164 /* It's OK to declare a builtin function as `static'. */
1165 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1166 && DECL_ARTIFICIAL (olddecl
))
1169 if (permerror (DECL_SOURCE_LOCATION (newdecl
),
1170 "%qD was declared %<extern%> and later %<static%>", newdecl
))
1171 inform (input_location
, "previous declaration of %q+D", olddecl
);
1174 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1175 function templates. If their exception specifications do not
1176 match, issue a diagnostic. */
1179 check_redeclaration_exception_specification (tree new_decl
,
1182 tree new_exceptions
= TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl
));
1183 tree old_exceptions
= TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl
));
1185 /* Two default specs are equivalent, don't force evaluation. */
1186 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions
)
1187 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions
))
1190 maybe_instantiate_noexcept (new_decl
);
1191 maybe_instantiate_noexcept (old_decl
);
1192 new_exceptions
= TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl
));
1193 old_exceptions
= TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl
));
1197 If any declaration of a function has an exception-specification,
1198 all declarations, including the definition and an explicit
1199 specialization, of that function shall have an
1200 exception-specification with the same set of type-ids. */
1201 if (! DECL_IS_BUILTIN (old_decl
)
1203 && !comp_except_specs (new_exceptions
, old_exceptions
, ce_normal
))
1206 = "declaration of %q+F has a different exception specifier";
1207 bool complained
= true;
1208 if (! DECL_IN_SYSTEM_HEADER (old_decl
))
1209 error (msg
, new_decl
);
1211 complained
= pedwarn (0, OPT_Wsystem_headers
, msg
, new_decl
);
1213 inform (0, "from previous declaration %q+F", old_decl
);
1217 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1218 Otherwise issue diagnostics. */
1221 validate_constexpr_redeclaration (tree old_decl
, tree new_decl
)
1223 old_decl
= STRIP_TEMPLATE (old_decl
);
1224 new_decl
= STRIP_TEMPLATE (new_decl
);
1225 if (!VAR_OR_FUNCTION_DECL_P (old_decl
)
1226 || !VAR_OR_FUNCTION_DECL_P (new_decl
))
1228 if (DECL_DECLARED_CONSTEXPR_P (old_decl
)
1229 == DECL_DECLARED_CONSTEXPR_P (new_decl
))
1231 if (TREE_CODE (old_decl
) == FUNCTION_DECL
)
1233 if (DECL_BUILT_IN (old_decl
))
1235 /* Hide a built-in declaration. */
1236 DECL_DECLARED_CONSTEXPR_P (old_decl
)
1237 = DECL_DECLARED_CONSTEXPR_P (new_decl
);
1240 /* 7.1.5 [dcl.constexpr]
1241 Note: An explicit specialization can differ from the template
1242 declaration with respect to the constexpr specifier. */
1243 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl
)
1244 && DECL_TEMPLATE_SPECIALIZATION (new_decl
))
1247 error ("redeclaration %q+D differs in %<constexpr%>", new_decl
);
1248 error ("from previous declaration %q+D", old_decl
);
1254 /* DECL is a redeclaration of a function or function template. If
1255 it does have default arguments issue a diagnostic. Note: this
1256 function is used to enforce the requirements in C++11 8.3.6 about
1257 no default arguments in redeclarations. */
1260 check_redeclaration_no_default_args (tree decl
)
1262 gcc_assert (DECL_DECLARES_FUNCTION_P (decl
));
1264 for (tree t
= FUNCTION_FIRST_USER_PARMTYPE (decl
);
1265 t
&& t
!= void_list_node
; t
= TREE_CHAIN (t
))
1266 if (TREE_PURPOSE (t
))
1268 permerror (input_location
,
1269 "redeclaration of %q+#D may not have default "
1275 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1276 && lookup_attribute ("gnu_inline", \
1277 DECL_ATTRIBUTES (fn)))
1279 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1280 If the redeclaration is invalid, a diagnostic is issued, and the
1281 error_mark_node is returned. Otherwise, OLDDECL is returned.
1283 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1286 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1289 duplicate_decls (tree newdecl
, tree olddecl
, bool newdecl_is_friend
)
1291 unsigned olddecl_uid
= DECL_UID (olddecl
);
1292 int olddecl_friend
= 0, types_match
= 0, hidden_friend
= 0;
1293 int new_defines_function
= 0;
1294 tree new_template_info
;
1296 if (newdecl
== olddecl
)
1299 types_match
= decls_match (newdecl
, olddecl
);
1301 /* If either the type of the new decl or the type of the old decl is an
1302 error_mark_node, then that implies that we have already issued an
1303 error (earlier) for some bogus type specification, and in that case,
1304 it is rather pointless to harass the user with yet more error message
1305 about the same declaration, so just pretend the types match here. */
1306 if (TREE_TYPE (newdecl
) == error_mark_node
1307 || TREE_TYPE (olddecl
) == error_mark_node
)
1308 return error_mark_node
;
1310 if (UDLIT_OPER_P (DECL_NAME (newdecl
))
1311 && UDLIT_OPER_P (DECL_NAME (olddecl
)))
1313 if (TREE_CODE (newdecl
) == TEMPLATE_DECL
1314 && TREE_CODE (olddecl
) != TEMPLATE_DECL
1315 && check_raw_literal_operator (olddecl
))
1316 error ("literal operator template %q+D conflicts with"
1317 " raw literal operator %qD", newdecl
, olddecl
);
1318 else if (TREE_CODE (newdecl
) != TEMPLATE_DECL
1319 && TREE_CODE (olddecl
) == TEMPLATE_DECL
1320 && check_raw_literal_operator (newdecl
))
1321 error ("raw literal operator %q+D conflicts with"
1322 " literal operator template %qD", newdecl
, olddecl
);
1325 if (DECL_P (olddecl
)
1326 && TREE_CODE (newdecl
) == FUNCTION_DECL
1327 && TREE_CODE (olddecl
) == FUNCTION_DECL
1328 && (DECL_UNINLINABLE (newdecl
) || DECL_UNINLINABLE (olddecl
)))
1330 if (DECL_DECLARED_INLINE_P (newdecl
)
1331 && DECL_UNINLINABLE (newdecl
)
1332 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl
)))
1333 /* Already warned elsewhere. */;
1334 else if (DECL_DECLARED_INLINE_P (olddecl
)
1335 && DECL_UNINLINABLE (olddecl
)
1336 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl
)))
1337 /* Already warned. */;
1338 else if (DECL_DECLARED_INLINE_P (newdecl
)
1339 && DECL_UNINLINABLE (olddecl
)
1340 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl
)))
1342 if (warning (OPT_Wattributes
, "function %q+D redeclared as inline",
1344 inform (DECL_SOURCE_LOCATION (olddecl
),
1345 "previous declaration of %qD with attribute noinline",
1348 else if (DECL_DECLARED_INLINE_P (olddecl
)
1349 && DECL_UNINLINABLE (newdecl
)
1350 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl
)))
1352 if (warning (OPT_Wattributes
, "function %q+D redeclared with "
1353 "attribute noinline", newdecl
))
1354 inform (DECL_SOURCE_LOCATION (olddecl
),
1355 "previous declaration of %qD was inline",
1360 /* Check for redeclaration and other discrepancies. */
1361 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1362 && DECL_ARTIFICIAL (olddecl
))
1364 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl
));
1365 if (TREE_CODE (newdecl
) != FUNCTION_DECL
)
1367 /* Avoid warnings redeclaring built-ins which have not been
1368 explicitly declared. */
1369 if (DECL_ANTICIPATED (olddecl
))
1372 /* If you declare a built-in or predefined function name as static,
1373 the old definition is overridden, but optionally warn this was a
1374 bad choice of name. */
1375 if (! TREE_PUBLIC (newdecl
))
1377 warning (OPT_Wshadow
,
1378 DECL_BUILT_IN (olddecl
)
1379 ? G_("shadowing built-in function %q#D")
1380 : G_("shadowing library function %q#D"), olddecl
);
1381 /* Discard the old built-in function. */
1384 /* If the built-in is not ansi, then programs can override
1385 it even globally without an error. */
1386 else if (! DECL_BUILT_IN (olddecl
))
1387 warning (0, "library function %q#D redeclared as non-function %q+#D",
1390 error ("declaration of %q+#D conflicts with built-in "
1391 "declaration %q#D", newdecl
, olddecl
);
1394 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl
))
1396 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl
));
1397 error_at (DECL_SOURCE_LOCATION (newdecl
),
1398 "redeclaration of %<pragma omp declare reduction%>");
1399 inform (DECL_SOURCE_LOCATION (olddecl
),
1400 "previous %<pragma omp declare reduction%> declaration");
1401 return error_mark_node
;
1403 else if (!types_match
)
1405 /* Avoid warnings redeclaring built-ins which have not been
1406 explicitly declared. */
1407 if (DECL_ANTICIPATED (olddecl
))
1409 /* Deal with fileptr_type_node. FILE type is not known
1410 at the time we create the builtins. */
1413 for (t1
= TYPE_ARG_TYPES (TREE_TYPE (newdecl
)),
1414 t2
= TYPE_ARG_TYPES (TREE_TYPE (olddecl
));
1416 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
1419 else if (TREE_VALUE (t2
) == fileptr_type_node
)
1421 tree t
= TREE_VALUE (t1
);
1424 && TYPE_IDENTIFIER (TREE_TYPE (t
))
1425 == get_identifier ("FILE")
1426 && compparms (TREE_CHAIN (t1
), TREE_CHAIN (t2
)))
1428 tree oldargs
= TYPE_ARG_TYPES (TREE_TYPE (olddecl
));
1430 TYPE_ARG_TYPES (TREE_TYPE (olddecl
))
1431 = TYPE_ARG_TYPES (TREE_TYPE (newdecl
));
1432 types_match
= decls_match (newdecl
, olddecl
);
1434 return duplicate_decls (newdecl
, olddecl
,
1436 TYPE_ARG_TYPES (TREE_TYPE (olddecl
)) = oldargs
;
1439 else if (! same_type_p (TREE_VALUE (t1
), TREE_VALUE (t2
)))
1442 else if ((DECL_EXTERN_C_P (newdecl
)
1443 && DECL_EXTERN_C_P (olddecl
))
1444 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl
)),
1445 TYPE_ARG_TYPES (TREE_TYPE (olddecl
))))
1447 /* A near match; override the builtin. */
1449 if (TREE_PUBLIC (newdecl
))
1450 warning (0, "new declaration %q+#D ambiguates built-in "
1451 "declaration %q#D", newdecl
, olddecl
);
1453 warning (OPT_Wshadow
,
1454 DECL_BUILT_IN (olddecl
)
1455 ? G_("shadowing built-in function %q#D")
1456 : G_("shadowing library function %q#D"), olddecl
);
1459 /* Discard the old built-in function. */
1462 /* Replace the old RTL to avoid problems with inlining. */
1463 COPY_DECL_RTL (newdecl
, olddecl
);
1465 /* Even if the types match, prefer the new declarations type for
1466 built-ins which have not been explicitly declared, for
1467 exception lists, etc... */
1468 else if (DECL_IS_BUILTIN (olddecl
))
1470 tree type
= TREE_TYPE (newdecl
);
1471 tree attribs
= (*targetm
.merge_type_attributes
)
1472 (TREE_TYPE (olddecl
), type
);
1474 type
= cp_build_type_attribute_variant (type
, attribs
);
1475 TREE_TYPE (newdecl
) = TREE_TYPE (olddecl
) = type
;
1478 /* If a function is explicitly declared "throw ()", propagate that to
1479 the corresponding builtin. */
1480 if (DECL_BUILT_IN_CLASS (olddecl
) == BUILT_IN_NORMAL
1481 && DECL_ANTICIPATED (olddecl
)
1482 && TREE_NOTHROW (newdecl
)
1483 && !TREE_NOTHROW (olddecl
))
1485 enum built_in_function fncode
= DECL_FUNCTION_CODE (olddecl
);
1486 tree tmpdecl
= builtin_decl_explicit (fncode
);
1487 if (tmpdecl
&& tmpdecl
!= olddecl
&& types_match
)
1488 TREE_NOTHROW (tmpdecl
) = 1;
1491 /* Whether or not the builtin can throw exceptions has no
1492 bearing on this declarator. */
1493 TREE_NOTHROW (olddecl
) = 0;
1495 if (DECL_THIS_STATIC (newdecl
) && !DECL_THIS_STATIC (olddecl
))
1497 /* If a builtin function is redeclared as `static', merge
1498 the declarations, but make the original one static. */
1499 DECL_THIS_STATIC (olddecl
) = 1;
1500 TREE_PUBLIC (olddecl
) = 0;
1502 /* Make the old declaration consistent with the new one so
1503 that all remnants of the builtin-ness of this function
1504 will be banished. */
1505 SET_DECL_LANGUAGE (olddecl
, DECL_LANGUAGE (newdecl
));
1506 COPY_DECL_RTL (newdecl
, olddecl
);
1509 else if (TREE_CODE (olddecl
) != TREE_CODE (newdecl
))
1511 /* C++ Standard, 3.3, clause 4:
1512 "[Note: a namespace name or a class template name must be unique
1513 in its declarative region (7.3.2, clause 14). ]" */
1514 if (TREE_CODE (olddecl
) != NAMESPACE_DECL
1515 && TREE_CODE (newdecl
) != NAMESPACE_DECL
1516 && (TREE_CODE (olddecl
) != TEMPLATE_DECL
1517 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl
)) != TYPE_DECL
)
1518 && (TREE_CODE (newdecl
) != TEMPLATE_DECL
1519 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl
)) != TYPE_DECL
))
1521 if ((TREE_CODE (olddecl
) == TYPE_DECL
&& DECL_ARTIFICIAL (olddecl
)
1522 && TREE_CODE (newdecl
) != TYPE_DECL
)
1523 || (TREE_CODE (newdecl
) == TYPE_DECL
&& DECL_ARTIFICIAL (newdecl
)
1524 && TREE_CODE (olddecl
) != TYPE_DECL
))
1526 /* We do nothing special here, because C++ does such nasty
1527 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1528 get shadowed, and know that if we need to find a TYPE_DECL
1529 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1530 slot of the identifier. */
1534 if ((TREE_CODE (newdecl
) == FUNCTION_DECL
1535 && DECL_FUNCTION_TEMPLATE_P (olddecl
))
1536 || (TREE_CODE (olddecl
) == FUNCTION_DECL
1537 && DECL_FUNCTION_TEMPLATE_P (newdecl
)))
1541 error ("%q#D redeclared as different kind of symbol", newdecl
);
1542 if (TREE_CODE (olddecl
) == TREE_LIST
)
1543 olddecl
= TREE_VALUE (olddecl
);
1544 inform (DECL_SOURCE_LOCATION (olddecl
),
1545 "previous declaration %q#D", olddecl
);
1547 return error_mark_node
;
1549 else if (!types_match
)
1551 if (CP_DECL_CONTEXT (newdecl
) != CP_DECL_CONTEXT (olddecl
))
1552 /* These are certainly not duplicate declarations; they're
1553 from different scopes. */
1556 if (TREE_CODE (newdecl
) == TEMPLATE_DECL
)
1558 /* The name of a class template may not be declared to refer to
1559 any other template, class, function, object, namespace, value,
1560 or type in the same scope. */
1561 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl
)) == TYPE_DECL
1562 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl
)) == TYPE_DECL
)
1564 error ("conflicting declaration of template %q+#D", newdecl
);
1565 inform (DECL_SOURCE_LOCATION (olddecl
),
1566 "previous declaration %q#D", olddecl
);
1567 return error_mark_node
;
1569 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl
)) == FUNCTION_DECL
1570 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl
)) == FUNCTION_DECL
1571 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl
))),
1572 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl
))))
1573 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl
),
1574 DECL_TEMPLATE_PARMS (olddecl
))
1575 /* Template functions can be disambiguated by
1577 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl
)),
1578 TREE_TYPE (TREE_TYPE (olddecl
))))
1580 error ("ambiguating new declaration %q+#D", newdecl
);
1581 inform (DECL_SOURCE_LOCATION (olddecl
),
1582 "old declaration %q#D", olddecl
);
1586 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1588 if (DECL_EXTERN_C_P (newdecl
) && DECL_EXTERN_C_P (olddecl
))
1590 error ("conflicting declaration of C function %q+#D",
1592 inform (DECL_SOURCE_LOCATION (olddecl
),
1593 "previous declaration %q#D", olddecl
);
1596 /* For function versions, params and types match, but they
1597 are not ambiguous. */
1598 else if ((!DECL_FUNCTION_VERSIONED (newdecl
)
1599 && !DECL_FUNCTION_VERSIONED (olddecl
))
1600 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl
)),
1601 TYPE_ARG_TYPES (TREE_TYPE (olddecl
))))
1603 error ("ambiguating new declaration of %q+#D", newdecl
);
1604 inform (DECL_SOURCE_LOCATION (olddecl
),
1605 "old declaration %q#D", olddecl
);
1606 return error_mark_node
;
1613 error ("conflicting declaration %q+#D", newdecl
);
1614 inform (DECL_SOURCE_LOCATION (olddecl
),
1615 "previous declaration as %q#D", olddecl
);
1616 return error_mark_node
;
1619 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
1620 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl
)
1621 && (!DECL_TEMPLATE_INFO (newdecl
)
1622 || (DECL_TI_TEMPLATE (newdecl
)
1623 != DECL_TI_TEMPLATE (olddecl
))))
1624 || (DECL_TEMPLATE_SPECIALIZATION (newdecl
)
1625 && (!DECL_TEMPLATE_INFO (olddecl
)
1626 || (DECL_TI_TEMPLATE (olddecl
)
1627 != DECL_TI_TEMPLATE (newdecl
))))))
1628 /* It's OK to have a template specialization and a non-template
1629 with the same type, or to have specializations of two
1630 different templates with the same type. Note that if one is a
1631 specialization, and the other is an instantiation of the same
1632 template, that we do not exit at this point. That situation
1633 can occur if we instantiate a template class, and then
1634 specialize one of its methods. This situation is valid, but
1635 the declarations must be merged in the usual way. */
1637 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
1638 && ((DECL_TEMPLATE_INSTANTIATION (olddecl
)
1639 && !DECL_USE_TEMPLATE (newdecl
))
1640 || (DECL_TEMPLATE_INSTANTIATION (newdecl
)
1641 && !DECL_USE_TEMPLATE (olddecl
))))
1642 /* One of the declarations is a template instantiation, and the
1643 other is not a template at all. That's OK. */
1645 else if (TREE_CODE (newdecl
) == NAMESPACE_DECL
)
1647 /* In [namespace.alias] we have:
1649 In a declarative region, a namespace-alias-definition can be
1650 used to redefine a namespace-alias declared in that declarative
1651 region to refer only to the namespace to which it already
1654 Therefore, if we encounter a second alias directive for the same
1655 alias, we can just ignore the second directive. */
1656 if (DECL_NAMESPACE_ALIAS (newdecl
)
1657 && (DECL_NAMESPACE_ALIAS (newdecl
)
1658 == DECL_NAMESPACE_ALIAS (olddecl
)))
1660 /* [namespace.alias]
1662 A namespace-name or namespace-alias shall not be declared as
1663 the name of any other entity in the same declarative region.
1664 A namespace-name defined at global scope shall not be
1665 declared as the name of any other entity in any global scope
1667 error ("conflicting declaration of namespace %q+D", newdecl
);
1668 inform (DECL_SOURCE_LOCATION (olddecl
),
1669 "previous declaration of namespace %qD here", olddecl
);
1670 return error_mark_node
;
1674 const char *errmsg
= redeclaration_error_message (newdecl
, olddecl
);
1677 error_at (DECL_SOURCE_LOCATION (newdecl
), errmsg
, newdecl
);
1678 if (DECL_NAME (olddecl
) != NULL_TREE
)
1679 inform (input_location
,
1680 (DECL_INITIAL (olddecl
) && namespace_bindings_p ())
1681 ? G_("%q+#D previously defined here")
1682 : G_("%q+#D previously declared here"), olddecl
);
1683 return error_mark_node
;
1685 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
1686 && DECL_INITIAL (olddecl
) != NULL_TREE
1687 && !prototype_p (TREE_TYPE (olddecl
))
1688 && prototype_p (TREE_TYPE (newdecl
)))
1690 /* Prototype decl follows defn w/o prototype. */
1691 if (warning_at (DECL_SOURCE_LOCATION (newdecl
), 0,
1692 "prototype specified for %q+#D", newdecl
))
1693 inform (DECL_SOURCE_LOCATION (olddecl
),
1694 "previous non-prototype definition here");
1696 else if (VAR_OR_FUNCTION_DECL_P (olddecl
)
1697 && DECL_LANGUAGE (newdecl
) != DECL_LANGUAGE (olddecl
))
1700 If two declarations of the same function or object
1701 specify different linkage-specifications ..., the program
1702 is ill-formed.... Except for functions with C++ linkage,
1703 a function declaration without a linkage specification
1704 shall not precede the first linkage specification for
1705 that function. A function can be declared without a
1706 linkage specification after an explicit linkage
1707 specification has been seen; the linkage explicitly
1708 specified in the earlier declaration is not affected by
1709 such a function declaration.
1711 DR 563 raises the question why the restrictions on
1712 functions should not also apply to objects. Older
1713 versions of G++ silently ignore the linkage-specification
1721 which is clearly wrong. Therefore, we now treat objects
1723 if (current_lang_depth () == 0)
1725 /* There is no explicit linkage-specification, so we use
1726 the linkage from the previous declaration. */
1727 if (!DECL_LANG_SPECIFIC (newdecl
))
1728 retrofit_lang_decl (newdecl
);
1729 SET_DECL_LANGUAGE (newdecl
, DECL_LANGUAGE (olddecl
));
1733 error ("conflicting declaration of %q+#D with %qL linkage",
1734 newdecl
, DECL_LANGUAGE (newdecl
));
1735 inform (DECL_SOURCE_LOCATION (olddecl
),
1736 "previous declaration with %qL linkage",
1737 DECL_LANGUAGE (olddecl
));
1741 if (DECL_LANG_SPECIFIC (olddecl
) && DECL_USE_TEMPLATE (olddecl
))
1743 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
)
1745 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1746 if (DECL_FUNCTION_MEMBER_P (olddecl
)
1747 && (/* grokfndecl passes member function templates too
1748 as FUNCTION_DECLs. */
1749 DECL_TEMPLATE_INFO (olddecl
)
1751 Default arguments for a member function of a class
1752 template shall be specified on the initial declaration
1753 of the member function within the class template. */
1754 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl
))))
1755 check_redeclaration_no_default_args (newdecl
);
1758 tree t1
= FUNCTION_FIRST_USER_PARMTYPE (olddecl
);
1759 tree t2
= FUNCTION_FIRST_USER_PARMTYPE (newdecl
);
1762 for (; t1
&& t1
!= void_list_node
;
1763 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
), i
++)
1764 if (TREE_PURPOSE (t1
) && TREE_PURPOSE (t2
))
1766 if (1 == simple_cst_equal (TREE_PURPOSE (t1
),
1769 if (permerror (input_location
,
1770 "default argument given for parameter "
1771 "%d of %q#D", i
, newdecl
))
1772 inform (DECL_SOURCE_LOCATION (olddecl
),
1773 "previous specification in %q#D here",
1778 error ("default argument given for parameter %d "
1779 "of %q#D", i
, newdecl
);
1780 inform (DECL_SOURCE_LOCATION (olddecl
),
1781 "previous specification in %q#D here",
1789 /* Do not merge an implicit typedef with an explicit one. In:
1793 typedef class A A __attribute__ ((foo));
1795 the attribute should apply only to the typedef. */
1796 if (TREE_CODE (olddecl
) == TYPE_DECL
1797 && (DECL_IMPLICIT_TYPEDEF_P (olddecl
)
1798 || DECL_IMPLICIT_TYPEDEF_P (newdecl
)))
1801 /* If new decl is `static' and an `extern' was seen previously,
1803 warn_extern_redeclared_static (newdecl
, olddecl
);
1805 if (!validate_constexpr_redeclaration (olddecl
, newdecl
))
1806 return error_mark_node
;
1808 /* We have committed to returning 1 at this point. */
1809 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1811 /* Now that functions must hold information normally held
1812 by field decls, there is extra work to do so that
1813 declaration information does not get destroyed during
1815 if (DECL_VINDEX (olddecl
))
1816 DECL_VINDEX (newdecl
) = DECL_VINDEX (olddecl
);
1817 if (DECL_CONTEXT (olddecl
))
1818 DECL_CONTEXT (newdecl
) = DECL_CONTEXT (olddecl
);
1819 DECL_STATIC_CONSTRUCTOR (newdecl
) |= DECL_STATIC_CONSTRUCTOR (olddecl
);
1820 DECL_STATIC_DESTRUCTOR (newdecl
) |= DECL_STATIC_DESTRUCTOR (olddecl
);
1821 DECL_PURE_VIRTUAL_P (newdecl
) |= DECL_PURE_VIRTUAL_P (olddecl
);
1822 DECL_VIRTUAL_P (newdecl
) |= DECL_VIRTUAL_P (olddecl
);
1823 DECL_INVALID_OVERRIDER_P (newdecl
) |= DECL_INVALID_OVERRIDER_P (olddecl
);
1824 DECL_FINAL_P (newdecl
) |= DECL_FINAL_P (olddecl
);
1825 DECL_OVERRIDE_P (newdecl
) |= DECL_OVERRIDE_P (olddecl
);
1826 DECL_THIS_STATIC (newdecl
) |= DECL_THIS_STATIC (olddecl
);
1827 if (DECL_OVERLOADED_OPERATOR_P (olddecl
) != ERROR_MARK
)
1828 SET_OVERLOADED_OPERATOR_CODE
1829 (newdecl
, DECL_OVERLOADED_OPERATOR_P (olddecl
));
1830 new_defines_function
= DECL_INITIAL (newdecl
) != NULL_TREE
;
1832 /* Optionally warn about more than one declaration for the same
1833 name, but don't warn about a function declaration followed by a
1835 if (warn_redundant_decls
&& ! DECL_ARTIFICIAL (olddecl
)
1836 && !(new_defines_function
&& DECL_INITIAL (olddecl
) == NULL_TREE
)
1837 /* Don't warn about extern decl followed by definition. */
1838 && !(DECL_EXTERNAL (olddecl
) && ! DECL_EXTERNAL (newdecl
))
1839 /* Don't warn about friends, let add_friend take care of it. */
1840 && ! (newdecl_is_friend
|| DECL_FRIEND_P (olddecl
))
1841 /* Don't warn about declaration followed by specialization. */
1842 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl
)
1843 || DECL_TEMPLATE_SPECIALIZATION (olddecl
)))
1845 if (warning (OPT_Wredundant_decls
,
1846 "redundant redeclaration of %q+D in same scope",
1848 inform (DECL_SOURCE_LOCATION (olddecl
),
1849 "previous declaration of %qD", olddecl
);
1852 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl
)
1853 && DECL_TEMPLATE_SPECIALIZATION (newdecl
)))
1855 if (DECL_DELETED_FN (newdecl
))
1857 error ("deleted definition of %q+D", newdecl
);
1858 inform (DECL_SOURCE_LOCATION (olddecl
),
1859 "previous declaration of %qD", olddecl
);
1861 DECL_DELETED_FN (newdecl
) |= DECL_DELETED_FN (olddecl
);
1865 /* Deal with C++: must preserve virtual function table size. */
1866 if (TREE_CODE (olddecl
) == TYPE_DECL
)
1868 tree newtype
= TREE_TYPE (newdecl
);
1869 tree oldtype
= TREE_TYPE (olddecl
);
1871 if (newtype
!= error_mark_node
&& oldtype
!= error_mark_node
1872 && TYPE_LANG_SPECIFIC (newtype
) && TYPE_LANG_SPECIFIC (oldtype
))
1873 CLASSTYPE_FRIEND_CLASSES (newtype
)
1874 = CLASSTYPE_FRIEND_CLASSES (oldtype
);
1876 DECL_ORIGINAL_TYPE (newdecl
) = DECL_ORIGINAL_TYPE (olddecl
);
1879 /* Copy all the DECL_... slots specified in the new decl
1880 except for any that we copy here from the old type. */
1881 DECL_ATTRIBUTES (newdecl
)
1882 = (*targetm
.merge_decl_attributes
) (olddecl
, newdecl
);
1884 if (DECL_DECLARES_FUNCTION_P (olddecl
) && DECL_DECLARES_FUNCTION_P (newdecl
))
1886 olddecl_friend
= DECL_FRIEND_P (olddecl
);
1887 hidden_friend
= (DECL_ANTICIPATED (olddecl
)
1888 && DECL_HIDDEN_FRIEND_P (olddecl
)
1889 && newdecl_is_friend
);
1892 DECL_ANTICIPATED (olddecl
) = 0;
1893 DECL_HIDDEN_FRIEND_P (olddecl
) = 0;
1897 if (TREE_CODE (newdecl
) == TEMPLATE_DECL
)
1901 old_result
= DECL_TEMPLATE_RESULT (olddecl
);
1902 new_result
= DECL_TEMPLATE_RESULT (newdecl
);
1903 TREE_TYPE (olddecl
) = TREE_TYPE (old_result
);
1904 DECL_TEMPLATE_SPECIALIZATIONS (olddecl
)
1905 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl
),
1906 DECL_TEMPLATE_SPECIALIZATIONS (newdecl
));
1908 DECL_ATTRIBUTES (old_result
)
1909 = (*targetm
.merge_decl_attributes
) (old_result
, new_result
);
1911 if (DECL_FUNCTION_TEMPLATE_P (newdecl
))
1913 /* Per C++11 8.3.6/4, default arguments cannot be added in later
1914 declarations of a function template. */
1915 if (DECL_SOURCE_LOCATION (newdecl
)
1916 != DECL_SOURCE_LOCATION (olddecl
))
1917 check_redeclaration_no_default_args (newdecl
);
1919 check_default_args (newdecl
);
1921 if (GNU_INLINE_P (old_result
) != GNU_INLINE_P (new_result
)
1922 && DECL_INITIAL (new_result
))
1924 if (DECL_INITIAL (old_result
))
1925 DECL_UNINLINABLE (old_result
) = 1;
1927 DECL_UNINLINABLE (old_result
) = DECL_UNINLINABLE (new_result
);
1928 DECL_EXTERNAL (old_result
) = DECL_EXTERNAL (new_result
);
1929 DECL_NOT_REALLY_EXTERN (old_result
)
1930 = DECL_NOT_REALLY_EXTERN (new_result
);
1931 DECL_INTERFACE_KNOWN (old_result
)
1932 = DECL_INTERFACE_KNOWN (new_result
);
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
);
1941 DECL_DECLARED_INLINE_P (old_result
)
1942 |= DECL_DECLARED_INLINE_P (new_result
);
1943 DECL_DISREGARD_INLINE_LIMITS (old_result
)
1944 |= DECL_DISREGARD_INLINE_LIMITS (new_result
);
1945 check_redeclaration_exception_specification (newdecl
, olddecl
);
1949 /* If the new declaration is a definition, update the file and
1950 line information on the declaration, and also make
1951 the old declaration the same definition. */
1952 if (DECL_INITIAL (new_result
) != NULL_TREE
)
1954 DECL_SOURCE_LOCATION (olddecl
)
1955 = DECL_SOURCE_LOCATION (old_result
)
1956 = DECL_SOURCE_LOCATION (newdecl
);
1957 DECL_INITIAL (old_result
) = DECL_INITIAL (new_result
);
1958 if (DECL_FUNCTION_TEMPLATE_P (newdecl
))
1961 DECL_ARGUMENTS (old_result
)
1962 = DECL_ARGUMENTS (new_result
);
1963 for (parm
= DECL_ARGUMENTS (old_result
); parm
;
1964 parm
= DECL_CHAIN (parm
))
1965 DECL_CONTEXT (parm
) = old_result
;
1974 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1975 check_redeclaration_exception_specification (newdecl
, olddecl
);
1977 /* Automatically handles default parameters. */
1978 tree oldtype
= TREE_TYPE (olddecl
);
1981 /* For typedefs use the old type, as the new type's DECL_NAME points
1982 at newdecl, which will be ggc_freed. */
1983 if (TREE_CODE (newdecl
) == TYPE_DECL
)
1986 /* Merge the data types specified in the two decls. */
1987 newtype
= merge_types (TREE_TYPE (newdecl
), TREE_TYPE (olddecl
));
1989 if (VAR_P (newdecl
))
1991 DECL_THIS_EXTERN (newdecl
) |= DECL_THIS_EXTERN (olddecl
);
1992 DECL_INITIALIZED_P (newdecl
) |= DECL_INITIALIZED_P (olddecl
);
1993 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl
)
1994 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl
);
1995 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl
)
1996 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl
);
1998 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
1999 if (DECL_LANG_SPECIFIC (olddecl
)
2000 && CP_DECL_THREADPRIVATE_P (olddecl
))
2002 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
2003 if (!DECL_LANG_SPECIFIC (newdecl
))
2004 retrofit_lang_decl (newdecl
);
2006 CP_DECL_THREADPRIVATE_P (newdecl
) = 1;
2010 TREE_TYPE (newdecl
) = TREE_TYPE (olddecl
) = newtype
;
2012 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2013 check_default_args (newdecl
);
2015 /* Lay the type out, unless already done. */
2016 if (! same_type_p (newtype
, oldtype
)
2017 && TREE_TYPE (newdecl
) != error_mark_node
2018 && !(processing_template_decl
&& uses_template_parms (newdecl
)))
2019 layout_type (TREE_TYPE (newdecl
));
2021 if ((VAR_P (newdecl
)
2022 || TREE_CODE (newdecl
) == PARM_DECL
2023 || TREE_CODE (newdecl
) == RESULT_DECL
2024 || TREE_CODE (newdecl
) == FIELD_DECL
2025 || TREE_CODE (newdecl
) == TYPE_DECL
)
2026 && !(processing_template_decl
&& uses_template_parms (newdecl
)))
2027 layout_decl (newdecl
, 0);
2029 /* Merge the type qualifiers. */
2030 if (TREE_READONLY (newdecl
))
2031 TREE_READONLY (olddecl
) = 1;
2032 if (TREE_THIS_VOLATILE (newdecl
))
2033 TREE_THIS_VOLATILE (olddecl
) = 1;
2034 if (TREE_NOTHROW (newdecl
))
2035 TREE_NOTHROW (olddecl
) = 1;
2037 /* Merge deprecatedness. */
2038 if (TREE_DEPRECATED (newdecl
))
2039 TREE_DEPRECATED (olddecl
) = 1;
2041 /* Preserve function specific target and optimization options */
2042 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2044 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl
)
2045 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl
))
2046 DECL_FUNCTION_SPECIFIC_TARGET (newdecl
)
2047 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl
);
2049 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl
)
2050 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl
))
2051 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl
)
2052 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl
);
2055 /* Merge the initialization information. */
2056 if (DECL_INITIAL (newdecl
) == NULL_TREE
2057 && DECL_INITIAL (olddecl
) != NULL_TREE
)
2059 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
2060 DECL_SOURCE_LOCATION (newdecl
) = DECL_SOURCE_LOCATION (olddecl
);
2061 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2063 DECL_SAVED_TREE (newdecl
) = DECL_SAVED_TREE (olddecl
);
2064 DECL_STRUCT_FUNCTION (newdecl
) = DECL_STRUCT_FUNCTION (olddecl
);
2068 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2070 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl
)
2071 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl
);
2072 DECL_NO_LIMIT_STACK (newdecl
) |= DECL_NO_LIMIT_STACK (olddecl
);
2073 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
2074 TREE_NOTHROW (newdecl
) |= TREE_NOTHROW (olddecl
);
2075 DECL_IS_MALLOC (newdecl
) |= DECL_IS_MALLOC (olddecl
);
2076 DECL_IS_OPERATOR_NEW (newdecl
) |= DECL_IS_OPERATOR_NEW (olddecl
);
2077 DECL_PURE_P (newdecl
) |= DECL_PURE_P (olddecl
);
2078 TREE_READONLY (newdecl
) |= TREE_READONLY (olddecl
);
2079 DECL_LOOPING_CONST_OR_PURE_P (newdecl
)
2080 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl
);
2081 /* Keep the old RTL. */
2082 COPY_DECL_RTL (olddecl
, newdecl
);
2084 else if (VAR_P (newdecl
)
2085 && (DECL_SIZE (olddecl
) || !DECL_SIZE (newdecl
)))
2087 /* Keep the old RTL. We cannot keep the old RTL if the old
2088 declaration was for an incomplete object and the new
2089 declaration is not since many attributes of the RTL will
2091 COPY_DECL_RTL (olddecl
, newdecl
);
2094 /* If cannot merge, then use the new type and qualifiers,
2095 and don't preserve the old rtl. */
2098 /* Clean out any memory we had of the old declaration. */
2099 tree oldstatic
= value_member (olddecl
, static_aggregates
);
2101 TREE_VALUE (oldstatic
) = error_mark_node
;
2103 TREE_TYPE (olddecl
) = TREE_TYPE (newdecl
);
2104 TREE_READONLY (olddecl
) = TREE_READONLY (newdecl
);
2105 TREE_THIS_VOLATILE (olddecl
) = TREE_THIS_VOLATILE (newdecl
);
2106 TREE_SIDE_EFFECTS (olddecl
) = TREE_SIDE_EFFECTS (newdecl
);
2109 /* Merge the storage class information. */
2110 merge_weak (newdecl
, olddecl
);
2112 DECL_DEFER_OUTPUT (newdecl
) |= DECL_DEFER_OUTPUT (olddecl
);
2113 TREE_PUBLIC (newdecl
) = TREE_PUBLIC (olddecl
);
2114 TREE_STATIC (olddecl
) = TREE_STATIC (newdecl
) |= TREE_STATIC (olddecl
);
2115 if (! DECL_EXTERNAL (olddecl
))
2116 DECL_EXTERNAL (newdecl
) = 0;
2118 new_template_info
= NULL_TREE
;
2119 if (DECL_LANG_SPECIFIC (newdecl
) && DECL_LANG_SPECIFIC (olddecl
))
2121 bool new_redefines_gnu_inline
= false;
2123 if (new_defines_function
2124 && ((DECL_INTERFACE_KNOWN (olddecl
)
2125 && TREE_CODE (olddecl
) == FUNCTION_DECL
)
2126 || (TREE_CODE (olddecl
) == TEMPLATE_DECL
2127 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl
))
2128 == FUNCTION_DECL
))))
2132 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
2133 fn
= DECL_TEMPLATE_RESULT (olddecl
);
2135 new_redefines_gnu_inline
= GNU_INLINE_P (fn
) && DECL_INITIAL (fn
);
2138 if (!new_redefines_gnu_inline
)
2140 DECL_INTERFACE_KNOWN (newdecl
) |= DECL_INTERFACE_KNOWN (olddecl
);
2141 DECL_NOT_REALLY_EXTERN (newdecl
) |= DECL_NOT_REALLY_EXTERN (olddecl
);
2142 DECL_COMDAT (newdecl
) |= DECL_COMDAT (olddecl
);
2144 DECL_TEMPLATE_INSTANTIATED (newdecl
)
2145 |= DECL_TEMPLATE_INSTANTIATED (olddecl
);
2146 DECL_ODR_USED (newdecl
) |= DECL_ODR_USED (olddecl
);
2148 /* If the OLDDECL is an instantiation and/or specialization,
2149 then the NEWDECL must be too. But, it may not yet be marked
2150 as such if the caller has created NEWDECL, but has not yet
2151 figured out that it is a redeclaration. */
2152 if (!DECL_USE_TEMPLATE (newdecl
))
2153 DECL_USE_TEMPLATE (newdecl
) = DECL_USE_TEMPLATE (olddecl
);
2155 /* Don't really know how much of the language-specific
2156 values we should copy from old to new. */
2157 DECL_IN_AGGR_P (newdecl
) = DECL_IN_AGGR_P (olddecl
);
2158 DECL_REPO_AVAILABLE_P (newdecl
) = DECL_REPO_AVAILABLE_P (olddecl
);
2159 DECL_INITIALIZED_IN_CLASS_P (newdecl
)
2160 |= DECL_INITIALIZED_IN_CLASS_P (olddecl
);
2162 if (LANG_DECL_HAS_MIN (newdecl
))
2164 DECL_LANG_SPECIFIC (newdecl
)->u
.min
.u2
=
2165 DECL_LANG_SPECIFIC (olddecl
)->u
.min
.u2
;
2166 if (DECL_TEMPLATE_INFO (newdecl
))
2168 new_template_info
= DECL_TEMPLATE_INFO (newdecl
);
2169 if (DECL_TEMPLATE_INSTANTIATION (olddecl
)
2170 && DECL_TEMPLATE_SPECIALIZATION (newdecl
))
2171 /* Remember the presence of explicit specialization args. */
2172 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl
))
2173 = TINFO_USED_TEMPLATE_ID (new_template_info
);
2175 DECL_TEMPLATE_INFO (newdecl
) = DECL_TEMPLATE_INFO (olddecl
);
2177 /* Only functions have these fields. */
2178 if (DECL_DECLARES_FUNCTION_P (newdecl
))
2180 DECL_NONCONVERTING_P (newdecl
) = DECL_NONCONVERTING_P (olddecl
);
2181 DECL_BEFRIENDING_CLASSES (newdecl
)
2182 = chainon (DECL_BEFRIENDING_CLASSES (newdecl
),
2183 DECL_BEFRIENDING_CLASSES (olddecl
));
2184 /* DECL_THUNKS is only valid for virtual functions,
2185 otherwise it is a DECL_FRIEND_CONTEXT. */
2186 if (DECL_VIRTUAL_P (newdecl
))
2187 SET_DECL_THUNKS (newdecl
, DECL_THUNKS (olddecl
));
2189 /* Only variables have this field. */
2190 else if (VAR_P (newdecl
)
2191 && VAR_HAD_UNKNOWN_BOUND (olddecl
))
2192 SET_VAR_HAD_UNKNOWN_BOUND (newdecl
);
2195 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2199 /* Merge parameter attributes. */
2200 tree oldarg
, newarg
;
2201 for (oldarg
= DECL_ARGUMENTS(olddecl
),
2202 newarg
= DECL_ARGUMENTS(newdecl
);
2204 oldarg
= DECL_CHAIN(oldarg
), newarg
= DECL_CHAIN(newarg
)) {
2205 DECL_ATTRIBUTES (newarg
)
2206 = (*targetm
.merge_decl_attributes
) (oldarg
, newarg
);
2207 DECL_ATTRIBUTES (oldarg
) = DECL_ATTRIBUTES (newarg
);
2210 if (DECL_TEMPLATE_INSTANTIATION (olddecl
)
2211 && !DECL_TEMPLATE_INSTANTIATION (newdecl
))
2213 /* If newdecl is not a specialization, then it is not a
2214 template-related function at all. And that means that we
2215 should have exited above, returning 0. */
2216 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl
));
2218 if (DECL_ODR_USED (olddecl
))
2219 /* From [temp.expl.spec]:
2221 If a template, a member template or the member of a class
2222 template is explicitly specialized then that
2223 specialization shall be declared before the first use of
2224 that specialization that would cause an implicit
2225 instantiation to take place, in every translation unit in
2226 which such a use occurs. */
2227 error ("explicit specialization of %qD after first use",
2230 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl
);
2231 DECL_COMDAT (newdecl
) = (TREE_PUBLIC (newdecl
)
2232 && DECL_DECLARED_INLINE_P (newdecl
));
2234 /* Don't propagate visibility from the template to the
2235 specialization here. We'll do that in determine_visibility if
2237 DECL_VISIBILITY_SPECIFIED (olddecl
) = 0;
2239 /* [temp.expl.spec/14] We don't inline explicit specialization
2240 just because the primary template says so. */
2242 /* But still keep DECL_DISREGARD_INLINE_LIMITS in sync with
2243 the always_inline attribute. */
2244 if (DECL_DISREGARD_INLINE_LIMITS (olddecl
)
2245 && !DECL_DISREGARD_INLINE_LIMITS (newdecl
))
2247 if (DECL_DECLARED_INLINE_P (newdecl
))
2248 DECL_DISREGARD_INLINE_LIMITS (newdecl
) = true;
2250 DECL_ATTRIBUTES (newdecl
)
2251 = remove_attribute ("always_inline",
2252 DECL_ATTRIBUTES (newdecl
));
2255 else if (new_defines_function
&& DECL_INITIAL (olddecl
))
2257 /* Never inline re-defined extern inline functions.
2258 FIXME: this could be better handled by keeping both
2259 function as separate declarations. */
2260 DECL_UNINLINABLE (newdecl
) = 1;
2264 if (DECL_PENDING_INLINE_INFO (newdecl
) == 0)
2265 DECL_PENDING_INLINE_INFO (newdecl
) = DECL_PENDING_INLINE_INFO (olddecl
);
2267 DECL_DECLARED_INLINE_P (newdecl
) |= DECL_DECLARED_INLINE_P (olddecl
);
2269 DECL_UNINLINABLE (newdecl
) = DECL_UNINLINABLE (olddecl
)
2270 = (DECL_UNINLINABLE (newdecl
) || DECL_UNINLINABLE (olddecl
));
2272 DECL_DISREGARD_INLINE_LIMITS (newdecl
)
2273 = DECL_DISREGARD_INLINE_LIMITS (olddecl
)
2274 = (DECL_DISREGARD_INLINE_LIMITS (newdecl
)
2275 || DECL_DISREGARD_INLINE_LIMITS (olddecl
));
2278 /* Preserve abstractness on cloned [cd]tors. */
2279 DECL_ABSTRACT_P (newdecl
) = DECL_ABSTRACT_P (olddecl
);
2281 /* Update newdecl's parms to point at olddecl. */
2282 for (parm
= DECL_ARGUMENTS (newdecl
); parm
;
2283 parm
= DECL_CHAIN (parm
))
2284 DECL_CONTEXT (parm
) = olddecl
;
2288 SET_DECL_LANGUAGE (olddecl
, DECL_LANGUAGE (newdecl
));
2289 COPY_DECL_ASSEMBLER_NAME (newdecl
, olddecl
);
2290 COPY_DECL_RTL (newdecl
, olddecl
);
2292 if (! types_match
|| new_defines_function
)
2294 /* These need to be copied so that the names are available.
2295 Note that if the types do match, we'll preserve inline
2296 info and other bits, but if not, we won't. */
2297 DECL_ARGUMENTS (olddecl
) = DECL_ARGUMENTS (newdecl
);
2298 DECL_RESULT (olddecl
) = DECL_RESULT (newdecl
);
2300 /* If redeclaring a builtin function, it stays built in
2301 if newdecl is a gnu_inline definition, or if newdecl is just
2303 if (DECL_BUILT_IN (olddecl
)
2304 && (new_defines_function
? GNU_INLINE_P (newdecl
) : types_match
))
2306 DECL_BUILT_IN_CLASS (newdecl
) = DECL_BUILT_IN_CLASS (olddecl
);
2307 DECL_FUNCTION_CODE (newdecl
) = DECL_FUNCTION_CODE (olddecl
);
2308 /* If we're keeping the built-in definition, keep the rtl,
2309 regardless of declaration matches. */
2310 COPY_DECL_RTL (olddecl
, newdecl
);
2311 if (DECL_BUILT_IN_CLASS (newdecl
) == BUILT_IN_NORMAL
)
2313 enum built_in_function fncode
= DECL_FUNCTION_CODE (newdecl
);
2316 /* If a compatible prototype of these builtin functions
2317 is seen, assume the runtime implements it with the
2318 expected semantics. */
2319 case BUILT_IN_STPCPY
:
2320 if (builtin_decl_explicit_p (fncode
))
2321 set_builtin_decl_implicit_p (fncode
, true);
2324 if (builtin_decl_explicit_p (fncode
))
2325 set_builtin_decl_declared_p (fncode
, true);
2330 if (new_defines_function
)
2331 /* If defining a function declared with other language
2332 linkage, use the previously declared language linkage. */
2333 SET_DECL_LANGUAGE (newdecl
, DECL_LANGUAGE (olddecl
));
2334 else if (types_match
)
2336 DECL_RESULT (newdecl
) = DECL_RESULT (olddecl
);
2337 /* Don't clear out the arguments if we're just redeclaring a
2339 if (DECL_ARGUMENTS (olddecl
))
2340 DECL_ARGUMENTS (newdecl
) = DECL_ARGUMENTS (olddecl
);
2343 else if (TREE_CODE (newdecl
) == NAMESPACE_DECL
)
2344 NAMESPACE_LEVEL (newdecl
) = NAMESPACE_LEVEL (olddecl
);
2346 /* Now preserve various other info from the definition. */
2347 TREE_ADDRESSABLE (newdecl
) = TREE_ADDRESSABLE (olddecl
);
2348 TREE_ASM_WRITTEN (newdecl
) = TREE_ASM_WRITTEN (olddecl
);
2349 DECL_COMMON (newdecl
) = DECL_COMMON (olddecl
);
2350 COPY_DECL_ASSEMBLER_NAME (olddecl
, newdecl
);
2352 /* Warn about conflicting visibility specifications. */
2353 if (DECL_VISIBILITY_SPECIFIED (olddecl
)
2354 && DECL_VISIBILITY_SPECIFIED (newdecl
)
2355 && DECL_VISIBILITY (newdecl
) != DECL_VISIBILITY (olddecl
))
2357 if (warning_at (DECL_SOURCE_LOCATION (newdecl
), OPT_Wattributes
,
2358 "%qD: visibility attribute ignored because it "
2359 "conflicts with previous declaration", newdecl
))
2360 inform (DECL_SOURCE_LOCATION (olddecl
),
2361 "previous declaration of %qD", olddecl
);
2363 /* Choose the declaration which specified visibility. */
2364 if (DECL_VISIBILITY_SPECIFIED (olddecl
))
2366 DECL_VISIBILITY (newdecl
) = DECL_VISIBILITY (olddecl
);
2367 DECL_VISIBILITY_SPECIFIED (newdecl
) = 1;
2369 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2370 so keep this behavior. */
2371 if (VAR_P (newdecl
) && DECL_HAS_INIT_PRIORITY_P (newdecl
))
2373 SET_DECL_INIT_PRIORITY (olddecl
, DECL_INIT_PRIORITY (newdecl
));
2374 DECL_HAS_INIT_PRIORITY_P (olddecl
) = 1;
2376 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2377 if (DECL_ALIGN (olddecl
) > DECL_ALIGN (newdecl
))
2379 DECL_ALIGN (newdecl
) = DECL_ALIGN (olddecl
);
2380 DECL_USER_ALIGN (newdecl
) |= DECL_USER_ALIGN (olddecl
);
2382 DECL_USER_ALIGN (olddecl
) = DECL_USER_ALIGN (newdecl
);
2383 if (TREE_CODE (newdecl
) == FIELD_DECL
)
2384 DECL_PACKED (olddecl
) = DECL_PACKED (newdecl
);
2386 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2387 with that from NEWDECL below. */
2388 if (DECL_LANG_SPECIFIC (olddecl
))
2390 gcc_assert (DECL_LANG_SPECIFIC (olddecl
)
2391 != DECL_LANG_SPECIFIC (newdecl
));
2392 ggc_free (DECL_LANG_SPECIFIC (olddecl
));
2395 /* Merge the USED information. */
2396 if (TREE_USED (olddecl
))
2397 TREE_USED (newdecl
) = 1;
2398 else if (TREE_USED (newdecl
))
2399 TREE_USED (olddecl
) = 1;
2400 if (VAR_P (newdecl
))
2402 if (DECL_READ_P (olddecl
))
2403 DECL_READ_P (newdecl
) = 1;
2404 else if (DECL_READ_P (newdecl
))
2405 DECL_READ_P (olddecl
) = 1;
2407 if (DECL_PRESERVE_P (olddecl
))
2408 DECL_PRESERVE_P (newdecl
) = 1;
2409 else if (DECL_PRESERVE_P (newdecl
))
2410 DECL_PRESERVE_P (olddecl
) = 1;
2412 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2413 to olddecl and deleted. */
2414 if (TREE_CODE (newdecl
) == FUNCTION_DECL
2415 && DECL_FUNCTION_VERSIONED (olddecl
))
2417 /* Set the flag for newdecl so that it gets copied to olddecl. */
2418 DECL_FUNCTION_VERSIONED (newdecl
) = 1;
2419 /* newdecl will be purged after copying to olddecl and is no longer
2421 cgraph_node::delete_function_version (newdecl
);
2424 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2427 struct symtab_node
*snode
= symtab_node::get (olddecl
);
2429 function_size
= sizeof (struct tree_decl_common
);
2431 memcpy ((char *) olddecl
+ sizeof (struct tree_common
),
2432 (char *) newdecl
+ sizeof (struct tree_common
),
2433 function_size
- sizeof (struct tree_common
));
2435 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2436 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2437 sizeof (struct tree_function_decl
) - sizeof (struct tree_decl_common
));
2439 /* Preserve symtab node mapping. */
2440 olddecl
->decl_with_vis
.symtab_node
= snode
;
2442 if (new_template_info
)
2443 /* If newdecl is a template instantiation, it is possible that
2444 the following sequence of events has occurred:
2446 o A friend function was declared in a class template. The
2447 class template was instantiated.
2449 o The instantiation of the friend declaration was
2450 recorded on the instantiation list, and is newdecl.
2452 o Later, however, instantiate_class_template called pushdecl
2453 on the newdecl to perform name injection. But, pushdecl in
2454 turn called duplicate_decls when it discovered that another
2455 declaration of a global function with the same name already
2458 o Here, in duplicate_decls, we decided to clobber newdecl.
2460 If we're going to do that, we'd better make sure that
2461 olddecl, and not newdecl, is on the list of
2462 instantiations so that if we try to do the instantiation
2463 again we won't get the clobbered declaration. */
2464 reregister_specialization (newdecl
,
2470 size_t size
= tree_code_size (TREE_CODE (newdecl
));
2472 memcpy ((char *) olddecl
+ sizeof (struct tree_common
),
2473 (char *) newdecl
+ sizeof (struct tree_common
),
2474 sizeof (struct tree_decl_common
) - sizeof (struct tree_common
));
2475 switch (TREE_CODE (newdecl
))
2485 struct symtab_node
*snode
= NULL
;
2487 if (TREE_CODE (newdecl
) == VAR_DECL
2488 && (TREE_STATIC (olddecl
) || TREE_PUBLIC (olddecl
) || DECL_EXTERNAL (olddecl
)))
2489 snode
= symtab_node::get (olddecl
);
2490 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2491 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2492 size
- sizeof (struct tree_decl_common
)
2493 + TREE_CODE_LENGTH (TREE_CODE (newdecl
)) * sizeof (char *));
2494 if (TREE_CODE (newdecl
) == VAR_DECL
)
2495 olddecl
->decl_with_vis
.symtab_node
= snode
;
2499 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2500 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2501 sizeof (struct tree_decl_non_common
) - sizeof (struct tree_decl_common
)
2502 + TREE_CODE_LENGTH (TREE_CODE (newdecl
)) * sizeof (char *));
2507 if (TREE_CODE (newdecl
) == FUNCTION_DECL
2508 || TREE_CODE (newdecl
) == VAR_DECL
)
2510 if (DECL_EXTERNAL (olddecl
)
2511 || TREE_PUBLIC (olddecl
)
2512 || TREE_STATIC (olddecl
))
2514 /* Merge the section attribute.
2515 We want to issue an error if the sections conflict but that must be
2516 done later in decl_attributes since we are called before attributes
2518 if (DECL_SECTION_NAME (newdecl
) != NULL
)
2519 set_decl_section_name (olddecl
, DECL_SECTION_NAME (newdecl
));
2521 if (DECL_ONE_ONLY (newdecl
))
2523 struct symtab_node
*oldsym
, *newsym
;
2524 if (TREE_CODE (olddecl
) == FUNCTION_DECL
)
2525 oldsym
= cgraph_node::get_create (olddecl
);
2527 oldsym
= varpool_node::get_create (olddecl
);
2528 newsym
= symtab_node::get (newdecl
);
2529 oldsym
->set_comdat_group (newsym
->get_comdat_group ());
2533 if (TREE_CODE (newdecl
) == VAR_DECL
2534 && DECL_THREAD_LOCAL_P (newdecl
))
2535 set_decl_tls_model (olddecl
, DECL_TLS_MODEL (newdecl
));
2538 DECL_UID (olddecl
) = olddecl_uid
;
2540 DECL_FRIEND_P (olddecl
) = 1;
2543 DECL_ANTICIPATED (olddecl
) = 1;
2544 DECL_HIDDEN_FRIEND_P (olddecl
) = 1;
2547 /* NEWDECL contains the merged attribute lists.
2548 Update OLDDECL to be the same. */
2549 DECL_ATTRIBUTES (olddecl
) = DECL_ATTRIBUTES (newdecl
);
2551 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2552 so that encode_section_info has a chance to look at the new decl
2553 flags and attributes. */
2554 if (DECL_RTL_SET_P (olddecl
)
2555 && (TREE_CODE (olddecl
) == FUNCTION_DECL
2557 && TREE_STATIC (olddecl
))))
2558 make_decl_rtl (olddecl
);
2560 /* The NEWDECL will no longer be needed. Because every out-of-class
2561 declaration of a member results in a call to duplicate_decls,
2562 freeing these nodes represents in a significant savings.
2564 Before releasing the node, be sore to remove function from symbol
2565 table that might have been inserted there to record comdat group.
2566 Be sure to however do not free DECL_STRUCT_FUNCTION becuase this
2567 structure is shared in between newdecl and oldecl. */
2568 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2569 DECL_STRUCT_FUNCTION (newdecl
) = NULL
;
2570 if (TREE_CODE (newdecl
) == FUNCTION_DECL
2571 || TREE_CODE (newdecl
) == VAR_DECL
)
2573 struct symtab_node
*snode
= symtab_node::get (newdecl
);
2582 /* Return zero if the declaration NEWDECL is valid
2583 when the declaration OLDDECL (assumed to be for the same name)
2584 has already been seen.
2585 Otherwise return an error message format string with a %s
2586 where the identifier should go. */
2589 redeclaration_error_message (tree newdecl
, tree olddecl
)
2591 if (TREE_CODE (newdecl
) == TYPE_DECL
)
2593 /* Because C++ can put things into name space for free,
2594 constructs like "typedef struct foo { ... } foo"
2595 would look like an erroneous redeclaration. */
2596 if (same_type_p (TREE_TYPE (newdecl
), TREE_TYPE (olddecl
)))
2599 return G_("redefinition of %q#D");
2601 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2603 /* If this is a pure function, its olddecl will actually be
2604 the original initialization to `0' (which we force to call
2605 abort()). Don't complain about redefinition in this case. */
2606 if (DECL_LANG_SPECIFIC (olddecl
) && DECL_PURE_VIRTUAL_P (olddecl
)
2607 && DECL_INITIAL (olddecl
) == NULL_TREE
)
2610 /* If both functions come from different namespaces, this is not
2611 a redeclaration - this is a conflict with a used function. */
2612 if (DECL_NAMESPACE_SCOPE_P (olddecl
)
2613 && DECL_CONTEXT (olddecl
) != DECL_CONTEXT (newdecl
)
2614 && ! decls_match (olddecl
, newdecl
))
2615 return G_("%qD conflicts with used function");
2617 /* We'll complain about linkage mismatches in
2618 warn_extern_redeclared_static. */
2620 /* Defining the same name twice is no good. */
2621 if (DECL_INITIAL (olddecl
) != NULL_TREE
2622 && DECL_INITIAL (newdecl
) != NULL_TREE
)
2624 if (DECL_NAME (olddecl
) == NULL_TREE
)
2625 return G_("%q#D not declared in class");
2626 else if (!GNU_INLINE_P (olddecl
)
2627 || GNU_INLINE_P (newdecl
))
2628 return G_("redefinition of %q#D");
2631 if (DECL_DECLARED_INLINE_P (olddecl
) && DECL_DECLARED_INLINE_P (newdecl
))
2633 bool olda
= GNU_INLINE_P (olddecl
);
2634 bool newa
= GNU_INLINE_P (newdecl
);
2639 return G_("%q+D redeclared inline with "
2640 "%<gnu_inline%> attribute");
2642 return G_("%q+D redeclared inline without "
2643 "%<gnu_inline%> attribute");
2647 check_abi_tag_redeclaration
2648 (olddecl
, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl
)),
2649 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl
)));
2653 else if (TREE_CODE (newdecl
) == TEMPLATE_DECL
)
2657 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl
)) == TYPE_DECL
)
2659 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl
))
2660 && COMPLETE_TYPE_P (TREE_TYPE (olddecl
)))
2661 return G_("redefinition of %q#D");
2665 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl
)) != FUNCTION_DECL
2666 || (DECL_TEMPLATE_RESULT (newdecl
)
2667 == DECL_TEMPLATE_RESULT (olddecl
)))
2670 nt
= DECL_TEMPLATE_RESULT (newdecl
);
2671 if (DECL_TEMPLATE_INFO (nt
))
2672 nt
= DECL_TEMPLATE_RESULT (template_for_substitution (nt
));
2673 ot
= DECL_TEMPLATE_RESULT (olddecl
);
2674 if (DECL_TEMPLATE_INFO (ot
))
2675 ot
= DECL_TEMPLATE_RESULT (template_for_substitution (ot
));
2676 if (DECL_INITIAL (nt
) && DECL_INITIAL (ot
)
2677 && (!GNU_INLINE_P (ot
) || GNU_INLINE_P (nt
)))
2678 return G_("redefinition of %q#D");
2680 if (DECL_DECLARED_INLINE_P (ot
) && DECL_DECLARED_INLINE_P (nt
))
2682 bool olda
= GNU_INLINE_P (ot
);
2683 bool newa
= GNU_INLINE_P (nt
);
2688 return G_("%q+D redeclared inline with "
2689 "%<gnu_inline%> attribute");
2691 return G_("%q+D redeclared inline without "
2692 "%<gnu_inline%> attribute");
2696 /* Core issue #226 (C++0x):
2698 If a friend function template declaration specifies a
2699 default template-argument, that declaration shall be a
2700 definition and shall be the only declaration of the
2701 function template in the translation unit. */
2702 if ((cxx_dialect
!= cxx98
)
2703 && TREE_CODE (ot
) == FUNCTION_DECL
&& DECL_FRIEND_P (ot
)
2704 && !check_default_tmpl_args (nt
, DECL_TEMPLATE_PARMS (newdecl
),
2705 /*is_primary=*/true,
2706 /*is_partial=*/false,
2707 /*is_friend_decl=*/2))
2708 return G_("redeclaration of friend %q#D "
2709 "may not have default template arguments");
2713 else if (VAR_P (newdecl
)
2714 && DECL_THREAD_LOCAL_P (newdecl
) != DECL_THREAD_LOCAL_P (olddecl
)
2715 && (! DECL_LANG_SPECIFIC (olddecl
)
2716 || ! CP_DECL_THREADPRIVATE_P (olddecl
)
2717 || DECL_THREAD_LOCAL_P (newdecl
)))
2719 /* Only variables can be thread-local, and all declarations must
2720 agree on this property. */
2721 if (DECL_THREAD_LOCAL_P (newdecl
))
2722 return G_("thread-local declaration of %q#D follows "
2723 "non-thread-local declaration");
2725 return G_("non-thread-local declaration of %q#D follows "
2726 "thread-local declaration");
2728 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl
))
2730 /* The objects have been declared at namespace scope. If either
2731 is a member of an anonymous union, then this is an invalid
2732 redeclaration. For example:
2738 if ((VAR_P (newdecl
) && DECL_ANON_UNION_VAR_P (newdecl
))
2739 || (VAR_P (olddecl
) && DECL_ANON_UNION_VAR_P (olddecl
)))
2740 return G_("redeclaration of %q#D");
2741 /* If at least one declaration is a reference, there is no
2742 conflict. For example:
2748 if (DECL_EXTERNAL (newdecl
) || DECL_EXTERNAL (olddecl
))
2750 /* Reject two definitions. */
2751 return G_("redefinition of %q#D");
2755 /* Objects declared with block scope: */
2756 /* Reject two definitions, and reject a definition
2757 together with an external reference. */
2758 if (!(DECL_EXTERNAL (newdecl
) && DECL_EXTERNAL (olddecl
)))
2759 return G_("redeclaration of %q#D");
2764 /* Hash and equality functions for the named_label table. */
2767 named_label_hasher::hash (named_label_entry
*ent
)
2769 return DECL_UID (ent
->label_decl
);
2773 named_label_hasher::equal (named_label_entry
*a
, named_label_entry
*b
)
2775 return a
->label_decl
== b
->label_decl
;
2778 /* Create a new label, named ID. */
2781 make_label_decl (tree id
, int local_p
)
2783 struct named_label_entry
*ent
;
2786 decl
= build_decl (input_location
, LABEL_DECL
, id
, void_type_node
);
2788 DECL_CONTEXT (decl
) = current_function_decl
;
2789 DECL_MODE (decl
) = VOIDmode
;
2790 C_DECLARED_LABEL_FLAG (decl
) = local_p
;
2792 /* Say where one reference is to the label, for the sake of the
2793 error if it is not defined. */
2794 DECL_SOURCE_LOCATION (decl
) = input_location
;
2796 /* Record the fact that this identifier is bound to this label. */
2797 SET_IDENTIFIER_LABEL_VALUE (id
, decl
);
2799 /* Create the label htab for the function on demand. */
2801 named_labels
= hash_table
<named_label_hasher
>::create_ggc (13);
2803 /* Record this label on the list of labels used in this function.
2804 We do this before calling make_label_decl so that we get the
2805 IDENTIFIER_LABEL_VALUE before the new label is declared. */
2806 ent
= ggc_cleared_alloc
<named_label_entry
> ();
2807 ent
->label_decl
= decl
;
2809 named_label_entry
**slot
= named_labels
->find_slot (ent
, INSERT
);
2810 gcc_assert (*slot
== NULL
);
2816 /* Look for a label named ID in the current function. If one cannot
2817 be found, create one. (We keep track of used, but undefined,
2818 labels, and complain about them at the end of a function.) */
2821 lookup_label_1 (tree id
)
2825 /* You can't use labels at global scope. */
2826 if (current_function_decl
== NULL_TREE
)
2828 error ("label %qE referenced outside of any function", id
);
2832 /* See if we've already got this label. */
2833 decl
= IDENTIFIER_LABEL_VALUE (id
);
2834 if (decl
!= NULL_TREE
&& DECL_CONTEXT (decl
) == current_function_decl
)
2837 decl
= make_label_decl (id
, /*local_p=*/0);
2841 /* Wrapper for lookup_label_1. */
2844 lookup_label (tree id
)
2847 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
2848 ret
= lookup_label_1 (id
);
2849 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
2853 /* Declare a local label named ID. */
2856 declare_local_label (tree id
)
2859 cp_label_binding bind
;
2861 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
2862 this scope we can restore the old value of IDENTIFIER_TYPE_VALUE. */
2863 bind
.prev_value
= IDENTIFIER_LABEL_VALUE (id
);
2865 decl
= make_label_decl (id
, /*local_p=*/1);
2867 vec_safe_push (current_binding_level
->shadowed_labels
, bind
);
2872 /* Returns nonzero if it is ill-formed to jump past the declaration of
2873 DECL. Returns 2 if it's also a real problem. */
2876 decl_jump_unsafe (tree decl
)
2878 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
2879 with automatic storage duration is not in scope to a point where it is
2880 in scope is ill-formed unless the variable has scalar type, class type
2881 with a trivial default constructor and a trivial destructor, a
2882 cv-qualified version of one of these types, or an array of one of the
2883 preceding types and is declared without an initializer (8.5). */
2884 tree type
= TREE_TYPE (decl
);
2886 if (!VAR_P (decl
) || TREE_STATIC (decl
)
2887 || type
== error_mark_node
)
2890 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl
)
2891 || variably_modified_type_p (type
, NULL_TREE
))
2894 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
))
2900 /* A subroutine of check_previous_goto_1 to identify a branch to the user. */
2903 identify_goto (tree decl
, const location_t
*locus
)
2905 bool complained
= (decl
2906 ? permerror (input_location
, "jump to label %qD", decl
)
2907 : permerror (input_location
, "jump to case label"));
2908 if (complained
&& locus
)
2909 inform (*locus
, " from here");
2913 /* Check that a single previously seen jump to a newly defined label
2914 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
2915 the jump context; NAMES are the names in scope in LEVEL at the jump
2916 context; LOCUS is the source position of the jump or 0. Returns
2917 true if all is well. */
2920 check_previous_goto_1 (tree decl
, cp_binding_level
* level
, tree names
,
2921 bool exited_omp
, const location_t
*locus
)
2923 cp_binding_level
*b
;
2924 bool identified
= false, complained
= false;
2925 bool saw_eh
= false, saw_omp
= false;
2929 complained
= identify_goto (decl
, locus
);
2931 inform (input_location
, " exits OpenMP structured block");
2932 identified
= saw_omp
= true;
2935 for (b
= current_binding_level
; b
; b
= b
->level_chain
)
2937 tree new_decls
, old_decls
= (b
== level
? names
: NULL_TREE
);
2939 for (new_decls
= b
->names
; new_decls
!= old_decls
;
2940 new_decls
= (DECL_P (new_decls
) ? DECL_CHAIN (new_decls
)
2941 : TREE_CHAIN (new_decls
)))
2943 int problem
= decl_jump_unsafe (new_decls
);
2949 complained
= identify_goto (decl
, locus
);
2955 inform (input_location
,
2956 " crosses initialization of %q+#D", new_decls
);
2958 inform (input_location
, " enters scope of %q+#D which has "
2959 "non-trivial destructor", new_decls
);
2965 if ((b
->kind
== sk_try
|| b
->kind
== sk_catch
) && !saw_eh
)
2969 complained
= identify_goto (decl
, locus
);
2974 if (b
->kind
== sk_try
)
2975 inform (input_location
, " enters try block");
2977 inform (input_location
, " enters catch block");
2981 if (b
->kind
== sk_omp
&& !saw_omp
)
2985 complained
= identify_goto (decl
, locus
);
2989 inform (input_location
, " enters OpenMP structured block");
2998 check_previous_goto (tree decl
, struct named_label_use_entry
*use
)
3000 check_previous_goto_1 (decl
, use
->binding_level
,
3001 use
->names_in_scope
, use
->in_omp_scope
,
3002 &use
->o_goto_locus
);
3006 check_switch_goto (cp_binding_level
* level
)
3008 return check_previous_goto_1 (NULL_TREE
, level
, level
->names
, false, NULL
);
3011 /* Check that a new jump to a label DECL is OK. Called by
3012 finish_goto_stmt. */
3015 check_goto (tree decl
)
3017 struct named_label_entry
*ent
, dummy
;
3018 bool saw_catch
= false, identified
= false, complained
= false;
3022 /* We can't know where a computed goto is jumping.
3023 So we assume that it's OK. */
3024 if (TREE_CODE (decl
) != LABEL_DECL
)
3027 /* We didn't record any information about this label when we created it,
3028 and there's not much point since it's trivial to analyze as a return. */
3029 if (decl
== cdtor_label
)
3032 dummy
.label_decl
= decl
;
3033 ent
= named_labels
->find (&dummy
);
3034 gcc_assert (ent
!= NULL
);
3036 /* If the label hasn't been defined yet, defer checking. */
3037 if (! DECL_INITIAL (decl
))
3039 struct named_label_use_entry
*new_use
;
3041 /* Don't bother creating another use if the last goto had the
3042 same data, and will therefore create the same set of errors. */
3044 && ent
->uses
->names_in_scope
== current_binding_level
->names
)
3047 new_use
= ggc_alloc
<named_label_use_entry
> ();
3048 new_use
->binding_level
= current_binding_level
;
3049 new_use
->names_in_scope
= current_binding_level
->names
;
3050 new_use
->o_goto_locus
= input_location
;
3051 new_use
->in_omp_scope
= false;
3053 new_use
->next
= ent
->uses
;
3054 ent
->uses
= new_use
;
3058 if (ent
->in_try_scope
|| ent
->in_catch_scope
3059 || ent
->in_omp_scope
|| !vec_safe_is_empty (ent
->bad_decls
))
3061 complained
= permerror (input_location
, "jump to label %q+D", decl
);
3063 inform (input_location
, " from here");
3067 FOR_EACH_VEC_SAFE_ELT (ent
->bad_decls
, ix
, bad
)
3069 int u
= decl_jump_unsafe (bad
);
3071 if (u
> 1 && DECL_ARTIFICIAL (bad
))
3073 /* Can't skip init of __exception_info. */
3075 inform (DECL_SOURCE_LOCATION (bad
), " enters catch block");
3078 else if (complained
)
3081 inform (input_location
, " skips initialization of %q+#D", bad
);
3083 inform (input_location
, " enters scope of %q+#D which has "
3084 "non-trivial destructor", bad
);
3090 if (ent
->in_try_scope
)
3091 inform (input_location
, " enters try block");
3092 else if (ent
->in_catch_scope
&& !saw_catch
)
3093 inform (input_location
, " enters catch block");
3096 if (ent
->in_omp_scope
)
3099 inform (input_location
, " enters OpenMP structured block");
3101 else if (flag_openmp
)
3103 cp_binding_level
*b
;
3104 for (b
= current_binding_level
; b
; b
= b
->level_chain
)
3106 if (b
== ent
->binding_level
)
3108 if (b
->kind
== sk_omp
)
3112 complained
= permerror (input_location
,
3113 "jump to label %q+D", decl
);
3115 inform (input_location
, " from here");
3119 inform (input_location
, " exits OpenMP structured block");
3126 /* Check that a return is ok wrt OpenMP structured blocks.
3127 Called by finish_return_stmt. Returns true if all is well. */
3130 check_omp_return (void)
3132 cp_binding_level
*b
;
3133 for (b
= current_binding_level
; b
; b
= b
->level_chain
)
3134 if (b
->kind
== sk_omp
)
3136 error ("invalid exit from OpenMP structured block");
3139 else if (b
->kind
== sk_function_parms
)
3144 /* Define a label, specifying the location in the source file.
3145 Return the LABEL_DECL node for the label. */
3148 define_label_1 (location_t location
, tree name
)
3150 struct named_label_entry
*ent
, dummy
;
3151 cp_binding_level
*p
;
3154 decl
= lookup_label (name
);
3156 dummy
.label_decl
= decl
;
3157 ent
= named_labels
->find (&dummy
);
3158 gcc_assert (ent
!= NULL
);
3160 /* After labels, make any new cleanups in the function go into their
3161 own new (temporary) binding contour. */
3162 for (p
= current_binding_level
;
3163 p
->kind
!= sk_function_parms
;
3165 p
->more_cleanups_ok
= 0;
3167 if (name
== get_identifier ("wchar_t"))
3168 permerror (input_location
, "label named wchar_t");
3170 if (DECL_INITIAL (decl
) != NULL_TREE
)
3172 error ("duplicate label %qD", decl
);
3173 return error_mark_node
;
3177 struct named_label_use_entry
*use
;
3179 /* Mark label as having been defined. */
3180 DECL_INITIAL (decl
) = error_mark_node
;
3181 /* Say where in the source. */
3182 DECL_SOURCE_LOCATION (decl
) = location
;
3184 ent
->binding_level
= current_binding_level
;
3185 ent
->names_in_scope
= current_binding_level
->names
;
3187 for (use
= ent
->uses
; use
; use
= use
->next
)
3188 check_previous_goto (decl
, use
);
3195 /* Wrapper for define_label_1. */
3198 define_label (location_t location
, tree name
)
3201 bool running
= timevar_cond_start (TV_NAME_LOOKUP
);
3202 ret
= define_label_1 (location
, name
);
3203 timevar_cond_stop (TV_NAME_LOOKUP
, running
);
3210 cp_binding_level
*level
;
3211 struct cp_switch
*next
;
3212 /* The SWITCH_STMT being built. */
3214 /* A splay-tree mapping the low element of a case range to the high
3215 element, or NULL_TREE if there is no high element. Used to
3216 determine whether or not a new case label duplicates an old case
3217 label. We need a tree, rather than simply a hash table, because
3218 of the GNU case range extension. */
3222 /* A stack of the currently active switch statements. The innermost
3223 switch statement is on the top of the stack. There is no need to
3224 mark the stack for garbage collection because it is only active
3225 during the processing of the body of a function, and we never
3226 collect at that point. */
3228 static struct cp_switch
*switch_stack
;
3230 /* Called right after a switch-statement condition is parsed.
3231 SWITCH_STMT is the switch statement being parsed. */
3234 push_switch (tree switch_stmt
)
3236 struct cp_switch
*p
= XNEW (struct cp_switch
);
3237 p
->level
= current_binding_level
;
3238 p
->next
= switch_stack
;
3239 p
->switch_stmt
= switch_stmt
;
3240 p
->cases
= splay_tree_new (case_compare
, NULL
, NULL
);
3247 struct cp_switch
*cs
= switch_stack
;
3248 location_t switch_location
;
3250 /* Emit warnings as needed. */
3251 switch_location
= EXPR_LOC_OR_LOC (cs
->switch_stmt
, input_location
);
3252 if (!processing_template_decl
)
3253 c_do_switch_warnings (cs
->cases
, switch_location
,
3254 SWITCH_STMT_TYPE (cs
->switch_stmt
),
3255 SWITCH_STMT_COND (cs
->switch_stmt
));
3257 splay_tree_delete (cs
->cases
);
3258 switch_stack
= switch_stack
->next
;
3262 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3263 condition. Note that if TYPE and VALUE are already integral we don't
3264 really do the conversion because the language-independent
3265 warning/optimization code will work better that way. */
3268 case_conversion (tree type
, tree value
)
3270 if (value
== NULL_TREE
)
3273 if (cxx_dialect
>= cxx11
3274 && (SCOPED_ENUM_P (type
)
3275 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value
))))
3277 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type
))
3278 type
= type_promotes_to (type
);
3279 value
= (perform_implicit_conversion_flags
3280 (type
, value
, tf_warning_or_error
,
3281 LOOKUP_IMPLICIT
| LOOKUP_NO_NON_INTEGRAL
));
3283 return cxx_constant_value (value
);
3286 /* Note that we've seen a definition of a case label, and complain if this
3287 is a bad place for one. */
3290 finish_case_label (location_t loc
, tree low_value
, tree high_value
)
3293 cp_binding_level
*p
;
3296 if (processing_template_decl
)
3300 /* For templates, just add the case label; we'll do semantic
3301 analysis at instantiation-time. */
3302 label
= build_decl (loc
, LABEL_DECL
, NULL_TREE
, NULL_TREE
);
3303 return add_stmt (build_case_label (low_value
, high_value
, label
));
3306 /* Find the condition on which this switch statement depends. */
3307 cond
= SWITCH_STMT_COND (switch_stack
->switch_stmt
);
3308 if (cond
&& TREE_CODE (cond
) == TREE_LIST
)
3309 cond
= TREE_VALUE (cond
);
3311 if (!check_switch_goto (switch_stack
->level
))
3312 return error_mark_node
;
3314 type
= SWITCH_STMT_TYPE (switch_stack
->switch_stmt
);
3316 low_value
= case_conversion (type
, low_value
);
3317 high_value
= case_conversion (type
, high_value
);
3319 r
= c_add_case_label (loc
, switch_stack
->cases
, cond
, type
,
3320 low_value
, high_value
);
3322 /* After labels, make any new cleanups in the function go into their
3323 own new (temporary) binding contour. */
3324 for (p
= current_binding_level
;
3325 p
->kind
!= sk_function_parms
;
3327 p
->more_cleanups_ok
= 0;
3332 struct typename_info
{
3340 struct typename_hasher
: ggc_hasher
<tree
>
3342 typedef typename_info
*compare_type
;
3344 /* Hash a TYPENAME_TYPE. */
3351 hash
= (htab_hash_pointer (TYPE_CONTEXT (t
))
3352 ^ htab_hash_pointer (TYPE_IDENTIFIER (t
)));
3357 /* Compare two TYPENAME_TYPEs. */
3360 equal (tree t1
, const typename_info
*t2
)
3362 return (TYPE_IDENTIFIER (t1
) == t2
->name
3363 && TYPE_CONTEXT (t1
) == t2
->scope
3364 && TYPENAME_TYPE_FULLNAME (t1
) == t2
->template_id
3365 && TYPENAME_IS_ENUM_P (t1
) == t2
->enum_p
3366 && TYPENAME_IS_CLASS_P (t1
) == t2
->class_p
);
3370 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3371 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3373 Returns the new TYPENAME_TYPE. */
3375 static GTY (()) hash_table
<typename_hasher
> *typename_htab
;
3378 build_typename_type (tree context
, tree name
, tree fullname
,
3379 enum tag_types tag_type
)
3387 if (typename_htab
== NULL
)
3388 typename_htab
= hash_table
<typename_hasher
>::create_ggc (61);
3390 ti
.scope
= FROB_CONTEXT (context
);
3392 ti
.template_id
= fullname
;
3393 ti
.enum_p
= tag_type
== enum_type
;
3394 ti
.class_p
= (tag_type
== class_type
3395 || tag_type
== record_type
3396 || tag_type
== union_type
);
3397 hash
= (htab_hash_pointer (ti
.scope
)
3398 ^ htab_hash_pointer (ti
.name
));
3400 /* See if we already have this type. */
3401 e
= typename_htab
->find_slot_with_hash (&ti
, hash
, INSERT
);
3406 /* Build the TYPENAME_TYPE. */
3407 t
= cxx_make_type (TYPENAME_TYPE
);
3408 TYPE_CONTEXT (t
) = ti
.scope
;
3409 TYPENAME_TYPE_FULLNAME (t
) = ti
.template_id
;
3410 TYPENAME_IS_ENUM_P (t
) = ti
.enum_p
;
3411 TYPENAME_IS_CLASS_P (t
) = ti
.class_p
;
3413 /* Build the corresponding TYPE_DECL. */
3414 d
= build_decl (input_location
, TYPE_DECL
, name
, t
);
3415 TYPE_NAME (TREE_TYPE (d
)) = d
;
3416 TYPE_STUB_DECL (TREE_TYPE (d
)) = d
;
3417 DECL_CONTEXT (d
) = FROB_CONTEXT (context
);
3418 DECL_ARTIFICIAL (d
) = 1;
3420 /* Store it in the hash table. */
3423 /* TYPENAME_TYPEs must always be compared structurally, because
3424 they may or may not resolve down to another type depending on
3425 the currently open classes. */
3426 SET_TYPE_STRUCTURAL_EQUALITY (t
);
3432 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3433 provided to name the type. Returns an appropriate type, unless an
3434 error occurs, in which case error_mark_node is returned. If we
3435 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3436 return that, rather than the _TYPE it corresponds to, in other
3437 cases we look through the type decl. If TF_ERROR is set, complain
3438 about errors, otherwise be quiet. */
3441 make_typename_type (tree context
, tree name
, enum tag_types tag_type
,
3442 tsubst_flags_t complain
)
3448 if (name
== error_mark_node
3449 || context
== NULL_TREE
3450 || context
== error_mark_node
)
3451 return error_mark_node
;
3455 if (!(TYPE_LANG_SPECIFIC (name
)
3456 && (CLASSTYPE_IS_TEMPLATE (name
)
3457 || CLASSTYPE_USE_TEMPLATE (name
))))
3458 name
= TYPE_IDENTIFIER (name
);
3460 /* Create a TEMPLATE_ID_EXPR for the type. */
3461 name
= build_nt (TEMPLATE_ID_EXPR
,
3462 CLASSTYPE_TI_TEMPLATE (name
),
3463 CLASSTYPE_TI_ARGS (name
));
3465 else if (TREE_CODE (name
) == TYPE_DECL
)
3466 name
= DECL_NAME (name
);
3470 if (TREE_CODE (name
) == TEMPLATE_ID_EXPR
)
3472 name
= TREE_OPERAND (name
, 0);
3473 if (DECL_TYPE_TEMPLATE_P (name
))
3474 name
= TREE_OPERAND (fullname
, 0) = DECL_NAME (name
);
3475 if (TREE_CODE (name
) != IDENTIFIER_NODE
)
3477 if (complain
& tf_error
)
3478 error ("%qD is not a type", name
);
3479 return error_mark_node
;
3482 if (TREE_CODE (name
) == TEMPLATE_DECL
)
3484 if (complain
& tf_error
)
3485 error ("%qD used without template parameters", name
);
3486 return error_mark_node
;
3488 gcc_assert (identifier_p (name
));
3489 gcc_assert (TYPE_P (context
));
3491 if (!MAYBE_CLASS_TYPE_P (context
))
3493 if (complain
& tf_error
)
3494 error ("%q#T is not a class", context
);
3495 return error_mark_node
;
3498 /* When the CONTEXT is a dependent type, NAME could refer to a
3499 dependent base class of CONTEXT. But look inside it anyway
3500 if CONTEXT is a currently open scope, in case it refers to a
3501 member of the current instantiation or a non-dependent base;
3502 lookup will stop when we hit a dependent base. */
3503 if (!dependent_scope_p (context
))
3504 /* We should only set WANT_TYPE when we're a nested typename type.
3505 Then we can give better diagnostics if we find a non-type. */
3506 t
= lookup_field (context
, name
, 2, /*want_type=*/true);
3510 if ((!t
|| TREE_CODE (t
) == TREE_LIST
) && dependent_type_p (context
))
3511 return build_typename_type (context
, name
, fullname
, tag_type
);
3513 want_template
= TREE_CODE (fullname
) == TEMPLATE_ID_EXPR
;
3517 if (complain
& tf_error
)
3518 error (want_template
? G_("no class template named %q#T in %q#T")
3519 : G_("no type named %q#T in %q#T"), name
, context
);
3520 return error_mark_node
;
3523 /* Pull out the template from an injected-class-name (or multiple). */
3525 t
= maybe_get_template_decl_from_type_decl (t
);
3527 if (TREE_CODE (t
) == TREE_LIST
)
3529 if (complain
& tf_error
)
3531 error ("lookup of %qT in %qT is ambiguous", name
, context
);
3532 print_candidates (t
);
3534 return error_mark_node
;
3537 if (want_template
&& !DECL_TYPE_TEMPLATE_P (t
))
3539 if (complain
& tf_error
)
3540 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3542 return error_mark_node
;
3544 if (!want_template
&& TREE_CODE (t
) != TYPE_DECL
)
3546 if (complain
& tf_error
)
3547 error ("%<typename %T::%D%> names %q#T, which is not a type",
3549 return error_mark_node
;
3552 if (!perform_or_defer_access_check (TYPE_BINFO (context
), t
, t
, complain
))
3553 return error_mark_node
;
3555 /* If we are currently parsing a template and if T is a typedef accessed
3556 through CONTEXT then we need to remember and check access of T at
3557 template instantiation time. */
3558 add_typedef_to_current_template_for_access_check (t
, context
, input_location
);
3561 return lookup_template_class (t
, TREE_OPERAND (fullname
, 1),
3563 /*entering_scope=*/0,
3564 complain
| tf_user
);
3566 if (DECL_ARTIFICIAL (t
) || !(complain
& tf_keep_type_decl
))
3569 maybe_record_typedef_use (t
);
3574 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3575 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3576 in which case error_mark_node is returned.
3578 If PARM_LIST is non-NULL, also make sure that the template parameter
3579 list of TEMPLATE_DECL matches.
3581 If COMPLAIN zero, don't complain about any errors that occur. */
3584 make_unbound_class_template (tree context
, tree name
, tree parm_list
,
3585 tsubst_flags_t complain
)
3591 name
= TYPE_IDENTIFIER (name
);
3592 else if (DECL_P (name
))
3593 name
= DECL_NAME (name
);
3594 gcc_assert (identifier_p (name
));
3596 if (!dependent_type_p (context
)
3597 || currently_open_class (context
))
3599 tree tmpl
= NULL_TREE
;
3601 if (MAYBE_CLASS_TYPE_P (context
))
3602 tmpl
= lookup_field (context
, name
, 0, false);
3604 if (tmpl
&& TREE_CODE (tmpl
) == TYPE_DECL
)
3605 tmpl
= maybe_get_template_decl_from_type_decl (tmpl
);
3607 if (!tmpl
|| !DECL_TYPE_TEMPLATE_P (tmpl
))
3609 if (complain
& tf_error
)
3610 error ("no class template named %q#T in %q#T", name
, context
);
3611 return error_mark_node
;
3615 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl
), parm_list
))
3617 if (complain
& tf_error
)
3619 error ("template parameters do not match template %qD", tmpl
);
3620 inform (DECL_SOURCE_LOCATION (tmpl
),
3621 "%qD declared here", tmpl
);
3623 return error_mark_node
;
3626 if (!perform_or_defer_access_check (TYPE_BINFO (context
), tmpl
, tmpl
,
3628 return error_mark_node
;
3633 /* Build the UNBOUND_CLASS_TEMPLATE. */
3634 t
= cxx_make_type (UNBOUND_CLASS_TEMPLATE
);
3635 TYPE_CONTEXT (t
) = FROB_CONTEXT (context
);
3636 TREE_TYPE (t
) = NULL_TREE
;
3637 SET_TYPE_STRUCTURAL_EQUALITY (t
);
3639 /* Build the corresponding TEMPLATE_DECL. */
3640 d
= build_decl (input_location
, TEMPLATE_DECL
, name
, t
);
3641 TYPE_NAME (TREE_TYPE (d
)) = d
;
3642 TYPE_STUB_DECL (TREE_TYPE (d
)) = d
;
3643 DECL_CONTEXT (d
) = FROB_CONTEXT (context
);
3644 DECL_ARTIFICIAL (d
) = 1;
3645 DECL_TEMPLATE_PARMS (d
) = parm_list
;
3652 /* Push the declarations of builtin types into the namespace.
3653 RID_INDEX is the index of the builtin type in the array
3654 RID_POINTERS. NAME is the name used when looking up the builtin
3655 type. TYPE is the _TYPE node for the builtin type. */
3658 record_builtin_type (enum rid rid_index
,
3662 tree rname
= NULL_TREE
, tname
= NULL_TREE
;
3663 tree tdecl
= NULL_TREE
;
3665 if ((int) rid_index
< (int) RID_MAX
)
3666 rname
= ridpointers
[(int) rid_index
];
3668 tname
= get_identifier (name
);
3670 /* The calls to SET_IDENTIFIER_GLOBAL_VALUE below should be
3671 eliminated. Built-in types should not be looked up name; their
3672 names are keywords that the parser can recognize. However, there
3673 is code in c-common.c that uses identifier_global_value to look
3674 up built-in types by name. */
3677 tdecl
= build_decl (BUILTINS_LOCATION
, TYPE_DECL
, tname
, type
);
3678 DECL_ARTIFICIAL (tdecl
) = 1;
3679 SET_IDENTIFIER_GLOBAL_VALUE (tname
, tdecl
);
3685 tdecl
= build_decl (BUILTINS_LOCATION
, TYPE_DECL
, rname
, type
);
3686 DECL_ARTIFICIAL (tdecl
) = 1;
3688 SET_IDENTIFIER_GLOBAL_VALUE (rname
, tdecl
);
3691 if (!TYPE_NAME (type
))
3692 TYPE_NAME (type
) = tdecl
;
3695 debug_hooks
->type_decl (tdecl
, 0);
3698 /* Record one of the standard Java types.
3699 * Declare it as having the given NAME.
3700 * If SIZE > 0, it is the size of one of the integral types;
3701 * otherwise it is the negative of the size of one of the other types. */
3704 record_builtin_java_type (const char* name
, int size
)
3709 type
= build_nonstandard_integer_type (size
, 0);
3710 type
= build_distinct_type_copy (type
);
3712 else if (size
> -32)
3715 /* "__java_char" or ""__java_boolean". */
3716 type
= build_nonstandard_integer_type (-size
, 1);
3717 type
= build_distinct_type_copy (type
);
3718 /* Get the signed type cached and attached to the unsigned type,
3719 so it doesn't get garbage-collected at "random" times,
3720 causing potential codegen differences out of different UIDs
3721 and different alias set numbers. */
3722 stype
= build_nonstandard_integer_type (-size
, 0);
3723 stype
= build_distinct_type_copy (stype
);
3724 TREE_CHAIN (type
) = stype
;
3725 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
3728 { /* "__java_float" or ""__java_double". */
3729 type
= make_node (REAL_TYPE
);
3730 TYPE_PRECISION (type
) = - size
;
3733 record_builtin_type (RID_MAX
, name
, type
);
3734 decl
= TYPE_NAME (type
);
3736 /* Suppress generate debug symbol entries for these types,
3737 since for normal C++ they are just clutter.
3738 However, push_lang_context undoes this if extern "Java" is seen. */
3739 DECL_IGNORED_P (decl
) = 1;
3741 TYPE_FOR_JAVA (type
) = 1;
3745 /* Push a type into the namespace so that the back ends ignore it. */
3748 record_unknown_type (tree type
, const char* name
)
3750 tree decl
= pushdecl (build_decl (UNKNOWN_LOCATION
,
3751 TYPE_DECL
, get_identifier (name
), type
));
3752 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3753 DECL_IGNORED_P (decl
) = 1;
3754 TYPE_DECL_SUPPRESS_DEBUG (decl
) = 1;
3755 TYPE_SIZE (type
) = TYPE_SIZE (void_type_node
);
3756 TYPE_ALIGN (type
) = 1;
3757 TYPE_USER_ALIGN (type
) = 0;
3758 SET_TYPE_MODE (type
, TYPE_MODE (void_type_node
));
3761 /* A string for which we should create an IDENTIFIER_NODE at
3764 typedef struct predefined_identifier
3766 /* The name of the identifier. */
3767 const char *const name
;
3768 /* The place where the IDENTIFIER_NODE should be stored. */
3770 /* Nonzero if this is the name of a constructor or destructor. */
3771 const int ctor_or_dtor_p
;
3772 } predefined_identifier
;
3774 /* Create all the predefined identifiers. */
3777 initialize_predefined_identifiers (void)
3779 const predefined_identifier
*pid
;
3781 /* A table of identifiers to create at startup. */
3782 static const predefined_identifier predefined_identifiers
[] = {
3783 { "C++", &lang_name_cplusplus
, 0 },
3784 { "C", &lang_name_c
, 0 },
3785 { "Java", &lang_name_java
, 0 },
3786 /* Some of these names have a trailing space so that it is
3787 impossible for them to conflict with names written by users. */
3788 { "__ct ", &ctor_identifier
, 1 },
3789 { "__base_ctor ", &base_ctor_identifier
, 1 },
3790 { "__comp_ctor ", &complete_ctor_identifier
, 1 },
3791 { "__dt ", &dtor_identifier
, 1 },
3792 { "__comp_dtor ", &complete_dtor_identifier
, 1 },
3793 { "__base_dtor ", &base_dtor_identifier
, 1 },
3794 { "__deleting_dtor ", &deleting_dtor_identifier
, 1 },
3795 { IN_CHARGE_NAME
, &in_charge_identifier
, 0 },
3796 { "nelts", &nelts_identifier
, 0 },
3797 { THIS_NAME
, &this_identifier
, 0 },
3798 { VTABLE_DELTA_NAME
, &delta_identifier
, 0 },
3799 { VTABLE_PFN_NAME
, &pfn_identifier
, 0 },
3800 { "_vptr", &vptr_identifier
, 0 },
3801 { "__vtt_parm", &vtt_parm_identifier
, 0 },
3802 { "::", &global_scope_name
, 0 },
3803 { "std", &std_identifier
, 0 },
3807 for (pid
= predefined_identifiers
; pid
->name
; ++pid
)
3809 *pid
->node
= get_identifier (pid
->name
);
3810 if (pid
->ctor_or_dtor_p
)
3811 IDENTIFIER_CTOR_OR_DTOR_P (*pid
->node
) = 1;
3815 /* Create the predefined scalar types of C,
3816 and some nodes representing standard constants (0, 1, (void *)0).
3817 Initialize the global binding level.
3818 Make definitions for built-in primitive functions. */
3821 cxx_init_decl_processing (void)
3824 tree void_ftype_ptr
;
3826 /* Create all the identifiers we need. */
3827 initialize_predefined_identifiers ();
3829 /* Create the global variables. */
3830 push_to_top_level ();
3832 current_function_decl
= NULL_TREE
;
3833 current_binding_level
= NULL
;
3834 /* Enter the global namespace. */
3835 gcc_assert (global_namespace
== NULL_TREE
);
3836 global_namespace
= build_lang_decl (NAMESPACE_DECL
, global_scope_name
,
3838 DECL_CONTEXT (global_namespace
) = build_translation_unit_decl (NULL_TREE
);
3839 TREE_PUBLIC (global_namespace
) = 1;
3840 begin_scope (sk_namespace
, global_namespace
);
3842 if (flag_visibility_ms_compat
)
3843 default_visibility
= VISIBILITY_HIDDEN
;
3846 current_lang_name
= lang_name_c
;
3848 /* Create the `std' namespace. */
3849 push_namespace (std_identifier
);
3850 std_node
= current_namespace
;
3853 c_common_nodes_and_builtins ();
3855 java_byte_type_node
= record_builtin_java_type ("__java_byte", 8);
3856 java_short_type_node
= record_builtin_java_type ("__java_short", 16);
3857 java_int_type_node
= record_builtin_java_type ("__java_int", 32);
3858 java_long_type_node
= record_builtin_java_type ("__java_long", 64);
3859 java_float_type_node
= record_builtin_java_type ("__java_float", -32);
3860 java_double_type_node
= record_builtin_java_type ("__java_double", -64);
3861 java_char_type_node
= record_builtin_java_type ("__java_char", -16);
3862 java_boolean_type_node
= record_builtin_java_type ("__java_boolean", -1);
3864 integer_two_node
= build_int_cst (NULL_TREE
, 2);
3866 record_builtin_type (RID_BOOL
, "bool", boolean_type_node
);
3867 truthvalue_type_node
= boolean_type_node
;
3868 truthvalue_false_node
= boolean_false_node
;
3869 truthvalue_true_node
= boolean_true_node
;
3871 empty_except_spec
= build_tree_list (NULL_TREE
, NULL_TREE
);
3872 noexcept_true_spec
= build_tree_list (boolean_true_node
, NULL_TREE
);
3873 noexcept_false_spec
= build_tree_list (boolean_false_node
, NULL_TREE
);
3876 record_builtin_type (RID_MAX
, NULL
, string_type_node
);
3879 delta_type_node
= ptrdiff_type_node
;
3880 vtable_index_type
= ptrdiff_type_node
;
3882 vtt_parm_type
= build_pointer_type (const_ptr_type_node
);
3883 void_ftype
= build_function_type_list (void_type_node
, NULL_TREE
);
3884 void_ftype_ptr
= build_function_type_list (void_type_node
,
3885 ptr_type_node
, NULL_TREE
);
3887 = build_exception_variant (void_ftype_ptr
, empty_except_spec
);
3889 /* C++ extensions */
3891 unknown_type_node
= make_node (LANG_TYPE
);
3892 record_unknown_type (unknown_type_node
, "unknown type");
3894 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
3895 TREE_TYPE (unknown_type_node
) = unknown_type_node
;
3897 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
3899 TYPE_POINTER_TO (unknown_type_node
) = unknown_type_node
;
3900 TYPE_REFERENCE_TO (unknown_type_node
) = unknown_type_node
;
3902 init_list_type_node
= make_node (LANG_TYPE
);
3903 record_unknown_type (init_list_type_node
, "init list");
3906 /* Make sure we get a unique function type, so we can give
3907 its pointer type a name. (This wins for gdb.) */
3908 tree vfunc_type
= make_node (FUNCTION_TYPE
);
3909 TREE_TYPE (vfunc_type
) = integer_type_node
;
3910 TYPE_ARG_TYPES (vfunc_type
) = NULL_TREE
;
3911 layout_type (vfunc_type
);
3913 vtable_entry_type
= build_pointer_type (vfunc_type
);
3915 record_builtin_type (RID_MAX
, VTBL_PTR_TYPE
, vtable_entry_type
);
3918 = build_cplus_array_type (vtable_entry_type
, NULL_TREE
);
3919 layout_type (vtbl_type_node
);
3920 vtbl_type_node
= cp_build_qualified_type (vtbl_type_node
, TYPE_QUAL_CONST
);
3921 record_builtin_type (RID_MAX
, NULL
, vtbl_type_node
);
3922 vtbl_ptr_type_node
= build_pointer_type (vtable_entry_type
);
3923 layout_type (vtbl_ptr_type_node
);
3924 record_builtin_type (RID_MAX
, NULL
, vtbl_ptr_type_node
);
3926 push_namespace (get_identifier ("__cxxabiv1"));
3927 abi_node
= current_namespace
;
3930 global_type_node
= make_node (LANG_TYPE
);
3931 record_unknown_type (global_type_node
, "global type");
3934 current_lang_name
= lang_name_cplusplus
;
3937 tree newattrs
, extvisattr
;
3938 tree newtype
, deltype
;
3939 tree ptr_ftype_sizetype
;
3943 = build_function_type_list (ptr_type_node
, size_type_node
, NULL_TREE
);
3944 if (cxx_dialect
== cxx98
)
3947 tree bad_alloc_type_node
;
3948 tree bad_alloc_decl
;
3950 push_namespace (std_identifier
);
3951 bad_alloc_id
= get_identifier ("bad_alloc");
3952 bad_alloc_type_node
= make_class_type (RECORD_TYPE
);
3953 TYPE_CONTEXT (bad_alloc_type_node
) = current_namespace
;
3955 = create_implicit_typedef (bad_alloc_id
, bad_alloc_type_node
);
3956 DECL_CONTEXT (bad_alloc_decl
) = current_namespace
;
3960 = add_exception_specifier (NULL_TREE
, bad_alloc_type_node
, -1);
3963 new_eh_spec
= noexcept_false_spec
;
3965 /* Ensure attribs.c is initialized. */
3967 extvisattr
= build_tree_list (get_identifier ("externally_visible"),
3969 newattrs
= tree_cons (get_identifier ("alloc_size"),
3970 build_tree_list (NULL_TREE
, integer_one_node
),
3972 newtype
= cp_build_type_attribute_variant (ptr_ftype_sizetype
, newattrs
);
3973 newtype
= build_exception_variant (newtype
, new_eh_spec
);
3974 deltype
= cp_build_type_attribute_variant (void_ftype_ptr
, extvisattr
);
3975 deltype
= build_exception_variant (deltype
, empty_except_spec
);
3976 tree opnew
= push_cp_library_fn (NEW_EXPR
, newtype
, 0);
3977 DECL_IS_MALLOC (opnew
) = 1;
3978 DECL_IS_OPERATOR_NEW (opnew
) = 1;
3979 opnew
= push_cp_library_fn (VEC_NEW_EXPR
, newtype
, 0);
3980 DECL_IS_MALLOC (opnew
) = 1;
3981 DECL_IS_OPERATOR_NEW (opnew
) = 1;
3982 push_cp_library_fn (DELETE_EXPR
, deltype
, ECF_NOTHROW
);
3983 push_cp_library_fn (VEC_DELETE_EXPR
, deltype
, ECF_NOTHROW
);
3984 if (flag_sized_deallocation
)
3986 /* Also push the sized deallocation variants:
3987 void operator delete(void*, std::size_t) throw();
3988 void operator delete[](void*, std::size_t) throw(); */
3989 tree void_ftype_ptr_size
3990 = build_function_type_list (void_type_node
, ptr_type_node
,
3991 size_type_node
, NULL_TREE
);
3992 deltype
= cp_build_type_attribute_variant (void_ftype_ptr_size
,
3994 deltype
= build_exception_variant (deltype
, empty_except_spec
);
3995 push_cp_library_fn (DELETE_EXPR
, deltype
, ECF_NOTHROW
);
3996 push_cp_library_fn (VEC_DELETE_EXPR
, deltype
, ECF_NOTHROW
);
3999 nullptr_type_node
= make_node (NULLPTR_TYPE
);
4000 TYPE_SIZE (nullptr_type_node
) = bitsize_int (GET_MODE_BITSIZE (ptr_mode
));
4001 TYPE_SIZE_UNIT (nullptr_type_node
) = size_int (GET_MODE_SIZE (ptr_mode
));
4002 TYPE_UNSIGNED (nullptr_type_node
) = 1;
4003 TYPE_PRECISION (nullptr_type_node
) = GET_MODE_BITSIZE (ptr_mode
);
4004 SET_TYPE_MODE (nullptr_type_node
, ptr_mode
);
4005 record_builtin_type (RID_MAX
, "decltype(nullptr)", nullptr_type_node
);
4006 nullptr_node
= build_int_cst (nullptr_type_node
, 0);
4010 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype
,
4011 ECF_NORETURN
| ECF_NOTHROW
);
4013 /* Perform other language dependent initializations. */
4014 init_class_processing ();
4015 init_rtti_processing ();
4016 init_template_processing ();
4018 if (flag_exceptions
)
4019 init_exception_processing ();
4021 if (! supports_one_only ())
4024 make_fname_decl
= cp_make_fname_decl
;
4025 start_fname_decls ();
4027 /* Show we use EH for cleanups. */
4028 if (flag_exceptions
)
4029 using_eh_for_cleanups ();
4032 /* Generate an initializer for a function naming variable from
4033 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4034 filled in with the type of the init. */
4037 cp_fname_init (const char* name
, tree
*type_p
)
4039 tree domain
= NULL_TREE
;
4041 tree init
= NULL_TREE
;
4046 length
= strlen (name
);
4047 domain
= build_index_type (size_int (length
));
4048 init
= build_string (length
+ 1, name
);
4051 type
= cp_build_qualified_type (char_type_node
, TYPE_QUAL_CONST
);
4052 type
= build_cplus_array_type (type
, domain
);
4057 TREE_TYPE (init
) = type
;
4059 init
= error_mark_node
;
4064 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4065 the decl, LOC is the location to give the decl, NAME is the
4066 initialization string and TYPE_DEP indicates whether NAME depended
4067 on the type of the function. We make use of that to detect
4068 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4069 at the point of first use, so we mustn't push the decl now. */
4072 cp_make_fname_decl (location_t loc
, tree id
, int type_dep
)
4074 const char *const name
= (type_dep
&& processing_template_decl
4075 ? NULL
: fname_as_string (type_dep
));
4077 tree init
= cp_fname_init (name
, &type
);
4078 tree decl
= build_decl (loc
, VAR_DECL
, id
, type
);
4081 free (CONST_CAST (char *, name
));
4083 /* As we're using pushdecl_with_scope, we must set the context. */
4084 DECL_CONTEXT (decl
) = current_function_decl
;
4086 TREE_STATIC (decl
) = 1;
4087 TREE_READONLY (decl
) = 1;
4088 DECL_ARTIFICIAL (decl
) = 1;
4090 TREE_USED (decl
) = 1;
4092 if (current_function_decl
)
4094 cp_binding_level
*b
= current_binding_level
;
4095 if (b
->kind
== sk_function_parms
)
4096 return error_mark_node
;
4097 while (b
->level_chain
->kind
!= sk_function_parms
)
4099 pushdecl_with_scope (decl
, b
, /*is_friend=*/false);
4100 cp_finish_decl (decl
, init
, /*init_const_expr_p=*/false, NULL_TREE
,
4101 LOOKUP_ONLYCONVERTING
);
4105 DECL_THIS_STATIC (decl
) = true;
4106 pushdecl_top_level_and_finish (decl
, init
);
4113 builtin_function_1 (tree decl
, tree context
, bool is_global
)
4115 tree id
= DECL_NAME (decl
);
4116 const char *name
= IDENTIFIER_POINTER (id
);
4118 retrofit_lang_decl (decl
);
4120 DECL_ARTIFICIAL (decl
) = 1;
4121 SET_OVERLOADED_OPERATOR_CODE (decl
, ERROR_MARK
);
4122 SET_DECL_LANGUAGE (decl
, lang_c
);
4123 /* Runtime library routines are, by definition, available in an
4124 external shared object. */
4125 DECL_VISIBILITY (decl
) = VISIBILITY_DEFAULT
;
4126 DECL_VISIBILITY_SPECIFIED (decl
) = 1;
4128 DECL_CONTEXT (decl
) = context
;
4131 pushdecl_top_level (decl
);
4135 /* A function in the user's namespace should have an explicit
4136 declaration before it is used. Mark the built-in function as
4137 anticipated but not actually declared. */
4138 if (name
[0] != '_' || name
[1] != '_')
4139 DECL_ANTICIPATED (decl
) = 1;
4140 else if (strncmp (name
+ 2, "builtin_", strlen ("builtin_")) != 0)
4142 size_t len
= strlen (name
);
4144 /* Treat __*_chk fortification functions as anticipated as well,
4145 unless they are __builtin_*. */
4146 if (len
> strlen ("___chk")
4147 && memcmp (name
+ len
- strlen ("_chk"),
4148 "_chk", strlen ("_chk") + 1) == 0)
4149 DECL_ANTICIPATED (decl
) = 1;
4156 cxx_builtin_function (tree decl
)
4158 tree id
= DECL_NAME (decl
);
4159 const char *name
= IDENTIFIER_POINTER (id
);
4160 /* All builtins that don't begin with an '_' should additionally
4161 go in the 'std' namespace. */
4164 tree decl2
= copy_node(decl
);
4165 push_namespace (std_identifier
);
4166 builtin_function_1 (decl2
, std_node
, false);
4170 return builtin_function_1 (decl
, NULL_TREE
, false);
4173 /* Like cxx_builtin_function, but guarantee the function is added to the global
4174 scope. This is to allow function specific options to add new machine
4175 dependent builtins when the target ISA changes via attribute((target(...)))
4176 which saves space on program startup if the program does not use non-generic
4180 cxx_builtin_function_ext_scope (tree decl
)
4183 tree id
= DECL_NAME (decl
);
4184 const char *name
= IDENTIFIER_POINTER (id
);
4185 /* All builtins that don't begin with an '_' should additionally
4186 go in the 'std' namespace. */
4189 tree decl2
= copy_node(decl
);
4190 push_namespace (std_identifier
);
4191 builtin_function_1 (decl2
, std_node
, true);
4195 return builtin_function_1 (decl
, NULL_TREE
, true);
4198 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4199 function. Not called directly. */
4202 build_library_fn (tree name
, enum tree_code operator_code
, tree type
,
4205 tree fn
= build_lang_decl (FUNCTION_DECL
, name
, type
);
4206 DECL_EXTERNAL (fn
) = 1;
4207 TREE_PUBLIC (fn
) = 1;
4208 DECL_ARTIFICIAL (fn
) = 1;
4209 SET_OVERLOADED_OPERATOR_CODE (fn
, operator_code
);
4210 SET_DECL_LANGUAGE (fn
, lang_c
);
4211 /* Runtime library routines are, by definition, available in an
4212 external shared object. */
4213 DECL_VISIBILITY (fn
) = VISIBILITY_DEFAULT
;
4214 DECL_VISIBILITY_SPECIFIED (fn
) = 1;
4215 set_call_expr_flags (fn
, ecf_flags
);
4219 /* Returns the _DECL for a library function with C++ linkage. */
4222 build_cp_library_fn (tree name
, enum tree_code operator_code
, tree type
,
4225 tree fn
= build_library_fn (name
, operator_code
, type
, ecf_flags
);
4226 DECL_CONTEXT (fn
) = FROB_CONTEXT (current_namespace
);
4227 SET_DECL_LANGUAGE (fn
, lang_cplusplus
);
4231 /* Like build_library_fn, but takes a C string instead of an
4235 build_library_fn_ptr (const char* name
, tree type
, int ecf_flags
)
4237 return build_library_fn (get_identifier (name
), ERROR_MARK
, type
, ecf_flags
);
4240 /* Like build_cp_library_fn, but takes a C string instead of an
4244 build_cp_library_fn_ptr (const char* name
, tree type
, int ecf_flags
)
4246 return build_cp_library_fn (get_identifier (name
), ERROR_MARK
, type
,
4250 /* Like build_library_fn, but also pushes the function so that we will
4251 be able to find it via IDENTIFIER_GLOBAL_VALUE. Also, the function
4252 may throw exceptions listed in RAISES. */
4255 push_library_fn (tree name
, tree type
, tree raises
, int ecf_flags
)
4260 type
= build_exception_variant (type
, raises
);
4262 fn
= build_library_fn (name
, ERROR_MARK
, type
, ecf_flags
);
4263 pushdecl_top_level (fn
);
4267 /* Like build_cp_library_fn, but also pushes the function so that it
4268 will be found by normal lookup. */
4271 push_cp_library_fn (enum tree_code operator_code
, tree type
,
4274 tree fn
= build_cp_library_fn (ansi_opname (operator_code
),
4279 apply_tm_attr (fn
, get_identifier ("transaction_safe"));
4283 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4287 push_void_library_fn (tree name
, tree parmtypes
, int ecf_flags
)
4289 tree type
= build_function_type (void_type_node
, parmtypes
);
4290 return push_library_fn (name
, type
, NULL_TREE
, ecf_flags
);
4293 /* Like push_library_fn, but also note that this function throws
4294 and does not return. Used for __throw_foo and the like. */
4297 push_throw_library_fn (tree name
, tree type
)
4299 tree fn
= push_library_fn (name
, type
, NULL_TREE
, ECF_NORETURN
);
4303 /* When we call finish_struct for an anonymous union, we create
4304 default copy constructors and such. But, an anonymous union
4305 shouldn't have such things; this function undoes the damage to the
4306 anonymous union type T.
4308 (The reason that we create the synthesized methods is that we don't
4309 distinguish `union { int i; }' from `typedef union { int i; } U'.
4310 The first is an anonymous union; the second is just an ordinary
4314 fixup_anonymous_aggr (tree t
)
4318 /* Wipe out memory of synthesized methods. */
4319 TYPE_HAS_USER_CONSTRUCTOR (t
) = 0;
4320 TYPE_HAS_DEFAULT_CONSTRUCTOR (t
) = 0;
4321 TYPE_HAS_COPY_CTOR (t
) = 0;
4322 TYPE_HAS_CONST_COPY_CTOR (t
) = 0;
4323 TYPE_HAS_COPY_ASSIGN (t
) = 0;
4324 TYPE_HAS_CONST_COPY_ASSIGN (t
) = 0;
4326 /* Splice the implicitly generated functions out of the TYPE_METHODS
4328 q
= &TYPE_METHODS (t
);
4331 if (DECL_ARTIFICIAL (*q
))
4332 *q
= TREE_CHAIN (*q
);
4334 q
= &DECL_CHAIN (*q
);
4337 /* ISO C++ 9.5.3. Anonymous unions may not have function members. */
4338 if (TYPE_METHODS (t
))
4340 tree decl
= TYPE_MAIN_DECL (t
);
4342 if (TREE_CODE (t
) != UNION_TYPE
)
4343 error_at (DECL_SOURCE_LOCATION (decl
),
4344 "an anonymous struct cannot have function members");
4346 error_at (DECL_SOURCE_LOCATION (decl
),
4347 "an anonymous union cannot have function members");
4350 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4351 assignment operators (because they cannot have these methods themselves).
4352 For anonymous unions this is already checked because they are not allowed
4353 in any union, otherwise we have to check it. */
4354 if (TREE_CODE (t
) != UNION_TYPE
)
4358 for (field
= TYPE_FIELDS (t
); field
; field
= DECL_CHAIN (field
))
4359 if (TREE_CODE (field
) == FIELD_DECL
)
4361 type
= TREE_TYPE (field
);
4362 if (CLASS_TYPE_P (type
))
4364 if (TYPE_NEEDS_CONSTRUCTING (type
))
4365 error ("member %q+#D with constructor not allowed "
4366 "in anonymous aggregate", field
);
4367 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
))
4368 error ("member %q+#D with destructor not allowed "
4369 "in anonymous aggregate", field
);
4370 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type
))
4371 error ("member %q+#D with copy assignment operator "
4372 "not allowed in anonymous aggregate", field
);
4378 /* Warn for an attribute located at LOCATION that appertains to the
4379 class type CLASS_TYPE that has not been properly placed after its
4380 class-key, in it class-specifier. */
4383 warn_misplaced_attr_for_class_type (source_location location
,
4386 gcc_assert (OVERLOAD_TYPE_P (class_type
));
4388 if (warning_at (location
, OPT_Wattributes
,
4389 "attribute ignored in declaration "
4390 "of %q#T", class_type
))
4392 "attribute for %q#T must follow the %qs keyword",
4393 class_type
, class_key_or_enum_as_string (class_type
));
4396 /* Make sure that a declaration with no declarator is well-formed, i.e.
4397 just declares a tagged type or anonymous union.
4399 Returns the type declared; or NULL_TREE if none. */
4402 check_tag_decl (cp_decl_specifier_seq
*declspecs
,
4403 bool explicit_type_instantiation_p
)
4405 int saw_friend
= decl_spec_seq_has_spec_p (declspecs
, ds_friend
);
4406 int saw_typedef
= decl_spec_seq_has_spec_p (declspecs
, ds_typedef
);
4407 /* If a class, struct, or enum type is declared by the DECLSPECS
4408 (i.e, if a class-specifier, enum-specifier, or non-typename
4409 elaborated-type-specifier appears in the DECLSPECS),
4410 DECLARED_TYPE is set to the corresponding type. */
4411 tree declared_type
= NULL_TREE
;
4412 bool error_p
= false;
4414 if (declspecs
->multiple_types_p
)
4415 error ("multiple types in one declaration");
4416 else if (declspecs
->redefined_builtin_type
)
4418 if (!in_system_header_at (input_location
))
4419 permerror (declspecs
->locations
[ds_redefined_builtin_type_spec
],
4420 "redeclaration of C++ built-in type %qT",
4421 declspecs
->redefined_builtin_type
);
4426 && TYPE_P (declspecs
->type
)
4427 && ((TREE_CODE (declspecs
->type
) != TYPENAME_TYPE
4428 && MAYBE_CLASS_TYPE_P (declspecs
->type
))
4429 || TREE_CODE (declspecs
->type
) == ENUMERAL_TYPE
))
4430 declared_type
= declspecs
->type
;
4431 else if (declspecs
->type
== error_mark_node
)
4433 if (declared_type
== NULL_TREE
&& ! saw_friend
&& !error_p
)
4434 permerror (input_location
, "declaration does not declare anything");
4435 else if (declared_type
!= NULL_TREE
&& type_uses_auto (declared_type
))
4437 error ("%<auto%> can only be specified for variables "
4438 "or function declarations");
4439 return error_mark_node
;
4441 /* Check for an anonymous union. */
4442 else if (declared_type
&& RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type
))
4443 && TYPE_ANONYMOUS_P (declared_type
))
4445 /* 7/3 In a simple-declaration, the optional init-declarator-list
4446 can be omitted only when declaring a class (clause 9) or
4447 enumeration (7.2), that is, when the decl-specifier-seq contains
4448 either a class-specifier, an elaborated-type-specifier with
4449 a class-key (9.1), or an enum-specifier. In these cases and
4450 whenever a class-specifier or enum-specifier is present in the
4451 decl-specifier-seq, the identifiers in these specifiers are among
4452 the names being declared by the declaration (as class-name,
4453 enum-names, or enumerators, depending on the syntax). In such
4454 cases, and except for the declaration of an unnamed bit-field (9.6),
4455 the decl-specifier-seq shall introduce one or more names into the
4456 program, or shall redeclare a name introduced by a previous
4457 declaration. [Example:
4458 enum { }; // ill-formed
4459 typedef class { }; // ill-formed
4463 error ("missing type-name in typedef-declaration");
4466 /* Anonymous unions are objects, so they can have specifiers. */;
4467 SET_ANON_AGGR_TYPE_P (declared_type
);
4469 if (TREE_CODE (declared_type
) != UNION_TYPE
4470 && !in_system_header_at (input_location
))
4471 pedwarn (input_location
, OPT_Wpedantic
, "ISO C++ prohibits anonymous structs");
4476 if (decl_spec_seq_has_spec_p (declspecs
, ds_inline
))
4477 error_at (declspecs
->locations
[ds_inline
],
4478 "%<inline%> can only be specified for functions");
4479 else if (decl_spec_seq_has_spec_p (declspecs
, ds_virtual
))
4480 error_at (declspecs
->locations
[ds_virtual
],
4481 "%<virtual%> can only be specified for functions");
4483 && (!current_class_type
4484 || current_scope () != current_class_type
))
4485 error_at (declspecs
->locations
[ds_friend
],
4486 "%<friend%> can only be specified inside a class");
4487 else if (decl_spec_seq_has_spec_p (declspecs
, ds_explicit
))
4488 error_at (declspecs
->locations
[ds_explicit
],
4489 "%<explicit%> can only be specified for constructors");
4490 else if (declspecs
->storage_class
)
4491 error_at (declspecs
->locations
[ds_storage_class
],
4492 "a storage class can only be specified for objects "
4494 else if (decl_spec_seq_has_spec_p (declspecs
, ds_const
))
4495 error_at (declspecs
->locations
[ds_const
],
4496 "%<const%> can only be specified for objects and "
4498 else if (decl_spec_seq_has_spec_p (declspecs
, ds_volatile
))
4499 error_at (declspecs
->locations
[ds_volatile
],
4500 "%<volatile%> can only be specified for objects and "
4502 else if (decl_spec_seq_has_spec_p (declspecs
, ds_restrict
))
4503 error_at (declspecs
->locations
[ds_restrict
],
4504 "%<__restrict%> can only be specified for objects and "
4506 else if (decl_spec_seq_has_spec_p (declspecs
, ds_thread
))
4507 error_at (declspecs
->locations
[ds_thread
],
4508 "%<__thread%> can only be specified for objects "
4510 else if (saw_typedef
)
4511 warning_at (declspecs
->locations
[ds_typedef
], 0,
4512 "%<typedef%> was ignored in this declaration");
4513 else if (decl_spec_seq_has_spec_p (declspecs
, ds_constexpr
))
4514 error_at (declspecs
->locations
[ds_constexpr
],
4515 "%<constexpr%> cannot be used for type declarations");
4518 if (declspecs
->attributes
&& warn_attributes
&& declared_type
)
4521 if (!CLASS_TYPE_P (declared_type
)
4522 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type
))
4523 /* For a non-template class, use the name location. */
4524 loc
= location_of (declared_type
);
4526 /* For a template class (an explicit instantiation), use the
4527 current location. */
4528 loc
= input_location
;
4530 if (explicit_type_instantiation_p
)
4531 /* [dcl.attr.grammar]/4:
4533 No attribute-specifier-seq shall appertain to an explicit
4536 if (warning_at (loc
, OPT_Wattributes
,
4537 "attribute ignored in explicit instantiation %q#T",
4540 "no attribute can be applied to "
4541 "an explicit instantiation");
4544 warn_misplaced_attr_for_class_type (loc
, declared_type
);
4547 return declared_type
;
4550 /* Called when a declaration is seen that contains no names to declare.
4551 If its type is a reference to a structure, union or enum inherited
4552 from a containing scope, shadow that tag name for the current scope
4553 with a forward reference.
4554 If its type defines a new named structure or union
4555 or defines an enum, it is valid but we need not do anything here.
4556 Otherwise, it is an error.
4558 C++: may have to grok the declspecs to learn about static,
4559 complain for anonymous unions.
4561 Returns the TYPE declared -- or NULL_TREE if none. */
4564 shadow_tag (cp_decl_specifier_seq
*declspecs
)
4566 tree t
= check_tag_decl (declspecs
,
4567 /*explicit_type_instantiation_p=*/false);
4572 if (maybe_process_partial_specialization (t
) == error_mark_node
)
4575 /* This is where the variables in an anonymous union are
4576 declared. An anonymous union declaration looks like:
4578 because there is no declarator after the union, the parser
4579 sends that declaration here. */
4580 if (ANON_AGGR_TYPE_P (t
))
4582 fixup_anonymous_aggr (t
);
4584 if (TYPE_FIELDS (t
))
4586 tree decl
= grokdeclarator (/*declarator=*/NULL
,
4587 declspecs
, NORMAL
, 0, NULL
);
4588 finish_anon_union (decl
);
4595 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4598 groktypename (cp_decl_specifier_seq
*type_specifiers
,
4599 const cp_declarator
*declarator
,
4600 bool is_template_arg
)
4604 enum decl_context context
4605 = is_template_arg
? TEMPLATE_TYPE_ARG
: TYPENAME
;
4606 attrs
= type_specifiers
->attributes
;
4607 type_specifiers
->attributes
= NULL_TREE
;
4608 type
= grokdeclarator (declarator
, type_specifiers
, context
, 0, &attrs
);
4609 if (attrs
&& type
!= error_mark_node
)
4611 if (CLASS_TYPE_P (type
))
4612 warning (OPT_Wattributes
, "ignoring attributes applied to class type %qT "
4613 "outside of definition", type
);
4614 else if (MAYBE_CLASS_TYPE_P (type
))
4615 /* A template type parameter or other dependent type. */
4616 warning (OPT_Wattributes
, "ignoring attributes applied to dependent "
4617 "type %qT without an associated declaration", type
);
4619 cplus_decl_attributes (&type
, attrs
, 0);
4624 /* Process a DECLARATOR for a function-scope variable declaration,
4625 namespace-scope variable declaration, or function declaration.
4626 (Function definitions go through start_function; class member
4627 declarations appearing in the body of the class go through
4628 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4629 If an error occurs, the error_mark_node is returned instead.
4631 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
4632 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
4633 for an explicitly defaulted function, or SD_DELETED for an explicitly
4634 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
4635 implicitly initialized via a default constructor. ATTRIBUTES and
4636 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
4638 The scope represented by the context of the returned DECL is pushed
4639 (if it is not the global namespace) and is assigned to
4640 *PUSHED_SCOPE_P. The caller is then responsible for calling
4641 pop_scope on *PUSHED_SCOPE_P if it is set. */
4644 start_decl (const cp_declarator
*declarator
,
4645 cp_decl_specifier_seq
*declspecs
,
4648 tree prefix_attributes
,
4649 tree
*pushed_scope_p
)
4657 *pushed_scope_p
= NULL_TREE
;
4659 /* An object declared as __attribute__((deprecated)) suppresses
4660 warnings of uses of other deprecated items. */
4661 if (lookup_attribute ("deprecated", attributes
))
4662 deprecated_state
= DEPRECATED_SUPPRESS
;
4664 attributes
= chainon (attributes
, prefix_attributes
);
4666 decl
= grokdeclarator (declarator
, declspecs
, NORMAL
, initialized
,
4669 deprecated_state
= DEPRECATED_NORMAL
;
4671 if (decl
== NULL_TREE
|| VOID_TYPE_P (decl
)
4672 || decl
== error_mark_node
)
4673 return error_mark_node
;
4675 context
= CP_DECL_CONTEXT (decl
);
4676 if (context
!= global_namespace
)
4677 *pushed_scope_p
= push_scope (context
);
4679 /* Is it valid for this decl to have an initializer at all?
4680 If not, set INITIALIZED to zero, which will indirectly
4681 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4683 && TREE_CODE (decl
) == TYPE_DECL
)
4685 error ("typedef %qD is initialized (use decltype instead)", decl
);
4686 return error_mark_node
;
4691 if (! toplevel_bindings_p ()
4692 && DECL_EXTERNAL (decl
))
4693 warning (0, "declaration of %q#D has %<extern%> and is initialized",
4695 DECL_EXTERNAL (decl
) = 0;
4696 if (toplevel_bindings_p ())
4697 TREE_STATIC (decl
) = 1;
4699 alias
= lookup_attribute ("alias", DECL_ATTRIBUTES (decl
)) != 0;
4701 if (alias
&& TREE_CODE (decl
) == FUNCTION_DECL
)
4702 record_key_method_defined (decl
);
4704 /* If this is a typedef that names the class for linkage purposes
4705 (7.1.3p8), apply any attributes directly to the type. */
4706 if (TREE_CODE (decl
) == TYPE_DECL
4707 && OVERLOAD_TYPE_P (TREE_TYPE (decl
))
4708 && decl
== TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl
))))
4709 flags
= ATTR_FLAG_TYPE_IN_PLACE
;
4713 /* Set attributes here so if duplicate decl, will have proper attributes. */
4714 cplus_decl_attributes (&decl
, attributes
, flags
);
4716 /* Dllimported symbols cannot be defined. Static data members (which
4717 can be initialized in-class and dllimported) go through grokfield,
4718 not here, so we don't need to exclude those decls when checking for
4720 if (initialized
&& DECL_DLLIMPORT_P (decl
))
4722 error ("definition of %q#D is marked %<dllimport%>", decl
);
4723 DECL_DLLIMPORT_P (decl
) = 0;
4726 /* If #pragma weak was used, mark the decl weak now. */
4727 if (!processing_template_decl
)
4728 maybe_apply_pragma_weak (decl
);
4730 if (TREE_CODE (decl
) == FUNCTION_DECL
4731 && DECL_DECLARED_INLINE_P (decl
)
4732 && DECL_UNINLINABLE (decl
)
4733 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl
)))
4734 warning (0, "inline function %q+D given attribute noinline", decl
);
4736 if (TYPE_P (context
) && COMPLETE_TYPE_P (complete_type (context
)))
4738 bool this_tmpl
= (processing_template_decl
4739 > template_class_depth (context
));
4742 tree field
= lookup_field (context
, DECL_NAME (decl
), 0, false);
4743 if (field
== NULL_TREE
4744 || !(VAR_P (field
) || variable_template_p (field
)))
4745 error ("%q+#D is not a static data member of %q#T", decl
, context
);
4746 else if (variable_template_p (field
) && !this_tmpl
)
4748 if (DECL_LANG_SPECIFIC (decl
)
4749 && DECL_TEMPLATE_SPECIALIZATION (decl
))
4750 /* OK, specialization was already checked. */;
4753 error_at (DECL_SOURCE_LOCATION (decl
),
4754 "non-member-template declaration of %qD", decl
);
4755 inform (DECL_SOURCE_LOCATION (field
), "does not match "
4756 "member template declaration here");
4757 return error_mark_node
;
4762 if (variable_template_p (field
))
4763 field
= DECL_TEMPLATE_RESULT (field
);
4765 if (DECL_CONTEXT (field
) != context
)
4767 if (!same_type_p (DECL_CONTEXT (field
), context
))
4768 permerror (input_location
, "ISO C++ does not permit %<%T::%D%> "
4769 "to be defined as %<%T::%D%>",
4770 DECL_CONTEXT (field
), DECL_NAME (decl
),
4771 context
, DECL_NAME (decl
));
4772 DECL_CONTEXT (decl
) = DECL_CONTEXT (field
);
4774 /* Static data member are tricky; an in-class initialization
4775 still doesn't provide a definition, so the in-class
4776 declaration will have DECL_EXTERNAL set, but will have an
4777 initialization. Thus, duplicate_decls won't warn
4778 about this situation, and so we check here. */
4779 if (initialized
&& DECL_INITIALIZED_IN_CLASS_P (field
))
4780 error ("duplicate initialization of %qD", decl
);
4781 if (duplicate_decls (decl
, field
, /*newdecl_is_friend=*/false))
4783 if (decl_spec_seq_has_spec_p (declspecs
, ds_constexpr
)
4784 && !DECL_DECLARED_CONSTEXPR_P (field
))
4785 error ("%qD declared %<constexpr%> outside its class", field
);
4790 tree field
= check_classfn (context
, decl
,
4792 ? current_template_parms
4794 if (field
&& field
!= error_mark_node
4795 && duplicate_decls (decl
, field
,
4796 /*newdecl_is_friend=*/false))
4800 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
4801 DECL_IN_AGGR_P (decl
) = 0;
4802 /* Do not mark DECL as an explicit specialization if it was not
4803 already marked as an instantiation; a declaration should
4804 never be marked as a specialization unless we know what
4805 template is being specialized. */
4806 if (DECL_LANG_SPECIFIC (decl
) && DECL_USE_TEMPLATE (decl
))
4808 SET_DECL_TEMPLATE_SPECIALIZATION (decl
);
4809 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4810 DECL_COMDAT (decl
) = (TREE_PUBLIC (decl
)
4811 && DECL_DECLARED_INLINE_P (decl
));
4813 DECL_COMDAT (decl
) = false;
4815 /* [temp.expl.spec] An explicit specialization of a static data
4816 member of a template is a definition if the declaration
4817 includes an initializer; otherwise, it is a declaration.
4819 We check for processing_specialization so this only applies
4820 to the new specialization syntax. */
4821 if (!initialized
&& processing_specialization
)
4822 DECL_EXTERNAL (decl
) = 1;
4825 if (DECL_EXTERNAL (decl
) && ! DECL_TEMPLATE_SPECIALIZATION (decl
)
4826 /* Aliases are definitions. */
4828 permerror (input_location
, "declaration of %q#D outside of class is not definition",
4832 was_public
= TREE_PUBLIC (decl
);
4834 /* Enter this declaration into the symbol table. Don't push the plain
4835 VAR_DECL for a variable template. */
4836 if (!template_parm_scope_p ()
4837 || TREE_CODE (decl
) != VAR_DECL
)
4838 decl
= maybe_push_decl (decl
);
4840 if (processing_template_decl
)
4841 decl
= push_template_decl (decl
);
4842 if (decl
== error_mark_node
)
4843 return error_mark_node
;
4846 && DECL_NAMESPACE_SCOPE_P (decl
) && !TREE_PUBLIC (decl
) && !was_public
4847 && !DECL_THIS_STATIC (decl
) && !DECL_ARTIFICIAL (decl
))
4849 /* This is a const variable with implicit 'static'. Set
4850 DECL_THIS_STATIC so we can tell it from variables that are
4851 !TREE_PUBLIC because of the anonymous namespace. */
4852 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl
)) || errorcount
);
4853 DECL_THIS_STATIC (decl
) = 1;
4856 if (current_function_decl
&& VAR_P (decl
)
4857 && DECL_DECLARED_CONSTEXPR_P (current_function_decl
))
4860 if (DECL_THREAD_LOCAL_P (decl
))
4861 error ("%qD declared %<thread_local%> in %<constexpr%> function",
4863 else if (TREE_STATIC (decl
))
4864 error ("%qD declared %<static%> in %<constexpr%> function", decl
);
4868 cp_function_chain
->invalid_constexpr
= true;
4871 if (!processing_template_decl
&& VAR_P (decl
))
4872 start_decl_1 (decl
, initialized
);
4877 /* Process the declaration of a variable DECL. INITIALIZED is true
4878 iff DECL is explicitly initialized. (INITIALIZED is false if the
4879 variable is initialized via an implicitly-called constructor.)
4880 This function must be called for ordinary variables (including, for
4881 example, implicit instantiations of templates), but must not be
4882 called for template declarations. */
4885 start_decl_1 (tree decl
, bool initialized
)
4889 bool aggregate_definition_p
;
4891 gcc_assert (!processing_template_decl
);
4893 if (error_operand_p (decl
))
4896 gcc_assert (VAR_P (decl
));
4898 type
= TREE_TYPE (decl
);
4899 complete_p
= COMPLETE_TYPE_P (type
);
4900 aggregate_definition_p
= MAYBE_CLASS_TYPE_P (type
) && !DECL_EXTERNAL (decl
);
4902 /* If an explicit initializer is present, or if this is a definition
4903 of an aggregate, then we need a complete type at this point.
4904 (Scalars are always complete types, so there is nothing to
4905 check.) This code just sets COMPLETE_P; errors (if necessary)
4906 are issued below. */
4907 if ((initialized
|| aggregate_definition_p
)
4909 && COMPLETE_TYPE_P (complete_type (type
)))
4912 /* We will not yet have set TREE_READONLY on DECL if the type
4913 was "const", but incomplete, before this point. But, now, we
4914 have a complete type, so we can try again. */
4915 cp_apply_type_quals_to_decl (cp_type_quals (type
), decl
);
4919 /* Is it valid for this decl to have an initializer at all? */
4921 /* Don't allow initializations for incomplete types except for
4922 arrays which might be completed by the initialization. */
4924 ; /* A complete type is ok. */
4925 else if (type_uses_auto (type
))
4926 ; /* An auto type is ok. */
4927 else if (TREE_CODE (type
) != ARRAY_TYPE
)
4929 error ("variable %q#D has initializer but incomplete type", decl
);
4930 type
= TREE_TYPE (decl
) = error_mark_node
;
4932 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type
))))
4934 if (DECL_LANG_SPECIFIC (decl
) && DECL_TEMPLATE_INFO (decl
))
4935 error ("elements of array %q#D have incomplete type", decl
);
4936 /* else we already gave an error in start_decl. */
4939 else if (aggregate_definition_p
&& !complete_p
)
4941 if (type_uses_auto (type
))
4942 error ("declaration of %q#D has no initializer", decl
);
4944 error ("aggregate %q#D has incomplete type and cannot be defined",
4946 /* Change the type so that assemble_variable will give
4947 DECL an rtl we can live with: (mem (const_int 0)). */
4948 type
= TREE_TYPE (decl
) = error_mark_node
;
4951 /* Create a new scope to hold this declaration if necessary.
4952 Whether or not a new scope is necessary cannot be determined
4953 until after the type has been completed; if the type is a
4954 specialization of a class template it is not until after
4955 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
4956 will be set correctly. */
4957 maybe_push_cleanup_level (type
);
4960 /* Handle initialization of references. DECL, TYPE, and INIT have the
4961 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
4962 but will be set to a new CLEANUP_STMT if a temporary is created
4963 that must be destroyed subsequently.
4965 Returns an initializer expression to use to initialize DECL, or
4966 NULL if the initialization can be performed statically.
4968 Quotes on semantics can be found in ARM 8.4.3. */
4971 grok_reference_init (tree decl
, tree type
, tree init
, int flags
)
4973 if (init
== NULL_TREE
)
4975 if ((DECL_LANG_SPECIFIC (decl
) == 0
4976 || DECL_IN_AGGR_P (decl
) == 0)
4977 && ! DECL_THIS_EXTERN (decl
))
4978 error ("%qD declared as reference but not initialized", decl
);
4982 if (TREE_CODE (init
) == TREE_LIST
)
4983 init
= build_x_compound_expr_from_list (init
, ELK_INIT
,
4984 tf_warning_or_error
);
4986 tree ttype
= TREE_TYPE (type
);
4987 if (TREE_CODE (ttype
) != ARRAY_TYPE
4988 && TREE_CODE (TREE_TYPE (init
)) == ARRAY_TYPE
)
4989 /* Note: default conversion is only called in very special cases. */
4990 init
= decay_conversion (init
, tf_warning_or_error
);
4992 /* check_initializer handles this for non-reference variables, but for
4993 references we need to do it here or the initializer will get the
4994 incomplete array type and confuse later calls to
4995 cp_complete_array_type. */
4996 if (TREE_CODE (ttype
) == ARRAY_TYPE
4997 && TYPE_DOMAIN (ttype
) == NULL_TREE
4998 && (BRACE_ENCLOSED_INITIALIZER_P (init
)
4999 || TREE_CODE (init
) == STRING_CST
))
5001 cp_complete_array_type (&ttype
, init
, false);
5002 if (ttype
!= TREE_TYPE (type
))
5003 type
= cp_build_reference_type (ttype
, TYPE_REF_IS_RVALUE (type
));
5006 /* Convert INIT to the reference type TYPE. This may involve the
5007 creation of a temporary, whose lifetime must be the same as that
5008 of the reference. If so, a DECL_EXPR for the temporary will be
5009 added just after the DECL_EXPR for DECL. That's why we don't set
5010 DECL_INITIAL for local references (instead assigning to them
5011 explicitly); we need to allow the temporary to be initialized
5013 return initialize_reference (type
, init
, flags
,
5014 tf_warning_or_error
);
5017 /* Designated initializers in arrays are not supported in GNU C++.
5018 The parser cannot detect this error since it does not know whether
5019 a given brace-enclosed initializer is for a class type or for an
5020 array. This function checks that CE does not use a designated
5021 initializer. If it does, an error is issued. Returns true if CE
5022 is valid, i.e., does not have a designated initializer. */
5025 check_array_designated_initializer (constructor_elt
*ce
,
5026 unsigned HOST_WIDE_INT index
)
5028 /* Designated initializers for array elements are not supported. */
5031 /* The parser only allows identifiers as designated
5033 if (ce
->index
== error_mark_node
)
5035 error ("name used in a GNU-style designated "
5036 "initializer for an array");
5039 else if (identifier_p (ce
->index
))
5041 error ("name %qD used in a GNU-style designated "
5042 "initializer for an array", ce
->index
);
5046 tree ce_index
= build_expr_type_conversion (WANT_INT
| WANT_ENUM
,
5049 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index
))
5050 && (TREE_CODE (ce_index
= maybe_constant_value (ce_index
))
5053 /* A C99 designator is OK if it matches the current index. */
5054 if (wi::eq_p (ce_index
, index
))
5057 sorry ("non-trivial designated initializers not supported");
5060 error ("C99 designator %qE is not an integral constant-expression",
5069 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5070 array until we finish parsing the initializer. If that's the
5071 situation we're in, update DECL accordingly. */
5074 maybe_deduce_size_from_array_init (tree decl
, tree init
)
5076 tree type
= TREE_TYPE (decl
);
5078 if (TREE_CODE (type
) == ARRAY_TYPE
5079 && TYPE_DOMAIN (type
) == NULL_TREE
5080 && TREE_CODE (decl
) != TYPE_DECL
)
5082 /* do_default is really a C-ism to deal with tentative definitions.
5083 But let's leave it here to ease the eventual merge. */
5084 int do_default
= !DECL_EXTERNAL (decl
);
5085 tree initializer
= init
? init
: DECL_INITIAL (decl
);
5088 /* Check that there are no designated initializers in INIT, as
5089 those are not supported in GNU C++, and as the middle-end
5090 will crash if presented with a non-numeric designated
5092 if (initializer
&& BRACE_ENCLOSED_INITIALIZER_P (initializer
))
5094 vec
<constructor_elt
, va_gc
> *v
= CONSTRUCTOR_ELTS (initializer
);
5095 constructor_elt
*ce
;
5097 FOR_EACH_VEC_SAFE_ELT (v
, i
, ce
)
5098 if (!check_array_designated_initializer (ce
, i
))
5104 failure
= cp_complete_array_type (&TREE_TYPE (decl
), initializer
,
5108 error ("initializer fails to determine size of %qD", decl
);
5110 else if (failure
== 2)
5114 error ("array size missing in %qD", decl
);
5116 /* If a `static' var's size isn't known, make it extern as
5117 well as static, so it does not get allocated. If it's not
5118 `static', then don't mark it extern; finish_incomplete_decl
5119 will give it a default size and it will get allocated. */
5120 else if (!pedantic
&& TREE_STATIC (decl
) && !TREE_PUBLIC (decl
))
5121 DECL_EXTERNAL (decl
) = 1;
5123 else if (failure
== 3)
5125 error ("zero-size array %qD", decl
);
5129 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl
)), decl
);
5131 relayout_decl (decl
);
5135 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5136 any appropriate error messages regarding the layout. */
5139 layout_var_decl (tree decl
)
5143 type
= TREE_TYPE (decl
);
5144 if (type
== error_mark_node
)
5147 /* If we haven't already laid out this declaration, do so now.
5148 Note that we must not call complete type for an external object
5149 because it's type might involve templates that we are not
5150 supposed to instantiate yet. (And it's perfectly valid to say
5151 `extern X x' for some incomplete type `X'.) */
5152 if (!DECL_EXTERNAL (decl
))
5153 complete_type (type
);
5154 if (!DECL_SIZE (decl
)
5155 && TREE_TYPE (decl
) != error_mark_node
5156 && (COMPLETE_TYPE_P (type
)
5157 || (TREE_CODE (type
) == ARRAY_TYPE
5158 && !TYPE_DOMAIN (type
)
5159 && COMPLETE_TYPE_P (TREE_TYPE (type
)))))
5160 layout_decl (decl
, 0);
5162 if (!DECL_EXTERNAL (decl
) && DECL_SIZE (decl
) == NULL_TREE
)
5164 /* An automatic variable with an incomplete type: that is an error.
5165 Don't talk about array types here, since we took care of that
5166 message in grokdeclarator. */
5167 error ("storage size of %qD isn%'t known", decl
);
5168 TREE_TYPE (decl
) = error_mark_node
;
5171 /* Keep this code around in case we later want to control debug info
5172 based on whether a type is "used". (jason 1999-11-11) */
5174 else if (!DECL_EXTERNAL (decl
) && MAYBE_CLASS_TYPE_P (ttype
))
5175 /* Let debugger know it should output info for this type. */
5176 note_debug_info_needed (ttype
);
5178 if (TREE_STATIC (decl
) && DECL_CLASS_SCOPE_P (decl
))
5179 note_debug_info_needed (DECL_CONTEXT (decl
));
5182 if ((DECL_EXTERNAL (decl
) || TREE_STATIC (decl
))
5183 && DECL_SIZE (decl
) != NULL_TREE
5184 && ! TREE_CONSTANT (DECL_SIZE (decl
)))
5186 if (TREE_CODE (DECL_SIZE (decl
)) == INTEGER_CST
)
5187 constant_expression_warning (DECL_SIZE (decl
));
5190 error ("storage size of %qD isn%'t constant", decl
);
5191 TREE_TYPE (decl
) = error_mark_node
;
5196 /* If a local static variable is declared in an inline function, or if
5197 we have a weak definition, we must endeavor to create only one
5198 instance of the variable at link-time. */
5201 maybe_commonize_var (tree decl
)
5203 /* Static data in a function with comdat linkage also has comdat
5205 if (TREE_STATIC (decl
)
5206 /* Don't mess with __FUNCTION__. */
5207 && ! DECL_ARTIFICIAL (decl
)
5208 && DECL_FUNCTION_SCOPE_P (decl
)
5209 && vague_linkage_p (DECL_CONTEXT (decl
)))
5213 /* With weak symbols, we simply make the variable COMDAT;
5214 that will cause copies in multiple translations units to
5216 comdat_linkage (decl
);
5220 if (DECL_INITIAL (decl
) == NULL_TREE
5221 || DECL_INITIAL (decl
) == error_mark_node
)
5223 /* Without weak symbols, we can use COMMON to merge
5224 uninitialized variables. */
5225 TREE_PUBLIC (decl
) = 1;
5226 DECL_COMMON (decl
) = 1;
5230 /* While for initialized variables, we must use internal
5231 linkage -- which means that multiple copies will not
5233 TREE_PUBLIC (decl
) = 0;
5234 DECL_COMMON (decl
) = 0;
5235 if (warning_at (DECL_SOURCE_LOCATION (decl
), 0,
5236 "sorry: semantics of inline function static "
5237 "data %q#D are wrong (you%'ll wind up "
5238 "with multiple copies)", decl
))
5239 inform (DECL_SOURCE_LOCATION (decl
),
5240 "you can work around this by removing the initializer");
5246 /* Issue an error message if DECL is an uninitialized const variable. */
5249 check_for_uninitialized_const_var (tree decl
)
5251 tree type
= strip_array_types (TREE_TYPE (decl
));
5253 /* ``Unless explicitly declared extern, a const object does not have
5254 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5257 && TREE_CODE (type
) != REFERENCE_TYPE
5258 && (CP_TYPE_CONST_P (type
) || var_in_constexpr_fn (decl
))
5259 && !DECL_INITIAL (decl
))
5261 tree field
= default_init_uninitialized_part (type
);
5265 if (CP_TYPE_CONST_P (type
))
5266 permerror (DECL_SOURCE_LOCATION (decl
),
5267 "uninitialized const %qD", decl
);
5270 error_at (DECL_SOURCE_LOCATION (decl
),
5271 "uninitialized variable %qD in %<constexpr%> function",
5273 cp_function_chain
->invalid_constexpr
= true;
5276 if (CLASS_TYPE_P (type
))
5278 tree defaulted_ctor
;
5280 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type
)),
5281 "%q#T has no user-provided default constructor", type
);
5282 defaulted_ctor
= in_class_defaulted_default_constructor (type
);
5284 inform (DECL_SOURCE_LOCATION (defaulted_ctor
),
5285 "constructor is not user-provided because it is "
5286 "explicitly defaulted in the class body");
5287 inform (0, "and the implicitly-defined constructor does not "
5288 "initialize %q+#D", field
);
5293 /* Structure holding the current initializer being processed by reshape_init.
5294 CUR is a pointer to the current element being processed, END is a pointer
5295 after the last element present in the initializer. */
5296 typedef struct reshape_iterator_t
5298 constructor_elt
*cur
;
5299 constructor_elt
*end
;
5302 static tree
reshape_init_r (tree
, reshape_iter
*, bool, tsubst_flags_t
);
5304 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5305 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5306 initialized. If there are no more such fields, the return value
5310 next_initializable_field (tree field
)
5313 && (TREE_CODE (field
) != FIELD_DECL
5314 || (DECL_C_BIT_FIELD (field
) && !DECL_NAME (field
))
5315 || DECL_ARTIFICIAL (field
)))
5316 field
= DECL_CHAIN (field
);
5321 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5322 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5323 INTEGER_CST representing the size of the array minus one (the maximum index),
5324 or NULL_TREE if the array was declared without specifying the size. D is
5325 the iterator within the constructor. */
5328 reshape_init_array_1 (tree elt_type
, tree max_index
, reshape_iter
*d
,
5329 tsubst_flags_t complain
)
5332 bool sized_array_p
= (max_index
&& TREE_CONSTANT (max_index
));
5333 unsigned HOST_WIDE_INT max_index_cst
= 0;
5334 unsigned HOST_WIDE_INT index
;
5336 /* The initializer for an array is always a CONSTRUCTOR. */
5337 new_init
= build_constructor (init_list_type_node
, NULL
);
5341 /* Minus 1 is used for zero sized arrays. */
5342 if (integer_all_onesp (max_index
))
5345 if (tree_fits_uhwi_p (max_index
))
5346 max_index_cst
= tree_to_uhwi (max_index
);
5347 /* sizetype is sign extended, not zero extended. */
5349 max_index_cst
= tree_to_uhwi (fold_convert (size_type_node
, max_index
));
5352 /* Loop until there are no more initializers. */
5354 d
->cur
!= d
->end
&& (!sized_array_p
|| index
<= max_index_cst
);
5358 constructor_elt
*old_cur
= d
->cur
;
5360 check_array_designated_initializer (d
->cur
, index
);
5361 elt_init
= reshape_init_r (elt_type
, d
, /*first_initializer_p=*/false,
5363 if (elt_init
== error_mark_node
)
5364 return error_mark_node
;
5365 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init
),
5366 size_int (index
), elt_init
);
5367 if (!TREE_CONSTANT (elt_init
))
5368 TREE_CONSTANT (new_init
) = false;
5370 /* This can happen with an invalid initializer (c++/54501). */
5371 if (d
->cur
== old_cur
&& !sized_array_p
)
5378 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5379 Parameters are the same of reshape_init_r. */
5382 reshape_init_array (tree type
, reshape_iter
*d
, tsubst_flags_t complain
)
5384 tree max_index
= NULL_TREE
;
5386 gcc_assert (TREE_CODE (type
) == ARRAY_TYPE
);
5388 if (TYPE_DOMAIN (type
))
5389 max_index
= array_type_nelts (type
);
5391 return reshape_init_array_1 (TREE_TYPE (type
), max_index
, d
, complain
);
5394 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5395 Parameters are the same of reshape_init_r. */
5398 reshape_init_vector (tree type
, reshape_iter
*d
, tsubst_flags_t complain
)
5400 tree max_index
= NULL_TREE
;
5402 gcc_assert (TREE_CODE (type
) == VECTOR_TYPE
);
5404 if (COMPOUND_LITERAL_P (d
->cur
->value
))
5406 tree value
= d
->cur
->value
;
5407 if (!same_type_p (TREE_TYPE (value
), type
))
5409 if (complain
& tf_error
)
5410 error ("invalid type %qT as initializer for a vector of type %qT",
5411 TREE_TYPE (d
->cur
->value
), type
);
5412 value
= error_mark_node
;
5418 /* For a vector, we initialize it as an array of the appropriate size. */
5419 if (TREE_CODE (type
) == VECTOR_TYPE
)
5420 max_index
= size_int (TYPE_VECTOR_SUBPARTS (type
) - 1);
5422 return reshape_init_array_1 (TREE_TYPE (type
), max_index
, d
, complain
);
5425 /* Subroutine of reshape_init_r, processes the initializers for classes
5426 or union. Parameters are the same of reshape_init_r. */
5429 reshape_init_class (tree type
, reshape_iter
*d
, bool first_initializer_p
,
5430 tsubst_flags_t complain
)
5435 gcc_assert (CLASS_TYPE_P (type
));
5437 /* The initializer for a class is always a CONSTRUCTOR. */
5438 new_init
= build_constructor (init_list_type_node
, NULL
);
5439 field
= next_initializable_field (TYPE_FIELDS (type
));
5445 An initializer for an aggregate member that is an
5446 empty class shall have the form of an empty
5447 initializer-list {}. */
5448 if (!first_initializer_p
)
5450 if (complain
& tf_error
)
5451 error ("initializer for %qT must be brace-enclosed", type
);
5452 return error_mark_node
;
5457 /* Loop through the initializable fields, gathering initializers. */
5458 while (d
->cur
!= d
->end
)
5461 constructor_elt
*old_cur
= d
->cur
;
5463 /* Handle designated initializers, as an extension. */
5466 if (d
->cur
->index
== error_mark_node
)
5467 return error_mark_node
;
5469 if (TREE_CODE (d
->cur
->index
) == FIELD_DECL
)
5470 /* We already reshaped this. */
5471 gcc_assert (d
->cur
->index
== field
);
5472 else if (TREE_CODE (d
->cur
->index
) == IDENTIFIER_NODE
)
5473 field
= lookup_field_1 (type
, d
->cur
->index
, /*want_type=*/false);
5476 if (complain
& tf_error
)
5477 error ("%<[%E] =%> used in a GNU-style designated initializer"
5478 " for class %qT", d
->cur
->index
, type
);
5479 return error_mark_node
;
5482 if (!field
|| TREE_CODE (field
) != FIELD_DECL
)
5484 if (complain
& tf_error
)
5485 error ("%qT has no non-static data member named %qD", type
,
5487 return error_mark_node
;
5491 /* If we processed all the member of the class, we are done. */
5495 field_init
= reshape_init_r (TREE_TYPE (field
), d
,
5496 /*first_initializer_p=*/false, complain
);
5497 if (field_init
== error_mark_node
)
5498 return error_mark_node
;
5500 if (d
->cur
== old_cur
&& d
->cur
->index
)
5502 /* This can happen with an invalid initializer for a flexible
5503 array member (c++/54441). */
5504 if (complain
& tf_error
)
5505 error ("invalid initializer for %q#D", field
);
5506 return error_mark_node
;
5509 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init
), field
, field_init
);
5513 When a union is initialized with a brace-enclosed
5514 initializer, the braces shall only contain an
5515 initializer for the first member of the union. */
5516 if (TREE_CODE (type
) == UNION_TYPE
)
5519 field
= next_initializable_field (DECL_CHAIN (field
));
5525 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5526 designators are not valid; either complain or return true to indicate
5527 that reshape_init_r should return error_mark_node. */
5530 has_designator_problem (reshape_iter
*d
, tsubst_flags_t complain
)
5534 if (complain
& tf_error
)
5535 error ("C99 designator %qE outside aggregate initializer",
5543 /* Subroutine of reshape_init, which processes a single initializer (part of
5544 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5545 iterator within the CONSTRUCTOR which points to the initializer to process.
5546 FIRST_INITIALIZER_P is true if this is the first initializer of the
5547 outermost CONSTRUCTOR node. */
5550 reshape_init_r (tree type
, reshape_iter
*d
, bool first_initializer_p
,
5551 tsubst_flags_t complain
)
5553 tree init
= d
->cur
->value
;
5555 if (error_operand_p (init
))
5556 return error_mark_node
;
5558 if (first_initializer_p
&& !CP_AGGREGATE_TYPE_P (type
)
5559 && has_designator_problem (d
, complain
))
5560 return error_mark_node
;
5562 if (TREE_CODE (type
) == COMPLEX_TYPE
)
5564 /* A complex type can be initialized from one or two initializers,
5565 but braces are not elided. */
5567 if (BRACE_ENCLOSED_INITIALIZER_P (init
))
5569 if (CONSTRUCTOR_NELTS (init
) > 2)
5571 if (complain
& tf_error
)
5572 error ("too many initializers for %qT", type
);
5574 return error_mark_node
;
5577 else if (first_initializer_p
&& d
->cur
!= d
->end
)
5579 vec
<constructor_elt
, va_gc
> *v
= 0;
5580 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, init
);
5581 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, d
->cur
->value
);
5582 if (has_designator_problem (d
, complain
))
5583 return error_mark_node
;
5585 init
= build_constructor (init_list_type_node
, v
);
5590 /* A non-aggregate type is always initialized with a single
5592 if (!CP_AGGREGATE_TYPE_P (type
))
5594 /* It is invalid to initialize a non-aggregate type with a
5595 brace-enclosed initializer before C++0x.
5596 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
5597 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
5598 a CONSTRUCTOR (with a record type). */
5599 if (TREE_CODE (init
) == CONSTRUCTOR
5600 /* Don't complain about a capture-init. */
5601 && !CONSTRUCTOR_IS_DIRECT_INIT (init
)
5602 && BRACE_ENCLOSED_INITIALIZER_P (init
)) /* p7626.C */
5604 if (SCALAR_TYPE_P (type
))
5606 if (cxx_dialect
< cxx11
5607 /* Isn't value-initialization. */
5608 || CONSTRUCTOR_NELTS (init
) > 0)
5610 if (complain
& tf_error
)
5611 error ("braces around scalar initializer for type %qT",
5613 init
= error_mark_node
;
5617 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS
);
5624 /* "If T is a class type and the initializer list has a single element of
5625 type cv U, where U is T or a class derived from T, the object is
5626 initialized from that element." Even if T is an aggregate. */
5627 if (cxx_dialect
>= cxx11
&& (CLASS_TYPE_P (type
) || VECTOR_TYPE_P (type
))
5628 && first_initializer_p
5629 && d
->end
- d
->cur
== 1
5630 && reference_related_p (type
, TREE_TYPE (init
)))
5638 All implicit type conversions (clause _conv_) are considered when
5639 initializing the aggregate member with an initializer from an
5640 initializer-list. If the initializer can initialize a member,
5641 the member is initialized. Otherwise, if the member is itself a
5642 non-empty subaggregate, brace elision is assumed and the
5643 initializer is considered for the initialization of the first
5644 member of the subaggregate. */
5645 if (TREE_CODE (init
) != CONSTRUCTOR
5646 /* But don't try this for the first initializer, since that would be
5647 looking through the outermost braces; A a2 = { a1 }; is not a
5648 valid aggregate initialization. */
5649 && !first_initializer_p
5650 && (same_type_ignoring_top_level_qualifiers_p (type
, TREE_TYPE (init
))
5651 || can_convert_arg (type
, TREE_TYPE (init
), init
, LOOKUP_NORMAL
,
5658 /* [dcl.init.string]
5660 A char array (whether plain char, signed char, or unsigned char)
5661 can be initialized by a string-literal (optionally enclosed in
5662 braces); a wchar_t array can be initialized by a wide
5663 string-literal (optionally enclosed in braces). */
5664 if (TREE_CODE (type
) == ARRAY_TYPE
5665 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type
))))
5667 tree str_init
= init
;
5669 /* Strip one level of braces if and only if they enclose a single
5670 element (as allowed by [dcl.init.string]). */
5671 if (!first_initializer_p
5672 && TREE_CODE (str_init
) == CONSTRUCTOR
5673 && vec_safe_length (CONSTRUCTOR_ELTS (str_init
)) == 1)
5675 str_init
= (*CONSTRUCTOR_ELTS (str_init
))[0].value
;
5678 /* If it's a string literal, then it's the initializer for the array
5679 as a whole. Otherwise, continue with normal initialization for
5680 array types (one value per array element). */
5681 if (TREE_CODE (str_init
) == STRING_CST
)
5683 if (has_designator_problem (d
, complain
))
5684 return error_mark_node
;
5690 /* The following cases are about aggregates. If we are not within a full
5691 initializer already, and there is not a CONSTRUCTOR, it means that there
5692 is a missing set of braces (that is, we are processing the case for
5693 which reshape_init exists). */
5694 if (!first_initializer_p
)
5696 if (TREE_CODE (init
) == CONSTRUCTOR
)
5698 if (TREE_TYPE (init
) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init
)))
5699 /* There is no need to reshape pointer-to-member function
5700 initializers, as they are always constructed correctly
5701 by the front end. */
5703 else if (COMPOUND_LITERAL_P (init
))
5704 /* For a nested compound literal, there is no need to reshape since
5705 brace elision is not allowed. Even if we decided to allow it,
5706 we should add a call to reshape_init in finish_compound_literal,
5707 before calling digest_init, so changing this code would still
5708 not be necessary. */
5709 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init
));
5713 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init
));
5714 return reshape_init (type
, init
, complain
);
5718 warning (OPT_Wmissing_braces
, "missing braces around initializer for %qT",
5722 /* Dispatch to specialized routines. */
5723 if (CLASS_TYPE_P (type
))
5724 return reshape_init_class (type
, d
, first_initializer_p
, complain
);
5725 else if (TREE_CODE (type
) == ARRAY_TYPE
)
5726 return reshape_init_array (type
, d
, complain
);
5727 else if (TREE_CODE (type
) == VECTOR_TYPE
)
5728 return reshape_init_vector (type
, d
, complain
);
5733 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
5734 brace-enclosed aggregate initializer.
5736 INIT is the CONSTRUCTOR containing the list of initializers describing
5737 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
5738 It may not presently match the shape of the TYPE; for example:
5740 struct S { int a; int b; };
5741 struct S a[] = { 1, 2, 3, 4 };
5743 Here INIT will hold a vector of four elements, rather than a
5744 vector of two elements, each itself a vector of two elements. This
5745 routine transforms INIT from the former form into the latter. The
5746 revised CONSTRUCTOR node is returned. */
5749 reshape_init (tree type
, tree init
, tsubst_flags_t complain
)
5751 vec
<constructor_elt
, va_gc
> *v
;
5755 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init
));
5757 v
= CONSTRUCTOR_ELTS (init
);
5759 /* An empty constructor does not need reshaping, and it is always a valid
5761 if (vec_safe_is_empty (v
))
5764 /* Recurse on this CONSTRUCTOR. */
5766 d
.end
= d
.cur
+ v
->length ();
5768 new_init
= reshape_init_r (type
, &d
, true, complain
);
5769 if (new_init
== error_mark_node
)
5770 return error_mark_node
;
5772 /* Make sure all the element of the constructor were used. Otherwise,
5773 issue an error about exceeding initializers. */
5776 if (complain
& tf_error
)
5777 error ("too many initializers for %qT", type
);
5779 return error_mark_node
;
5785 /* Verify array initializer. Returns true if errors have been reported. */
5788 check_array_initializer (tree decl
, tree type
, tree init
)
5790 tree element_type
= TREE_TYPE (type
);
5792 /* The array type itself need not be complete, because the
5793 initializer may tell us how many elements are in the array.
5794 But, the elements of the array must be complete. */
5795 if (!COMPLETE_TYPE_P (complete_type (element_type
)))
5798 error ("elements of array %q#D have incomplete type", decl
);
5800 error ("elements of array %q#T have incomplete type", type
);
5803 /* A compound literal can't have variable size. */
5805 && ((COMPLETE_TYPE_P (type
) && !TREE_CONSTANT (TYPE_SIZE (type
)))
5806 || !TREE_CONSTANT (TYPE_SIZE (element_type
))))
5808 error ("variable-sized compound literal");
5814 /* Subroutine of check_initializer; args are passed down from that function.
5815 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
5818 build_aggr_init_full_exprs (tree decl
, tree init
, int flags
)
5821 gcc_assert (stmts_are_full_exprs_p ());
5822 return build_aggr_init (decl
, init
, flags
, tf_warning_or_error
);
5825 /* Verify INIT (the initializer for DECL), and record the
5826 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
5827 grok_reference_init.
5829 If the return value is non-NULL, it is an expression that must be
5830 evaluated dynamically to initialize DECL. */
5833 check_initializer (tree decl
, tree init
, int flags
, vec
<tree
, va_gc
> **cleanups
)
5835 tree type
= TREE_TYPE (decl
);
5836 tree init_code
= NULL
;
5839 /* Things that are going to be initialized need to have complete
5841 TREE_TYPE (decl
) = type
= complete_type (TREE_TYPE (decl
));
5843 if (DECL_HAS_VALUE_EXPR_P (decl
))
5845 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
5846 it doesn't have storage to be initialized. */
5847 gcc_assert (init
== NULL_TREE
);
5851 if (type
== error_mark_node
)
5852 /* We will have already complained. */
5855 if (TREE_CODE (type
) == ARRAY_TYPE
)
5857 if (check_array_initializer (decl
, type
, init
))
5860 else if (!COMPLETE_TYPE_P (type
))
5862 error ("%q#D has incomplete type", decl
);
5863 TREE_TYPE (decl
) = error_mark_node
;
5867 /* There is no way to make a variable-sized class type in GNU C++. */
5868 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type
)));
5870 if (init
&& BRACE_ENCLOSED_INITIALIZER_P (init
))
5872 int init_len
= vec_safe_length (CONSTRUCTOR_ELTS (init
));
5873 if (SCALAR_TYPE_P (type
))
5877 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS
);
5878 init
= build_zero_init (type
, NULL_TREE
, false);
5880 else if (init_len
!= 1 && TREE_CODE (type
) != COMPLEX_TYPE
)
5882 error ("scalar object %qD requires one element in initializer",
5884 TREE_TYPE (decl
) = error_mark_node
;
5890 if (TREE_CODE (decl
) == CONST_DECL
)
5892 gcc_assert (TREE_CODE (type
) != REFERENCE_TYPE
);
5894 DECL_INITIAL (decl
) = init
;
5896 gcc_assert (init
!= NULL_TREE
);
5899 else if (!init
&& DECL_REALLY_EXTERN (decl
))
5901 else if (init
|| type_build_ctor_call (type
)
5902 || TREE_CODE (type
) == REFERENCE_TYPE
)
5904 if (TREE_CODE (type
) == REFERENCE_TYPE
)
5906 init
= grok_reference_init (decl
, type
, init
, flags
);
5907 flags
|= LOOKUP_ALREADY_DIGESTED
;
5910 check_for_uninitialized_const_var (decl
);
5911 /* Do not reshape constructors of vectors (they don't need to be
5913 else if (BRACE_ENCLOSED_INITIALIZER_P (init
))
5915 if (is_std_init_list (type
))
5917 init
= perform_implicit_conversion (type
, init
,
5918 tf_warning_or_error
);
5919 flags
|= LOOKUP_ALREADY_DIGESTED
;
5921 else if (TYPE_NON_AGGREGATE_CLASS (type
))
5923 /* Don't reshape if the class has constructors. */
5924 if (cxx_dialect
== cxx98
)
5925 error ("in C++98 %qD must be initialized by constructor, "
5929 else if (TREE_CODE (type
) == VECTOR_TYPE
&& TYPE_VECTOR_OPAQUE (type
))
5931 error ("opaque vector types cannot be initialized");
5932 init
= error_mark_node
;
5936 init
= reshape_init (type
, init
, tf_warning_or_error
);
5937 flags
|= LOOKUP_NO_NARROWING
;
5940 else if (TREE_CODE (init
) == TREE_LIST
5941 && TREE_TYPE (init
) != unknown_type_node
5942 && !MAYBE_CLASS_TYPE_P (type
))
5944 gcc_assert (TREE_CODE (decl
) != RESULT_DECL
);
5946 /* We get here with code like `int a (2);' */
5947 init
= build_x_compound_expr_from_list (init
, ELK_INIT
,
5948 tf_warning_or_error
);
5951 /* If DECL has an array type without a specific bound, deduce the
5952 array size from the initializer. */
5953 maybe_deduce_size_from_array_init (decl
, init
);
5954 type
= TREE_TYPE (decl
);
5955 if (type
== error_mark_node
)
5958 if ((type_build_ctor_call (type
) || CLASS_TYPE_P (type
))
5959 && !(flags
& LOOKUP_ALREADY_DIGESTED
)
5960 && !(init
&& BRACE_ENCLOSED_INITIALIZER_P (init
)
5961 && CP_AGGREGATE_TYPE_P (type
)
5962 && (CLASS_TYPE_P (type
)
5963 || !TYPE_NEEDS_CONSTRUCTING (type
)
5964 || type_has_extended_temps (type
))))
5966 init_code
= build_aggr_init_full_exprs (decl
, init
, flags
);
5968 /* A constructor call is a non-trivial initializer even if
5969 it isn't explicitly written. */
5970 if (TREE_SIDE_EFFECTS (init_code
))
5971 DECL_NONTRIVIALLY_INITIALIZED_P (decl
) = true;
5973 /* If this is a constexpr initializer, expand_default_init will
5974 have returned an INIT_EXPR rather than a CALL_EXPR. In that
5975 case, pull the initializer back out and pass it down into
5976 store_init_value. */
5977 while (TREE_CODE (init_code
) == EXPR_STMT
5978 || TREE_CODE (init_code
) == CONVERT_EXPR
)
5979 init_code
= TREE_OPERAND (init_code
, 0);
5980 if (TREE_CODE (init_code
) == INIT_EXPR
)
5982 init
= TREE_OPERAND (init_code
, 1);
5983 init_code
= NULL_TREE
;
5984 /* Don't call digest_init; it's unnecessary and will complain
5985 about aggregate initialization of non-aggregate classes. */
5986 flags
|= LOOKUP_ALREADY_DIGESTED
;
5988 else if (DECL_DECLARED_CONSTEXPR_P (decl
))
5990 /* Declared constexpr, but no suitable initializer; massage
5991 init appropriately so we can pass it into store_init_value
5993 if (CLASS_TYPE_P (type
)
5994 && (!init
|| TREE_CODE (init
) == TREE_LIST
))
5996 init
= build_functional_cast (type
, init
, tf_none
);
5997 if (TREE_CODE (init
) == TARGET_EXPR
)
5998 TARGET_EXPR_DIRECT_INIT_P (init
) = true;
6000 init_code
= NULL_TREE
;
6006 if (init
&& TREE_CODE (init
) != TREE_VEC
)
6008 /* In aggregate initialization of a variable, each element
6009 initialization is a full-expression because there is no
6010 enclosing expression. */
6011 gcc_assert (stmts_are_full_exprs_p ());
6013 init_code
= store_init_value (decl
, init
, cleanups
, flags
);
6015 if (pedantic
&& TREE_CODE (type
) == ARRAY_TYPE
6016 && DECL_INITIAL (decl
)
6017 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
6018 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl
)))
6019 warning (0, "array %qD initialized by parenthesized string literal %qE",
6020 decl
, DECL_INITIAL (decl
));
6026 if (CLASS_TYPE_P (core_type
= strip_array_types (type
))
6027 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type
)
6028 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type
)))
6029 diagnose_uninitialized_cst_or_ref_member (core_type
, /*using_new=*/false,
6032 check_for_uninitialized_const_var (decl
);
6035 if (init
&& init
!= error_mark_node
)
6036 init_code
= build2 (INIT_EXPR
, type
, decl
, init
);
6040 /* We might have set these in cp_finish_decl. */
6041 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl
) = false;
6042 TREE_CONSTANT (decl
) = false;
6045 if (init_code
&& DECL_IN_AGGR_P (decl
))
6047 static int explained
= 0;
6049 if (cxx_dialect
< cxx11
)
6050 error ("initializer invalid for static member with constructor");
6052 error ("non-constant in-class initialization invalid for static "
6053 "member %qD", decl
);
6056 inform (input_location
,
6057 "(an out of class initialization is required)");
6066 /* If DECL is not a local variable, give it RTL. */
6069 make_rtl_for_nonlocal_decl (tree decl
, tree init
, const char* asmspec
)
6071 int toplev
= toplevel_bindings_p ();
6074 /* Set the DECL_ASSEMBLER_NAME for the object. */
6077 /* The `register' keyword, when used together with an
6078 asm-specification, indicates that the variable should be
6079 placed in a particular register. */
6080 if (VAR_P (decl
) && DECL_REGISTER (decl
))
6082 set_user_assembler_name (decl
, asmspec
);
6083 DECL_HARD_REGISTER (decl
) = 1;
6087 if (TREE_CODE (decl
) == FUNCTION_DECL
6088 && DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
)
6089 set_builtin_user_assembler_name (decl
, asmspec
);
6090 set_user_assembler_name (decl
, asmspec
);
6094 /* Handle non-variables up front. */
6097 rest_of_decl_compilation (decl
, toplev
, at_eof
);
6101 /* If we see a class member here, it should be a static data
6103 if (DECL_LANG_SPECIFIC (decl
) && DECL_IN_AGGR_P (decl
))
6105 gcc_assert (TREE_STATIC (decl
));
6106 /* An in-class declaration of a static data member should be
6107 external; it is only a declaration, and not a definition. */
6108 if (init
== NULL_TREE
)
6109 gcc_assert (DECL_EXTERNAL (decl
) || !TREE_PUBLIC (decl
));
6112 /* We don't create any RTL for local variables. */
6113 if (DECL_FUNCTION_SCOPE_P (decl
) && !TREE_STATIC (decl
))
6116 /* We defer emission of local statics until the corresponding
6117 DECL_EXPR is expanded. */
6118 defer_p
= DECL_FUNCTION_SCOPE_P (decl
) || DECL_VIRTUAL_P (decl
);
6120 /* Defer template instantiations. */
6121 if (DECL_LANG_SPECIFIC (decl
)
6122 && DECL_IMPLICIT_INSTANTIATION (decl
))
6125 /* If we're not deferring, go ahead and assemble the variable. */
6127 rest_of_decl_compilation (decl
, toplev
, at_eof
);
6130 /* walk_tree helper for wrap_temporary_cleanups, below. */
6133 wrap_cleanups_r (tree
*stmt_p
, int *walk_subtrees
, void *data
)
6135 /* Stop at types or full-expression boundaries. */
6136 if (TYPE_P (*stmt_p
)
6137 || TREE_CODE (*stmt_p
) == CLEANUP_POINT_EXPR
)
6143 if (TREE_CODE (*stmt_p
) == TARGET_EXPR
)
6145 tree guard
= (tree
)data
;
6146 tree tcleanup
= TARGET_EXPR_CLEANUP (*stmt_p
);
6148 tcleanup
= build2 (TRY_CATCH_EXPR
, void_type_node
, tcleanup
, guard
);
6149 /* Tell honor_protect_cleanup_actions to handle this as a separate
6151 TRY_CATCH_IS_CLEANUP (tcleanup
) = 1;
6153 TARGET_EXPR_CLEANUP (*stmt_p
) = tcleanup
;
6159 /* We're initializing a local variable which has a cleanup GUARD. If there
6160 are any temporaries used in the initializer INIT of this variable, we
6161 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6162 variable will be cleaned up properly if one of them throws.
6164 Unfortunately, there's no way to express this properly in terms of
6165 nesting, as the regions for the temporaries overlap the region for the
6166 variable itself; if there are two temporaries, the variable needs to be
6167 the first thing destroyed if either of them throws. However, we only
6168 want to run the variable's cleanup if it actually got constructed. So
6169 we need to guard the temporary cleanups with the variable's cleanup if
6170 they are run on the normal path, but not if they are run on the
6171 exceptional path. We implement this by telling
6172 honor_protect_cleanup_actions to strip the variable cleanup from the
6173 exceptional path. */
6176 wrap_temporary_cleanups (tree init
, tree guard
)
6178 cp_walk_tree_without_duplicates (&init
, wrap_cleanups_r
, (void *)guard
);
6181 /* Generate code to initialize DECL (a local variable). */
6184 initialize_local_var (tree decl
, tree init
)
6186 tree type
= TREE_TYPE (decl
);
6190 gcc_assert (VAR_P (decl
)
6191 || TREE_CODE (decl
) == RESULT_DECL
);
6192 gcc_assert (!TREE_STATIC (decl
));
6194 if (DECL_SIZE (decl
) == NULL_TREE
)
6196 /* If we used it already as memory, it must stay in memory. */
6197 DECL_INITIAL (decl
) = NULL_TREE
;
6198 TREE_ADDRESSABLE (decl
) = TREE_USED (decl
);
6202 if (type
== error_mark_node
)
6205 /* Compute and store the initial value. */
6206 already_used
= TREE_USED (decl
) || TREE_USED (type
);
6207 if (TREE_USED (type
))
6208 DECL_READ_P (decl
) = 1;
6210 /* Generate a cleanup, if necessary. */
6211 cleanup
= cxx_maybe_build_cleanup (decl
, tf_warning_or_error
);
6213 /* Perform the initialization. */
6216 tree rinit
= (TREE_CODE (init
) == INIT_EXPR
6217 ? TREE_OPERAND (init
, 1) : NULL_TREE
);
6218 if (rinit
&& !TREE_SIDE_EFFECTS (rinit
))
6220 /* Stick simple initializers in DECL_INITIAL so that
6221 -Wno-init-self works (c++/34772). */
6222 gcc_assert (TREE_OPERAND (init
, 0) == decl
);
6223 DECL_INITIAL (decl
) = rinit
;
6225 if (warn_init_self
&& TREE_CODE (type
) == REFERENCE_TYPE
)
6229 warning_at (DECL_SOURCE_LOCATION (decl
),
6231 "reference %qD is initialized with itself", decl
);
6236 int saved_stmts_are_full_exprs_p
;
6238 /* If we're only initializing a single object, guard the
6239 destructors of any temporaries used in its initializer with
6240 its destructor. This isn't right for arrays because each
6241 element initialization is a full-expression. */
6242 if (cleanup
&& TREE_CODE (type
) != ARRAY_TYPE
)
6243 wrap_temporary_cleanups (init
, cleanup
);
6245 gcc_assert (building_stmt_list_p ());
6246 saved_stmts_are_full_exprs_p
= stmts_are_full_exprs_p ();
6247 current_stmt_tree ()->stmts_are_full_exprs_p
= 1;
6248 finish_expr_stmt (init
);
6249 current_stmt_tree ()->stmts_are_full_exprs_p
=
6250 saved_stmts_are_full_exprs_p
;
6254 /* Set this to 0 so we can tell whether an aggregate which was
6255 initialized was ever used. Don't do this if it has a
6256 destructor, so we don't complain about the 'resource
6257 allocation is initialization' idiom. Now set
6258 attribute((unused)) on types so decls of that type will be
6259 marked used. (see TREE_USED, above.) */
6260 if (TYPE_NEEDS_CONSTRUCTING (type
)
6262 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type
)
6263 && DECL_NAME (decl
))
6264 TREE_USED (decl
) = 0;
6265 else if (already_used
)
6266 TREE_USED (decl
) = 1;
6269 finish_decl_cleanup (decl
, cleanup
);
6272 /* DECL is a VAR_DECL for a compiler-generated variable with static
6273 storage duration (like a virtual table) whose initializer is a
6274 compile-time constant. Initialize the variable and provide it to the
6278 initialize_artificial_var (tree decl
, vec
<constructor_elt
, va_gc
> *v
)
6281 gcc_assert (DECL_ARTIFICIAL (decl
));
6282 init
= build_constructor (TREE_TYPE (decl
), v
);
6283 gcc_assert (TREE_CODE (init
) == CONSTRUCTOR
);
6284 DECL_INITIAL (decl
) = init
;
6285 DECL_INITIALIZED_P (decl
) = 1;
6286 determine_visibility (decl
);
6287 layout_var_decl (decl
);
6288 maybe_commonize_var (decl
);
6289 make_rtl_for_nonlocal_decl (decl
, init
, /*asmspec=*/NULL
);
6292 /* INIT is the initializer for a variable, as represented by the
6293 parser. Returns true iff INIT is type-dependent. */
6296 type_dependent_init_p (tree init
)
6298 if (TREE_CODE (init
) == TREE_LIST
)
6299 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6300 return any_type_dependent_elements_p (init
);
6301 else if (TREE_CODE (init
) == CONSTRUCTOR
)
6302 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6304 vec
<constructor_elt
, va_gc
> *elts
;
6308 elts
= CONSTRUCTOR_ELTS (init
);
6309 nelts
= vec_safe_length (elts
);
6310 for (i
= 0; i
< nelts
; ++i
)
6311 if (type_dependent_init_p ((*elts
)[i
].value
))
6315 /* It must be a simple expression, e.g., int i = 3; */
6316 return type_dependent_expression_p (init
);
6321 /* INIT is the initializer for a variable, as represented by the
6322 parser. Returns true iff INIT is value-dependent. */
6325 value_dependent_init_p (tree init
)
6327 if (TREE_CODE (init
) == TREE_LIST
)
6328 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6329 return any_value_dependent_elements_p (init
);
6330 else if (TREE_CODE (init
) == CONSTRUCTOR
)
6331 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6333 vec
<constructor_elt
, va_gc
> *elts
;
6337 elts
= CONSTRUCTOR_ELTS (init
);
6338 nelts
= vec_safe_length (elts
);
6339 for (i
= 0; i
< nelts
; ++i
)
6340 if (value_dependent_init_p ((*elts
)[i
].value
))
6344 /* It must be a simple expression, e.g., int i = 3; */
6345 return value_dependent_expression_p (init
);
6350 /* Finish processing of a declaration;
6351 install its line number and initial value.
6352 If the length of an array type is not known before,
6353 it must be determined now, from the initial value, or it is an error.
6355 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6356 true, then INIT is an integral constant expression.
6358 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6359 if the (init) syntax was used. */
6362 cp_finish_decl (tree decl
, tree init
, bool init_const_expr_p
,
6363 tree asmspec_tree
, int flags
)
6366 vec
<tree
, va_gc
> *cleanups
= NULL
;
6367 const char *asmspec
= NULL
;
6368 int was_readonly
= 0;
6369 bool var_definition_p
= false;
6372 if (decl
== error_mark_node
)
6377 error ("assignment (not initialization) in declaration");
6381 gcc_assert (TREE_CODE (decl
) != RESULT_DECL
);
6382 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6383 gcc_assert (TREE_CODE (decl
) != PARM_DECL
);
6385 type
= TREE_TYPE (decl
);
6386 if (type
== error_mark_node
)
6389 /* If a name was specified, get the string. */
6390 if (at_namespace_scope_p ())
6391 asmspec_tree
= maybe_apply_renaming_pragma (decl
, asmspec_tree
);
6392 if (asmspec_tree
&& asmspec_tree
!= error_mark_node
)
6393 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
6395 if (current_class_type
6396 && CP_DECL_CONTEXT (decl
) == current_class_type
6397 && TYPE_BEING_DEFINED (current_class_type
)
6398 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type
)
6399 && (DECL_INITIAL (decl
) || init
))
6400 DECL_INITIALIZED_IN_CLASS_P (decl
) = 1;
6402 if (TREE_CODE (decl
) != FUNCTION_DECL
6403 && (auto_node
= type_uses_auto (type
)))
6406 if (init
== NULL_TREE
)
6408 if (DECL_LANG_SPECIFIC (decl
)
6409 && DECL_TEMPLATE_INSTANTIATION (decl
)
6410 && !DECL_TEMPLATE_INSTANTIATED (decl
))
6412 /* init is null because we're deferring instantiating the
6413 initializer until we need it. Well, we need it now. */
6414 instantiate_decl (decl
, /*defer_ok*/true, /*expl*/false);
6418 error ("declaration of %q#D has no initializer", decl
);
6419 TREE_TYPE (decl
) = error_mark_node
;
6423 if (TREE_CODE (d_init
) == TREE_LIST
)
6424 d_init
= build_x_compound_expr_from_list (d_init
, ELK_INIT
,
6425 tf_warning_or_error
);
6426 d_init
= resolve_nondeduced_context (d_init
);
6427 type
= TREE_TYPE (decl
) = do_auto_deduction (type
, d_init
,
6429 if (type
== error_mark_node
)
6431 cp_apply_type_quals_to_decl (cp_type_quals (type
), decl
);
6434 if (!ensure_literal_type_for_constexpr_object (decl
))
6435 DECL_DECLARED_CONSTEXPR_P (decl
) = 0;
6438 && DECL_CLASS_SCOPE_P (decl
)
6439 && DECL_INITIALIZED_IN_CLASS_P (decl
))
6440 check_static_variable_definition (decl
, type
);
6442 if (init
&& TREE_CODE (decl
) == FUNCTION_DECL
)
6445 if (init
== ridpointers
[(int)RID_DELETE
])
6447 /* FIXME check this is 1st decl. */
6448 DECL_DELETED_FN (decl
) = 1;
6449 DECL_DECLARED_INLINE_P (decl
) = 1;
6450 DECL_INITIAL (decl
) = error_mark_node
;
6451 FOR_EACH_CLONE (clone
, decl
)
6453 DECL_DELETED_FN (clone
) = 1;
6454 DECL_DECLARED_INLINE_P (clone
) = 1;
6455 DECL_INITIAL (clone
) = error_mark_node
;
6459 else if (init
== ridpointers
[(int)RID_DEFAULT
])
6461 if (defaultable_fn_check (decl
))
6462 DECL_DEFAULTED_FN (decl
) = 1;
6464 DECL_INITIAL (decl
) = NULL_TREE
;
6468 if (init
&& VAR_P (decl
))
6470 DECL_NONTRIVIALLY_INITIALIZED_P (decl
) = 1;
6471 /* If DECL is a reference, then we want to know whether init is a
6472 reference constant; init_const_expr_p as passed tells us whether
6473 it's an rvalue constant. */
6474 if (TREE_CODE (type
) == REFERENCE_TYPE
)
6475 init_const_expr_p
= potential_constant_expression (init
);
6476 if (init_const_expr_p
)
6478 /* Set these flags now for templates. We'll update the flags in
6479 store_init_value for instantiations. */
6480 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl
) = 1;
6481 if (decl_maybe_constant_var_p (decl
))
6482 TREE_CONSTANT (decl
) = 1;
6486 if (processing_template_decl
)
6488 bool type_dependent_p
;
6490 /* Add this declaration to the statement-tree. */
6491 if (at_function_scope_p ())
6492 add_decl_expr (decl
);
6494 type_dependent_p
= dependent_type_p (type
);
6496 if (check_for_bare_parameter_packs (init
))
6499 DECL_INITIAL (decl
) = NULL_TREE
;
6502 /* Generally, initializers in templates are expanded when the
6503 template is instantiated. But, if DECL is a variable constant
6504 then it can be used in future constant expressions, so its value
6505 must be available. */
6507 if (!VAR_P (decl
) || dependent_type_p (type
))
6508 /* We can't do anything if the decl has dependent type. */;
6510 && init_const_expr_p
6511 && !type_dependent_p
6512 && TREE_CODE (type
) != REFERENCE_TYPE
6513 && decl_maybe_constant_var_p (decl
)
6514 && !type_dependent_init_p (init
)
6515 && !value_dependent_init_p (init
))
6517 /* This variable seems to be a non-dependent constant, so process
6518 its initializer. If check_initializer returns non-null the
6519 initialization wasn't constant after all. */
6521 cleanups
= make_tree_vector ();
6522 init_code
= check_initializer (decl
, init
, flags
, &cleanups
);
6523 if (init_code
== NULL_TREE
)
6525 release_tree_vector (cleanups
);
6527 else if (!DECL_PRETTY_FUNCTION_P (decl
))
6529 /* Deduce array size even if the initializer is dependent. */
6530 maybe_deduce_size_from_array_init (decl
, init
);
6531 /* And complain about multiple initializers. */
6532 if (init
&& TREE_CODE (init
) == TREE_LIST
&& TREE_CHAIN (init
)
6533 && !MAYBE_CLASS_TYPE_P (type
))
6534 init
= build_x_compound_expr_from_list (init
, ELK_INIT
,
6535 tf_warning_or_error
);
6539 DECL_INITIAL (decl
) = init
;
6543 /* Just store non-static data member initializers for later. */
6544 if (init
&& TREE_CODE (decl
) == FIELD_DECL
)
6545 DECL_INITIAL (decl
) = init
;
6547 /* Take care of TYPE_DECLs up front. */
6548 if (TREE_CODE (decl
) == TYPE_DECL
)
6550 if (type
!= error_mark_node
6551 && MAYBE_CLASS_TYPE_P (type
) && DECL_NAME (decl
))
6553 if (TREE_TYPE (DECL_NAME (decl
)) && TREE_TYPE (decl
) != type
)
6554 warning (0, "shadowing previous type declaration of %q#D", decl
);
6555 set_identifier_type_value (DECL_NAME (decl
), decl
);
6558 /* If we have installed this as the canonical typedef for this
6559 type, and that type has not been defined yet, delay emitting
6560 the debug information for it, as we will emit it later. */
6561 if (TYPE_MAIN_DECL (TREE_TYPE (decl
)) == decl
6562 && !COMPLETE_TYPE_P (TREE_TYPE (decl
)))
6563 TYPE_DECL_SUPPRESS_DEBUG (decl
) = 1;
6565 rest_of_decl_compilation (decl
, DECL_FILE_SCOPE_P (decl
),
6570 /* A reference will be modified here, as it is initialized. */
6571 if (! DECL_EXTERNAL (decl
)
6572 && TREE_READONLY (decl
)
6573 && TREE_CODE (type
) == REFERENCE_TYPE
)
6576 TREE_READONLY (decl
) = 0;
6581 /* If this is a local variable that will need a mangled name,
6582 register it now. We must do this before processing the
6583 initializer for the variable, since the initialization might
6584 require a guard variable, and since the mangled name of the
6585 guard variable will depend on the mangled name of this
6587 if (DECL_FUNCTION_SCOPE_P (decl
)
6588 && TREE_STATIC (decl
)
6589 && !DECL_ARTIFICIAL (decl
))
6591 push_local_name (decl
);
6592 if (DECL_CONSTRUCTOR_P (current_function_decl
)
6593 || DECL_DESTRUCTOR_P (current_function_decl
))
6594 /* Normally local_decls is populated during GIMPLE lowering,
6595 but [cd]tors are never actually compiled directly. We need
6596 to put statics on the list so we can deal with the label
6597 address extension. FIXME. */
6598 add_local_decl (cfun
, decl
);
6601 /* Convert the initializer to the type of DECL, if we have not
6602 already initialized DECL. */
6603 if (!DECL_INITIALIZED_P (decl
)
6604 /* If !DECL_EXTERNAL then DECL is being defined. In the
6605 case of a static data member initialized inside the
6606 class-specifier, there can be an initializer even if DECL
6607 is *not* defined. */
6608 && (!DECL_EXTERNAL (decl
) || init
))
6610 if (TYPE_FOR_JAVA (type
) && MAYBE_CLASS_TYPE_P (type
))
6613 = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jclass"));
6614 /* Allow libjava/prims.cc define primitive classes. */
6615 if (init
!= NULL_TREE
6616 || jclass
== NULL_TREE
6617 || TREE_CODE (jclass
) != TYPE_DECL
6618 || !POINTER_TYPE_P (TREE_TYPE (jclass
))
6619 || !same_type_ignoring_top_level_qualifiers_p
6620 (type
, TREE_TYPE (TREE_TYPE (jclass
))))
6621 error ("Java object %qD not allocated with %<new%>", decl
);
6624 cleanups
= make_tree_vector ();
6625 init
= check_initializer (decl
, init
, flags
, &cleanups
);
6631 The memory occupied by any object of static storage
6632 duration is zero-initialized at program startup before
6633 any other initialization takes place.
6635 We cannot create an appropriate initializer until after
6636 the type of DECL is finalized. If DECL_INITIAL is set,
6637 then the DECL is statically initialized, and any
6638 necessary zero-initialization has already been performed. */
6639 if (TREE_STATIC (decl
) && !DECL_INITIAL (decl
))
6640 DECL_INITIAL (decl
) = build_zero_init (TREE_TYPE (decl
),
6641 /*nelts=*/NULL_TREE
,
6642 /*static_storage_p=*/true);
6643 /* Remember that the initialization for this variable has
6645 DECL_INITIALIZED_P (decl
) = 1;
6646 /* This declaration is the definition of this variable,
6647 unless we are initializing a static data member within
6648 the class specifier. */
6649 if (!DECL_EXTERNAL (decl
))
6650 var_definition_p
= true;
6652 /* If the variable has an array type, lay out the type, even if
6653 there is no initializer. It is valid to index through the
6654 array, and we must get TYPE_ALIGN set correctly on the array
6656 else if (TREE_CODE (type
) == ARRAY_TYPE
)
6659 if (TREE_STATIC (decl
)
6660 && !at_function_scope_p ()
6661 && current_function_decl
== NULL
)
6662 /* So decl is a global variable or a static member of a
6663 non local class. Record the types it uses
6664 so that we can decide later to emit debug info for them. */
6665 record_types_used_by_current_var_decl (decl
);
6667 else if (TREE_CODE (decl
) == FIELD_DECL
6668 && TYPE_FOR_JAVA (type
) && MAYBE_CLASS_TYPE_P (type
))
6669 error ("non-static data member %qD has Java class type", decl
);
6671 /* Add this declaration to the statement-tree. This needs to happen
6672 after the call to check_initializer so that the DECL_EXPR for a
6673 reference temp is added before the DECL_EXPR for the reference itself. */
6674 if (DECL_FUNCTION_SCOPE_P (decl
))
6676 /* If we're building a variable sized type, and we might be
6677 reachable other than via the top of the current binding
6678 level, then create a new BIND_EXPR so that we deallocate
6679 the object at the right time. */
6682 && !TREE_CONSTANT (DECL_SIZE (decl
))
6683 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list
))
6686 bind
= build3 (BIND_EXPR
, void_type_node
, NULL
, NULL
, NULL
);
6687 TREE_SIDE_EFFECTS (bind
) = 1;
6689 BIND_EXPR_BODY (bind
) = push_stmt_list ();
6691 add_decl_expr (decl
);
6694 /* Let the middle end know about variables and functions -- but not
6695 static data members in uninstantiated class templates. */
6696 if (VAR_OR_FUNCTION_DECL_P (decl
))
6700 layout_var_decl (decl
);
6701 maybe_commonize_var (decl
);
6704 /* This needs to happen after the linkage is set. */
6705 determine_visibility (decl
);
6707 if (var_definition_p
&& TREE_STATIC (decl
))
6709 /* If a TREE_READONLY variable needs initialization
6710 at runtime, it is no longer readonly and we need to
6711 avoid MEM_READONLY_P being set on RTL created for it. */
6714 if (TREE_READONLY (decl
))
6715 TREE_READONLY (decl
) = 0;
6718 else if (was_readonly
)
6719 TREE_READONLY (decl
) = 1;
6721 /* Likewise if it needs destruction. */
6722 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
))
6723 TREE_READONLY (decl
) = 0;
6726 make_rtl_for_nonlocal_decl (decl
, init
, asmspec
);
6728 /* Check for abstractness of the type. Notice that there is no
6729 need to strip array types here since the check for those types
6730 is already done within create_array_type_for_decl. */
6731 abstract_virtuals_error (decl
, type
);
6733 if (TREE_TYPE (decl
) == error_mark_node
)
6734 /* No initialization required. */
6736 else if (TREE_CODE (decl
) == FUNCTION_DECL
)
6740 if (init
== ridpointers
[(int)RID_DEFAULT
])
6742 /* An out-of-class default definition is defined at
6743 the point where it is explicitly defaulted. */
6744 if (DECL_DELETED_FN (decl
))
6745 maybe_explain_implicit_delete (decl
);
6746 else if (DECL_INITIAL (decl
) == error_mark_node
)
6747 synthesize_method (decl
);
6750 error ("function %q#D is initialized like a variable", decl
);
6752 /* else no initialization required. */
6754 else if (DECL_EXTERNAL (decl
)
6755 && ! (DECL_LANG_SPECIFIC (decl
)
6756 && DECL_NOT_REALLY_EXTERN (decl
)))
6759 DECL_INITIAL (decl
) = init
;
6761 /* A variable definition. */
6762 else if (DECL_FUNCTION_SCOPE_P (decl
) && !TREE_STATIC (decl
))
6763 /* Initialize the local variable. */
6764 initialize_local_var (decl
, init
);
6766 /* If a variable is defined, and then a subsequent
6767 definition with external linkage is encountered, we will
6768 get here twice for the same variable. We want to avoid
6769 calling expand_static_init more than once. For variables
6770 that are not static data members, we can call
6771 expand_static_init only when we actually process the
6772 initializer. It is not legal to redeclare a static data
6773 member, so this issue does not arise in that case. */
6774 else if (var_definition_p
&& TREE_STATIC (decl
))
6775 expand_static_init (decl
, init
);
6778 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
6779 reference, insert it in the statement-tree now. */
6783 FOR_EACH_VEC_ELT (*cleanups
, i
, t
)
6784 push_cleanup (decl
, t
, false);
6785 release_tree_vector (cleanups
);
6789 TREE_READONLY (decl
) = 1;
6791 invoke_plugin_callbacks (PLUGIN_FINISH_DECL
, decl
);
6794 /* Returns a declaration for a VAR_DECL as if:
6796 extern "C" TYPE NAME;
6798 had been seen. Used to create compiler-generated global
6802 declare_global_var (tree name
, tree type
)
6806 push_to_top_level ();
6807 decl
= build_decl (input_location
, VAR_DECL
, name
, type
);
6808 TREE_PUBLIC (decl
) = 1;
6809 DECL_EXTERNAL (decl
) = 1;
6810 DECL_ARTIFICIAL (decl
) = 1;
6811 /* If the user has explicitly declared this variable (perhaps
6812 because the code we are compiling is part of a low-level runtime
6813 library), then it is possible that our declaration will be merged
6814 with theirs by pushdecl. */
6815 decl
= pushdecl (decl
);
6816 cp_finish_decl (decl
, NULL_TREE
, false, NULL_TREE
, 0);
6817 pop_from_top_level ();
6822 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
6823 if "__cxa_atexit" is not being used) corresponding to the function
6824 to be called when the program exits. */
6827 get_atexit_fn_ptr_type (void)
6831 if (!atexit_fn_ptr_type_node
)
6834 if (flag_use_cxa_atexit
6835 && !targetm
.cxx
.use_atexit_for_cxa_atexit ())
6836 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
6837 arg_type
= ptr_type_node
;
6839 /* The parameter to "atexit" is "void (*)(void)". */
6840 arg_type
= NULL_TREE
;
6842 fn_type
= build_function_type_list (void_type_node
,
6843 arg_type
, NULL_TREE
);
6844 atexit_fn_ptr_type_node
= build_pointer_type (fn_type
);
6847 return atexit_fn_ptr_type_node
;
6850 /* Returns a pointer to the `atexit' function. Note that if
6851 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
6852 `__cxa_atexit' function specified in the IA64 C++ ABI. */
6855 get_atexit_node (void)
6861 bool use_aeabi_atexit
;
6866 if (flag_use_cxa_atexit
&& !targetm
.cxx
.use_atexit_for_cxa_atexit ())
6868 /* The declaration for `__cxa_atexit' is:
6870 int __cxa_atexit (void (*)(void *), void *, void *)
6872 We build up the argument types and then the function type
6874 tree argtype0
, argtype1
, argtype2
;
6876 use_aeabi_atexit
= targetm
.cxx
.use_aeabi_atexit ();
6877 /* First, build the pointer-to-function type for the first
6879 fn_ptr_type
= get_atexit_fn_ptr_type ();
6880 /* Then, build the rest of the argument types. */
6881 argtype2
= ptr_type_node
;
6882 if (use_aeabi_atexit
)
6884 argtype1
= fn_ptr_type
;
6885 argtype0
= ptr_type_node
;
6889 argtype1
= ptr_type_node
;
6890 argtype0
= fn_ptr_type
;
6892 /* And the final __cxa_atexit type. */
6893 fn_type
= build_function_type_list (integer_type_node
,
6894 argtype0
, argtype1
, argtype2
,
6896 if (use_aeabi_atexit
)
6897 name
= "__aeabi_atexit";
6899 name
= "__cxa_atexit";
6903 /* The declaration for `atexit' is:
6905 int atexit (void (*)());
6907 We build up the argument types and then the function type
6909 fn_ptr_type
= get_atexit_fn_ptr_type ();
6910 /* Build the final atexit type. */
6911 fn_type
= build_function_type_list (integer_type_node
,
6912 fn_ptr_type
, NULL_TREE
);
6916 /* Now, build the function declaration. */
6917 push_lang_context (lang_name_c
);
6918 atexit_fndecl
= build_library_fn_ptr (name
, fn_type
, ECF_LEAF
| ECF_NOTHROW
);
6919 mark_used (atexit_fndecl
);
6920 pop_lang_context ();
6921 atexit_node
= decay_conversion (atexit_fndecl
, tf_warning_or_error
);
6926 /* Like get_atexit_node, but for thread-local cleanups. */
6929 get_thread_atexit_node (void)
6931 /* The declaration for `__cxa_thread_atexit' is:
6933 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
6934 tree fn_type
= build_function_type_list (integer_type_node
,
6935 get_atexit_fn_ptr_type (),
6936 ptr_type_node
, ptr_type_node
,
6939 /* Now, build the function declaration. */
6940 tree atexit_fndecl
= build_library_fn_ptr ("__cxa_thread_atexit", fn_type
,
6941 ECF_LEAF
| ECF_NOTHROW
);
6942 return decay_conversion (atexit_fndecl
, tf_warning_or_error
);
6945 /* Returns the __dso_handle VAR_DECL. */
6948 get_dso_handle_node (void)
6950 if (dso_handle_node
)
6951 return dso_handle_node
;
6953 /* Declare the variable. */
6954 dso_handle_node
= declare_global_var (get_identifier ("__dso_handle"),
6957 #ifdef HAVE_GAS_HIDDEN
6958 if (dso_handle_node
!= error_mark_node
)
6960 DECL_VISIBILITY (dso_handle_node
) = VISIBILITY_HIDDEN
;
6961 DECL_VISIBILITY_SPECIFIED (dso_handle_node
) = 1;
6965 return dso_handle_node
;
6968 /* Begin a new function with internal linkage whose job will be simply
6969 to destroy some particular variable. */
6971 static GTY(()) int start_cleanup_cnt
;
6974 start_cleanup_fn (void)
6979 bool use_cxa_atexit
= flag_use_cxa_atexit
6980 && !targetm
.cxx
.use_atexit_for_cxa_atexit ();
6982 push_to_top_level ();
6984 /* No need to mangle this. */
6985 push_lang_context (lang_name_c
);
6987 /* Build the name of the function. */
6988 sprintf (name
, "__tcf_%d", start_cleanup_cnt
++);
6989 /* Build the function declaration. */
6990 fntype
= TREE_TYPE (get_atexit_fn_ptr_type ());
6991 fndecl
= build_lang_decl (FUNCTION_DECL
, get_identifier (name
), fntype
);
6992 /* It's a function with internal linkage, generated by the
6994 TREE_PUBLIC (fndecl
) = 0;
6995 DECL_ARTIFICIAL (fndecl
) = 1;
6996 /* Make the function `inline' so that it is only emitted if it is
6997 actually needed. It is unlikely that it will be inlined, since
6998 it is only called via a function pointer, but we avoid unnecessary
6999 emissions this way. */
7000 DECL_DECLARED_INLINE_P (fndecl
) = 1;
7001 DECL_INTERFACE_KNOWN (fndecl
) = 1;
7002 /* Build the parameter. */
7007 parmdecl
= cp_build_parm_decl (NULL_TREE
, ptr_type_node
);
7008 DECL_CONTEXT (parmdecl
) = fndecl
;
7009 TREE_USED (parmdecl
) = 1;
7010 DECL_READ_P (parmdecl
) = 1;
7011 DECL_ARGUMENTS (fndecl
) = parmdecl
;
7015 start_preparsed_function (fndecl
, NULL_TREE
, SF_PRE_PARSED
);
7017 pop_lang_context ();
7019 return current_function_decl
;
7022 /* Finish the cleanup function begun by start_cleanup_fn. */
7025 end_cleanup_fn (void)
7027 expand_or_defer_fn (finish_function (0));
7029 pop_from_top_level ();
7032 /* Generate code to handle the destruction of DECL, an object with
7033 static storage duration. */
7036 register_dtor_fn (tree decl
)
7043 bool ob_parm
, dso_parm
, use_dtor
;
7044 tree arg0
, arg1
, arg2
;
7047 type
= TREE_TYPE (decl
);
7048 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type
))
7051 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
7052 "__aeabi_atexit"), and DECL is a class object, we can just pass the
7053 destructor to "__cxa_atexit"; we don't have to build a temporary
7054 function to do the cleanup. */
7055 dso_parm
= (flag_use_cxa_atexit
7056 && !targetm
.cxx
.use_atexit_for_cxa_atexit ());
7057 ob_parm
= (DECL_THREAD_LOCAL_P (decl
) || dso_parm
);
7058 use_dtor
= ob_parm
&& CLASS_TYPE_P (type
);
7063 /* Find the destructor. */
7064 idx
= lookup_fnfields_1 (type
, complete_dtor_identifier
);
7065 gcc_assert (idx
>= 0);
7066 cleanup
= (*CLASSTYPE_METHOD_VEC (type
))[idx
];
7067 /* Make sure it is accessible. */
7068 perform_or_defer_access_check (TYPE_BINFO (type
), cleanup
, cleanup
,
7069 tf_warning_or_error
);
7073 /* Call build_cleanup before we enter the anonymous function so
7074 that any access checks will be done relative to the current
7075 scope, rather than the scope of the anonymous function. */
7076 build_cleanup (decl
);
7078 /* Now start the function. */
7079 cleanup
= start_cleanup_fn ();
7081 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
7082 to the original function, rather than the anonymous one. That
7083 will make the back end think that nested functions are in use,
7084 which causes confusion. */
7085 push_deferring_access_checks (dk_no_check
);
7086 fcall
= build_cleanup (decl
);
7087 pop_deferring_access_checks ();
7089 /* Create the body of the anonymous function. */
7090 compound_stmt
= begin_compound_stmt (BCS_FN_BODY
);
7091 finish_expr_stmt (fcall
);
7092 finish_compound_stmt (compound_stmt
);
7096 /* Call atexit with the cleanup function. */
7097 mark_used (cleanup
);
7098 cleanup
= build_address (cleanup
);
7100 if (DECL_THREAD_LOCAL_P (decl
))
7101 atex_node
= get_thread_atexit_node ();
7103 atex_node
= get_atexit_node ();
7107 /* We must convert CLEANUP to the type that "__cxa_atexit"
7109 cleanup
= build_nop (get_atexit_fn_ptr_type (), cleanup
);
7110 /* "__cxa_atexit" will pass the address of DECL to the
7111 cleanup function. */
7113 addr
= build_address (decl
);
7114 /* The declared type of the parameter to "__cxa_atexit" is
7115 "void *". For plain "T*", we could just let the
7116 machinery in cp_build_function_call convert it -- but if the
7117 type is "cv-qualified T *", then we need to convert it
7118 before passing it in, to avoid spurious errors. */
7119 addr
= build_nop (ptr_type_node
, addr
);
7122 /* Since the cleanup functions we build ignore the address
7123 they're given, there's no reason to pass the actual address
7124 in, and, in general, it's cheaper to pass NULL than any
7126 addr
= null_pointer_node
;
7129 arg2
= cp_build_addr_expr (get_dso_handle_node (),
7130 tf_warning_or_error
);
7132 /* Just pass NULL to the dso handle parm if we don't actually
7133 have a DSO handle on this target. */
7134 arg2
= null_pointer_node
;
7140 if (!DECL_THREAD_LOCAL_P (decl
)
7141 && targetm
.cxx
.use_aeabi_atexit ())
7157 return cp_build_function_call_nary (atex_node
, tf_warning_or_error
,
7158 arg0
, arg1
, arg2
, NULL_TREE
);
7161 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
7162 is its initializer. Generate code to handle the construction
7163 and destruction of DECL. */
7166 expand_static_init (tree decl
, tree init
)
7168 gcc_assert (VAR_P (decl
));
7169 gcc_assert (TREE_STATIC (decl
));
7171 /* Some variables require no dynamic initialization. */
7173 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl
)))
7175 /* Make sure the destructor is callable. */
7176 cxx_maybe_build_cleanup (decl
, tf_warning_or_error
);
7180 if (DECL_THREAD_LOCAL_P (decl
) && DECL_GNU_TLS_P (decl
)
7181 && !DECL_FUNCTION_SCOPE_P (decl
))
7184 error ("non-local variable %qD declared %<__thread%> "
7185 "needs dynamic initialization", decl
);
7187 error ("non-local variable %qD declared %<__thread%> "
7188 "has a non-trivial destructor", decl
);
7189 static bool informed
;
7192 inform (DECL_SOURCE_LOCATION (decl
),
7193 "C++11 %<thread_local%> allows dynamic initialization "
7200 if (DECL_FUNCTION_SCOPE_P (decl
))
7202 /* Emit code to perform this initialization but once. */
7203 tree if_stmt
= NULL_TREE
, inner_if_stmt
= NULL_TREE
;
7204 tree then_clause
= NULL_TREE
, inner_then_clause
= NULL_TREE
;
7205 tree guard
, guard_addr
;
7207 /* We don't need thread-safety code for thread-local vars. */
7208 bool thread_guard
= (flag_threadsafe_statics
7209 && !DECL_THREAD_LOCAL_P (decl
));
7211 /* Emit code to perform this initialization but once. This code
7214 static <type> guard;
7215 if (!__atomic_load (guard.first_byte)) {
7216 if (__cxa_guard_acquire (&guard)) {
7219 // Do initialization.
7220 flag = true; __cxa_guard_release (&guard);
7221 // Register variable for destruction at end of program.
7223 if (!flag) __cxa_guard_abort (&guard);
7227 Note that the `flag' variable is only set to 1 *after* the
7228 initialization is complete. This ensures that an exception,
7229 thrown during the construction, will cause the variable to
7230 reinitialized when we pass through this code again, as per:
7234 If the initialization exits by throwing an exception, the
7235 initialization is not complete, so it will be tried again
7236 the next time control enters the declaration.
7238 This process should be thread-safe, too; multiple threads
7239 should not be able to initialize the variable more than
7242 /* Create the guard variable. */
7243 guard
= get_guard (decl
);
7245 /* Begin the conditional initialization. */
7246 if_stmt
= begin_if_stmt ();
7248 finish_if_stmt_cond (get_guard_cond (guard
, thread_guard
), if_stmt
);
7249 then_clause
= begin_compound_stmt (BCS_NO_SCOPE
);
7253 tree vfntype
= NULL_TREE
;
7254 tree acquire_name
, release_name
, abort_name
;
7255 tree acquire_fn
, release_fn
, abort_fn
;
7256 guard_addr
= build_address (guard
);
7258 acquire_name
= get_identifier ("__cxa_guard_acquire");
7259 release_name
= get_identifier ("__cxa_guard_release");
7260 abort_name
= get_identifier ("__cxa_guard_abort");
7261 acquire_fn
= identifier_global_value (acquire_name
);
7262 release_fn
= identifier_global_value (release_name
);
7263 abort_fn
= identifier_global_value (abort_name
);
7265 acquire_fn
= push_library_fn
7266 (acquire_name
, build_function_type_list (integer_type_node
,
7267 TREE_TYPE (guard_addr
),
7269 NULL_TREE
, ECF_NOTHROW
| ECF_LEAF
);
7270 if (!release_fn
|| !abort_fn
)
7271 vfntype
= build_function_type_list (void_type_node
,
7272 TREE_TYPE (guard_addr
),
7275 release_fn
= push_library_fn (release_name
, vfntype
, NULL_TREE
,
7276 ECF_NOTHROW
| ECF_LEAF
);
7278 abort_fn
= push_library_fn (abort_name
, vfntype
, NULL_TREE
,
7279 ECF_NOTHROW
| ECF_LEAF
);
7281 inner_if_stmt
= begin_if_stmt ();
7282 finish_if_stmt_cond (build_call_n (acquire_fn
, 1, guard_addr
),
7285 inner_then_clause
= begin_compound_stmt (BCS_NO_SCOPE
);
7286 begin
= get_target_expr (boolean_false_node
);
7287 flag
= TARGET_EXPR_SLOT (begin
);
7289 TARGET_EXPR_CLEANUP (begin
)
7290 = build3 (COND_EXPR
, void_type_node
, flag
,
7292 build_call_n (abort_fn
, 1, guard_addr
));
7293 CLEANUP_EH_ONLY (begin
) = 1;
7295 /* Do the initialization itself. */
7296 init
= add_stmt_to_compound (begin
, init
);
7297 init
= add_stmt_to_compound
7298 (init
, build2 (MODIFY_EXPR
, void_type_node
, flag
, boolean_true_node
));
7299 init
= add_stmt_to_compound
7300 (init
, build_call_n (release_fn
, 1, guard_addr
));
7303 init
= add_stmt_to_compound (init
, set_guard (guard
));
7305 /* Use atexit to register a function for destroying this static
7307 init
= add_stmt_to_compound (init
, register_dtor_fn (decl
));
7309 finish_expr_stmt (init
);
7313 finish_compound_stmt (inner_then_clause
);
7314 finish_then_clause (inner_if_stmt
);
7315 finish_if_stmt (inner_if_stmt
);
7318 finish_compound_stmt (then_clause
);
7319 finish_then_clause (if_stmt
);
7320 finish_if_stmt (if_stmt
);
7322 else if (DECL_THREAD_LOCAL_P (decl
))
7323 tls_aggregates
= tree_cons (init
, decl
, tls_aggregates
);
7325 static_aggregates
= tree_cons (init
, decl
, static_aggregates
);
7329 /* Make TYPE a complete type based on INITIAL_VALUE.
7330 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
7331 2 if there was no information (in which case assume 0 if DO_DEFAULT),
7332 3 if the initializer list is empty (in pedantic mode). */
7335 cp_complete_array_type (tree
*ptype
, tree initial_value
, bool do_default
)
7338 tree type
, elt_type
;
7340 /* Don't get confused by a CONSTRUCTOR for some other type. */
7341 if (initial_value
&& TREE_CODE (initial_value
) == CONSTRUCTOR
7342 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value
))
7347 unsigned HOST_WIDE_INT i
;
7350 /* An array of character type can be initialized from a
7351 brace-enclosed string constant.
7353 FIXME: this code is duplicated from reshape_init. Probably
7354 we should just call reshape_init here? */
7355 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype
)))
7356 && TREE_CODE (initial_value
) == CONSTRUCTOR
7357 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value
)))
7359 vec
<constructor_elt
, va_gc
> *v
= CONSTRUCTOR_ELTS (initial_value
);
7360 tree value
= (*v
)[0].value
;
7362 if (TREE_CODE (value
) == STRING_CST
7363 && v
->length () == 1)
7364 initial_value
= value
;
7367 /* If any of the elements are parameter packs, we can't actually
7368 complete this type now because the array size is dependent. */
7369 if (TREE_CODE (initial_value
) == CONSTRUCTOR
)
7371 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value
),
7374 if (PACK_EXPANSION_P (value
))
7380 failure
= complete_array_type (ptype
, initial_value
, do_default
);
7382 /* We can create the array before the element type is complete, which
7383 means that we didn't have these two bits set in the original type
7384 either. In completing the type, we are expected to propagate these
7385 bits. See also complete_type which does the same thing for arrays
7388 if (TYPE_DOMAIN (type
))
7390 elt_type
= TREE_TYPE (type
);
7391 TYPE_NEEDS_CONSTRUCTING (type
) = TYPE_NEEDS_CONSTRUCTING (elt_type
);
7392 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
)
7393 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type
);
7399 /* As above, but either give an error or reject zero-size arrays, depending
7403 cp_complete_array_type_or_error (tree
*ptype
, tree initial_value
,
7404 bool do_default
, tsubst_flags_t complain
)
7407 bool sfinae
= !(complain
& tf_error
);
7408 /* In SFINAE context we can't be lenient about zero-size arrays. */
7411 failure
= cp_complete_array_type (ptype
, initial_value
, do_default
);
7417 /* Not an error. */;
7418 else if (failure
== 1)
7419 error ("initializer fails to determine size of %qT", *ptype
);
7420 else if (failure
== 2)
7423 error ("array size missing in %qT", *ptype
);
7425 else if (failure
== 3)
7426 error ("zero-size array %qT", *ptype
);
7427 *ptype
= error_mark_node
;
7432 /* Return zero if something is declared to be a member of type
7433 CTYPE when in the context of CUR_TYPE. STRING is the error
7434 message to print in that case. Otherwise, quietly return 1. */
7437 member_function_or_else (tree ctype
, tree cur_type
, enum overload_flags flags
)
7439 if (ctype
&& ctype
!= cur_type
)
7441 if (flags
== DTOR_FLAG
)
7442 error ("destructor for alien class %qT cannot be a member", ctype
);
7444 error ("constructor for alien class %qT cannot be a member", ctype
);
7450 /* Subroutine of `grokdeclarator'. */
7452 /* Generate errors possibly applicable for a given set of specifiers.
7453 This is for ARM $7.1.2. */
7456 bad_specifiers (tree object
,
7457 enum bad_spec_place type
,
7468 error ("%qD declared as a %<virtual%> variable", object
);
7470 error ("%qD declared as an %<inline%> variable", object
);
7472 error ("%<const%> and %<volatile%> function specifiers on "
7473 "%qD invalid in variable declaration", object
);
7477 error ("%qD declared as a %<virtual%> parameter", object
);
7479 error ("%qD declared as an %<inline%> parameter", object
);
7481 error ("%<const%> and %<volatile%> function specifiers on "
7482 "%qD invalid in parameter declaration", object
);
7486 error ("%qD declared as a %<virtual%> type", object
);
7488 error ("%qD declared as an %<inline%> type", object
);
7490 error ("%<const%> and %<volatile%> function specifiers on "
7491 "%qD invalid in type declaration", object
);
7495 error ("%qD declared as a %<virtual%> field", object
);
7497 error ("%qD declared as an %<inline%> field", object
);
7499 error ("%<const%> and %<volatile%> function specifiers on "
7500 "%qD invalid in field declaration", object
);
7506 error ("%q+D declared as a friend", object
);
7508 && (TREE_CODE (object
) == TYPE_DECL
7509 || (!TYPE_PTRFN_P (TREE_TYPE (object
))
7510 && !TYPE_REFFN_P (TREE_TYPE (object
))
7511 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object
)))))
7512 error ("%q+D declared with an exception specification", object
);
7515 /* DECL is a member function or static data member and is presently
7516 being defined. Check that the definition is taking place in a
7520 check_class_member_definition_namespace (tree decl
)
7522 /* These checks only apply to member functions and static data
7524 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
7525 /* We check for problems with specializations in pt.c in
7526 check_specialization_namespace, where we can issue better
7528 if (processing_specialization
)
7530 /* There are no restrictions on the placement of
7531 explicit instantiations. */
7532 if (processing_explicit_instantiation
)
7536 A member function definition that appears outside of the
7537 class definition shall appear in a namespace scope enclosing
7538 the class definition.
7542 The definition for a static data member shall appear in a
7543 namespace scope enclosing the member's class definition. */
7544 if (!is_ancestor (current_namespace
, DECL_CONTEXT (decl
)))
7545 permerror (input_location
, "definition of %qD is not in namespace enclosing %qT",
7546 decl
, DECL_CONTEXT (decl
));
7549 /* Build a PARM_DECL for the "this" parameter. TYPE is the
7550 METHOD_TYPE for a non-static member function; QUALS are the
7551 cv-qualifiers that apply to the function. */
7554 build_this_parm (tree type
, cp_cv_quals quals
)
7559 cp_cv_quals this_quals
;
7561 if (CLASS_TYPE_P (type
))
7564 = cp_build_qualified_type (type
, quals
& ~TYPE_QUAL_RESTRICT
);
7565 this_type
= build_pointer_type (this_type
);
7568 this_type
= type_of_this_parm (type
);
7569 /* The `this' parameter is implicitly `const'; it cannot be
7571 this_quals
= (quals
& TYPE_QUAL_RESTRICT
) | TYPE_QUAL_CONST
;
7572 qual_type
= cp_build_qualified_type (this_type
, this_quals
);
7573 parm
= build_artificial_parm (this_identifier
, qual_type
);
7574 cp_apply_type_quals_to_decl (this_quals
, parm
);
7578 /* DECL is a static member function. Complain if it was declared
7579 with function-cv-quals. */
7582 check_static_quals (tree decl
, cp_cv_quals quals
)
7584 if (quals
!= TYPE_UNQUALIFIED
)
7585 error ("static member function %q#D declared with type qualifiers",
7589 /* Helper function. Replace the temporary this parameter injected
7590 during cp_finish_omp_declare_simd with the real this parameter. */
7593 declare_simd_adjust_this (tree
*tp
, int *walk_subtrees
, void *data
)
7595 tree this_parm
= (tree
) data
;
7596 if (TREE_CODE (*tp
) == PARM_DECL
7597 && DECL_NAME (*tp
) == this_identifier
7598 && *tp
!= this_parm
)
7600 else if (TYPE_P (*tp
))
7605 /* CTYPE is class type, or null if non-class.
7606 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
7608 DECLARATOR is the function's name.
7609 PARMS is a chain of PARM_DECLs for the function.
7610 VIRTUALP is truthvalue of whether the function is virtual or not.
7611 FLAGS are to be passed through to `grokclassfn'.
7612 QUALS are qualifiers indicating whether the function is `const'
7614 RAISES is a list of exceptions that this function can raise.
7615 CHECK is 1 if we must find this method in CTYPE, 0 if we should
7616 not look, and -1 if we should not call `grokclassfn' at all.
7618 SFK is the kind of special function (if any) for the new function.
7620 Returns `NULL_TREE' if something goes wrong, after issuing
7621 applicable error messages. */
7624 grokfndecl (tree ctype
,
7628 tree orig_declarator
,
7630 enum overload_flags flags
,
7632 cp_ref_qualifier rqual
,
7639 special_function_kind sfk
,
7644 location_t location
)
7647 int staticp
= ctype
&& TREE_CODE (type
) == FUNCTION_TYPE
;
7651 type
= build_ref_qualified_type (type
, rqual
);
7653 type
= build_exception_variant (type
, raises
);
7655 decl
= build_lang_decl (FUNCTION_DECL
, declarator
, type
);
7657 /* If we have an explicit location, use it, otherwise use whatever
7658 build_lang_decl used (probably input_location). */
7659 if (location
!= UNKNOWN_LOCATION
)
7660 DECL_SOURCE_LOCATION (decl
) = location
;
7662 if (TREE_CODE (type
) == METHOD_TYPE
)
7665 parm
= build_this_parm (type
, quals
);
7666 DECL_CHAIN (parm
) = parms
;
7669 DECL_ARGUMENTS (decl
) = parms
;
7670 for (t
= parms
; t
; t
= DECL_CHAIN (t
))
7671 DECL_CONTEXT (t
) = decl
;
7672 /* Propagate volatile out from type to decl. */
7673 if (TYPE_VOLATILE (type
))
7674 TREE_THIS_VOLATILE (decl
) = 1;
7676 /* Setup decl according to sfk. */
7679 case sfk_constructor
:
7680 case sfk_copy_constructor
:
7681 case sfk_move_constructor
:
7682 DECL_CONSTRUCTOR_P (decl
) = 1;
7684 case sfk_destructor
:
7685 DECL_DESTRUCTOR_P (decl
) = 1;
7691 /* If pointers to member functions use the least significant bit to
7692 indicate whether a function is virtual, ensure a pointer
7693 to this function will have that bit clear. */
7694 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
== ptrmemfunc_vbit_in_pfn
7695 && TREE_CODE (type
) == METHOD_TYPE
7696 && DECL_ALIGN (decl
) < 2 * BITS_PER_UNIT
)
7697 DECL_ALIGN (decl
) = 2 * BITS_PER_UNIT
;
7700 && TREE_CODE (orig_declarator
) == TEMPLATE_ID_EXPR
)
7704 ("defining explicit specialization %qD in friend declaration",
7708 tree fns
= TREE_OPERAND (orig_declarator
, 0);
7709 tree args
= TREE_OPERAND (orig_declarator
, 1);
7711 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
7713 /* Something like `template <class T> friend void f<T>()'. */
7714 error ("invalid use of template-id %qD in declaration "
7715 "of primary template",
7721 /* A friend declaration of the form friend void f<>(). Record
7722 the information in the TEMPLATE_ID_EXPR. */
7723 SET_DECL_IMPLICIT_INSTANTIATION (decl
);
7725 gcc_assert (identifier_p (fns
) || TREE_CODE (fns
) == OVERLOAD
);
7726 DECL_TEMPLATE_INFO (decl
) = build_template_info (fns
, args
);
7728 for (t
= TYPE_ARG_TYPES (TREE_TYPE (decl
)); t
; t
= TREE_CHAIN (t
))
7729 if (TREE_PURPOSE (t
)
7730 && TREE_CODE (TREE_PURPOSE (t
)) == DEFAULT_ARG
)
7732 error ("default arguments are not allowed in declaration "
7733 "of friend template specialization %qD",
7739 error ("%<inline%> is not allowed in declaration of friend "
7740 "template specialization %qD",
7743 error ("%<constexpr%> is not allowed in declaration of friend "
7744 "template specialization %qD",
7751 /* If this decl has namespace scope, set that up. */
7753 set_decl_namespace (decl
, in_namespace
, friendp
);
7755 DECL_CONTEXT (decl
) = FROB_CONTEXT (current_decl_namespace ());
7757 /* `main' and builtins have implicit 'C' linkage. */
7758 if ((MAIN_NAME_P (declarator
)
7759 || (IDENTIFIER_LENGTH (declarator
) > 10
7760 && IDENTIFIER_POINTER (declarator
)[0] == '_'
7761 && IDENTIFIER_POINTER (declarator
)[1] == '_'
7762 && strncmp (IDENTIFIER_POINTER (declarator
)+2, "builtin_", 8) == 0)
7763 || (targetcm
.cxx_implicit_extern_c
7764 && targetcm
.cxx_implicit_extern_c(IDENTIFIER_POINTER (declarator
))))
7765 && current_lang_name
== lang_name_cplusplus
7766 && ctype
== NULL_TREE
7767 && DECL_FILE_SCOPE_P (decl
))
7768 SET_DECL_LANGUAGE (decl
, lang_c
);
7770 /* Should probably propagate const out from type to decl I bet (mrs). */
7773 DECL_STATIC_FUNCTION_P (decl
) = 1;
7774 DECL_CONTEXT (decl
) = ctype
;
7778 DECL_DELETED_FN (decl
) = 1;
7782 DECL_CONTEXT (decl
) = ctype
;
7784 check_class_member_definition_namespace (decl
);
7787 if (ctype
== NULL_TREE
&& DECL_MAIN_P (decl
))
7789 if (PROCESSING_REAL_TEMPLATE_DECL_P())
7790 error ("cannot declare %<::main%> to be a template");
7792 error ("cannot declare %<::main%> to be inline");
7794 error ("cannot declare %<::main%> to be constexpr");
7796 error ("cannot declare %<::main%> to be static");
7801 /* Members of anonymous types and local classes have no linkage; make
7802 them internal. If a typedef is made later, this will be changed. */
7803 if (ctype
&& (TYPE_ANONYMOUS_P (ctype
)
7804 || decl_function_context (TYPE_MAIN_DECL (ctype
))))
7807 if (publicp
&& cxx_dialect
== cxx98
)
7809 /* [basic.link]: A name with no linkage (notably, the name of a class
7810 or enumeration declared in a local scope) shall not be used to
7811 declare an entity with linkage.
7813 DR 757 relaxes this restriction for C++0x. */
7814 no_linkage_error (decl
);
7817 TREE_PUBLIC (decl
) = publicp
;
7820 DECL_INTERFACE_KNOWN (decl
) = 1;
7821 DECL_NOT_REALLY_EXTERN (decl
) = 1;
7824 /* If the declaration was declared inline, mark it as such. */
7827 DECL_DECLARED_INLINE_P (decl
) = 1;
7829 DECL_COMDAT (decl
) = 1;
7832 DECL_DECLARED_CONSTEXPR_P (decl
) = true;
7834 DECL_EXTERNAL (decl
) = 1;
7835 if (TREE_CODE (type
) == FUNCTION_TYPE
)
7840 ? G_("static member function %qD cannot have cv-qualifier")
7841 : G_("non-member function %qD cannot have cv-qualifier"),
7843 quals
= TYPE_UNQUALIFIED
;
7849 ? G_("static member function %qD cannot have ref-qualifier")
7850 : G_("non-member function %qD cannot have ref-qualifier"),
7852 rqual
= REF_QUAL_NONE
;
7856 if (IDENTIFIER_OPNAME_P (DECL_NAME (decl
))
7857 && !grok_op_properties (decl
, /*complain=*/true))
7859 else if (UDLIT_OPER_P (DECL_NAME (decl
)))
7861 bool long_long_unsigned_p
;
7863 const char *suffix
= NULL
;
7864 /* [over.literal]/6: Literal operators shall not have C linkage. */
7865 if (DECL_LANGUAGE (decl
) == lang_c
)
7867 error ("literal operator with C linkage");
7871 if (DECL_NAMESPACE_SCOPE_P (decl
))
7873 if (!check_literal_operator_args (decl
, &long_long_unsigned_p
,
7876 error ("%qD has invalid argument list", decl
);
7880 suffix
= UDLIT_OP_SUFFIX (DECL_NAME (decl
));
7881 if (long_long_unsigned_p
)
7883 if (cpp_interpret_int_suffix (parse_in
, suffix
, strlen (suffix
)))
7884 warning (0, "integer suffix %<%s%>"
7885 " shadowed by implementation", suffix
);
7887 else if (long_double_p
)
7889 if (cpp_interpret_float_suffix (parse_in
, suffix
, strlen (suffix
)))
7890 warning (0, "floating point suffix %<%s%>"
7891 " shadowed by implementation", suffix
);
7896 error ("%qD must be a non-member function", decl
);
7902 /* Make the init_value nonzero so pushdecl knows this is not
7903 tentative. error_mark_node is replaced later with the BLOCK. */
7904 DECL_INITIAL (decl
) = error_mark_node
;
7906 if (TYPE_NOTHROW_P (type
) || nothrow_libfn_p (decl
))
7907 TREE_NOTHROW (decl
) = 1;
7909 if (flag_openmp
|| flag_cilkplus
)
7911 /* Adjust "omp declare simd" attributes. */
7912 tree ods
= lookup_attribute ("omp declare simd", *attrlist
);
7916 for (attr
= ods
; attr
;
7917 attr
= lookup_attribute ("omp declare simd", TREE_CHAIN (attr
)))
7919 if (TREE_CODE (type
) == METHOD_TYPE
)
7920 walk_tree (&TREE_VALUE (attr
), declare_simd_adjust_this
,
7921 DECL_ARGUMENTS (decl
), NULL
);
7922 if (TREE_VALUE (attr
) != NULL_TREE
)
7924 tree cl
= TREE_VALUE (TREE_VALUE (attr
));
7925 cl
= c_omp_declare_simd_clauses_to_numbers
7926 (DECL_ARGUMENTS (decl
), cl
);
7928 TREE_VALUE (TREE_VALUE (attr
)) = cl
;
7930 TREE_VALUE (attr
) = NULL_TREE
;
7936 /* Caller will do the rest of this. */
7940 if (ctype
!= NULL_TREE
)
7941 grokclassfn (ctype
, decl
, flags
);
7944 if (cxx_dialect
>= cxx11
7945 && DECL_DESTRUCTOR_P (decl
)
7946 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl
))
7947 && !processing_template_decl
)
7948 deduce_noexcept_on_destructor (decl
);
7950 decl
= check_explicit_specialization (orig_declarator
, decl
,
7953 4 * (friendp
!= 0));
7954 if (decl
== error_mark_node
)
7957 if (DECL_STATIC_FUNCTION_P (decl
))
7958 check_static_quals (decl
, quals
);
7962 cplus_decl_attributes (&decl
, *attrlist
, 0);
7963 *attrlist
= NULL_TREE
;
7966 /* Check main's type after attributes have been applied. */
7967 if (ctype
== NULL_TREE
&& DECL_MAIN_P (decl
))
7969 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl
)),
7972 tree oldtypeargs
= TYPE_ARG_TYPES (TREE_TYPE (decl
));
7974 error ("%<::main%> must return %<int%>");
7975 newtype
= build_function_type (integer_type_node
, oldtypeargs
);
7976 TREE_TYPE (decl
) = newtype
;
7979 check_main_parameter_types (decl
);
7982 if (ctype
!= NULL_TREE
7983 && (! TYPE_FOR_JAVA (ctype
) || check_java_method (decl
))
7986 tree old_decl
= check_classfn (ctype
, decl
,
7987 (processing_template_decl
7988 > template_class_depth (ctype
))
7989 ? current_template_parms
7992 if (old_decl
== error_mark_node
)
8000 if (TREE_CODE (old_decl
) == TEMPLATE_DECL
)
8001 /* Because grokfndecl is always supposed to return a
8002 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
8003 here. We depend on our callers to figure out that its
8004 really a template that's being returned. */
8005 old_decl
= DECL_TEMPLATE_RESULT (old_decl
);
8007 if (DECL_STATIC_FUNCTION_P (old_decl
)
8008 && TREE_CODE (TREE_TYPE (decl
)) == METHOD_TYPE
)
8010 /* Remove the `this' parm added by grokclassfn. */
8011 revert_static_member_fn (decl
);
8012 check_static_quals (decl
, quals
);
8014 if (DECL_ARTIFICIAL (old_decl
))
8016 error ("definition of implicitly-declared %qD", old_decl
);
8019 else if (DECL_DEFAULTED_FN (old_decl
))
8021 error ("definition of explicitly-defaulted %q+D", decl
);
8022 error ("%q+#D explicitly defaulted here", old_decl
);
8026 /* Since we've smashed OLD_DECL to its
8027 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
8028 if (TREE_CODE (decl
) == TEMPLATE_DECL
)
8029 decl
= DECL_TEMPLATE_RESULT (decl
);
8031 /* Attempt to merge the declarations. This can fail, in
8032 the case of some invalid specialization declarations. */
8033 pushed_scope
= push_scope (ctype
);
8034 ok
= duplicate_decls (decl
, old_decl
, friendp
);
8036 pop_scope (pushed_scope
);
8039 error ("no %q#D member function declared in class %qT",
8043 if (ok
== error_mark_node
)
8049 if (DECL_CONSTRUCTOR_P (decl
) && !grok_ctor_properties (ctype
, decl
))
8052 if (ctype
== NULL_TREE
|| check
)
8056 DECL_VIRTUAL_P (decl
) = 1;
8061 /* decl is a FUNCTION_DECL.
8062 specifiers are the parsed virt-specifiers.
8064 Set flags to reflect the virt-specifiers.
8069 set_virt_specifiers (tree decl
, cp_virt_specifiers specifiers
)
8071 if (decl
== NULL_TREE
)
8073 if (specifiers
& VIRT_SPEC_OVERRIDE
)
8074 DECL_OVERRIDE_P (decl
) = 1;
8075 if (specifiers
& VIRT_SPEC_FINAL
)
8076 DECL_FINAL_P (decl
) = 1;
8080 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
8081 the linkage that DECL will receive in the object file. */
8084 set_linkage_for_static_data_member (tree decl
)
8086 /* A static data member always has static storage duration and
8087 external linkage. Note that static data members are forbidden in
8088 local classes -- the only situation in which a class has
8089 non-external linkage. */
8090 TREE_PUBLIC (decl
) = 1;
8091 TREE_STATIC (decl
) = 1;
8092 /* For non-template classes, static data members are always put
8093 out in exactly those files where they are defined, just as
8094 with ordinary namespace-scope variables. */
8095 if (!processing_template_decl
)
8096 DECL_INTERFACE_KNOWN (decl
) = 1;
8099 /* Create a VAR_DECL named NAME with the indicated TYPE.
8101 If SCOPE is non-NULL, it is the class type or namespace containing
8102 the variable. If SCOPE is NULL, the variable should is created in
8103 the innermost enclosing scope. */
8106 grokvardecl (tree type
,
8108 tree orig_declarator
,
8109 const cp_decl_specifier_seq
*declspecs
,
8116 tree explicit_scope
;
8118 gcc_assert (!name
|| identifier_p (name
));
8120 /* Compute the scope in which to place the variable, but remember
8121 whether or not that scope was explicitly specified by the user. */
8122 explicit_scope
= scope
;
8125 /* An explicit "extern" specifier indicates a namespace-scope
8127 if (declspecs
->storage_class
== sc_extern
)
8128 scope
= current_decl_namespace ();
8129 else if (!at_function_scope_p ())
8130 scope
= current_scope ();
8134 && (/* If the variable is a namespace-scope variable declared in a
8135 template, we need DECL_LANG_SPECIFIC. */
8136 (TREE_CODE (scope
) == NAMESPACE_DECL
&& processing_template_decl
)
8137 /* Similarly for namespace-scope variables with language linkage
8139 || (TREE_CODE (scope
) == NAMESPACE_DECL
8140 && current_lang_name
!= lang_name_cplusplus
)
8141 /* Similarly for static data members. */
8143 /* Similarly for explicit specializations. */
8145 && TREE_CODE (orig_declarator
) == TEMPLATE_ID_EXPR
)))
8146 decl
= build_lang_decl (VAR_DECL
, name
, type
);
8148 decl
= build_decl (input_location
, VAR_DECL
, name
, type
);
8150 if (explicit_scope
&& TREE_CODE (explicit_scope
) == NAMESPACE_DECL
)
8151 set_decl_namespace (decl
, explicit_scope
, 0);
8153 DECL_CONTEXT (decl
) = FROB_CONTEXT (scope
);
8155 if (declspecs
->storage_class
== sc_extern
)
8157 DECL_THIS_EXTERN (decl
) = 1;
8158 DECL_EXTERNAL (decl
) = !initialized
;
8161 if (DECL_CLASS_SCOPE_P (decl
))
8163 set_linkage_for_static_data_member (decl
);
8164 /* This function is only called with out-of-class definitions. */
8165 DECL_EXTERNAL (decl
) = 0;
8166 check_class_member_definition_namespace (decl
);
8168 /* At top level, either `static' or no s.c. makes a definition
8169 (perhaps tentative), and absence of `static' makes it public. */
8170 else if (toplevel_bindings_p ())
8172 TREE_PUBLIC (decl
) = (declspecs
->storage_class
!= sc_static
8173 && (DECL_THIS_EXTERN (decl
) || ! constp
));
8174 TREE_STATIC (decl
) = ! DECL_EXTERNAL (decl
);
8176 /* Not at top level, only `static' makes a static definition. */
8179 TREE_STATIC (decl
) = declspecs
->storage_class
== sc_static
;
8180 TREE_PUBLIC (decl
) = DECL_EXTERNAL (decl
);
8183 if (decl_spec_seq_has_spec_p (declspecs
, ds_thread
))
8185 if (DECL_EXTERNAL (decl
) || TREE_STATIC (decl
))
8186 set_decl_tls_model (decl
, decl_default_tls_model (decl
));
8187 if (declspecs
->gnu_thread_keyword_p
)
8188 DECL_GNU_TLS_P (decl
) = true;
8191 /* If the type of the decl has no linkage, make sure that we'll
8192 notice that in mark_used. */
8193 if (cxx_dialect
> cxx98
8194 && decl_linkage (decl
) != lk_none
8195 && DECL_LANG_SPECIFIC (decl
) == NULL
8196 && !DECL_EXTERN_C_P (decl
)
8197 && no_linkage_check (TREE_TYPE (decl
), /*relaxed_p=*/false))
8198 retrofit_lang_decl (decl
);
8200 if (TREE_PUBLIC (decl
))
8202 /* [basic.link]: A name with no linkage (notably, the name of a class
8203 or enumeration declared in a local scope) shall not be used to
8204 declare an entity with linkage.
8206 DR 757 relaxes this restriction for C++0x. */
8207 if (cxx_dialect
< cxx11
)
8208 no_linkage_error (decl
);
8211 DECL_INTERFACE_KNOWN (decl
) = 1;
8213 // Handle explicit specializations and instantiations of variable templates.
8214 if (orig_declarator
)
8215 decl
= check_explicit_specialization (orig_declarator
, decl
,
8218 return decl
!= error_mark_node
? decl
: NULL_TREE
;
8221 /* Create and return a canonical pointer to member function type, for
8222 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
8225 build_ptrmemfunc_type (tree type
)
8230 if (type
== error_mark_node
)
8233 /* If a canonical type already exists for this type, use it. We use
8234 this method instead of type_hash_canon, because it only does a
8235 simple equality check on the list of field members. */
8237 if ((t
= TYPE_GET_PTRMEMFUNC_TYPE (type
)))
8240 /* Make sure that we always have the unqualified pointer-to-member
8242 if (cp_cv_quals quals
= cp_type_quals (type
))
8244 tree unqual
= build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type
));
8245 return cp_build_qualified_type (unqual
, quals
);
8248 t
= make_node (RECORD_TYPE
);
8250 /* Let the front end know this is a pointer to member function. */
8251 TYPE_PTRMEMFUNC_FLAG (t
) = 1;
8253 field
= build_decl (input_location
, FIELD_DECL
, pfn_identifier
, type
);
8256 field
= build_decl (input_location
, FIELD_DECL
, delta_identifier
,
8258 DECL_CHAIN (field
) = fields
;
8261 finish_builtin_struct (t
, "__ptrmemfunc_type", fields
, ptr_type_node
);
8263 /* Zap out the name so that the back end will give us the debugging
8264 information for this anonymous RECORD_TYPE. */
8265 TYPE_NAME (t
) = NULL_TREE
;
8267 /* Cache this pointer-to-member type so that we can find it again
8269 TYPE_SET_PTRMEMFUNC_TYPE (type
, t
);
8271 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
8272 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8273 else if (TYPE_CANONICAL (type
) != type
)
8274 TYPE_CANONICAL (t
) = build_ptrmemfunc_type (TYPE_CANONICAL (type
));
8279 /* Create and return a pointer to data member type. */
8282 build_ptrmem_type (tree class_type
, tree member_type
)
8284 if (TREE_CODE (member_type
) == METHOD_TYPE
)
8286 cp_cv_quals quals
= type_memfn_quals (member_type
);
8287 cp_ref_qualifier rqual
= type_memfn_rqual (member_type
);
8288 member_type
= build_memfn_type (member_type
, class_type
, quals
, rqual
);
8289 return build_ptrmemfunc_type (build_pointer_type (member_type
));
8293 gcc_assert (TREE_CODE (member_type
) != FUNCTION_TYPE
);
8294 return build_offset_type (class_type
, member_type
);
8298 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
8299 Check to see that the definition is valid. Issue appropriate error
8300 messages. Return 1 if the definition is particularly bad, or 0
8304 check_static_variable_definition (tree decl
, tree type
)
8306 /* Can't check yet if we don't know the type. */
8307 if (dependent_type_p (type
))
8309 /* If DECL is declared constexpr, we'll do the appropriate checks
8310 in check_initializer. */
8311 if (DECL_P (decl
) && DECL_DECLARED_CONSTEXPR_P (decl
))
8313 else if (cxx_dialect
>= cxx11
&& !INTEGRAL_OR_ENUMERATION_TYPE_P (type
))
8315 if (!COMPLETE_TYPE_P (type
))
8316 error ("in-class initialization of static data member %q#D of "
8317 "incomplete type", decl
);
8318 else if (literal_type_p (type
))
8319 permerror (input_location
,
8320 "%<constexpr%> needed for in-class initialization of "
8321 "static data member %q#D of non-integral type", decl
);
8323 error ("in-class initialization of static data member %q#D of "
8324 "non-literal type", decl
);
8328 /* Motion 10 at San Diego: If a static const integral data member is
8329 initialized with an integral constant expression, the initializer
8330 may appear either in the declaration (within the class), or in
8331 the definition, but not both. If it appears in the class, the
8332 member is a member constant. The file-scope definition is always
8334 if (!ARITHMETIC_TYPE_P (type
) && TREE_CODE (type
) != ENUMERAL_TYPE
)
8336 error ("invalid in-class initialization of static data member "
8337 "of non-integral type %qT",
8341 else if (!CP_TYPE_CONST_P (type
))
8342 error ("ISO C++ forbids in-class initialization of non-const "
8343 "static member %qD",
8345 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type
))
8346 pedwarn (input_location
, OPT_Wpedantic
, "ISO C++ forbids initialization of member constant "
8347 "%qD of non-integral type %qT", decl
, type
);
8352 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
8353 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
8354 expressions out into temporary variables so that walk_tree doesn't
8355 step into them (c++/15764). */
8358 stabilize_save_expr_r (tree
*expr_p
, int *walk_subtrees
, void *data
)
8360 hash_set
<tree
> *pset
= (hash_set
<tree
> *)data
;
8361 tree expr
= *expr_p
;
8362 if (TREE_CODE (expr
) == SAVE_EXPR
)
8364 tree op
= TREE_OPERAND (expr
, 0);
8365 cp_walk_tree (&op
, stabilize_save_expr_r
, data
, pset
);
8366 if (TREE_SIDE_EFFECTS (op
))
8367 TREE_OPERAND (expr
, 0) = get_temp_regvar (TREE_TYPE (op
), op
);
8370 else if (!EXPR_P (expr
) || !TREE_SIDE_EFFECTS (expr
))
8375 /* Entry point for the above. */
8378 stabilize_vla_size (tree size
)
8380 hash_set
<tree
> pset
;
8381 /* Break out any function calls into temporary variables. */
8382 cp_walk_tree (&size
, stabilize_save_expr_r
, &pset
, &pset
);
8385 /* Helper function for compute_array_index_type. Look for SIZEOF_EXPR
8386 not inside of SAVE_EXPR and fold them. */
8389 fold_sizeof_expr_r (tree
*expr_p
, int *walk_subtrees
, void *data
)
8391 tree expr
= *expr_p
;
8392 if (TREE_CODE (expr
) == SAVE_EXPR
|| TYPE_P (expr
))
8394 else if (TREE_CODE (expr
) == SIZEOF_EXPR
)
8396 *(bool *)data
= true;
8397 if (SIZEOF_EXPR_TYPE_P (expr
))
8398 expr
= cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (expr
, 0)),
8399 SIZEOF_EXPR
, false);
8400 else if (TYPE_P (TREE_OPERAND (expr
, 0)))
8401 expr
= cxx_sizeof_or_alignof_type (TREE_OPERAND (expr
, 0), SIZEOF_EXPR
,
8404 expr
= cxx_sizeof_or_alignof_expr (TREE_OPERAND (expr
, 0), SIZEOF_EXPR
,
8406 if (expr
== error_mark_node
)
8407 expr
= size_one_node
;
8414 /* Given the SIZE (i.e., number of elements) in an array, compute an
8415 appropriate index type for the array. If non-NULL, NAME is the
8416 name of the thing being declared. */
8419 compute_array_index_type (tree name
, tree size
, tsubst_flags_t complain
)
8424 if (error_operand_p (size
))
8425 return error_mark_node
;
8427 if (!type_dependent_expression_p (size
))
8429 tree type
= TREE_TYPE (size
);
8431 mark_rvalue_use (size
);
8433 if (cxx_dialect
< cxx11
&& TREE_CODE (size
) == NOP_EXPR
8434 && TREE_SIDE_EFFECTS (size
))
8435 /* In C++98, we mark a non-constant array bound with a magic
8436 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
8439 size
= instantiate_non_dependent_expr_sfinae (size
, complain
);
8441 if (CLASS_TYPE_P (type
)
8442 && CLASSTYPE_LITERAL_P (type
))
8444 size
= build_expr_type_conversion (WANT_INT
, size
, true);
8447 if (!(complain
& tf_error
))
8448 return error_mark_node
;
8450 error ("size of array %qD has non-integral type %qT",
8453 error ("size of array has non-integral type %qT", type
);
8454 size
= integer_one_node
;
8456 if (size
== error_mark_node
)
8457 return error_mark_node
;
8458 type
= TREE_TYPE (size
);
8461 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type
))
8462 size
= maybe_constant_value (size
);
8464 if (!TREE_CONSTANT (size
))
8468 if (error_operand_p (size
))
8469 return error_mark_node
;
8471 /* The array bound must be an integer type. */
8472 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type
))
8474 if (!(complain
& tf_error
))
8475 return error_mark_node
;
8477 error ("size of array %qD has non-integral type %qT", name
, type
);
8479 error ("size of array has non-integral type %qT", type
);
8480 size
= integer_one_node
;
8481 type
= TREE_TYPE (size
);
8485 /* A type is dependent if it is...an array type constructed from any
8486 dependent type or whose size is specified by a constant expression
8487 that is value-dependent. */
8488 /* We can only call value_dependent_expression_p on integral constant
8489 expressions; treat non-constant expressions as dependent, too. */
8490 if (processing_template_decl
8491 && (type_dependent_expression_p (size
)
8492 || !TREE_CONSTANT (size
) || value_dependent_expression_p (size
)))
8494 /* We cannot do any checking for a SIZE that isn't known to be
8495 constant. Just build the index type and mark that it requires
8496 structural equality checks. */
8497 itype
= build_index_type (build_min (MINUS_EXPR
, sizetype
,
8498 size
, size_one_node
));
8499 TYPE_DEPENDENT_P (itype
) = 1;
8500 TYPE_DEPENDENT_P_VALID (itype
) = 1;
8501 SET_TYPE_STRUCTURAL_EQUALITY (itype
);
8505 /* Normally, the array-bound will be a constant. */
8506 if (TREE_CODE (size
) == INTEGER_CST
)
8508 /* Check to see if the array bound overflowed. Make that an
8509 error, no matter how generous we're being. */
8510 constant_expression_error (size
);
8512 /* An array must have a positive number of elements. */
8513 if (tree_int_cst_lt (size
, integer_zero_node
))
8515 if (!(complain
& tf_error
))
8516 return error_mark_node
;
8518 error ("size of array %qD is negative", name
);
8520 error ("size of array is negative");
8521 size
= integer_one_node
;
8523 /* As an extension we allow zero-sized arrays. */
8524 else if (integer_zerop (size
))
8526 if (!(complain
& tf_error
))
8527 /* We must fail if performing argument deduction (as
8528 indicated by the state of complain), so that
8529 another substitution can be found. */
8530 return error_mark_node
;
8531 else if (in_system_header_at (input_location
))
8532 /* Allow them in system headers because glibc uses them. */;
8534 pedwarn (input_location
, OPT_Wpedantic
, "ISO C++ forbids zero-size array %qD", name
);
8536 pedwarn (input_location
, OPT_Wpedantic
, "ISO C++ forbids zero-size array");
8539 else if (TREE_CONSTANT (size
)
8540 /* We don't allow VLAs at non-function scopes, or during
8541 tentative template substitution. */
8542 || !at_function_scope_p ()
8543 || !(complain
& tf_error
))
8545 if (!(complain
& tf_error
))
8546 return error_mark_node
;
8547 /* `(int) &fn' is not a valid array bound. */
8549 error ("size of array %qD is not an integral constant-expression",
8552 error ("size of array is not an integral constant-expression");
8553 size
= integer_one_node
;
8555 else if (pedantic
&& warn_vla
!= 0)
8558 pedwarn (input_location
, OPT_Wvla
, "ISO C++ forbids variable length array %qD", name
);
8560 pedwarn (input_location
, OPT_Wvla
, "ISO C++ forbids variable length array");
8562 else if (warn_vla
> 0)
8566 "variable length array %qD is used", name
);
8569 "variable length array is used");
8572 if (processing_template_decl
&& !TREE_CONSTANT (size
))
8573 /* A variable sized array. */
8574 itype
= build_min (MINUS_EXPR
, sizetype
, size
, integer_one_node
);
8577 HOST_WIDE_INT saved_processing_template_decl
;
8579 /* Compute the index of the largest element in the array. It is
8580 one less than the number of elements in the array. We save
8581 and restore PROCESSING_TEMPLATE_DECL so that computations in
8582 cp_build_binary_op will be appropriately folded. */
8583 saved_processing_template_decl
= processing_template_decl
;
8584 processing_template_decl
= 0;
8585 itype
= cp_build_binary_op (input_location
,
8587 cp_convert (ssizetype
, size
, complain
),
8588 cp_convert (ssizetype
, integer_one_node
,
8591 itype
= fold (itype
);
8592 processing_template_decl
= saved_processing_template_decl
;
8594 if (!TREE_CONSTANT (itype
))
8596 /* A variable sized array. */
8597 itype
= variable_size (itype
);
8599 if (TREE_CODE (itype
) != SAVE_EXPR
)
8601 /* Look for SIZEOF_EXPRs in itype and fold them, otherwise
8602 they might survive till gimplification. */
8603 tree newitype
= itype
;
8605 cp_walk_tree_without_duplicates (&newitype
,
8606 fold_sizeof_expr_r
, &found
);
8608 itype
= variable_size (fold (newitype
));
8611 stabilize_vla_size (itype
);
8613 if (flag_sanitize
& SANITIZE_VLA
8614 && do_ubsan_in_current_function ())
8616 /* We have to add 1 -- in the ubsan routine we generate
8617 LE_EXPR rather than LT_EXPR. */
8618 tree t
= fold_build2 (PLUS_EXPR
, TREE_TYPE (itype
), itype
,
8619 build_one_cst (TREE_TYPE (itype
)));
8620 t
= ubsan_instrument_vla (input_location
, t
);
8621 finish_expr_stmt (t
);
8624 /* Make sure that there was no overflow when creating to a signed
8625 index type. (For example, on a 32-bit machine, an array with
8626 size 2^32 - 1 is too big.) */
8627 else if (TREE_CODE (itype
) == INTEGER_CST
8628 && TREE_OVERFLOW (itype
))
8630 if (!(complain
& tf_error
))
8631 return error_mark_node
;
8632 error ("overflow in array dimension");
8633 TREE_OVERFLOW (itype
) = 0;
8637 /* Create and return the appropriate index type. */
8638 itype
= build_index_type (itype
);
8640 /* If the index type were dependent, we would have returned early, so
8641 remember that it isn't. */
8642 TYPE_DEPENDENT_P (itype
) = 0;
8643 TYPE_DEPENDENT_P_VALID (itype
) = 1;
8647 /* Returns the scope (if any) in which the entity declared by
8648 DECLARATOR will be located. If the entity was declared with an
8649 unqualified name, NULL_TREE is returned. */
8652 get_scope_of_declarator (const cp_declarator
*declarator
)
8654 while (declarator
&& declarator
->kind
!= cdk_id
)
8655 declarator
= declarator
->declarator
;
8657 /* If the declarator-id is a SCOPE_REF, the scope in which the
8658 declaration occurs is the first operand. */
8660 && declarator
->u
.id
.qualifying_scope
)
8661 return declarator
->u
.id
.qualifying_scope
;
8663 /* Otherwise, the declarator is not a qualified name; the entity will
8664 be declared in the current scope. */
8668 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
8669 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
8673 create_array_type_for_decl (tree name
, tree type
, tree size
)
8675 tree itype
= NULL_TREE
;
8677 /* If things have already gone awry, bail now. */
8678 if (type
== error_mark_node
|| size
== error_mark_node
)
8679 return error_mark_node
;
8681 /* 8.3.4/1: If the type of the identifier of D contains the auto
8682 type-specifier, the program is ill-formed. */
8683 if (type_uses_auto (type
))
8685 error ("%qD declared as array of %qT", name
, type
);
8686 return error_mark_node
;
8689 /* If there are some types which cannot be array elements,
8690 issue an error-message and return. */
8691 switch (TREE_CODE (type
))
8695 error ("declaration of %qD as array of void", name
);
8697 error ("creating array of void");
8698 return error_mark_node
;
8702 error ("declaration of %qD as array of functions", name
);
8704 error ("creating array of functions");
8705 return error_mark_node
;
8707 case REFERENCE_TYPE
:
8709 error ("declaration of %qD as array of references", name
);
8711 error ("creating array of references");
8712 return error_mark_node
;
8716 error ("declaration of %qD as array of function members", name
);
8718 error ("creating array of function members");
8719 return error_mark_node
;
8727 The constant expressions that specify the bounds of the arrays
8728 can be omitted only for the first member of the sequence. */
8729 if (TREE_CODE (type
) == ARRAY_TYPE
&& !TYPE_DOMAIN (type
))
8732 error ("declaration of %qD as multidimensional array must "
8733 "have bounds for all dimensions except the first",
8736 error ("multidimensional array must have bounds for all "
8737 "dimensions except the first");
8739 return error_mark_node
;
8742 /* Figure out the index type for the array. */
8744 itype
= compute_array_index_type (name
, size
, tf_warning_or_error
);
8747 T is called the array element type; this type shall not be [...] an
8748 abstract class type. */
8749 abstract_virtuals_error (name
, type
);
8751 return build_cplus_array_type (type
, itype
);
8754 /* Check that it's OK to declare a function with the indicated TYPE.
8755 SFK indicates the kind of special function (if any) that this
8756 function is. OPTYPE is the type given in a conversion operator
8757 declaration, or the class type for a constructor/destructor.
8758 Returns the actual return type of the function; that
8759 may be different than TYPE if an error occurs, or for certain
8760 special functions. */
8763 check_special_function_return_type (special_function_kind sfk
,
8769 case sfk_constructor
:
8771 error ("return type specification for constructor invalid");
8773 if (targetm
.cxx
.cdtor_returns_this () && !TYPE_FOR_JAVA (optype
))
8774 type
= build_pointer_type (optype
);
8776 type
= void_type_node
;
8779 case sfk_destructor
:
8781 error ("return type specification for destructor invalid");
8782 /* We can't use the proper return type here because we run into
8783 problems with ambiguous bases and covariant returns.
8784 Java classes are left unchanged because (void *) isn't a valid
8785 Java type, and we don't want to change the Java ABI. */
8786 if (targetm
.cxx
.cdtor_returns_this () && !TYPE_FOR_JAVA (optype
))
8787 type
= build_pointer_type (void_type_node
);
8789 type
= void_type_node
;
8792 case sfk_conversion
:
8794 error ("return type specified for %<operator %T%>", optype
);
8805 /* A variable or data member (whose unqualified name is IDENTIFIER)
8806 has been declared with the indicated TYPE. If the TYPE is not
8807 acceptable, issue an error message and return a type to use for
8808 error-recovery purposes. */
8811 check_var_type (tree identifier
, tree type
)
8813 if (VOID_TYPE_P (type
))
8816 error ("unnamed variable or field declared void");
8817 else if (identifier_p (identifier
))
8819 gcc_assert (!IDENTIFIER_OPNAME_P (identifier
));
8820 error ("variable or field %qE declared void", identifier
);
8823 error ("variable or field declared void");
8824 type
= error_mark_node
;
8830 /* Given declspecs and a declarator (abstract or otherwise), determine
8831 the name and type of the object declared and construct a DECL node
8834 DECLSPECS points to the representation of declaration-specifier
8835 sequence that precedes declarator.
8837 DECL_CONTEXT says which syntactic context this declaration is in:
8838 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
8839 FUNCDEF for a function definition. Like NORMAL but a few different
8840 error messages in each case. Return value may be zero meaning
8841 this definition is too screwy to try to parse.
8842 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
8843 handle member functions (which have FIELD context).
8844 Return value may be zero meaning this definition is too screwy to
8846 PARM for a parameter declaration (either within a function prototype
8847 or before a function body). Make a PARM_DECL, or return void_type_node.
8848 TPARM for a template parameter declaration.
8849 CATCHPARM for a parameter declaration before a catch clause.
8850 TYPENAME if for a typename (in a cast or sizeof).
8851 Don't make a DECL node; just return the ..._TYPE node.
8852 FIELD for a struct or union field; make a FIELD_DECL.
8853 BITFIELD for a field with specified width.
8855 INITIALIZED is as for start_decl.
8857 ATTRLIST is a pointer to the list of attributes, which may be NULL
8858 if there are none; *ATTRLIST may be modified if attributes from inside
8859 the declarator should be applied to the declaration.
8861 When this function is called, scoping variables (such as
8862 CURRENT_CLASS_TYPE) should reflect the scope in which the
8863 declaration occurs, not the scope in which the new declaration will
8864 be placed. For example, on:
8868 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
8871 Returns a DECL (if a declarator is present), a TYPE (if there is no
8872 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
8876 grokdeclarator (const cp_declarator
*declarator
,
8877 cp_decl_specifier_seq
*declspecs
,
8878 enum decl_context decl_context
,
8882 tree type
= NULL_TREE
;
8884 int explicit_intN
= 0;
8885 int virtualp
, explicitp
, friendp
, inlinep
, staticp
;
8886 int explicit_int
= 0;
8887 int explicit_char
= 0;
8888 int defaulted_int
= 0;
8890 tree typedef_decl
= NULL_TREE
;
8891 const char *name
= NULL
;
8892 tree typedef_type
= NULL_TREE
;
8893 /* True if this declarator is a function definition. */
8894 bool funcdef_flag
= false;
8895 cp_declarator_kind innermost_code
= cdk_error
;
8898 /* See the code below that used this. */
8899 tree decl_attr
= NULL_TREE
;
8902 /* Keep track of what sort of function is being processed
8903 so that we can warn about default return values, or explicit
8904 return values which do not match prescribed defaults. */
8905 special_function_kind sfk
= sfk_none
;
8907 tree dname
= NULL_TREE
;
8908 tree ctor_return_type
= NULL_TREE
;
8909 enum overload_flags flags
= NO_SPECIAL
;
8910 /* cv-qualifiers that apply to the declarator, for a declaration of
8911 a member function. */
8912 cp_cv_quals memfn_quals
= TYPE_UNQUALIFIED
;
8913 /* virt-specifiers that apply to the declarator, for a declaration of
8914 a member function. */
8915 cp_virt_specifiers virt_specifiers
= VIRT_SPEC_UNSPECIFIED
;
8916 /* ref-qualifier that applies to the declarator, for a declaration of
8917 a member function. */
8918 cp_ref_qualifier rqual
= REF_QUAL_NONE
;
8919 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
8921 tree raises
= NULL_TREE
;
8922 int template_count
= 0;
8923 tree returned_attrs
= NULL_TREE
;
8924 tree parms
= NULL_TREE
;
8925 const cp_declarator
*id_declarator
;
8926 /* The unqualified name of the declarator; either an
8927 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
8928 tree unqualified_id
;
8929 /* The class type, if any, in which this entity is located,
8930 or NULL_TREE if none. Note that this value may be different from
8931 the current class type; for example if an attempt is made to declare
8932 "A::f" inside "B", this value will be "A". */
8933 tree ctype
= current_class_type
;
8934 /* The NAMESPACE_DECL for the namespace in which this entity is
8935 located. If an unqualified name is used to declare the entity,
8936 this value will be NULL_TREE, even if the entity is located at
8938 tree in_namespace
= NULL_TREE
;
8939 cp_storage_class storage_class
;
8940 bool unsigned_p
, signed_p
, short_p
, long_p
, thread_p
;
8941 bool type_was_error_mark_node
= false;
8942 bool parameter_pack_p
= declarator
? declarator
->parameter_pack_p
: false;
8943 bool template_type_arg
= false;
8944 bool template_parm_flag
= false;
8945 bool typedef_p
= decl_spec_seq_has_spec_p (declspecs
, ds_typedef
);
8946 bool constexpr_p
= decl_spec_seq_has_spec_p (declspecs
, ds_constexpr
);
8947 bool late_return_type_p
= false;
8948 bool array_parameter_p
= false;
8949 source_location saved_loc
= input_location
;
8952 signed_p
= decl_spec_seq_has_spec_p (declspecs
, ds_signed
);
8953 unsigned_p
= decl_spec_seq_has_spec_p (declspecs
, ds_unsigned
);
8954 short_p
= decl_spec_seq_has_spec_p (declspecs
, ds_short
);
8955 long_p
= decl_spec_seq_has_spec_p (declspecs
, ds_long
);
8956 longlong
= decl_spec_seq_has_spec_p (declspecs
, ds_long_long
);
8957 explicit_intN
= declspecs
->explicit_intN_p
;
8958 thread_p
= decl_spec_seq_has_spec_p (declspecs
, ds_thread
);
8960 if (decl_context
== FUNCDEF
)
8961 funcdef_flag
= true, decl_context
= NORMAL
;
8962 else if (decl_context
== MEMFUNCDEF
)
8963 funcdef_flag
= true, decl_context
= FIELD
;
8964 else if (decl_context
== BITFIELD
)
8965 bitfield
= 1, decl_context
= FIELD
;
8966 else if (decl_context
== TEMPLATE_TYPE_ARG
)
8967 template_type_arg
= true, decl_context
= TYPENAME
;
8968 else if (decl_context
== TPARM
)
8969 template_parm_flag
= true, decl_context
= PARM
;
8971 if (initialized
> 1)
8972 funcdef_flag
= true;
8974 /* Look inside a declarator for the name being declared
8975 and get it as a string, for an error message. */
8976 for (id_declarator
= declarator
;
8978 id_declarator
= id_declarator
->declarator
)
8980 if (id_declarator
->kind
!= cdk_id
)
8981 innermost_code
= id_declarator
->kind
;
8983 switch (id_declarator
->kind
)
8986 if (id_declarator
->declarator
8987 && id_declarator
->declarator
->kind
== cdk_id
)
8989 sfk
= id_declarator
->declarator
->u
.id
.sfk
;
8990 if (sfk
== sfk_destructor
)
8997 tree qualifying_scope
= id_declarator
->u
.id
.qualifying_scope
;
8998 tree decl
= id_declarator
->u
.id
.unqualified_name
;
9001 if (qualifying_scope
)
9003 if (at_function_scope_p ())
9007 A declarator-id shall not be qualified except
9010 None of the cases are permitted in block
9012 if (qualifying_scope
== global_namespace
)
9013 error ("invalid use of qualified-name %<::%D%>",
9015 else if (TYPE_P (qualifying_scope
))
9016 error ("invalid use of qualified-name %<%T::%D%>",
9017 qualifying_scope
, decl
);
9019 error ("invalid use of qualified-name %<%D::%D%>",
9020 qualifying_scope
, decl
);
9021 return error_mark_node
;
9023 else if (TYPE_P (qualifying_scope
))
9025 ctype
= qualifying_scope
;
9026 if (!MAYBE_CLASS_TYPE_P (ctype
))
9028 error ("%q#T is not a class or a namespace", ctype
);
9031 else if (innermost_code
!= cdk_function
9032 && current_class_type
9033 && !uniquely_derived_from_p (ctype
,
9034 current_class_type
))
9036 error ("invalid use of qualified-name %<%T::%D%>",
9037 qualifying_scope
, decl
);
9038 return error_mark_node
;
9041 else if (TREE_CODE (qualifying_scope
) == NAMESPACE_DECL
)
9042 in_namespace
= qualifying_scope
;
9044 switch (TREE_CODE (decl
))
9050 if (innermost_code
!= cdk_function
)
9052 error ("declaration of %qD as non-function", decl
);
9053 return error_mark_node
;
9055 else if (!qualifying_scope
9056 && !(current_class_type
&& at_class_scope_p ()))
9058 error ("declaration of %qD as non-member", decl
);
9059 return error_mark_node
;
9062 type
= TREE_OPERAND (decl
, 0);
9064 type
= constructor_name (type
);
9065 name
= identifier_to_locale (IDENTIFIER_POINTER (type
));
9070 case TEMPLATE_ID_EXPR
:
9072 tree fns
= TREE_OPERAND (decl
, 0);
9075 if (!identifier_p (dname
))
9077 if (variable_template_p (dname
))
9078 dname
= DECL_NAME (dname
);
9081 gcc_assert (is_overloaded_fn (dname
));
9082 dname
= DECL_NAME (get_first_fn (dname
));
9088 case IDENTIFIER_NODE
:
9089 if (identifier_p (decl
))
9092 if (C_IS_RESERVED_WORD (dname
))
9094 error ("declarator-id missing; using reserved word %qD",
9096 name
= identifier_to_locale (IDENTIFIER_POINTER (dname
));
9098 else if (!IDENTIFIER_TYPENAME_P (dname
))
9099 name
= identifier_to_locale (IDENTIFIER_POINTER (dname
));
9102 gcc_assert (flags
== NO_SPECIAL
);
9103 flags
= TYPENAME_FLAG
;
9104 ctor_return_type
= TREE_TYPE (dname
);
9105 sfk
= sfk_conversion
;
9106 if (is_typename_at_global_scope (dname
))
9107 name
= identifier_to_locale (IDENTIFIER_POINTER (dname
));
9109 name
= "<invalid operator>";
9126 return error_mark_node
;
9131 if (id_declarator
->kind
== cdk_id
)
9137 The declarator in a function-definition shall have the form
9138 D1 ( parameter-declaration-clause) ... */
9139 if (funcdef_flag
&& innermost_code
!= cdk_function
)
9141 error ("function definition does not declare parameters");
9142 return error_mark_node
;
9145 if (flags
== TYPENAME_FLAG
9146 && innermost_code
!= cdk_function
9147 && ! (ctype
&& !declspecs
->any_specifiers_p
))
9149 error ("declaration of %qD as non-function", dname
);
9150 return error_mark_node
;
9154 && identifier_p (dname
)
9155 && UDLIT_OPER_P (dname
)
9156 && innermost_code
!= cdk_function
)
9158 error ("declaration of %qD as non-function", dname
);
9159 return error_mark_node
;
9162 if (dname
&& IDENTIFIER_OPNAME_P (dname
))
9166 error ("declaration of %qD as %<typedef%>", dname
);
9167 return error_mark_node
;
9169 else if (decl_context
== PARM
|| decl_context
== CATCHPARM
)
9171 error ("declaration of %qD as parameter", dname
);
9172 return error_mark_node
;
9176 /* Anything declared one level down from the top level
9177 must be one of the parameters of a function
9178 (because the body is at least two levels down). */
9180 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
9181 by not allowing C++ class definitions to specify their parameters
9182 with xdecls (must be spec.d in the parmlist).
9184 Since we now wait to push a class scope until we are sure that
9185 we are in a legitimate method context, we must set oldcname
9186 explicitly (since current_class_name is not yet alive).
9188 We also want to avoid calling this a PARM if it is in a namespace. */
9190 if (decl_context
== NORMAL
&& !toplevel_bindings_p ())
9192 cp_binding_level
*b
= current_binding_level
;
9193 current_binding_level
= b
->level_chain
;
9194 if (current_binding_level
!= 0 && toplevel_bindings_p ())
9195 decl_context
= PARM
;
9196 current_binding_level
= b
;
9200 name
= decl_context
== PARM
? "parameter" : "type name";
9202 if (constexpr_p
&& typedef_p
)
9204 error ("%<constexpr%> cannot appear in a typedef declaration");
9205 return error_mark_node
;
9208 /* If there were multiple types specified in the decl-specifier-seq,
9209 issue an error message. */
9210 if (declspecs
->multiple_types_p
)
9212 error ("two or more data types in declaration of %qs", name
);
9213 return error_mark_node
;
9216 if (declspecs
->conflicting_specifiers_p
)
9218 error ("conflicting specifiers in declaration of %qs", name
);
9219 return error_mark_node
;
9222 /* Extract the basic type from the decl-specifier-seq. */
9223 type
= declspecs
->type
;
9224 if (type
== error_mark_node
)
9227 type_was_error_mark_node
= true;
9229 /* If the entire declaration is itself tagged as deprecated then
9230 suppress reports of deprecated items. */
9231 if (type
&& TREE_DEPRECATED (type
)
9232 && deprecated_state
!= DEPRECATED_SUPPRESS
)
9233 warn_deprecated_use (type
, NULL_TREE
);
9234 if (type
&& TREE_CODE (type
) == TYPE_DECL
)
9236 typedef_decl
= type
;
9237 type
= TREE_TYPE (typedef_decl
);
9238 if (TREE_DEPRECATED (type
)
9239 && DECL_ARTIFICIAL (typedef_decl
)
9240 && deprecated_state
!= DEPRECATED_SUPPRESS
)
9241 warn_deprecated_use (type
, NULL_TREE
);
9243 /* No type at all: default to `int', and set DEFAULTED_INT
9244 because it was not a user-defined typedef. */
9245 if (type
== NULL_TREE
)
9247 if (signed_p
|| unsigned_p
|| long_p
|| short_p
)
9249 /* These imply 'int'. */
9250 type
= integer_type_node
;
9253 /* If we just have "complex", it is equivalent to "complex double". */
9254 else if (!longlong
&& !explicit_intN
9255 && decl_spec_seq_has_spec_p (declspecs
, ds_complex
))
9257 type
= double_type_node
;
9258 pedwarn (declspecs
->locations
[ds_complex
], OPT_Wpedantic
,
9259 "ISO C++ does not support plain %<complex%> meaning "
9260 "%<double complex%>");
9264 explicit_int
= declspecs
->explicit_int_p
;
9265 explicit_char
= declspecs
->explicit_char_p
;
9268 /* See the code below that used this. */
9270 decl_attr
= DECL_ATTRIBUTES (typedef_decl
);
9272 typedef_type
= type
;
9275 if (sfk
!= sfk_conversion
)
9276 ctor_return_type
= ctype
;
9278 if (sfk
!= sfk_none
)
9279 type
= check_special_function_return_type (sfk
, type
,
9281 else if (type
== NULL_TREE
)
9287 /* We handle `main' specially here, because 'main () { }' is so
9288 common. With no options, it is allowed. With -Wreturn-type,
9289 it is a warning. It is only an error with -pedantic-errors. */
9290 is_main
= (funcdef_flag
9291 && dname
&& identifier_p (dname
)
9292 && MAIN_NAME_P (dname
)
9293 && ctype
== NULL_TREE
9294 && in_namespace
== NULL_TREE
9295 && current_namespace
== global_namespace
);
9297 if (type_was_error_mark_node
)
9298 /* We've already issued an error, don't complain more. */;
9299 else if (in_system_header_at (input_location
) || flag_ms_extensions
)
9300 /* Allow it, sigh. */;
9302 permerror (input_location
, "ISO C++ forbids declaration of %qs with no type", name
);
9304 pedwarn (input_location
, OPT_Wpedantic
,
9305 "ISO C++ forbids declaration of %qs with no type", name
);
9307 warning (OPT_Wreturn_type
,
9308 "ISO C++ forbids declaration of %qs with no type", name
);
9310 type
= integer_type_node
;
9317 if (! int_n_enabled_p
[declspecs
->int_n_idx
])
9319 error ("%<__int%d%> is not supported by this target",
9320 int_n_data
[declspecs
->int_n_idx
].bitsize
);
9321 explicit_intN
= false;
9323 else if (pedantic
&& ! in_system_header_at (input_location
))
9324 pedwarn (input_location
, OPT_Wpedantic
,
9325 "ISO C++ does not support %<__int%d%> for %qs",
9326 int_n_data
[declspecs
->int_n_idx
].bitsize
, name
);
9329 /* Now process the modifiers that were specified
9330 and check for invalid combinations. */
9332 /* Long double is a special combination. */
9333 if (long_p
&& !longlong
&& TYPE_MAIN_VARIANT (type
) == double_type_node
)
9336 type
= cp_build_qualified_type (long_double_type_node
,
9337 cp_type_quals (type
));
9340 /* Check all other uses of type modifiers. */
9342 if (unsigned_p
|| signed_p
|| long_p
|| short_p
)
9346 if ((signed_p
|| unsigned_p
) && TREE_CODE (type
) != INTEGER_TYPE
)
9347 error ("%<signed%> or %<unsigned%> invalid for %qs", name
);
9348 else if (signed_p
&& unsigned_p
)
9349 error ("%<signed%> and %<unsigned%> specified together for %qs", name
);
9350 else if (longlong
&& TREE_CODE (type
) != INTEGER_TYPE
)
9351 error ("%<long long%> invalid for %qs", name
);
9352 else if (long_p
&& TREE_CODE (type
) == REAL_TYPE
)
9353 error ("%<long%> invalid for %qs", name
);
9354 else if (short_p
&& TREE_CODE (type
) == REAL_TYPE
)
9355 error ("%<short%> invalid for %qs", name
);
9356 else if ((long_p
|| short_p
) && TREE_CODE (type
) != INTEGER_TYPE
)
9357 error ("%<long%> or %<short%> invalid for %qs", name
);
9358 else if ((long_p
|| short_p
|| explicit_char
|| explicit_int
) && explicit_intN
)
9359 error ("%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs", name
);
9360 else if ((long_p
|| short_p
) && explicit_char
)
9361 error ("%<long%> or %<short%> specified with char for %qs", name
);
9362 else if (long_p
&& short_p
)
9363 error ("%<long%> and %<short%> specified together for %qs", name
);
9364 else if (type
== char16_type_node
|| type
== char32_type_node
)
9366 if (signed_p
|| unsigned_p
)
9367 error ("%<signed%> or %<unsigned%> invalid for %qs", name
);
9368 else if (short_p
|| long_p
)
9369 error ("%<short%> or %<long%> invalid for %qs", name
);
9374 if (!explicit_int
&& !defaulted_int
&& !explicit_char
&& !explicit_intN
&& pedantic
)
9376 pedwarn (input_location
, OPT_Wpedantic
,
9377 "long, short, signed or unsigned used invalidly for %qs",
9379 if (flag_pedantic_errors
)
9384 /* Discard the type modifiers if they are invalid. */
9395 /* Decide whether an integer type is signed or not.
9396 Optionally treat bitfields as signed by default. */
9400 It is implementation-defined whether a plain (neither
9401 explicitly signed or unsigned) char, short, int, or long
9402 bit-field is signed or unsigned.
9404 Naturally, we extend this to long long as well. Note that
9405 this does not include wchar_t. */
9406 || (bitfield
&& !flag_signed_bitfields
9408 /* A typedef for plain `int' without `signed' can be
9409 controlled just like plain `int', but a typedef for
9410 `signed int' cannot be so controlled. */
9412 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl
))
9413 && TREE_CODE (type
) == INTEGER_TYPE
9414 && !same_type_p (TYPE_MAIN_VARIANT (type
), wchar_type_node
)))
9417 type
= int_n_trees
[declspecs
->int_n_idx
].unsigned_type
;
9419 type
= long_long_unsigned_type_node
;
9421 type
= long_unsigned_type_node
;
9423 type
= short_unsigned_type_node
;
9424 else if (type
== char_type_node
)
9425 type
= unsigned_char_type_node
;
9426 else if (typedef_decl
)
9427 type
= unsigned_type_for (type
);
9429 type
= unsigned_type_node
;
9431 else if (signed_p
&& type
== char_type_node
)
9432 type
= signed_char_type_node
;
9433 else if (explicit_intN
)
9434 type
= int_n_trees
[declspecs
->int_n_idx
].signed_type
;
9436 type
= long_long_integer_type_node
;
9438 type
= long_integer_type_node
;
9440 type
= short_integer_type_node
;
9442 if (decl_spec_seq_has_spec_p (declspecs
, ds_complex
))
9444 if (TREE_CODE (type
) != INTEGER_TYPE
&& TREE_CODE (type
) != REAL_TYPE
)
9445 error ("complex invalid for %qs", name
);
9446 /* If a modifier is specified, the resulting complex is the complex
9447 form of TYPE. E.g, "complex short" is "complex short int". */
9448 else if (type
== integer_type_node
)
9449 type
= complex_integer_type_node
;
9450 else if (type
== float_type_node
)
9451 type
= complex_float_type_node
;
9452 else if (type
== double_type_node
)
9453 type
= complex_double_type_node
;
9454 else if (type
== long_double_type_node
)
9455 type
= complex_long_double_type_node
;
9457 type
= build_complex_type (type
);
9460 type_quals
= TYPE_UNQUALIFIED
;
9461 if (decl_spec_seq_has_spec_p (declspecs
, ds_const
))
9462 type_quals
|= TYPE_QUAL_CONST
;
9463 if (decl_spec_seq_has_spec_p (declspecs
, ds_volatile
))
9464 type_quals
|= TYPE_QUAL_VOLATILE
;
9465 if (decl_spec_seq_has_spec_p (declspecs
, ds_restrict
))
9466 type_quals
|= TYPE_QUAL_RESTRICT
;
9467 if (sfk
== sfk_conversion
&& type_quals
!= TYPE_UNQUALIFIED
)
9468 error ("qualifiers are not allowed on declaration of %<operator %T%>",
9471 /* If we're using the injected-class-name to form a compound type or a
9472 declaration, replace it with the underlying class so we don't get
9473 redundant typedefs in the debug output. But if we are returning the
9474 type unchanged, leave it alone so that it's available to
9475 maybe_get_template_decl_from_type_decl. */
9476 if (CLASS_TYPE_P (type
)
9477 && DECL_SELF_REFERENCE_P (TYPE_NAME (type
))
9478 && type
== TREE_TYPE (TYPE_NAME (type
))
9479 && (declarator
|| type_quals
))
9480 type
= DECL_ORIGINAL_TYPE (TYPE_NAME (type
));
9482 type_quals
|= cp_type_quals (type
);
9483 type
= cp_build_qualified_type_real
9484 (type
, type_quals
, ((((typedef_decl
&& !DECL_ARTIFICIAL (typedef_decl
))
9485 || declspecs
->decltype_p
)
9486 ? tf_ignore_bad_quals
: 0) | tf_warning_or_error
));
9487 /* We might have ignored or rejected some of the qualifiers. */
9488 type_quals
= cp_type_quals (type
);
9491 inlinep
= decl_spec_seq_has_spec_p (declspecs
, ds_inline
);
9492 virtualp
= decl_spec_seq_has_spec_p (declspecs
, ds_virtual
);
9493 explicitp
= decl_spec_seq_has_spec_p (declspecs
, ds_explicit
);
9495 storage_class
= declspecs
->storage_class
;
9496 if (storage_class
== sc_static
)
9497 staticp
= 1 + (decl_context
== FIELD
);
9499 if (virtualp
&& staticp
== 2)
9501 error ("member %qD cannot be declared both virtual and static", dname
);
9502 storage_class
= sc_none
;
9505 friendp
= decl_spec_seq_has_spec_p (declspecs
, ds_friend
);
9507 /* Issue errors about use of storage classes for parameters. */
9508 if (decl_context
== PARM
)
9512 error ("typedef declaration invalid in parameter declaration");
9513 return error_mark_node
;
9515 else if (template_parm_flag
&& storage_class
!= sc_none
)
9517 error ("storage class specified for template parameter %qs", name
);
9518 return error_mark_node
;
9520 else if (storage_class
== sc_static
9521 || storage_class
== sc_extern
9523 error ("storage class specifiers invalid in parameter declarations");
9525 /* Function parameters cannot be constexpr. If we saw one, moan
9526 and pretend it wasn't there. */
9529 error ("a parameter cannot be declared %<constexpr%>");
9534 /* Give error if `virtual' is used outside of class declaration. */
9536 && (current_class_name
== NULL_TREE
|| decl_context
!= FIELD
))
9538 error ("%<virtual%> outside class declaration");
9542 /* Static anonymous unions are dealt with here. */
9543 if (staticp
&& decl_context
== TYPENAME
9545 && ANON_AGGR_TYPE_P (declspecs
->type
))
9546 decl_context
= FIELD
;
9548 /* Warn about storage classes that are invalid for certain
9549 kinds of declarations (parameters, typenames, etc.). */
9552 && storage_class
!= sc_extern
9553 && storage_class
!= sc_static
)
9556 error ("multiple storage classes in declaration of %qs", name
);
9559 if (decl_context
!= NORMAL
9560 && ((storage_class
!= sc_none
9561 && storage_class
!= sc_mutable
)
9564 if ((decl_context
== PARM
|| decl_context
== CATCHPARM
)
9565 && (storage_class
== sc_register
9566 || storage_class
== sc_auto
))
9570 else if (decl_context
== FIELD
9571 /* C++ allows static class elements. */
9572 && storage_class
== sc_static
)
9573 /* C++ also allows inlines and signed and unsigned elements,
9574 but in those cases we don't come in here. */
9578 if (decl_context
== FIELD
)
9579 error ("storage class specified for %qs", name
);
9582 if (decl_context
== PARM
|| decl_context
== CATCHPARM
)
9583 error ("storage class specified for parameter %qs", name
);
9585 error ("storage class specified for typename");
9587 if (storage_class
== sc_register
9588 || storage_class
== sc_auto
9589 || storage_class
== sc_extern
9591 storage_class
= sc_none
;
9594 else if (storage_class
== sc_extern
&& funcdef_flag
9595 && ! toplevel_bindings_p ())
9596 error ("nested function %qs declared %<extern%>", name
);
9597 else if (toplevel_bindings_p ())
9599 if (storage_class
== sc_auto
)
9600 error ("top-level declaration of %qs specifies %<auto%>", name
);
9603 && storage_class
!= sc_extern
9604 && storage_class
!= sc_static
)
9606 if (declspecs
->gnu_thread_keyword_p
)
9607 pedwarn (input_location
, 0, "function-scope %qs implicitly auto and "
9608 "declared %<__thread%>", name
);
9610 /* When thread_local is applied to a variable of block scope the
9611 storage-class-specifier static is implied if it does not appear
9613 storage_class
= declspecs
->storage_class
= sc_static
;
9617 if (storage_class
&& friendp
)
9619 error ("storage class specifiers invalid in friend function declarations");
9620 storage_class
= sc_none
;
9625 unqualified_id
= NULL_TREE
;
9628 unqualified_id
= id_declarator
->u
.id
.unqualified_name
;
9629 switch (TREE_CODE (unqualified_id
))
9632 unqualified_id
= TREE_OPERAND (unqualified_id
, 0);
9633 if (TYPE_P (unqualified_id
))
9634 unqualified_id
= constructor_name (unqualified_id
);
9637 case IDENTIFIER_NODE
:
9638 case TEMPLATE_ID_EXPR
:
9646 if (declspecs
->std_attributes
)
9648 /* Apply the c++11 attributes to the type preceding them. */
9649 input_location
= declspecs
->locations
[ds_std_attribute
];
9650 decl_attributes (&type
, declspecs
->std_attributes
, 0);
9651 input_location
= saved_loc
;
9654 /* Determine the type of the entity declared by recurring on the
9656 for (; declarator
; declarator
= declarator
->declarator
)
9658 const cp_declarator
*inner_declarator
;
9661 if (type
== error_mark_node
)
9662 return error_mark_node
;
9664 attrs
= declarator
->attributes
;
9670 if (declarator
== NULL
|| declarator
->kind
== cdk_id
)
9671 attr_flags
|= (int) ATTR_FLAG_DECL_NEXT
;
9672 if (declarator
->kind
== cdk_function
)
9673 attr_flags
|= (int) ATTR_FLAG_FUNCTION_NEXT
;
9674 if (declarator
->kind
== cdk_array
)
9675 attr_flags
|= (int) ATTR_FLAG_ARRAY_NEXT
;
9676 returned_attrs
= decl_attributes (&type
,
9677 chainon (returned_attrs
, attrs
),
9681 if (declarator
->kind
== cdk_id
)
9684 inner_declarator
= declarator
->declarator
;
9686 switch (declarator
->kind
)
9689 type
= create_array_type_for_decl (dname
, type
,
9690 declarator
->u
.array
.bounds
);
9691 if (declarator
->std_attributes
)
9694 The optional attribute-specifier-seq appertains to the
9696 returned_attrs
= chainon (returned_attrs
,
9697 declarator
->std_attributes
);
9705 /* Declaring a function type.
9706 Make sure we have a valid type for the function to return. */
9708 if (type_quals
!= TYPE_UNQUALIFIED
)
9710 if (SCALAR_TYPE_P (type
) || VOID_TYPE_P (type
))
9711 warning (OPT_Wignored_qualifiers
,
9712 "type qualifiers ignored on function return type");
9713 /* We now know that the TYPE_QUALS don't apply to the
9714 decl, but to its return type. */
9715 type_quals
= TYPE_UNQUALIFIED
;
9717 errmsg
= targetm
.invalid_return_type (type
);
9721 type
= integer_type_node
;
9724 /* Error about some types functions can't return. */
9726 if (TREE_CODE (type
) == FUNCTION_TYPE
)
9728 error ("%qs declared as function returning a function", name
);
9729 return error_mark_node
;
9731 if (TREE_CODE (type
) == ARRAY_TYPE
)
9733 error ("%qs declared as function returning an array", name
);
9734 return error_mark_node
;
9737 input_location
= declspecs
->locations
[ds_type_spec
];
9738 abstract_virtuals_error (ACU_RETURN
, type
);
9739 input_location
= saved_loc
;
9741 /* Pick up type qualifiers which should be applied to `this'. */
9742 memfn_quals
= declarator
->u
.function
.qualifiers
;
9743 /* Pick up virt-specifiers. */
9744 virt_specifiers
= declarator
->u
.function
.virt_specifiers
;
9745 /* And ref-qualifier, too */
9746 rqual
= declarator
->u
.function
.ref_qualifier
;
9747 /* Pick up the exception specifications. */
9748 raises
= declarator
->u
.function
.exception_specification
;
9749 /* If the exception-specification is ill-formed, let's pretend
9750 there wasn't one. */
9751 if (raises
== error_mark_node
)
9754 /* Say it's a definition only for the CALL_EXPR
9755 closest to the identifier. */
9756 funcdecl_p
= inner_declarator
&& inner_declarator
->kind
== cdk_id
;
9758 /* Handle a late-specified return type. */
9761 if (type_uses_auto (type
))
9763 if (!declarator
->u
.function
.late_return_type
)
9765 if (current_class_type
9766 && LAMBDA_TYPE_P (current_class_type
))
9767 /* OK for C++11 lambdas. */;
9768 else if (cxx_dialect
< cxx14
)
9770 error ("%qs function uses "
9771 "%<auto%> type specifier without trailing "
9772 "return type", name
);
9773 inform (input_location
, "deduced return type "
9774 "only available with -std=c++14 or "
9779 error ("virtual function cannot "
9780 "have deduced return type");
9784 else if (!is_auto (type
) && sfk
!= sfk_conversion
)
9786 error ("%qs function with trailing return type has"
9787 " %qT as its type rather than plain %<auto%>",
9789 return error_mark_node
;
9792 else if (declarator
->u
.function
.late_return_type
9793 && sfk
!= sfk_conversion
)
9795 if (cxx_dialect
< cxx11
)
9796 /* Not using maybe_warn_cpp0x because this should
9797 always be an error. */
9798 error ("trailing return type only available with "
9799 "-std=c++11 or -std=gnu++11");
9801 error ("%qs function with trailing return type not "
9802 "declared with %<auto%> type specifier", name
);
9803 return error_mark_node
;
9806 type
= splice_late_return_type
9807 (type
, declarator
->u
.function
.late_return_type
);
9808 if (type
== error_mark_node
)
9809 return error_mark_node
;
9811 if (declarator
->u
.function
.late_return_type
)
9812 late_return_type_p
= true;
9814 if (ctype
== NULL_TREE
9815 && decl_context
== FIELD
9818 ctype
= current_class_type
;
9820 if (ctype
&& (sfk
== sfk_constructor
9821 || sfk
== sfk_destructor
))
9823 /* We are within a class's scope. If our declarator name
9824 is the same as the class name, and we are defining
9825 a function, then it is a constructor/destructor, and
9826 therefore returns a void type. */
9828 /* ISO C++ 12.4/2. A destructor may not be declared
9829 const or volatile. A destructor may not be static.
9830 A destructor may not be declared with ref-qualifier.
9832 ISO C++ 12.1. A constructor may not be declared
9833 const or volatile. A constructor may not be
9834 virtual. A constructor may not be static.
9835 A constructor may not be declared with ref-qualifier. */
9837 error ((flags
== DTOR_FLAG
)
9838 ? G_("destructor cannot be static member function")
9839 : G_("constructor cannot be static member function"));
9842 error ((flags
== DTOR_FLAG
)
9843 ? G_("destructors may not be cv-qualified")
9844 : G_("constructors may not be cv-qualified"));
9845 memfn_quals
= TYPE_UNQUALIFIED
;
9850 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER
);
9851 error ((flags
== DTOR_FLAG
)
9852 ? "destructors may not be ref-qualified"
9853 : "constructors may not be ref-qualified");
9854 rqual
= REF_QUAL_NONE
;
9857 if (decl_context
== FIELD
9858 && !member_function_or_else (ctype
,
9861 return error_mark_node
;
9863 if (flags
!= DTOR_FLAG
)
9865 /* It's a constructor. */
9870 permerror (input_location
, "constructors cannot be declared virtual");
9873 if (decl_context
== FIELD
9874 && sfk
!= sfk_constructor
)
9875 return error_mark_node
;
9877 if (decl_context
== FIELD
)
9884 /* Cannot be both friend and virtual. */
9885 error ("virtual functions cannot be friends");
9888 if (decl_context
== NORMAL
)
9889 error ("friend declaration not in class definition");
9890 if (current_function_decl
&& funcdef_flag
)
9891 error ("can%'t define friend function %qs in a local "
9895 else if (ctype
&& sfk
== sfk_conversion
)
9899 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION
);
9902 if (late_return_type_p
)
9903 error ("a conversion function cannot have a trailing return type");
9906 arg_types
= grokparms (declarator
->u
.function
.parameters
,
9909 if (inner_declarator
9910 && inner_declarator
->kind
== cdk_id
9911 && inner_declarator
->u
.id
.sfk
== sfk_destructor
9912 && arg_types
!= void_list_node
)
9914 error ("destructors may not have parameters");
9915 arg_types
= void_list_node
;
9919 type
= build_function_type (type
, arg_types
);
9920 if (declarator
->std_attributes
)
9923 The optional attribute-specifier-seq appertains to
9924 the function type. */
9925 decl_attributes (&type
, declarator
->std_attributes
,
9933 /* Filter out pointers-to-references and references-to-references.
9934 We can get these if a TYPE_DECL is used. */
9936 if (TREE_CODE (type
) == REFERENCE_TYPE
)
9938 if (declarator
->kind
!= cdk_reference
)
9940 error ("cannot declare pointer to %q#T", type
);
9941 type
= TREE_TYPE (type
);
9944 /* In C++0x, we allow reference to reference declarations
9945 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
9946 and template type arguments [14.3.1/4 temp.arg.type]. The
9947 check for direct reference to reference declarations, which
9948 are still forbidden, occurs below. Reasoning behind the change
9949 can be found in DR106, DR540, and the rvalue reference
9951 else if (cxx_dialect
== cxx98
)
9953 error ("cannot declare reference to %q#T", type
);
9954 type
= TREE_TYPE (type
);
9957 else if (VOID_TYPE_P (type
))
9959 if (declarator
->kind
== cdk_reference
)
9960 error ("cannot declare reference to %q#T", type
);
9961 else if (declarator
->kind
== cdk_ptrmem
)
9962 error ("cannot declare pointer to %q#T member", type
);
9965 /* We now know that the TYPE_QUALS don't apply to the decl,
9966 but to the target of the pointer. */
9967 type_quals
= TYPE_UNQUALIFIED
;
9969 /* This code used to handle METHOD_TYPE, but I don't think it's
9970 possible to get it here anymore. */
9971 gcc_assert (TREE_CODE (type
) != METHOD_TYPE
);
9972 if (declarator
->kind
== cdk_ptrmem
9973 && TREE_CODE (type
) == FUNCTION_TYPE
)
9975 memfn_quals
|= type_memfn_quals (type
);
9976 type
= build_memfn_type (type
,
9977 declarator
->u
.pointer
.class_type
,
9980 if (type
== error_mark_node
)
9981 return error_mark_node
;
9983 rqual
= REF_QUAL_NONE
;
9984 memfn_quals
= TYPE_UNQUALIFIED
;
9987 if (TREE_CODE (type
) == FUNCTION_TYPE
9988 && (type_memfn_quals (type
) != TYPE_UNQUALIFIED
9989 || type_memfn_rqual (type
) != REF_QUAL_NONE
))
9990 error (declarator
->kind
== cdk_reference
9991 ? G_("cannot declare reference to qualified function type %qT")
9992 : G_("cannot declare pointer to qualified function type %qT"),
9995 /* When the pointed-to type involves components of variable size,
9996 care must be taken to ensure that the size evaluation code is
9997 emitted early enough to dominate all the possible later uses
9998 and late enough for the variables on which it depends to have
10001 This is expected to happen automatically when the pointed-to
10002 type has a name/declaration of it's own, but special attention
10003 is required if the type is anonymous.
10005 We handle the NORMAL and FIELD contexts here by inserting a
10006 dummy statement that just evaluates the size at a safe point
10007 and ensures it is not deferred until e.g. within a deeper
10008 conditional context (c++/43555).
10010 We expect nothing to be needed here for PARM or TYPENAME.
10011 Evaluating the size at this point for TYPENAME would
10012 actually be incorrect, as we might be in the middle of an
10013 expression with side effects on the pointed-to type size
10014 "arguments" prior to the pointer declaration point and the
10015 size evaluation could end up prior to the side effects. */
10017 if (!TYPE_NAME (type
)
10018 && (decl_context
== NORMAL
|| decl_context
== FIELD
)
10019 && at_function_scope_p ()
10020 && variably_modified_type_p (type
, NULL_TREE
))
10021 /* Force evaluation of the SAVE_EXPR. */
10022 finish_expr_stmt (TYPE_SIZE (type
));
10024 if (declarator
->kind
== cdk_reference
)
10026 /* In C++0x, the type we are creating a reference to might be
10027 a typedef which is itself a reference type. In that case,
10028 we follow the reference collapsing rules in
10029 [7.1.3/8 dcl.typedef] to create the final reference type:
10031 "If a typedef TD names a type that is a reference to a type
10032 T, an attempt to create the type 'lvalue reference to cv TD'
10033 creates the type 'lvalue reference to T,' while an attempt
10034 to create the type "rvalue reference to cv TD' creates the
10037 if (VOID_TYPE_P (type
))
10038 /* We already gave an error. */;
10039 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
10041 if (declarator
->u
.reference
.rvalue_ref
)
10042 /* Leave type alone. */;
10044 type
= cp_build_reference_type (TREE_TYPE (type
), false);
10047 type
= cp_build_reference_type
10048 (type
, declarator
->u
.reference
.rvalue_ref
);
10050 /* In C++0x, we need this check for direct reference to
10051 reference declarations, which are forbidden by
10052 [8.3.2/5 dcl.ref]. Reference to reference declarations
10053 are only allowed indirectly through typedefs and template
10054 type arguments. Example:
10056 void foo(int & &); // invalid ref-to-ref decl
10058 typedef int & int_ref;
10059 void foo(int_ref &); // valid ref-to-ref decl
10061 if (inner_declarator
&& inner_declarator
->kind
== cdk_reference
)
10062 error ("cannot declare reference to %q#T, which is not "
10063 "a typedef or a template type argument", type
);
10065 else if (TREE_CODE (type
) == METHOD_TYPE
)
10066 type
= build_ptrmemfunc_type (build_pointer_type (type
));
10067 else if (declarator
->kind
== cdk_ptrmem
)
10069 gcc_assert (TREE_CODE (declarator
->u
.pointer
.class_type
)
10070 != NAMESPACE_DECL
);
10071 if (declarator
->u
.pointer
.class_type
== error_mark_node
)
10072 /* We will already have complained. */
10073 type
= error_mark_node
;
10075 type
= build_ptrmem_type (declarator
->u
.pointer
.class_type
,
10079 type
= build_pointer_type (type
);
10081 /* Process a list of type modifier keywords (such as
10082 const or volatile) that were given inside the `*' or `&'. */
10084 if (declarator
->u
.pointer
.qualifiers
)
10087 = cp_build_qualified_type (type
,
10088 declarator
->u
.pointer
.qualifiers
);
10089 type_quals
= cp_type_quals (type
);
10092 /* Apply C++11 attributes to the pointer, and not to the
10093 type pointed to. This is unlike what is done for GNU
10094 attributes above. It is to comply with [dcl.ptr]/1:
10096 [the optional attribute-specifier-seq (7.6.1) appertains
10097 to the pointer and not to the object pointed to]. */
10098 if (declarator
->std_attributes
)
10099 decl_attributes (&type
, declarator
->std_attributes
,
10109 gcc_unreachable ();
10113 /* A `constexpr' specifier used in an object declaration declares
10114 the object as `const'. */
10115 if (constexpr_p
&& innermost_code
!= cdk_function
)
10117 /* DR1688 says that a `constexpr' specifier in combination with
10118 `volatile' is valid. */
10120 if (TREE_CODE (type
) != REFERENCE_TYPE
)
10122 type_quals
|= TYPE_QUAL_CONST
;
10123 type
= cp_build_qualified_type (type
, type_quals
);
10127 if (unqualified_id
&& TREE_CODE (unqualified_id
) == TEMPLATE_ID_EXPR
10128 && TREE_CODE (type
) != FUNCTION_TYPE
10129 && TREE_CODE (type
) != METHOD_TYPE
10130 && !variable_template_p (TREE_OPERAND (unqualified_id
, 0)))
10132 error ("template-id %qD used as a declarator",
10134 unqualified_id
= dname
;
10137 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
10138 qualified with a class-name, turn it into a METHOD_TYPE, unless
10139 we know that the function is static. We take advantage of this
10140 opportunity to do other processing that pertains to entities
10141 explicitly declared to be class members. Note that if DECLARATOR
10142 is non-NULL, we know it is a cdk_id declarator; otherwise, we
10143 would not have exited the loop above. */
10145 && declarator
->u
.id
.qualifying_scope
10146 && MAYBE_CLASS_TYPE_P (declarator
->u
.id
.qualifying_scope
))
10148 ctype
= declarator
->u
.id
.qualifying_scope
;
10149 ctype
= TYPE_MAIN_VARIANT (ctype
);
10150 template_count
= num_template_headers_for_class (ctype
);
10152 if (ctype
== current_class_type
)
10156 permerror (input_location
, "member functions are implicitly friends of their class");
10160 permerror (declarator
->id_loc
,
10161 "extra qualification %<%T::%> on member %qs",
10164 else if (/* If the qualifying type is already complete, then we
10165 can skip the following checks. */
10166 !COMPLETE_TYPE_P (ctype
)
10167 && (/* If the function is being defined, then
10168 qualifying type must certainly be complete. */
10170 /* A friend declaration of "T::f" is OK, even if
10171 "T" is a template parameter. But, if this
10172 function is not a friend, the qualifying type
10173 must be a class. */
10174 || (!friendp
&& !CLASS_TYPE_P (ctype
))
10175 /* For a declaration, the type need not be
10176 complete, if either it is dependent (since there
10177 is no meaningful definition of complete in that
10178 case) or the qualifying class is currently being
10180 || !(dependent_type_p (ctype
)
10181 || currently_open_class (ctype
)))
10182 /* Check that the qualifying type is complete. */
10183 && !complete_type_or_else (ctype
, NULL_TREE
))
10184 return error_mark_node
;
10185 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
10187 if (current_class_type
10188 && (!friendp
|| funcdef_flag
))
10190 error (funcdef_flag
10191 ? G_("cannot define member function %<%T::%s%> "
10193 : G_("cannot declare member function %<%T::%s%> "
10195 ctype
, name
, current_class_type
);
10196 return error_mark_node
;
10199 else if (typedef_p
&& current_class_type
)
10201 error ("cannot declare member %<%T::%s%> within %qT",
10202 ctype
, name
, current_class_type
);
10203 return error_mark_node
;
10207 if (ctype
== NULL_TREE
&& decl_context
== FIELD
&& friendp
== 0)
10208 ctype
= current_class_type
;
10210 /* Now TYPE has the actual type. */
10212 if (returned_attrs
)
10215 *attrlist
= chainon (returned_attrs
, *attrlist
);
10217 attrlist
= &returned_attrs
;
10221 && declarator
->kind
== cdk_id
10222 && declarator
->std_attributes
)
10223 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
10224 a declarator-id appertains to the entity that is declared. */
10225 *attrlist
= chainon (*attrlist
, declarator
->std_attributes
);
10227 /* Handle parameter packs. */
10228 if (parameter_pack_p
)
10230 if (decl_context
== PARM
)
10231 /* Turn the type into a pack expansion.*/
10232 type
= make_pack_expansion (type
);
10234 error ("non-parameter %qs cannot be a parameter pack", name
);
10237 /* Did array size calculations overflow or does the array cover more
10238 than half of the address-space? */
10239 if (TREE_CODE (type
) == ARRAY_TYPE
10240 && COMPLETE_TYPE_P (type
)
10241 && TREE_CODE (TYPE_SIZE_UNIT (type
)) == INTEGER_CST
10242 && ! valid_constant_size_p (TYPE_SIZE_UNIT (type
)))
10244 error ("size of array %qs is too large", name
);
10245 /* If we proceed with the array type as it is, we'll eventually
10246 crash in tree_to_[su]hwi(). */
10247 type
= error_mark_node
;
10250 if ((decl_context
== FIELD
|| decl_context
== PARM
)
10251 && !processing_template_decl
10252 && variably_modified_type_p (type
, NULL_TREE
))
10254 if (decl_context
== FIELD
)
10255 error ("data member may not have variably modified type %qT", type
);
10257 error ("parameter may not have variably modified type %qT", type
);
10258 type
= error_mark_node
;
10261 if (explicitp
== 1 || (explicitp
&& friendp
))
10263 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
10264 in the declaration of a constructor or conversion function within
10265 a class definition. */
10266 if (!current_class_type
)
10267 error_at (declspecs
->locations
[ds_explicit
],
10268 "%<explicit%> outside class declaration");
10270 error_at (declspecs
->locations
[ds_explicit
],
10271 "%<explicit%> in friend declaration");
10273 error_at (declspecs
->locations
[ds_explicit
],
10274 "only declarations of constructors and conversion operators "
10275 "can be %<explicit%>");
10279 if (storage_class
== sc_mutable
)
10281 if (decl_context
!= FIELD
|| friendp
)
10283 error ("non-member %qs cannot be declared %<mutable%>", name
);
10284 storage_class
= sc_none
;
10286 else if (decl_context
== TYPENAME
|| typedef_p
)
10288 error ("non-object member %qs cannot be declared %<mutable%>", name
);
10289 storage_class
= sc_none
;
10291 else if (TREE_CODE (type
) == FUNCTION_TYPE
10292 || TREE_CODE (type
) == METHOD_TYPE
)
10294 error ("function %qs cannot be declared %<mutable%>", name
);
10295 storage_class
= sc_none
;
10299 error ("static %qs cannot be declared %<mutable%>", name
);
10300 storage_class
= sc_none
;
10302 else if (type_quals
& TYPE_QUAL_CONST
)
10304 error ("const %qs cannot be declared %<mutable%>", name
);
10305 storage_class
= sc_none
;
10307 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
10309 permerror (input_location
, "reference %qs cannot be declared "
10310 "%<mutable%>", name
);
10311 storage_class
= sc_none
;
10315 /* If this is declaring a typedef name, return a TYPE_DECL. */
10316 if (typedef_p
&& decl_context
!= TYPENAME
)
10320 /* Note that the grammar rejects storage classes
10321 in typenames, fields or parameters. */
10322 if (current_lang_name
== lang_name_java
)
10323 TYPE_FOR_JAVA (type
) = 1;
10325 /* This declaration:
10327 typedef void f(int) const;
10329 declares a function type which is not a member of any
10330 particular class, but which is cv-qualified; for
10331 example "f S::*" declares a pointer to a const-qualified
10332 member function of S. We record the cv-qualification in the
10334 if ((rqual
|| memfn_quals
) && TREE_CODE (type
) == FUNCTION_TYPE
)
10336 type
= apply_memfn_quals (type
, memfn_quals
, rqual
);
10338 /* We have now dealt with these qualifiers. */
10339 memfn_quals
= TYPE_UNQUALIFIED
;
10340 rqual
= REF_QUAL_NONE
;
10343 if (type_uses_auto (type
))
10345 error ("typedef declared %<auto%>");
10346 type
= error_mark_node
;
10349 if (decl_context
== FIELD
)
10350 decl
= build_lang_decl (TYPE_DECL
, unqualified_id
, type
);
10352 decl
= build_decl (input_location
, TYPE_DECL
, unqualified_id
, type
);
10353 if (id_declarator
&& declarator
->u
.id
.qualifying_scope
) {
10354 error_at (DECL_SOURCE_LOCATION (decl
),
10355 "typedef name may not be a nested-name-specifier");
10356 TREE_TYPE (decl
) = error_mark_node
;
10359 if (decl_context
!= FIELD
)
10361 if (!current_function_decl
)
10362 DECL_CONTEXT (decl
) = FROB_CONTEXT (current_namespace
);
10363 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl
)
10364 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
10365 (current_function_decl
)))
10366 /* The TYPE_DECL is "abstract" because there will be
10367 clones of this constructor/destructor, and there will
10368 be copies of this TYPE_DECL generated in those
10369 clones. The decloning optimization (for space) may
10370 revert this subsequently if it determines that
10371 the clones should share a common implementation. */
10372 DECL_ABSTRACT_P (decl
) = true;
10374 else if (current_class_type
10375 && constructor_name_p (unqualified_id
, current_class_type
))
10376 permerror (input_location
, "ISO C++ forbids nested type %qD with same name "
10377 "as enclosing class",
10380 /* If the user declares "typedef struct {...} foo" then the
10381 struct will have an anonymous name. Fill that name in now.
10382 Nothing can refer to it, so nothing needs know about the name
10384 if (type
!= error_mark_node
10386 && TYPE_NAME (type
)
10387 && TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
10388 && TYPE_ANONYMOUS_P (type
)
10389 && declspecs
->type_definition_p
10390 && attributes_naming_typedef_ok (*attrlist
)
10391 && cp_type_quals (type
) == TYPE_UNQUALIFIED
)
10395 /* Replace the anonymous name with the real name everywhere. */
10396 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
10398 if (ANON_AGGRNAME_P (TYPE_IDENTIFIER (t
)))
10399 /* We do not rename the debug info representing the
10400 anonymous tagged type because the standard says in
10401 [dcl.typedef] that the naming applies only for
10402 linkage purposes. */
10403 /*debug_hooks->set_name (t, decl);*/
10404 TYPE_NAME (t
) = decl
;
10407 if (TYPE_LANG_SPECIFIC (type
))
10408 TYPE_WAS_ANONYMOUS (type
) = 1;
10410 /* If this is a typedef within a template class, the nested
10411 type is a (non-primary) template. The name for the
10412 template needs updating as well. */
10413 if (TYPE_LANG_SPECIFIC (type
) && CLASSTYPE_TEMPLATE_INFO (type
))
10414 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type
))
10415 = TYPE_IDENTIFIER (type
);
10417 /* Adjust linkage now that we aren't anonymous anymore. */
10418 reset_type_linkage (type
);
10420 /* FIXME remangle member functions; member functions of a
10421 type with external linkage have external linkage. */
10425 || (typedef_decl
&& C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl
)))
10426 C_TYPEDEF_EXPLICITLY_SIGNED (decl
) = 1;
10428 bad_specifiers (decl
, BSP_TYPE
, virtualp
,
10429 memfn_quals
!= TYPE_UNQUALIFIED
,
10430 inlinep
, friendp
, raises
!= NULL_TREE
);
10432 if (decl_spec_seq_has_spec_p (declspecs
, ds_alias
))
10433 /* Acknowledge that this was written:
10434 `using analias = atype;'. */
10435 TYPE_DECL_ALIAS_P (decl
) = 1;
10440 /* Detect the case of an array type of unspecified size
10441 which came, as such, direct from a typedef name.
10442 We must copy the type, so that the array's domain can be
10443 individually set by the object's initializer. */
10445 if (type
&& typedef_type
10446 && TREE_CODE (type
) == ARRAY_TYPE
&& !TYPE_DOMAIN (type
)
10447 && TYPE_MAIN_VARIANT (type
) == TYPE_MAIN_VARIANT (typedef_type
))
10448 type
= build_cplus_array_type (TREE_TYPE (type
), NULL_TREE
);
10450 /* Detect where we're using a typedef of function type to declare a
10451 function. PARMS will not be set, so we must create it now. */
10453 if (type
== typedef_type
&& TREE_CODE (type
) == FUNCTION_TYPE
)
10455 tree decls
= NULL_TREE
;
10458 for (args
= TYPE_ARG_TYPES (type
);
10459 args
&& args
!= void_list_node
;
10460 args
= TREE_CHAIN (args
))
10462 tree decl
= cp_build_parm_decl (NULL_TREE
, TREE_VALUE (args
));
10464 DECL_CHAIN (decl
) = decls
;
10468 parms
= nreverse (decls
);
10470 if (decl_context
!= TYPENAME
)
10472 /* The qualifiers on the function type become the qualifiers on
10473 the non-static member function. */
10474 memfn_quals
|= type_memfn_quals (type
);
10475 rqual
= type_memfn_rqual (type
);
10476 type_quals
= TYPE_UNQUALIFIED
;
10480 /* If this is a type name (such as, in a cast or sizeof),
10481 compute the type and return it now. */
10483 if (decl_context
== TYPENAME
)
10485 /* Note that the grammar rejects storage classes
10486 in typenames, fields or parameters. */
10487 if (type_quals
!= TYPE_UNQUALIFIED
)
10488 type_quals
= TYPE_UNQUALIFIED
;
10490 /* Special case: "friend class foo" looks like a TYPENAME context. */
10493 if (type_quals
!= TYPE_UNQUALIFIED
)
10495 error ("type qualifiers specified for friend class declaration");
10496 type_quals
= TYPE_UNQUALIFIED
;
10500 error ("%<inline%> specified for friend class declaration");
10506 /* Don't allow friend declaration without a class-key. */
10507 if (TREE_CODE (type
) == TEMPLATE_TYPE_PARM
)
10508 permerror (input_location
, "template parameters cannot be friends");
10509 else if (TREE_CODE (type
) == TYPENAME_TYPE
)
10510 permerror (input_location
, "friend declaration requires class-key, "
10511 "i.e. %<friend class %T::%D%>",
10512 TYPE_CONTEXT (type
), TYPENAME_TYPE_FULLNAME (type
));
10514 permerror (input_location
, "friend declaration requires class-key, "
10515 "i.e. %<friend %#T%>",
10519 /* Only try to do this stuff if we didn't already give up. */
10520 if (type
!= integer_type_node
)
10522 /* A friendly class? */
10523 if (current_class_type
)
10524 make_friend_class (current_class_type
, TYPE_MAIN_VARIANT (type
),
10525 /*complain=*/true);
10527 error ("trying to make class %qT a friend of global scope",
10530 type
= void_type_node
;
10533 else if (memfn_quals
|| rqual
)
10535 if (ctype
== NULL_TREE
10536 && TREE_CODE (type
) == METHOD_TYPE
)
10537 ctype
= TYPE_METHOD_BASETYPE (type
);
10540 type
= build_memfn_type (type
, ctype
, memfn_quals
, rqual
);
10541 /* Core issue #547: need to allow this in template type args.
10542 Allow it in general in C++11 for alias-declarations. */
10543 else if ((template_type_arg
|| cxx_dialect
>= cxx11
)
10544 && TREE_CODE (type
) == FUNCTION_TYPE
)
10545 type
= apply_memfn_quals (type
, memfn_quals
, rqual
);
10547 error ("invalid qualifiers on non-member function type");
10552 else if (unqualified_id
== NULL_TREE
&& decl_context
!= PARM
10553 && decl_context
!= CATCHPARM
10554 && TREE_CODE (type
) != UNION_TYPE
10557 error ("abstract declarator %qT used as declaration", type
);
10558 return error_mark_node
;
10561 /* Only functions may be declared using an operator-function-id. */
10563 && IDENTIFIER_OPNAME_P (unqualified_id
)
10564 && TREE_CODE (type
) != FUNCTION_TYPE
10565 && TREE_CODE (type
) != METHOD_TYPE
)
10567 error ("declaration of %qD as non-function", unqualified_id
);
10568 return error_mark_node
;
10571 /* We don't check parameter types here because we can emit a better
10572 error message later. */
10573 if (decl_context
!= PARM
)
10575 type
= check_var_type (unqualified_id
, type
);
10576 if (type
== error_mark_node
)
10577 return error_mark_node
;
10580 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
10581 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
10583 if (decl_context
== PARM
|| decl_context
== CATCHPARM
)
10585 if (ctype
|| in_namespace
)
10586 error ("cannot use %<::%> in parameter declaration");
10588 if (type_uses_auto (type
))
10590 if (cxx_dialect
>= cxx14
)
10591 error ("%<auto%> parameter not permitted in this context");
10593 error ("parameter declared %<auto%>");
10594 type
= error_mark_node
;
10597 /* A parameter declared as an array of T is really a pointer to T.
10598 One declared as a function is really a pointer to a function.
10599 One declared as a member is really a pointer to member. */
10601 if (TREE_CODE (type
) == ARRAY_TYPE
)
10603 /* Transfer const-ness of array into that of type pointed to. */
10604 type
= build_pointer_type (TREE_TYPE (type
));
10605 type_quals
= TYPE_UNQUALIFIED
;
10606 array_parameter_p
= true;
10608 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
10609 type
= build_pointer_type (type
);
10612 if (ctype
&& TREE_CODE (type
) == FUNCTION_TYPE
&& staticp
< 2
10613 && !NEW_DELETE_OPNAME_P (unqualified_id
))
10615 cp_cv_quals real_quals
= memfn_quals
;
10616 if (cxx_dialect
< cxx14
&& constexpr_p
10617 && sfk
!= sfk_constructor
&& sfk
!= sfk_destructor
)
10618 real_quals
|= TYPE_QUAL_CONST
;
10619 type
= build_memfn_type (type
, ctype
, real_quals
, rqual
);
10625 if (decl_context
== PARM
)
10627 decl
= cp_build_parm_decl (unqualified_id
, type
);
10628 DECL_ARRAY_PARAMETER_P (decl
) = array_parameter_p
;
10630 bad_specifiers (decl
, BSP_PARM
, virtualp
,
10631 memfn_quals
!= TYPE_UNQUALIFIED
,
10632 inlinep
, friendp
, raises
!= NULL_TREE
);
10634 else if (decl_context
== FIELD
)
10636 if (!staticp
&& !friendp
&& TREE_CODE (type
) != METHOD_TYPE
10637 && type_uses_auto (type
))
10639 error ("non-static data member declared %<auto%>");
10640 type
= error_mark_node
;
10643 /* The C99 flexible array extension. */
10644 if (!staticp
&& TREE_CODE (type
) == ARRAY_TYPE
10645 && TYPE_DOMAIN (type
) == NULL_TREE
)
10647 tree itype
= compute_array_index_type (dname
, integer_zero_node
,
10648 tf_warning_or_error
);
10649 type
= build_cplus_array_type (TREE_TYPE (type
), itype
);
10652 if (type
== error_mark_node
)
10654 /* Happens when declaring arrays of sizes which
10655 are error_mark_node, for example. */
10658 else if (in_namespace
&& !friendp
)
10660 /* Something like struct S { int N::j; }; */
10661 error ("invalid use of %<::%>");
10662 return error_mark_node
;
10664 else if (TREE_CODE (type
) == FUNCTION_TYPE
10665 || TREE_CODE (type
) == METHOD_TYPE
)
10668 tree function_context
;
10672 /* This should never happen in pure C++ (the check
10673 could be an assert). It could happen in
10674 Objective-C++ if someone writes invalid code that
10675 uses a function declaration for an instance
10676 variable or property (instance variables and
10677 properties are parsed as FIELD_DECLs, but they are
10678 part of an Objective-C class, not a C++ class).
10679 That code is invalid and is caught by this
10683 error ("declaration of function %qD in invalid context",
10685 return error_mark_node
;
10688 /* ``A union may [ ... ] not [ have ] virtual functions.''
10690 if (virtualp
&& TREE_CODE (ctype
) == UNION_TYPE
)
10692 error ("function %qD declared virtual inside a union",
10694 return error_mark_node
;
10697 if (NEW_DELETE_OPNAME_P (unqualified_id
))
10701 error ("%qD cannot be declared virtual, since it "
10702 "is always static",
10709 /* Check that the name used for a destructor makes sense. */
10710 if (sfk
== sfk_destructor
)
10712 tree uqname
= id_declarator
->u
.id
.unqualified_name
;
10716 gcc_assert (friendp
);
10717 error ("expected qualified name in friend declaration "
10718 "for destructor %qD", uqname
);
10719 return error_mark_node
;
10722 if (!check_dtor_name (ctype
, TREE_OPERAND (uqname
, 0)))
10724 error ("declaration of %qD as member of %qT",
10726 return error_mark_node
;
10730 error ("a destructor cannot be %<constexpr%>");
10731 return error_mark_node
;
10734 else if (sfk
== sfk_constructor
&& friendp
&& !ctype
)
10736 error ("expected qualified name in friend declaration "
10737 "for constructor %qD",
10738 id_declarator
->u
.id
.unqualified_name
);
10739 return error_mark_node
;
10742 if (TREE_CODE (unqualified_id
) == TEMPLATE_ID_EXPR
)
10744 tree tmpl
= TREE_OPERAND (unqualified_id
, 0);
10745 if (variable_template_p (tmpl
))
10747 error ("specialization of variable template %qD "
10748 "declared as function", tmpl
);
10749 inform (DECL_SOURCE_LOCATION (tmpl
),
10750 "variable template declared here");
10751 return error_mark_node
;
10755 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
10756 function_context
= (ctype
!= NULL_TREE
) ?
10757 decl_function_context (TYPE_MAIN_DECL (ctype
)) : NULL_TREE
;
10758 publicp
= (! friendp
|| ! staticp
)
10759 && function_context
== NULL_TREE
;
10761 if (late_return_type_p
)
10762 TYPE_HAS_LATE_RETURN_TYPE (type
) = 1;
10764 decl
= grokfndecl (ctype
, type
,
10765 TREE_CODE (unqualified_id
) != TEMPLATE_ID_EXPR
10766 ? unqualified_id
: dname
,
10769 virtualp
, flags
, memfn_quals
, rqual
, raises
,
10770 friendp
? -1 : 0, friendp
, publicp
,
10771 inlinep
| (2 * constexpr_p
),
10772 initialized
== SD_DELETED
, sfk
,
10773 funcdef_flag
, template_count
, in_namespace
,
10774 attrlist
, declarator
->id_loc
);
10775 decl
= set_virt_specifiers (decl
, virt_specifiers
);
10776 if (decl
== NULL_TREE
)
10777 return error_mark_node
;
10779 /* This clobbers the attrs stored in `decl' from `attrlist'. */
10780 /* The decl and setting of decl_attr is also turned off. */
10781 decl
= build_decl_attribute_variant (decl
, decl_attr
);
10784 /* [class.conv.ctor]
10786 A constructor declared without the function-specifier
10787 explicit that can be called with a single parameter
10788 specifies a conversion from the type of its first
10789 parameter to the type of its class. Such a constructor
10790 is called a converting constructor. */
10791 if (explicitp
== 2)
10792 DECL_NONCONVERTING_P (decl
) = 1;
10794 else if (!staticp
&& !dependent_type_p (type
)
10795 && !COMPLETE_TYPE_P (complete_type (type
))
10796 && (TREE_CODE (type
) != ARRAY_TYPE
10797 || !COMPLETE_TYPE_P (TREE_TYPE (type
))
10798 || initialized
== 0))
10800 if (unqualified_id
)
10802 error ("field %qD has incomplete type %qT",
10803 unqualified_id
, type
);
10804 cxx_incomplete_type_inform (strip_array_types (type
));
10807 error ("name %qT has incomplete type", type
);
10809 type
= error_mark_node
;
10816 error ("%qE is neither function nor member function; "
10817 "cannot be declared friend", unqualified_id
);
10825 /* Friends are treated specially. */
10826 if (ctype
== current_class_type
)
10827 ; /* We already issued a permerror. */
10828 else if (decl
&& DECL_NAME (decl
))
10830 if (template_class_depth (current_class_type
) == 0)
10832 decl
= check_explicit_specialization
10833 (unqualified_id
, decl
, template_count
,
10834 2 * funcdef_flag
+ 4);
10835 if (decl
== error_mark_node
)
10836 return error_mark_node
;
10839 decl
= do_friend (ctype
, unqualified_id
, decl
,
10845 return error_mark_node
;
10848 /* Structure field. It may not be a function, except for C++. */
10850 if (decl
== NULL_TREE
)
10854 /* C++ allows static class members. All other work
10855 for this is done by grokfield. */
10856 decl
= build_lang_decl_loc (declarator
10857 ? declarator
->id_loc
10859 VAR_DECL
, unqualified_id
, type
);
10860 set_linkage_for_static_data_member (decl
);
10861 /* Even if there is an in-class initialization, DECL
10862 is considered undefined until an out-of-class
10863 definition is provided. */
10864 DECL_EXTERNAL (decl
) = 1;
10868 set_decl_tls_model (decl
, decl_default_tls_model (decl
));
10869 if (declspecs
->gnu_thread_keyword_p
)
10870 DECL_GNU_TLS_P (decl
) = true;
10873 if (constexpr_p
&& !initialized
)
10875 error ("constexpr static data member %qD must have an "
10876 "initializer", decl
);
10877 constexpr_p
= false;
10884 error ("non-static data member %qE declared %<constexpr%>",
10886 constexpr_p
= false;
10888 decl
= build_decl (input_location
,
10889 FIELD_DECL
, unqualified_id
, type
);
10890 DECL_NONADDRESSABLE_P (decl
) = bitfield
;
10891 if (bitfield
&& !unqualified_id
)
10892 TREE_NO_WARNING (decl
) = 1;
10894 if (storage_class
== sc_mutable
)
10896 DECL_MUTABLE_P (decl
) = 1;
10897 storage_class
= sc_none
;
10902 /* An attempt is being made to initialize a non-static
10903 member. This is new in C++11. */
10904 maybe_warn_cpp0x (CPP0X_NSDMI
);
10906 /* If this has been parsed with static storage class, but
10907 errors forced staticp to be cleared, ensure NSDMI is
10909 if (declspecs
->storage_class
== sc_static
)
10910 DECL_INITIAL (decl
) = error_mark_node
;
10914 bad_specifiers (decl
, BSP_FIELD
, virtualp
,
10915 memfn_quals
!= TYPE_UNQUALIFIED
,
10916 inlinep
, friendp
, raises
!= NULL_TREE
);
10919 else if (TREE_CODE (type
) == FUNCTION_TYPE
10920 || TREE_CODE (type
) == METHOD_TYPE
)
10922 tree original_name
;
10925 if (!unqualified_id
)
10926 return error_mark_node
;
10928 if (TREE_CODE (unqualified_id
) == TEMPLATE_ID_EXPR
)
10929 original_name
= dname
;
10931 original_name
= unqualified_id
;
10933 if (storage_class
== sc_auto
)
10934 error ("storage class %<auto%> invalid for function %qs", name
);
10935 else if (storage_class
== sc_register
)
10936 error ("storage class %<register%> invalid for function %qs", name
);
10939 if (declspecs
->gnu_thread_keyword_p
)
10940 error ("storage class %<__thread%> invalid for function %qs",
10943 error ("storage class %<thread_local%> invalid for function %qs",
10947 if (virt_specifiers
)
10948 error ("virt-specifiers in %qs not allowed outside a class definition", name
);
10949 /* Function declaration not at top level.
10950 Storage classes other than `extern' are not allowed
10951 and `extern' makes no difference. */
10952 if (! toplevel_bindings_p ()
10953 && (storage_class
== sc_static
10954 || decl_spec_seq_has_spec_p (declspecs
, ds_inline
))
10957 if (storage_class
== sc_static
)
10958 pedwarn (input_location
, OPT_Wpedantic
,
10959 "%<static%> specified invalid for function %qs "
10960 "declared out of global scope", name
);
10962 pedwarn (input_location
, OPT_Wpedantic
,
10963 "%<inline%> specifier invalid for function %qs "
10964 "declared out of global scope", name
);
10967 if (ctype
== NULL_TREE
)
10971 error ("virtual non-class function %qs", name
);
10974 else if (sfk
== sfk_constructor
10975 || sfk
== sfk_destructor
)
10977 error (funcdef_flag
10978 ? G_("%qs defined in a non-class scope")
10979 : G_("%qs declared in a non-class scope"), name
);
10984 /* Record whether the function is public. */
10985 publicp
= (ctype
!= NULL_TREE
10986 || storage_class
!= sc_static
);
10988 if (late_return_type_p
)
10989 TYPE_HAS_LATE_RETURN_TYPE (type
) = 1;
10991 decl
= grokfndecl (ctype
, type
, original_name
, parms
, unqualified_id
,
10992 virtualp
, flags
, memfn_quals
, rqual
, raises
,
10994 publicp
, inlinep
| (2 * constexpr_p
),
10995 initialized
== SD_DELETED
, sfk
,
10997 template_count
, in_namespace
, attrlist
,
10998 declarator
->id_loc
);
10999 if (decl
== NULL_TREE
)
11000 return error_mark_node
;
11004 int invalid_static
= 0;
11006 /* Don't allow a static member function in a class, and forbid
11007 declaring main to be static. */
11008 if (TREE_CODE (type
) == METHOD_TYPE
)
11010 permerror (input_location
, "cannot declare member function %qD to have "
11011 "static linkage", decl
);
11012 invalid_static
= 1;
11014 else if (current_function_decl
)
11016 /* FIXME need arm citation */
11017 error ("cannot declare static function inside another function");
11018 invalid_static
= 1;
11021 if (invalid_static
)
11024 storage_class
= sc_none
;
11030 /* It's a variable. */
11032 /* An uninitialized decl with `extern' is a reference. */
11033 decl
= grokvardecl (type
, dname
, unqualified_id
,
11036 (type_quals
& TYPE_QUAL_CONST
) != 0,
11038 ctype
? ctype
: in_namespace
);
11039 if (decl
== NULL_TREE
)
11040 return error_mark_node
;
11042 bad_specifiers (decl
, BSP_VAR
, virtualp
,
11043 memfn_quals
!= TYPE_UNQUALIFIED
,
11044 inlinep
, friendp
, raises
!= NULL_TREE
);
11048 DECL_CONTEXT (decl
) = ctype
;
11051 permerror (input_location
, "%<static%> may not be used when defining "
11052 "(as opposed to declaring) a static data member");
11054 storage_class
= sc_none
;
11056 if (storage_class
== sc_register
&& TREE_STATIC (decl
))
11058 error ("static member %qD declared %<register%>", decl
);
11059 storage_class
= sc_none
;
11061 if (storage_class
== sc_extern
&& pedantic
)
11063 pedwarn (input_location
, OPT_Wpedantic
,
11064 "cannot explicitly declare member %q#D to have "
11065 "extern linkage", decl
);
11066 storage_class
= sc_none
;
11069 else if (constexpr_p
&& DECL_EXTERNAL (decl
))
11071 error ("declaration of constexpr variable %qD is not a definition",
11073 constexpr_p
= false;
11077 if (storage_class
== sc_extern
&& initialized
&& !funcdef_flag
)
11079 if (toplevel_bindings_p ())
11081 /* It's common practice (and completely valid) to have a const
11082 be initialized and declared extern. */
11083 if (!(type_quals
& TYPE_QUAL_CONST
))
11084 warning (0, "%qs initialized and declared %<extern%>", name
);
11088 error ("%qs has both %<extern%> and initializer", name
);
11089 return error_mark_node
;
11093 /* Record `register' declaration for warnings on &
11094 and in case doing stupid register allocation. */
11096 if (storage_class
== sc_register
)
11097 DECL_REGISTER (decl
) = 1;
11098 else if (storage_class
== sc_extern
)
11099 DECL_THIS_EXTERN (decl
) = 1;
11100 else if (storage_class
== sc_static
)
11101 DECL_THIS_STATIC (decl
) = 1;
11103 /* Set constexpr flag on vars (functions got it in grokfndecl). */
11104 if (constexpr_p
&& VAR_P (decl
))
11105 DECL_DECLARED_CONSTEXPR_P (decl
) = true;
11107 /* Record constancy and volatility on the DECL itself . There's
11108 no need to do this when processing a template; we'll do this
11109 for the instantiated declaration based on the type of DECL. */
11110 if (!processing_template_decl
)
11111 cp_apply_type_quals_to_decl (type_quals
, decl
);
11117 /* Subroutine of start_function. Ensure that each of the parameter
11118 types (as listed in PARMS) is complete, as is required for a
11119 function definition. */
11122 require_complete_types_for_parms (tree parms
)
11124 for (; parms
; parms
= DECL_CHAIN (parms
))
11126 if (dependent_type_p (TREE_TYPE (parms
)))
11128 if (!VOID_TYPE_P (TREE_TYPE (parms
))
11129 && complete_type_or_else (TREE_TYPE (parms
), parms
))
11131 relayout_decl (parms
);
11132 DECL_ARG_TYPE (parms
) = type_passed_as (TREE_TYPE (parms
));
11135 /* grokparms or complete_type_or_else will have already issued
11137 TREE_TYPE (parms
) = error_mark_node
;
11141 /* Returns nonzero if T is a local variable. */
11144 local_variable_p (const_tree t
)
11147 /* A VAR_DECL with a context that is a _TYPE is a static data
11149 && !TYPE_P (CP_DECL_CONTEXT (t
))
11150 /* Any other non-local variable must be at namespace scope. */
11151 && !DECL_NAMESPACE_SCOPE_P (t
))
11152 || (TREE_CODE (t
) == PARM_DECL
))
11158 /* Like local_variable_p, but suitable for use as a tree-walking
11162 local_variable_p_walkfn (tree
*tp
, int *walk_subtrees
,
11165 if (local_variable_p (*tp
)
11166 && (!DECL_ARTIFICIAL (*tp
) || DECL_NAME (*tp
) == this_identifier
))
11168 else if (TYPE_P (*tp
))
11169 *walk_subtrees
= 0;
11174 /* Check that ARG, which is a default-argument expression for a
11175 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
11176 something goes wrong. DECL may also be a _TYPE node, rather than a
11177 DECL, if there is no DECL available. */
11180 check_default_argument (tree decl
, tree arg
, tsubst_flags_t complain
)
11185 if (TREE_CODE (arg
) == DEFAULT_ARG
)
11186 /* We get a DEFAULT_ARG when looking at an in-class declaration
11187 with a default argument. Ignore the argument for now; we'll
11188 deal with it after the class is complete. */
11197 decl_type
= TREE_TYPE (decl
);
11199 if (arg
== error_mark_node
11200 || decl
== error_mark_node
11201 || TREE_TYPE (arg
) == error_mark_node
11202 || decl_type
== error_mark_node
)
11203 /* Something already went wrong. There's no need to check
11205 return error_mark_node
;
11207 /* [dcl.fct.default]
11209 A default argument expression is implicitly converted to the
11211 ++cp_unevaluated_operand
;
11212 perform_implicit_conversion_flags (decl_type
, arg
, complain
,
11214 --cp_unevaluated_operand
;
11216 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
11218 if (TYPE_PTR_OR_PTRMEM_P (decl_type
)
11219 && null_ptr_cst_p (arg
))
11220 return nullptr_node
;
11222 /* [dcl.fct.default]
11224 Local variables shall not be used in default argument
11227 The keyword `this' shall not be used in a default argument of a
11228 member function. */
11229 var
= cp_walk_tree_without_duplicates (&arg
, local_variable_p_walkfn
, NULL
);
11232 if (complain
& tf_warning_or_error
)
11234 if (DECL_NAME (var
) == this_identifier
)
11235 permerror (input_location
, "default argument %qE uses %qD",
11238 error ("default argument %qE uses local variable %qD", arg
, var
);
11240 return error_mark_node
;
11247 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
11250 type_is_deprecated (tree type
)
11252 enum tree_code code
;
11253 if (TREE_DEPRECATED (type
))
11255 if (TYPE_NAME (type
)
11256 && TREE_DEPRECATED (TYPE_NAME (type
)))
11259 /* Do warn about using typedefs to a deprecated class. */
11260 if (OVERLOAD_TYPE_P (type
) && type
!= TYPE_MAIN_VARIANT (type
))
11261 return type_is_deprecated (TYPE_MAIN_VARIANT (type
));
11263 code
= TREE_CODE (type
);
11265 if (code
== POINTER_TYPE
|| code
== REFERENCE_TYPE
11266 || code
== OFFSET_TYPE
|| code
== FUNCTION_TYPE
11267 || code
== METHOD_TYPE
|| code
== ARRAY_TYPE
)
11268 return type_is_deprecated (TREE_TYPE (type
));
11270 if (TYPE_PTRMEMFUNC_P (type
))
11271 return type_is_deprecated
11272 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type
))));
11277 /* Decode the list of parameter types for a function type.
11278 Given the list of things declared inside the parens,
11279 return a list of types.
11281 If this parameter does not end with an ellipsis, we append
11284 *PARMS is set to the chain of PARM_DECLs created. */
11287 grokparms (tree parmlist
, tree
*parms
)
11289 tree result
= NULL_TREE
;
11290 tree decls
= NULL_TREE
;
11294 for (parm
= parmlist
; parm
!= NULL_TREE
; parm
= TREE_CHAIN (parm
))
11296 tree type
= NULL_TREE
;
11297 tree init
= TREE_PURPOSE (parm
);
11298 tree decl
= TREE_VALUE (parm
);
11299 const char *errmsg
;
11301 if (parm
== void_list_node
)
11304 if (! decl
|| TREE_TYPE (decl
) == error_mark_node
)
11307 type
= TREE_TYPE (decl
);
11308 if (VOID_TYPE_P (type
))
11310 if (same_type_p (type
, void_type_node
)
11312 && !DECL_NAME (decl
) && !result
11313 && TREE_CHAIN (parm
) == void_list_node
)
11314 /* DR 577: A parameter list consisting of a single
11315 unnamed parameter of non-dependent type 'void'. */
11317 else if (cv_qualified_p (type
))
11318 error_at (DECL_SOURCE_LOCATION (decl
),
11319 "invalid use of cv-qualified type %qT in "
11320 "parameter declaration", type
);
11322 error_at (DECL_SOURCE_LOCATION (decl
),
11323 "invalid use of type %<void%> in parameter "
11325 /* It's not a good idea to actually create parameters of
11326 type `void'; other parts of the compiler assume that a
11327 void type terminates the parameter list. */
11328 type
= error_mark_node
;
11329 TREE_TYPE (decl
) = error_mark_node
;
11332 if (type
!= error_mark_node
11333 && TYPE_FOR_JAVA (type
)
11334 && MAYBE_CLASS_TYPE_P (type
))
11336 error ("parameter %qD has Java class type", decl
);
11337 type
= error_mark_node
;
11338 TREE_TYPE (decl
) = error_mark_node
;
11342 if (type
!= error_mark_node
11343 && (errmsg
= targetm
.invalid_parameter_type (type
)))
11346 type
= error_mark_node
;
11347 TREE_TYPE (decl
) = error_mark_node
;
11350 if (type
!= error_mark_node
)
11352 if (deprecated_state
!= DEPRECATED_SUPPRESS
)
11354 tree deptype
= type_is_deprecated (type
);
11356 warn_deprecated_use (deptype
, NULL_TREE
);
11359 /* Top-level qualifiers on the parameters are
11360 ignored for function types. */
11361 type
= cp_build_qualified_type (type
, 0);
11362 if (TREE_CODE (type
) == METHOD_TYPE
)
11364 error ("parameter %qD invalidly declared method type", decl
);
11365 type
= build_pointer_type (type
);
11366 TREE_TYPE (decl
) = type
;
11368 else if (abstract_virtuals_error (decl
, type
))
11369 any_error
= 1; /* Seems like a good idea. */
11370 else if (POINTER_TYPE_P (type
))
11372 /* [dcl.fct]/6, parameter types cannot contain pointers
11373 (references) to arrays of unknown bound. */
11374 tree t
= TREE_TYPE (type
);
11375 int ptr
= TYPE_PTR_P (type
);
11379 if (TYPE_PTR_P (t
))
11381 else if (TREE_CODE (t
) != ARRAY_TYPE
)
11383 else if (!TYPE_DOMAIN (t
))
11387 if (TREE_CODE (t
) == ARRAY_TYPE
)
11389 ? G_("parameter %qD includes pointer to array of "
11390 "unknown bound %qT")
11391 : G_("parameter %qD includes reference to array of "
11392 "unknown bound %qT"),
11398 else if (init
&& !processing_template_decl
)
11399 init
= check_default_argument (decl
, init
, tf_warning_or_error
);
11402 DECL_CHAIN (decl
) = decls
;
11404 result
= tree_cons (init
, type
, result
);
11406 decls
= nreverse (decls
);
11407 result
= nreverse (result
);
11409 result
= chainon (result
, void_list_node
);
11416 /* D is a constructor or overloaded `operator='.
11418 Let T be the class in which D is declared. Then, this function
11421 -1 if D's is an ill-formed constructor or copy assignment operator
11422 whose first parameter is of type `T'.
11423 0 if D is not a copy constructor or copy assignment
11425 1 if D is a copy constructor or copy assignment operator whose
11426 first parameter is a reference to non-const qualified T.
11427 2 if D is a copy constructor or copy assignment operator whose
11428 first parameter is a reference to const qualified T.
11430 This function can be used as a predicate. Positive values indicate
11431 a copy constructor and nonzero values indicate a copy assignment
11435 copy_fn_p (const_tree d
)
11441 gcc_assert (DECL_FUNCTION_MEMBER_P (d
));
11443 if (TREE_CODE (d
) == TEMPLATE_DECL
11444 || (DECL_TEMPLATE_INFO (d
)
11445 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d
))))
11446 /* Instantiations of template member functions are never copy
11447 functions. Note that member functions of templated classes are
11448 represented as template functions internally, and we must
11449 accept those as copy functions. */
11452 args
= FUNCTION_FIRST_USER_PARMTYPE (d
);
11456 arg_type
= TREE_VALUE (args
);
11457 if (arg_type
== error_mark_node
)
11460 if (TYPE_MAIN_VARIANT (arg_type
) == DECL_CONTEXT (d
))
11462 /* Pass by value copy assignment operator. */
11465 else if (TREE_CODE (arg_type
) == REFERENCE_TYPE
11466 && !TYPE_REF_IS_RVALUE (arg_type
)
11467 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type
)) == DECL_CONTEXT (d
))
11469 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type
)))
11475 args
= TREE_CHAIN (args
);
11477 if (args
&& args
!= void_list_node
&& !TREE_PURPOSE (args
))
11478 /* There are more non-optional args. */
11484 /* D is a constructor or overloaded `operator='.
11486 Let T be the class in which D is declared. Then, this function
11487 returns true when D is a move constructor or move assignment
11488 operator, false otherwise. */
11491 move_fn_p (const_tree d
)
11493 gcc_assert (DECL_FUNCTION_MEMBER_P (d
));
11495 if (cxx_dialect
== cxx98
)
11496 /* There are no move constructors if we are in C++98 mode. */
11499 if (TREE_CODE (d
) == TEMPLATE_DECL
11500 || (DECL_TEMPLATE_INFO (d
)
11501 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d
))))
11502 /* Instantiations of template member functions are never move
11503 functions. Note that member functions of templated classes are
11504 represented as template functions internally, and we must
11505 accept those as move functions. */
11508 return move_signature_fn_p (d
);
11511 /* D is a constructor or overloaded `operator='.
11513 Then, this function returns true when D has the same signature as a move
11514 constructor or move assignment operator (because either it is such a
11515 ctor/op= or it is a template specialization with the same signature),
11516 false otherwise. */
11519 move_signature_fn_p (const_tree d
)
11523 bool result
= false;
11525 args
= FUNCTION_FIRST_USER_PARMTYPE (d
);
11529 arg_type
= TREE_VALUE (args
);
11530 if (arg_type
== error_mark_node
)
11533 if (TREE_CODE (arg_type
) == REFERENCE_TYPE
11534 && TYPE_REF_IS_RVALUE (arg_type
)
11535 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type
)),
11539 args
= TREE_CHAIN (args
);
11541 if (args
&& args
!= void_list_node
&& !TREE_PURPOSE (args
))
11542 /* There are more non-optional args. */
11548 /* Remember any special properties of member function DECL. */
11551 grok_special_member_properties (tree decl
)
11555 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl
))
11558 class_type
= DECL_CONTEXT (decl
);
11559 if (DECL_CONSTRUCTOR_P (decl
))
11561 int ctor
= copy_fn_p (decl
);
11563 if (!DECL_ARTIFICIAL (decl
))
11564 TYPE_HAS_USER_CONSTRUCTOR (class_type
) = 1;
11570 A non-template constructor for class X is a copy
11571 constructor if its first parameter is of type X&, const
11572 X&, volatile X& or const volatile X&, and either there
11573 are no other parameters or else all other parameters have
11574 default arguments. */
11575 TYPE_HAS_COPY_CTOR (class_type
) = 1;
11576 if (user_provided_p (decl
))
11577 TYPE_HAS_COMPLEX_COPY_CTOR (class_type
) = 1;
11579 TYPE_HAS_CONST_COPY_CTOR (class_type
) = 1;
11581 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl
)))
11582 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type
) = 1;
11583 else if (move_fn_p (decl
) && user_provided_p (decl
))
11584 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type
) = 1;
11585 else if (is_list_ctor (decl
))
11586 TYPE_HAS_LIST_CTOR (class_type
) = 1;
11588 if (DECL_DECLARED_CONSTEXPR_P (decl
)
11589 && !copy_fn_p (decl
) && !move_fn_p (decl
))
11590 TYPE_HAS_CONSTEXPR_CTOR (class_type
) = 1;
11592 else if (DECL_OVERLOADED_OPERATOR_P (decl
) == NOP_EXPR
)
11596 A non-template assignment operator for class X is a copy
11597 assignment operator if its parameter is of type X, X&, const
11598 X&, volatile X& or const volatile X&. */
11600 int assop
= copy_fn_p (decl
);
11604 TYPE_HAS_COPY_ASSIGN (class_type
) = 1;
11605 if (user_provided_p (decl
))
11606 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type
) = 1;
11608 TYPE_HAS_CONST_COPY_ASSIGN (class_type
) = 1;
11610 else if (move_fn_p (decl
) && user_provided_p (decl
))
11611 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type
) = 1;
11613 /* Destructors are handled in check_methods. */
11616 /* Check a constructor DECL has the correct form. Complains
11617 if the class has a constructor of the form X(X). */
11620 grok_ctor_properties (const_tree ctype
, const_tree decl
)
11622 int ctor_parm
= copy_fn_p (decl
);
11628 A declaration of a constructor for a class X is ill-formed if
11629 its first parameter is of type (optionally cv-qualified) X
11630 and either there are no other parameters or else all other
11631 parameters have default arguments.
11633 We *don't* complain about member template instantiations that
11634 have this form, though; they can occur as we try to decide
11635 what constructor to use during overload resolution. Since
11636 overload resolution will never prefer such a constructor to
11637 the non-template copy constructor (which is either explicitly
11638 or implicitly defined), there's no need to worry about their
11639 existence. Theoretically, they should never even be
11640 instantiated, but that's hard to forestall. */
11641 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
11649 /* An operator with this code is unary, but can also be binary. */
11652 ambi_op_p (enum tree_code code
)
11654 return (code
== INDIRECT_REF
11655 || code
== ADDR_EXPR
11656 || code
== UNARY_PLUS_EXPR
11657 || code
== NEGATE_EXPR
11658 || code
== PREINCREMENT_EXPR
11659 || code
== PREDECREMENT_EXPR
);
11662 /* An operator with this name can only be unary. */
11665 unary_op_p (enum tree_code code
)
11667 return (code
== TRUTH_NOT_EXPR
11668 || code
== BIT_NOT_EXPR
11669 || code
== COMPONENT_REF
11670 || code
== TYPE_EXPR
);
11673 /* DECL is a declaration for an overloaded operator. If COMPLAIN is true,
11674 errors are issued for invalid declarations. */
11677 grok_op_properties (tree decl
, bool complain
)
11679 tree argtypes
= TYPE_ARG_TYPES (TREE_TYPE (decl
));
11681 int methodp
= (TREE_CODE (TREE_TYPE (decl
)) == METHOD_TYPE
);
11682 tree name
= DECL_NAME (decl
);
11683 enum tree_code operator_code
;
11688 /* Count the number of arguments and check for ellipsis. */
11689 for (argtype
= argtypes
, arity
= 0;
11690 argtype
&& argtype
!= void_list_node
;
11691 argtype
= TREE_CHAIN (argtype
))
11693 ellipsis_p
= !argtype
;
11695 class_type
= DECL_CONTEXT (decl
);
11696 if (class_type
&& !CLASS_TYPE_P (class_type
))
11697 class_type
= NULL_TREE
;
11699 if (DECL_CONV_FN_P (decl
))
11700 operator_code
= TYPE_EXPR
;
11704 #define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P) \
11705 if (ansi_opname (CODE) == name) \
11707 operator_code = (CODE); \
11710 else if (ansi_assopname (CODE) == name) \
11712 operator_code = (CODE); \
11713 DECL_ASSIGNMENT_OPERATOR_P (decl) = 1; \
11717 #include "operators.def"
11718 #undef DEF_OPERATOR
11720 gcc_unreachable ();
11723 gcc_assert (operator_code
!= MAX_TREE_CODES
);
11724 SET_OVERLOADED_OPERATOR_CODE (decl
, operator_code
);
11727 switch (operator_code
)
11730 TYPE_HAS_NEW_OPERATOR (class_type
) = 1;
11734 TYPE_GETS_DELETE (class_type
) |= 1;
11738 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type
) = 1;
11741 case VEC_DELETE_EXPR
:
11742 TYPE_GETS_DELETE (class_type
) |= 2;
11749 /* [basic.std.dynamic.allocation]/1:
11751 A program is ill-formed if an allocation function is declared
11752 in a namespace scope other than global scope or declared static
11755 The same also holds true for deallocation functions. */
11756 if (operator_code
== NEW_EXPR
|| operator_code
== VEC_NEW_EXPR
11757 || operator_code
== DELETE_EXPR
|| operator_code
== VEC_DELETE_EXPR
)
11759 if (DECL_NAMESPACE_SCOPE_P (decl
))
11761 if (CP_DECL_CONTEXT (decl
) != global_namespace
)
11763 error ("%qD may not be declared within a namespace", decl
);
11766 else if (!TREE_PUBLIC (decl
))
11768 error ("%qD may not be declared as static", decl
);
11774 if (operator_code
== NEW_EXPR
|| operator_code
== VEC_NEW_EXPR
)
11776 TREE_TYPE (decl
) = coerce_new_type (TREE_TYPE (decl
));
11777 DECL_IS_OPERATOR_NEW (decl
) = 1;
11779 else if (operator_code
== DELETE_EXPR
|| operator_code
== VEC_DELETE_EXPR
)
11780 TREE_TYPE (decl
) = coerce_delete_type (TREE_TYPE (decl
));
11783 /* An operator function must either be a non-static member function
11784 or have at least one parameter of a class, a reference to a class,
11785 an enumeration, or a reference to an enumeration. 13.4.0.6 */
11786 if (! methodp
|| DECL_STATIC_FUNCTION_P (decl
))
11788 if (operator_code
== TYPE_EXPR
11789 || operator_code
== CALL_EXPR
11790 || operator_code
== COMPONENT_REF
11791 || operator_code
== ARRAY_REF
11792 || operator_code
== NOP_EXPR
)
11794 error ("%qD must be a nonstatic member function", decl
);
11801 if (DECL_STATIC_FUNCTION_P (decl
))
11803 error ("%qD must be either a non-static member "
11804 "function or a non-member function", decl
);
11808 for (p
= argtypes
; p
&& p
!= void_list_node
; p
= TREE_CHAIN (p
))
11810 tree arg
= non_reference (TREE_VALUE (p
));
11811 if (arg
== error_mark_node
)
11814 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
11815 because these checks are performed even on
11816 template functions. */
11817 if (MAYBE_CLASS_TYPE_P (arg
)
11818 || TREE_CODE (arg
) == ENUMERAL_TYPE
)
11822 if (!p
|| p
== void_list_node
)
11825 error ("%qD must have an argument of class or "
11826 "enumerated type", decl
);
11832 /* There are no restrictions on the arguments to an overloaded
11834 if (operator_code
== CALL_EXPR
)
11837 /* Warn about conversion operators that will never be used. */
11838 if (IDENTIFIER_TYPENAME_P (name
)
11839 && ! DECL_TEMPLATE_INFO (decl
)
11841 /* Warn only declaring the function; there is no need to
11842 warn again about out-of-class definitions. */
11843 && class_type
== current_class_type
)
11845 tree t
= TREE_TYPE (name
);
11846 int ref
= (TREE_CODE (t
) == REFERENCE_TYPE
);
11849 t
= TYPE_MAIN_VARIANT (TREE_TYPE (t
));
11851 if (VOID_TYPE_P (t
))
11852 warning (OPT_Wconversion
,
11854 ? G_("conversion to a reference to void "
11855 "will never use a type conversion operator")
11856 : G_("conversion to void "
11857 "will never use a type conversion operator"));
11858 else if (class_type
)
11860 if (t
== class_type
)
11861 warning (OPT_Wconversion
,
11863 ? G_("conversion to a reference to the same type "
11864 "will never use a type conversion operator")
11865 : G_("conversion to the same type "
11866 "will never use a type conversion operator"));
11867 /* Don't force t to be complete here. */
11868 else if (MAYBE_CLASS_TYPE_P (t
)
11869 && COMPLETE_TYPE_P (t
)
11870 && DERIVED_FROM_P (t
, class_type
))
11871 warning (OPT_Wconversion
,
11873 ? G_("conversion to a reference to a base class "
11874 "will never use a type conversion operator")
11875 : G_("conversion to a base class "
11876 "will never use a type conversion operator"));
11881 if (operator_code
== COND_EXPR
)
11884 error ("ISO C++ prohibits overloading operator ?:");
11887 else if (ellipsis_p
)
11889 error ("%qD must not have variable number of arguments", decl
);
11892 else if (ambi_op_p (operator_code
))
11895 /* We pick the one-argument operator codes by default, so
11896 we don't have to change anything. */
11898 else if (arity
== 2)
11900 /* If we thought this was a unary operator, we now know
11901 it to be a binary operator. */
11902 switch (operator_code
)
11905 operator_code
= MULT_EXPR
;
11909 operator_code
= BIT_AND_EXPR
;
11912 case UNARY_PLUS_EXPR
:
11913 operator_code
= PLUS_EXPR
;
11917 operator_code
= MINUS_EXPR
;
11920 case PREINCREMENT_EXPR
:
11921 operator_code
= POSTINCREMENT_EXPR
;
11924 case PREDECREMENT_EXPR
:
11925 operator_code
= POSTDECREMENT_EXPR
;
11929 gcc_unreachable ();
11932 SET_OVERLOADED_OPERATOR_CODE (decl
, operator_code
);
11934 if ((operator_code
== POSTINCREMENT_EXPR
11935 || operator_code
== POSTDECREMENT_EXPR
)
11936 && ! processing_template_decl
11937 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes
)), integer_type_node
))
11940 error ("postfix %qD must take %<int%> as its argument",
11943 error ("postfix %qD must take %<int%> as its second "
11951 error ("%qD must take either zero or one argument", decl
);
11953 error ("%qD must take either one or two arguments", decl
);
11957 /* More Effective C++ rule 6. */
11959 && (operator_code
== POSTINCREMENT_EXPR
11960 || operator_code
== POSTDECREMENT_EXPR
11961 || operator_code
== PREINCREMENT_EXPR
11962 || operator_code
== PREDECREMENT_EXPR
))
11964 tree arg
= TREE_VALUE (argtypes
);
11965 tree ret
= TREE_TYPE (TREE_TYPE (decl
));
11966 if (methodp
|| TREE_CODE (arg
) == REFERENCE_TYPE
)
11967 arg
= TREE_TYPE (arg
);
11968 arg
= TYPE_MAIN_VARIANT (arg
);
11969 if (operator_code
== PREINCREMENT_EXPR
11970 || operator_code
== PREDECREMENT_EXPR
)
11972 if (TREE_CODE (ret
) != REFERENCE_TYPE
11973 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret
)),
11975 warning (OPT_Weffc__
, "prefix %qD should return %qT", decl
,
11976 build_reference_type (arg
));
11980 if (!same_type_p (TYPE_MAIN_VARIANT (ret
), arg
))
11981 warning (OPT_Weffc__
, "postfix %qD should return %qT", decl
, arg
);
11985 else if (unary_op_p (operator_code
))
11990 error ("%qD must take %<void%>", decl
);
11992 error ("%qD must take exactly one argument", decl
);
11996 else /* if (binary_op_p (operator_code)) */
12001 error ("%qD must take exactly one argument", decl
);
12003 error ("%qD must take exactly two arguments", decl
);
12007 /* More Effective C++ rule 7. */
12009 && (operator_code
== TRUTH_ANDIF_EXPR
12010 || operator_code
== TRUTH_ORIF_EXPR
12011 || operator_code
== COMPOUND_EXPR
))
12012 warning (OPT_Weffc__
, "user-defined %qD always evaluates both arguments",
12016 /* Effective C++ rule 23. */
12019 && !DECL_ASSIGNMENT_OPERATOR_P (decl
)
12020 && (operator_code
== PLUS_EXPR
12021 || operator_code
== MINUS_EXPR
12022 || operator_code
== TRUNC_DIV_EXPR
12023 || operator_code
== MULT_EXPR
12024 || operator_code
== TRUNC_MOD_EXPR
)
12025 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl
))) == REFERENCE_TYPE
)
12026 warning (OPT_Weffc__
, "%qD should return by value", decl
);
12028 /* [over.oper]/8 */
12029 for (; argtypes
&& argtypes
!= void_list_node
;
12030 argtypes
= TREE_CHAIN (argtypes
))
12031 if (TREE_PURPOSE (argtypes
))
12033 TREE_PURPOSE (argtypes
) = NULL_TREE
;
12034 if (operator_code
== POSTINCREMENT_EXPR
12035 || operator_code
== POSTDECREMENT_EXPR
)
12037 pedwarn (input_location
, OPT_Wpedantic
, "%qD cannot have default arguments",
12042 error ("%qD cannot have default arguments", decl
);
12050 /* Return a string giving the keyword associate with CODE. */
12052 static const char *
12053 tag_name (enum tag_types code
)
12065 case typename_type
:
12068 gcc_unreachable ();
12072 /* Name lookup in an elaborated-type-specifier (after the keyword
12073 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
12074 elaborated-type-specifier is invalid, issue a diagnostic and return
12075 error_mark_node; otherwise, return the *_TYPE to which it referred.
12076 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
12079 check_elaborated_type_specifier (enum tag_types tag_code
,
12081 bool allow_template_p
)
12087 struct S { struct S *p; };
12089 name lookup will find the TYPE_DECL for the implicit "S::S"
12090 typedef. Adjust for that here. */
12091 if (DECL_SELF_REFERENCE_P (decl
))
12092 decl
= TYPE_NAME (TREE_TYPE (decl
));
12094 type
= TREE_TYPE (decl
);
12096 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
12097 is false for this case as well. */
12098 if (TREE_CODE (type
) == TEMPLATE_TYPE_PARM
)
12100 error ("using template type parameter %qT after %qs",
12101 type
, tag_name (tag_code
));
12102 return error_mark_node
;
12104 /* Accept template template parameters. */
12105 else if (allow_template_p
12106 && (TREE_CODE (type
) == BOUND_TEMPLATE_TEMPLATE_PARM
12107 || TREE_CODE (type
) == TEMPLATE_TEMPLATE_PARM
))
12111 If the identifier resolves to a typedef-name or the
12112 simple-template-id resolves to an alias template
12113 specialization, the elaborated-type-specifier is ill-formed.
12115 In other words, the only legitimate declaration to use in the
12116 elaborated type specifier is the implicit typedef created when
12117 the type is declared. */
12118 else if (!DECL_IMPLICIT_TYPEDEF_P (decl
)
12119 && !DECL_SELF_REFERENCE_P (decl
)
12120 && tag_code
!= typename_type
)
12122 if (alias_template_specialization_p (type
))
12123 error ("using alias template specialization %qT after %qs",
12124 type
, tag_name (tag_code
));
12126 error ("using typedef-name %qD after %qs", decl
, tag_name (tag_code
));
12127 inform (DECL_SOURCE_LOCATION (decl
),
12128 "%qD has a previous declaration here", decl
);
12129 return error_mark_node
;
12131 else if (TREE_CODE (type
) != RECORD_TYPE
12132 && TREE_CODE (type
) != UNION_TYPE
12133 && tag_code
!= enum_type
12134 && tag_code
!= typename_type
)
12136 error ("%qT referred to as %qs", type
, tag_name (tag_code
));
12137 inform (input_location
, "%q+T has a previous declaration here", type
);
12138 return error_mark_node
;
12140 else if (TREE_CODE (type
) != ENUMERAL_TYPE
12141 && tag_code
== enum_type
)
12143 error ("%qT referred to as enum", type
);
12144 inform (input_location
, "%q+T has a previous declaration here", type
);
12145 return error_mark_node
;
12147 else if (!allow_template_p
12148 && TREE_CODE (type
) == RECORD_TYPE
12149 && CLASSTYPE_IS_TEMPLATE (type
))
12151 /* If a class template appears as elaborated type specifier
12152 without a template header such as:
12154 template <class T> class C {};
12155 void f(class C); // No template header here
12157 then the required template argument is missing. */
12158 error ("template argument required for %<%s %T%>",
12159 tag_name (tag_code
),
12160 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type
)));
12161 return error_mark_node
;
12167 /* Lookup NAME in elaborate type specifier in scope according to
12168 SCOPE and issue diagnostics if necessary.
12169 Return *_TYPE node upon success, NULL_TREE when the NAME is not
12170 found, and ERROR_MARK_NODE for type error. */
12173 lookup_and_check_tag (enum tag_types tag_code
, tree name
,
12174 tag_scope scope
, bool template_header_p
)
12178 if (scope
== ts_global
)
12180 /* First try ordinary name lookup, ignoring hidden class name
12181 injected via friend declaration. */
12182 decl
= lookup_name_prefer_type (name
, 2);
12183 decl
= strip_using_decl (decl
);
12184 /* If that fails, the name will be placed in the smallest
12185 non-class, non-function-prototype scope according to 3.3.1/5.
12186 We may already have a hidden name declared as friend in this
12187 scope. So lookup again but not ignoring hidden names.
12188 If we find one, that name will be made visible rather than
12189 creating a new tag. */
12191 decl
= lookup_type_scope (name
, ts_within_enclosing_non_class
);
12194 decl
= lookup_type_scope (name
, scope
);
12197 && (DECL_CLASS_TEMPLATE_P (decl
)
12198 /* If scope is ts_current we're defining a class, so ignore a
12199 template template parameter. */
12200 || (scope
!= ts_current
12201 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl
))))
12202 decl
= DECL_TEMPLATE_RESULT (decl
);
12204 if (decl
&& TREE_CODE (decl
) == TYPE_DECL
)
12206 /* Look for invalid nested type:
12210 if (scope
== ts_current
&& DECL_SELF_REFERENCE_P (decl
))
12212 error ("%qD has the same name as the class in which it is "
12215 return error_mark_node
;
12218 /* Two cases we need to consider when deciding if a class
12219 template is allowed as an elaborated type specifier:
12220 1. It is a self reference to its own class.
12221 2. It comes with a template header.
12225 template <class T> class C {
12226 class C *c1; // DECL_SELF_REFERENCE_P is true
12229 template <class U> class C; // template_header_p is true
12230 template <class T> class C<T>::D {
12231 class C *c2; // DECL_SELF_REFERENCE_P is true
12234 t
= check_elaborated_type_specifier (tag_code
,
12237 | DECL_SELF_REFERENCE_P (decl
));
12240 else if (decl
&& TREE_CODE (decl
) == TREE_LIST
)
12242 error ("reference to %qD is ambiguous", name
);
12243 print_candidates (decl
);
12244 return error_mark_node
;
12250 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
12251 Define the tag as a forward-reference if it is not defined.
12253 If a declaration is given, process it here, and report an error if
12254 multiple declarations are not identical.
12256 SCOPE is TS_CURRENT when this is also a definition. Only look in
12257 the current frame for the name (since C++ allows new names in any
12258 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
12259 declaration. Only look beginning from the current scope outward up
12260 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
12262 TEMPLATE_HEADER_P is true when this declaration is preceded by
12263 a set of template parameters. */
12266 xref_tag_1 (enum tag_types tag_code
, tree name
,
12267 tag_scope orig_scope
, bool template_header_p
)
12269 enum tree_code code
;
12271 tree context
= NULL_TREE
;
12274 gcc_assert (identifier_p (name
));
12280 code
= RECORD_TYPE
;
12286 code
= ENUMERAL_TYPE
;
12289 gcc_unreachable ();
12292 if (orig_scope
== ts_lambda
)
12293 scope
= ts_current
;
12295 scope
= orig_scope
;
12297 /* In case of anonymous name, xref_tag is only called to
12298 make type node and push name. Name lookup is not required. */
12299 if (ANON_AGGRNAME_P (name
))
12302 t
= lookup_and_check_tag (tag_code
, name
,
12303 scope
, template_header_p
);
12305 if (t
== error_mark_node
)
12306 return error_mark_node
;
12308 if (scope
!= ts_current
&& t
&& current_class_type
12309 && template_class_depth (current_class_type
)
12310 && template_header_p
)
12312 if (TREE_CODE (t
) == TEMPLATE_TEMPLATE_PARM
)
12315 /* Since SCOPE is not TS_CURRENT, we are not looking at a
12316 definition of this tag. Since, in addition, we are currently
12317 processing a (member) template declaration of a template
12318 class, we must be very careful; consider:
12325 { template <class V>
12326 friend struct S1; };
12328 Here, the S2::S1 declaration should not be confused with the
12329 outer declaration. In particular, the inner version should
12330 have a template parameter of level 2, not level 1. This
12331 would be particularly important if the member declaration
12334 template <class V = U> friend struct S1;
12336 say, when we should tsubst into `U' when instantiating
12337 S2. On the other hand, when presented with:
12347 we must find the inner binding eventually. We
12348 accomplish this by making sure that the new type we
12349 create to represent this declaration has the right
12351 context
= TYPE_CONTEXT (t
);
12357 /* If no such tag is yet defined, create a forward-reference node
12358 and record it as the "definition".
12359 When a real declaration of this type is found,
12360 the forward-reference will be altered into a real type. */
12361 if (code
== ENUMERAL_TYPE
)
12363 error ("use of enum %q#D without previous declaration", name
);
12364 return error_mark_node
;
12368 t
= make_class_type (code
);
12369 TYPE_CONTEXT (t
) = context
;
12370 if (orig_scope
== ts_lambda
)
12371 /* Remember that we're declaring a lambda to avoid bogus errors
12372 in push_template_decl. */
12373 CLASSTYPE_LAMBDA_EXPR (t
) = error_mark_node
;
12374 t
= pushtag (name
, t
, scope
);
12379 if (template_header_p
&& MAYBE_CLASS_TYPE_P (t
))
12381 if (!redeclare_class_template (t
, current_template_parms
))
12382 return error_mark_node
;
12384 else if (!processing_template_decl
12385 && CLASS_TYPE_P (t
)
12386 && CLASSTYPE_IS_TEMPLATE (t
))
12388 error ("redeclaration of %qT as a non-template", t
);
12389 error ("previous declaration %q+D", t
);
12390 return error_mark_node
;
12393 /* Make injected friend class visible. */
12394 if (scope
!= ts_within_enclosing_non_class
12395 && hidden_name_p (TYPE_NAME (t
)))
12397 DECL_ANTICIPATED (TYPE_NAME (t
)) = 0;
12398 DECL_FRIEND_P (TYPE_NAME (t
)) = 0;
12400 if (TYPE_TEMPLATE_INFO (t
))
12402 DECL_ANTICIPATED (TYPE_TI_TEMPLATE (t
)) = 0;
12403 DECL_FRIEND_P (TYPE_TI_TEMPLATE (t
)) = 0;
12411 /* Wrapper for xref_tag_1. */
12414 xref_tag (enum tag_types tag_code
, tree name
,
12415 tag_scope scope
, bool template_header_p
)
12419 subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
12420 ret
= xref_tag_1 (tag_code
, name
, scope
, template_header_p
);
12421 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
12427 xref_tag_from_type (tree old
, tree id
, tag_scope scope
)
12429 enum tag_types tag_kind
;
12431 if (TREE_CODE (old
) == RECORD_TYPE
)
12432 tag_kind
= (CLASSTYPE_DECLARED_CLASS (old
) ? class_type
: record_type
);
12434 tag_kind
= union_type
;
12436 if (id
== NULL_TREE
)
12437 id
= TYPE_IDENTIFIER (old
);
12439 return xref_tag (tag_kind
, id
, scope
, false);
12442 /* Create the binfo hierarchy for REF with (possibly NULL) base list
12443 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
12444 access_* node, and the TREE_VALUE is the type of the base-class.
12445 Non-NULL TREE_TYPE indicates virtual inheritance.
12447 Returns true if the binfo hierarchy was successfully created,
12448 false if an error was detected. */
12451 xref_basetypes (tree ref
, tree base_list
)
12454 tree binfo
, base_binfo
;
12455 unsigned max_vbases
= 0; /* Maximum direct & indirect virtual bases. */
12456 unsigned max_bases
= 0; /* Maximum direct bases. */
12458 tree default_access
;
12459 tree igo_prev
; /* Track Inheritance Graph Order. */
12461 if (ref
== error_mark_node
)
12464 /* The base of a derived class is private by default, all others are
12466 default_access
= (TREE_CODE (ref
) == RECORD_TYPE
12467 && CLASSTYPE_DECLARED_CLASS (ref
)
12468 ? access_private_node
: access_public_node
);
12470 /* First, make sure that any templates in base-classes are
12471 instantiated. This ensures that if we call ourselves recursively
12472 we do not get confused about which classes are marked and which
12474 basep
= &base_list
;
12477 tree basetype
= TREE_VALUE (*basep
);
12479 /* The dependent_type_p call below should really be dependent_scope_p
12480 so that we give a hard error about using an incomplete type as a
12481 base, but we allow it with a pedwarn for backward
12483 if (processing_template_decl
12484 && CLASS_TYPE_P (basetype
) && TYPE_BEING_DEFINED (basetype
))
12485 cxx_incomplete_type_diagnostic (NULL_TREE
, basetype
, DK_PEDWARN
);
12486 if (!dependent_type_p (basetype
)
12487 && !complete_type_or_else (basetype
, NULL
))
12488 /* An incomplete type. Remove it from the list. */
12489 *basep
= TREE_CHAIN (*basep
);
12493 if (TREE_TYPE (*basep
))
12495 if (CLASS_TYPE_P (basetype
))
12496 max_vbases
+= vec_safe_length (CLASSTYPE_VBASECLASSES (basetype
));
12497 basep
= &TREE_CHAIN (*basep
);
12501 TYPE_MARKED_P (ref
) = 1;
12503 /* The binfo slot should be empty, unless this is an (ill-formed)
12505 if (TYPE_BINFO (ref
) && !TYPE_SIZE (ref
))
12507 error ("redefinition of %q#T", ref
);
12511 gcc_assert (TYPE_MAIN_VARIANT (ref
) == ref
);
12513 binfo
= make_tree_binfo (max_bases
);
12515 TYPE_BINFO (ref
) = binfo
;
12516 BINFO_OFFSET (binfo
) = size_zero_node
;
12517 BINFO_TYPE (binfo
) = ref
;
12519 /* Apply base-class info set up to the variants of this type. */
12520 fixup_type_variants (ref
);
12524 vec_alloc (BINFO_BASE_ACCESSES (binfo
), max_bases
);
12525 /* An aggregate cannot have baseclasses. */
12526 CLASSTYPE_NON_AGGREGATE (ref
) = 1;
12528 if (TREE_CODE (ref
) == UNION_TYPE
)
12530 error ("derived union %qT invalid", ref
);
12537 if (TYPE_FOR_JAVA (ref
))
12539 error ("Java class %qT cannot have multiple bases", ref
);
12546 vec_alloc (CLASSTYPE_VBASECLASSES (ref
), max_vbases
);
12548 if (TYPE_FOR_JAVA (ref
))
12550 error ("Java class %qT cannot have virtual bases", ref
);
12555 for (igo_prev
= binfo
; base_list
; base_list
= TREE_CHAIN (base_list
))
12557 tree access
= TREE_PURPOSE (base_list
);
12558 int via_virtual
= TREE_TYPE (base_list
) != NULL_TREE
;
12559 tree basetype
= TREE_VALUE (base_list
);
12561 if (access
== access_default_node
)
12562 access
= default_access
;
12564 if (PACK_EXPANSION_P (basetype
))
12565 basetype
= PACK_EXPANSION_PATTERN (basetype
);
12566 if (TREE_CODE (basetype
) == TYPE_DECL
)
12567 basetype
= TREE_TYPE (basetype
);
12568 if (!MAYBE_CLASS_TYPE_P (basetype
) || TREE_CODE (basetype
) == UNION_TYPE
)
12570 error ("base type %qT fails to be a struct or class type",
12575 if (TYPE_FOR_JAVA (basetype
) && (current_lang_depth () == 0))
12576 TYPE_FOR_JAVA (ref
) = 1;
12578 base_binfo
= NULL_TREE
;
12579 if (CLASS_TYPE_P (basetype
) && !dependent_scope_p (basetype
))
12581 base_binfo
= TYPE_BINFO (basetype
);
12582 /* The original basetype could have been a typedef'd type. */
12583 basetype
= BINFO_TYPE (base_binfo
);
12585 /* Inherit flags from the base. */
12586 TYPE_HAS_NEW_OPERATOR (ref
)
12587 |= TYPE_HAS_NEW_OPERATOR (basetype
);
12588 TYPE_HAS_ARRAY_NEW_OPERATOR (ref
)
12589 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype
);
12590 TYPE_GETS_DELETE (ref
) |= TYPE_GETS_DELETE (basetype
);
12591 TYPE_HAS_CONVERSION (ref
) |= TYPE_HAS_CONVERSION (basetype
);
12592 CLASSTYPE_DIAMOND_SHAPED_P (ref
)
12593 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype
);
12594 CLASSTYPE_REPEATED_BASE_P (ref
)
12595 |= CLASSTYPE_REPEATED_BASE_P (basetype
);
12598 /* We must do this test after we've seen through a typedef
12600 if (TYPE_MARKED_P (basetype
))
12602 if (basetype
== ref
)
12603 error ("recursive type %qT undefined", basetype
);
12605 error ("duplicate base type %qT invalid", basetype
);
12609 if (PACK_EXPANSION_P (TREE_VALUE (base_list
)))
12610 /* Regenerate the pack expansion for the bases. */
12611 basetype
= make_pack_expansion (basetype
);
12613 TYPE_MARKED_P (basetype
) = 1;
12615 base_binfo
= copy_binfo (base_binfo
, basetype
, ref
,
12616 &igo_prev
, via_virtual
);
12617 if (!BINFO_INHERITANCE_CHAIN (base_binfo
))
12618 BINFO_INHERITANCE_CHAIN (base_binfo
) = binfo
;
12620 BINFO_BASE_APPEND (binfo
, base_binfo
);
12621 BINFO_BASE_ACCESS_APPEND (binfo
, access
);
12624 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref
)) < max_vbases
)
12625 /* If we didn't get max_vbases vbases, we must have shared at
12626 least one of them, and are therefore diamond shaped. */
12627 CLASSTYPE_DIAMOND_SHAPED_P (ref
) = 1;
12629 /* Unmark all the types. */
12630 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
12631 TYPE_MARKED_P (BINFO_TYPE (base_binfo
)) = 0;
12632 TYPE_MARKED_P (ref
) = 0;
12634 /* Now see if we have a repeated base type. */
12635 if (!CLASSTYPE_REPEATED_BASE_P (ref
))
12637 for (base_binfo
= binfo
; base_binfo
;
12638 base_binfo
= TREE_CHAIN (base_binfo
))
12640 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo
)))
12642 CLASSTYPE_REPEATED_BASE_P (ref
) = 1;
12645 TYPE_MARKED_P (BINFO_TYPE (base_binfo
)) = 1;
12647 for (base_binfo
= binfo
; base_binfo
;
12648 base_binfo
= TREE_CHAIN (base_binfo
))
12649 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo
)))
12650 TYPE_MARKED_P (BINFO_TYPE (base_binfo
)) = 0;
12659 /* Copies the enum-related properties from type SRC to type DST.
12660 Used with the underlying type of an enum and the enum itself. */
12662 copy_type_enum (tree dst
, tree src
)
12665 for (t
= dst
; t
; t
= TYPE_NEXT_VARIANT (t
))
12667 TYPE_MIN_VALUE (t
) = TYPE_MIN_VALUE (src
);
12668 TYPE_MAX_VALUE (t
) = TYPE_MAX_VALUE (src
);
12669 TYPE_SIZE (t
) = TYPE_SIZE (src
);
12670 TYPE_SIZE_UNIT (t
) = TYPE_SIZE_UNIT (src
);
12671 SET_TYPE_MODE (dst
, TYPE_MODE (src
));
12672 TYPE_PRECISION (t
) = TYPE_PRECISION (src
);
12673 TYPE_ALIGN (t
) = TYPE_ALIGN (src
);
12674 TYPE_USER_ALIGN (t
) = TYPE_USER_ALIGN (src
);
12675 TYPE_UNSIGNED (t
) = TYPE_UNSIGNED (src
);
12679 /* Begin compiling the definition of an enumeration type.
12682 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
12684 UNDERLYING_TYPE is the type that will be used as the storage for
12685 the enumeration type. This should be NULL_TREE if no storage type
12688 SCOPED_ENUM_P is true if this is a scoped enumeration type.
12690 if IS_NEW is not NULL, gets TRUE iff a new type is created.
12692 Returns the type object, as yet incomplete.
12693 Also records info about it so that build_enumerator
12694 may be used to declare the individual values as they are read. */
12697 start_enum (tree name
, tree enumtype
, tree underlying_type
,
12698 bool scoped_enum_p
, bool *is_new
)
12700 tree prevtype
= NULL_TREE
;
12701 gcc_assert (identifier_p (name
));
12705 /* [C++0x dcl.enum]p5:
12707 If not explicitly specified, the underlying type of a scoped
12708 enumeration type is int. */
12709 if (!underlying_type
&& scoped_enum_p
)
12710 underlying_type
= integer_type_node
;
12712 if (underlying_type
)
12713 underlying_type
= cv_unqualified (underlying_type
);
12715 /* If this is the real definition for a previous forward reference,
12716 fill in the contents in the same object that used to be the
12717 forward reference. */
12719 enumtype
= lookup_and_check_tag (enum_type
, name
,
12720 /*tag_scope=*/ts_current
,
12721 /*template_header_p=*/false);
12723 /* In case of a template_decl, the only check that should be deferred
12724 to instantiation time is the comparison of underlying types. */
12725 if (enumtype
&& TREE_CODE (enumtype
) == ENUMERAL_TYPE
)
12727 if (scoped_enum_p
!= SCOPED_ENUM_P (enumtype
))
12729 error_at (input_location
, "scoped/unscoped mismatch "
12730 "in enum %q#T", enumtype
);
12731 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype
)),
12732 "previous definition here");
12733 enumtype
= error_mark_node
;
12735 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype
) != !! underlying_type
)
12737 error_at (input_location
, "underlying type mismatch "
12738 "in enum %q#T", enumtype
);
12739 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype
)),
12740 "previous definition here");
12741 enumtype
= error_mark_node
;
12743 else if (underlying_type
&& ENUM_UNDERLYING_TYPE (enumtype
)
12744 && !dependent_type_p (underlying_type
)
12745 && !dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype
))
12746 && !same_type_p (underlying_type
,
12747 ENUM_UNDERLYING_TYPE (enumtype
)))
12749 error_at (input_location
, "different underlying type "
12750 "in enum %q#T", enumtype
);
12751 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype
)),
12752 "previous definition here");
12753 underlying_type
= NULL_TREE
;
12757 if (!enumtype
|| TREE_CODE (enumtype
) != ENUMERAL_TYPE
12758 || processing_template_decl
)
12760 /* In case of error, make a dummy enum to allow parsing to
12762 if (enumtype
== error_mark_node
)
12764 name
= make_anon_name ();
12765 enumtype
= NULL_TREE
;
12768 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
12769 of an opaque enum, or an opaque enum of an already defined
12770 enumeration (C++0x only).
12771 In any other case, it'll be NULL_TREE. */
12777 prevtype
= enumtype
;
12779 /* Do not push the decl more than once, unless we need to
12780 compare underlying types at instantiation time */
12782 || TREE_CODE (enumtype
) != ENUMERAL_TYPE
12783 || (underlying_type
12784 && dependent_type_p (underlying_type
))
12785 || (ENUM_UNDERLYING_TYPE (enumtype
)
12786 && dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype
))))
12788 enumtype
= cxx_make_type (ENUMERAL_TYPE
);
12789 enumtype
= pushtag (name
, enumtype
, /*tag_scope=*/ts_current
);
12792 enumtype
= xref_tag (enum_type
, name
, /*tag_scope=*/ts_current
,
12795 if (enumtype
== error_mark_node
)
12796 return error_mark_node
;
12798 /* The enum is considered opaque until the opening '{' of the
12799 enumerator list. */
12800 SET_OPAQUE_ENUM_P (enumtype
, true);
12801 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype
) = !! underlying_type
;
12804 SET_SCOPED_ENUM_P (enumtype
, scoped_enum_p
);
12806 if (underlying_type
)
12808 if (CP_INTEGRAL_TYPE_P (underlying_type
))
12810 copy_type_enum (enumtype
, underlying_type
);
12811 ENUM_UNDERLYING_TYPE (enumtype
) = underlying_type
;
12813 else if (dependent_type_p (underlying_type
))
12814 ENUM_UNDERLYING_TYPE (enumtype
) = underlying_type
;
12816 error ("underlying type %<%T%> of %<%T%> must be an integral type",
12817 underlying_type
, enumtype
);
12820 /* If into a template class, the returned enum is always the first
12821 declaration (opaque or not) seen. This way all the references to
12822 this type will be to the same declaration. The following ones are used
12823 only to check for definition errors. */
12824 if (prevtype
&& processing_template_decl
)
12830 /* After processing and defining all the values of an enumeration type,
12831 install their decls in the enumeration type.
12832 ENUMTYPE is the type object. */
12835 finish_enum_value_list (tree enumtype
)
12838 tree underlying_type
;
12841 tree minnode
, maxnode
;
12844 bool fixed_underlying_type_p
12845 = ENUM_UNDERLYING_TYPE (enumtype
) != NULL_TREE
;
12847 /* We built up the VALUES in reverse order. */
12848 TYPE_VALUES (enumtype
) = nreverse (TYPE_VALUES (enumtype
));
12850 /* For an enum defined in a template, just set the type of the values;
12851 all further processing is postponed until the template is
12852 instantiated. We need to set the type so that tsubst of a CONST_DECL
12854 if (processing_template_decl
)
12856 for (values
= TYPE_VALUES (enumtype
);
12858 values
= TREE_CHAIN (values
))
12859 TREE_TYPE (TREE_VALUE (values
)) = enumtype
;
12863 /* Determine the minimum and maximum values of the enumerators. */
12864 if (TYPE_VALUES (enumtype
))
12866 minnode
= maxnode
= NULL_TREE
;
12868 for (values
= TYPE_VALUES (enumtype
);
12870 values
= TREE_CHAIN (values
))
12872 decl
= TREE_VALUE (values
);
12874 /* [dcl.enum]: Following the closing brace of an enum-specifier,
12875 each enumerator has the type of its enumeration. Prior to the
12876 closing brace, the type of each enumerator is the type of its
12877 initializing value. */
12878 TREE_TYPE (decl
) = enumtype
;
12880 /* Update the minimum and maximum values, if appropriate. */
12881 value
= DECL_INITIAL (decl
);
12882 if (value
== error_mark_node
)
12883 value
= integer_zero_node
;
12884 /* Figure out what the minimum and maximum values of the
12885 enumerators are. */
12887 minnode
= maxnode
= value
;
12888 else if (tree_int_cst_lt (maxnode
, value
))
12890 else if (tree_int_cst_lt (value
, minnode
))
12897 If the enumerator-list is empty, the underlying type is as if
12898 the enumeration had a single enumerator with value 0. */
12899 minnode
= maxnode
= integer_zero_node
;
12901 if (!fixed_underlying_type_p
)
12903 /* Compute the number of bits require to represent all values of the
12904 enumeration. We must do this before the type of MINNODE and
12905 MAXNODE are transformed, since tree_int_cst_min_precision relies
12906 on the TREE_TYPE of the value it is passed. */
12907 signop sgn
= tree_int_cst_sgn (minnode
) >= 0 ? UNSIGNED
: SIGNED
;
12908 int lowprec
= tree_int_cst_min_precision (minnode
, sgn
);
12909 int highprec
= tree_int_cst_min_precision (maxnode
, sgn
);
12910 int precision
= MAX (lowprec
, highprec
);
12912 bool use_short_enum
;
12914 /* Determine the underlying type of the enumeration.
12918 The underlying type of an enumeration is an integral type that
12919 can represent all the enumerator values defined in the
12920 enumeration. It is implementation-defined which integral type is
12921 used as the underlying type for an enumeration except that the
12922 underlying type shall not be larger than int unless the value of
12923 an enumerator cannot fit in an int or unsigned int.
12925 We use "int" or an "unsigned int" as the underlying type, even if
12926 a smaller integral type would work, unless the user has
12927 explicitly requested that we use the smallest possible type. The
12928 user can request that for all enumerations with a command line
12929 flag, or for just one enumeration with an attribute. */
12931 use_short_enum
= flag_short_enums
12932 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype
));
12934 for (itk
= (use_short_enum
? itk_char
: itk_int
);
12938 underlying_type
= integer_types
[itk
];
12939 if (underlying_type
!= NULL_TREE
12940 && TYPE_PRECISION (underlying_type
) >= precision
12941 && TYPE_SIGN (underlying_type
) == sgn
)
12944 if (itk
== itk_none
)
12948 IF no integral type can represent all the enumerator values, the
12949 enumeration is ill-formed. */
12950 error ("no integral type can represent all of the enumerator values "
12951 "for %qT", enumtype
);
12952 precision
= TYPE_PRECISION (long_long_integer_type_node
);
12953 underlying_type
= integer_types
[itk_unsigned_long_long
];
12958 The value of sizeof() applied to an enumeration type, an object
12959 of an enumeration type, or an enumerator, is the value of sizeof()
12960 applied to the underlying type. */
12961 copy_type_enum (enumtype
, underlying_type
);
12963 /* Compute the minimum and maximum values for the type.
12967 For an enumeration where emin is the smallest enumerator and emax
12968 is the largest, the values of the enumeration are the values of the
12969 underlying type in the range bmin to bmax, where bmin and bmax are,
12970 respectively, the smallest and largest values of the smallest bit-
12971 field that can store emin and emax. */
12973 /* The middle-end currently assumes that types with TYPE_PRECISION
12974 narrower than their underlying type are suitably zero or sign
12975 extended to fill their mode. Similarly, it assumes that the front
12976 end assures that a value of a particular type must be within
12977 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
12979 We used to set these fields based on bmin and bmax, but that led
12980 to invalid assumptions like optimizing away bounds checking. So
12981 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
12982 TYPE_MAX_VALUE to the values for the mode above and only restrict
12983 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
12984 ENUM_UNDERLYING_TYPE (enumtype
)
12985 = build_distinct_type_copy (underlying_type
);
12986 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype
)) = precision
;
12987 set_min_and_max_values_for_integral_type
12988 (ENUM_UNDERLYING_TYPE (enumtype
), precision
, sgn
);
12990 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
12991 if (flag_strict_enums
)
12992 set_min_and_max_values_for_integral_type (enumtype
, precision
, sgn
);
12995 underlying_type
= ENUM_UNDERLYING_TYPE (enumtype
);
12997 /* Convert each of the enumerators to the type of the underlying
12998 type of the enumeration. */
12999 for (values
= TYPE_VALUES (enumtype
); values
; values
= TREE_CHAIN (values
))
13001 location_t saved_location
;
13003 decl
= TREE_VALUE (values
);
13004 saved_location
= input_location
;
13005 input_location
= DECL_SOURCE_LOCATION (decl
);
13006 if (fixed_underlying_type_p
)
13007 /* If the enumeration type has a fixed underlying type, we
13008 already checked all of the enumerator values. */
13009 value
= DECL_INITIAL (decl
);
13011 value
= perform_implicit_conversion (underlying_type
,
13012 DECL_INITIAL (decl
),
13013 tf_warning_or_error
);
13014 input_location
= saved_location
;
13016 /* Do not clobber shared ints. */
13017 value
= copy_node (value
);
13019 TREE_TYPE (value
) = enumtype
;
13020 DECL_INITIAL (decl
) = value
;
13023 /* Fix up all variant types of this enum type. */
13024 for (t
= TYPE_MAIN_VARIANT (enumtype
); t
; t
= TYPE_NEXT_VARIANT (t
))
13025 TYPE_VALUES (t
) = TYPE_VALUES (enumtype
);
13027 if (at_class_scope_p ()
13028 && COMPLETE_TYPE_P (current_class_type
)
13029 && UNSCOPED_ENUM_P (enumtype
))
13030 insert_late_enum_def_into_classtype_sorted_fields (enumtype
,
13031 current_class_type
);
13033 /* Finish debugging output for this type. */
13034 rest_of_type_compilation (enumtype
, namespace_bindings_p ());
13037 /* Finishes the enum type. This is called only the first time an
13038 enumeration is seen, be it opaque or odinary.
13039 ENUMTYPE is the type object. */
13042 finish_enum (tree enumtype
)
13044 if (processing_template_decl
)
13046 if (at_function_scope_p ())
13047 add_stmt (build_min (TAG_DEFN
, enumtype
));
13051 /* If this is a forward declaration, there should not be any variants,
13052 though we can get a variant in the middle of an enum-specifier with
13053 wacky code like 'enum E { e = sizeof(const E*) };' */
13054 gcc_assert (enumtype
== TYPE_MAIN_VARIANT (enumtype
)
13055 && (TYPE_VALUES (enumtype
)
13056 || !TYPE_NEXT_VARIANT (enumtype
)));
13059 /* Build and install a CONST_DECL for an enumeration constant of the
13060 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
13061 Apply ATTRIBUTES if available. LOC is the location of NAME.
13062 Assignment of sequential values by default is handled here. */
13065 build_enumerator (tree name
, tree value
, tree enumtype
, tree attributes
,
13072 /* scalar_constant_value will pull out this expression, so make sure
13073 it's folded as appropriate. */
13074 if (processing_template_decl
)
13075 value
= fold_non_dependent_expr (value
);
13077 /* If the VALUE was erroneous, pretend it wasn't there; that will
13078 result in the enum being assigned the next value in sequence. */
13079 if (value
== error_mark_node
)
13082 /* Remove no-op casts from the value. */
13084 STRIP_TYPE_NOPS (value
);
13086 if (! processing_template_decl
)
13088 /* Validate and default VALUE. */
13089 if (value
!= NULL_TREE
)
13091 if (!ENUM_UNDERLYING_TYPE (enumtype
))
13093 tree tmp_value
= build_expr_type_conversion (WANT_INT
| WANT_ENUM
,
13098 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
13099 (TREE_TYPE (value
)))
13100 value
= perform_implicit_conversion_flags
13101 (ENUM_UNDERLYING_TYPE (enumtype
), value
, tf_warning_or_error
,
13102 LOOKUP_IMPLICIT
| LOOKUP_NO_NARROWING
);
13104 if (value
== error_mark_node
)
13107 if (value
!= NULL_TREE
)
13109 value
= cxx_constant_value (value
);
13111 if (TREE_CODE (value
) != INTEGER_CST
13112 || ! INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (value
)))
13114 error ("enumerator value for %qD is not an integer constant",
13121 /* Default based on previous value. */
13122 if (value
== NULL_TREE
)
13124 if (TYPE_VALUES (enumtype
))
13129 /* C++03 7.2/4: If no initializer is specified for the first
13130 enumerator, the type is an unspecified integral
13131 type. Otherwise the type is the same as the type of the
13132 initializing value of the preceding enumerator unless the
13133 incremented value is not representable in that type, in
13134 which case the type is an unspecified integral type
13135 sufficient to contain the incremented value. */
13136 prev_value
= DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype
)));
13137 if (error_operand_p (prev_value
))
13138 value
= error_mark_node
;
13141 tree type
= TREE_TYPE (prev_value
);
13142 signop sgn
= TYPE_SIGN (type
);
13143 widest_int wi
= wi::add (wi::to_widest (prev_value
), 1, sgn
,
13147 bool pos
= !wi::neg_p (wi
, sgn
);
13148 if (!wi::fits_to_tree_p (wi
, type
))
13151 for (itk
= itk_int
; itk
!= itk_none
; itk
++)
13153 type
= integer_types
[itk
];
13154 if (type
!= NULL_TREE
13155 && (pos
|| !TYPE_UNSIGNED (type
))
13156 && wi::fits_to_tree_p (wi
, type
))
13159 if (type
&& cxx_dialect
< cxx11
13160 && itk
> itk_unsigned_long
)
13161 pedwarn (input_location
, OPT_Wlong_long
, pos
? "\
13162 incremented enumerator value is too large for %<unsigned long%>" : "\
13163 incremented enumerator value is too large for %<long%>");
13165 if (type
== NULL_TREE
)
13168 value
= wide_int_to_tree (type
, wi
);
13173 error ("overflow in enumeration values at %qD", name
);
13174 value
= error_mark_node
;
13179 value
= integer_zero_node
;
13182 /* Remove no-op casts from the value. */
13183 STRIP_TYPE_NOPS (value
);
13185 /* If the underlying type of the enum is fixed, check whether
13186 the enumerator values fits in the underlying type. If it
13187 does not fit, the program is ill-formed [C++0x dcl.enum]. */
13188 if (ENUM_UNDERLYING_TYPE (enumtype
)
13190 && TREE_CODE (value
) == INTEGER_CST
)
13192 if (!int_fits_type_p (value
, ENUM_UNDERLYING_TYPE (enumtype
)))
13193 error ("enumerator value %E is outside the range of underlying "
13194 "type %<%T%>", value
, ENUM_UNDERLYING_TYPE (enumtype
));
13196 /* Convert the value to the appropriate type. */
13197 value
= convert (ENUM_UNDERLYING_TYPE (enumtype
), value
);
13201 /* C++ associates enums with global, function, or class declarations. */
13202 context
= current_scope ();
13204 /* Build the actual enumeration constant. Note that the enumeration
13205 constants have the underlying type of the enum (if it is fixed)
13206 or the type of their initializer (if the underlying type of the
13207 enum is not fixed):
13211 If the underlying type is fixed, the type of each enumerator
13212 prior to the closing brace is the underlying type; if the
13213 initializing value of an enumerator cannot be represented by
13214 the underlying type, the program is ill-formed. If the
13215 underlying type is not fixed, the type of each enumerator is
13216 the type of its initializing value.
13218 If the underlying type is not fixed, it will be computed by
13219 finish_enum and we will reset the type of this enumerator. Of
13220 course, if we're processing a template, there may be no value. */
13221 type
= value
? TREE_TYPE (value
) : NULL_TREE
;
13223 decl
= build_decl (loc
, CONST_DECL
, name
, type
);
13225 DECL_CONTEXT (decl
) = enumtype
;
13226 TREE_CONSTANT (decl
) = 1;
13227 TREE_READONLY (decl
) = 1;
13228 DECL_INITIAL (decl
) = value
;
13231 cplus_decl_attributes (&decl
, attributes
, 0);
13233 if (context
&& context
== current_class_type
&& !SCOPED_ENUM_P (enumtype
))
13234 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
13235 on the TYPE_FIELDS list for `S'. (That's so that you can say
13236 things like `S::i' later.) */
13237 finish_member_declaration (decl
);
13241 /* Add this enumeration constant to the list for this type. */
13242 TYPE_VALUES (enumtype
) = tree_cons (name
, decl
, TYPE_VALUES (enumtype
));
13245 /* Look for an enumerator with the given NAME within the enumeration
13246 type ENUMTYPE. This routine is used primarily for qualified name
13247 lookup into an enumerator in C++0x, e.g.,
13249 enum class Color { Red, Green, Blue };
13251 Color color = Color::Red;
13253 Returns the value corresponding to the enumerator, or
13254 NULL_TREE if no such enumerator was found. */
13256 lookup_enumerator (tree enumtype
, tree name
)
13259 gcc_assert (enumtype
&& TREE_CODE (enumtype
) == ENUMERAL_TYPE
);
13261 e
= purpose_member (name
, TYPE_VALUES (enumtype
));
13262 return e
? TREE_VALUE (e
) : NULL_TREE
;
13266 /* We're defining DECL. Make sure that its type is OK. */
13269 check_function_type (tree decl
, tree current_function_parms
)
13271 tree fntype
= TREE_TYPE (decl
);
13272 tree return_type
= complete_type (TREE_TYPE (fntype
));
13274 /* In a function definition, arg types must be complete. */
13275 require_complete_types_for_parms (current_function_parms
);
13277 if (dependent_type_p (return_type
)
13278 || type_uses_auto (return_type
))
13280 if (!COMPLETE_OR_VOID_TYPE_P (return_type
)
13281 || (TYPE_FOR_JAVA (return_type
) && MAYBE_CLASS_TYPE_P (return_type
)))
13283 tree args
= TYPE_ARG_TYPES (fntype
);
13285 if (!COMPLETE_OR_VOID_TYPE_P (return_type
))
13286 error ("return type %q#T is incomplete", return_type
);
13288 error ("return type has Java class type %q#T", return_type
);
13290 /* Make it return void instead. */
13291 if (TREE_CODE (fntype
) == METHOD_TYPE
)
13292 fntype
= build_method_type_directly (TREE_TYPE (TREE_VALUE (args
)),
13294 TREE_CHAIN (args
));
13296 fntype
= build_function_type (void_type_node
, args
);
13298 = build_exception_variant (fntype
,
13299 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl
)));
13300 fntype
= (cp_build_type_attribute_variant
13301 (fntype
, TYPE_ATTRIBUTES (TREE_TYPE (decl
))));
13302 TREE_TYPE (decl
) = fntype
;
13305 abstract_virtuals_error (decl
, TREE_TYPE (fntype
));
13308 /* Create the FUNCTION_DECL for a function definition.
13309 DECLSPECS and DECLARATOR are the parts of the declaration;
13310 they describe the function's name and the type it returns,
13311 but twisted together in a fashion that parallels the syntax of C.
13313 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
13314 DECLARATOR is really the DECL for the function we are about to
13315 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
13316 indicating that the function is an inline defined in-class.
13318 This function creates a binding context for the function body
13319 as well as setting up the FUNCTION_DECL in current_function_decl.
13321 For C++, we must first check whether that datum makes any sense.
13322 For example, "class A local_a(1,2);" means that variable local_a
13323 is an aggregate of type A, which should have a constructor
13324 applied to it with the argument list [1, 2].
13326 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
13327 or may be a BLOCK if the function has been defined previously
13328 in this translation unit. On exit, DECL_INITIAL (decl1) will be
13329 error_mark_node if the function has never been defined, or
13330 a BLOCK if the function has been defined somewhere. */
13333 start_preparsed_function (tree decl1
, tree attrs
, int flags
)
13335 tree ctype
= NULL_TREE
;
13338 int doing_friend
= 0;
13339 cp_binding_level
*bl
;
13340 tree current_function_parms
;
13341 struct c_fileinfo
*finfo
13342 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1
)));
13343 bool honor_interface
;
13345 /* Sanity check. */
13346 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node
)));
13347 gcc_assert (TREE_CHAIN (void_list_node
) == NULL_TREE
);
13349 fntype
= TREE_TYPE (decl1
);
13350 if (TREE_CODE (fntype
) == METHOD_TYPE
)
13351 ctype
= TYPE_METHOD_BASETYPE (fntype
);
13353 /* ISO C++ 11.4/5. A friend function defined in a class is in
13354 the (lexical) scope of the class in which it is defined. */
13355 if (!ctype
&& DECL_FRIEND_P (decl1
))
13357 ctype
= DECL_FRIEND_CONTEXT (decl1
);
13359 /* CTYPE could be null here if we're dealing with a template;
13360 for example, `inline friend float foo()' inside a template
13361 will have no CTYPE set. */
13362 if (ctype
&& TREE_CODE (ctype
) != RECORD_TYPE
)
13368 if (DECL_DECLARED_INLINE_P (decl1
)
13369 && lookup_attribute ("noinline", attrs
))
13370 warning (0, "inline function %q+D given attribute noinline", decl1
);
13372 /* Handle gnu_inline attribute. */
13373 if (GNU_INLINE_P (decl1
))
13375 DECL_EXTERNAL (decl1
) = 1;
13376 DECL_NOT_REALLY_EXTERN (decl1
) = 0;
13377 DECL_INTERFACE_KNOWN (decl1
) = 1;
13378 DECL_DISREGARD_INLINE_LIMITS (decl1
) = 1;
13381 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1
))
13382 /* This is a constructor, we must ensure that any default args
13383 introduced by this definition are propagated to the clones
13384 now. The clones are used directly in overload resolution. */
13385 adjust_clone_args (decl1
);
13387 /* Sometimes we don't notice that a function is a static member, and
13388 build a METHOD_TYPE for it. Fix that up now. */
13389 gcc_assert (!(ctype
!= NULL_TREE
&& DECL_STATIC_FUNCTION_P (decl1
)
13390 && TREE_CODE (TREE_TYPE (decl1
)) == METHOD_TYPE
));
13392 /* Set up current_class_type, and enter the scope of the class, if
13395 push_nested_class (ctype
);
13396 else if (DECL_STATIC_FUNCTION_P (decl1
))
13397 push_nested_class (DECL_CONTEXT (decl1
));
13399 /* Now that we have entered the scope of the class, we must restore
13400 the bindings for any template parameters surrounding DECL1, if it
13401 is an inline member template. (Order is important; consider the
13402 case where a template parameter has the same name as a field of
13403 the class.) It is not until after this point that
13404 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
13405 if (flags
& SF_INCLASS_INLINE
)
13406 maybe_begin_member_template_processing (decl1
);
13408 /* Effective C++ rule 15. */
13410 && DECL_OVERLOADED_OPERATOR_P (decl1
) == NOP_EXPR
13411 && VOID_TYPE_P (TREE_TYPE (fntype
)))
13412 warning (OPT_Weffc__
, "%<operator=%> should return a reference to %<*this%>");
13414 /* Make the init_value nonzero so pushdecl knows this is not tentative.
13415 error_mark_node is replaced below (in poplevel) with the BLOCK. */
13416 if (!DECL_INITIAL (decl1
))
13417 DECL_INITIAL (decl1
) = error_mark_node
;
13419 /* This function exists in static storage.
13420 (This does not mean `static' in the C sense!) */
13421 TREE_STATIC (decl1
) = 1;
13423 /* We must call push_template_decl after current_class_type is set
13424 up. (If we are processing inline definitions after exiting a
13425 class scope, current_class_type will be NULL_TREE until set above
13426 by push_nested_class.) */
13427 if (processing_template_decl
)
13429 tree newdecl1
= push_template_decl (decl1
);
13430 if (newdecl1
== error_mark_node
)
13432 if (ctype
|| DECL_STATIC_FUNCTION_P (decl1
))
13433 pop_nested_class ();
13439 /* We are now in the scope of the function being defined. */
13440 current_function_decl
= decl1
;
13442 /* Save the parm names or decls from this function's declarator
13443 where store_parm_decls will find them. */
13444 current_function_parms
= DECL_ARGUMENTS (decl1
);
13446 /* Make sure the parameter and return types are reasonable. When
13447 you declare a function, these types can be incomplete, but they
13448 must be complete when you define the function. */
13449 check_function_type (decl1
, current_function_parms
);
13451 /* Build the return declaration for the function. */
13452 restype
= TREE_TYPE (fntype
);
13454 if (DECL_RESULT (decl1
) == NULL_TREE
)
13458 resdecl
= build_decl (input_location
, RESULT_DECL
, 0, restype
);
13459 DECL_ARTIFICIAL (resdecl
) = 1;
13460 DECL_IGNORED_P (resdecl
) = 1;
13461 DECL_RESULT (decl1
) = resdecl
;
13463 cp_apply_type_quals_to_decl (cp_type_quals (restype
), resdecl
);
13466 /* Let the user know we're compiling this function. */
13467 announce_function (decl1
);
13469 /* Record the decl so that the function name is defined.
13470 If we already have a decl for this name, and it is a FUNCTION_DECL,
13471 use the old decl. */
13472 if (!processing_template_decl
&& !(flags
& SF_PRE_PARSED
))
13474 /* A specialization is not used to guide overload resolution. */
13475 if (!DECL_FUNCTION_MEMBER_P (decl1
)
13476 && !(DECL_USE_TEMPLATE (decl1
) &&
13477 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1
))))
13479 tree olddecl
= pushdecl (decl1
);
13481 if (olddecl
== error_mark_node
)
13482 /* If something went wrong when registering the declaration,
13483 use DECL1; we have to have a FUNCTION_DECL to use when
13484 parsing the body of the function. */
13488 /* Otherwise, OLDDECL is either a previous declaration
13489 of the same function or DECL1 itself. */
13491 if (warn_missing_declarations
13492 && olddecl
== decl1
13493 && !DECL_MAIN_P (decl1
)
13494 && TREE_PUBLIC (decl1
)
13495 && !DECL_DECLARED_INLINE_P (decl1
))
13499 /* Check whether DECL1 is in an anonymous
13501 for (context
= DECL_CONTEXT (decl1
);
13503 context
= DECL_CONTEXT (context
))
13505 if (TREE_CODE (context
) == NAMESPACE_DECL
13506 && DECL_NAME (context
) == NULL_TREE
)
13510 if (context
== NULL
)
13511 warning (OPT_Wmissing_declarations
,
13512 "no previous declaration for %q+D", decl1
);
13520 /* We need to set the DECL_CONTEXT. */
13521 if (!DECL_CONTEXT (decl1
) && DECL_TEMPLATE_INFO (decl1
))
13522 DECL_CONTEXT (decl1
) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1
));
13524 fntype
= TREE_TYPE (decl1
);
13525 restype
= TREE_TYPE (fntype
);
13527 /* If #pragma weak applies, mark the decl appropriately now.
13528 The pragma only applies to global functions. Because
13529 determining whether or not the #pragma applies involves
13530 computing the mangled name for the declaration, we cannot
13531 apply the pragma until after we have merged this declaration
13532 with any previous declarations; if the original declaration
13533 has a linkage specification, that specification applies to
13534 the definition as well, and may affect the mangled name. */
13535 if (DECL_FILE_SCOPE_P (decl1
))
13536 maybe_apply_pragma_weak (decl1
);
13539 /* Reset this in case the call to pushdecl changed it. */
13540 current_function_decl
= decl1
;
13542 gcc_assert (DECL_INITIAL (decl1
));
13544 /* This function may already have been parsed, in which case just
13545 return; our caller will skip over the body without parsing. */
13546 if (DECL_INITIAL (decl1
) != error_mark_node
)
13549 /* Initialize RTL machinery. We cannot do this until
13550 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
13551 even when processing a template; this is how we get
13552 CFUN set up, and our per-function variables initialized.
13553 FIXME factor out the non-RTL stuff. */
13554 bl
= current_binding_level
;
13555 allocate_struct_function (decl1
, processing_template_decl
);
13557 /* Initialize the language data structures. Whenever we start
13558 a new function, we destroy temporaries in the usual way. */
13559 cfun
->language
= ggc_cleared_alloc
<language_function
> ();
13560 current_stmt_tree ()->stmts_are_full_exprs_p
= 1;
13561 current_binding_level
= bl
;
13563 if (!processing_template_decl
&& type_uses_auto (restype
))
13565 FNDECL_USED_AUTO (decl1
) = true;
13566 current_function_auto_return_pattern
= restype
;
13569 /* Start the statement-tree, start the tree now. */
13570 DECL_SAVED_TREE (decl1
) = push_stmt_list ();
13572 /* If we are (erroneously) defining a function that we have already
13573 defined before, wipe out what we knew before. */
13574 if (!DECL_PENDING_INLINE_P (decl1
))
13575 DECL_SAVED_FUNCTION_DATA (decl1
) = NULL
;
13577 if (ctype
&& !doing_friend
&& !DECL_STATIC_FUNCTION_P (decl1
))
13579 /* We know that this was set up by `grokclassfn'. We do not
13580 wait until `store_parm_decls', since evil parse errors may
13581 never get us to that point. Here we keep the consistency
13582 between `current_class_type' and `current_class_ptr'. */
13583 tree t
= DECL_ARGUMENTS (decl1
);
13585 gcc_assert (t
!= NULL_TREE
&& TREE_CODE (t
) == PARM_DECL
);
13586 gcc_assert (TYPE_PTR_P (TREE_TYPE (t
)));
13588 cp_function_chain
->x_current_class_ref
13589 = cp_build_indirect_ref (t
, RO_NULL
, tf_warning_or_error
);
13590 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
13591 cp_function_chain
->x_current_class_ptr
= t
;
13593 /* Constructors and destructors need to know whether they're "in
13594 charge" of initializing virtual base classes. */
13595 t
= DECL_CHAIN (t
);
13596 if (DECL_HAS_IN_CHARGE_PARM_P (decl1
))
13598 current_in_charge_parm
= t
;
13599 t
= DECL_CHAIN (t
);
13601 if (DECL_HAS_VTT_PARM_P (decl1
))
13603 gcc_assert (DECL_NAME (t
) == vtt_parm_identifier
);
13604 current_vtt_parm
= t
;
13608 honor_interface
= (!DECL_TEMPLATE_INSTANTIATION (decl1
)
13609 /* Implicitly-defined methods (like the
13610 destructor for a class in which no destructor
13611 is explicitly declared) must not be defined
13612 until their definition is needed. So, we
13613 ignore interface specifications for
13614 compiler-generated functions. */
13615 && !DECL_ARTIFICIAL (decl1
));
13617 if (processing_template_decl
)
13618 /* Don't mess with interface flags. */;
13619 else if (DECL_INTERFACE_KNOWN (decl1
))
13621 tree ctx
= decl_function_context (decl1
);
13623 if (DECL_NOT_REALLY_EXTERN (decl1
))
13624 DECL_EXTERNAL (decl1
) = 0;
13626 if (ctx
!= NULL_TREE
&& vague_linkage_p (ctx
))
13627 /* This is a function in a local class in an extern inline
13628 or template function. */
13629 comdat_linkage (decl1
);
13631 /* If this function belongs to an interface, it is public.
13632 If it belongs to someone else's interface, it is also external.
13633 This only affects inlines and template instantiations. */
13634 else if (!finfo
->interface_unknown
&& honor_interface
)
13636 if (DECL_DECLARED_INLINE_P (decl1
)
13637 || DECL_TEMPLATE_INSTANTIATION (decl1
))
13639 DECL_EXTERNAL (decl1
)
13640 = (finfo
->interface_only
13641 || (DECL_DECLARED_INLINE_P (decl1
)
13642 && ! flag_implement_inlines
13643 && !DECL_VINDEX (decl1
)));
13645 /* For WIN32 we also want to put these in linkonce sections. */
13646 maybe_make_one_only (decl1
);
13649 DECL_EXTERNAL (decl1
) = 0;
13650 DECL_INTERFACE_KNOWN (decl1
) = 1;
13651 /* If this function is in an interface implemented in this file,
13652 make sure that the back end knows to emit this function
13654 if (!DECL_EXTERNAL (decl1
))
13655 mark_needed (decl1
);
13657 else if (finfo
->interface_unknown
&& finfo
->interface_only
13658 && honor_interface
)
13660 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
13661 interface, we will have both finfo->interface_unknown and
13662 finfo->interface_only set. In that case, we don't want to
13663 use the normal heuristics because someone will supply a
13664 #pragma implementation elsewhere, and deducing it here would
13665 produce a conflict. */
13666 comdat_linkage (decl1
);
13667 DECL_EXTERNAL (decl1
) = 0;
13668 DECL_INTERFACE_KNOWN (decl1
) = 1;
13669 DECL_DEFER_OUTPUT (decl1
) = 1;
13673 /* This is a definition, not a reference.
13674 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
13675 if (!GNU_INLINE_P (decl1
))
13676 DECL_EXTERNAL (decl1
) = 0;
13678 if ((DECL_DECLARED_INLINE_P (decl1
)
13679 || DECL_TEMPLATE_INSTANTIATION (decl1
))
13680 && ! DECL_INTERFACE_KNOWN (decl1
))
13681 DECL_DEFER_OUTPUT (decl1
) = 1;
13683 DECL_INTERFACE_KNOWN (decl1
) = 1;
13686 /* Determine the ELF visibility attribute for the function. We must not
13687 do this before calling "pushdecl", as we must allow "duplicate_decls"
13688 to merge any attributes appropriately. We also need to wait until
13690 if (!DECL_CLONED_FUNCTION_P (decl1
))
13691 determine_visibility (decl1
);
13693 if (!processing_template_decl
)
13694 maybe_instantiate_noexcept (decl1
);
13696 begin_scope (sk_function_parms
, decl1
);
13700 if (DECL_DESTRUCTOR_P (decl1
)
13701 || (DECL_CONSTRUCTOR_P (decl1
)
13702 && targetm
.cxx
.cdtor_returns_this ()))
13704 cdtor_label
= create_artificial_label (input_location
);
13707 start_fname_decls ();
13709 store_parm_decls (current_function_parms
);
13711 if (!processing_template_decl
13712 && flag_lifetime_dse
&& DECL_CONSTRUCTOR_P (decl1
))
13714 /* Insert a clobber to let the back end know that the object storage
13715 is dead when we enter the constructor. */
13716 tree btype
= CLASSTYPE_AS_BASE (current_class_type
);
13717 tree clobber
= build_constructor (btype
, NULL
);
13718 TREE_THIS_VOLATILE (clobber
) = true;
13719 tree bref
= build_nop (build_reference_type (btype
), current_class_ptr
);
13720 bref
= convert_from_reference (bref
);
13721 tree exprstmt
= build2 (MODIFY_EXPR
, btype
, bref
, clobber
);
13722 finish_expr_stmt (exprstmt
);
13729 /* Like start_preparsed_function, except that instead of a
13730 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
13732 Returns true on success. If the DECLARATOR is not suitable
13733 for a function, we return false, which tells the parser to
13734 skip the entire function. */
13737 start_function (cp_decl_specifier_seq
*declspecs
,
13738 const cp_declarator
*declarator
,
13743 decl1
= grokdeclarator (declarator
, declspecs
, FUNCDEF
, 1, &attrs
);
13744 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION
, decl1
);
13745 if (decl1
== error_mark_node
)
13747 /* If the declarator is not suitable for a function definition,
13748 cause a syntax error. */
13749 if (decl1
== NULL_TREE
|| TREE_CODE (decl1
) != FUNCTION_DECL
)
13751 error ("invalid function declaration");
13755 if (DECL_MAIN_P (decl1
))
13756 /* main must return int. grokfndecl should have corrected it
13757 (and issued a diagnostic) if the user got it wrong. */
13758 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1
)),
13759 integer_type_node
));
13761 return start_preparsed_function (decl1
, attrs
, /*flags=*/SF_DEFAULT
);
13764 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
13768 use_eh_spec_block (tree fn
)
13770 return (flag_exceptions
&& flag_enforce_eh_specs
13771 && !processing_template_decl
13772 && !type_throw_all_p (TREE_TYPE (fn
))
13773 /* We insert the EH_SPEC_BLOCK only in the original
13774 function; then, it is copied automatically to the
13776 && !DECL_CLONED_FUNCTION_P (fn
)
13777 /* Implicitly-generated constructors and destructors have
13778 exception specifications. However, those specifications
13779 are the union of the possible exceptions specified by the
13780 constructors/destructors for bases and members, so no
13781 unallowed exception will ever reach this function. By
13782 not creating the EH_SPEC_BLOCK we save a little memory,
13783 and we avoid spurious warnings about unreachable
13785 && !DECL_DEFAULTED_FN (fn
));
13788 /* Store the parameter declarations into the current function declaration.
13789 This is called after parsing the parameter declarations, before
13790 digesting the body of the function.
13792 Also install to binding contour return value identifier, if any. */
13795 store_parm_decls (tree current_function_parms
)
13797 tree fndecl
= current_function_decl
;
13800 /* This is a chain of any other decls that came in among the parm
13801 declarations. If a parm is declared with enum {foo, bar} x;
13802 then CONST_DECLs for foo and bar are put here. */
13803 tree nonparms
= NULL_TREE
;
13805 if (current_function_parms
)
13807 /* This case is when the function was defined with an ANSI prototype.
13808 The parms already have decls, so we need not do anything here
13809 except record them as in effect
13810 and complain if any redundant old-style parm decls were written. */
13812 tree specparms
= current_function_parms
;
13815 /* Must clear this because it might contain TYPE_DECLs declared
13817 current_binding_level
->names
= NULL
;
13819 /* If we're doing semantic analysis, then we'll call pushdecl
13820 for each of these. We must do them in reverse order so that
13821 they end in the correct forward order. */
13822 specparms
= nreverse (specparms
);
13824 for (parm
= specparms
; parm
; parm
= next
)
13826 next
= DECL_CHAIN (parm
);
13827 if (TREE_CODE (parm
) == PARM_DECL
)
13829 if (DECL_NAME (parm
) == NULL_TREE
13830 || !VOID_TYPE_P (parm
))
13833 error ("parameter %qD declared void", parm
);
13837 /* If we find an enum constant or a type tag,
13838 put it aside for the moment. */
13839 TREE_CHAIN (parm
) = NULL_TREE
;
13840 nonparms
= chainon (nonparms
, parm
);
13844 /* Get the decls in their original chain order and record in the
13845 function. This is all and only the PARM_DECLs that were
13846 pushed into scope by the loop above. */
13847 DECL_ARGUMENTS (fndecl
) = getdecls ();
13850 DECL_ARGUMENTS (fndecl
) = NULL_TREE
;
13852 /* Now store the final chain of decls for the arguments
13853 as the decl-chain of the current lexical scope.
13854 Put the enumerators in as well, at the front so that
13855 DECL_ARGUMENTS is not modified. */
13856 current_binding_level
->names
= chainon (nonparms
, DECL_ARGUMENTS (fndecl
));
13858 if (use_eh_spec_block (current_function_decl
))
13859 current_eh_spec_block
= begin_eh_spec_block ();
13863 /* We have finished doing semantic analysis on DECL, but have not yet
13864 generated RTL for its body. Save away our current state, so that
13865 when we want to generate RTL later we know what to do. */
13868 save_function_data (tree decl
)
13870 struct language_function
*f
;
13872 /* Save the language-specific per-function data so that we can
13873 get it back when we really expand this function. */
13874 gcc_assert (!DECL_PENDING_INLINE_P (decl
));
13877 f
= ggc_alloc
<language_function
> ();
13878 memcpy (f
, cp_function_chain
, sizeof (struct language_function
));
13879 DECL_SAVED_FUNCTION_DATA (decl
) = f
;
13881 /* Clear out the bits we don't need. */
13882 f
->base
.x_stmt_tree
.x_cur_stmt_list
= NULL
;
13883 f
->bindings
= NULL
;
13884 f
->x_local_names
= NULL
;
13885 f
->base
.local_typedefs
= NULL
;
13889 /* Set the return value of the constructor (if present). */
13892 finish_constructor_body (void)
13897 if (targetm
.cxx
.cdtor_returns_this ()
13898 && (! TYPE_FOR_JAVA (current_class_type
)))
13900 /* Any return from a constructor will end up here. */
13901 add_stmt (build_stmt (input_location
, LABEL_EXPR
, cdtor_label
));
13903 val
= DECL_ARGUMENTS (current_function_decl
);
13904 val
= build2 (MODIFY_EXPR
, TREE_TYPE (val
),
13905 DECL_RESULT (current_function_decl
), val
);
13906 /* Return the address of the object. */
13907 exprstmt
= build_stmt (input_location
, RETURN_EXPR
, val
);
13908 add_stmt (exprstmt
);
13912 /* Do all the processing for the beginning of a destructor; set up the
13913 vtable pointers and cleanups for bases and members. */
13916 begin_destructor_body (void)
13918 tree compound_stmt
;
13920 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
13921 issued an error message. We still want to try to process the
13922 body of the function, but initialize_vtbl_ptrs will crash if
13923 TYPE_BINFO is NULL. */
13924 if (COMPLETE_TYPE_P (current_class_type
))
13926 compound_stmt
= begin_compound_stmt (0);
13927 /* Make all virtual function table pointers in non-virtual base
13928 classes point to CURRENT_CLASS_TYPE's virtual function
13930 initialize_vtbl_ptrs (current_class_ptr
);
13931 finish_compound_stmt (compound_stmt
);
13933 if (flag_lifetime_dse
)
13935 /* Insert a cleanup to let the back end know that the object is dead
13936 when we exit the destructor, either normally or via exception. */
13937 tree btype
= CLASSTYPE_AS_BASE (current_class_type
);
13938 tree clobber
= build_constructor (btype
, NULL
);
13939 TREE_THIS_VOLATILE (clobber
) = true;
13940 tree bref
= build_nop (build_reference_type (btype
),
13941 current_class_ptr
);
13942 bref
= convert_from_reference (bref
);
13943 tree exprstmt
= build2 (MODIFY_EXPR
, btype
, bref
, clobber
);
13944 finish_decl_cleanup (NULL_TREE
, exprstmt
);
13947 /* And insert cleanups for our bases and members so that they
13948 will be properly destroyed if we throw. */
13949 push_base_cleanups ();
13953 /* At the end of every destructor we generate code to delete the object if
13954 necessary. Do that now. */
13957 finish_destructor_body (void)
13961 /* Any return from a destructor will end up here; that way all base
13962 and member cleanups will be run when the function returns. */
13963 add_stmt (build_stmt (input_location
, LABEL_EXPR
, cdtor_label
));
13965 /* In a virtual destructor, we must call delete. */
13966 if (DECL_VIRTUAL_P (current_function_decl
))
13969 tree virtual_size
= cxx_sizeof (current_class_type
);
13973 At the point of definition of a virtual destructor (including
13974 an implicit definition), non-placement operator delete shall
13975 be looked up in the scope of the destructor's class and if
13976 found shall be accessible and unambiguous. */
13977 exprstmt
= build_op_delete_call (DELETE_EXPR
, current_class_ptr
,
13979 /*global_p=*/false,
13980 /*placement=*/NULL_TREE
,
13981 /*alloc_fn=*/NULL_TREE
,
13982 tf_warning_or_error
);
13984 if_stmt
= begin_if_stmt ();
13985 finish_if_stmt_cond (build2 (BIT_AND_EXPR
, integer_type_node
,
13986 current_in_charge_parm
,
13989 finish_expr_stmt (exprstmt
);
13990 finish_then_clause (if_stmt
);
13991 finish_if_stmt (if_stmt
);
13994 if (targetm
.cxx
.cdtor_returns_this ())
13998 val
= DECL_ARGUMENTS (current_function_decl
);
13999 val
= build2 (MODIFY_EXPR
, TREE_TYPE (val
),
14000 DECL_RESULT (current_function_decl
), val
);
14001 /* Return the address of the object. */
14002 exprstmt
= build_stmt (input_location
, RETURN_EXPR
, val
);
14003 add_stmt (exprstmt
);
14007 /* Do the necessary processing for the beginning of a function body, which
14008 in this case includes member-initializers, but not the catch clauses of
14009 a function-try-block. Currently, this means opening a binding level
14010 for the member-initializers (in a ctor), member cleanups (in a dtor),
14011 and capture proxies (in a lambda operator()). */
14014 begin_function_body (void)
14018 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl
))
14021 if (processing_template_decl
)
14022 /* Do nothing now. */;
14024 /* Always keep the BLOCK node associated with the outermost pair of
14025 curly braces of a function. These are needed for correct
14026 operation of dwarfout.c. */
14027 keep_next_level (true);
14029 stmt
= begin_compound_stmt (BCS_FN_BODY
);
14031 if (processing_template_decl
)
14032 /* Do nothing now. */;
14033 else if (DECL_DESTRUCTOR_P (current_function_decl
))
14034 begin_destructor_body ();
14039 /* Do the processing for the end of a function body. Currently, this means
14040 closing out the cleanups for fully-constructed bases and members, and in
14041 the case of the destructor, deleting the object if desired. Again, this
14042 is only meaningful for [cd]tors, since they are the only functions where
14043 there is a significant distinction between the main body and any
14044 function catch clauses. Handling, say, main() return semantics here
14045 would be wrong, as flowing off the end of a function catch clause for
14046 main() would also need to return 0. */
14049 finish_function_body (tree compstmt
)
14051 if (compstmt
== NULL_TREE
)
14054 /* Close the block. */
14055 finish_compound_stmt (compstmt
);
14057 if (processing_template_decl
)
14058 /* Do nothing now. */;
14059 else if (DECL_CONSTRUCTOR_P (current_function_decl
))
14060 finish_constructor_body ();
14061 else if (DECL_DESTRUCTOR_P (current_function_decl
))
14062 finish_destructor_body ();
14065 /* Given a function, returns the BLOCK corresponding to the outermost level
14066 of curly braces, skipping the artificial block created for constructor
14070 outer_curly_brace_block (tree fndecl
)
14072 tree block
= DECL_INITIAL (fndecl
);
14073 if (BLOCK_OUTER_CURLY_BRACE_P (block
))
14075 block
= BLOCK_SUBBLOCKS (block
);
14076 if (BLOCK_OUTER_CURLY_BRACE_P (block
))
14078 block
= BLOCK_SUBBLOCKS (block
);
14079 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block
));
14083 /* If FNDECL is a class's key method, add the class to the list of
14084 keyed classes that should be emitted. */
14087 record_key_method_defined (tree fndecl
)
14089 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl
)
14090 && DECL_VIRTUAL_P (fndecl
)
14091 && !processing_template_decl
)
14093 tree fnclass
= DECL_CONTEXT (fndecl
);
14094 if (fndecl
== CLASSTYPE_KEY_METHOD (fnclass
))
14095 keyed_classes
= tree_cons (NULL_TREE
, fnclass
, keyed_classes
);
14099 /* Subroutine of finish_function.
14100 Save the body of constexpr functions for possible
14101 future compile time evaluation. */
14104 maybe_save_function_definition (tree fun
)
14106 if (!processing_template_decl
14107 && DECL_DECLARED_CONSTEXPR_P (fun
)
14108 && !cp_function_chain
->invalid_constexpr
14109 && !DECL_CLONED_FUNCTION_P (fun
))
14110 register_constexpr_fundef (fun
, DECL_SAVED_TREE (fun
));
14113 /* Finish up a function declaration and compile that function
14114 all the way to assembler language output. The free the storage
14115 for the function definition.
14117 FLAGS is a bitwise or of the following values:
14119 We just finished processing the body of an in-class inline
14120 function definition. (This processing will have taken place
14121 after the class definition is complete.) */
14124 finish_function (int flags
)
14126 tree fndecl
= current_function_decl
;
14127 tree fntype
, ctype
= NULL_TREE
;
14128 int inclass_inline
= (flags
& 2) != 0;
14130 /* When we get some parse errors, we can end up without a
14131 current_function_decl, so cope. */
14132 if (fndecl
== NULL_TREE
)
14133 return error_mark_node
;
14135 if (c_dialect_objc ())
14136 objc_finish_function ();
14138 gcc_assert (!defer_mark_used_calls
);
14139 defer_mark_used_calls
= true;
14141 record_key_method_defined (fndecl
);
14143 fntype
= TREE_TYPE (fndecl
);
14145 /* TREE_READONLY (fndecl) = 1;
14146 This caused &foo to be of type ptr-to-const-function
14147 which then got a warning when stored in a ptr-to-function variable. */
14149 gcc_assert (building_stmt_list_p ());
14150 /* The current function is being defined, so its DECL_INITIAL should
14151 be set, and unless there's a multiple definition, it should be
14152 error_mark_node. */
14153 gcc_assert (DECL_INITIAL (fndecl
) == error_mark_node
);
14155 /* For a cloned function, we've already got all the code we need;
14156 there's no need to add any extra bits. */
14157 if (!DECL_CLONED_FUNCTION_P (fndecl
))
14159 /* Make it so that `main' always returns 0 by default. */
14160 if (DECL_MAIN_P (current_function_decl
))
14161 finish_return_stmt (integer_zero_node
);
14163 if (use_eh_spec_block (current_function_decl
))
14164 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
14165 (TREE_TYPE (current_function_decl
)),
14166 current_eh_spec_block
);
14169 /* If we're saving up tree structure, tie off the function now. */
14170 DECL_SAVED_TREE (fndecl
) = pop_stmt_list (DECL_SAVED_TREE (fndecl
));
14172 if (fn_contains_cilk_spawn_p (cfun
) && !processing_template_decl
)
14173 cfun
->cilk_frame_decl
= insert_cilk_frame (fndecl
);
14175 finish_fname_decls ();
14177 /* If this function can't throw any exceptions, remember that. */
14178 if (!processing_template_decl
14179 && !cp_function_chain
->can_throw
14180 && !flag_non_call_exceptions
14181 && !decl_replaceable_p (fndecl
))
14182 TREE_NOTHROW (fndecl
) = 1;
14184 /* This must come after expand_function_end because cleanups might
14185 have declarations (from inline functions) that need to go into
14186 this function's blocks. */
14188 /* If the current binding level isn't the outermost binding level
14189 for this function, either there is a bug, or we have experienced
14190 syntax errors and the statement tree is malformed. */
14191 if (current_binding_level
->kind
!= sk_function_parms
)
14193 /* Make sure we have already experienced errors. */
14194 gcc_assert (errorcount
);
14196 /* Throw away the broken statement tree and extra binding
14198 DECL_SAVED_TREE (fndecl
) = alloc_stmt_list ();
14200 while (current_binding_level
->kind
!= sk_function_parms
)
14202 if (current_binding_level
->kind
== sk_class
)
14203 pop_nested_class ();
14205 poplevel (0, 0, 0);
14208 poplevel (1, 0, 1);
14210 /* Statements should always be full-expressions at the outermost set
14211 of curly braces for a function. */
14212 gcc_assert (stmts_are_full_exprs_p ());
14214 /* If there are no return statements in a function with auto return type,
14215 the return type is void. But if the declared type is something like
14216 auto*, this is an error. */
14217 if (!processing_template_decl
&& FNDECL_USED_AUTO (fndecl
)
14218 && TREE_TYPE (fntype
) == current_function_auto_return_pattern
)
14220 if (!is_auto (current_function_auto_return_pattern
)
14221 && !current_function_returns_value
&& !current_function_returns_null
)
14223 error ("no return statements in function returning %qT",
14224 current_function_auto_return_pattern
);
14225 inform (input_location
, "only plain %<auto%> return type can be "
14226 "deduced to %<void%>");
14228 apply_deduced_return_type (fndecl
, void_type_node
);
14229 fntype
= TREE_TYPE (fndecl
);
14232 /* Save constexpr function body before it gets munged by
14233 the NRV transformation. */
14234 maybe_save_function_definition (fndecl
);
14236 /* Set up the named return value optimization, if we can. Candidate
14237 variables are selected in check_return_expr. */
14238 if (current_function_return_value
)
14240 tree r
= current_function_return_value
;
14243 if (r
!= error_mark_node
14244 /* This is only worth doing for fns that return in memory--and
14245 simpler, since we don't have to worry about promoted modes. */
14246 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl
)), fndecl
)
14247 /* Only allow this for variables declared in the outer scope of
14248 the function so we know that their lifetime always ends with a
14249 return; see g++.dg/opt/nrv6.C. We could be more flexible if
14250 we were to do this optimization in tree-ssa. */
14251 && (outer
= outer_curly_brace_block (fndecl
))
14252 && chain_member (r
, BLOCK_VARS (outer
)))
14253 finalize_nrv (&DECL_SAVED_TREE (fndecl
), r
, DECL_RESULT (fndecl
));
14255 current_function_return_value
= NULL_TREE
;
14258 /* Remember that we were in class scope. */
14259 if (current_class_name
)
14260 ctype
= current_class_type
;
14262 /* Must mark the RESULT_DECL as being in this function. */
14263 DECL_CONTEXT (DECL_RESULT (fndecl
)) = fndecl
;
14265 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
14266 to the FUNCTION_DECL node itself. */
14267 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl
)) = fndecl
;
14269 /* Save away current state, if appropriate. */
14270 if (!processing_template_decl
)
14271 save_function_data (fndecl
);
14273 /* Complain if there's just no return statement. */
14274 if (warn_return_type
14275 && !VOID_TYPE_P (TREE_TYPE (fntype
))
14276 && !dependent_type_p (TREE_TYPE (fntype
))
14277 && !current_function_returns_value
&& !current_function_returns_null
14278 /* Don't complain if we abort or throw. */
14279 && !current_function_returns_abnormally
14280 /* Don't complain if there's an infinite loop. */
14281 && !current_function_infinite_loop
14282 /* Don't complain if we are declared noreturn. */
14283 && !TREE_THIS_VOLATILE (fndecl
)
14284 && !DECL_NAME (DECL_RESULT (fndecl
))
14285 && !TREE_NO_WARNING (fndecl
)
14286 /* Structor return values (if any) are set by the compiler. */
14287 && !DECL_CONSTRUCTOR_P (fndecl
)
14288 && !DECL_DESTRUCTOR_P (fndecl
)
14289 && targetm
.warn_func_return (fndecl
))
14291 warning (OPT_Wreturn_type
,
14292 "no return statement in function returning non-void");
14293 TREE_NO_WARNING (fndecl
) = 1;
14296 /* Store the end of the function, so that we get good line number
14297 info for the epilogue. */
14298 cfun
->function_end_locus
= input_location
;
14300 /* Complain about parameters that are only set, but never otherwise used. */
14301 if (warn_unused_but_set_parameter
14302 && !processing_template_decl
14303 && errorcount
== unused_but_set_errorcount
14304 && !DECL_CLONED_FUNCTION_P (fndecl
))
14308 for (decl
= DECL_ARGUMENTS (fndecl
);
14310 decl
= DECL_CHAIN (decl
))
14311 if (TREE_USED (decl
)
14312 && TREE_CODE (decl
) == PARM_DECL
14313 && !DECL_READ_P (decl
)
14314 && DECL_NAME (decl
)
14315 && !DECL_ARTIFICIAL (decl
)
14316 && !TREE_NO_WARNING (decl
)
14317 && !DECL_IN_SYSTEM_HEADER (decl
)
14318 && TREE_TYPE (decl
) != error_mark_node
14319 && TREE_CODE (TREE_TYPE (decl
)) != REFERENCE_TYPE
14320 && (!CLASS_TYPE_P (TREE_TYPE (decl
))
14321 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl
))))
14322 warning (OPT_Wunused_but_set_parameter
,
14323 "parameter %q+D set but not used", decl
);
14324 unused_but_set_errorcount
= errorcount
;
14327 /* Complain about locally defined typedefs that are not used in this
14329 maybe_warn_unused_local_typedefs ();
14331 /* Genericize before inlining. */
14332 if (!processing_template_decl
)
14334 struct language_function
*f
= DECL_SAVED_FUNCTION_DATA (fndecl
);
14335 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE
, fndecl
);
14336 cp_genericize (fndecl
);
14337 /* Clear out the bits we don't need. */
14338 f
->x_current_class_ptr
= NULL
;
14339 f
->x_current_class_ref
= NULL
;
14340 f
->x_eh_spec_block
= NULL
;
14341 f
->x_in_charge_parm
= NULL
;
14342 f
->x_vtt_parm
= NULL
;
14343 f
->x_return_value
= NULL
;
14344 f
->bindings
= NULL
;
14345 f
->extern_decl_map
= NULL
;
14346 f
->infinite_loops
= NULL
;
14348 /* Clear out the bits we don't need. */
14349 local_names
= NULL
;
14351 /* We're leaving the context of this function, so zap cfun. It's still in
14352 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
14354 current_function_decl
= NULL
;
14356 /* If this is an in-class inline definition, we may have to pop the
14357 bindings for the template parameters that we added in
14358 maybe_begin_member_template_processing when start_function was
14360 if (inclass_inline
)
14361 maybe_end_member_template_processing ();
14363 /* Leave the scope of the class. */
14365 pop_nested_class ();
14370 current_function_decl
= NULL_TREE
;
14372 defer_mark_used_calls
= false;
14373 if (deferred_mark_used_calls
)
14378 FOR_EACH_VEC_SAFE_ELT (deferred_mark_used_calls
, i
, decl
)
14380 vec_free (deferred_mark_used_calls
);
14383 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION
, fndecl
);
14387 /* Create the FUNCTION_DECL for a function definition.
14388 DECLSPECS and DECLARATOR are the parts of the declaration;
14389 they describe the return type and the name of the function,
14390 but twisted together in a fashion that parallels the syntax of C.
14392 This function creates a binding context for the function body
14393 as well as setting up the FUNCTION_DECL in current_function_decl.
14395 Returns a FUNCTION_DECL on success.
14397 If the DECLARATOR is not suitable for a function (it defines a datum
14398 instead), we return 0, which tells yyparse to report a parse error.
14400 May return void_type_node indicating that this method is actually
14401 a friend. See grokfield for more details.
14403 Came here with a `.pushlevel' .
14405 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
14406 CHANGES TO CODE IN `grokfield'. */
14409 grokmethod (cp_decl_specifier_seq
*declspecs
,
14410 const cp_declarator
*declarator
, tree attrlist
)
14412 tree fndecl
= grokdeclarator (declarator
, declspecs
, MEMFUNCDEF
, 0,
14415 if (fndecl
== error_mark_node
)
14416 return error_mark_node
;
14418 if (fndecl
== NULL
|| TREE_CODE (fndecl
) != FUNCTION_DECL
)
14420 error ("invalid member function declaration");
14421 return error_mark_node
;
14425 cplus_decl_attributes (&fndecl
, attrlist
, 0);
14427 /* Pass friends other than inline friend functions back. */
14428 if (fndecl
== void_type_node
)
14431 if (DECL_IN_AGGR_P (fndecl
))
14433 if (DECL_CLASS_SCOPE_P (fndecl
))
14434 error ("%qD is already defined in class %qT", fndecl
,
14435 DECL_CONTEXT (fndecl
));
14436 return error_mark_node
;
14439 check_template_shadow (fndecl
);
14441 if (TREE_PUBLIC (fndecl
))
14442 DECL_COMDAT (fndecl
) = 1;
14443 DECL_DECLARED_INLINE_P (fndecl
) = 1;
14444 DECL_NO_INLINE_WARNING_P (fndecl
) = 1;
14446 /* We process method specializations in finish_struct_1. */
14447 if (processing_template_decl
&& !DECL_TEMPLATE_SPECIALIZATION (fndecl
))
14449 fndecl
= push_template_decl (fndecl
);
14450 if (fndecl
== error_mark_node
)
14454 if (! DECL_FRIEND_P (fndecl
))
14456 if (DECL_CHAIN (fndecl
))
14458 fndecl
= copy_node (fndecl
);
14459 TREE_CHAIN (fndecl
) = NULL_TREE
;
14463 cp_finish_decl (fndecl
, NULL_TREE
, false, NULL_TREE
, 0);
14465 DECL_IN_AGGR_P (fndecl
) = 1;
14470 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
14471 we can lay it out later, when and if its type becomes complete.
14473 Also handle constexpr variables where the initializer involves
14474 an unlowered PTRMEM_CST because the class isn't complete yet. */
14477 maybe_register_incomplete_var (tree var
)
14479 gcc_assert (VAR_P (var
));
14481 /* Keep track of variables with incomplete types. */
14482 if (!processing_template_decl
&& TREE_TYPE (var
) != error_mark_node
14483 && DECL_EXTERNAL (var
))
14485 tree inner_type
= TREE_TYPE (var
);
14487 while (TREE_CODE (inner_type
) == ARRAY_TYPE
)
14488 inner_type
= TREE_TYPE (inner_type
);
14489 inner_type
= TYPE_MAIN_VARIANT (inner_type
);
14491 if ((!COMPLETE_TYPE_P (inner_type
) && CLASS_TYPE_P (inner_type
))
14492 /* RTTI TD entries are created while defining the type_info. */
14493 || (TYPE_LANG_SPECIFIC (inner_type
)
14494 && TYPE_BEING_DEFINED (inner_type
)))
14496 incomplete_var iv
= {var
, inner_type
};
14497 vec_safe_push (incomplete_vars
, iv
);
14499 else if (!(DECL_LANG_SPECIFIC (var
) && DECL_TEMPLATE_INFO (var
))
14500 && decl_constant_var_p (var
)
14501 && (TYPE_PTRMEM_P (inner_type
) || CLASS_TYPE_P (inner_type
)))
14503 /* When the outermost open class is complete we can resolve any
14504 pointers-to-members. */
14505 tree context
= outermost_open_class ();
14506 incomplete_var iv
= {var
, context
};
14507 vec_safe_push (incomplete_vars
, iv
);
14512 /* Called when a class type (given by TYPE) is defined. If there are
14513 any existing VAR_DECLs whose type has been completed by this
14514 declaration, update them now. */
14517 complete_vars (tree type
)
14520 incomplete_var
*iv
;
14522 for (ix
= 0; vec_safe_iterate (incomplete_vars
, ix
, &iv
); )
14524 if (same_type_p (type
, iv
->incomplete_type
))
14526 tree var
= iv
->decl
;
14527 tree type
= TREE_TYPE (var
);
14529 if (TYPE_MAIN_VARIANT (strip_array_types (type
))
14530 == iv
->incomplete_type
)
14532 /* Complete the type of the variable. The VAR_DECL itself
14533 will be laid out in expand_expr. */
14534 complete_type (type
);
14535 cp_apply_type_quals_to_decl (cp_type_quals (type
), var
);
14538 if (DECL_INITIAL (var
)
14539 && decl_constant_var_p (var
))
14540 DECL_INITIAL (var
) = cplus_expand_constant (DECL_INITIAL (var
));
14542 /* Remove this entry from the list. */
14543 incomplete_vars
->unordered_remove (ix
);
14549 /* Check for pending declarations which may have abstract type. */
14550 complete_type_check_abstract (type
);
14553 /* If DECL is of a type which needs a cleanup, build and return an
14554 expression to perform that cleanup here. Return NULL_TREE if no
14555 cleanup need be done. */
14558 cxx_maybe_build_cleanup (tree decl
, tsubst_flags_t complain
)
14564 /* Assume no cleanup is required. */
14565 cleanup
= NULL_TREE
;
14567 if (error_operand_p (decl
))
14570 /* Handle "__attribute__((cleanup))". We run the cleanup function
14571 before the destructor since the destructor is what actually
14572 terminates the lifetime of the object. */
14573 attr
= lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl
));
14580 /* Get the name specified by the user for the cleanup function. */
14581 id
= TREE_VALUE (TREE_VALUE (attr
));
14582 /* Look up the name to find the cleanup function to call. It is
14583 important to use lookup_name here because that is what is
14584 used in c-common.c:handle_cleanup_attribute when performing
14585 initial checks on the attribute. Note that those checks
14586 include ensuring that the function found is not an overloaded
14587 function, or an object with an overloaded call operator,
14588 etc.; we can rely on the fact that the function found is an
14589 ordinary FUNCTION_DECL. */
14590 fn
= lookup_name (id
);
14591 arg
= build_address (decl
);
14592 if (!mark_used (decl
, complain
) && !(complain
& tf_error
))
14593 return error_mark_node
;
14594 cleanup
= cp_build_function_call_nary (fn
, complain
, arg
, NULL_TREE
);
14595 if (cleanup
== error_mark_node
)
14596 return error_mark_node
;
14598 /* Handle ordinary C++ destructors. */
14599 type
= TREE_TYPE (decl
);
14600 if (type_build_dtor_call (type
))
14602 int flags
= LOOKUP_NORMAL
|LOOKUP_NONVIRTUAL
|LOOKUP_DESTRUCTOR
;
14606 if (TREE_CODE (type
) == ARRAY_TYPE
)
14609 addr
= build_address (decl
);
14611 call
= build_delete (TREE_TYPE (addr
), addr
,
14612 sfk_complete_destructor
, flags
, 0, complain
);
14613 if (call
== error_mark_node
)
14614 cleanup
= error_mark_node
;
14615 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type
))
14616 /* Discard the call. */;
14618 cleanup
= cp_build_compound_expr (cleanup
, call
, complain
);
14623 /* build_delete sets the location of the destructor call to the
14624 current location, even though the destructor is going to be
14625 called later, at the end of the current scope. This can lead to
14626 a "jumpy" behaviour for users of debuggers when they step around
14627 the end of the block. So let's unset the location of the
14628 destructor call instead. */
14629 if (cleanup
!= NULL
&& EXPR_P (cleanup
))
14630 SET_EXPR_LOCATION (cleanup
, UNKNOWN_LOCATION
);
14633 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl
)))
14634 /* Treat objects with destructors as used; the destructor may do
14635 something substantive. */
14636 && !mark_used (decl
, complain
) && !(complain
& tf_error
))
14637 return error_mark_node
;
14643 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
14644 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
14645 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
14648 static_fn_type (tree memfntype
)
14653 if (TYPE_PTRMEMFUNC_P (memfntype
))
14654 memfntype
= TYPE_PTRMEMFUNC_FN_TYPE (memfntype
);
14655 if (POINTER_TYPE_P (memfntype
)
14656 || TREE_CODE (memfntype
) == FUNCTION_DECL
)
14657 memfntype
= TREE_TYPE (memfntype
);
14658 if (TREE_CODE (memfntype
) == FUNCTION_TYPE
)
14660 gcc_assert (TREE_CODE (memfntype
) == METHOD_TYPE
);
14661 args
= TYPE_ARG_TYPES (memfntype
);
14662 cp_ref_qualifier rqual
= type_memfn_rqual (memfntype
);
14663 fntype
= build_function_type (TREE_TYPE (memfntype
), TREE_CHAIN (args
));
14664 fntype
= apply_memfn_quals (fntype
, type_memfn_quals (memfntype
), rqual
);
14665 fntype
= (cp_build_type_attribute_variant
14666 (fntype
, TYPE_ATTRIBUTES (memfntype
)));
14667 fntype
= (build_exception_variant
14668 (fntype
, TYPE_RAISES_EXCEPTIONS (memfntype
)));
14669 if (TYPE_HAS_LATE_RETURN_TYPE (memfntype
))
14670 TYPE_HAS_LATE_RETURN_TYPE (fntype
) = 1;
14674 /* DECL was originally constructed as a non-static member function,
14675 but turned out to be static. Update it accordingly. */
14678 revert_static_member_fn (tree decl
)
14680 tree stype
= static_fn_type (decl
);
14681 cp_cv_quals quals
= type_memfn_quals (stype
);
14682 cp_ref_qualifier rqual
= type_memfn_rqual (stype
);
14684 if (quals
!= TYPE_UNQUALIFIED
|| rqual
!= REF_QUAL_NONE
)
14685 stype
= apply_memfn_quals (stype
, TYPE_UNQUALIFIED
, REF_QUAL_NONE
);
14687 TREE_TYPE (decl
) = stype
;
14689 if (DECL_ARGUMENTS (decl
))
14690 DECL_ARGUMENTS (decl
) = DECL_CHAIN (DECL_ARGUMENTS (decl
));
14691 DECL_STATIC_FUNCTION_P (decl
) = 1;
14694 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
14695 one of the language-independent trees. */
14697 enum cp_tree_node_structure_enum
14698 cp_tree_node_structure (union lang_tree_node
* t
)
14700 switch (TREE_CODE (&t
->generic
))
14702 case DEFAULT_ARG
: return TS_CP_DEFAULT_ARG
;
14703 case DEFERRED_NOEXCEPT
: return TS_CP_DEFERRED_NOEXCEPT
;
14704 case IDENTIFIER_NODE
: return TS_CP_IDENTIFIER
;
14705 case OVERLOAD
: return TS_CP_OVERLOAD
;
14706 case TEMPLATE_PARM_INDEX
: return TS_CP_TPI
;
14707 case PTRMEM_CST
: return TS_CP_PTRMEM
;
14708 case BASELINK
: return TS_CP_BASELINK
;
14709 case TEMPLATE_DECL
: return TS_CP_TEMPLATE_DECL
;
14710 case STATIC_ASSERT
: return TS_CP_STATIC_ASSERT
;
14711 case ARGUMENT_PACK_SELECT
: return TS_CP_ARGUMENT_PACK_SELECT
;
14712 case TRAIT_EXPR
: return TS_CP_TRAIT_EXPR
;
14713 case LAMBDA_EXPR
: return TS_CP_LAMBDA_EXPR
;
14714 case TEMPLATE_INFO
: return TS_CP_TEMPLATE_INFO
;
14715 case USERDEF_LITERAL
: return TS_CP_USERDEF_LITERAL
;
14716 default: return TS_CP_GENERIC
;
14720 /* Build the void_list_node (void_type_node having been created). */
14722 build_void_list_node (void)
14724 tree t
= build_tree_list (NULL_TREE
, void_type_node
);
14729 cp_missing_noreturn_ok_p (tree decl
)
14731 /* A missing noreturn is ok for the `main' function. */
14732 return DECL_MAIN_P (decl
);
14735 /* Return the decl used to identify the COMDAT group into which DECL should
14739 cxx_comdat_group (tree decl
)
14741 /* Virtual tables, construction virtual tables, and virtual table
14742 tables all go in a single COMDAT group, named after the primary
14744 if (VAR_P (decl
) && DECL_VTABLE_OR_VTT_P (decl
))
14745 decl
= CLASSTYPE_VTABLES (DECL_CONTEXT (decl
));
14746 /* For all other DECLs, the COMDAT group is the mangled name of the
14747 declaration itself. */
14750 while (DECL_THUNK_P (decl
))
14752 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
14753 into the same section as the target function. In that case
14754 we must return target's name. */
14755 tree target
= THUNK_TARGET (decl
);
14756 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target
)
14757 && DECL_SECTION_NAME (target
) != NULL
14758 && DECL_ONE_ONLY (target
))
14768 /* Returns the return type for FN as written by the user, which may include
14769 a placeholder for a deduced return type. */
14772 fndecl_declared_return_type (tree fn
)
14774 fn
= STRIP_TEMPLATE (fn
);
14775 if (FNDECL_USED_AUTO (fn
))
14777 struct language_function
*f
= NULL
;
14778 if (DECL_STRUCT_FUNCTION (fn
))
14779 f
= DECL_STRUCT_FUNCTION (fn
)->language
;
14781 f
= DECL_SAVED_FUNCTION_DATA (fn
);
14782 return f
->x_auto_return_pattern
;
14784 return TREE_TYPE (TREE_TYPE (fn
));
14787 /* Returns true iff DECL was declared with an auto return type and it has
14788 not yet been deduced to a real type. */
14791 undeduced_auto_decl (tree decl
)
14793 if (cxx_dialect
< cxx14
)
14795 return type_uses_auto (TREE_TYPE (decl
));
14798 /* Complain if DECL has an undeduced return type. */
14801 require_deduced_type (tree decl
)
14803 if (undeduced_auto_decl (decl
))
14804 error ("use of %qD before deduction of %<auto%>", decl
);
14807 #include "gt-cp-decl.h"