1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988-2014 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
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"
34 #include "stringpool.h"
35 #include "stor-layout.h"
41 #include "tree-iterator.h"
42 #include "tree-inline.h"
49 #include "c-family/c-common.h"
50 #include "c-family/c-objc.h"
51 #include "c-family/c-pragma.h"
52 #include "c-family/c-target.h"
53 #include "c-family/c-ubsan.h"
54 #include "diagnostic.h"
58 #include "splay-tree.h"
65 /* Possible cases of bad specifiers type used by bad_specifiers. */
67 BSP_VAR
, /* variable */
68 BSP_PARM
, /* parameter */
73 static tree
grokparms (tree parmlist
, tree
*);
74 static const char *redeclaration_error_message (tree
, tree
);
76 static int decl_jump_unsafe (tree
);
77 static void require_complete_types_for_parms (tree
);
78 static int ambi_op_p (enum tree_code
);
79 static int unary_op_p (enum tree_code
);
80 static void push_local_name (tree
);
81 static tree
grok_reference_init (tree
, tree
, tree
, int);
82 static tree
grokvardecl (tree
, tree
, tree
, const cp_decl_specifier_seq
*,
84 static int check_static_variable_definition (tree
, tree
);
85 static void record_unknown_type (tree
, const char *);
86 static tree
builtin_function_1 (tree
, tree
, bool);
87 static int member_function_or_else (tree
, tree
, enum overload_flags
);
88 static void bad_specifiers (tree
, enum bad_spec_place
, int, int, int, int,
90 static void check_for_uninitialized_const_var (tree
);
91 static hashval_t
typename_hash (const void *);
92 static int typename_compare (const void *, const void *);
93 static tree
local_variable_p_walkfn (tree
*, int *, void *);
94 static tree
record_builtin_java_type (const char *, int);
95 static const char *tag_name (enum tag_types
);
96 static tree
lookup_and_check_tag (enum tag_types
, tree
, tag_scope
, bool);
97 static int walk_namespaces_r (tree
, walk_namespaces_fn
, void *);
98 static void maybe_deduce_size_from_array_init (tree
, tree
);
99 static void layout_var_decl (tree
);
100 static tree
check_initializer (tree
, tree
, int, vec
<tree
, va_gc
> **);
101 static void make_rtl_for_nonlocal_decl (tree
, tree
, const char *);
102 static void save_function_data (tree
);
103 static void copy_type_enum (tree
, tree
);
104 static void check_function_type (tree
, tree
);
105 static void finish_constructor_body (void);
106 static void begin_destructor_body (void);
107 static void finish_destructor_body (void);
108 static void record_key_method_defined (tree
);
109 static tree
create_array_type_for_decl (tree
, tree
, tree
);
110 static tree
get_atexit_node (void);
111 static tree
get_dso_handle_node (void);
112 static tree
start_cleanup_fn (void);
113 static void end_cleanup_fn (void);
114 static tree
cp_make_fname_decl (location_t
, tree
, int);
115 static void initialize_predefined_identifiers (void);
116 static tree check_special_function_return_type
117 (special_function_kind
, tree
, tree
);
118 static tree
push_cp_library_fn (enum tree_code
, tree
, int);
119 static tree
build_cp_library_fn (tree
, enum tree_code
, tree
, int);
120 static void store_parm_decls (tree
);
121 static void initialize_local_var (tree
, tree
);
122 static void expand_static_init (tree
, tree
);
124 /* The following symbols are subsumed in the cp_global_trees array, and
125 listed here individually for documentation purposes.
128 tree wchar_decl_node;
130 tree vtable_entry_type;
131 tree delta_type_node;
132 tree __t_desc_type_node;
134 tree class_type_node;
135 tree unknown_type_node;
137 Array type `vtable_entry_type[]'
140 tree vtbl_ptr_type_node;
147 A FUNCTION_DECL which can call `abort'. Not necessarily the
148 one that the user will declare, but sufficient to be called
149 by routines that want to abort the program.
153 The FUNCTION_DECL for the default `::operator delete'.
155 tree global_delete_fndecl;
158 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
159 tree tinfo_var_id; */
161 tree cp_global_trees
[CPTI_MAX
];
163 /* Indicates that there is a type value in some namespace, although
164 that is not necessarily in scope at the moment. */
166 tree global_type_node
;
168 /* The node that holds the "name" of the global scope. */
169 tree global_scope_name
;
171 #define local_names cp_function_chain->x_local_names
173 /* A list of objects which have constructors or destructors
174 which reside in the global scope. The decl is stored in
175 the TREE_VALUE slot and the initializer is stored
176 in the TREE_PURPOSE slot. */
177 tree static_aggregates
;
179 /* Like static_aggregates, but for thread_local variables. */
184 /* A node for the integer constant 2. */
186 tree integer_two_node
;
188 /* Used only for jumps to as-yet undefined labels, since jumps to
189 defined labels can have their validity checked immediately. */
191 struct GTY((chain_next ("%h.next"))) named_label_use_entry
{
192 struct named_label_use_entry
*next
;
193 /* The binding level to which this entry is *currently* attached.
194 This is initially the binding level in which the goto appeared,
195 but is modified as scopes are closed. */
196 cp_binding_level
*binding_level
;
197 /* The head of the names list that was current when the goto appeared,
198 or the inner scope popped. These are the decls that will *not* be
199 skipped when jumping to the label. */
201 /* The location of the goto, for error reporting. */
202 location_t o_goto_locus
;
203 /* True if an OpenMP structured block scope has been closed since
204 the goto appeared. This means that the branch from the label will
205 illegally exit an OpenMP scope. */
209 /* A list of all LABEL_DECLs in the function that have names. Here so
210 we can clear out their names' definitions at the end of the
211 function, and so we can check the validity of jumps to these labels. */
213 struct GTY(()) named_label_entry
{
214 /* The decl itself. */
217 /* The binding level to which the label is *currently* attached.
218 This is initially set to the binding level in which the label
219 is defined, but is modified as scopes are closed. */
220 cp_binding_level
*binding_level
;
221 /* The head of the names list that was current when the label was
222 defined, or the inner scope popped. These are the decls that will
223 be skipped when jumping to the label. */
225 /* A vector of all decls from all binding levels that would be
226 crossed by a backward branch to the label. */
227 vec
<tree
, va_gc
> *bad_decls
;
229 /* A list of uses of the label, before the label is defined. */
230 struct named_label_use_entry
*uses
;
232 /* The following bits are set after the label is defined, and are
233 updated as scopes are popped. They indicate that a backward jump
234 to the label will illegally enter a scope of the given flavor. */
240 #define named_labels cp_function_chain->x_named_labels
242 /* The number of function bodies which we are currently processing.
243 (Zero if we are at namespace scope, one inside the body of a
244 function, two inside the body of a function in a local class, etc.) */
247 /* To avoid unwanted recursion, finish_function defers all mark_used calls
248 encountered during its execution until it finishes. */
249 bool defer_mark_used_calls
;
250 vec
<tree
, va_gc
> *deferred_mark_used_calls
;
252 /* States indicating how grokdeclarator() should handle declspecs marked
253 with __attribute__((deprecated)). An object declared as
254 __attribute__((deprecated)) suppresses warnings of uses of other
256 enum deprecated_states deprecated_state
= DEPRECATED_NORMAL
;
259 /* A list of VAR_DECLs whose type was incomplete at the time the
260 variable was declared. */
262 typedef struct GTY(()) incomplete_var_d
{
264 tree incomplete_type
;
268 static GTY(()) vec
<incomplete_var
, va_gc
> *incomplete_vars
;
270 /* Returns the kind of template specialization we are currently
271 processing, given that it's declaration contained N_CLASS_SCOPES
272 explicit scope qualifications. */
275 current_tmpl_spec_kind (int n_class_scopes
)
277 int n_template_parm_scopes
= 0;
278 int seen_specialization_p
= 0;
279 int innermost_specialization_p
= 0;
282 /* Scan through the template parameter scopes. */
283 for (b
= current_binding_level
;
284 b
->kind
== sk_template_parms
;
287 /* If we see a specialization scope inside a parameter scope,
288 then something is wrong. That corresponds to a declaration
291 template <class T> template <> ...
293 which is always invalid since [temp.expl.spec] forbids the
294 specialization of a class member template if the enclosing
295 class templates are not explicitly specialized as well. */
296 if (b
->explicit_spec_p
)
298 if (n_template_parm_scopes
== 0)
299 innermost_specialization_p
= 1;
301 seen_specialization_p
= 1;
303 else if (seen_specialization_p
== 1)
304 return tsk_invalid_member_spec
;
306 ++n_template_parm_scopes
;
309 /* Handle explicit instantiations. */
310 if (processing_explicit_instantiation
)
312 if (n_template_parm_scopes
!= 0)
313 /* We've seen a template parameter list during an explicit
314 instantiation. For example:
316 template <class T> template void f(int);
318 This is erroneous. */
319 return tsk_invalid_expl_inst
;
321 return tsk_expl_inst
;
324 if (n_template_parm_scopes
< n_class_scopes
)
325 /* We've not seen enough template headers to match all the
326 specialized classes present. For example:
328 template <class T> void R<T>::S<T>::f(int);
330 This is invalid; there needs to be one set of template
331 parameters for each class. */
332 return tsk_insufficient_parms
;
333 else if (n_template_parm_scopes
== n_class_scopes
)
334 /* We're processing a non-template declaration (even though it may
335 be a member of a template class.) For example:
337 template <class T> void S<T>::f(int);
339 The `class T' matches the `S<T>', leaving no template headers
340 corresponding to the `f'. */
342 else if (n_template_parm_scopes
> n_class_scopes
+ 1)
343 /* We've got too many template headers. For example:
345 template <> template <class T> void f (T);
347 There need to be more enclosing classes. */
348 return tsk_excessive_parms
;
350 /* This must be a template. It's of the form:
352 template <class T> template <class U> void S<T>::f(U);
354 This is a specialization if the innermost level was a
355 specialization; otherwise it's just a definition of the
357 return innermost_specialization_p
? tsk_expl_spec
: tsk_template
;
360 /* Exit the current scope. */
368 /* When a label goes out of scope, check to see if that label was used
369 in a valid manner, and issue any appropriate warnings or errors. */
372 pop_label (tree label
, tree old_value
)
374 if (!processing_template_decl
)
376 if (DECL_INITIAL (label
) == NULL_TREE
)
380 error ("label %q+D used but not defined", label
);
381 location
= input_location
;
382 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
383 /* Avoid crashing later. */
384 define_label (location
, DECL_NAME (label
));
387 warn_for_unused_label (label
);
390 SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label
), old_value
);
393 /* At the end of a function, all labels declared within the function
394 go out of scope. BLOCK is the top-level block for the
398 pop_labels_1 (void **slot
, void *data
)
400 struct named_label_entry
*ent
= (struct named_label_entry
*) *slot
;
401 tree block
= (tree
) data
;
403 pop_label (ent
->label_decl
, NULL_TREE
);
405 /* Put the labels into the "variables" of the top-level block,
406 so debugger can see them. */
407 DECL_CHAIN (ent
->label_decl
) = BLOCK_VARS (block
);
408 BLOCK_VARS (block
) = ent
->label_decl
;
410 htab_clear_slot (named_labels
, slot
);
416 pop_labels (tree block
)
420 htab_traverse (named_labels
, pop_labels_1
, block
);
425 /* At the end of a block with local labels, restore the outer definition. */
428 pop_local_label (tree label
, tree old_value
)
430 struct named_label_entry dummy
;
433 pop_label (label
, old_value
);
435 dummy
.label_decl
= label
;
436 slot
= htab_find_slot (named_labels
, &dummy
, NO_INSERT
);
437 htab_clear_slot (named_labels
, slot
);
440 /* The following two routines are used to interface to Objective-C++.
441 The binding level is purposely treated as an opaque type. */
444 objc_get_current_scope (void)
446 return current_binding_level
;
449 /* The following routine is used by the NeXT-style SJLJ exceptions;
450 variables get marked 'volatile' so as to not be clobbered by
451 _setjmp()/_longjmp() calls. All variables in the current scope,
452 as well as parent scopes up to (but not including) ENCLOSING_BLK
453 shall be thusly marked. */
456 objc_mark_locals_volatile (void *enclosing_blk
)
458 cp_binding_level
*scope
;
460 for (scope
= current_binding_level
;
461 scope
&& scope
!= enclosing_blk
;
462 scope
= scope
->level_chain
)
466 for (decl
= scope
->names
; decl
; decl
= TREE_CHAIN (decl
))
467 objc_volatilize_decl (decl
);
469 /* Do not climb up past the current function. */
470 if (scope
->kind
== sk_function_parms
)
475 /* Update data for defined and undefined labels when leaving a scope. */
478 poplevel_named_label_1 (void **slot
, void *data
)
480 struct named_label_entry
*ent
= (struct named_label_entry
*) *slot
;
481 cp_binding_level
*bl
= (cp_binding_level
*) data
;
482 cp_binding_level
*obl
= bl
->level_chain
;
484 if (ent
->binding_level
== bl
)
488 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
489 TREE_LISTs representing OVERLOADs, so be careful. */
490 for (decl
= ent
->names_in_scope
; decl
; decl
= (DECL_P (decl
)
492 : TREE_CHAIN (decl
)))
493 if (decl_jump_unsafe (decl
))
494 vec_safe_push (ent
->bad_decls
, decl
);
496 ent
->binding_level
= obl
;
497 ent
->names_in_scope
= obl
->names
;
501 ent
->in_try_scope
= true;
504 ent
->in_catch_scope
= true;
507 ent
->in_omp_scope
= true;
515 struct named_label_use_entry
*use
;
517 for (use
= ent
->uses
; use
; use
= use
->next
)
518 if (use
->binding_level
== bl
)
520 use
->binding_level
= obl
;
521 use
->names_in_scope
= obl
->names
;
522 if (bl
->kind
== sk_omp
)
523 use
->in_omp_scope
= true;
530 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
531 when errors were reported, except for -Werror-unused-but-set-*. */
532 static int unused_but_set_errorcount
;
534 /* Exit a binding level.
535 Pop the level off, and restore the state of the identifier-decl mappings
536 that were in effect when this level was entered.
538 If KEEP == 1, this level had explicit declarations, so
539 and create a "block" (a BLOCK node) for the level
540 to record its declarations and subblocks for symbol table output.
542 If FUNCTIONBODY is nonzero, this level is the body of a function,
543 so create a block as if KEEP were set and also clear out all
546 If REVERSE is nonzero, reverse the order of decls before putting
547 them into the BLOCK. */
550 poplevel (int keep
, int reverse
, int functionbody
)
553 /* The chain of decls was accumulated in reverse order.
554 Put it into forward order, just for cleanliness. */
559 int leaving_for_scope
;
562 cp_label_binding
*label_bind
;
564 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
569 gcc_assert (current_binding_level
->kind
!= sk_class
);
571 if (current_binding_level
->kind
== sk_cleanup
)
573 subblocks
= functionbody
>= 0 ? current_binding_level
->blocks
: 0;
575 gcc_assert (!vec_safe_length (current_binding_level
->class_shadowed
));
577 /* We used to use KEEP == 2 to indicate that the new block should go
578 at the beginning of the list of blocks at this binding level,
579 rather than the end. This hack is no longer used. */
580 gcc_assert (keep
== 0 || keep
== 1);
582 if (current_binding_level
->keep
)
585 /* Any uses of undefined labels, and any defined labels, now operate
586 under constraints of next binding contour. */
587 if (cfun
&& !functionbody
&& named_labels
)
588 htab_traverse (named_labels
, poplevel_named_label_1
,
589 current_binding_level
);
591 /* Get the decls in the order they were written.
592 Usually current_binding_level->names is in reverse order.
593 But parameter decls were previously put in forward order. */
596 current_binding_level
->names
597 = decls
= nreverse (current_binding_level
->names
);
599 decls
= current_binding_level
->names
;
601 /* If there were any declarations or structure tags in that level,
602 or if this level is a function body,
603 create a BLOCK to record them for the life of this function. */
605 if (keep
== 1 || functionbody
)
606 block
= make_node (BLOCK
);
607 if (block
!= NULL_TREE
)
609 BLOCK_VARS (block
) = decls
;
610 BLOCK_SUBBLOCKS (block
) = subblocks
;
613 /* In each subblock, record that this is its superior. */
615 for (link
= subblocks
; link
; link
= BLOCK_CHAIN (link
))
616 BLOCK_SUPERCONTEXT (link
) = block
;
618 /* We still support the old for-scope rules, whereby the variables
619 in a for-init statement were in scope after the for-statement
620 ended. We only use the new rules if flag_new_for_scope is
623 = current_binding_level
->kind
== sk_for
&& flag_new_for_scope
== 1;
625 /* Before we remove the declarations first check for unused variables. */
626 if ((warn_unused_variable
|| warn_unused_but_set_variable
)
627 && !processing_template_decl
)
628 for (tree d
= getdecls (); d
; d
= TREE_CHAIN (d
))
630 /* There are cases where D itself is a TREE_LIST. See in
631 push_local_binding where the list of decls returned by
632 getdecls is built. */
633 decl
= TREE_CODE (d
) == TREE_LIST
? TREE_VALUE (d
) : d
;
634 // See through references for improved -Wunused-variable (PR 38958).
635 tree type
= non_reference (TREE_TYPE (decl
));
637 && (! TREE_USED (decl
) || !DECL_READ_P (decl
))
638 && ! DECL_IN_SYSTEM_HEADER (decl
)
639 && DECL_NAME (decl
) && ! DECL_ARTIFICIAL (decl
)
640 && type
!= error_mark_node
641 && (!CLASS_TYPE_P (type
)
642 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
)
643 || lookup_attribute ("warn_unused",
644 TYPE_ATTRIBUTES (TREE_TYPE (decl
)))))
646 if (! TREE_USED (decl
))
647 warning (OPT_Wunused_variable
, "unused variable %q+D", decl
);
648 else if (DECL_CONTEXT (decl
) == current_function_decl
649 // For -Wunused-but-set-variable leave references alone.
650 && TREE_CODE (TREE_TYPE (decl
)) != REFERENCE_TYPE
651 && errorcount
== unused_but_set_errorcount
)
653 warning (OPT_Wunused_but_set_variable
,
654 "variable %q+D set but not used", decl
);
655 unused_but_set_errorcount
= errorcount
;
660 /* Remove declarations for all the DECLs in this level. */
661 for (link
= decls
; link
; link
= TREE_CHAIN (link
))
663 if (leaving_for_scope
&& VAR_P (link
)
664 /* It's hard to make this ARM compatibility hack play nicely with
665 lambdas, and it really isn't necessary in C++11 mode. */
666 && cxx_dialect
< cxx11
669 tree name
= DECL_NAME (link
);
673 ob
= outer_binding (name
,
674 IDENTIFIER_BINDING (name
),
677 ns_binding
= IDENTIFIER_NAMESPACE_VALUE (name
);
679 ns_binding
= NULL_TREE
;
681 if (ob
&& ob
->scope
== current_binding_level
->level_chain
)
682 /* We have something like:
687 and we are leaving the `for' scope. There's no reason to
688 keep the binding of the inner `i' in this case. */
689 pop_binding (name
, link
);
690 else if ((ob
&& (TREE_CODE (ob
->value
) == TYPE_DECL
))
691 || (ns_binding
&& TREE_CODE (ns_binding
) == TYPE_DECL
))
692 /* Here, we have something like:
700 We must pop the for-scope binding so we know what's a
701 type and what isn't. */
702 pop_binding (name
, link
);
705 /* Mark this VAR_DECL as dead so that we can tell we left it
706 there only for backward compatibility. */
707 DECL_DEAD_FOR_LOCAL (link
) = 1;
709 /* Keep track of what should have happened when we
710 popped the binding. */
713 SET_DECL_SHADOWED_FOR_VAR (link
, ob
->value
);
714 DECL_HAS_SHADOWED_FOR_VAR_P (link
) = 1;
717 /* Add it to the list of dead variables in the next
718 outermost binding to that we can remove these when we
719 leave that binding. */
721 current_binding_level
->level_chain
->dead_vars_from_for
,
724 /* Although we don't pop the cxx_binding, we do clear
725 its SCOPE since the scope is going away now. */
726 IDENTIFIER_BINDING (name
)->scope
727 = current_binding_level
->level_chain
;
734 /* Remove the binding. */
737 if (TREE_CODE (decl
) == TREE_LIST
)
738 decl
= TREE_VALUE (decl
);
741 if (TREE_CODE (name
) == OVERLOAD
)
742 name
= OVL_FUNCTION (name
);
744 gcc_assert (DECL_P (name
));
745 pop_binding (DECL_NAME (name
), decl
);
749 /* Remove declarations for any `for' variables from inner scopes
750 that we kept around. */
751 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level
->dead_vars_from_for
,
753 pop_binding (DECL_NAME (decl
), decl
);
755 /* Restore the IDENTIFIER_TYPE_VALUEs. */
756 for (link
= current_binding_level
->type_shadowed
;
757 link
; link
= TREE_CHAIN (link
))
758 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link
), TREE_VALUE (link
));
760 /* Restore the IDENTIFIER_LABEL_VALUEs for local labels. */
761 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level
->shadowed_labels
,
763 pop_local_label (label_bind
->label
, label_bind
->prev_value
);
765 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
766 list if a `using' declaration put them there. The debugging
767 back ends won't understand OVERLOAD, so we remove them here.
768 Because the BLOCK_VARS are (temporarily) shared with
769 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
770 popped all the bindings. */
775 for (d
= &BLOCK_VARS (block
); *d
; )
777 if (TREE_CODE (*d
) == TREE_LIST
)
778 *d
= TREE_CHAIN (*d
);
780 d
= &DECL_CHAIN (*d
);
784 /* If the level being exited is the top level of a function,
785 check over all the labels. */
788 /* Since this is the top level block of a function, the vars are
789 the function's parameters. Don't leave them in the BLOCK
790 because they are found in the FUNCTION_DECL instead. */
791 BLOCK_VARS (block
) = 0;
795 kind
= current_binding_level
->kind
;
796 if (kind
== sk_cleanup
)
800 /* If this is a temporary binding created for a cleanup, then we'll
801 have pushed a statement list level. Pop that, create a new
802 BIND_EXPR for the block, and insert it into the stream. */
803 stmt
= pop_stmt_list (current_binding_level
->statement_list
);
804 stmt
= c_build_bind_expr (input_location
, block
, stmt
);
811 /* The current function is being defined, so its DECL_INITIAL
812 should be error_mark_node. */
813 gcc_assert (DECL_INITIAL (current_function_decl
) == error_mark_node
);
814 DECL_INITIAL (current_function_decl
) = block
;
817 current_binding_level
->blocks
818 = block_chainon (current_binding_level
->blocks
, block
);
820 /* If we did not make a block for the level just exited,
821 any blocks made for inner levels
822 (since they cannot be recorded as subblocks in that level)
823 must be carried forward so they will later become subblocks
824 of something else. */
826 current_binding_level
->blocks
827 = block_chainon (current_binding_level
->blocks
, subblocks
);
829 /* Each and every BLOCK node created here in `poplevel' is important
830 (e.g. for proper debugging information) so if we created one
831 earlier, mark it as "used". */
833 TREE_USED (block
) = 1;
835 /* All temporary bindings created for cleanups are popped silently. */
836 if (kind
== sk_cleanup
)
839 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
843 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
844 itself, calling F for each. The DATA is passed to F as well. */
847 walk_namespaces_r (tree name_space
, walk_namespaces_fn f
, void* data
)
850 tree current
= NAMESPACE_LEVEL (name_space
)->namespaces
;
852 result
|= (*f
) (name_space
, data
);
854 for (; current
; current
= DECL_CHAIN (current
))
855 result
|= walk_namespaces_r (current
, f
, data
);
860 /* Walk all the namespaces, calling F for each. The DATA is passed to
864 walk_namespaces (walk_namespaces_fn f
, void* data
)
866 return walk_namespaces_r (global_namespace
, f
, data
);
869 /* Call wrapup_globals_declarations for the globals in NAMESPACE. If
870 DATA is non-NULL, this is the last time we will call
871 wrapup_global_declarations for this NAMESPACE. */
874 wrapup_globals_for_namespace (tree name_space
, void* data
)
876 cp_binding_level
*level
= NAMESPACE_LEVEL (name_space
);
877 vec
<tree
, va_gc
> *statics
= level
->static_decls
;
878 tree
*vec
= statics
->address ();
879 int len
= statics
->length ();
880 int last_time
= (data
!= 0);
884 check_global_declarations (vec
, len
);
885 emit_debug_global_declarations (vec
, len
);
889 /* Write out any globals that need to be output. */
890 return wrapup_global_declarations (vec
, len
);
894 /* In C++, you don't have to write `struct S' to refer to `S'; you
895 can just use `S'. We accomplish this by creating a TYPE_DECL as
896 if the user had written `typedef struct S S'. Create and return
897 the TYPE_DECL for TYPE. */
900 create_implicit_typedef (tree name
, tree type
)
904 decl
= build_decl (input_location
, TYPE_DECL
, name
, type
);
905 DECL_ARTIFICIAL (decl
) = 1;
906 /* There are other implicit type declarations, like the one *within*
907 a class that allows you to write `S::S'. We must distinguish
909 SET_DECL_IMPLICIT_TYPEDEF_P (decl
);
910 TYPE_NAME (type
) = decl
;
911 TYPE_STUB_DECL (type
) = decl
;
916 /* Remember a local name for name-mangling purposes. */
919 push_local_name (tree decl
)
924 timevar_start (TV_NAME_LOOKUP
);
926 name
= DECL_NAME (decl
);
928 nelts
= vec_safe_length (local_names
);
929 for (i
= 0; i
< nelts
; i
++)
931 t
= (*local_names
)[i
];
932 if (DECL_NAME (t
) == name
)
934 if (!DECL_LANG_SPECIFIC (decl
))
935 retrofit_lang_decl (decl
);
936 DECL_LANG_SPECIFIC (decl
)->u
.base
.u2sel
= 1;
937 if (DECL_DISCRIMINATOR_SET_P (t
))
938 DECL_DISCRIMINATOR (decl
) = DECL_DISCRIMINATOR (t
) + 1;
940 DECL_DISCRIMINATOR (decl
) = 1;
942 (*local_names
)[i
] = decl
;
943 timevar_stop (TV_NAME_LOOKUP
);
948 vec_safe_push (local_names
, decl
);
949 timevar_stop (TV_NAME_LOOKUP
);
952 /* Subroutine of duplicate_decls: return truthvalue of whether
953 or not types of these decls match.
955 For C++, we must compare the parameter list so that `int' can match
956 `int&' in a parameter position, but `int&' is not confused with
960 decls_match (tree newdecl
, tree olddecl
)
964 if (newdecl
== olddecl
)
967 if (TREE_CODE (newdecl
) != TREE_CODE (olddecl
))
968 /* If the two DECLs are not even the same kind of thing, we're not
969 interested in their types. */
972 gcc_assert (DECL_P (newdecl
));
974 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
976 tree f1
= TREE_TYPE (newdecl
);
977 tree f2
= TREE_TYPE (olddecl
);
978 tree p1
= TYPE_ARG_TYPES (f1
);
979 tree p2
= TYPE_ARG_TYPES (f2
);
982 /* Specializations of different templates are different functions
983 even if they have the same type. */
984 tree t1
= (DECL_USE_TEMPLATE (newdecl
)
985 ? DECL_TI_TEMPLATE (newdecl
)
987 tree t2
= (DECL_USE_TEMPLATE (olddecl
)
988 ? DECL_TI_TEMPLATE (olddecl
)
993 if (CP_DECL_CONTEXT (newdecl
) != CP_DECL_CONTEXT (olddecl
)
994 && ! (DECL_EXTERN_C_P (newdecl
)
995 && DECL_EXTERN_C_P (olddecl
)))
998 /* A new declaration doesn't match a built-in one unless it
999 is also extern "C". */
1000 if (DECL_IS_BUILTIN (olddecl
)
1001 && DECL_EXTERN_C_P (olddecl
) && !DECL_EXTERN_C_P (newdecl
))
1004 if (TREE_CODE (f1
) != TREE_CODE (f2
))
1007 /* A declaration with deduced return type should use its pre-deduction
1008 type for declaration matching. */
1009 r2
= fndecl_declared_return_type (olddecl
);
1011 if (same_type_p (TREE_TYPE (f1
), r2
))
1013 if (!prototype_p (f2
) && DECL_EXTERN_C_P (olddecl
)
1014 && (DECL_BUILT_IN (olddecl
)
1015 #ifndef NO_IMPLICIT_EXTERN_C
1016 || (DECL_IN_SYSTEM_HEADER (newdecl
) && !DECL_CLASS_SCOPE_P (newdecl
))
1017 || (DECL_IN_SYSTEM_HEADER (olddecl
) && !DECL_CLASS_SCOPE_P (olddecl
))
1021 types_match
= self_promoting_args_p (p1
);
1022 if (p1
== void_list_node
)
1023 TREE_TYPE (newdecl
) = TREE_TYPE (olddecl
);
1025 #ifndef NO_IMPLICIT_EXTERN_C
1026 else if (!prototype_p (f1
)
1027 && (DECL_EXTERN_C_P (olddecl
)
1028 && DECL_IN_SYSTEM_HEADER (olddecl
)
1029 && !DECL_CLASS_SCOPE_P (olddecl
))
1030 && (DECL_EXTERN_C_P (newdecl
)
1031 && DECL_IN_SYSTEM_HEADER (newdecl
)
1032 && !DECL_CLASS_SCOPE_P (newdecl
)))
1034 types_match
= self_promoting_args_p (p2
);
1035 TREE_TYPE (newdecl
) = TREE_TYPE (olddecl
);
1041 && type_memfn_rqual (f1
) == type_memfn_rqual (f2
)
1042 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl
)) == NULL_TREE
1043 || comp_type_attributes (TREE_TYPE (newdecl
),
1044 TREE_TYPE (olddecl
)) != 0);
1049 /* The decls dont match if they correspond to two different versions
1050 of the same function. Disallow extern "C" functions to be
1051 versions for now. */
1053 && !DECL_EXTERN_C_P (newdecl
)
1054 && !DECL_EXTERN_C_P (olddecl
)
1055 && targetm
.target_option
.function_versions (newdecl
, olddecl
))
1057 /* Mark functions as versions if necessary. Modify the mangled decl
1058 name if necessary. */
1059 if (DECL_FUNCTION_VERSIONED (newdecl
)
1060 && DECL_FUNCTION_VERSIONED (olddecl
))
1062 if (!DECL_FUNCTION_VERSIONED (newdecl
))
1064 DECL_FUNCTION_VERSIONED (newdecl
) = 1;
1065 if (DECL_ASSEMBLER_NAME_SET_P (newdecl
))
1066 mangle_decl (newdecl
);
1068 if (!DECL_FUNCTION_VERSIONED (olddecl
))
1070 DECL_FUNCTION_VERSIONED (olddecl
) = 1;
1071 if (DECL_ASSEMBLER_NAME_SET_P (olddecl
))
1072 mangle_decl (olddecl
);
1074 cgraph_node::record_function_versions (olddecl
, newdecl
);
1078 else if (TREE_CODE (newdecl
) == TEMPLATE_DECL
)
1080 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl
))
1081 != TREE_CODE (DECL_TEMPLATE_RESULT (olddecl
)))
1084 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl
),
1085 DECL_TEMPLATE_PARMS (olddecl
)))
1088 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl
)) == TYPE_DECL
)
1089 types_match
= same_type_p (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl
)),
1090 TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl
)));
1092 types_match
= decls_match (DECL_TEMPLATE_RESULT (olddecl
),
1093 DECL_TEMPLATE_RESULT (newdecl
));
1097 /* Need to check scope for variable declaration (VAR_DECL).
1098 For typedef (TYPE_DECL), scope is ignored. */
1100 && CP_DECL_CONTEXT (newdecl
) != CP_DECL_CONTEXT (olddecl
)
1102 Two declarations for an object with C language linkage
1103 with the same name (ignoring the namespace that qualify
1104 it) that appear in different namespace scopes refer to
1106 && !(DECL_EXTERN_C_P (olddecl
) && DECL_EXTERN_C_P (newdecl
)))
1109 if (TREE_TYPE (newdecl
) == error_mark_node
)
1110 types_match
= TREE_TYPE (olddecl
) == error_mark_node
;
1111 else if (TREE_TYPE (olddecl
) == NULL_TREE
)
1112 types_match
= TREE_TYPE (newdecl
) == NULL_TREE
;
1113 else if (TREE_TYPE (newdecl
) == NULL_TREE
)
1116 types_match
= comptypes (TREE_TYPE (newdecl
),
1117 TREE_TYPE (olddecl
),
1118 COMPARE_REDECLARATION
);
1124 /* If NEWDECL is `static' and an `extern' was seen previously,
1125 warn about it. OLDDECL is the previous declaration.
1127 Note that this does not apply to the C++ case of declaring
1128 a variable `extern const' and then later `const'.
1130 Don't complain about built-in functions, since they are beyond
1131 the user's control. */
1134 warn_extern_redeclared_static (tree newdecl
, tree olddecl
)
1136 if (TREE_CODE (newdecl
) == TYPE_DECL
1137 || TREE_CODE (newdecl
) == TEMPLATE_DECL
1138 || TREE_CODE (newdecl
) == CONST_DECL
1139 || TREE_CODE (newdecl
) == NAMESPACE_DECL
)
1142 /* Don't get confused by static member functions; that's a different
1144 if (TREE_CODE (newdecl
) == FUNCTION_DECL
1145 && DECL_STATIC_FUNCTION_P (newdecl
))
1148 /* If the old declaration was `static', or the new one isn't, then
1149 everything is OK. */
1150 if (DECL_THIS_STATIC (olddecl
) || !DECL_THIS_STATIC (newdecl
))
1153 /* It's OK to declare a builtin function as `static'. */
1154 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1155 && DECL_ARTIFICIAL (olddecl
))
1158 if (permerror (input_location
,
1159 "%qD was declared %<extern%> and later %<static%>", newdecl
))
1160 inform (input_location
, "previous declaration of %q+D", olddecl
);
1163 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1164 function templates. If their exception specifications do not
1165 match, issue a diagnostic. */
1168 check_redeclaration_exception_specification (tree new_decl
,
1171 tree new_exceptions
= TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl
));
1172 tree old_exceptions
= TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl
));
1174 /* Two default specs are equivalent, don't force evaluation. */
1175 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions
)
1176 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions
))
1179 maybe_instantiate_noexcept (new_decl
);
1180 maybe_instantiate_noexcept (old_decl
);
1181 new_exceptions
= TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl
));
1182 old_exceptions
= TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl
));
1186 If any declaration of a function has an exception-specification,
1187 all declarations, including the definition and an explicit
1188 specialization, of that function shall have an
1189 exception-specification with the same set of type-ids. */
1190 if ((pedantic
|| ! DECL_IN_SYSTEM_HEADER (old_decl
))
1191 && ! DECL_IS_BUILTIN (old_decl
)
1193 && !comp_except_specs (new_exceptions
, old_exceptions
, ce_normal
))
1195 error ("declaration of %qF has a different exception specifier",
1197 error ("from previous declaration %q+F", old_decl
);
1201 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1202 Otherwise issue diagnostics. */
1205 validate_constexpr_redeclaration (tree old_decl
, tree new_decl
)
1207 old_decl
= STRIP_TEMPLATE (old_decl
);
1208 new_decl
= STRIP_TEMPLATE (new_decl
);
1209 if (!VAR_OR_FUNCTION_DECL_P (old_decl
)
1210 || !VAR_OR_FUNCTION_DECL_P (new_decl
))
1212 if (DECL_DECLARED_CONSTEXPR_P (old_decl
)
1213 == DECL_DECLARED_CONSTEXPR_P (new_decl
))
1215 if (TREE_CODE (old_decl
) == FUNCTION_DECL
)
1217 if (DECL_BUILT_IN (old_decl
))
1219 /* Hide a built-in declaration. */
1220 DECL_DECLARED_CONSTEXPR_P (old_decl
)
1221 = DECL_DECLARED_CONSTEXPR_P (new_decl
);
1224 /* 7.1.5 [dcl.constexpr]
1225 Note: An explicit specialization can differ from the template
1226 declaration with respect to the constexpr specifier. */
1227 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl
)
1228 && DECL_TEMPLATE_SPECIALIZATION (new_decl
))
1231 error ("redeclaration %qD differs in %<constexpr%>", new_decl
);
1232 error ("from previous declaration %q+D", old_decl
);
1238 /* DECL is a redeclaration of a function or function template. If
1239 it does have default arguments issue a diagnostic. Note: this
1240 function is used to enforce the requirements in C++11 8.3.6 about
1241 no default arguments in redeclarations. */
1244 check_redeclaration_no_default_args (tree decl
)
1246 gcc_assert (DECL_DECLARES_FUNCTION_P (decl
));
1248 for (tree t
= FUNCTION_FIRST_USER_PARMTYPE (decl
);
1249 t
&& t
!= void_list_node
; t
= TREE_CHAIN (t
))
1250 if (TREE_PURPOSE (t
))
1252 permerror (input_location
,
1253 "redeclaration of %q#D may not have default "
1259 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1260 && lookup_attribute ("gnu_inline", \
1261 DECL_ATTRIBUTES (fn)))
1263 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1264 If the redeclaration is invalid, a diagnostic is issued, and the
1265 error_mark_node is returned. Otherwise, OLDDECL is returned.
1267 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1270 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1273 duplicate_decls (tree newdecl
, tree olddecl
, bool newdecl_is_friend
)
1275 unsigned olddecl_uid
= DECL_UID (olddecl
);
1276 int olddecl_friend
= 0, types_match
= 0, hidden_friend
= 0;
1277 int new_defines_function
= 0;
1278 tree new_template_info
;
1280 if (newdecl
== olddecl
)
1283 types_match
= decls_match (newdecl
, olddecl
);
1285 /* If either the type of the new decl or the type of the old decl is an
1286 error_mark_node, then that implies that we have already issued an
1287 error (earlier) for some bogus type specification, and in that case,
1288 it is rather pointless to harass the user with yet more error message
1289 about the same declaration, so just pretend the types match here. */
1290 if (TREE_TYPE (newdecl
) == error_mark_node
1291 || TREE_TYPE (olddecl
) == error_mark_node
)
1292 return error_mark_node
;
1294 if (UDLIT_OPER_P (DECL_NAME (newdecl
))
1295 && UDLIT_OPER_P (DECL_NAME (olddecl
)))
1297 if (TREE_CODE (newdecl
) == TEMPLATE_DECL
1298 && TREE_CODE (olddecl
) != TEMPLATE_DECL
1299 && check_raw_literal_operator (olddecl
))
1300 error ("literal operator template %q+D conflicts with"
1301 " raw literal operator %qD", newdecl
, olddecl
);
1302 else if (TREE_CODE (newdecl
) != TEMPLATE_DECL
1303 && TREE_CODE (olddecl
) == TEMPLATE_DECL
1304 && check_raw_literal_operator (newdecl
))
1305 error ("raw literal operator %q+D conflicts with"
1306 " literal operator template %qD", newdecl
, olddecl
);
1309 if (DECL_P (olddecl
)
1310 && TREE_CODE (newdecl
) == FUNCTION_DECL
1311 && TREE_CODE (olddecl
) == FUNCTION_DECL
1312 && (DECL_UNINLINABLE (newdecl
) || DECL_UNINLINABLE (olddecl
)))
1314 if (DECL_DECLARED_INLINE_P (newdecl
)
1315 && DECL_UNINLINABLE (newdecl
)
1316 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl
)))
1317 /* Already warned elsewhere. */;
1318 else if (DECL_DECLARED_INLINE_P (olddecl
)
1319 && DECL_UNINLINABLE (olddecl
)
1320 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl
)))
1321 /* Already warned. */;
1322 else if (DECL_DECLARED_INLINE_P (newdecl
)
1323 && DECL_UNINLINABLE (olddecl
)
1324 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl
)))
1326 if (warning (OPT_Wattributes
, "function %q+D redeclared as inline",
1328 inform (DECL_SOURCE_LOCATION (olddecl
),
1329 "previous declaration of %qD with attribute noinline",
1332 else if (DECL_DECLARED_INLINE_P (olddecl
)
1333 && DECL_UNINLINABLE (newdecl
)
1334 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl
)))
1336 if (warning (OPT_Wattributes
, "function %q+D redeclared with "
1337 "attribute noinline", newdecl
))
1338 inform (DECL_SOURCE_LOCATION (olddecl
),
1339 "previous declaration of %qD was inline",
1344 /* Check for redeclaration and other discrepancies. */
1345 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1346 && DECL_ARTIFICIAL (olddecl
))
1348 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl
));
1349 if (TREE_CODE (newdecl
) != FUNCTION_DECL
)
1351 /* Avoid warnings redeclaring built-ins which have not been
1352 explicitly declared. */
1353 if (DECL_ANTICIPATED (olddecl
))
1356 /* If you declare a built-in or predefined function name as static,
1357 the old definition is overridden, but optionally warn this was a
1358 bad choice of name. */
1359 if (! TREE_PUBLIC (newdecl
))
1361 warning (OPT_Wshadow
,
1362 DECL_BUILT_IN (olddecl
)
1363 ? G_("shadowing built-in function %q#D")
1364 : G_("shadowing library function %q#D"), olddecl
);
1365 /* Discard the old built-in function. */
1368 /* If the built-in is not ansi, then programs can override
1369 it even globally without an error. */
1370 else if (! DECL_BUILT_IN (olddecl
))
1371 warning (0, "library function %q#D redeclared as non-function %q#D",
1374 error ("declaration of %q#D conflicts with built-in "
1375 "declaration %q#D", newdecl
, olddecl
);
1378 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl
))
1380 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl
));
1381 error_at (DECL_SOURCE_LOCATION (newdecl
),
1382 "redeclaration of %<pragma omp declare reduction%>");
1383 inform (DECL_SOURCE_LOCATION (olddecl
),
1384 "previous %<pragma omp declare reduction%> declaration");
1385 return error_mark_node
;
1387 else if (!types_match
)
1389 /* Avoid warnings redeclaring built-ins which have not been
1390 explicitly declared. */
1391 if (DECL_ANTICIPATED (olddecl
))
1393 /* Deal with fileptr_type_node. FILE type is not known
1394 at the time we create the builtins. */
1397 for (t1
= TYPE_ARG_TYPES (TREE_TYPE (newdecl
)),
1398 t2
= TYPE_ARG_TYPES (TREE_TYPE (olddecl
));
1400 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
1403 else if (TREE_VALUE (t2
) == fileptr_type_node
)
1405 tree t
= TREE_VALUE (t1
);
1408 && TYPE_IDENTIFIER (TREE_TYPE (t
))
1409 == get_identifier ("FILE")
1410 && compparms (TREE_CHAIN (t1
), TREE_CHAIN (t2
)))
1412 tree oldargs
= TYPE_ARG_TYPES (TREE_TYPE (olddecl
));
1414 TYPE_ARG_TYPES (TREE_TYPE (olddecl
))
1415 = TYPE_ARG_TYPES (TREE_TYPE (newdecl
));
1416 types_match
= decls_match (newdecl
, olddecl
);
1418 return duplicate_decls (newdecl
, olddecl
,
1420 TYPE_ARG_TYPES (TREE_TYPE (olddecl
)) = oldargs
;
1423 else if (! same_type_p (TREE_VALUE (t1
), TREE_VALUE (t2
)))
1426 else if ((DECL_EXTERN_C_P (newdecl
)
1427 && DECL_EXTERN_C_P (olddecl
))
1428 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl
)),
1429 TYPE_ARG_TYPES (TREE_TYPE (olddecl
))))
1431 /* A near match; override the builtin. */
1433 if (TREE_PUBLIC (newdecl
))
1434 warning (0, "new declaration %q#D ambiguates built-in "
1435 "declaration %q#D", newdecl
, olddecl
);
1437 warning (OPT_Wshadow
,
1438 DECL_BUILT_IN (olddecl
)
1439 ? G_("shadowing built-in function %q#D")
1440 : G_("shadowing library function %q#D"), olddecl
);
1443 /* Discard the old built-in function. */
1446 /* Replace the old RTL to avoid problems with inlining. */
1447 COPY_DECL_RTL (newdecl
, olddecl
);
1449 /* Even if the types match, prefer the new declarations type for
1450 built-ins which have not been explicitly declared, for
1451 exception lists, etc... */
1452 else if (DECL_IS_BUILTIN (olddecl
))
1454 tree type
= TREE_TYPE (newdecl
);
1455 tree attribs
= (*targetm
.merge_type_attributes
)
1456 (TREE_TYPE (olddecl
), type
);
1458 type
= cp_build_type_attribute_variant (type
, attribs
);
1459 TREE_TYPE (newdecl
) = TREE_TYPE (olddecl
) = type
;
1462 /* If a function is explicitly declared "throw ()", propagate that to
1463 the corresponding builtin. */
1464 if (DECL_BUILT_IN_CLASS (olddecl
) == BUILT_IN_NORMAL
1465 && DECL_ANTICIPATED (olddecl
)
1466 && TREE_NOTHROW (newdecl
)
1467 && !TREE_NOTHROW (olddecl
))
1469 enum built_in_function fncode
= DECL_FUNCTION_CODE (olddecl
);
1470 tree tmpdecl
= builtin_decl_explicit (fncode
);
1471 if (tmpdecl
&& tmpdecl
!= olddecl
&& types_match
)
1472 TREE_NOTHROW (tmpdecl
) = 1;
1475 /* Whether or not the builtin can throw exceptions has no
1476 bearing on this declarator. */
1477 TREE_NOTHROW (olddecl
) = 0;
1479 if (DECL_THIS_STATIC (newdecl
) && !DECL_THIS_STATIC (olddecl
))
1481 /* If a builtin function is redeclared as `static', merge
1482 the declarations, but make the original one static. */
1483 DECL_THIS_STATIC (olddecl
) = 1;
1484 TREE_PUBLIC (olddecl
) = 0;
1486 /* Make the old declaration consistent with the new one so
1487 that all remnants of the builtin-ness of this function
1488 will be banished. */
1489 SET_DECL_LANGUAGE (olddecl
, DECL_LANGUAGE (newdecl
));
1490 COPY_DECL_RTL (newdecl
, olddecl
);
1493 else if (TREE_CODE (olddecl
) != TREE_CODE (newdecl
))
1495 /* C++ Standard, 3.3, clause 4:
1496 "[Note: a namespace name or a class template name must be unique
1497 in its declarative region (7.3.2, clause 14). ]" */
1498 if (TREE_CODE (olddecl
) != NAMESPACE_DECL
1499 && TREE_CODE (newdecl
) != NAMESPACE_DECL
1500 && (TREE_CODE (olddecl
) != TEMPLATE_DECL
1501 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl
)) != TYPE_DECL
)
1502 && (TREE_CODE (newdecl
) != TEMPLATE_DECL
1503 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl
)) != TYPE_DECL
))
1505 if ((TREE_CODE (olddecl
) == TYPE_DECL
&& DECL_ARTIFICIAL (olddecl
)
1506 && TREE_CODE (newdecl
) != TYPE_DECL
)
1507 || (TREE_CODE (newdecl
) == TYPE_DECL
&& DECL_ARTIFICIAL (newdecl
)
1508 && TREE_CODE (olddecl
) != TYPE_DECL
))
1510 /* We do nothing special here, because C++ does such nasty
1511 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1512 get shadowed, and know that if we need to find a TYPE_DECL
1513 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1514 slot of the identifier. */
1518 if ((TREE_CODE (newdecl
) == FUNCTION_DECL
1519 && DECL_FUNCTION_TEMPLATE_P (olddecl
))
1520 || (TREE_CODE (olddecl
) == FUNCTION_DECL
1521 && DECL_FUNCTION_TEMPLATE_P (newdecl
)))
1525 error ("%q#D redeclared as different kind of symbol", newdecl
);
1526 if (TREE_CODE (olddecl
) == TREE_LIST
)
1527 olddecl
= TREE_VALUE (olddecl
);
1528 inform (DECL_SOURCE_LOCATION (olddecl
),
1529 "previous declaration %q#D", olddecl
);
1531 return error_mark_node
;
1533 else if (!types_match
)
1535 if (CP_DECL_CONTEXT (newdecl
) != CP_DECL_CONTEXT (olddecl
))
1536 /* These are certainly not duplicate declarations; they're
1537 from different scopes. */
1540 if (TREE_CODE (newdecl
) == TEMPLATE_DECL
)
1542 /* The name of a class template may not be declared to refer to
1543 any other template, class, function, object, namespace, value,
1544 or type in the same scope. */
1545 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl
)) == TYPE_DECL
1546 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl
)) == TYPE_DECL
)
1548 error ("conflicting declaration of template %q#D", newdecl
);
1549 inform (DECL_SOURCE_LOCATION (olddecl
),
1550 "previous declaration %q#D", olddecl
);
1551 return error_mark_node
;
1553 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl
)) == FUNCTION_DECL
1554 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl
)) == FUNCTION_DECL
1555 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl
))),
1556 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl
))))
1557 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl
),
1558 DECL_TEMPLATE_PARMS (olddecl
))
1559 /* Template functions can be disambiguated by
1561 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl
)),
1562 TREE_TYPE (TREE_TYPE (olddecl
))))
1564 error ("ambiguating new declaration %q#D", newdecl
);
1565 inform (DECL_SOURCE_LOCATION (olddecl
),
1566 "old declaration %q#D", olddecl
);
1570 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1572 if (DECL_EXTERN_C_P (newdecl
) && DECL_EXTERN_C_P (olddecl
))
1574 error ("conflicting declaration of C function %q#D",
1576 inform (DECL_SOURCE_LOCATION (olddecl
),
1577 "previous declaration %q#D", olddecl
);
1580 /* For function versions, params and types match, but they
1581 are not ambiguous. */
1582 else if ((!DECL_FUNCTION_VERSIONED (newdecl
)
1583 && !DECL_FUNCTION_VERSIONED (olddecl
))
1584 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl
)),
1585 TYPE_ARG_TYPES (TREE_TYPE (olddecl
))))
1587 error ("ambiguating new declaration of %q#D", newdecl
);
1588 inform (DECL_SOURCE_LOCATION (olddecl
),
1589 "old declaration %q#D", olddecl
);
1590 return error_mark_node
;
1597 error ("conflicting declaration %q#D", newdecl
);
1598 inform (DECL_SOURCE_LOCATION (olddecl
),
1599 "previous declaration as %q#D", olddecl
);
1600 return error_mark_node
;
1603 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
1604 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl
)
1605 && (!DECL_TEMPLATE_INFO (newdecl
)
1606 || (DECL_TI_TEMPLATE (newdecl
)
1607 != DECL_TI_TEMPLATE (olddecl
))))
1608 || (DECL_TEMPLATE_SPECIALIZATION (newdecl
)
1609 && (!DECL_TEMPLATE_INFO (olddecl
)
1610 || (DECL_TI_TEMPLATE (olddecl
)
1611 != DECL_TI_TEMPLATE (newdecl
))))))
1612 /* It's OK to have a template specialization and a non-template
1613 with the same type, or to have specializations of two
1614 different templates with the same type. Note that if one is a
1615 specialization, and the other is an instantiation of the same
1616 template, that we do not exit at this point. That situation
1617 can occur if we instantiate a template class, and then
1618 specialize one of its methods. This situation is valid, but
1619 the declarations must be merged in the usual way. */
1621 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
1622 && ((DECL_TEMPLATE_INSTANTIATION (olddecl
)
1623 && !DECL_USE_TEMPLATE (newdecl
))
1624 || (DECL_TEMPLATE_INSTANTIATION (newdecl
)
1625 && !DECL_USE_TEMPLATE (olddecl
))))
1626 /* One of the declarations is a template instantiation, and the
1627 other is not a template at all. That's OK. */
1629 else if (TREE_CODE (newdecl
) == NAMESPACE_DECL
)
1631 /* In [namespace.alias] we have:
1633 In a declarative region, a namespace-alias-definition can be
1634 used to redefine a namespace-alias declared in that declarative
1635 region to refer only to the namespace to which it already
1638 Therefore, if we encounter a second alias directive for the same
1639 alias, we can just ignore the second directive. */
1640 if (DECL_NAMESPACE_ALIAS (newdecl
)
1641 && (DECL_NAMESPACE_ALIAS (newdecl
)
1642 == DECL_NAMESPACE_ALIAS (olddecl
)))
1644 /* [namespace.alias]
1646 A namespace-name or namespace-alias shall not be declared as
1647 the name of any other entity in the same declarative region.
1648 A namespace-name defined at global scope shall not be
1649 declared as the name of any other entity in any global scope
1651 error ("conflicting declaration of namespace %qD", newdecl
);
1652 inform (DECL_SOURCE_LOCATION (olddecl
),
1653 "previous declaration of namespace %qD here", olddecl
);
1654 return error_mark_node
;
1658 const char *errmsg
= redeclaration_error_message (newdecl
, olddecl
);
1661 error_at (DECL_SOURCE_LOCATION (newdecl
), errmsg
, newdecl
);
1662 if (DECL_NAME (olddecl
) != NULL_TREE
)
1663 inform (input_location
,
1664 (DECL_INITIAL (olddecl
) && namespace_bindings_p ())
1665 ? G_("%q+#D previously defined here")
1666 : G_("%q+#D previously declared here"), olddecl
);
1667 return error_mark_node
;
1669 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
1670 && DECL_INITIAL (olddecl
) != NULL_TREE
1671 && !prototype_p (TREE_TYPE (olddecl
))
1672 && prototype_p (TREE_TYPE (newdecl
)))
1674 /* Prototype decl follows defn w/o prototype. */
1675 if (warning_at (DECL_SOURCE_LOCATION (newdecl
), 0,
1676 "prototype specified for %q#D", newdecl
))
1677 inform (DECL_SOURCE_LOCATION (olddecl
),
1678 "previous non-prototype definition here");
1680 else if (VAR_OR_FUNCTION_DECL_P (olddecl
)
1681 && DECL_LANGUAGE (newdecl
) != DECL_LANGUAGE (olddecl
))
1684 If two declarations of the same function or object
1685 specify different linkage-specifications ..., the program
1686 is ill-formed.... Except for functions with C++ linkage,
1687 a function declaration without a linkage specification
1688 shall not precede the first linkage specification for
1689 that function. A function can be declared without a
1690 linkage specification after an explicit linkage
1691 specification has been seen; the linkage explicitly
1692 specified in the earlier declaration is not affected by
1693 such a function declaration.
1695 DR 563 raises the question why the restrictions on
1696 functions should not also apply to objects. Older
1697 versions of G++ silently ignore the linkage-specification
1705 which is clearly wrong. Therefore, we now treat objects
1707 if (current_lang_depth () == 0)
1709 /* There is no explicit linkage-specification, so we use
1710 the linkage from the previous declaration. */
1711 if (!DECL_LANG_SPECIFIC (newdecl
))
1712 retrofit_lang_decl (newdecl
);
1713 SET_DECL_LANGUAGE (newdecl
, DECL_LANGUAGE (olddecl
));
1717 error ("conflicting declaration of %q#D with %qL linkage",
1718 newdecl
, DECL_LANGUAGE (newdecl
));
1719 inform (DECL_SOURCE_LOCATION (olddecl
),
1720 "previous declaration with %qL linkage",
1721 DECL_LANGUAGE (olddecl
));
1725 if (DECL_LANG_SPECIFIC (olddecl
) && DECL_USE_TEMPLATE (olddecl
))
1727 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
)
1729 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1730 if (DECL_FUNCTION_MEMBER_P (olddecl
)
1731 && (/* grokfndecl passes member function templates too
1732 as FUNCTION_DECLs. */
1733 DECL_TEMPLATE_INFO (olddecl
)
1735 Default arguments for a member function of a class
1736 template shall be specified on the initial declaration
1737 of the member function within the class template. */
1738 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl
))))
1739 check_redeclaration_no_default_args (newdecl
);
1742 tree t1
= FUNCTION_FIRST_USER_PARMTYPE (olddecl
);
1743 tree t2
= FUNCTION_FIRST_USER_PARMTYPE (newdecl
);
1746 for (; t1
&& t1
!= void_list_node
;
1747 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
), i
++)
1748 if (TREE_PURPOSE (t1
) && TREE_PURPOSE (t2
))
1750 if (1 == simple_cst_equal (TREE_PURPOSE (t1
),
1753 if (permerror (input_location
,
1754 "default argument given for parameter "
1755 "%d of %q#D", i
, newdecl
))
1756 inform (DECL_SOURCE_LOCATION (olddecl
),
1757 "previous specification in %q#D here",
1762 error ("default argument given for parameter %d "
1763 "of %q#D", i
, newdecl
);
1764 inform (DECL_SOURCE_LOCATION (olddecl
),
1765 "previous specification in %q#D here",
1773 /* Do not merge an implicit typedef with an explicit one. In:
1777 typedef class A A __attribute__ ((foo));
1779 the attribute should apply only to the typedef. */
1780 if (TREE_CODE (olddecl
) == TYPE_DECL
1781 && (DECL_IMPLICIT_TYPEDEF_P (olddecl
)
1782 || DECL_IMPLICIT_TYPEDEF_P (newdecl
)))
1785 /* If new decl is `static' and an `extern' was seen previously,
1787 warn_extern_redeclared_static (newdecl
, olddecl
);
1789 if (!validate_constexpr_redeclaration (olddecl
, newdecl
))
1790 return error_mark_node
;
1792 /* We have committed to returning 1 at this point. */
1793 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1795 /* Now that functions must hold information normally held
1796 by field decls, there is extra work to do so that
1797 declaration information does not get destroyed during
1799 if (DECL_VINDEX (olddecl
))
1800 DECL_VINDEX (newdecl
) = DECL_VINDEX (olddecl
);
1801 if (DECL_CONTEXT (olddecl
))
1802 DECL_CONTEXT (newdecl
) = DECL_CONTEXT (olddecl
);
1803 DECL_STATIC_CONSTRUCTOR (newdecl
) |= DECL_STATIC_CONSTRUCTOR (olddecl
);
1804 DECL_STATIC_DESTRUCTOR (newdecl
) |= DECL_STATIC_DESTRUCTOR (olddecl
);
1805 DECL_PURE_VIRTUAL_P (newdecl
) |= DECL_PURE_VIRTUAL_P (olddecl
);
1806 DECL_VIRTUAL_P (newdecl
) |= DECL_VIRTUAL_P (olddecl
);
1807 DECL_INVALID_OVERRIDER_P (newdecl
) |= DECL_INVALID_OVERRIDER_P (olddecl
);
1808 DECL_THIS_STATIC (newdecl
) |= DECL_THIS_STATIC (olddecl
);
1809 if (DECL_OVERLOADED_OPERATOR_P (olddecl
) != ERROR_MARK
)
1810 SET_OVERLOADED_OPERATOR_CODE
1811 (newdecl
, DECL_OVERLOADED_OPERATOR_P (olddecl
));
1812 new_defines_function
= DECL_INITIAL (newdecl
) != NULL_TREE
;
1814 /* Optionally warn about more than one declaration for the same
1815 name, but don't warn about a function declaration followed by a
1817 if (warn_redundant_decls
&& ! DECL_ARTIFICIAL (olddecl
)
1818 && !(new_defines_function
&& DECL_INITIAL (olddecl
) == NULL_TREE
)
1819 /* Don't warn about extern decl followed by definition. */
1820 && !(DECL_EXTERNAL (olddecl
) && ! DECL_EXTERNAL (newdecl
))
1821 /* Don't warn about friends, let add_friend take care of it. */
1822 && ! (newdecl_is_friend
|| DECL_FRIEND_P (olddecl
))
1823 /* Don't warn about declaration followed by specialization. */
1824 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl
)
1825 || DECL_TEMPLATE_SPECIALIZATION (olddecl
)))
1827 if (warning (OPT_Wredundant_decls
,
1828 "redundant redeclaration of %qD in same scope",
1830 inform (DECL_SOURCE_LOCATION (olddecl
),
1831 "previous declaration of %qD", olddecl
);
1834 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl
)
1835 && DECL_TEMPLATE_SPECIALIZATION (newdecl
)))
1837 if (DECL_DELETED_FN (newdecl
))
1839 error ("deleted definition of %qD", newdecl
);
1840 inform (DECL_SOURCE_LOCATION (olddecl
),
1841 "previous declaration of %qD", olddecl
);
1843 DECL_DELETED_FN (newdecl
) |= DECL_DELETED_FN (olddecl
);
1847 /* Deal with C++: must preserve virtual function table size. */
1848 if (TREE_CODE (olddecl
) == TYPE_DECL
)
1850 tree newtype
= TREE_TYPE (newdecl
);
1851 tree oldtype
= TREE_TYPE (olddecl
);
1853 if (newtype
!= error_mark_node
&& oldtype
!= error_mark_node
1854 && TYPE_LANG_SPECIFIC (newtype
) && TYPE_LANG_SPECIFIC (oldtype
))
1855 CLASSTYPE_FRIEND_CLASSES (newtype
)
1856 = CLASSTYPE_FRIEND_CLASSES (oldtype
);
1858 DECL_ORIGINAL_TYPE (newdecl
) = DECL_ORIGINAL_TYPE (olddecl
);
1861 /* Copy all the DECL_... slots specified in the new decl
1862 except for any that we copy here from the old type. */
1863 DECL_ATTRIBUTES (newdecl
)
1864 = (*targetm
.merge_decl_attributes
) (olddecl
, newdecl
);
1866 if (TREE_CODE (newdecl
) == TEMPLATE_DECL
)
1870 old_result
= DECL_TEMPLATE_RESULT (olddecl
);
1871 new_result
= DECL_TEMPLATE_RESULT (newdecl
);
1872 TREE_TYPE (olddecl
) = TREE_TYPE (old_result
);
1873 DECL_TEMPLATE_SPECIALIZATIONS (olddecl
)
1874 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl
),
1875 DECL_TEMPLATE_SPECIALIZATIONS (newdecl
));
1877 DECL_ATTRIBUTES (old_result
)
1878 = (*targetm
.merge_decl_attributes
) (old_result
, new_result
);
1880 if (DECL_FUNCTION_TEMPLATE_P (newdecl
))
1882 /* Per C++11 8.3.6/4, default arguments cannot be added in later
1883 declarations of a function template. */
1884 check_redeclaration_no_default_args (newdecl
);
1886 check_default_args (newdecl
);
1888 if (GNU_INLINE_P (old_result
) != GNU_INLINE_P (new_result
)
1889 && DECL_INITIAL (new_result
))
1891 if (DECL_INITIAL (old_result
))
1892 DECL_UNINLINABLE (old_result
) = 1;
1894 DECL_UNINLINABLE (old_result
) = DECL_UNINLINABLE (new_result
);
1895 DECL_EXTERNAL (old_result
) = DECL_EXTERNAL (new_result
);
1896 DECL_NOT_REALLY_EXTERN (old_result
)
1897 = DECL_NOT_REALLY_EXTERN (new_result
);
1898 DECL_INTERFACE_KNOWN (old_result
)
1899 = DECL_INTERFACE_KNOWN (new_result
);
1900 DECL_DECLARED_INLINE_P (old_result
)
1901 = DECL_DECLARED_INLINE_P (new_result
);
1902 DECL_DISREGARD_INLINE_LIMITS (old_result
)
1903 |= DECL_DISREGARD_INLINE_LIMITS (new_result
);
1908 DECL_DECLARED_INLINE_P (old_result
)
1909 |= DECL_DECLARED_INLINE_P (new_result
);
1910 DECL_DISREGARD_INLINE_LIMITS (old_result
)
1911 |= DECL_DISREGARD_INLINE_LIMITS (new_result
);
1912 check_redeclaration_exception_specification (newdecl
, olddecl
);
1916 /* If the new declaration is a definition, update the file and
1917 line information on the declaration, and also make
1918 the old declaration the same definition. */
1919 if (DECL_INITIAL (new_result
) != NULL_TREE
)
1921 DECL_SOURCE_LOCATION (olddecl
)
1922 = DECL_SOURCE_LOCATION (old_result
)
1923 = DECL_SOURCE_LOCATION (newdecl
);
1924 DECL_INITIAL (old_result
) = DECL_INITIAL (new_result
);
1925 if (DECL_FUNCTION_TEMPLATE_P (newdecl
))
1928 DECL_ARGUMENTS (old_result
)
1929 = DECL_ARGUMENTS (new_result
);
1930 for (parm
= DECL_ARGUMENTS (old_result
); parm
;
1931 parm
= DECL_CHAIN (parm
))
1932 DECL_CONTEXT (parm
) = old_result
;
1941 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1942 check_redeclaration_exception_specification (newdecl
, olddecl
);
1944 /* Automatically handles default parameters. */
1945 tree oldtype
= TREE_TYPE (olddecl
);
1948 /* For typedefs use the old type, as the new type's DECL_NAME points
1949 at newdecl, which will be ggc_freed. */
1950 if (TREE_CODE (newdecl
) == TYPE_DECL
)
1953 /* Merge the data types specified in the two decls. */
1954 newtype
= merge_types (TREE_TYPE (newdecl
), TREE_TYPE (olddecl
));
1956 if (VAR_P (newdecl
))
1958 DECL_THIS_EXTERN (newdecl
) |= DECL_THIS_EXTERN (olddecl
);
1959 DECL_INITIALIZED_P (newdecl
) |= DECL_INITIALIZED_P (olddecl
);
1960 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl
)
1961 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl
);
1962 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl
)
1963 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl
);
1965 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
1966 if (DECL_LANG_SPECIFIC (olddecl
)
1967 && CP_DECL_THREADPRIVATE_P (olddecl
))
1969 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
1970 if (!DECL_LANG_SPECIFIC (newdecl
))
1971 retrofit_lang_decl (newdecl
);
1973 set_decl_tls_model (newdecl
, DECL_TLS_MODEL (olddecl
));
1974 CP_DECL_THREADPRIVATE_P (newdecl
) = 1;
1978 TREE_TYPE (newdecl
) = TREE_TYPE (olddecl
) = newtype
;
1980 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1981 check_default_args (newdecl
);
1983 /* Lay the type out, unless already done. */
1984 if (! same_type_p (newtype
, oldtype
)
1985 && TREE_TYPE (newdecl
) != error_mark_node
1986 && !(processing_template_decl
&& uses_template_parms (newdecl
)))
1987 layout_type (TREE_TYPE (newdecl
));
1989 if ((VAR_P (newdecl
)
1990 || TREE_CODE (newdecl
) == PARM_DECL
1991 || TREE_CODE (newdecl
) == RESULT_DECL
1992 || TREE_CODE (newdecl
) == FIELD_DECL
1993 || TREE_CODE (newdecl
) == TYPE_DECL
)
1994 && !(processing_template_decl
&& uses_template_parms (newdecl
)))
1995 layout_decl (newdecl
, 0);
1997 /* Merge the type qualifiers. */
1998 if (TREE_READONLY (newdecl
))
1999 TREE_READONLY (olddecl
) = 1;
2000 if (TREE_THIS_VOLATILE (newdecl
))
2001 TREE_THIS_VOLATILE (olddecl
) = 1;
2002 if (TREE_NOTHROW (newdecl
))
2003 TREE_NOTHROW (olddecl
) = 1;
2005 /* Merge deprecatedness. */
2006 if (TREE_DEPRECATED (newdecl
))
2007 TREE_DEPRECATED (olddecl
) = 1;
2009 /* Preserve function specific target and optimization options */
2010 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2012 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl
)
2013 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl
))
2014 DECL_FUNCTION_SPECIFIC_TARGET (newdecl
)
2015 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl
);
2017 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl
)
2018 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl
))
2019 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl
)
2020 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl
);
2023 /* Merge the initialization information. */
2024 if (DECL_INITIAL (newdecl
) == NULL_TREE
2025 && DECL_INITIAL (olddecl
) != NULL_TREE
)
2027 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
2028 DECL_SOURCE_LOCATION (newdecl
) = DECL_SOURCE_LOCATION (olddecl
);
2029 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2031 DECL_SAVED_TREE (newdecl
) = DECL_SAVED_TREE (olddecl
);
2032 DECL_STRUCT_FUNCTION (newdecl
) = DECL_STRUCT_FUNCTION (olddecl
);
2036 /* Merge the section attribute.
2037 We want to issue an error if the sections conflict but that must be
2038 done later in decl_attributes since we are called before attributes
2040 if ((DECL_EXTERNAL (olddecl
) || TREE_PUBLIC (olddecl
) || TREE_STATIC (olddecl
))
2041 && DECL_SECTION_NAME (newdecl
) == NULL
2042 && DECL_SECTION_NAME (olddecl
) != NULL
)
2043 set_decl_section_name (newdecl
, DECL_SECTION_NAME (olddecl
));
2045 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2047 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl
)
2048 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl
);
2049 DECL_NO_LIMIT_STACK (newdecl
) |= DECL_NO_LIMIT_STACK (olddecl
);
2050 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
2051 TREE_NOTHROW (newdecl
) |= TREE_NOTHROW (olddecl
);
2052 DECL_IS_MALLOC (newdecl
) |= DECL_IS_MALLOC (olddecl
);
2053 DECL_IS_OPERATOR_NEW (newdecl
) |= DECL_IS_OPERATOR_NEW (olddecl
);
2054 DECL_PURE_P (newdecl
) |= DECL_PURE_P (olddecl
);
2055 TREE_READONLY (newdecl
) |= TREE_READONLY (olddecl
);
2056 DECL_LOOPING_CONST_OR_PURE_P (newdecl
)
2057 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl
);
2058 /* Keep the old RTL. */
2059 COPY_DECL_RTL (olddecl
, newdecl
);
2061 else if (VAR_P (newdecl
)
2062 && (DECL_SIZE (olddecl
) || !DECL_SIZE (newdecl
)))
2064 /* Keep the old RTL. We cannot keep the old RTL if the old
2065 declaration was for an incomplete object and the new
2066 declaration is not since many attributes of the RTL will
2068 COPY_DECL_RTL (olddecl
, newdecl
);
2071 /* If cannot merge, then use the new type and qualifiers,
2072 and don't preserve the old rtl. */
2075 /* Clean out any memory we had of the old declaration. */
2076 tree oldstatic
= value_member (olddecl
, static_aggregates
);
2078 TREE_VALUE (oldstatic
) = error_mark_node
;
2080 TREE_TYPE (olddecl
) = TREE_TYPE (newdecl
);
2081 TREE_READONLY (olddecl
) = TREE_READONLY (newdecl
);
2082 TREE_THIS_VOLATILE (olddecl
) = TREE_THIS_VOLATILE (newdecl
);
2083 TREE_SIDE_EFFECTS (olddecl
) = TREE_SIDE_EFFECTS (newdecl
);
2086 /* Merge the storage class information. */
2087 merge_weak (newdecl
, olddecl
);
2089 if ((TREE_CODE (olddecl
) == FUNCTION_DECL
|| TREE_CODE (olddecl
) == VAR_DECL
)
2090 && (DECL_EXTERNAL (olddecl
) || TREE_PUBLIC (olddecl
) || TREE_STATIC (olddecl
))
2091 && DECL_ONE_ONLY (olddecl
))
2093 struct symtab_node
*symbol
;
2094 if (TREE_CODE (olddecl
) == FUNCTION_DECL
)
2095 symbol
= cgraph_node::get_create (newdecl
);
2097 symbol
= varpool_node::get_create (newdecl
);
2098 symbol
->set_comdat_group (symtab_node::get
2099 (olddecl
)->get_comdat_group ());
2102 DECL_DEFER_OUTPUT (newdecl
) |= DECL_DEFER_OUTPUT (olddecl
);
2103 TREE_PUBLIC (newdecl
) = TREE_PUBLIC (olddecl
);
2104 TREE_STATIC (olddecl
) = TREE_STATIC (newdecl
) |= TREE_STATIC (olddecl
);
2105 if (! DECL_EXTERNAL (olddecl
))
2106 DECL_EXTERNAL (newdecl
) = 0;
2108 new_template_info
= NULL_TREE
;
2109 if (DECL_LANG_SPECIFIC (newdecl
) && DECL_LANG_SPECIFIC (olddecl
))
2111 bool new_redefines_gnu_inline
= false;
2113 if (new_defines_function
2114 && ((DECL_INTERFACE_KNOWN (olddecl
)
2115 && TREE_CODE (olddecl
) == FUNCTION_DECL
)
2116 || (TREE_CODE (olddecl
) == TEMPLATE_DECL
2117 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl
))
2118 == FUNCTION_DECL
))))
2122 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
2123 fn
= DECL_TEMPLATE_RESULT (olddecl
);
2125 new_redefines_gnu_inline
= GNU_INLINE_P (fn
) && DECL_INITIAL (fn
);
2128 if (!new_redefines_gnu_inline
)
2130 DECL_INTERFACE_KNOWN (newdecl
) |= DECL_INTERFACE_KNOWN (olddecl
);
2131 DECL_NOT_REALLY_EXTERN (newdecl
) |= DECL_NOT_REALLY_EXTERN (olddecl
);
2132 DECL_COMDAT (newdecl
) |= DECL_COMDAT (olddecl
);
2134 DECL_TEMPLATE_INSTANTIATED (newdecl
)
2135 |= DECL_TEMPLATE_INSTANTIATED (olddecl
);
2136 DECL_ODR_USED (newdecl
) |= DECL_ODR_USED (olddecl
);
2138 /* If the OLDDECL is an instantiation and/or specialization,
2139 then the NEWDECL must be too. But, it may not yet be marked
2140 as such if the caller has created NEWDECL, but has not yet
2141 figured out that it is a redeclaration. */
2142 if (!DECL_USE_TEMPLATE (newdecl
))
2143 DECL_USE_TEMPLATE (newdecl
) = DECL_USE_TEMPLATE (olddecl
);
2145 /* Don't really know how much of the language-specific
2146 values we should copy from old to new. */
2147 DECL_IN_AGGR_P (newdecl
) = DECL_IN_AGGR_P (olddecl
);
2148 DECL_REPO_AVAILABLE_P (newdecl
) = DECL_REPO_AVAILABLE_P (olddecl
);
2149 DECL_INITIALIZED_IN_CLASS_P (newdecl
)
2150 |= DECL_INITIALIZED_IN_CLASS_P (olddecl
);
2152 if (LANG_DECL_HAS_MIN (newdecl
))
2154 DECL_LANG_SPECIFIC (newdecl
)->u
.min
.u2
=
2155 DECL_LANG_SPECIFIC (olddecl
)->u
.min
.u2
;
2156 if (DECL_TEMPLATE_INFO (newdecl
))
2157 new_template_info
= DECL_TEMPLATE_INFO (newdecl
);
2158 DECL_TEMPLATE_INFO (newdecl
) = DECL_TEMPLATE_INFO (olddecl
);
2160 /* Only functions have these fields. */
2161 if (DECL_DECLARES_FUNCTION_P (newdecl
))
2163 DECL_NONCONVERTING_P (newdecl
) = DECL_NONCONVERTING_P (olddecl
);
2164 olddecl_friend
= DECL_FRIEND_P (olddecl
);
2165 hidden_friend
= (DECL_ANTICIPATED (olddecl
)
2166 && DECL_HIDDEN_FRIEND_P (olddecl
)
2167 && newdecl_is_friend
);
2168 DECL_BEFRIENDING_CLASSES (newdecl
)
2169 = chainon (DECL_BEFRIENDING_CLASSES (newdecl
),
2170 DECL_BEFRIENDING_CLASSES (olddecl
));
2171 /* DECL_THUNKS is only valid for virtual functions,
2172 otherwise it is a DECL_FRIEND_CONTEXT. */
2173 if (DECL_VIRTUAL_P (newdecl
))
2174 SET_DECL_THUNKS (newdecl
, DECL_THUNKS (olddecl
));
2176 /* Only variables have this field. */
2177 else if (VAR_P (newdecl
)
2178 && VAR_HAD_UNKNOWN_BOUND (olddecl
))
2179 SET_VAR_HAD_UNKNOWN_BOUND (newdecl
);
2182 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2186 /* Merge parameter attributes. */
2187 tree oldarg
, newarg
;
2188 for (oldarg
= DECL_ARGUMENTS(olddecl
),
2189 newarg
= DECL_ARGUMENTS(newdecl
);
2191 oldarg
= DECL_CHAIN(oldarg
), newarg
= DECL_CHAIN(newarg
)) {
2192 DECL_ATTRIBUTES (newarg
)
2193 = (*targetm
.merge_decl_attributes
) (oldarg
, newarg
);
2194 DECL_ATTRIBUTES (oldarg
) = DECL_ATTRIBUTES (newarg
);
2197 if (DECL_TEMPLATE_INSTANTIATION (olddecl
)
2198 && !DECL_TEMPLATE_INSTANTIATION (newdecl
))
2200 /* If newdecl is not a specialization, then it is not a
2201 template-related function at all. And that means that we
2202 should have exited above, returning 0. */
2203 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl
));
2205 if (DECL_ODR_USED (olddecl
))
2206 /* From [temp.expl.spec]:
2208 If a template, a member template or the member of a class
2209 template is explicitly specialized then that
2210 specialization shall be declared before the first use of
2211 that specialization that would cause an implicit
2212 instantiation to take place, in every translation unit in
2213 which such a use occurs. */
2214 error ("explicit specialization of %qD after first use",
2217 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl
);
2218 DECL_COMDAT (newdecl
) = (TREE_PUBLIC (newdecl
)
2219 && DECL_DECLARED_INLINE_P (newdecl
));
2221 /* Don't propagate visibility from the template to the
2222 specialization here. We'll do that in determine_visibility if
2224 DECL_VISIBILITY_SPECIFIED (olddecl
) = 0;
2226 /* [temp.expl.spec/14] We don't inline explicit specialization
2227 just because the primary template says so. */
2229 /* But still keep DECL_DISREGARD_INLINE_LIMITS in sync with
2230 the always_inline attribute. */
2231 if (DECL_DISREGARD_INLINE_LIMITS (olddecl
)
2232 && !DECL_DISREGARD_INLINE_LIMITS (newdecl
))
2234 if (DECL_DECLARED_INLINE_P (newdecl
))
2235 DECL_DISREGARD_INLINE_LIMITS (newdecl
) = true;
2237 DECL_ATTRIBUTES (newdecl
)
2238 = remove_attribute ("always_inline",
2239 DECL_ATTRIBUTES (newdecl
));
2242 else if (new_defines_function
&& DECL_INITIAL (olddecl
))
2244 /* Never inline re-defined extern inline functions.
2245 FIXME: this could be better handled by keeping both
2246 function as separate declarations. */
2247 DECL_UNINLINABLE (newdecl
) = 1;
2251 if (DECL_PENDING_INLINE_INFO (newdecl
) == 0)
2252 DECL_PENDING_INLINE_INFO (newdecl
) = DECL_PENDING_INLINE_INFO (olddecl
);
2254 DECL_DECLARED_INLINE_P (newdecl
) |= DECL_DECLARED_INLINE_P (olddecl
);
2256 DECL_UNINLINABLE (newdecl
) = DECL_UNINLINABLE (olddecl
)
2257 = (DECL_UNINLINABLE (newdecl
) || DECL_UNINLINABLE (olddecl
));
2259 DECL_DISREGARD_INLINE_LIMITS (newdecl
)
2260 = DECL_DISREGARD_INLINE_LIMITS (olddecl
)
2261 = (DECL_DISREGARD_INLINE_LIMITS (newdecl
)
2262 || DECL_DISREGARD_INLINE_LIMITS (olddecl
));
2265 /* Preserve abstractness on cloned [cd]tors. */
2266 DECL_ABSTRACT (newdecl
) = DECL_ABSTRACT (olddecl
);
2268 /* Update newdecl's parms to point at olddecl. */
2269 for (parm
= DECL_ARGUMENTS (newdecl
); parm
;
2270 parm
= DECL_CHAIN (parm
))
2271 DECL_CONTEXT (parm
) = olddecl
;
2275 SET_DECL_LANGUAGE (olddecl
, DECL_LANGUAGE (newdecl
));
2276 COPY_DECL_ASSEMBLER_NAME (newdecl
, olddecl
);
2277 COPY_DECL_RTL (newdecl
, olddecl
);
2279 if (! types_match
|| new_defines_function
)
2281 /* These need to be copied so that the names are available.
2282 Note that if the types do match, we'll preserve inline
2283 info and other bits, but if not, we won't. */
2284 DECL_ARGUMENTS (olddecl
) = DECL_ARGUMENTS (newdecl
);
2285 DECL_RESULT (olddecl
) = DECL_RESULT (newdecl
);
2287 /* If redeclaring a builtin function, it stays built in
2288 if newdecl is a gnu_inline definition, or if newdecl is just
2290 if (DECL_BUILT_IN (olddecl
)
2291 && (new_defines_function
? GNU_INLINE_P (newdecl
) : types_match
))
2293 DECL_BUILT_IN_CLASS (newdecl
) = DECL_BUILT_IN_CLASS (olddecl
);
2294 DECL_FUNCTION_CODE (newdecl
) = DECL_FUNCTION_CODE (olddecl
);
2295 /* If we're keeping the built-in definition, keep the rtl,
2296 regardless of declaration matches. */
2297 COPY_DECL_RTL (olddecl
, newdecl
);
2298 if (DECL_BUILT_IN_CLASS (newdecl
) == BUILT_IN_NORMAL
)
2300 enum built_in_function fncode
= DECL_FUNCTION_CODE (newdecl
);
2303 /* If a compatible prototype of these builtin functions
2304 is seen, assume the runtime implements it with the
2305 expected semantics. */
2306 case BUILT_IN_STPCPY
:
2307 if (builtin_decl_explicit_p (fncode
))
2308 set_builtin_decl_implicit_p (fncode
, true);
2315 if (new_defines_function
)
2316 /* If defining a function declared with other language
2317 linkage, use the previously declared language linkage. */
2318 SET_DECL_LANGUAGE (newdecl
, DECL_LANGUAGE (olddecl
));
2319 else if (types_match
)
2321 DECL_RESULT (newdecl
) = DECL_RESULT (olddecl
);
2322 /* Don't clear out the arguments if we're just redeclaring a
2324 if (DECL_ARGUMENTS (olddecl
))
2325 DECL_ARGUMENTS (newdecl
) = DECL_ARGUMENTS (olddecl
);
2328 else if (TREE_CODE (newdecl
) == NAMESPACE_DECL
)
2329 NAMESPACE_LEVEL (newdecl
) = NAMESPACE_LEVEL (olddecl
);
2331 /* Now preserve various other info from the definition. */
2332 TREE_ADDRESSABLE (newdecl
) = TREE_ADDRESSABLE (olddecl
);
2333 TREE_ASM_WRITTEN (newdecl
) = TREE_ASM_WRITTEN (olddecl
);
2334 DECL_COMMON (newdecl
) = DECL_COMMON (olddecl
);
2335 COPY_DECL_ASSEMBLER_NAME (olddecl
, newdecl
);
2337 /* Warn about conflicting visibility specifications. */
2338 if (DECL_VISIBILITY_SPECIFIED (olddecl
)
2339 && DECL_VISIBILITY_SPECIFIED (newdecl
)
2340 && DECL_VISIBILITY (newdecl
) != DECL_VISIBILITY (olddecl
))
2342 if (warning_at (DECL_SOURCE_LOCATION (newdecl
), OPT_Wattributes
,
2343 "%qD: visibility attribute ignored because it "
2344 "conflicts with previous declaration", newdecl
))
2345 inform (DECL_SOURCE_LOCATION (olddecl
),
2346 "previous declaration of %qD", olddecl
);
2348 /* Choose the declaration which specified visibility. */
2349 if (DECL_VISIBILITY_SPECIFIED (olddecl
))
2351 DECL_VISIBILITY (newdecl
) = DECL_VISIBILITY (olddecl
);
2352 DECL_VISIBILITY_SPECIFIED (newdecl
) = 1;
2354 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2355 so keep this behavior. */
2356 if (VAR_P (newdecl
) && DECL_HAS_INIT_PRIORITY_P (newdecl
))
2358 SET_DECL_INIT_PRIORITY (olddecl
, DECL_INIT_PRIORITY (newdecl
));
2359 DECL_HAS_INIT_PRIORITY_P (olddecl
) = 1;
2361 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2362 if (DECL_ALIGN (olddecl
) > DECL_ALIGN (newdecl
))
2364 DECL_ALIGN (newdecl
) = DECL_ALIGN (olddecl
);
2365 DECL_USER_ALIGN (newdecl
) |= DECL_USER_ALIGN (olddecl
);
2367 DECL_USER_ALIGN (olddecl
) = DECL_USER_ALIGN (newdecl
);
2368 if (TREE_CODE (newdecl
) == FIELD_DECL
)
2369 DECL_PACKED (olddecl
) = DECL_PACKED (newdecl
);
2371 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2372 with that from NEWDECL below. */
2373 if (DECL_LANG_SPECIFIC (olddecl
))
2375 gcc_assert (DECL_LANG_SPECIFIC (olddecl
)
2376 != DECL_LANG_SPECIFIC (newdecl
));
2377 ggc_free (DECL_LANG_SPECIFIC (olddecl
));
2380 /* Merge the USED information. */
2381 if (TREE_USED (olddecl
))
2382 TREE_USED (newdecl
) = 1;
2383 else if (TREE_USED (newdecl
))
2384 TREE_USED (olddecl
) = 1;
2385 if (VAR_P (newdecl
))
2387 if (DECL_READ_P (olddecl
))
2388 DECL_READ_P (newdecl
) = 1;
2389 else if (DECL_READ_P (newdecl
))
2390 DECL_READ_P (olddecl
) = 1;
2392 if (DECL_PRESERVE_P (olddecl
))
2393 DECL_PRESERVE_P (newdecl
) = 1;
2394 else if (DECL_PRESERVE_P (newdecl
))
2395 DECL_PRESERVE_P (olddecl
) = 1;
2397 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2398 to olddecl and deleted. */
2399 if (TREE_CODE (newdecl
) == FUNCTION_DECL
2400 && DECL_FUNCTION_VERSIONED (olddecl
))
2402 /* Set the flag for newdecl so that it gets copied to olddecl. */
2403 DECL_FUNCTION_VERSIONED (newdecl
) = 1;
2404 /* newdecl will be purged after copying to olddecl and is no longer
2406 cgraph_node::delete_function_version (newdecl
);
2409 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2412 struct symtab_node
*snode
= symtab_node::get (olddecl
);
2414 function_size
= sizeof (struct tree_decl_common
);
2416 memcpy ((char *) olddecl
+ sizeof (struct tree_common
),
2417 (char *) newdecl
+ sizeof (struct tree_common
),
2418 function_size
- sizeof (struct tree_common
));
2420 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2421 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2422 sizeof (struct tree_function_decl
) - sizeof (struct tree_decl_common
));
2424 /* Preserve symtab node mapping. */
2425 olddecl
->decl_with_vis
.symtab_node
= snode
;
2427 if (new_template_info
)
2428 /* If newdecl is a template instantiation, it is possible that
2429 the following sequence of events has occurred:
2431 o A friend function was declared in a class template. The
2432 class template was instantiated.
2434 o The instantiation of the friend declaration was
2435 recorded on the instantiation list, and is newdecl.
2437 o Later, however, instantiate_class_template called pushdecl
2438 on the newdecl to perform name injection. But, pushdecl in
2439 turn called duplicate_decls when it discovered that another
2440 declaration of a global function with the same name already
2443 o Here, in duplicate_decls, we decided to clobber newdecl.
2445 If we're going to do that, we'd better make sure that
2446 olddecl, and not newdecl, is on the list of
2447 instantiations so that if we try to do the instantiation
2448 again we won't get the clobbered declaration. */
2449 reregister_specialization (newdecl
,
2455 size_t size
= tree_code_size (TREE_CODE (olddecl
));
2457 memcpy ((char *) olddecl
+ sizeof (struct tree_common
),
2458 (char *) newdecl
+ sizeof (struct tree_common
),
2459 sizeof (struct tree_decl_common
) - sizeof (struct tree_common
));
2460 switch (TREE_CODE (olddecl
))
2470 struct symtab_node
*snode
= NULL
;
2472 if (TREE_CODE (olddecl
) == VAR_DECL
2473 && (TREE_STATIC (olddecl
) || TREE_PUBLIC (olddecl
) || DECL_EXTERNAL (olddecl
)))
2474 snode
= symtab_node::get (olddecl
);
2475 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2476 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2477 size
- sizeof (struct tree_decl_common
)
2478 + TREE_CODE_LENGTH (TREE_CODE (newdecl
)) * sizeof (char *));
2479 if (TREE_CODE (olddecl
) == VAR_DECL
)
2480 olddecl
->decl_with_vis
.symtab_node
= snode
;
2484 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2485 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2486 sizeof (struct tree_decl_non_common
) - sizeof (struct tree_decl_common
)
2487 + TREE_CODE_LENGTH (TREE_CODE (newdecl
)) * sizeof (char *));
2491 DECL_UID (olddecl
) = olddecl_uid
;
2493 DECL_FRIEND_P (olddecl
) = 1;
2496 DECL_ANTICIPATED (olddecl
) = 1;
2497 DECL_HIDDEN_FRIEND_P (olddecl
) = 1;
2500 /* NEWDECL contains the merged attribute lists.
2501 Update OLDDECL to be the same. */
2502 DECL_ATTRIBUTES (olddecl
) = DECL_ATTRIBUTES (newdecl
);
2504 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2505 so that encode_section_info has a chance to look at the new decl
2506 flags and attributes. */
2507 if (DECL_RTL_SET_P (olddecl
)
2508 && (TREE_CODE (olddecl
) == FUNCTION_DECL
2510 && TREE_STATIC (olddecl
))))
2511 make_decl_rtl (olddecl
);
2513 /* The NEWDECL will no longer be needed. Because every out-of-class
2514 declaration of a member results in a call to duplicate_decls,
2515 freeing these nodes represents in a significant savings.
2517 Before releasing the node, be sore to remove function from symbol
2518 table that might have been inserted there to record comdat group.
2519 Be sure to however do not free DECL_STRUCT_FUNCTION becuase this
2520 structure is shared in between newdecl and oldecl. */
2521 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2522 DECL_STRUCT_FUNCTION (newdecl
) = NULL
;
2523 if (TREE_CODE (newdecl
) == FUNCTION_DECL
2524 || TREE_CODE (newdecl
) == VAR_DECL
)
2526 struct symtab_node
*snode
= symtab_node::get (newdecl
);
2535 /* Return zero if the declaration NEWDECL is valid
2536 when the declaration OLDDECL (assumed to be for the same name)
2537 has already been seen.
2538 Otherwise return an error message format string with a %s
2539 where the identifier should go. */
2542 redeclaration_error_message (tree newdecl
, tree olddecl
)
2544 if (TREE_CODE (newdecl
) == TYPE_DECL
)
2546 /* Because C++ can put things into name space for free,
2547 constructs like "typedef struct foo { ... } foo"
2548 would look like an erroneous redeclaration. */
2549 if (same_type_p (TREE_TYPE (newdecl
), TREE_TYPE (olddecl
)))
2552 return G_("redefinition of %q#D");
2554 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2556 /* If this is a pure function, its olddecl will actually be
2557 the original initialization to `0' (which we force to call
2558 abort()). Don't complain about redefinition in this case. */
2559 if (DECL_LANG_SPECIFIC (olddecl
) && DECL_PURE_VIRTUAL_P (olddecl
)
2560 && DECL_INITIAL (olddecl
) == NULL_TREE
)
2563 /* If both functions come from different namespaces, this is not
2564 a redeclaration - this is a conflict with a used function. */
2565 if (DECL_NAMESPACE_SCOPE_P (olddecl
)
2566 && DECL_CONTEXT (olddecl
) != DECL_CONTEXT (newdecl
)
2567 && ! decls_match (olddecl
, newdecl
))
2568 return G_("%qD conflicts with used function");
2570 /* We'll complain about linkage mismatches in
2571 warn_extern_redeclared_static. */
2573 /* Defining the same name twice is no good. */
2574 if (DECL_INITIAL (olddecl
) != NULL_TREE
2575 && DECL_INITIAL (newdecl
) != NULL_TREE
)
2577 if (DECL_NAME (olddecl
) == NULL_TREE
)
2578 return G_("%q#D not declared in class");
2579 else if (!GNU_INLINE_P (olddecl
)
2580 || GNU_INLINE_P (newdecl
))
2581 return G_("redefinition of %q#D");
2584 if (DECL_DECLARED_INLINE_P (olddecl
) && DECL_DECLARED_INLINE_P (newdecl
))
2586 bool olda
= GNU_INLINE_P (olddecl
);
2587 bool newa
= GNU_INLINE_P (newdecl
);
2592 return G_("%q+D redeclared inline with "
2593 "%<gnu_inline%> attribute");
2595 return G_("%q+D redeclared inline without "
2596 "%<gnu_inline%> attribute");
2600 check_abi_tag_redeclaration
2601 (olddecl
, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl
)),
2602 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl
)));
2606 else if (TREE_CODE (newdecl
) == TEMPLATE_DECL
)
2610 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl
)) == TYPE_DECL
)
2612 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl
))
2613 && COMPLETE_TYPE_P (TREE_TYPE (olddecl
)))
2614 return G_("redefinition of %q#D");
2618 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl
)) != FUNCTION_DECL
2619 || (DECL_TEMPLATE_RESULT (newdecl
)
2620 == DECL_TEMPLATE_RESULT (olddecl
)))
2623 nt
= DECL_TEMPLATE_RESULT (newdecl
);
2624 if (DECL_TEMPLATE_INFO (nt
))
2625 nt
= DECL_TEMPLATE_RESULT (template_for_substitution (nt
));
2626 ot
= DECL_TEMPLATE_RESULT (olddecl
);
2627 if (DECL_TEMPLATE_INFO (ot
))
2628 ot
= DECL_TEMPLATE_RESULT (template_for_substitution (ot
));
2629 if (DECL_INITIAL (nt
) && DECL_INITIAL (ot
)
2630 && (!GNU_INLINE_P (ot
) || GNU_INLINE_P (nt
)))
2631 return G_("redefinition of %q#D");
2633 if (DECL_DECLARED_INLINE_P (ot
) && DECL_DECLARED_INLINE_P (nt
))
2635 bool olda
= GNU_INLINE_P (ot
);
2636 bool newa
= GNU_INLINE_P (nt
);
2641 return G_("%q+D redeclared inline with "
2642 "%<gnu_inline%> attribute");
2644 return G_("%q+D redeclared inline without "
2645 "%<gnu_inline%> attribute");
2649 /* Core issue #226 (C++0x):
2651 If a friend function template declaration specifies a
2652 default template-argument, that declaration shall be a
2653 definition and shall be the only declaration of the
2654 function template in the translation unit. */
2655 if ((cxx_dialect
!= cxx98
)
2656 && TREE_CODE (ot
) == FUNCTION_DECL
&& DECL_FRIEND_P (ot
)
2657 && !check_default_tmpl_args (nt
, DECL_TEMPLATE_PARMS (newdecl
),
2658 /*is_primary=*/true,
2659 /*is_partial=*/false,
2660 /*is_friend_decl=*/2))
2661 return G_("redeclaration of friend %q#D "
2662 "may not have default template arguments");
2666 else if (VAR_P (newdecl
)
2667 && DECL_THREAD_LOCAL_P (newdecl
) != DECL_THREAD_LOCAL_P (olddecl
)
2668 && (! DECL_LANG_SPECIFIC (olddecl
)
2669 || ! CP_DECL_THREADPRIVATE_P (olddecl
)
2670 || DECL_THREAD_LOCAL_P (newdecl
)))
2672 /* Only variables can be thread-local, and all declarations must
2673 agree on this property. */
2674 if (DECL_THREAD_LOCAL_P (newdecl
))
2675 return G_("thread-local declaration of %q#D follows "
2676 "non-thread-local declaration");
2678 return G_("non-thread-local declaration of %q#D follows "
2679 "thread-local declaration");
2681 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl
))
2683 /* The objects have been declared at namespace scope. If either
2684 is a member of an anonymous union, then this is an invalid
2685 redeclaration. For example:
2691 if ((VAR_P (newdecl
) && DECL_ANON_UNION_VAR_P (newdecl
))
2692 || (VAR_P (olddecl
) && DECL_ANON_UNION_VAR_P (olddecl
)))
2693 return G_("redeclaration of %q#D");
2694 /* If at least one declaration is a reference, there is no
2695 conflict. For example:
2701 if (DECL_EXTERNAL (newdecl
) || DECL_EXTERNAL (olddecl
))
2703 /* Reject two definitions. */
2704 return G_("redefinition of %q#D");
2708 /* Objects declared with block scope: */
2709 /* Reject two definitions, and reject a definition
2710 together with an external reference. */
2711 if (!(DECL_EXTERNAL (newdecl
) && DECL_EXTERNAL (olddecl
)))
2712 return G_("redeclaration of %q#D");
2717 /* Hash and equality functions for the named_label table. */
2720 named_label_entry_hash (const void *data
)
2722 const struct named_label_entry
*ent
= (const struct named_label_entry
*) data
;
2723 return DECL_UID (ent
->label_decl
);
2727 named_label_entry_eq (const void *a
, const void *b
)
2729 const struct named_label_entry
*ent_a
= (const struct named_label_entry
*) a
;
2730 const struct named_label_entry
*ent_b
= (const struct named_label_entry
*) b
;
2731 return ent_a
->label_decl
== ent_b
->label_decl
;
2734 /* Create a new label, named ID. */
2737 make_label_decl (tree id
, int local_p
)
2739 struct named_label_entry
*ent
;
2743 decl
= build_decl (input_location
, LABEL_DECL
, id
, void_type_node
);
2745 DECL_CONTEXT (decl
) = current_function_decl
;
2746 DECL_MODE (decl
) = VOIDmode
;
2747 C_DECLARED_LABEL_FLAG (decl
) = local_p
;
2749 /* Say where one reference is to the label, for the sake of the
2750 error if it is not defined. */
2751 DECL_SOURCE_LOCATION (decl
) = input_location
;
2753 /* Record the fact that this identifier is bound to this label. */
2754 SET_IDENTIFIER_LABEL_VALUE (id
, decl
);
2756 /* Create the label htab for the function on demand. */
2758 named_labels
= htab_create_ggc (13, named_label_entry_hash
,
2759 named_label_entry_eq
, NULL
);
2761 /* Record this label on the list of labels used in this function.
2762 We do this before calling make_label_decl so that we get the
2763 IDENTIFIER_LABEL_VALUE before the new label is declared. */
2764 ent
= ggc_cleared_alloc
<named_label_entry
> ();
2765 ent
->label_decl
= decl
;
2767 slot
= htab_find_slot (named_labels
, ent
, INSERT
);
2768 gcc_assert (*slot
== NULL
);
2774 /* Look for a label named ID in the current function. If one cannot
2775 be found, create one. (We keep track of used, but undefined,
2776 labels, and complain about them at the end of a function.) */
2779 lookup_label_1 (tree id
)
2783 /* You can't use labels at global scope. */
2784 if (current_function_decl
== NULL_TREE
)
2786 error ("label %qE referenced outside of any function", id
);
2790 /* See if we've already got this label. */
2791 decl
= IDENTIFIER_LABEL_VALUE (id
);
2792 if (decl
!= NULL_TREE
&& DECL_CONTEXT (decl
) == current_function_decl
)
2795 decl
= make_label_decl (id
, /*local_p=*/0);
2799 /* Wrapper for lookup_label_1. */
2802 lookup_label (tree id
)
2805 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
2806 ret
= lookup_label_1 (id
);
2807 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
2811 /* Declare a local label named ID. */
2814 declare_local_label (tree id
)
2817 cp_label_binding bind
;
2819 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
2820 this scope we can restore the old value of IDENTIFIER_TYPE_VALUE. */
2821 bind
.prev_value
= IDENTIFIER_LABEL_VALUE (id
);
2823 decl
= make_label_decl (id
, /*local_p=*/1);
2825 vec_safe_push (current_binding_level
->shadowed_labels
, bind
);
2830 /* Returns nonzero if it is ill-formed to jump past the declaration of
2831 DECL. Returns 2 if it's also a real problem. */
2834 decl_jump_unsafe (tree decl
)
2836 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
2837 with automatic storage duration is not in scope to a point where it is
2838 in scope is ill-formed unless the variable has scalar type, class type
2839 with a trivial default constructor and a trivial destructor, a
2840 cv-qualified version of one of these types, or an array of one of the
2841 preceding types and is declared without an initializer (8.5). */
2842 tree type
= TREE_TYPE (decl
);
2844 if (!VAR_P (decl
) || TREE_STATIC (decl
)
2845 || type
== error_mark_node
)
2848 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl
)
2849 || variably_modified_type_p (type
, NULL_TREE
))
2852 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
))
2858 /* A subroutine of check_previous_goto_1 to identify a branch to the user. */
2861 identify_goto (tree decl
, const location_t
*locus
)
2864 permerror (input_location
, "jump to label %qD", decl
);
2866 permerror (input_location
, "jump to case label");
2868 permerror (*locus
, " from here");
2871 /* Check that a single previously seen jump to a newly defined label
2872 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
2873 the jump context; NAMES are the names in scope in LEVEL at the jump
2874 context; LOCUS is the source position of the jump or 0. Returns
2875 true if all is well. */
2878 check_previous_goto_1 (tree decl
, cp_binding_level
* level
, tree names
,
2879 bool exited_omp
, const location_t
*locus
)
2881 cp_binding_level
*b
;
2882 bool identified
= false, saw_eh
= false, saw_omp
= false;
2886 identify_goto (decl
, locus
);
2887 error (" exits OpenMP structured block");
2888 identified
= saw_omp
= true;
2891 for (b
= current_binding_level
; b
; b
= b
->level_chain
)
2893 tree new_decls
, old_decls
= (b
== level
? names
: NULL_TREE
);
2895 for (new_decls
= b
->names
; new_decls
!= old_decls
;
2896 new_decls
= (DECL_P (new_decls
) ? DECL_CHAIN (new_decls
)
2897 : TREE_CHAIN (new_decls
)))
2899 int problem
= decl_jump_unsafe (new_decls
);
2905 identify_goto (decl
, locus
);
2909 error (" crosses initialization of %q+#D", new_decls
);
2911 permerror (input_location
, " enters scope of %q+#D which has "
2912 "non-trivial destructor", new_decls
);
2917 if ((b
->kind
== sk_try
|| b
->kind
== sk_catch
) && !saw_eh
)
2921 identify_goto (decl
, locus
);
2924 if (b
->kind
== sk_try
)
2925 error (" enters try block");
2927 error (" enters catch block");
2930 if (b
->kind
== sk_omp
&& !saw_omp
)
2934 identify_goto (decl
, locus
);
2937 error (" enters OpenMP structured block");
2946 check_previous_goto (tree decl
, struct named_label_use_entry
*use
)
2948 check_previous_goto_1 (decl
, use
->binding_level
,
2949 use
->names_in_scope
, use
->in_omp_scope
,
2950 &use
->o_goto_locus
);
2954 check_switch_goto (cp_binding_level
* level
)
2956 return check_previous_goto_1 (NULL_TREE
, level
, level
->names
, false, NULL
);
2959 /* Check that a new jump to a label DECL is OK. Called by
2960 finish_goto_stmt. */
2963 check_goto (tree decl
)
2965 struct named_label_entry
*ent
, dummy
;
2966 bool saw_catch
= false, identified
= false;
2970 /* We can't know where a computed goto is jumping.
2971 So we assume that it's OK. */
2972 if (TREE_CODE (decl
) != LABEL_DECL
)
2975 /* We didn't record any information about this label when we created it,
2976 and there's not much point since it's trivial to analyze as a return. */
2977 if (decl
== cdtor_label
)
2980 dummy
.label_decl
= decl
;
2981 ent
= (struct named_label_entry
*) htab_find (named_labels
, &dummy
);
2982 gcc_assert (ent
!= NULL
);
2984 /* If the label hasn't been defined yet, defer checking. */
2985 if (! DECL_INITIAL (decl
))
2987 struct named_label_use_entry
*new_use
;
2989 /* Don't bother creating another use if the last goto had the
2990 same data, and will therefore create the same set of errors. */
2992 && ent
->uses
->names_in_scope
== current_binding_level
->names
)
2995 new_use
= ggc_alloc
<named_label_use_entry
> ();
2996 new_use
->binding_level
= current_binding_level
;
2997 new_use
->names_in_scope
= current_binding_level
->names
;
2998 new_use
->o_goto_locus
= input_location
;
2999 new_use
->in_omp_scope
= false;
3001 new_use
->next
= ent
->uses
;
3002 ent
->uses
= new_use
;
3006 if (ent
->in_try_scope
|| ent
->in_catch_scope
3007 || ent
->in_omp_scope
|| !vec_safe_is_empty (ent
->bad_decls
))
3009 permerror (input_location
, "jump to label %q+D", decl
);
3010 permerror (input_location
, " from here");
3014 FOR_EACH_VEC_SAFE_ELT (ent
->bad_decls
, ix
, bad
)
3016 int u
= decl_jump_unsafe (bad
);
3018 if (u
> 1 && DECL_ARTIFICIAL (bad
))
3020 /* Can't skip init of __exception_info. */
3021 error_at (DECL_SOURCE_LOCATION (bad
), " enters catch block");
3025 error (" skips initialization of %q+#D", bad
);
3027 permerror (input_location
, " enters scope of %q+#D which has "
3028 "non-trivial destructor", bad
);
3031 if (ent
->in_try_scope
)
3032 error (" enters try block");
3033 else if (ent
->in_catch_scope
&& !saw_catch
)
3034 error (" enters catch block");
3036 if (ent
->in_omp_scope
)
3037 error (" enters OpenMP structured block");
3038 else if (flag_openmp
)
3040 cp_binding_level
*b
;
3041 for (b
= current_binding_level
; b
; b
= b
->level_chain
)
3043 if (b
== ent
->binding_level
)
3045 if (b
->kind
== sk_omp
)
3049 permerror (input_location
, "jump to label %q+D", decl
);
3050 permerror (input_location
, " from here");
3053 error (" exits OpenMP structured block");
3060 /* Check that a return is ok wrt OpenMP structured blocks.
3061 Called by finish_return_stmt. Returns true if all is well. */
3064 check_omp_return (void)
3066 cp_binding_level
*b
;
3067 for (b
= current_binding_level
; b
; b
= b
->level_chain
)
3068 if (b
->kind
== sk_omp
)
3070 error ("invalid exit from OpenMP structured block");
3073 else if (b
->kind
== sk_function_parms
)
3078 /* Define a label, specifying the location in the source file.
3079 Return the LABEL_DECL node for the label. */
3082 define_label_1 (location_t location
, tree name
)
3084 struct named_label_entry
*ent
, dummy
;
3085 cp_binding_level
*p
;
3088 decl
= lookup_label (name
);
3090 dummy
.label_decl
= decl
;
3091 ent
= (struct named_label_entry
*) htab_find (named_labels
, &dummy
);
3092 gcc_assert (ent
!= NULL
);
3094 /* After labels, make any new cleanups in the function go into their
3095 own new (temporary) binding contour. */
3096 for (p
= current_binding_level
;
3097 p
->kind
!= sk_function_parms
;
3099 p
->more_cleanups_ok
= 0;
3101 if (name
== get_identifier ("wchar_t"))
3102 permerror (input_location
, "label named wchar_t");
3104 if (DECL_INITIAL (decl
) != NULL_TREE
)
3106 error ("duplicate label %qD", decl
);
3107 return error_mark_node
;
3111 struct named_label_use_entry
*use
;
3113 /* Mark label as having been defined. */
3114 DECL_INITIAL (decl
) = error_mark_node
;
3115 /* Say where in the source. */
3116 DECL_SOURCE_LOCATION (decl
) = location
;
3118 ent
->binding_level
= current_binding_level
;
3119 ent
->names_in_scope
= current_binding_level
->names
;
3121 for (use
= ent
->uses
; use
; use
= use
->next
)
3122 check_previous_goto (decl
, use
);
3129 /* Wrapper for define_label_1. */
3132 define_label (location_t location
, tree name
)
3135 bool running
= timevar_cond_start (TV_NAME_LOOKUP
);
3136 ret
= define_label_1 (location
, name
);
3137 timevar_cond_stop (TV_NAME_LOOKUP
, running
);
3144 cp_binding_level
*level
;
3145 struct cp_switch
*next
;
3146 /* The SWITCH_STMT being built. */
3148 /* A splay-tree mapping the low element of a case range to the high
3149 element, or NULL_TREE if there is no high element. Used to
3150 determine whether or not a new case label duplicates an old case
3151 label. We need a tree, rather than simply a hash table, because
3152 of the GNU case range extension. */
3156 /* A stack of the currently active switch statements. The innermost
3157 switch statement is on the top of the stack. There is no need to
3158 mark the stack for garbage collection because it is only active
3159 during the processing of the body of a function, and we never
3160 collect at that point. */
3162 static struct cp_switch
*switch_stack
;
3164 /* Called right after a switch-statement condition is parsed.
3165 SWITCH_STMT is the switch statement being parsed. */
3168 push_switch (tree switch_stmt
)
3170 struct cp_switch
*p
= XNEW (struct cp_switch
);
3171 p
->level
= current_binding_level
;
3172 p
->next
= switch_stack
;
3173 p
->switch_stmt
= switch_stmt
;
3174 p
->cases
= splay_tree_new (case_compare
, NULL
, NULL
);
3181 struct cp_switch
*cs
= switch_stack
;
3182 location_t switch_location
;
3184 /* Emit warnings as needed. */
3185 switch_location
= EXPR_LOC_OR_LOC (cs
->switch_stmt
, input_location
);
3186 if (!processing_template_decl
)
3187 c_do_switch_warnings (cs
->cases
, switch_location
,
3188 SWITCH_STMT_TYPE (cs
->switch_stmt
),
3189 SWITCH_STMT_COND (cs
->switch_stmt
));
3191 splay_tree_delete (cs
->cases
);
3192 switch_stack
= switch_stack
->next
;
3196 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3197 condition. Note that if TYPE and VALUE are already integral we don't
3198 really do the conversion because the language-independent
3199 warning/optimization code will work better that way. */
3202 case_conversion (tree type
, tree value
)
3204 if (value
== NULL_TREE
)
3207 if (cxx_dialect
>= cxx11
3208 && (SCOPED_ENUM_P (type
)
3209 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value
))))
3211 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type
))
3212 type
= type_promotes_to (type
);
3213 value
= (perform_implicit_conversion_flags
3214 (type
, value
, tf_warning_or_error
,
3215 LOOKUP_IMPLICIT
| LOOKUP_NO_NON_INTEGRAL
));
3217 return cxx_constant_value (value
);
3220 /* Note that we've seen a definition of a case label, and complain if this
3221 is a bad place for one. */
3224 finish_case_label (location_t loc
, tree low_value
, tree high_value
)
3227 cp_binding_level
*p
;
3230 if (processing_template_decl
)
3234 /* For templates, just add the case label; we'll do semantic
3235 analysis at instantiation-time. */
3236 label
= build_decl (loc
, LABEL_DECL
, NULL_TREE
, NULL_TREE
);
3237 return add_stmt (build_case_label (low_value
, high_value
, label
));
3240 /* Find the condition on which this switch statement depends. */
3241 cond
= SWITCH_STMT_COND (switch_stack
->switch_stmt
);
3242 if (cond
&& TREE_CODE (cond
) == TREE_LIST
)
3243 cond
= TREE_VALUE (cond
);
3245 if (!check_switch_goto (switch_stack
->level
))
3246 return error_mark_node
;
3248 type
= SWITCH_STMT_TYPE (switch_stack
->switch_stmt
);
3250 low_value
= case_conversion (type
, low_value
);
3251 high_value
= case_conversion (type
, high_value
);
3253 r
= c_add_case_label (loc
, switch_stack
->cases
, cond
, type
,
3254 low_value
, high_value
);
3256 /* After labels, make any new cleanups in the function go into their
3257 own new (temporary) binding contour. */
3258 for (p
= current_binding_level
;
3259 p
->kind
!= sk_function_parms
;
3261 p
->more_cleanups_ok
= 0;
3266 /* Hash a TYPENAME_TYPE. K is really of type `tree'. */
3269 typename_hash (const void* k
)
3272 const_tree
const t
= (const_tree
) k
;
3274 hash
= (htab_hash_pointer (TYPE_CONTEXT (t
))
3275 ^ htab_hash_pointer (TYPE_IDENTIFIER (t
)));
3280 typedef struct typename_info
{
3288 /* Compare two TYPENAME_TYPEs. K1 is really of type `tree', K2 is
3289 really of type `typename_info*' */
3292 typename_compare (const void * k1
, const void * k2
)
3294 const_tree
const t1
= (const_tree
) k1
;
3295 const typename_info
*const t2
= (const typename_info
*) k2
;
3297 return (TYPE_IDENTIFIER (t1
) == t2
->name
3298 && TYPE_CONTEXT (t1
) == t2
->scope
3299 && TYPENAME_TYPE_FULLNAME (t1
) == t2
->template_id
3300 && TYPENAME_IS_ENUM_P (t1
) == t2
->enum_p
3301 && TYPENAME_IS_CLASS_P (t1
) == t2
->class_p
);
3304 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3305 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3307 Returns the new TYPENAME_TYPE. */
3309 static GTY ((param_is (union tree_node
))) htab_t typename_htab
;
3312 build_typename_type (tree context
, tree name
, tree fullname
,
3313 enum tag_types tag_type
)
3321 if (typename_htab
== NULL
)
3322 typename_htab
= htab_create_ggc (61, &typename_hash
,
3323 &typename_compare
, NULL
);
3325 ti
.scope
= FROB_CONTEXT (context
);
3327 ti
.template_id
= fullname
;
3328 ti
.enum_p
= tag_type
== enum_type
;
3329 ti
.class_p
= (tag_type
== class_type
3330 || tag_type
== record_type
3331 || tag_type
== union_type
);
3332 hash
= (htab_hash_pointer (ti
.scope
)
3333 ^ htab_hash_pointer (ti
.name
));
3335 /* See if we already have this type. */
3336 e
= htab_find_slot_with_hash (typename_htab
, &ti
, hash
, INSERT
);
3341 /* Build the TYPENAME_TYPE. */
3342 t
= cxx_make_type (TYPENAME_TYPE
);
3343 TYPE_CONTEXT (t
) = ti
.scope
;
3344 TYPENAME_TYPE_FULLNAME (t
) = ti
.template_id
;
3345 TYPENAME_IS_ENUM_P (t
) = ti
.enum_p
;
3346 TYPENAME_IS_CLASS_P (t
) = ti
.class_p
;
3348 /* Build the corresponding TYPE_DECL. */
3349 d
= build_decl (input_location
, TYPE_DECL
, name
, t
);
3350 TYPE_NAME (TREE_TYPE (d
)) = d
;
3351 TYPE_STUB_DECL (TREE_TYPE (d
)) = d
;
3352 DECL_CONTEXT (d
) = FROB_CONTEXT (context
);
3353 DECL_ARTIFICIAL (d
) = 1;
3355 /* Store it in the hash table. */
3358 /* TYPENAME_TYPEs must always be compared structurally, because
3359 they may or may not resolve down to another type depending on
3360 the currently open classes. */
3361 SET_TYPE_STRUCTURAL_EQUALITY (t
);
3367 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3368 provided to name the type. Returns an appropriate type, unless an
3369 error occurs, in which case error_mark_node is returned. If we
3370 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3371 return that, rather than the _TYPE it corresponds to, in other
3372 cases we look through the type decl. If TF_ERROR is set, complain
3373 about errors, otherwise be quiet. */
3376 make_typename_type (tree context
, tree name
, enum tag_types tag_type
,
3377 tsubst_flags_t complain
)
3383 if (name
== error_mark_node
3384 || context
== NULL_TREE
3385 || context
== error_mark_node
)
3386 return error_mark_node
;
3390 if (!(TYPE_LANG_SPECIFIC (name
)
3391 && (CLASSTYPE_IS_TEMPLATE (name
)
3392 || CLASSTYPE_USE_TEMPLATE (name
))))
3393 name
= TYPE_IDENTIFIER (name
);
3395 /* Create a TEMPLATE_ID_EXPR for the type. */
3396 name
= build_nt (TEMPLATE_ID_EXPR
,
3397 CLASSTYPE_TI_TEMPLATE (name
),
3398 CLASSTYPE_TI_ARGS (name
));
3400 else if (TREE_CODE (name
) == TYPE_DECL
)
3401 name
= DECL_NAME (name
);
3405 if (TREE_CODE (name
) == TEMPLATE_ID_EXPR
)
3407 name
= TREE_OPERAND (name
, 0);
3408 if (TREE_CODE (name
) == TEMPLATE_DECL
)
3409 name
= TREE_OPERAND (fullname
, 0) = DECL_NAME (name
);
3410 else if (TREE_CODE (name
) == OVERLOAD
)
3412 if (complain
& tf_error
)
3413 error ("%qD is not a type", name
);
3414 return error_mark_node
;
3417 if (TREE_CODE (name
) == TEMPLATE_DECL
)
3419 if (complain
& tf_error
)
3420 error ("%qD used without template parameters", name
);
3421 return error_mark_node
;
3423 gcc_assert (identifier_p (name
));
3424 gcc_assert (TYPE_P (context
));
3426 if (!MAYBE_CLASS_TYPE_P (context
))
3428 if (complain
& tf_error
)
3429 error ("%q#T is not a class", context
);
3430 return error_mark_node
;
3433 /* When the CONTEXT is a dependent type, NAME could refer to a
3434 dependent base class of CONTEXT. But look inside it anyway
3435 if CONTEXT is a currently open scope, in case it refers to a
3436 member of the current instantiation or a non-dependent base;
3437 lookup will stop when we hit a dependent base. */
3438 if (!dependent_scope_p (context
))
3439 /* We should only set WANT_TYPE when we're a nested typename type.
3440 Then we can give better diagnostics if we find a non-type. */
3441 t
= lookup_field (context
, name
, 2, /*want_type=*/true);
3445 if ((!t
|| TREE_CODE (t
) == TREE_LIST
) && dependent_type_p (context
))
3446 return build_typename_type (context
, name
, fullname
, tag_type
);
3448 want_template
= TREE_CODE (fullname
) == TEMPLATE_ID_EXPR
;
3452 if (complain
& tf_error
)
3453 error (want_template
? G_("no class template named %q#T in %q#T")
3454 : G_("no type named %q#T in %q#T"), name
, context
);
3455 return error_mark_node
;
3458 /* Pull out the template from an injected-class-name (or multiple). */
3460 t
= maybe_get_template_decl_from_type_decl (t
);
3462 if (TREE_CODE (t
) == TREE_LIST
)
3464 if (complain
& tf_error
)
3466 error ("lookup of %qT in %qT is ambiguous", name
, context
);
3467 print_candidates (t
);
3469 return error_mark_node
;
3472 if (want_template
&& !DECL_TYPE_TEMPLATE_P (t
))
3474 if (complain
& tf_error
)
3475 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3477 return error_mark_node
;
3479 if (!want_template
&& TREE_CODE (t
) != TYPE_DECL
)
3481 if (complain
& tf_error
)
3482 error ("%<typename %T::%D%> names %q#T, which is not a type",
3484 return error_mark_node
;
3487 if (!perform_or_defer_access_check (TYPE_BINFO (context
), t
, t
, complain
))
3488 return error_mark_node
;
3490 /* If we are currently parsing a template and if T is a typedef accessed
3491 through CONTEXT then we need to remember and check access of T at
3492 template instantiation time. */
3493 add_typedef_to_current_template_for_access_check (t
, context
, input_location
);
3496 return lookup_template_class (t
, TREE_OPERAND (fullname
, 1),
3498 /*entering_scope=*/0,
3499 tf_warning_or_error
| tf_user
);
3501 if (DECL_ARTIFICIAL (t
) || !(complain
& tf_keep_type_decl
))
3504 maybe_record_typedef_use (t
);
3509 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3510 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3511 in which case error_mark_node is returned.
3513 If PARM_LIST is non-NULL, also make sure that the template parameter
3514 list of TEMPLATE_DECL matches.
3516 If COMPLAIN zero, don't complain about any errors that occur. */
3519 make_unbound_class_template (tree context
, tree name
, tree parm_list
,
3520 tsubst_flags_t complain
)
3526 name
= TYPE_IDENTIFIER (name
);
3527 else if (DECL_P (name
))
3528 name
= DECL_NAME (name
);
3529 gcc_assert (identifier_p (name
));
3531 if (!dependent_type_p (context
)
3532 || currently_open_class (context
))
3534 tree tmpl
= NULL_TREE
;
3536 if (MAYBE_CLASS_TYPE_P (context
))
3537 tmpl
= lookup_field (context
, name
, 0, false);
3539 if (tmpl
&& TREE_CODE (tmpl
) == TYPE_DECL
)
3540 tmpl
= maybe_get_template_decl_from_type_decl (tmpl
);
3542 if (!tmpl
|| !DECL_TYPE_TEMPLATE_P (tmpl
))
3544 if (complain
& tf_error
)
3545 error ("no class template named %q#T in %q#T", name
, context
);
3546 return error_mark_node
;
3550 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl
), parm_list
))
3552 if (complain
& tf_error
)
3554 error ("template parameters do not match template %qD", tmpl
);
3555 inform (DECL_SOURCE_LOCATION (tmpl
),
3556 "%qD declared here", tmpl
);
3558 return error_mark_node
;
3561 if (!perform_or_defer_access_check (TYPE_BINFO (context
), tmpl
, tmpl
,
3563 return error_mark_node
;
3568 /* Build the UNBOUND_CLASS_TEMPLATE. */
3569 t
= cxx_make_type (UNBOUND_CLASS_TEMPLATE
);
3570 TYPE_CONTEXT (t
) = FROB_CONTEXT (context
);
3571 TREE_TYPE (t
) = NULL_TREE
;
3572 SET_TYPE_STRUCTURAL_EQUALITY (t
);
3574 /* Build the corresponding TEMPLATE_DECL. */
3575 d
= build_decl (input_location
, TEMPLATE_DECL
, name
, t
);
3576 TYPE_NAME (TREE_TYPE (d
)) = d
;
3577 TYPE_STUB_DECL (TREE_TYPE (d
)) = d
;
3578 DECL_CONTEXT (d
) = FROB_CONTEXT (context
);
3579 DECL_ARTIFICIAL (d
) = 1;
3580 DECL_TEMPLATE_PARMS (d
) = parm_list
;
3587 /* Push the declarations of builtin types into the namespace.
3588 RID_INDEX is the index of the builtin type in the array
3589 RID_POINTERS. NAME is the name used when looking up the builtin
3590 type. TYPE is the _TYPE node for the builtin type. */
3593 record_builtin_type (enum rid rid_index
,
3597 tree rname
= NULL_TREE
, tname
= NULL_TREE
;
3598 tree tdecl
= NULL_TREE
;
3600 if ((int) rid_index
< (int) RID_MAX
)
3601 rname
= ridpointers
[(int) rid_index
];
3603 tname
= get_identifier (name
);
3605 /* The calls to SET_IDENTIFIER_GLOBAL_VALUE below should be
3606 eliminated. Built-in types should not be looked up name; their
3607 names are keywords that the parser can recognize. However, there
3608 is code in c-common.c that uses identifier_global_value to look
3609 up built-in types by name. */
3612 tdecl
= build_decl (BUILTINS_LOCATION
, TYPE_DECL
, tname
, type
);
3613 DECL_ARTIFICIAL (tdecl
) = 1;
3614 SET_IDENTIFIER_GLOBAL_VALUE (tname
, tdecl
);
3620 tdecl
= build_decl (BUILTINS_LOCATION
, TYPE_DECL
, rname
, type
);
3621 DECL_ARTIFICIAL (tdecl
) = 1;
3623 SET_IDENTIFIER_GLOBAL_VALUE (rname
, tdecl
);
3626 if (!TYPE_NAME (type
))
3627 TYPE_NAME (type
) = tdecl
;
3630 debug_hooks
->type_decl (tdecl
, 0);
3633 /* Record one of the standard Java types.
3634 * Declare it as having the given NAME.
3635 * If SIZE > 0, it is the size of one of the integral types;
3636 * otherwise it is the negative of the size of one of the other types. */
3639 record_builtin_java_type (const char* name
, int size
)
3644 type
= build_nonstandard_integer_type (size
, 0);
3645 type
= build_distinct_type_copy (type
);
3647 else if (size
> -32)
3650 /* "__java_char" or ""__java_boolean". */
3651 type
= build_nonstandard_integer_type (-size
, 1);
3652 type
= build_distinct_type_copy (type
);
3653 /* Get the signed type cached and attached to the unsigned type,
3654 so it doesn't get garbage-collected at "random" times,
3655 causing potential codegen differences out of different UIDs
3656 and different alias set numbers. */
3657 stype
= build_nonstandard_integer_type (-size
, 0);
3658 stype
= build_distinct_type_copy (stype
);
3659 TREE_CHAIN (type
) = stype
;
3660 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
3663 { /* "__java_float" or ""__java_double". */
3664 type
= make_node (REAL_TYPE
);
3665 TYPE_PRECISION (type
) = - size
;
3668 record_builtin_type (RID_MAX
, name
, type
);
3669 decl
= TYPE_NAME (type
);
3671 /* Suppress generate debug symbol entries for these types,
3672 since for normal C++ they are just clutter.
3673 However, push_lang_context undoes this if extern "Java" is seen. */
3674 DECL_IGNORED_P (decl
) = 1;
3676 TYPE_FOR_JAVA (type
) = 1;
3680 /* Push a type into the namespace so that the back ends ignore it. */
3683 record_unknown_type (tree type
, const char* name
)
3685 tree decl
= pushdecl (build_decl (UNKNOWN_LOCATION
,
3686 TYPE_DECL
, get_identifier (name
), type
));
3687 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3688 DECL_IGNORED_P (decl
) = 1;
3689 TYPE_DECL_SUPPRESS_DEBUG (decl
) = 1;
3690 TYPE_SIZE (type
) = TYPE_SIZE (void_type_node
);
3691 TYPE_ALIGN (type
) = 1;
3692 TYPE_USER_ALIGN (type
) = 0;
3693 SET_TYPE_MODE (type
, TYPE_MODE (void_type_node
));
3696 /* A string for which we should create an IDENTIFIER_NODE at
3699 typedef struct predefined_identifier
3701 /* The name of the identifier. */
3702 const char *const name
;
3703 /* The place where the IDENTIFIER_NODE should be stored. */
3705 /* Nonzero if this is the name of a constructor or destructor. */
3706 const int ctor_or_dtor_p
;
3707 } predefined_identifier
;
3709 /* Create all the predefined identifiers. */
3712 initialize_predefined_identifiers (void)
3714 const predefined_identifier
*pid
;
3716 /* A table of identifiers to create at startup. */
3717 static const predefined_identifier predefined_identifiers
[] = {
3718 { "C++", &lang_name_cplusplus
, 0 },
3719 { "C", &lang_name_c
, 0 },
3720 { "Java", &lang_name_java
, 0 },
3721 /* Some of these names have a trailing space so that it is
3722 impossible for them to conflict with names written by users. */
3723 { "__ct ", &ctor_identifier
, 1 },
3724 { "__base_ctor ", &base_ctor_identifier
, 1 },
3725 { "__comp_ctor ", &complete_ctor_identifier
, 1 },
3726 { "__dt ", &dtor_identifier
, 1 },
3727 { "__comp_dtor ", &complete_dtor_identifier
, 1 },
3728 { "__base_dtor ", &base_dtor_identifier
, 1 },
3729 { "__deleting_dtor ", &deleting_dtor_identifier
, 1 },
3730 { IN_CHARGE_NAME
, &in_charge_identifier
, 0 },
3731 { "nelts", &nelts_identifier
, 0 },
3732 { THIS_NAME
, &this_identifier
, 0 },
3733 { VTABLE_DELTA_NAME
, &delta_identifier
, 0 },
3734 { VTABLE_PFN_NAME
, &pfn_identifier
, 0 },
3735 { "_vptr", &vptr_identifier
, 0 },
3736 { "__vtt_parm", &vtt_parm_identifier
, 0 },
3737 { "::", &global_scope_name
, 0 },
3738 { "std", &std_identifier
, 0 },
3742 for (pid
= predefined_identifiers
; pid
->name
; ++pid
)
3744 *pid
->node
= get_identifier (pid
->name
);
3745 if (pid
->ctor_or_dtor_p
)
3746 IDENTIFIER_CTOR_OR_DTOR_P (*pid
->node
) = 1;
3750 /* Create the predefined scalar types of C,
3751 and some nodes representing standard constants (0, 1, (void *)0).
3752 Initialize the global binding level.
3753 Make definitions for built-in primitive functions. */
3756 cxx_init_decl_processing (void)
3759 tree void_ftype_ptr
;
3761 /* Create all the identifiers we need. */
3762 initialize_predefined_identifiers ();
3764 /* Create the global variables. */
3765 push_to_top_level ();
3767 current_function_decl
= NULL_TREE
;
3768 current_binding_level
= NULL
;
3769 /* Enter the global namespace. */
3770 gcc_assert (global_namespace
== NULL_TREE
);
3771 global_namespace
= build_lang_decl (NAMESPACE_DECL
, global_scope_name
,
3773 DECL_CONTEXT (global_namespace
) = build_translation_unit_decl (NULL_TREE
);
3774 TREE_PUBLIC (global_namespace
) = 1;
3775 begin_scope (sk_namespace
, global_namespace
);
3777 if (flag_visibility_ms_compat
)
3778 default_visibility
= VISIBILITY_HIDDEN
;
3781 current_lang_name
= lang_name_c
;
3783 /* Create the `std' namespace. */
3784 push_namespace (std_identifier
);
3785 std_node
= current_namespace
;
3788 c_common_nodes_and_builtins ();
3790 java_byte_type_node
= record_builtin_java_type ("__java_byte", 8);
3791 java_short_type_node
= record_builtin_java_type ("__java_short", 16);
3792 java_int_type_node
= record_builtin_java_type ("__java_int", 32);
3793 java_long_type_node
= record_builtin_java_type ("__java_long", 64);
3794 java_float_type_node
= record_builtin_java_type ("__java_float", -32);
3795 java_double_type_node
= record_builtin_java_type ("__java_double", -64);
3796 java_char_type_node
= record_builtin_java_type ("__java_char", -16);
3797 java_boolean_type_node
= record_builtin_java_type ("__java_boolean", -1);
3799 integer_two_node
= build_int_cst (NULL_TREE
, 2);
3801 record_builtin_type (RID_BOOL
, "bool", boolean_type_node
);
3802 truthvalue_type_node
= boolean_type_node
;
3803 truthvalue_false_node
= boolean_false_node
;
3804 truthvalue_true_node
= boolean_true_node
;
3806 empty_except_spec
= build_tree_list (NULL_TREE
, NULL_TREE
);
3807 noexcept_true_spec
= build_tree_list (boolean_true_node
, NULL_TREE
);
3808 noexcept_false_spec
= build_tree_list (boolean_false_node
, NULL_TREE
);
3811 record_builtin_type (RID_MAX
, NULL
, string_type_node
);
3814 delta_type_node
= ptrdiff_type_node
;
3815 vtable_index_type
= ptrdiff_type_node
;
3817 vtt_parm_type
= build_pointer_type (const_ptr_type_node
);
3818 void_ftype
= build_function_type_list (void_type_node
, NULL_TREE
);
3819 void_ftype_ptr
= build_function_type_list (void_type_node
,
3820 ptr_type_node
, NULL_TREE
);
3822 = build_exception_variant (void_ftype_ptr
, empty_except_spec
);
3824 /* C++ extensions */
3826 unknown_type_node
= make_node (LANG_TYPE
);
3827 record_unknown_type (unknown_type_node
, "unknown type");
3829 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
3830 TREE_TYPE (unknown_type_node
) = unknown_type_node
;
3832 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
3834 TYPE_POINTER_TO (unknown_type_node
) = unknown_type_node
;
3835 TYPE_REFERENCE_TO (unknown_type_node
) = unknown_type_node
;
3837 init_list_type_node
= make_node (LANG_TYPE
);
3838 record_unknown_type (init_list_type_node
, "init list");
3841 /* Make sure we get a unique function type, so we can give
3842 its pointer type a name. (This wins for gdb.) */
3843 tree vfunc_type
= make_node (FUNCTION_TYPE
);
3844 TREE_TYPE (vfunc_type
) = integer_type_node
;
3845 TYPE_ARG_TYPES (vfunc_type
) = NULL_TREE
;
3846 layout_type (vfunc_type
);
3848 vtable_entry_type
= build_pointer_type (vfunc_type
);
3850 record_builtin_type (RID_MAX
, VTBL_PTR_TYPE
, vtable_entry_type
);
3853 = build_cplus_array_type (vtable_entry_type
, NULL_TREE
);
3854 layout_type (vtbl_type_node
);
3855 vtbl_type_node
= cp_build_qualified_type (vtbl_type_node
, TYPE_QUAL_CONST
);
3856 record_builtin_type (RID_MAX
, NULL
, vtbl_type_node
);
3857 vtbl_ptr_type_node
= build_pointer_type (vtable_entry_type
);
3858 layout_type (vtbl_ptr_type_node
);
3859 record_builtin_type (RID_MAX
, NULL
, vtbl_ptr_type_node
);
3861 push_namespace (get_identifier ("__cxxabiv1"));
3862 abi_node
= current_namespace
;
3865 global_type_node
= make_node (LANG_TYPE
);
3866 record_unknown_type (global_type_node
, "global type");
3869 current_lang_name
= lang_name_cplusplus
;
3872 tree newattrs
, extvisattr
;
3873 tree newtype
, deltype
;
3874 tree ptr_ftype_sizetype
;
3878 = build_function_type_list (ptr_type_node
, size_type_node
, NULL_TREE
);
3879 if (cxx_dialect
== cxx98
)
3882 tree bad_alloc_type_node
;
3883 tree bad_alloc_decl
;
3885 push_namespace (std_identifier
);
3886 bad_alloc_id
= get_identifier ("bad_alloc");
3887 bad_alloc_type_node
= make_class_type (RECORD_TYPE
);
3888 TYPE_CONTEXT (bad_alloc_type_node
) = current_namespace
;
3890 = create_implicit_typedef (bad_alloc_id
, bad_alloc_type_node
);
3891 DECL_CONTEXT (bad_alloc_decl
) = current_namespace
;
3895 = add_exception_specifier (NULL_TREE
, bad_alloc_type_node
, -1);
3898 new_eh_spec
= noexcept_false_spec
;
3900 /* Ensure attribs.c is initialized. */
3902 extvisattr
= build_tree_list (get_identifier ("externally_visible"),
3904 newattrs
= tree_cons (get_identifier ("alloc_size"),
3905 build_tree_list (NULL_TREE
, integer_one_node
),
3907 newtype
= cp_build_type_attribute_variant (ptr_ftype_sizetype
, newattrs
);
3908 newtype
= build_exception_variant (newtype
, new_eh_spec
);
3909 deltype
= cp_build_type_attribute_variant (void_ftype_ptr
, extvisattr
);
3910 deltype
= build_exception_variant (deltype
, empty_except_spec
);
3911 tree opnew
= push_cp_library_fn (NEW_EXPR
, newtype
, 0);
3912 DECL_IS_MALLOC (opnew
) = 1;
3913 DECL_IS_OPERATOR_NEW (opnew
) = 1;
3914 opnew
= push_cp_library_fn (VEC_NEW_EXPR
, newtype
, 0);
3915 DECL_IS_MALLOC (opnew
) = 1;
3916 DECL_IS_OPERATOR_NEW (opnew
) = 1;
3917 global_delete_fndecl
= push_cp_library_fn (DELETE_EXPR
, deltype
, ECF_NOTHROW
);
3918 push_cp_library_fn (VEC_DELETE_EXPR
, deltype
, ECF_NOTHROW
);
3920 nullptr_type_node
= make_node (NULLPTR_TYPE
);
3921 TYPE_SIZE (nullptr_type_node
) = bitsize_int (GET_MODE_BITSIZE (ptr_mode
));
3922 TYPE_SIZE_UNIT (nullptr_type_node
) = size_int (GET_MODE_SIZE (ptr_mode
));
3923 TYPE_UNSIGNED (nullptr_type_node
) = 1;
3924 TYPE_PRECISION (nullptr_type_node
) = GET_MODE_BITSIZE (ptr_mode
);
3925 SET_TYPE_MODE (nullptr_type_node
, ptr_mode
);
3926 record_builtin_type (RID_MAX
, "decltype(nullptr)", nullptr_type_node
);
3927 nullptr_node
= build_int_cst (nullptr_type_node
, 0);
3931 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype
,
3932 ECF_NORETURN
| ECF_NOTHROW
);
3934 /* Perform other language dependent initializations. */
3935 init_class_processing ();
3936 init_rtti_processing ();
3937 init_template_processing ();
3939 if (flag_exceptions
)
3940 init_exception_processing ();
3942 if (! supports_one_only ())
3945 make_fname_decl
= cp_make_fname_decl
;
3946 start_fname_decls ();
3948 /* Show we use EH for cleanups. */
3949 if (flag_exceptions
)
3950 using_eh_for_cleanups ();
3953 /* Generate an initializer for a function naming variable from
3954 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
3955 filled in with the type of the init. */
3958 cp_fname_init (const char* name
, tree
*type_p
)
3960 tree domain
= NULL_TREE
;
3962 tree init
= NULL_TREE
;
3967 length
= strlen (name
);
3968 domain
= build_index_type (size_int (length
));
3969 init
= build_string (length
+ 1, name
);
3972 type
= cp_build_qualified_type (char_type_node
, TYPE_QUAL_CONST
);
3973 type
= build_cplus_array_type (type
, domain
);
3978 TREE_TYPE (init
) = type
;
3980 init
= error_mark_node
;
3985 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
3986 the decl, LOC is the location to give the decl, NAME is the
3987 initialization string and TYPE_DEP indicates whether NAME depended
3988 on the type of the function. We make use of that to detect
3989 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
3990 at the point of first use, so we mustn't push the decl now. */
3993 cp_make_fname_decl (location_t loc
, tree id
, int type_dep
)
3995 const char *const name
= (type_dep
&& processing_template_decl
3996 ? NULL
: fname_as_string (type_dep
));
3998 tree init
= cp_fname_init (name
, &type
);
3999 tree decl
= build_decl (loc
, VAR_DECL
, id
, type
);
4002 free (CONST_CAST (char *, name
));
4004 /* As we're using pushdecl_with_scope, we must set the context. */
4005 DECL_CONTEXT (decl
) = current_function_decl
;
4007 TREE_STATIC (decl
) = 1;
4008 TREE_READONLY (decl
) = 1;
4009 DECL_ARTIFICIAL (decl
) = 1;
4011 TREE_USED (decl
) = 1;
4013 if (current_function_decl
)
4015 cp_binding_level
*b
= current_binding_level
;
4016 if (b
->kind
== sk_function_parms
)
4017 return error_mark_node
;
4018 while (b
->level_chain
->kind
!= sk_function_parms
)
4020 pushdecl_with_scope (decl
, b
, /*is_friend=*/false);
4021 cp_finish_decl (decl
, init
, /*init_const_expr_p=*/false, NULL_TREE
,
4022 LOOKUP_ONLYCONVERTING
);
4026 DECL_THIS_STATIC (decl
) = true;
4027 pushdecl_top_level_and_finish (decl
, init
);
4034 builtin_function_1 (tree decl
, tree context
, bool is_global
)
4036 tree id
= DECL_NAME (decl
);
4037 const char *name
= IDENTIFIER_POINTER (id
);
4039 retrofit_lang_decl (decl
);
4041 DECL_ARTIFICIAL (decl
) = 1;
4042 SET_OVERLOADED_OPERATOR_CODE (decl
, ERROR_MARK
);
4043 SET_DECL_LANGUAGE (decl
, lang_c
);
4044 /* Runtime library routines are, by definition, available in an
4045 external shared object. */
4046 DECL_VISIBILITY (decl
) = VISIBILITY_DEFAULT
;
4047 DECL_VISIBILITY_SPECIFIED (decl
) = 1;
4049 DECL_CONTEXT (decl
) = context
;
4052 pushdecl_top_level (decl
);
4056 /* A function in the user's namespace should have an explicit
4057 declaration before it is used. Mark the built-in function as
4058 anticipated but not actually declared. */
4059 if (name
[0] != '_' || name
[1] != '_')
4060 DECL_ANTICIPATED (decl
) = 1;
4061 else if (strncmp (name
+ 2, "builtin_", strlen ("builtin_")) != 0)
4063 size_t len
= strlen (name
);
4065 /* Treat __*_chk fortification functions as anticipated as well,
4066 unless they are __builtin_*. */
4067 if (len
> strlen ("___chk")
4068 && memcmp (name
+ len
- strlen ("_chk"),
4069 "_chk", strlen ("_chk") + 1) == 0)
4070 DECL_ANTICIPATED (decl
) = 1;
4077 cxx_builtin_function (tree decl
)
4079 tree id
= DECL_NAME (decl
);
4080 const char *name
= IDENTIFIER_POINTER (id
);
4081 /* All builtins that don't begin with an '_' should additionally
4082 go in the 'std' namespace. */
4085 tree decl2
= copy_node(decl
);
4086 push_namespace (std_identifier
);
4087 builtin_function_1 (decl2
, std_node
, false);
4091 return builtin_function_1 (decl
, NULL_TREE
, false);
4094 /* Like cxx_builtin_function, but guarantee the function is added to the global
4095 scope. This is to allow function specific options to add new machine
4096 dependent builtins when the target ISA changes via attribute((target(...)))
4097 which saves space on program startup if the program does not use non-generic
4101 cxx_builtin_function_ext_scope (tree decl
)
4104 tree id
= DECL_NAME (decl
);
4105 const char *name
= IDENTIFIER_POINTER (id
);
4106 /* All builtins that don't begin with an '_' should additionally
4107 go in the 'std' namespace. */
4110 tree decl2
= copy_node(decl
);
4111 push_namespace (std_identifier
);
4112 builtin_function_1 (decl2
, std_node
, true);
4116 return builtin_function_1 (decl
, NULL_TREE
, true);
4119 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4120 function. Not called directly. */
4123 build_library_fn (tree name
, enum tree_code operator_code
, tree type
,
4126 tree fn
= build_lang_decl (FUNCTION_DECL
, name
, type
);
4127 DECL_EXTERNAL (fn
) = 1;
4128 TREE_PUBLIC (fn
) = 1;
4129 DECL_ARTIFICIAL (fn
) = 1;
4130 SET_OVERLOADED_OPERATOR_CODE (fn
, operator_code
);
4131 SET_DECL_LANGUAGE (fn
, lang_c
);
4132 /* Runtime library routines are, by definition, available in an
4133 external shared object. */
4134 DECL_VISIBILITY (fn
) = VISIBILITY_DEFAULT
;
4135 DECL_VISIBILITY_SPECIFIED (fn
) = 1;
4136 set_call_expr_flags (fn
, ecf_flags
);
4140 /* Returns the _DECL for a library function with C++ linkage. */
4143 build_cp_library_fn (tree name
, enum tree_code operator_code
, tree type
,
4146 tree fn
= build_library_fn (name
, operator_code
, type
, ecf_flags
);
4147 DECL_CONTEXT (fn
) = FROB_CONTEXT (current_namespace
);
4148 SET_DECL_LANGUAGE (fn
, lang_cplusplus
);
4152 /* Like build_library_fn, but takes a C string instead of an
4156 build_library_fn_ptr (const char* name
, tree type
, int ecf_flags
)
4158 return build_library_fn (get_identifier (name
), ERROR_MARK
, type
, ecf_flags
);
4161 /* Like build_cp_library_fn, but takes a C string instead of an
4165 build_cp_library_fn_ptr (const char* name
, tree type
, int ecf_flags
)
4167 return build_cp_library_fn (get_identifier (name
), ERROR_MARK
, type
,
4171 /* Like build_library_fn, but also pushes the function so that we will
4172 be able to find it via IDENTIFIER_GLOBAL_VALUE. Also, the function
4173 may throw exceptions listed in RAISES. */
4176 push_library_fn (tree name
, tree type
, tree raises
, int ecf_flags
)
4181 type
= build_exception_variant (type
, raises
);
4183 fn
= build_library_fn (name
, ERROR_MARK
, type
, ecf_flags
);
4184 pushdecl_top_level (fn
);
4188 /* Like build_cp_library_fn, but also pushes the function so that it
4189 will be found by normal lookup. */
4192 push_cp_library_fn (enum tree_code operator_code
, tree type
,
4195 tree fn
= build_cp_library_fn (ansi_opname (operator_code
),
4200 apply_tm_attr (fn
, get_identifier ("transaction_safe"));
4204 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4208 push_void_library_fn (tree name
, tree parmtypes
, int ecf_flags
)
4210 tree type
= build_function_type (void_type_node
, parmtypes
);
4211 return push_library_fn (name
, type
, NULL_TREE
, ecf_flags
);
4214 /* Like push_library_fn, but also note that this function throws
4215 and does not return. Used for __throw_foo and the like. */
4218 push_throw_library_fn (tree name
, tree type
)
4220 tree fn
= push_library_fn (name
, type
, NULL_TREE
, ECF_NORETURN
);
4224 /* When we call finish_struct for an anonymous union, we create
4225 default copy constructors and such. But, an anonymous union
4226 shouldn't have such things; this function undoes the damage to the
4227 anonymous union type T.
4229 (The reason that we create the synthesized methods is that we don't
4230 distinguish `union { int i; }' from `typedef union { int i; } U'.
4231 The first is an anonymous union; the second is just an ordinary
4235 fixup_anonymous_aggr (tree t
)
4239 /* Wipe out memory of synthesized methods. */
4240 TYPE_HAS_USER_CONSTRUCTOR (t
) = 0;
4241 TYPE_HAS_DEFAULT_CONSTRUCTOR (t
) = 0;
4242 TYPE_HAS_COPY_CTOR (t
) = 0;
4243 TYPE_HAS_CONST_COPY_CTOR (t
) = 0;
4244 TYPE_HAS_COPY_ASSIGN (t
) = 0;
4245 TYPE_HAS_CONST_COPY_ASSIGN (t
) = 0;
4247 /* Splice the implicitly generated functions out of the TYPE_METHODS
4249 q
= &TYPE_METHODS (t
);
4252 if (DECL_ARTIFICIAL (*q
))
4253 *q
= TREE_CHAIN (*q
);
4255 q
= &DECL_CHAIN (*q
);
4258 /* ISO C++ 9.5.3. Anonymous unions may not have function members. */
4259 if (TYPE_METHODS (t
))
4261 tree decl
= TYPE_MAIN_DECL (t
);
4263 if (TREE_CODE (t
) != UNION_TYPE
)
4264 error_at (DECL_SOURCE_LOCATION (decl
),
4265 "an anonymous struct cannot have function members");
4267 error_at (DECL_SOURCE_LOCATION (decl
),
4268 "an anonymous union cannot have function members");
4271 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4272 assignment operators (because they cannot have these methods themselves).
4273 For anonymous unions this is already checked because they are not allowed
4274 in any union, otherwise we have to check it. */
4275 if (TREE_CODE (t
) != UNION_TYPE
)
4279 for (field
= TYPE_FIELDS (t
); field
; field
= DECL_CHAIN (field
))
4280 if (TREE_CODE (field
) == FIELD_DECL
)
4282 type
= TREE_TYPE (field
);
4283 if (CLASS_TYPE_P (type
))
4285 if (TYPE_NEEDS_CONSTRUCTING (type
))
4286 error ("member %q+#D with constructor not allowed "
4287 "in anonymous aggregate", field
);
4288 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
))
4289 error ("member %q+#D with destructor not allowed "
4290 "in anonymous aggregate", field
);
4291 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type
))
4292 error ("member %q+#D with copy assignment operator "
4293 "not allowed in anonymous aggregate", field
);
4299 /* Warn for an attribute located at LOCATION that appertains to the
4300 class type CLASS_TYPE that has not been properly placed after its
4301 class-key, in it class-specifier. */
4304 warn_misplaced_attr_for_class_type (source_location location
,
4307 gcc_assert (OVERLOAD_TYPE_P (class_type
));
4309 if (warning_at (location
, OPT_Wattributes
,
4310 "attribute ignored in declaration "
4311 "of %q#T", class_type
))
4313 "attribute for %q#T must follow the %qs keyword",
4314 class_type
, class_key_or_enum_as_string (class_type
));
4317 /* Make sure that a declaration with no declarator is well-formed, i.e.
4318 just declares a tagged type or anonymous union.
4320 Returns the type declared; or NULL_TREE if none. */
4323 check_tag_decl (cp_decl_specifier_seq
*declspecs
,
4324 bool explicit_type_instantiation_p
)
4326 int saw_friend
= decl_spec_seq_has_spec_p (declspecs
, ds_friend
);
4327 int saw_typedef
= decl_spec_seq_has_spec_p (declspecs
, ds_typedef
);
4328 /* If a class, struct, or enum type is declared by the DECLSPECS
4329 (i.e, if a class-specifier, enum-specifier, or non-typename
4330 elaborated-type-specifier appears in the DECLSPECS),
4331 DECLARED_TYPE is set to the corresponding type. */
4332 tree declared_type
= NULL_TREE
;
4333 bool error_p
= false;
4335 if (declspecs
->multiple_types_p
)
4336 error ("multiple types in one declaration");
4337 else if (declspecs
->redefined_builtin_type
)
4339 if (!in_system_header_at (input_location
))
4340 permerror (declspecs
->locations
[ds_redefined_builtin_type_spec
],
4341 "redeclaration of C++ built-in type %qT",
4342 declspecs
->redefined_builtin_type
);
4347 && TYPE_P (declspecs
->type
)
4348 && ((TREE_CODE (declspecs
->type
) != TYPENAME_TYPE
4349 && MAYBE_CLASS_TYPE_P (declspecs
->type
))
4350 || TREE_CODE (declspecs
->type
) == ENUMERAL_TYPE
))
4351 declared_type
= declspecs
->type
;
4352 else if (declspecs
->type
== error_mark_node
)
4354 if (declared_type
== NULL_TREE
&& ! saw_friend
&& !error_p
)
4355 permerror (input_location
, "declaration does not declare anything");
4356 else if (declared_type
!= NULL_TREE
&& type_uses_auto (declared_type
))
4358 error ("%<auto%> can only be specified for variables "
4359 "or function declarations");
4360 return error_mark_node
;
4362 /* Check for an anonymous union. */
4363 else if (declared_type
&& RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type
))
4364 && TYPE_ANONYMOUS_P (declared_type
))
4366 /* 7/3 In a simple-declaration, the optional init-declarator-list
4367 can be omitted only when declaring a class (clause 9) or
4368 enumeration (7.2), that is, when the decl-specifier-seq contains
4369 either a class-specifier, an elaborated-type-specifier with
4370 a class-key (9.1), or an enum-specifier. In these cases and
4371 whenever a class-specifier or enum-specifier is present in the
4372 decl-specifier-seq, the identifiers in these specifiers are among
4373 the names being declared by the declaration (as class-name,
4374 enum-names, or enumerators, depending on the syntax). In such
4375 cases, and except for the declaration of an unnamed bit-field (9.6),
4376 the decl-specifier-seq shall introduce one or more names into the
4377 program, or shall redeclare a name introduced by a previous
4378 declaration. [Example:
4379 enum { }; // ill-formed
4380 typedef class { }; // ill-formed
4384 error ("missing type-name in typedef-declaration");
4387 /* Anonymous unions are objects, so they can have specifiers. */;
4388 SET_ANON_AGGR_TYPE_P (declared_type
);
4390 if (TREE_CODE (declared_type
) != UNION_TYPE
4391 && !in_system_header_at (input_location
))
4392 pedwarn (input_location
, OPT_Wpedantic
, "ISO C++ prohibits anonymous structs");
4397 if (decl_spec_seq_has_spec_p (declspecs
, ds_inline
)
4398 || decl_spec_seq_has_spec_p (declspecs
, ds_virtual
))
4399 error ("%qs can only be specified for functions",
4400 decl_spec_seq_has_spec_p (declspecs
, ds_inline
)
4401 ? "inline" : "virtual");
4403 && (!current_class_type
4404 || current_scope () != current_class_type
))
4405 error ("%<friend%> can only be specified inside a class");
4406 else if (decl_spec_seq_has_spec_p (declspecs
, ds_explicit
))
4407 error ("%<explicit%> can only be specified for constructors");
4408 else if (declspecs
->storage_class
)
4409 error ("a storage class can only be specified for objects "
4411 else if (decl_spec_seq_has_spec_p (declspecs
, ds_const
)
4412 || decl_spec_seq_has_spec_p (declspecs
, ds_volatile
)
4413 || decl_spec_seq_has_spec_p (declspecs
, ds_restrict
)
4414 || decl_spec_seq_has_spec_p (declspecs
, ds_thread
))
4415 error ("qualifiers can only be specified for objects "
4417 else if (saw_typedef
)
4418 warning (0, "%<typedef%> was ignored in this declaration");
4419 else if (decl_spec_seq_has_spec_p (declspecs
, ds_constexpr
))
4420 error ("%<constexpr%> cannot be used for type declarations");
4423 if (declspecs
->attributes
&& warn_attributes
&& declared_type
)
4426 if (!CLASS_TYPE_P (declared_type
)
4427 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type
))
4428 /* For a non-template class, use the name location. */
4429 loc
= location_of (declared_type
);
4431 /* For a template class (an explicit instantiation), use the
4432 current location. */
4433 loc
= input_location
;
4435 if (explicit_type_instantiation_p
)
4436 /* [dcl.attr.grammar]/4:
4438 No attribute-specifier-seq shall appertain to an explicit
4441 if (warning_at (loc
, OPT_Wattributes
,
4442 "attribute ignored in explicit instantiation %q#T",
4445 "no attribute can be applied to "
4446 "an explicit instantiation");
4449 warn_misplaced_attr_for_class_type (loc
, declared_type
);
4452 return declared_type
;
4455 /* Called when a declaration is seen that contains no names to declare.
4456 If its type is a reference to a structure, union or enum inherited
4457 from a containing scope, shadow that tag name for the current scope
4458 with a forward reference.
4459 If its type defines a new named structure or union
4460 or defines an enum, it is valid but we need not do anything here.
4461 Otherwise, it is an error.
4463 C++: may have to grok the declspecs to learn about static,
4464 complain for anonymous unions.
4466 Returns the TYPE declared -- or NULL_TREE if none. */
4469 shadow_tag (cp_decl_specifier_seq
*declspecs
)
4471 tree t
= check_tag_decl (declspecs
,
4472 /*explicit_type_instantiation_p=*/false);
4477 if (maybe_process_partial_specialization (t
) == error_mark_node
)
4480 /* This is where the variables in an anonymous union are
4481 declared. An anonymous union declaration looks like:
4483 because there is no declarator after the union, the parser
4484 sends that declaration here. */
4485 if (ANON_AGGR_TYPE_P (t
))
4487 fixup_anonymous_aggr (t
);
4489 if (TYPE_FIELDS (t
))
4491 tree decl
= grokdeclarator (/*declarator=*/NULL
,
4492 declspecs
, NORMAL
, 0, NULL
);
4493 finish_anon_union (decl
);
4500 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4503 groktypename (cp_decl_specifier_seq
*type_specifiers
,
4504 const cp_declarator
*declarator
,
4505 bool is_template_arg
)
4509 enum decl_context context
4510 = is_template_arg
? TEMPLATE_TYPE_ARG
: TYPENAME
;
4511 attrs
= type_specifiers
->attributes
;
4512 type_specifiers
->attributes
= NULL_TREE
;
4513 type
= grokdeclarator (declarator
, type_specifiers
, context
, 0, &attrs
);
4514 if (attrs
&& type
!= error_mark_node
)
4516 if (CLASS_TYPE_P (type
))
4517 warning (OPT_Wattributes
, "ignoring attributes applied to class type %qT "
4518 "outside of definition", type
);
4519 else if (MAYBE_CLASS_TYPE_P (type
))
4520 /* A template type parameter or other dependent type. */
4521 warning (OPT_Wattributes
, "ignoring attributes applied to dependent "
4522 "type %qT without an associated declaration", type
);
4524 cplus_decl_attributes (&type
, attrs
, 0);
4529 /* Process a DECLARATOR for a function-scope variable declaration,
4530 namespace-scope variable declaration, or function declaration.
4531 (Function definitions go through start_function; class member
4532 declarations appearing in the body of the class go through
4533 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4534 If an error occurs, the error_mark_node is returned instead.
4536 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
4537 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
4538 for an explicitly defaulted function, or SD_DELETED for an explicitly
4539 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
4540 implicitly initialized via a default constructor. ATTRIBUTES and
4541 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
4543 The scope represented by the context of the returned DECL is pushed
4544 (if it is not the global namespace) and is assigned to
4545 *PUSHED_SCOPE_P. The caller is then responsible for calling
4546 pop_scope on *PUSHED_SCOPE_P if it is set. */
4549 start_decl (const cp_declarator
*declarator
,
4550 cp_decl_specifier_seq
*declspecs
,
4553 tree prefix_attributes
,
4554 tree
*pushed_scope_p
)
4562 *pushed_scope_p
= NULL_TREE
;
4564 /* An object declared as __attribute__((deprecated)) suppresses
4565 warnings of uses of other deprecated items. */
4566 if (lookup_attribute ("deprecated", attributes
))
4567 deprecated_state
= DEPRECATED_SUPPRESS
;
4569 attributes
= chainon (attributes
, prefix_attributes
);
4571 decl
= grokdeclarator (declarator
, declspecs
, NORMAL
, initialized
,
4574 deprecated_state
= DEPRECATED_NORMAL
;
4576 if (decl
== NULL_TREE
|| VOID_TYPE_P (decl
)
4577 || decl
== error_mark_node
)
4578 return error_mark_node
;
4580 context
= CP_DECL_CONTEXT (decl
);
4581 if (context
!= global_namespace
)
4582 *pushed_scope_p
= push_scope (context
);
4585 /* Is it valid for this decl to have an initializer at all?
4586 If not, set INITIALIZED to zero, which will indirectly
4587 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4588 switch (TREE_CODE (decl
))
4591 error ("typedef %qD is initialized (use decltype instead)", decl
);
4592 return error_mark_node
;
4595 if (initialized
== SD_DELETED
)
4596 /* We'll handle the rest of the semantics later, but we need to
4597 set this now so it's visible to duplicate_decls. */
4598 DECL_DELETED_FN (decl
) = 1;
4607 if (! toplevel_bindings_p ()
4608 && DECL_EXTERNAL (decl
))
4609 warning (0, "declaration of %q#D has %<extern%> and is initialized",
4611 DECL_EXTERNAL (decl
) = 0;
4612 if (toplevel_bindings_p ())
4613 TREE_STATIC (decl
) = 1;
4615 alias
= lookup_attribute ("alias", DECL_ATTRIBUTES (decl
)) != 0;
4617 if (alias
&& TREE_CODE (decl
) == FUNCTION_DECL
)
4618 record_key_method_defined (decl
);
4620 /* If this is a typedef that names the class for linkage purposes
4621 (7.1.3p8), apply any attributes directly to the type. */
4622 if (TREE_CODE (decl
) == TYPE_DECL
4623 && OVERLOAD_TYPE_P (TREE_TYPE (decl
))
4624 && decl
== TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl
))))
4625 flags
= ATTR_FLAG_TYPE_IN_PLACE
;
4629 /* Set attributes here so if duplicate decl, will have proper attributes. */
4630 cplus_decl_attributes (&decl
, attributes
, flags
);
4632 /* Dllimported symbols cannot be defined. Static data members (which
4633 can be initialized in-class and dllimported) go through grokfield,
4634 not here, so we don't need to exclude those decls when checking for
4636 if (initialized
&& DECL_DLLIMPORT_P (decl
))
4638 error ("definition of %q#D is marked %<dllimport%>", decl
);
4639 DECL_DLLIMPORT_P (decl
) = 0;
4642 /* If #pragma weak was used, mark the decl weak now. */
4643 if (!processing_template_decl
)
4644 maybe_apply_pragma_weak (decl
);
4646 if (TREE_CODE (decl
) == FUNCTION_DECL
4647 && DECL_DECLARED_INLINE_P (decl
)
4648 && DECL_UNINLINABLE (decl
)
4649 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl
)))
4650 warning (0, "inline function %q+D given attribute noinline", decl
);
4652 if (TYPE_P (context
) && COMPLETE_TYPE_P (complete_type (context
)))
4654 bool this_tmpl
= (processing_template_decl
4655 > template_class_depth (context
));
4658 tree field
= lookup_field (context
, DECL_NAME (decl
), 0, false);
4659 if (field
== NULL_TREE
4660 || !(VAR_P (field
) || variable_template_p (field
)))
4661 error ("%q+#D is not a static data member of %q#T", decl
, context
);
4662 else if (variable_template_p (field
) && !this_tmpl
)
4664 if (DECL_LANG_SPECIFIC (decl
)
4665 && DECL_TEMPLATE_SPECIALIZATION (decl
))
4666 /* OK, specialization was already checked. */;
4669 error_at (DECL_SOURCE_LOCATION (decl
),
4670 "non-member-template declaration of %qD", decl
);
4671 inform (DECL_SOURCE_LOCATION (field
), "does not match "
4672 "member template declaration here");
4673 return error_mark_node
;
4678 if (variable_template_p (field
))
4679 field
= DECL_TEMPLATE_RESULT (field
);
4681 if (DECL_CONTEXT (field
) != context
)
4683 if (!same_type_p (DECL_CONTEXT (field
), context
))
4684 permerror (input_location
, "ISO C++ does not permit %<%T::%D%> "
4685 "to be defined as %<%T::%D%>",
4686 DECL_CONTEXT (field
), DECL_NAME (decl
),
4687 context
, DECL_NAME (decl
));
4688 DECL_CONTEXT (decl
) = DECL_CONTEXT (field
);
4690 /* Static data member are tricky; an in-class initialization
4691 still doesn't provide a definition, so the in-class
4692 declaration will have DECL_EXTERNAL set, but will have an
4693 initialization. Thus, duplicate_decls won't warn
4694 about this situation, and so we check here. */
4695 if (initialized
&& DECL_INITIALIZED_IN_CLASS_P (field
))
4696 error ("duplicate initialization of %qD", decl
);
4697 if (duplicate_decls (decl
, field
, /*newdecl_is_friend=*/false))
4699 if (decl_spec_seq_has_spec_p (declspecs
, ds_constexpr
)
4700 && !DECL_DECLARED_CONSTEXPR_P (field
))
4701 error ("%qD declared %<constexpr%> outside its class", field
);
4706 tree field
= check_classfn (context
, decl
,
4708 ? current_template_parms
4710 if (field
&& field
!= error_mark_node
4711 && duplicate_decls (decl
, field
,
4712 /*newdecl_is_friend=*/false))
4716 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
4717 DECL_IN_AGGR_P (decl
) = 0;
4718 /* Do not mark DECL as an explicit specialization if it was not
4719 already marked as an instantiation; a declaration should
4720 never be marked as a specialization unless we know what
4721 template is being specialized. */
4722 if (DECL_LANG_SPECIFIC (decl
) && DECL_USE_TEMPLATE (decl
))
4724 SET_DECL_TEMPLATE_SPECIALIZATION (decl
);
4725 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4726 DECL_COMDAT (decl
) = (TREE_PUBLIC (decl
)
4727 && DECL_DECLARED_INLINE_P (decl
));
4729 DECL_COMDAT (decl
) = false;
4731 /* [temp.expl.spec] An explicit specialization of a static data
4732 member of a template is a definition if the declaration
4733 includes an initializer; otherwise, it is a declaration.
4735 We check for processing_specialization so this only applies
4736 to the new specialization syntax. */
4737 if (!initialized
&& processing_specialization
)
4738 DECL_EXTERNAL (decl
) = 1;
4741 if (DECL_EXTERNAL (decl
) && ! DECL_TEMPLATE_SPECIALIZATION (decl
)
4742 /* Aliases are definitions. */
4744 permerror (input_location
, "declaration of %q#D outside of class is not definition",
4748 was_public
= TREE_PUBLIC (decl
);
4750 /* Enter this declaration into the symbol table. */
4751 decl
= maybe_push_decl (decl
);
4753 if (processing_template_decl
)
4754 decl
= push_template_decl (decl
);
4755 if (decl
== error_mark_node
)
4756 return error_mark_node
;
4759 && DECL_NAMESPACE_SCOPE_P (decl
) && !TREE_PUBLIC (decl
) && !was_public
4760 && !DECL_THIS_STATIC (decl
) && !DECL_ARTIFICIAL (decl
))
4762 /* This is a const variable with implicit 'static'. Set
4763 DECL_THIS_STATIC so we can tell it from variables that are
4764 !TREE_PUBLIC because of the anonymous namespace. */
4765 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl
)) || errorcount
);
4766 DECL_THIS_STATIC (decl
) = 1;
4769 if (!processing_template_decl
&& VAR_P (decl
))
4770 start_decl_1 (decl
, initialized
);
4775 /* Process the declaration of a variable DECL. INITIALIZED is true
4776 iff DECL is explicitly initialized. (INITIALIZED is false if the
4777 variable is initialized via an implicitly-called constructor.)
4778 This function must be called for ordinary variables (including, for
4779 example, implicit instantiations of templates), but must not be
4780 called for template declarations. */
4783 start_decl_1 (tree decl
, bool initialized
)
4787 bool aggregate_definition_p
;
4789 gcc_assert (!processing_template_decl
);
4791 if (error_operand_p (decl
))
4794 gcc_assert (VAR_P (decl
));
4796 type
= TREE_TYPE (decl
);
4797 complete_p
= COMPLETE_TYPE_P (type
);
4798 aggregate_definition_p
= MAYBE_CLASS_TYPE_P (type
) && !DECL_EXTERNAL (decl
);
4800 /* If an explicit initializer is present, or if this is a definition
4801 of an aggregate, then we need a complete type at this point.
4802 (Scalars are always complete types, so there is nothing to
4803 check.) This code just sets COMPLETE_P; errors (if necessary)
4804 are issued below. */
4805 if ((initialized
|| aggregate_definition_p
)
4807 && COMPLETE_TYPE_P (complete_type (type
)))
4810 /* We will not yet have set TREE_READONLY on DECL if the type
4811 was "const", but incomplete, before this point. But, now, we
4812 have a complete type, so we can try again. */
4813 cp_apply_type_quals_to_decl (cp_type_quals (type
), decl
);
4817 /* Is it valid for this decl to have an initializer at all? */
4819 /* Don't allow initializations for incomplete types except for
4820 arrays which might be completed by the initialization. */
4822 ; /* A complete type is ok. */
4823 else if (type_uses_auto (type
))
4824 ; /* An auto type is ok. */
4825 else if (TREE_CODE (type
) != ARRAY_TYPE
)
4827 error ("variable %q#D has initializer but incomplete type", decl
);
4828 type
= TREE_TYPE (decl
) = error_mark_node
;
4830 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type
))))
4832 if (DECL_LANG_SPECIFIC (decl
) && DECL_TEMPLATE_INFO (decl
))
4833 error ("elements of array %q#D have incomplete type", decl
);
4834 /* else we already gave an error in start_decl. */
4837 else if (aggregate_definition_p
&& !complete_p
)
4839 if (type_uses_auto (type
))
4840 error ("declaration of %q#D has no initializer", decl
);
4842 error ("aggregate %q#D has incomplete type and cannot be defined",
4844 /* Change the type so that assemble_variable will give
4845 DECL an rtl we can live with: (mem (const_int 0)). */
4846 type
= TREE_TYPE (decl
) = error_mark_node
;
4849 /* Create a new scope to hold this declaration if necessary.
4850 Whether or not a new scope is necessary cannot be determined
4851 until after the type has been completed; if the type is a
4852 specialization of a class template it is not until after
4853 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
4854 will be set correctly. */
4855 maybe_push_cleanup_level (type
);
4858 /* Handle initialization of references. DECL, TYPE, and INIT have the
4859 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
4860 but will be set to a new CLEANUP_STMT if a temporary is created
4861 that must be destroyed subsequently.
4863 Returns an initializer expression to use to initialize DECL, or
4864 NULL if the initialization can be performed statically.
4866 Quotes on semantics can be found in ARM 8.4.3. */
4869 grok_reference_init (tree decl
, tree type
, tree init
, int flags
)
4871 if (init
== NULL_TREE
)
4873 if ((DECL_LANG_SPECIFIC (decl
) == 0
4874 || DECL_IN_AGGR_P (decl
) == 0)
4875 && ! DECL_THIS_EXTERN (decl
))
4876 error ("%qD declared as reference but not initialized", decl
);
4880 if (TREE_CODE (init
) == TREE_LIST
)
4881 init
= build_x_compound_expr_from_list (init
, ELK_INIT
,
4882 tf_warning_or_error
);
4884 if (TREE_CODE (TREE_TYPE (type
)) != ARRAY_TYPE
4885 && TREE_CODE (TREE_TYPE (init
)) == ARRAY_TYPE
)
4886 /* Note: default conversion is only called in very special cases. */
4887 init
= decay_conversion (init
, tf_warning_or_error
);
4889 /* Convert INIT to the reference type TYPE. This may involve the
4890 creation of a temporary, whose lifetime must be the same as that
4891 of the reference. If so, a DECL_EXPR for the temporary will be
4892 added just after the DECL_EXPR for DECL. That's why we don't set
4893 DECL_INITIAL for local references (instead assigning to them
4894 explicitly); we need to allow the temporary to be initialized
4896 return initialize_reference (type
, init
, flags
,
4897 tf_warning_or_error
);
4900 /* Designated initializers in arrays are not supported in GNU C++.
4901 The parser cannot detect this error since it does not know whether
4902 a given brace-enclosed initializer is for a class type or for an
4903 array. This function checks that CE does not use a designated
4904 initializer. If it does, an error is issued. Returns true if CE
4905 is valid, i.e., does not have a designated initializer. */
4908 check_array_designated_initializer (constructor_elt
*ce
,
4909 unsigned HOST_WIDE_INT index
)
4911 /* Designated initializers for array elements are not supported. */
4914 /* The parser only allows identifiers as designated
4916 if (ce
->index
== error_mark_node
)
4918 error ("name used in a GNU-style designated "
4919 "initializer for an array");
4922 else if (identifier_p (ce
->index
))
4924 error ("name %qD used in a GNU-style designated "
4925 "initializer for an array", ce
->index
);
4929 ce
->index
= cxx_constant_value (ce
->index
);
4931 if (TREE_CODE (ce
->index
) == INTEGER_CST
)
4933 /* A C99 designator is OK if it matches the current index. */
4934 if (wi::eq_p (ce
->index
, index
))
4937 sorry ("non-trivial designated initializers not supported");
4948 /* When parsing `int a[] = {1, 2};' we don't know the size of the
4949 array until we finish parsing the initializer. If that's the
4950 situation we're in, update DECL accordingly. */
4953 maybe_deduce_size_from_array_init (tree decl
, tree init
)
4955 tree type
= TREE_TYPE (decl
);
4957 if (TREE_CODE (type
) == ARRAY_TYPE
4958 && TYPE_DOMAIN (type
) == NULL_TREE
4959 && TREE_CODE (decl
) != TYPE_DECL
)
4961 /* do_default is really a C-ism to deal with tentative definitions.
4962 But let's leave it here to ease the eventual merge. */
4963 int do_default
= !DECL_EXTERNAL (decl
);
4964 tree initializer
= init
? init
: DECL_INITIAL (decl
);
4967 /* Check that there are no designated initializers in INIT, as
4968 those are not supported in GNU C++, and as the middle-end
4969 will crash if presented with a non-numeric designated
4971 if (initializer
&& BRACE_ENCLOSED_INITIALIZER_P (initializer
))
4973 vec
<constructor_elt
, va_gc
> *v
= CONSTRUCTOR_ELTS (initializer
);
4974 constructor_elt
*ce
;
4976 FOR_EACH_VEC_SAFE_ELT (v
, i
, ce
)
4977 if (!check_array_designated_initializer (ce
, i
))
4983 failure
= cp_complete_array_type (&TREE_TYPE (decl
), initializer
,
4987 error ("initializer fails to determine size of %qD", decl
);
4989 else if (failure
== 2)
4993 error ("array size missing in %qD", decl
);
4995 /* If a `static' var's size isn't known, make it extern as
4996 well as static, so it does not get allocated. If it's not
4997 `static', then don't mark it extern; finish_incomplete_decl
4998 will give it a default size and it will get allocated. */
4999 else if (!pedantic
&& TREE_STATIC (decl
) && !TREE_PUBLIC (decl
))
5000 DECL_EXTERNAL (decl
) = 1;
5002 else if (failure
== 3)
5004 error ("zero-size array %qD", decl
);
5008 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl
)), decl
);
5010 relayout_decl (decl
);
5014 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5015 any appropriate error messages regarding the layout. */
5018 layout_var_decl (tree decl
)
5022 type
= TREE_TYPE (decl
);
5023 if (type
== error_mark_node
)
5026 /* If we haven't already laid out this declaration, do so now.
5027 Note that we must not call complete type for an external object
5028 because it's type might involve templates that we are not
5029 supposed to instantiate yet. (And it's perfectly valid to say
5030 `extern X x' for some incomplete type `X'.) */
5031 if (!DECL_EXTERNAL (decl
))
5032 complete_type (type
);
5033 if (!DECL_SIZE (decl
)
5034 && TREE_TYPE (decl
) != error_mark_node
5035 && (COMPLETE_TYPE_P (type
)
5036 || (TREE_CODE (type
) == ARRAY_TYPE
5037 && !TYPE_DOMAIN (type
)
5038 && COMPLETE_TYPE_P (TREE_TYPE (type
)))))
5039 layout_decl (decl
, 0);
5041 if (!DECL_EXTERNAL (decl
) && DECL_SIZE (decl
) == NULL_TREE
)
5043 /* An automatic variable with an incomplete type: that is an error.
5044 Don't talk about array types here, since we took care of that
5045 message in grokdeclarator. */
5046 error ("storage size of %qD isn%'t known", decl
);
5047 TREE_TYPE (decl
) = error_mark_node
;
5050 /* Keep this code around in case we later want to control debug info
5051 based on whether a type is "used". (jason 1999-11-11) */
5053 else if (!DECL_EXTERNAL (decl
) && MAYBE_CLASS_TYPE_P (ttype
))
5054 /* Let debugger know it should output info for this type. */
5055 note_debug_info_needed (ttype
);
5057 if (TREE_STATIC (decl
) && DECL_CLASS_SCOPE_P (decl
))
5058 note_debug_info_needed (DECL_CONTEXT (decl
));
5061 if ((DECL_EXTERNAL (decl
) || TREE_STATIC (decl
))
5062 && DECL_SIZE (decl
) != NULL_TREE
5063 && ! TREE_CONSTANT (DECL_SIZE (decl
)))
5065 if (TREE_CODE (DECL_SIZE (decl
)) == INTEGER_CST
)
5066 constant_expression_warning (DECL_SIZE (decl
));
5069 error ("storage size of %qD isn%'t constant", decl
);
5070 TREE_TYPE (decl
) = error_mark_node
;
5075 /* If a local static variable is declared in an inline function, or if
5076 we have a weak definition, we must endeavor to create only one
5077 instance of the variable at link-time. */
5080 maybe_commonize_var (tree decl
)
5082 /* Static data in a function with comdat linkage also has comdat
5084 if (TREE_STATIC (decl
)
5085 /* Don't mess with __FUNCTION__. */
5086 && ! DECL_ARTIFICIAL (decl
)
5087 && DECL_FUNCTION_SCOPE_P (decl
)
5088 && vague_linkage_p (DECL_CONTEXT (decl
)))
5092 /* With weak symbols, we simply make the variable COMDAT;
5093 that will cause copies in multiple translations units to
5095 comdat_linkage (decl
);
5099 if (DECL_INITIAL (decl
) == NULL_TREE
5100 || DECL_INITIAL (decl
) == error_mark_node
)
5102 /* Without weak symbols, we can use COMMON to merge
5103 uninitialized variables. */
5104 TREE_PUBLIC (decl
) = 1;
5105 DECL_COMMON (decl
) = 1;
5109 /* While for initialized variables, we must use internal
5110 linkage -- which means that multiple copies will not
5112 TREE_PUBLIC (decl
) = 0;
5113 DECL_COMMON (decl
) = 0;
5114 if (warning_at (DECL_SOURCE_LOCATION (decl
), 0,
5115 "sorry: semantics of inline function static "
5116 "data %q#D are wrong (you%'ll wind up "
5117 "with multiple copies)", decl
))
5118 inform (DECL_SOURCE_LOCATION (decl
),
5119 "you can work around this by removing the initializer");
5125 /* Issue an error message if DECL is an uninitialized const variable. */
5128 check_for_uninitialized_const_var (tree decl
)
5130 tree type
= strip_array_types (TREE_TYPE (decl
));
5132 /* ``Unless explicitly declared extern, a const object does not have
5133 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5136 && TREE_CODE (type
) != REFERENCE_TYPE
5137 && CP_TYPE_CONST_P (type
)
5138 && !DECL_INITIAL (decl
))
5140 tree field
= default_init_uninitialized_part (type
);
5144 permerror (DECL_SOURCE_LOCATION (decl
),
5145 "uninitialized const %qD", decl
);
5147 if (CLASS_TYPE_P (type
))
5149 tree defaulted_ctor
;
5151 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type
)),
5152 "%q#T has no user-provided default constructor", type
);
5153 defaulted_ctor
= in_class_defaulted_default_constructor (type
);
5155 inform (DECL_SOURCE_LOCATION (defaulted_ctor
),
5156 "constructor is not user-provided because it is "
5157 "explicitly defaulted in the class body");
5158 inform (0, "and the implicitly-defined constructor does not "
5159 "initialize %q+#D", field
);
5164 /* Structure holding the current initializer being processed by reshape_init.
5165 CUR is a pointer to the current element being processed, END is a pointer
5166 after the last element present in the initializer. */
5167 typedef struct reshape_iterator_t
5169 constructor_elt
*cur
;
5170 constructor_elt
*end
;
5173 static tree
reshape_init_r (tree
, reshape_iter
*, bool, tsubst_flags_t
);
5175 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5176 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5177 initialized. If there are no more such fields, the return value
5181 next_initializable_field (tree field
)
5184 && (TREE_CODE (field
) != FIELD_DECL
5185 || (DECL_C_BIT_FIELD (field
) && !DECL_NAME (field
))
5186 || DECL_ARTIFICIAL (field
)))
5187 field
= DECL_CHAIN (field
);
5192 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5193 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5194 INTEGER_CST representing the size of the array minus one (the maximum index),
5195 or NULL_TREE if the array was declared without specifying the size. D is
5196 the iterator within the constructor. */
5199 reshape_init_array_1 (tree elt_type
, tree max_index
, reshape_iter
*d
,
5200 tsubst_flags_t complain
)
5203 bool sized_array_p
= (max_index
&& TREE_CONSTANT (max_index
));
5204 unsigned HOST_WIDE_INT max_index_cst
= 0;
5205 unsigned HOST_WIDE_INT index
;
5207 /* The initializer for an array is always a CONSTRUCTOR. */
5208 new_init
= build_constructor (init_list_type_node
, NULL
);
5212 /* Minus 1 is used for zero sized arrays. */
5213 if (integer_all_onesp (max_index
))
5216 if (tree_fits_uhwi_p (max_index
))
5217 max_index_cst
= tree_to_uhwi (max_index
);
5218 /* sizetype is sign extended, not zero extended. */
5220 max_index_cst
= tree_to_uhwi (fold_convert (size_type_node
, max_index
));
5223 /* Loop until there are no more initializers. */
5225 d
->cur
!= d
->end
&& (!sized_array_p
|| index
<= max_index_cst
);
5229 constructor_elt
*old_cur
= d
->cur
;
5231 check_array_designated_initializer (d
->cur
, index
);
5232 elt_init
= reshape_init_r (elt_type
, d
, /*first_initializer_p=*/false,
5234 if (elt_init
== error_mark_node
)
5235 return error_mark_node
;
5236 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init
),
5237 size_int (index
), elt_init
);
5238 if (!TREE_CONSTANT (elt_init
))
5239 TREE_CONSTANT (new_init
) = false;
5241 /* This can happen with an invalid initializer (c++/54501). */
5242 if (d
->cur
== old_cur
&& !sized_array_p
)
5249 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5250 Parameters are the same of reshape_init_r. */
5253 reshape_init_array (tree type
, reshape_iter
*d
, tsubst_flags_t complain
)
5255 tree max_index
= NULL_TREE
;
5257 gcc_assert (TREE_CODE (type
) == ARRAY_TYPE
);
5259 if (TYPE_DOMAIN (type
))
5260 max_index
= array_type_nelts (type
);
5262 return reshape_init_array_1 (TREE_TYPE (type
), max_index
, d
, complain
);
5265 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5266 Parameters are the same of reshape_init_r. */
5269 reshape_init_vector (tree type
, reshape_iter
*d
, tsubst_flags_t complain
)
5271 tree max_index
= NULL_TREE
;
5273 gcc_assert (TREE_CODE (type
) == VECTOR_TYPE
);
5275 if (COMPOUND_LITERAL_P (d
->cur
->value
))
5277 tree value
= d
->cur
->value
;
5278 if (!same_type_p (TREE_TYPE (value
), type
))
5280 if (complain
& tf_error
)
5281 error ("invalid type %qT as initializer for a vector of type %qT",
5282 TREE_TYPE (d
->cur
->value
), type
);
5283 value
= error_mark_node
;
5289 /* For a vector, we initialize it as an array of the appropriate size. */
5290 if (TREE_CODE (type
) == VECTOR_TYPE
)
5291 max_index
= size_int (TYPE_VECTOR_SUBPARTS (type
) - 1);
5293 return reshape_init_array_1 (TREE_TYPE (type
), max_index
, d
, complain
);
5296 /* Subroutine of reshape_init_r, processes the initializers for classes
5297 or union. Parameters are the same of reshape_init_r. */
5300 reshape_init_class (tree type
, reshape_iter
*d
, bool first_initializer_p
,
5301 tsubst_flags_t complain
)
5306 gcc_assert (CLASS_TYPE_P (type
));
5308 /* The initializer for a class is always a CONSTRUCTOR. */
5309 new_init
= build_constructor (init_list_type_node
, NULL
);
5310 field
= next_initializable_field (TYPE_FIELDS (type
));
5316 An initializer for an aggregate member that is an
5317 empty class shall have the form of an empty
5318 initializer-list {}. */
5319 if (!first_initializer_p
)
5321 if (complain
& tf_error
)
5322 error ("initializer for %qT must be brace-enclosed", type
);
5323 return error_mark_node
;
5328 /* Loop through the initializable fields, gathering initializers. */
5329 while (d
->cur
!= d
->end
)
5332 constructor_elt
*old_cur
= d
->cur
;
5334 /* Handle designated initializers, as an extension. */
5337 if (d
->cur
->index
== error_mark_node
)
5338 return error_mark_node
;
5340 if (TREE_CODE (d
->cur
->index
) == FIELD_DECL
)
5341 /* We already reshaped this. */
5342 gcc_assert (d
->cur
->index
== field
);
5343 else if (TREE_CODE (d
->cur
->index
) == IDENTIFIER_NODE
)
5344 field
= lookup_field_1 (type
, d
->cur
->index
, /*want_type=*/false);
5347 if (complain
& tf_error
)
5348 error ("%<[%E] =%> used in a GNU-style designated initializer"
5349 " for class %qT", d
->cur
->index
, type
);
5350 return error_mark_node
;
5353 if (!field
|| TREE_CODE (field
) != FIELD_DECL
)
5355 if (complain
& tf_error
)
5356 error ("%qT has no non-static data member named %qD", type
,
5358 return error_mark_node
;
5362 /* If we processed all the member of the class, we are done. */
5366 field_init
= reshape_init_r (TREE_TYPE (field
), d
,
5367 /*first_initializer_p=*/false, complain
);
5368 if (field_init
== error_mark_node
)
5369 return error_mark_node
;
5371 if (d
->cur
== old_cur
&& d
->cur
->index
)
5373 /* This can happen with an invalid initializer for a flexible
5374 array member (c++/54441). */
5375 if (complain
& tf_error
)
5376 error ("invalid initializer for %q#D", field
);
5377 return error_mark_node
;
5380 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init
), field
, field_init
);
5384 When a union is initialized with a brace-enclosed
5385 initializer, the braces shall only contain an
5386 initializer for the first member of the union. */
5387 if (TREE_CODE (type
) == UNION_TYPE
)
5390 field
= next_initializable_field (DECL_CHAIN (field
));
5396 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5397 designators are not valid; either complain or return true to indicate
5398 that reshape_init_r should return error_mark_node. */
5401 has_designator_problem (reshape_iter
*d
, tsubst_flags_t complain
)
5405 if (complain
& tf_error
)
5406 error ("C99 designator %qE outside aggregate initializer",
5414 /* Subroutine of reshape_init, which processes a single initializer (part of
5415 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5416 iterator within the CONSTRUCTOR which points to the initializer to process.
5417 FIRST_INITIALIZER_P is true if this is the first initializer of the
5418 outermost CONSTRUCTOR node. */
5421 reshape_init_r (tree type
, reshape_iter
*d
, bool first_initializer_p
,
5422 tsubst_flags_t complain
)
5424 tree init
= d
->cur
->value
;
5426 if (error_operand_p (init
))
5427 return error_mark_node
;
5429 if (first_initializer_p
&& !CP_AGGREGATE_TYPE_P (type
)
5430 && has_designator_problem (d
, complain
))
5431 return error_mark_node
;
5433 if (TREE_CODE (type
) == COMPLEX_TYPE
)
5435 /* A complex type can be initialized from one or two initializers,
5436 but braces are not elided. */
5438 if (BRACE_ENCLOSED_INITIALIZER_P (init
))
5440 if (CONSTRUCTOR_NELTS (init
) > 2)
5442 if (complain
& tf_error
)
5443 error ("too many initializers for %qT", type
);
5445 return error_mark_node
;
5448 else if (first_initializer_p
&& d
->cur
!= d
->end
)
5450 vec
<constructor_elt
, va_gc
> *v
= 0;
5451 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, init
);
5452 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, d
->cur
->value
);
5453 if (has_designator_problem (d
, complain
))
5454 return error_mark_node
;
5456 init
= build_constructor (init_list_type_node
, v
);
5461 /* A non-aggregate type is always initialized with a single
5463 if (!CP_AGGREGATE_TYPE_P (type
))
5465 /* It is invalid to initialize a non-aggregate type with a
5466 brace-enclosed initializer before C++0x.
5467 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
5468 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
5469 a CONSTRUCTOR (with a record type). */
5470 if (TREE_CODE (init
) == CONSTRUCTOR
5471 && BRACE_ENCLOSED_INITIALIZER_P (init
)) /* p7626.C */
5473 if (SCALAR_TYPE_P (type
))
5475 if (complain
& tf_error
)
5476 error ("braces around scalar initializer for type %qT", type
);
5477 init
= error_mark_node
;
5480 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS
);
5487 /* "If T is a class type and the initializer list has a single element of
5488 type cv U, where U is T or a class derived from T, the object is
5489 initialized from that element." Even if T is an aggregate. */
5490 if (cxx_dialect
>= cxx11
&& (CLASS_TYPE_P (type
) || VECTOR_TYPE_P (type
))
5491 && first_initializer_p
5492 && d
->end
- d
->cur
== 1
5493 && reference_related_p (type
, TREE_TYPE (init
)))
5501 All implicit type conversions (clause _conv_) are considered when
5502 initializing the aggregate member with an initializer from an
5503 initializer-list. If the initializer can initialize a member,
5504 the member is initialized. Otherwise, if the member is itself a
5505 non-empty subaggregate, brace elision is assumed and the
5506 initializer is considered for the initialization of the first
5507 member of the subaggregate. */
5508 if (TREE_CODE (init
) != CONSTRUCTOR
5509 /* But don't try this for the first initializer, since that would be
5510 looking through the outermost braces; A a2 = { a1 }; is not a
5511 valid aggregate initialization. */
5512 && !first_initializer_p
5513 && (same_type_ignoring_top_level_qualifiers_p (type
, TREE_TYPE (init
))
5514 || can_convert_arg (type
, TREE_TYPE (init
), init
, LOOKUP_NORMAL
,
5521 /* [dcl.init.string]
5523 A char array (whether plain char, signed char, or unsigned char)
5524 can be initialized by a string-literal (optionally enclosed in
5525 braces); a wchar_t array can be initialized by a wide
5526 string-literal (optionally enclosed in braces). */
5527 if (TREE_CODE (type
) == ARRAY_TYPE
5528 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type
))))
5530 tree str_init
= init
;
5532 /* Strip one level of braces if and only if they enclose a single
5533 element (as allowed by [dcl.init.string]). */
5534 if (!first_initializer_p
5535 && TREE_CODE (str_init
) == CONSTRUCTOR
5536 && vec_safe_length (CONSTRUCTOR_ELTS (str_init
)) == 1)
5538 str_init
= (*CONSTRUCTOR_ELTS (str_init
))[0].value
;
5541 /* If it's a string literal, then it's the initializer for the array
5542 as a whole. Otherwise, continue with normal initialization for
5543 array types (one value per array element). */
5544 if (TREE_CODE (str_init
) == STRING_CST
)
5546 if (has_designator_problem (d
, complain
))
5547 return error_mark_node
;
5553 /* The following cases are about aggregates. If we are not within a full
5554 initializer already, and there is not a CONSTRUCTOR, it means that there
5555 is a missing set of braces (that is, we are processing the case for
5556 which reshape_init exists). */
5557 if (!first_initializer_p
)
5559 if (TREE_CODE (init
) == CONSTRUCTOR
)
5561 if (TREE_TYPE (init
) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init
)))
5562 /* There is no need to reshape pointer-to-member function
5563 initializers, as they are always constructed correctly
5564 by the front end. */
5566 else if (COMPOUND_LITERAL_P (init
))
5567 /* For a nested compound literal, there is no need to reshape since
5568 brace elision is not allowed. Even if we decided to allow it,
5569 we should add a call to reshape_init in finish_compound_literal,
5570 before calling digest_init, so changing this code would still
5571 not be necessary. */
5572 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init
));
5576 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init
));
5577 return reshape_init (type
, init
, complain
);
5581 warning (OPT_Wmissing_braces
, "missing braces around initializer for %qT",
5585 /* Dispatch to specialized routines. */
5586 if (CLASS_TYPE_P (type
))
5587 return reshape_init_class (type
, d
, first_initializer_p
, complain
);
5588 else if (TREE_CODE (type
) == ARRAY_TYPE
)
5589 return reshape_init_array (type
, d
, complain
);
5590 else if (TREE_CODE (type
) == VECTOR_TYPE
)
5591 return reshape_init_vector (type
, d
, complain
);
5596 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
5597 brace-enclosed aggregate initializer.
5599 INIT is the CONSTRUCTOR containing the list of initializers describing
5600 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
5601 It may not presently match the shape of the TYPE; for example:
5603 struct S { int a; int b; };
5604 struct S a[] = { 1, 2, 3, 4 };
5606 Here INIT will hold a vector of four elements, rather than a
5607 vector of two elements, each itself a vector of two elements. This
5608 routine transforms INIT from the former form into the latter. The
5609 revised CONSTRUCTOR node is returned. */
5612 reshape_init (tree type
, tree init
, tsubst_flags_t complain
)
5614 vec
<constructor_elt
, va_gc
> *v
;
5618 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init
));
5620 v
= CONSTRUCTOR_ELTS (init
);
5622 /* An empty constructor does not need reshaping, and it is always a valid
5624 if (vec_safe_is_empty (v
))
5627 /* Recurse on this CONSTRUCTOR. */
5629 d
.end
= d
.cur
+ v
->length ();
5631 new_init
= reshape_init_r (type
, &d
, true, complain
);
5632 if (new_init
== error_mark_node
)
5633 return error_mark_node
;
5635 /* Make sure all the element of the constructor were used. Otherwise,
5636 issue an error about exceeding initializers. */
5639 if (complain
& tf_error
)
5640 error ("too many initializers for %qT", type
);
5642 return error_mark_node
;
5648 /* Verify array initializer. Returns true if errors have been reported. */
5651 check_array_initializer (tree decl
, tree type
, tree init
)
5653 tree element_type
= TREE_TYPE (type
);
5655 /* The array type itself need not be complete, because the
5656 initializer may tell us how many elements are in the array.
5657 But, the elements of the array must be complete. */
5658 if (!COMPLETE_TYPE_P (complete_type (element_type
)))
5661 error ("elements of array %q#D have incomplete type", decl
);
5663 error ("elements of array %q#T have incomplete type", type
);
5666 /* A compound literal can't have variable size. */
5668 && ((COMPLETE_TYPE_P (type
) && !TREE_CONSTANT (TYPE_SIZE (type
)))
5669 || !TREE_CONSTANT (TYPE_SIZE (element_type
))))
5671 error ("variable-sized compound literal");
5677 /* Subroutine of check_initializer; args are passed down from that function.
5678 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
5681 build_aggr_init_full_exprs (tree decl
, tree init
, int flags
)
5684 gcc_assert (stmts_are_full_exprs_p ());
5685 return build_aggr_init (decl
, init
, flags
, tf_warning_or_error
);
5688 /* Verify INIT (the initializer for DECL), and record the
5689 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
5690 grok_reference_init.
5692 If the return value is non-NULL, it is an expression that must be
5693 evaluated dynamically to initialize DECL. */
5696 check_initializer (tree decl
, tree init
, int flags
, vec
<tree
, va_gc
> **cleanups
)
5698 tree type
= TREE_TYPE (decl
);
5699 tree init_code
= NULL
;
5702 /* Things that are going to be initialized need to have complete
5704 TREE_TYPE (decl
) = type
= complete_type (TREE_TYPE (decl
));
5706 if (DECL_HAS_VALUE_EXPR_P (decl
))
5708 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
5709 it doesn't have storage to be initialized. */
5710 gcc_assert (init
== NULL_TREE
);
5714 if (type
== error_mark_node
)
5715 /* We will have already complained. */
5718 if (TREE_CODE (type
) == ARRAY_TYPE
)
5720 if (check_array_initializer (decl
, type
, init
))
5723 else if (!COMPLETE_TYPE_P (type
))
5725 error ("%q#D has incomplete type", decl
);
5726 TREE_TYPE (decl
) = error_mark_node
;
5730 /* There is no way to make a variable-sized class type in GNU C++. */
5731 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type
)));
5733 if (init
&& BRACE_ENCLOSED_INITIALIZER_P (init
))
5735 int init_len
= vec_safe_length (CONSTRUCTOR_ELTS (init
));
5736 if (SCALAR_TYPE_P (type
))
5740 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS
);
5741 init
= build_zero_init (type
, NULL_TREE
, false);
5743 else if (init_len
!= 1 && TREE_CODE (type
) != COMPLEX_TYPE
)
5745 error ("scalar object %qD requires one element in initializer",
5747 TREE_TYPE (decl
) = error_mark_node
;
5753 if (TREE_CODE (decl
) == CONST_DECL
)
5755 gcc_assert (TREE_CODE (type
) != REFERENCE_TYPE
);
5757 DECL_INITIAL (decl
) = init
;
5759 gcc_assert (init
!= NULL_TREE
);
5762 else if (!init
&& DECL_REALLY_EXTERN (decl
))
5764 else if (init
|| type_build_ctor_call (type
)
5765 || TREE_CODE (type
) == REFERENCE_TYPE
)
5767 if (TREE_CODE (type
) == REFERENCE_TYPE
)
5769 init
= grok_reference_init (decl
, type
, init
, flags
);
5770 flags
|= LOOKUP_ALREADY_DIGESTED
;
5773 check_for_uninitialized_const_var (decl
);
5774 /* Do not reshape constructors of vectors (they don't need to be
5776 else if (BRACE_ENCLOSED_INITIALIZER_P (init
))
5778 if (is_std_init_list (type
))
5780 init
= perform_implicit_conversion (type
, init
,
5781 tf_warning_or_error
);
5782 flags
|= LOOKUP_ALREADY_DIGESTED
;
5784 else if (TYPE_NON_AGGREGATE_CLASS (type
))
5786 /* Don't reshape if the class has constructors. */
5787 if (cxx_dialect
== cxx98
)
5788 error ("in C++98 %qD must be initialized by constructor, "
5792 else if (TREE_CODE (type
) == VECTOR_TYPE
&& TYPE_VECTOR_OPAQUE (type
))
5794 error ("opaque vector types cannot be initialized");
5795 init
= error_mark_node
;
5799 init
= reshape_init (type
, init
, tf_warning_or_error
);
5800 flags
|= LOOKUP_NO_NARROWING
;
5803 else if (TREE_CODE (init
) == TREE_LIST
5804 && TREE_TYPE (init
) != unknown_type_node
5805 && !MAYBE_CLASS_TYPE_P (type
))
5807 gcc_assert (TREE_CODE (decl
) != RESULT_DECL
);
5809 /* We get here with code like `int a (2);' */
5810 init
= build_x_compound_expr_from_list (init
, ELK_INIT
,
5811 tf_warning_or_error
);
5814 /* If DECL has an array type without a specific bound, deduce the
5815 array size from the initializer. */
5816 maybe_deduce_size_from_array_init (decl
, init
);
5817 type
= TREE_TYPE (decl
);
5818 if (type
== error_mark_node
)
5821 if ((type_build_ctor_call (type
) || CLASS_TYPE_P (type
))
5822 && !(flags
& LOOKUP_ALREADY_DIGESTED
)
5823 && !(init
&& BRACE_ENCLOSED_INITIALIZER_P (init
)
5824 && CP_AGGREGATE_TYPE_P (type
)
5825 && (CLASS_TYPE_P (type
)
5826 || !TYPE_NEEDS_CONSTRUCTING (type
)
5827 || type_has_extended_temps (type
))))
5829 init_code
= build_aggr_init_full_exprs (decl
, init
, flags
);
5831 /* A constructor call is a non-trivial initializer even if
5832 it isn't explicitly written. */
5833 if (TREE_SIDE_EFFECTS (init_code
))
5834 DECL_NONTRIVIALLY_INITIALIZED_P (decl
) = true;
5836 /* If this is a constexpr initializer, expand_default_init will
5837 have returned an INIT_EXPR rather than a CALL_EXPR. In that
5838 case, pull the initializer back out and pass it down into
5839 store_init_value. */
5840 while (TREE_CODE (init_code
) == EXPR_STMT
5841 || TREE_CODE (init_code
) == CONVERT_EXPR
)
5842 init_code
= TREE_OPERAND (init_code
, 0);
5843 if (TREE_CODE (init_code
) == INIT_EXPR
)
5845 init
= TREE_OPERAND (init_code
, 1);
5846 init_code
= NULL_TREE
;
5847 /* Don't call digest_init; it's unnecessary and will complain
5848 about aggregate initialization of non-aggregate classes. */
5849 flags
|= LOOKUP_ALREADY_DIGESTED
;
5851 else if (DECL_DECLARED_CONSTEXPR_P (decl
))
5853 /* Declared constexpr, but no suitable initializer; massage
5854 init appropriately so we can pass it into store_init_value
5856 if (CLASS_TYPE_P (type
)
5857 && (!init
|| TREE_CODE (init
) == TREE_LIST
))
5859 init
= build_functional_cast (type
, init
, tf_none
);
5860 if (TREE_CODE (init
) == TARGET_EXPR
)
5861 TARGET_EXPR_DIRECT_INIT_P (init
) = true;
5863 init_code
= NULL_TREE
;
5869 if (init
&& TREE_CODE (init
) != TREE_VEC
)
5871 /* In aggregate initialization of a variable, each element
5872 initialization is a full-expression because there is no
5873 enclosing expression. */
5874 gcc_assert (stmts_are_full_exprs_p ());
5876 init_code
= store_init_value (decl
, init
, cleanups
, flags
);
5878 if (pedantic
&& TREE_CODE (type
) == ARRAY_TYPE
5879 && DECL_INITIAL (decl
)
5880 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
5881 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl
)))
5882 warning (0, "array %qD initialized by parenthesized string literal %qE",
5883 decl
, DECL_INITIAL (decl
));
5889 if (CLASS_TYPE_P (core_type
= strip_array_types (type
))
5890 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type
)
5891 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type
)))
5892 diagnose_uninitialized_cst_or_ref_member (core_type
, /*using_new=*/false,
5895 check_for_uninitialized_const_var (decl
);
5898 if (init
&& init
!= error_mark_node
)
5899 init_code
= build2 (INIT_EXPR
, type
, decl
, init
);
5903 /* We might have set these in cp_finish_decl. */
5904 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl
) = false;
5905 TREE_CONSTANT (decl
) = false;
5908 if (init_code
&& DECL_IN_AGGR_P (decl
))
5910 static int explained
= 0;
5912 if (cxx_dialect
< cxx11
)
5913 error ("initializer invalid for static member with constructor");
5915 error ("non-constant in-class initialization invalid for static "
5916 "member %qD", decl
);
5919 inform (input_location
,
5920 "(an out of class initialization is required)");
5929 /* If DECL is not a local variable, give it RTL. */
5932 make_rtl_for_nonlocal_decl (tree decl
, tree init
, const char* asmspec
)
5934 int toplev
= toplevel_bindings_p ();
5936 const char *filename
;
5938 /* Set the DECL_ASSEMBLER_NAME for the object. */
5941 /* The `register' keyword, when used together with an
5942 asm-specification, indicates that the variable should be
5943 placed in a particular register. */
5944 if (VAR_P (decl
) && DECL_REGISTER (decl
))
5946 set_user_assembler_name (decl
, asmspec
);
5947 DECL_HARD_REGISTER (decl
) = 1;
5951 if (TREE_CODE (decl
) == FUNCTION_DECL
5952 && DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
)
5953 set_builtin_user_assembler_name (decl
, asmspec
);
5954 set_user_assembler_name (decl
, asmspec
);
5958 /* Handle non-variables up front. */
5961 rest_of_decl_compilation (decl
, toplev
, at_eof
);
5965 /* If we see a class member here, it should be a static data
5967 if (DECL_LANG_SPECIFIC (decl
) && DECL_IN_AGGR_P (decl
))
5969 gcc_assert (TREE_STATIC (decl
));
5970 /* An in-class declaration of a static data member should be
5971 external; it is only a declaration, and not a definition. */
5972 if (init
== NULL_TREE
)
5973 gcc_assert (DECL_EXTERNAL (decl
) || !TREE_PUBLIC (decl
));
5976 /* We don't create any RTL for local variables. */
5977 if (DECL_FUNCTION_SCOPE_P (decl
) && !TREE_STATIC (decl
))
5980 /* We defer emission of local statics until the corresponding
5981 DECL_EXPR is expanded. */
5982 defer_p
= DECL_FUNCTION_SCOPE_P (decl
) || DECL_VIRTUAL_P (decl
);
5984 /* We try to defer namespace-scope static constants so that they are
5985 not emitted into the object file unnecessarily. */
5986 filename
= LOCATION_FILE (input_location
);
5987 if (!DECL_VIRTUAL_P (decl
)
5988 && TREE_READONLY (decl
)
5989 && DECL_INITIAL (decl
) != NULL_TREE
5990 && DECL_INITIAL (decl
) != error_mark_node
5992 && ! EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl
))
5994 && !TREE_PUBLIC (decl
))
5996 /* Fool with the linkage of static consts according to #pragma
5998 struct c_fileinfo
*finfo
= get_fileinfo (filename
);
5999 if (!finfo
->interface_unknown
&& !TREE_PUBLIC (decl
))
6001 TREE_PUBLIC (decl
) = 1;
6002 DECL_EXTERNAL (decl
) = finfo
->interface_only
;
6007 /* Likewise for template instantiations. */
6008 else if (DECL_LANG_SPECIFIC (decl
)
6009 && DECL_IMPLICIT_INSTANTIATION (decl
))
6012 /* If we're not deferring, go ahead and assemble the variable. */
6014 rest_of_decl_compilation (decl
, toplev
, at_eof
);
6017 /* walk_tree helper for wrap_temporary_cleanups, below. */
6020 wrap_cleanups_r (tree
*stmt_p
, int *walk_subtrees
, void *data
)
6022 /* Stop at types or full-expression boundaries. */
6023 if (TYPE_P (*stmt_p
)
6024 || TREE_CODE (*stmt_p
) == CLEANUP_POINT_EXPR
)
6030 if (TREE_CODE (*stmt_p
) == TARGET_EXPR
)
6032 tree guard
= (tree
)data
;
6033 tree tcleanup
= TARGET_EXPR_CLEANUP (*stmt_p
);
6035 tcleanup
= build2 (TRY_CATCH_EXPR
, void_type_node
, tcleanup
, guard
);
6036 /* Tell honor_protect_cleanup_actions to handle this as a separate
6038 TRY_CATCH_IS_CLEANUP (tcleanup
) = 1;
6040 TARGET_EXPR_CLEANUP (*stmt_p
) = tcleanup
;
6046 /* We're initializing a local variable which has a cleanup GUARD. If there
6047 are any temporaries used in the initializer INIT of this variable, we
6048 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6049 variable will be cleaned up properly if one of them throws.
6051 Unfortunately, there's no way to express this properly in terms of
6052 nesting, as the regions for the temporaries overlap the region for the
6053 variable itself; if there are two temporaries, the variable needs to be
6054 the first thing destroyed if either of them throws. However, we only
6055 want to run the variable's cleanup if it actually got constructed. So
6056 we need to guard the temporary cleanups with the variable's cleanup if
6057 they are run on the normal path, but not if they are run on the
6058 exceptional path. We implement this by telling
6059 honor_protect_cleanup_actions to strip the variable cleanup from the
6060 exceptional path. */
6063 wrap_temporary_cleanups (tree init
, tree guard
)
6065 cp_walk_tree_without_duplicates (&init
, wrap_cleanups_r
, (void *)guard
);
6068 /* Generate code to initialize DECL (a local variable). */
6071 initialize_local_var (tree decl
, tree init
)
6073 tree type
= TREE_TYPE (decl
);
6077 gcc_assert (VAR_P (decl
)
6078 || TREE_CODE (decl
) == RESULT_DECL
);
6079 gcc_assert (!TREE_STATIC (decl
));
6081 if (DECL_SIZE (decl
) == NULL_TREE
)
6083 /* If we used it already as memory, it must stay in memory. */
6084 DECL_INITIAL (decl
) = NULL_TREE
;
6085 TREE_ADDRESSABLE (decl
) = TREE_USED (decl
);
6089 if (type
== error_mark_node
)
6092 /* Compute and store the initial value. */
6093 already_used
= TREE_USED (decl
) || TREE_USED (type
);
6094 if (TREE_USED (type
))
6095 DECL_READ_P (decl
) = 1;
6097 /* Generate a cleanup, if necessary. */
6098 cleanup
= cxx_maybe_build_cleanup (decl
, tf_warning_or_error
);
6100 /* Perform the initialization. */
6103 if (TREE_CODE (init
) == INIT_EXPR
6104 && !TREE_SIDE_EFFECTS (TREE_OPERAND (init
, 1)))
6106 /* Stick simple initializers in DECL_INITIAL so that
6107 -Wno-init-self works (c++/34772). */
6108 gcc_assert (TREE_OPERAND (init
, 0) == decl
);
6109 DECL_INITIAL (decl
) = TREE_OPERAND (init
, 1);
6113 int saved_stmts_are_full_exprs_p
;
6115 /* If we're only initializing a single object, guard the
6116 destructors of any temporaries used in its initializer with
6117 its destructor. This isn't right for arrays because each
6118 element initialization is a full-expression. */
6119 if (cleanup
&& TREE_CODE (type
) != ARRAY_TYPE
)
6120 wrap_temporary_cleanups (init
, cleanup
);
6122 gcc_assert (building_stmt_list_p ());
6123 saved_stmts_are_full_exprs_p
= stmts_are_full_exprs_p ();
6124 current_stmt_tree ()->stmts_are_full_exprs_p
= 1;
6125 finish_expr_stmt (init
);
6126 current_stmt_tree ()->stmts_are_full_exprs_p
=
6127 saved_stmts_are_full_exprs_p
;
6131 /* Set this to 0 so we can tell whether an aggregate which was
6132 initialized was ever used. Don't do this if it has a
6133 destructor, so we don't complain about the 'resource
6134 allocation is initialization' idiom. Now set
6135 attribute((unused)) on types so decls of that type will be
6136 marked used. (see TREE_USED, above.) */
6137 if (TYPE_NEEDS_CONSTRUCTING (type
)
6139 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type
)
6140 && DECL_NAME (decl
))
6141 TREE_USED (decl
) = 0;
6142 else if (already_used
)
6143 TREE_USED (decl
) = 1;
6146 finish_decl_cleanup (decl
, cleanup
);
6149 /* DECL is a VAR_DECL for a compiler-generated variable with static
6150 storage duration (like a virtual table) whose initializer is a
6151 compile-time constant. Initialize the variable and provide it to the
6155 initialize_artificial_var (tree decl
, vec
<constructor_elt
, va_gc
> *v
)
6158 gcc_assert (DECL_ARTIFICIAL (decl
));
6159 init
= build_constructor (TREE_TYPE (decl
), v
);
6160 gcc_assert (TREE_CODE (init
) == CONSTRUCTOR
);
6161 DECL_INITIAL (decl
) = init
;
6162 DECL_INITIALIZED_P (decl
) = 1;
6163 determine_visibility (decl
);
6164 layout_var_decl (decl
);
6165 maybe_commonize_var (decl
);
6166 make_rtl_for_nonlocal_decl (decl
, init
, /*asmspec=*/NULL
);
6169 /* INIT is the initializer for a variable, as represented by the
6170 parser. Returns true iff INIT is type-dependent. */
6173 type_dependent_init_p (tree init
)
6175 if (TREE_CODE (init
) == TREE_LIST
)
6176 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6177 return any_type_dependent_elements_p (init
);
6178 else if (TREE_CODE (init
) == CONSTRUCTOR
)
6179 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6181 vec
<constructor_elt
, va_gc
> *elts
;
6185 elts
= CONSTRUCTOR_ELTS (init
);
6186 nelts
= vec_safe_length (elts
);
6187 for (i
= 0; i
< nelts
; ++i
)
6188 if (type_dependent_init_p ((*elts
)[i
].value
))
6192 /* It must be a simple expression, e.g., int i = 3; */
6193 return type_dependent_expression_p (init
);
6198 /* INIT is the initializer for a variable, as represented by the
6199 parser. Returns true iff INIT is value-dependent. */
6202 value_dependent_init_p (tree init
)
6204 if (TREE_CODE (init
) == TREE_LIST
)
6205 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6206 return any_value_dependent_elements_p (init
);
6207 else if (TREE_CODE (init
) == CONSTRUCTOR
)
6208 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6210 vec
<constructor_elt
, va_gc
> *elts
;
6214 elts
= CONSTRUCTOR_ELTS (init
);
6215 nelts
= vec_safe_length (elts
);
6216 for (i
= 0; i
< nelts
; ++i
)
6217 if (value_dependent_init_p ((*elts
)[i
].value
))
6221 /* It must be a simple expression, e.g., int i = 3; */
6222 return value_dependent_expression_p (init
);
6227 /* Finish processing of a declaration;
6228 install its line number and initial value.
6229 If the length of an array type is not known before,
6230 it must be determined now, from the initial value, or it is an error.
6232 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6233 true, then INIT is an integral constant expression.
6235 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6236 if the (init) syntax was used. */
6239 cp_finish_decl (tree decl
, tree init
, bool init_const_expr_p
,
6240 tree asmspec_tree
, int flags
)
6243 vec
<tree
, va_gc
> *cleanups
= NULL
;
6244 const char *asmspec
= NULL
;
6245 int was_readonly
= 0;
6246 bool var_definition_p
= false;
6249 if (decl
== error_mark_node
)
6254 error ("assignment (not initialization) in declaration");
6258 gcc_assert (TREE_CODE (decl
) != RESULT_DECL
);
6259 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6260 gcc_assert (TREE_CODE (decl
) != PARM_DECL
);
6262 type
= TREE_TYPE (decl
);
6263 if (type
== error_mark_node
)
6266 /* If a name was specified, get the string. */
6267 if (at_namespace_scope_p ())
6268 asmspec_tree
= maybe_apply_renaming_pragma (decl
, asmspec_tree
);
6269 if (asmspec_tree
&& asmspec_tree
!= error_mark_node
)
6270 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
6272 if (current_class_type
6273 && CP_DECL_CONTEXT (decl
) == current_class_type
6274 && TYPE_BEING_DEFINED (current_class_type
)
6275 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type
)
6276 && (DECL_INITIAL (decl
) || init
))
6277 DECL_INITIALIZED_IN_CLASS_P (decl
) = 1;
6279 if (TREE_CODE (decl
) != FUNCTION_DECL
6280 && (auto_node
= type_uses_auto (type
)))
6283 if (init
== NULL_TREE
)
6285 if (DECL_LANG_SPECIFIC (decl
)
6286 && DECL_TEMPLATE_INSTANTIATION (decl
)
6287 && !DECL_TEMPLATE_INSTANTIATED (decl
))
6289 /* init is null because we're deferring instantiating the
6290 initializer until we need it. Well, we need it now. */
6291 instantiate_decl (decl
, /*defer_ok*/true, /*expl*/false);
6295 error ("declaration of %q#D has no initializer", decl
);
6296 TREE_TYPE (decl
) = error_mark_node
;
6300 if (TREE_CODE (d_init
) == TREE_LIST
)
6301 d_init
= build_x_compound_expr_from_list (d_init
, ELK_INIT
,
6302 tf_warning_or_error
);
6303 d_init
= resolve_nondeduced_context (d_init
);
6304 type
= TREE_TYPE (decl
) = do_auto_deduction (type
, d_init
,
6306 if (type
== error_mark_node
)
6308 cp_apply_type_quals_to_decl (cp_type_quals (type
), decl
);
6311 if (!ensure_literal_type_for_constexpr_object (decl
))
6312 DECL_DECLARED_CONSTEXPR_P (decl
) = 0;
6315 && DECL_CLASS_SCOPE_P (decl
)
6316 && DECL_INITIALIZED_IN_CLASS_P (decl
))
6317 check_static_variable_definition (decl
, type
);
6319 if (init
&& TREE_CODE (decl
) == FUNCTION_DECL
)
6322 if (init
== ridpointers
[(int)RID_DELETE
])
6324 /* FIXME check this is 1st decl. */
6325 DECL_DELETED_FN (decl
) = 1;
6326 DECL_DECLARED_INLINE_P (decl
) = 1;
6327 DECL_INITIAL (decl
) = error_mark_node
;
6328 FOR_EACH_CLONE (clone
, decl
)
6330 DECL_DELETED_FN (clone
) = 1;
6331 DECL_DECLARED_INLINE_P (clone
) = 1;
6332 DECL_INITIAL (clone
) = error_mark_node
;
6336 else if (init
== ridpointers
[(int)RID_DEFAULT
])
6338 if (defaultable_fn_check (decl
))
6339 DECL_DEFAULTED_FN (decl
) = 1;
6341 DECL_INITIAL (decl
) = NULL_TREE
;
6345 if (init
&& VAR_P (decl
))
6347 DECL_NONTRIVIALLY_INITIALIZED_P (decl
) = 1;
6348 /* If DECL is a reference, then we want to know whether init is a
6349 reference constant; init_const_expr_p as passed tells us whether
6350 it's an rvalue constant. */
6351 if (TREE_CODE (type
) == REFERENCE_TYPE
)
6352 init_const_expr_p
= potential_constant_expression (init
);
6353 if (init_const_expr_p
)
6355 /* Set these flags now for templates. We'll update the flags in
6356 store_init_value for instantiations. */
6357 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl
) = 1;
6358 if (decl_maybe_constant_var_p (decl
))
6359 TREE_CONSTANT (decl
) = 1;
6363 if (processing_template_decl
)
6365 bool type_dependent_p
;
6367 /* Add this declaration to the statement-tree. */
6368 if (at_function_scope_p ())
6369 add_decl_expr (decl
);
6371 type_dependent_p
= dependent_type_p (type
);
6373 if (check_for_bare_parameter_packs (init
))
6376 DECL_INITIAL (decl
) = NULL_TREE
;
6379 /* Generally, initializers in templates are expanded when the
6380 template is instantiated. But, if DECL is a variable constant
6381 then it can be used in future constant expressions, so its value
6382 must be available. */
6384 if (!VAR_P (decl
) || dependent_type_p (type
))
6385 /* We can't do anything if the decl has dependent type. */;
6387 && init_const_expr_p
6388 && !type_dependent_p
6389 && decl_maybe_constant_var_p (decl
)
6390 && !type_dependent_init_p (init
)
6391 && !value_dependent_init_p (init
))
6393 /* This variable seems to be a non-dependent constant, so process
6394 its initializer. If check_initializer returns non-null the
6395 initialization wasn't constant after all. */
6397 cleanups
= make_tree_vector ();
6398 init_code
= check_initializer (decl
, init
, flags
, &cleanups
);
6399 if (init_code
== NULL_TREE
)
6401 release_tree_vector (cleanups
);
6403 else if (!DECL_PRETTY_FUNCTION_P (decl
))
6405 /* Deduce array size even if the initializer is dependent. */
6406 maybe_deduce_size_from_array_init (decl
, init
);
6407 /* And complain about multiple initializers. */
6408 if (init
&& TREE_CODE (init
) == TREE_LIST
&& TREE_CHAIN (init
)
6409 && !MAYBE_CLASS_TYPE_P (type
))
6410 init
= build_x_compound_expr_from_list (init
, ELK_INIT
,
6411 tf_warning_or_error
);
6415 DECL_INITIAL (decl
) = init
;
6419 /* Just store non-static data member initializers for later. */
6420 if (init
&& TREE_CODE (decl
) == FIELD_DECL
)
6421 DECL_INITIAL (decl
) = init
;
6423 /* Take care of TYPE_DECLs up front. */
6424 if (TREE_CODE (decl
) == TYPE_DECL
)
6426 if (type
!= error_mark_node
6427 && MAYBE_CLASS_TYPE_P (type
) && DECL_NAME (decl
))
6429 if (TREE_TYPE (DECL_NAME (decl
)) && TREE_TYPE (decl
) != type
)
6430 warning (0, "shadowing previous type declaration of %q#D", decl
);
6431 set_identifier_type_value (DECL_NAME (decl
), decl
);
6434 /* If we have installed this as the canonical typedef for this
6435 type, and that type has not been defined yet, delay emitting
6436 the debug information for it, as we will emit it later. */
6437 if (TYPE_MAIN_DECL (TREE_TYPE (decl
)) == decl
6438 && !COMPLETE_TYPE_P (TREE_TYPE (decl
)))
6439 TYPE_DECL_SUPPRESS_DEBUG (decl
) = 1;
6441 rest_of_decl_compilation (decl
, DECL_FILE_SCOPE_P (decl
),
6446 /* A reference will be modified here, as it is initialized. */
6447 if (! DECL_EXTERNAL (decl
)
6448 && TREE_READONLY (decl
)
6449 && TREE_CODE (type
) == REFERENCE_TYPE
)
6452 TREE_READONLY (decl
) = 0;
6457 /* If this is a local variable that will need a mangled name,
6458 register it now. We must do this before processing the
6459 initializer for the variable, since the initialization might
6460 require a guard variable, and since the mangled name of the
6461 guard variable will depend on the mangled name of this
6463 if (DECL_FUNCTION_SCOPE_P (decl
)
6464 && TREE_STATIC (decl
)
6465 && !DECL_ARTIFICIAL (decl
))
6467 push_local_name (decl
);
6468 if (DECL_CONSTRUCTOR_P (current_function_decl
)
6469 || DECL_DESTRUCTOR_P (current_function_decl
))
6470 /* Normally local_decls is populated during GIMPLE lowering,
6471 but [cd]tors are never actually compiled directly. We need
6472 to put statics on the list so we can deal with the label
6473 address extension. FIXME. */
6474 add_local_decl (cfun
, decl
);
6477 /* Convert the initializer to the type of DECL, if we have not
6478 already initialized DECL. */
6479 if (!DECL_INITIALIZED_P (decl
)
6480 /* If !DECL_EXTERNAL then DECL is being defined. In the
6481 case of a static data member initialized inside the
6482 class-specifier, there can be an initializer even if DECL
6483 is *not* defined. */
6484 && (!DECL_EXTERNAL (decl
) || init
))
6486 if (TYPE_FOR_JAVA (type
) && MAYBE_CLASS_TYPE_P (type
))
6489 = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jclass"));
6490 /* Allow libjava/prims.cc define primitive classes. */
6491 if (init
!= NULL_TREE
6492 || jclass
== NULL_TREE
6493 || TREE_CODE (jclass
) != TYPE_DECL
6494 || !POINTER_TYPE_P (TREE_TYPE (jclass
))
6495 || !same_type_ignoring_top_level_qualifiers_p
6496 (type
, TREE_TYPE (TREE_TYPE (jclass
))))
6497 error ("Java object %qD not allocated with %<new%>", decl
);
6500 cleanups
= make_tree_vector ();
6501 init
= check_initializer (decl
, init
, flags
, &cleanups
);
6507 The memory occupied by any object of static storage
6508 duration is zero-initialized at program startup before
6509 any other initialization takes place.
6511 We cannot create an appropriate initializer until after
6512 the type of DECL is finalized. If DECL_INITIAL is set,
6513 then the DECL is statically initialized, and any
6514 necessary zero-initialization has already been performed. */
6515 if (TREE_STATIC (decl
) && !DECL_INITIAL (decl
))
6516 DECL_INITIAL (decl
) = build_zero_init (TREE_TYPE (decl
),
6517 /*nelts=*/NULL_TREE
,
6518 /*static_storage_p=*/true);
6519 /* Remember that the initialization for this variable has
6521 DECL_INITIALIZED_P (decl
) = 1;
6522 /* This declaration is the definition of this variable,
6523 unless we are initializing a static data member within
6524 the class specifier. */
6525 if (!DECL_EXTERNAL (decl
))
6526 var_definition_p
= true;
6528 /* If the variable has an array type, lay out the type, even if
6529 there is no initializer. It is valid to index through the
6530 array, and we must get TYPE_ALIGN set correctly on the array
6532 else if (TREE_CODE (type
) == ARRAY_TYPE
)
6535 if (TREE_STATIC (decl
)
6536 && !at_function_scope_p ()
6537 && current_function_decl
== NULL
)
6538 /* So decl is a global variable or a static member of a
6539 non local class. Record the types it uses
6540 so that we can decide later to emit debug info for them. */
6541 record_types_used_by_current_var_decl (decl
);
6543 else if (TREE_CODE (decl
) == FIELD_DECL
6544 && TYPE_FOR_JAVA (type
) && MAYBE_CLASS_TYPE_P (type
))
6545 error ("non-static data member %qD has Java class type", decl
);
6547 /* Add this declaration to the statement-tree. This needs to happen
6548 after the call to check_initializer so that the DECL_EXPR for a
6549 reference temp is added before the DECL_EXPR for the reference itself. */
6550 if (DECL_FUNCTION_SCOPE_P (decl
))
6552 /* If we're building a variable sized type, and we might be
6553 reachable other than via the top of the current binding
6554 level, then create a new BIND_EXPR so that we deallocate
6555 the object at the right time. */
6558 && !TREE_CONSTANT (DECL_SIZE (decl
))
6559 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list
))
6562 bind
= build3 (BIND_EXPR
, void_type_node
, NULL
, NULL
, NULL
);
6563 TREE_SIDE_EFFECTS (bind
) = 1;
6565 BIND_EXPR_BODY (bind
) = push_stmt_list ();
6567 add_decl_expr (decl
);
6570 /* Let the middle end know about variables and functions -- but not
6571 static data members in uninstantiated class templates. */
6572 if (VAR_OR_FUNCTION_DECL_P (decl
))
6576 layout_var_decl (decl
);
6577 maybe_commonize_var (decl
);
6580 /* This needs to happen after the linkage is set. */
6581 determine_visibility (decl
);
6583 if (var_definition_p
&& TREE_STATIC (decl
))
6585 /* If a TREE_READONLY variable needs initialization
6586 at runtime, it is no longer readonly and we need to
6587 avoid MEM_READONLY_P being set on RTL created for it. */
6590 if (TREE_READONLY (decl
))
6591 TREE_READONLY (decl
) = 0;
6594 else if (was_readonly
)
6595 TREE_READONLY (decl
) = 1;
6597 /* Likewise if it needs destruction. */
6598 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
))
6599 TREE_READONLY (decl
) = 0;
6602 make_rtl_for_nonlocal_decl (decl
, init
, asmspec
);
6604 /* Check for abstractness of the type. Notice that there is no
6605 need to strip array types here since the check for those types
6606 is already done within create_array_type_for_decl. */
6607 abstract_virtuals_error (decl
, type
);
6609 if (TREE_TYPE (decl
) == error_mark_node
)
6610 /* No initialization required. */
6612 else if (TREE_CODE (decl
) == FUNCTION_DECL
)
6616 if (init
== ridpointers
[(int)RID_DEFAULT
])
6618 /* An out-of-class default definition is defined at
6619 the point where it is explicitly defaulted. */
6620 if (DECL_DELETED_FN (decl
))
6621 maybe_explain_implicit_delete (decl
);
6622 else if (DECL_INITIAL (decl
) == error_mark_node
)
6623 synthesize_method (decl
);
6626 error ("function %q#D is initialized like a variable", decl
);
6628 /* else no initialization required. */
6630 else if (DECL_EXTERNAL (decl
)
6631 && ! (DECL_LANG_SPECIFIC (decl
)
6632 && DECL_NOT_REALLY_EXTERN (decl
)))
6635 DECL_INITIAL (decl
) = init
;
6637 /* A variable definition. */
6638 else if (DECL_FUNCTION_SCOPE_P (decl
) && !TREE_STATIC (decl
))
6639 /* Initialize the local variable. */
6640 initialize_local_var (decl
, init
);
6642 /* If a variable is defined, and then a subsequent
6643 definition with external linkage is encountered, we will
6644 get here twice for the same variable. We want to avoid
6645 calling expand_static_init more than once. For variables
6646 that are not static data members, we can call
6647 expand_static_init only when we actually process the
6648 initializer. It is not legal to redeclare a static data
6649 member, so this issue does not arise in that case. */
6650 else if (var_definition_p
&& TREE_STATIC (decl
))
6651 expand_static_init (decl
, init
);
6654 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
6655 reference, insert it in the statement-tree now. */
6659 FOR_EACH_VEC_ELT (*cleanups
, i
, t
)
6660 push_cleanup (decl
, t
, false);
6661 release_tree_vector (cleanups
);
6665 TREE_READONLY (decl
) = 1;
6667 invoke_plugin_callbacks (PLUGIN_FINISH_DECL
, decl
);
6670 /* Returns a declaration for a VAR_DECL as if:
6672 extern "C" TYPE NAME;
6674 had been seen. Used to create compiler-generated global
6678 declare_global_var (tree name
, tree type
)
6682 push_to_top_level ();
6683 decl
= build_decl (input_location
, VAR_DECL
, name
, type
);
6684 TREE_PUBLIC (decl
) = 1;
6685 DECL_EXTERNAL (decl
) = 1;
6686 DECL_ARTIFICIAL (decl
) = 1;
6687 /* If the user has explicitly declared this variable (perhaps
6688 because the code we are compiling is part of a low-level runtime
6689 library), then it is possible that our declaration will be merged
6690 with theirs by pushdecl. */
6691 decl
= pushdecl (decl
);
6692 cp_finish_decl (decl
, NULL_TREE
, false, NULL_TREE
, 0);
6693 pop_from_top_level ();
6698 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
6699 if "__cxa_atexit" is not being used) corresponding to the function
6700 to be called when the program exits. */
6703 get_atexit_fn_ptr_type (void)
6707 if (!atexit_fn_ptr_type_node
)
6710 if (flag_use_cxa_atexit
6711 && !targetm
.cxx
.use_atexit_for_cxa_atexit ())
6712 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
6713 arg_type
= ptr_type_node
;
6715 /* The parameter to "atexit" is "void (*)(void)". */
6716 arg_type
= NULL_TREE
;
6718 fn_type
= build_function_type_list (void_type_node
,
6719 arg_type
, NULL_TREE
);
6720 atexit_fn_ptr_type_node
= build_pointer_type (fn_type
);
6723 return atexit_fn_ptr_type_node
;
6726 /* Returns a pointer to the `atexit' function. Note that if
6727 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
6728 `__cxa_atexit' function specified in the IA64 C++ ABI. */
6731 get_atexit_node (void)
6737 bool use_aeabi_atexit
;
6742 if (flag_use_cxa_atexit
&& !targetm
.cxx
.use_atexit_for_cxa_atexit ())
6744 /* The declaration for `__cxa_atexit' is:
6746 int __cxa_atexit (void (*)(void *), void *, void *)
6748 We build up the argument types and then the function type
6750 tree argtype0
, argtype1
, argtype2
;
6752 use_aeabi_atexit
= targetm
.cxx
.use_aeabi_atexit ();
6753 /* First, build the pointer-to-function type for the first
6755 fn_ptr_type
= get_atexit_fn_ptr_type ();
6756 /* Then, build the rest of the argument types. */
6757 argtype2
= ptr_type_node
;
6758 if (use_aeabi_atexit
)
6760 argtype1
= fn_ptr_type
;
6761 argtype0
= ptr_type_node
;
6765 argtype1
= ptr_type_node
;
6766 argtype0
= fn_ptr_type
;
6768 /* And the final __cxa_atexit type. */
6769 fn_type
= build_function_type_list (integer_type_node
,
6770 argtype0
, argtype1
, argtype2
,
6772 if (use_aeabi_atexit
)
6773 name
= "__aeabi_atexit";
6775 name
= "__cxa_atexit";
6779 /* The declaration for `atexit' is:
6781 int atexit (void (*)());
6783 We build up the argument types and then the function type
6785 fn_ptr_type
= get_atexit_fn_ptr_type ();
6786 /* Build the final atexit type. */
6787 fn_type
= build_function_type_list (integer_type_node
,
6788 fn_ptr_type
, NULL_TREE
);
6792 /* Now, build the function declaration. */
6793 push_lang_context (lang_name_c
);
6794 atexit_fndecl
= build_library_fn_ptr (name
, fn_type
, ECF_LEAF
| ECF_NOTHROW
);
6795 mark_used (atexit_fndecl
);
6796 pop_lang_context ();
6797 atexit_node
= decay_conversion (atexit_fndecl
, tf_warning_or_error
);
6802 /* Like get_atexit_node, but for thread-local cleanups. */
6805 get_thread_atexit_node (void)
6807 /* The declaration for `__cxa_thread_atexit' is:
6809 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
6810 tree fn_type
= build_function_type_list (integer_type_node
,
6811 get_atexit_fn_ptr_type (),
6812 ptr_type_node
, ptr_type_node
,
6815 /* Now, build the function declaration. */
6816 tree atexit_fndecl
= build_library_fn_ptr ("__cxa_thread_atexit", fn_type
,
6817 ECF_LEAF
| ECF_NOTHROW
);
6818 return decay_conversion (atexit_fndecl
, tf_warning_or_error
);
6821 /* Returns the __dso_handle VAR_DECL. */
6824 get_dso_handle_node (void)
6826 if (dso_handle_node
)
6827 return dso_handle_node
;
6829 /* Declare the variable. */
6830 dso_handle_node
= declare_global_var (get_identifier ("__dso_handle"),
6833 #ifdef HAVE_GAS_HIDDEN
6834 if (dso_handle_node
!= error_mark_node
)
6836 DECL_VISIBILITY (dso_handle_node
) = VISIBILITY_HIDDEN
;
6837 DECL_VISIBILITY_SPECIFIED (dso_handle_node
) = 1;
6841 return dso_handle_node
;
6844 /* Begin a new function with internal linkage whose job will be simply
6845 to destroy some particular variable. */
6847 static GTY(()) int start_cleanup_cnt
;
6850 start_cleanup_fn (void)
6855 bool use_cxa_atexit
= flag_use_cxa_atexit
6856 && !targetm
.cxx
.use_atexit_for_cxa_atexit ();
6858 push_to_top_level ();
6860 /* No need to mangle this. */
6861 push_lang_context (lang_name_c
);
6863 /* Build the name of the function. */
6864 sprintf (name
, "__tcf_%d", start_cleanup_cnt
++);
6865 /* Build the function declaration. */
6866 fntype
= TREE_TYPE (get_atexit_fn_ptr_type ());
6867 fndecl
= build_lang_decl (FUNCTION_DECL
, get_identifier (name
), fntype
);
6868 /* It's a function with internal linkage, generated by the
6870 TREE_PUBLIC (fndecl
) = 0;
6871 DECL_ARTIFICIAL (fndecl
) = 1;
6872 /* Make the function `inline' so that it is only emitted if it is
6873 actually needed. It is unlikely that it will be inlined, since
6874 it is only called via a function pointer, but we avoid unnecessary
6875 emissions this way. */
6876 DECL_DECLARED_INLINE_P (fndecl
) = 1;
6877 DECL_INTERFACE_KNOWN (fndecl
) = 1;
6878 /* Build the parameter. */
6883 parmdecl
= cp_build_parm_decl (NULL_TREE
, ptr_type_node
);
6884 DECL_CONTEXT (parmdecl
) = fndecl
;
6885 TREE_USED (parmdecl
) = 1;
6886 DECL_READ_P (parmdecl
) = 1;
6887 DECL_ARGUMENTS (fndecl
) = parmdecl
;
6891 start_preparsed_function (fndecl
, NULL_TREE
, SF_PRE_PARSED
);
6893 pop_lang_context ();
6895 return current_function_decl
;
6898 /* Finish the cleanup function begun by start_cleanup_fn. */
6901 end_cleanup_fn (void)
6903 expand_or_defer_fn (finish_function (0));
6905 pop_from_top_level ();
6908 /* Generate code to handle the destruction of DECL, an object with
6909 static storage duration. */
6912 register_dtor_fn (tree decl
)
6919 bool ob_parm
, dso_parm
, use_dtor
;
6920 tree arg0
, arg1
, arg2
;
6923 type
= TREE_TYPE (decl
);
6924 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type
))
6927 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
6928 "__aeabi_atexit"), and DECL is a class object, we can just pass the
6929 destructor to "__cxa_atexit"; we don't have to build a temporary
6930 function to do the cleanup. */
6931 dso_parm
= (flag_use_cxa_atexit
6932 && !targetm
.cxx
.use_atexit_for_cxa_atexit ());
6933 ob_parm
= (DECL_THREAD_LOCAL_P (decl
) || dso_parm
);
6934 use_dtor
= ob_parm
&& CLASS_TYPE_P (type
);
6939 /* Find the destructor. */
6940 idx
= lookup_fnfields_1 (type
, complete_dtor_identifier
);
6941 gcc_assert (idx
>= 0);
6942 cleanup
= (*CLASSTYPE_METHOD_VEC (type
))[idx
];
6943 /* Make sure it is accessible. */
6944 perform_or_defer_access_check (TYPE_BINFO (type
), cleanup
, cleanup
,
6945 tf_warning_or_error
);
6949 /* Call build_cleanup before we enter the anonymous function so
6950 that any access checks will be done relative to the current
6951 scope, rather than the scope of the anonymous function. */
6952 build_cleanup (decl
);
6954 /* Now start the function. */
6955 cleanup
= start_cleanup_fn ();
6957 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
6958 to the original function, rather than the anonymous one. That
6959 will make the back end think that nested functions are in use,
6960 which causes confusion. */
6961 push_deferring_access_checks (dk_no_check
);
6962 fcall
= build_cleanup (decl
);
6963 pop_deferring_access_checks ();
6965 /* Create the body of the anonymous function. */
6966 compound_stmt
= begin_compound_stmt (BCS_FN_BODY
);
6967 finish_expr_stmt (fcall
);
6968 finish_compound_stmt (compound_stmt
);
6972 /* Call atexit with the cleanup function. */
6973 mark_used (cleanup
);
6974 cleanup
= build_address (cleanup
);
6976 if (DECL_THREAD_LOCAL_P (decl
))
6977 atex_node
= get_thread_atexit_node ();
6979 atex_node
= get_atexit_node ();
6983 /* We must convert CLEANUP to the type that "__cxa_atexit"
6985 cleanup
= build_nop (get_atexit_fn_ptr_type (), cleanup
);
6986 /* "__cxa_atexit" will pass the address of DECL to the
6987 cleanup function. */
6989 addr
= build_address (decl
);
6990 /* The declared type of the parameter to "__cxa_atexit" is
6991 "void *". For plain "T*", we could just let the
6992 machinery in cp_build_function_call convert it -- but if the
6993 type is "cv-qualified T *", then we need to convert it
6994 before passing it in, to avoid spurious errors. */
6995 addr
= build_nop (ptr_type_node
, addr
);
6998 /* Since the cleanup functions we build ignore the address
6999 they're given, there's no reason to pass the actual address
7000 in, and, in general, it's cheaper to pass NULL than any
7002 addr
= null_pointer_node
;
7005 arg2
= cp_build_addr_expr (get_dso_handle_node (),
7006 tf_warning_or_error
);
7008 /* Just pass NULL to the dso handle parm if we don't actually
7009 have a DSO handle on this target. */
7010 arg2
= null_pointer_node
;
7016 if (!DECL_THREAD_LOCAL_P (decl
)
7017 && targetm
.cxx
.use_aeabi_atexit ())
7033 return cp_build_function_call_nary (atex_node
, tf_warning_or_error
,
7034 arg0
, arg1
, arg2
, NULL_TREE
);
7037 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
7038 is its initializer. Generate code to handle the construction
7039 and destruction of DECL. */
7042 expand_static_init (tree decl
, tree init
)
7044 gcc_assert (VAR_P (decl
));
7045 gcc_assert (TREE_STATIC (decl
));
7047 /* Some variables require no dynamic initialization. */
7049 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl
)))
7051 /* Make sure the destructor is callable. */
7052 cxx_maybe_build_cleanup (decl
, tf_warning_or_error
);
7056 if (DECL_THREAD_LOCAL_P (decl
) && DECL_GNU_TLS_P (decl
)
7057 && !DECL_FUNCTION_SCOPE_P (decl
))
7060 error ("non-local variable %qD declared %<__thread%> "
7061 "needs dynamic initialization", decl
);
7063 error ("non-local variable %qD declared %<__thread%> "
7064 "has a non-trivial destructor", decl
);
7065 static bool informed
;
7068 inform (DECL_SOURCE_LOCATION (decl
),
7069 "C++11 %<thread_local%> allows dynamic initialization "
7076 if (DECL_FUNCTION_SCOPE_P (decl
))
7078 /* Emit code to perform this initialization but once. */
7079 tree if_stmt
= NULL_TREE
, inner_if_stmt
= NULL_TREE
;
7080 tree then_clause
= NULL_TREE
, inner_then_clause
= NULL_TREE
;
7081 tree guard
, guard_addr
;
7083 /* We don't need thread-safety code for thread-local vars. */
7084 bool thread_guard
= (flag_threadsafe_statics
7085 && !DECL_THREAD_LOCAL_P (decl
));
7087 /* Emit code to perform this initialization but once. This code
7090 static <type> guard;
7091 if (!guard.first_byte) {
7092 if (__cxa_guard_acquire (&guard)) {
7095 // Do initialization.
7096 flag = true; __cxa_guard_release (&guard);
7097 // Register variable for destruction at end of program.
7099 if (!flag) __cxa_guard_abort (&guard);
7103 Note that the `flag' variable is only set to 1 *after* the
7104 initialization is complete. This ensures that an exception,
7105 thrown during the construction, will cause the variable to
7106 reinitialized when we pass through this code again, as per:
7110 If the initialization exits by throwing an exception, the
7111 initialization is not complete, so it will be tried again
7112 the next time control enters the declaration.
7114 This process should be thread-safe, too; multiple threads
7115 should not be able to initialize the variable more than
7118 /* Create the guard variable. */
7119 guard
= get_guard (decl
);
7121 /* This optimization isn't safe on targets with relaxed memory
7122 consistency. On such targets we force synchronization in
7123 __cxa_guard_acquire. */
7124 if (!targetm
.relaxed_ordering
|| !thread_guard
)
7126 /* Begin the conditional initialization. */
7127 if_stmt
= begin_if_stmt ();
7128 finish_if_stmt_cond (get_guard_cond (guard
), if_stmt
);
7129 then_clause
= begin_compound_stmt (BCS_NO_SCOPE
);
7134 tree vfntype
= NULL_TREE
;
7135 tree acquire_name
, release_name
, abort_name
;
7136 tree acquire_fn
, release_fn
, abort_fn
;
7137 guard_addr
= build_address (guard
);
7139 acquire_name
= get_identifier ("__cxa_guard_acquire");
7140 release_name
= get_identifier ("__cxa_guard_release");
7141 abort_name
= get_identifier ("__cxa_guard_abort");
7142 acquire_fn
= identifier_global_value (acquire_name
);
7143 release_fn
= identifier_global_value (release_name
);
7144 abort_fn
= identifier_global_value (abort_name
);
7146 acquire_fn
= push_library_fn
7147 (acquire_name
, build_function_type_list (integer_type_node
,
7148 TREE_TYPE (guard_addr
),
7150 NULL_TREE
, ECF_NOTHROW
| ECF_LEAF
);
7151 if (!release_fn
|| !abort_fn
)
7152 vfntype
= build_function_type_list (void_type_node
,
7153 TREE_TYPE (guard_addr
),
7156 release_fn
= push_library_fn (release_name
, vfntype
, NULL_TREE
,
7157 ECF_NOTHROW
| ECF_LEAF
);
7159 abort_fn
= push_library_fn (abort_name
, vfntype
, NULL_TREE
,
7160 ECF_NOTHROW
| ECF_LEAF
);
7162 inner_if_stmt
= begin_if_stmt ();
7163 finish_if_stmt_cond (build_call_n (acquire_fn
, 1, guard_addr
),
7166 inner_then_clause
= begin_compound_stmt (BCS_NO_SCOPE
);
7167 begin
= get_target_expr (boolean_false_node
);
7168 flag
= TARGET_EXPR_SLOT (begin
);
7170 TARGET_EXPR_CLEANUP (begin
)
7171 = build3 (COND_EXPR
, void_type_node
, flag
,
7173 build_call_n (abort_fn
, 1, guard_addr
));
7174 CLEANUP_EH_ONLY (begin
) = 1;
7176 /* Do the initialization itself. */
7177 init
= add_stmt_to_compound (begin
, init
);
7178 init
= add_stmt_to_compound
7179 (init
, build2 (MODIFY_EXPR
, void_type_node
, flag
, boolean_true_node
));
7180 init
= add_stmt_to_compound
7181 (init
, build_call_n (release_fn
, 1, guard_addr
));
7184 init
= add_stmt_to_compound (init
, set_guard (guard
));
7186 /* Use atexit to register a function for destroying this static
7188 init
= add_stmt_to_compound (init
, register_dtor_fn (decl
));
7190 finish_expr_stmt (init
);
7194 finish_compound_stmt (inner_then_clause
);
7195 finish_then_clause (inner_if_stmt
);
7196 finish_if_stmt (inner_if_stmt
);
7199 if (!targetm
.relaxed_ordering
|| !thread_guard
)
7201 finish_compound_stmt (then_clause
);
7202 finish_then_clause (if_stmt
);
7203 finish_if_stmt (if_stmt
);
7206 else if (DECL_THREAD_LOCAL_P (decl
))
7207 tls_aggregates
= tree_cons (init
, decl
, tls_aggregates
);
7209 static_aggregates
= tree_cons (init
, decl
, static_aggregates
);
7213 /* Make TYPE a complete type based on INITIAL_VALUE.
7214 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
7215 2 if there was no information (in which case assume 0 if DO_DEFAULT),
7216 3 if the initializer list is empty (in pedantic mode). */
7219 cp_complete_array_type (tree
*ptype
, tree initial_value
, bool do_default
)
7222 tree type
, elt_type
;
7224 /* Don't get confused by a CONSTRUCTOR for some other type. */
7225 if (initial_value
&& TREE_CODE (initial_value
) == CONSTRUCTOR
7226 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value
))
7231 unsigned HOST_WIDE_INT i
;
7234 /* An array of character type can be initialized from a
7235 brace-enclosed string constant.
7237 FIXME: this code is duplicated from reshape_init. Probably
7238 we should just call reshape_init here? */
7239 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype
)))
7240 && TREE_CODE (initial_value
) == CONSTRUCTOR
7241 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value
)))
7243 vec
<constructor_elt
, va_gc
> *v
= CONSTRUCTOR_ELTS (initial_value
);
7244 tree value
= (*v
)[0].value
;
7246 if (TREE_CODE (value
) == STRING_CST
7247 && v
->length () == 1)
7248 initial_value
= value
;
7251 /* If any of the elements are parameter packs, we can't actually
7252 complete this type now because the array size is dependent. */
7253 if (TREE_CODE (initial_value
) == CONSTRUCTOR
)
7255 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value
),
7258 if (PACK_EXPANSION_P (value
))
7264 failure
= complete_array_type (ptype
, initial_value
, do_default
);
7266 /* We can create the array before the element type is complete, which
7267 means that we didn't have these two bits set in the original type
7268 either. In completing the type, we are expected to propagate these
7269 bits. See also complete_type which does the same thing for arrays
7272 if (TYPE_DOMAIN (type
))
7274 elt_type
= TREE_TYPE (type
);
7275 TYPE_NEEDS_CONSTRUCTING (type
) = TYPE_NEEDS_CONSTRUCTING (elt_type
);
7276 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
)
7277 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type
);
7283 /* As above, but either give an error or reject zero-size arrays, depending
7287 cp_complete_array_type_or_error (tree
*ptype
, tree initial_value
,
7288 bool do_default
, tsubst_flags_t complain
)
7291 bool sfinae
= !(complain
& tf_error
);
7292 /* In SFINAE context we can't be lenient about zero-size arrays. */
7295 failure
= cp_complete_array_type (ptype
, initial_value
, do_default
);
7301 /* Not an error. */;
7302 else if (failure
== 1)
7303 error ("initializer fails to determine size of %qT", *ptype
);
7304 else if (failure
== 2)
7307 error ("array size missing in %qT", *ptype
);
7309 else if (failure
== 3)
7310 error ("zero-size array %qT", *ptype
);
7311 *ptype
= error_mark_node
;
7316 /* Return zero if something is declared to be a member of type
7317 CTYPE when in the context of CUR_TYPE. STRING is the error
7318 message to print in that case. Otherwise, quietly return 1. */
7321 member_function_or_else (tree ctype
, tree cur_type
, enum overload_flags flags
)
7323 if (ctype
&& ctype
!= cur_type
)
7325 if (flags
== DTOR_FLAG
)
7326 error ("destructor for alien class %qT cannot be a member", ctype
);
7328 error ("constructor for alien class %qT cannot be a member", ctype
);
7334 /* Subroutine of `grokdeclarator'. */
7336 /* Generate errors possibly applicable for a given set of specifiers.
7337 This is for ARM $7.1.2. */
7340 bad_specifiers (tree object
,
7341 enum bad_spec_place type
,
7352 error ("%qD declared as a %<virtual%> variable", object
);
7354 error ("%qD declared as an %<inline%> variable", object
);
7356 error ("%<const%> and %<volatile%> function specifiers on "
7357 "%qD invalid in variable declaration", object
);
7361 error ("%qD declared as a %<virtual%> parameter", object
);
7363 error ("%qD declared as an %<inline%> parameter", object
);
7365 error ("%<const%> and %<volatile%> function specifiers on "
7366 "%qD invalid in parameter declaration", object
);
7370 error ("%qD declared as a %<virtual%> type", object
);
7372 error ("%qD declared as an %<inline%> type", object
);
7374 error ("%<const%> and %<volatile%> function specifiers on "
7375 "%qD invalid in type declaration", object
);
7379 error ("%qD declared as a %<virtual%> field", object
);
7381 error ("%qD declared as an %<inline%> field", object
);
7383 error ("%<const%> and %<volatile%> function specifiers on "
7384 "%qD invalid in field declaration", object
);
7390 error ("%q+D declared as a friend", object
);
7392 && (TREE_CODE (object
) == TYPE_DECL
7393 || (!TYPE_PTRFN_P (TREE_TYPE (object
))
7394 && !TYPE_REFFN_P (TREE_TYPE (object
))
7395 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object
)))))
7396 error ("%q+D declared with an exception specification", object
);
7399 /* DECL is a member function or static data member and is presently
7400 being defined. Check that the definition is taking place in a
7404 check_class_member_definition_namespace (tree decl
)
7406 /* These checks only apply to member functions and static data
7408 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
7409 /* We check for problems with specializations in pt.c in
7410 check_specialization_namespace, where we can issue better
7412 if (processing_specialization
)
7414 /* There are no restrictions on the placement of
7415 explicit instantiations. */
7416 if (processing_explicit_instantiation
)
7420 A member function definition that appears outside of the
7421 class definition shall appear in a namespace scope enclosing
7422 the class definition.
7426 The definition for a static data member shall appear in a
7427 namespace scope enclosing the member's class definition. */
7428 if (!is_ancestor (current_namespace
, DECL_CONTEXT (decl
)))
7429 permerror (input_location
, "definition of %qD is not in namespace enclosing %qT",
7430 decl
, DECL_CONTEXT (decl
));
7433 /* Build a PARM_DECL for the "this" parameter. TYPE is the
7434 METHOD_TYPE for a non-static member function; QUALS are the
7435 cv-qualifiers that apply to the function. */
7438 build_this_parm (tree type
, cp_cv_quals quals
)
7443 cp_cv_quals this_quals
;
7445 if (CLASS_TYPE_P (type
))
7448 = cp_build_qualified_type (type
, quals
& ~TYPE_QUAL_RESTRICT
);
7449 this_type
= build_pointer_type (this_type
);
7452 this_type
= type_of_this_parm (type
);
7453 /* The `this' parameter is implicitly `const'; it cannot be
7455 this_quals
= (quals
& TYPE_QUAL_RESTRICT
) | TYPE_QUAL_CONST
;
7456 qual_type
= cp_build_qualified_type (this_type
, this_quals
);
7457 parm
= build_artificial_parm (this_identifier
, qual_type
);
7458 cp_apply_type_quals_to_decl (this_quals
, parm
);
7462 /* DECL is a static member function. Complain if it was declared
7463 with function-cv-quals. */
7466 check_static_quals (tree decl
, cp_cv_quals quals
)
7468 if (quals
!= TYPE_UNQUALIFIED
)
7469 error ("static member function %q#D declared with type qualifiers",
7473 /* Helper function. Replace the temporary this parameter injected
7474 during cp_finish_omp_declare_simd with the real this parameter. */
7477 declare_simd_adjust_this (tree
*tp
, int *walk_subtrees
, void *data
)
7479 tree this_parm
= (tree
) data
;
7480 if (TREE_CODE (*tp
) == PARM_DECL
7481 && DECL_NAME (*tp
) == this_identifier
7482 && *tp
!= this_parm
)
7484 else if (TYPE_P (*tp
))
7489 /* CTYPE is class type, or null if non-class.
7490 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
7492 DECLARATOR is the function's name.
7493 PARMS is a chain of PARM_DECLs for the function.
7494 VIRTUALP is truthvalue of whether the function is virtual or not.
7495 FLAGS are to be passed through to `grokclassfn'.
7496 QUALS are qualifiers indicating whether the function is `const'
7498 RAISES is a list of exceptions that this function can raise.
7499 CHECK is 1 if we must find this method in CTYPE, 0 if we should
7500 not look, and -1 if we should not call `grokclassfn' at all.
7502 SFK is the kind of special function (if any) for the new function.
7504 Returns `NULL_TREE' if something goes wrong, after issuing
7505 applicable error messages. */
7508 grokfndecl (tree ctype
,
7512 tree orig_declarator
,
7514 enum overload_flags flags
,
7516 cp_ref_qualifier rqual
,
7522 special_function_kind sfk
,
7527 location_t location
)
7530 int staticp
= ctype
&& TREE_CODE (type
) == FUNCTION_TYPE
;
7534 type
= build_ref_qualified_type (type
, rqual
);
7536 type
= build_exception_variant (type
, raises
);
7538 decl
= build_lang_decl (FUNCTION_DECL
, declarator
, type
);
7540 /* If we have an explicit location, use it, otherwise use whatever
7541 build_lang_decl used (probably input_location). */
7542 if (location
!= UNKNOWN_LOCATION
)
7543 DECL_SOURCE_LOCATION (decl
) = location
;
7545 if (TREE_CODE (type
) == METHOD_TYPE
)
7548 parm
= build_this_parm (type
, quals
);
7549 DECL_CHAIN (parm
) = parms
;
7552 DECL_ARGUMENTS (decl
) = parms
;
7553 for (t
= parms
; t
; t
= DECL_CHAIN (t
))
7554 DECL_CONTEXT (t
) = decl
;
7555 /* Propagate volatile out from type to decl. */
7556 if (TYPE_VOLATILE (type
))
7557 TREE_THIS_VOLATILE (decl
) = 1;
7559 /* Setup decl according to sfk. */
7562 case sfk_constructor
:
7563 case sfk_copy_constructor
:
7564 case sfk_move_constructor
:
7565 DECL_CONSTRUCTOR_P (decl
) = 1;
7567 case sfk_destructor
:
7568 DECL_DESTRUCTOR_P (decl
) = 1;
7574 /* If pointers to member functions use the least significant bit to
7575 indicate whether a function is virtual, ensure a pointer
7576 to this function will have that bit clear. */
7577 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
== ptrmemfunc_vbit_in_pfn
7578 && TREE_CODE (type
) == METHOD_TYPE
7579 && DECL_ALIGN (decl
) < 2 * BITS_PER_UNIT
)
7580 DECL_ALIGN (decl
) = 2 * BITS_PER_UNIT
;
7583 && TREE_CODE (orig_declarator
) == TEMPLATE_ID_EXPR
)
7587 ("defining explicit specialization %qD in friend declaration",
7591 tree fns
= TREE_OPERAND (orig_declarator
, 0);
7592 tree args
= TREE_OPERAND (orig_declarator
, 1);
7594 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
7596 /* Something like `template <class T> friend void f<T>()'. */
7597 error ("invalid use of template-id %qD in declaration "
7598 "of primary template",
7604 /* A friend declaration of the form friend void f<>(). Record
7605 the information in the TEMPLATE_ID_EXPR. */
7606 SET_DECL_IMPLICIT_INSTANTIATION (decl
);
7608 gcc_assert (identifier_p (fns
) || TREE_CODE (fns
) == OVERLOAD
);
7609 DECL_TEMPLATE_INFO (decl
) = build_template_info (fns
, args
);
7611 for (t
= TYPE_ARG_TYPES (TREE_TYPE (decl
)); t
; t
= TREE_CHAIN (t
))
7612 if (TREE_PURPOSE (t
)
7613 && TREE_CODE (TREE_PURPOSE (t
)) == DEFAULT_ARG
)
7615 error ("default arguments are not allowed in declaration "
7616 "of friend template specialization %qD",
7622 error ("%<inline%> is not allowed in declaration of friend "
7623 "template specialization %qD",
7626 error ("%<constexpr%> is not allowed in declaration of friend "
7627 "template specialization %qD",
7634 /* If this decl has namespace scope, set that up. */
7636 set_decl_namespace (decl
, in_namespace
, friendp
);
7638 DECL_CONTEXT (decl
) = FROB_CONTEXT (current_decl_namespace ());
7640 /* `main' and builtins have implicit 'C' linkage. */
7641 if ((MAIN_NAME_P (declarator
)
7642 || (IDENTIFIER_LENGTH (declarator
) > 10
7643 && IDENTIFIER_POINTER (declarator
)[0] == '_'
7644 && IDENTIFIER_POINTER (declarator
)[1] == '_'
7645 && strncmp (IDENTIFIER_POINTER (declarator
)+2, "builtin_", 8) == 0)
7646 || (targetcm
.cxx_implicit_extern_c
7647 && targetcm
.cxx_implicit_extern_c(IDENTIFIER_POINTER (declarator
))))
7648 && current_lang_name
== lang_name_cplusplus
7649 && ctype
== NULL_TREE
7650 && DECL_FILE_SCOPE_P (decl
))
7651 SET_DECL_LANGUAGE (decl
, lang_c
);
7653 /* Should probably propagate const out from type to decl I bet (mrs). */
7656 DECL_STATIC_FUNCTION_P (decl
) = 1;
7657 DECL_CONTEXT (decl
) = ctype
;
7662 DECL_CONTEXT (decl
) = ctype
;
7664 check_class_member_definition_namespace (decl
);
7667 if (ctype
== NULL_TREE
&& DECL_MAIN_P (decl
))
7669 if (PROCESSING_REAL_TEMPLATE_DECL_P())
7670 error ("cannot declare %<::main%> to be a template");
7672 error ("cannot declare %<::main%> to be inline");
7674 error ("cannot declare %<::main%> to be constexpr");
7676 error ("cannot declare %<::main%> to be static");
7681 /* Members of anonymous types and local classes have no linkage; make
7682 them internal. If a typedef is made later, this will be changed. */
7683 if (ctype
&& (TYPE_ANONYMOUS_P (ctype
)
7684 || decl_function_context (TYPE_MAIN_DECL (ctype
))))
7687 if (publicp
&& cxx_dialect
== cxx98
)
7689 /* [basic.link]: A name with no linkage (notably, the name of a class
7690 or enumeration declared in a local scope) shall not be used to
7691 declare an entity with linkage.
7693 DR 757 relaxes this restriction for C++0x. */
7694 no_linkage_error (decl
);
7697 TREE_PUBLIC (decl
) = publicp
;
7700 DECL_INTERFACE_KNOWN (decl
) = 1;
7701 DECL_NOT_REALLY_EXTERN (decl
) = 1;
7704 /* If the declaration was declared inline, mark it as such. */
7707 DECL_DECLARED_INLINE_P (decl
) = 1;
7709 DECL_COMDAT (decl
) = 1;
7712 DECL_DECLARED_CONSTEXPR_P (decl
) = true;
7714 DECL_EXTERNAL (decl
) = 1;
7715 if (TREE_CODE (type
) == FUNCTION_TYPE
)
7720 ? G_("static member function %qD cannot have cv-qualifier")
7721 : G_("non-member function %qD cannot have cv-qualifier"),
7723 quals
= TYPE_UNQUALIFIED
;
7729 ? G_("static member function %qD cannot have ref-qualifier")
7730 : G_("non-member function %qD cannot have ref-qualifier"),
7732 rqual
= REF_QUAL_NONE
;
7736 if (IDENTIFIER_OPNAME_P (DECL_NAME (decl
))
7737 && !grok_op_properties (decl
, /*complain=*/true))
7739 else if (UDLIT_OPER_P (DECL_NAME (decl
)))
7741 bool long_long_unsigned_p
;
7743 const char *suffix
= NULL
;
7744 /* [over.literal]/6: Literal operators shall not have C linkage. */
7745 if (DECL_LANGUAGE (decl
) == lang_c
)
7747 error ("literal operator with C linkage");
7751 if (DECL_NAMESPACE_SCOPE_P (decl
))
7753 if (!check_literal_operator_args (decl
, &long_long_unsigned_p
,
7756 error ("%qD has invalid argument list", decl
);
7760 suffix
= UDLIT_OP_SUFFIX (DECL_NAME (decl
));
7761 if (long_long_unsigned_p
)
7763 if (cpp_interpret_int_suffix (parse_in
, suffix
, strlen (suffix
)))
7764 warning (0, "integer suffix %<%s%>"
7765 " shadowed by implementation", suffix
);
7767 else if (long_double_p
)
7769 if (cpp_interpret_float_suffix (parse_in
, suffix
, strlen (suffix
)))
7770 warning (0, "floating point suffix %<%s%>"
7771 " shadowed by implementation", suffix
);
7776 error ("%qD must be a non-member function", decl
);
7782 /* Make the init_value nonzero so pushdecl knows this is not
7783 tentative. error_mark_node is replaced later with the BLOCK. */
7784 DECL_INITIAL (decl
) = error_mark_node
;
7786 if (TYPE_NOTHROW_P (type
) || nothrow_libfn_p (decl
))
7787 TREE_NOTHROW (decl
) = 1;
7789 if (flag_openmp
|| flag_cilkplus
)
7791 /* Adjust "omp declare simd" attributes. */
7792 tree ods
= lookup_attribute ("omp declare simd", *attrlist
);
7796 for (attr
= ods
; attr
;
7797 attr
= lookup_attribute ("omp declare simd", TREE_CHAIN (attr
)))
7799 if (TREE_CODE (type
) == METHOD_TYPE
)
7800 walk_tree (&TREE_VALUE (attr
), declare_simd_adjust_this
,
7801 DECL_ARGUMENTS (decl
), NULL
);
7802 if (TREE_VALUE (attr
) != NULL_TREE
)
7804 tree cl
= TREE_VALUE (TREE_VALUE (attr
));
7805 cl
= c_omp_declare_simd_clauses_to_numbers
7806 (DECL_ARGUMENTS (decl
), cl
);
7808 TREE_VALUE (TREE_VALUE (attr
)) = cl
;
7810 TREE_VALUE (attr
) = NULL_TREE
;
7816 /* Caller will do the rest of this. */
7820 if (ctype
!= NULL_TREE
)
7821 grokclassfn (ctype
, decl
, flags
);
7824 if (cxx_dialect
>= cxx11
7825 && DECL_DESTRUCTOR_P (decl
)
7826 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl
))
7827 && !processing_template_decl
)
7828 deduce_noexcept_on_destructor (decl
);
7830 decl
= check_explicit_specialization (orig_declarator
, decl
,
7833 4 * (friendp
!= 0));
7834 if (decl
== error_mark_node
)
7837 if (DECL_STATIC_FUNCTION_P (decl
))
7838 check_static_quals (decl
, quals
);
7842 cplus_decl_attributes (&decl
, *attrlist
, 0);
7843 *attrlist
= NULL_TREE
;
7846 /* Check main's type after attributes have been applied. */
7847 if (ctype
== NULL_TREE
&& DECL_MAIN_P (decl
))
7849 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl
)),
7852 tree oldtypeargs
= TYPE_ARG_TYPES (TREE_TYPE (decl
));
7854 error ("%<::main%> must return %<int%>");
7855 newtype
= build_function_type (integer_type_node
, oldtypeargs
);
7856 TREE_TYPE (decl
) = newtype
;
7859 check_main_parameter_types (decl
);
7862 if (ctype
!= NULL_TREE
7863 && (! TYPE_FOR_JAVA (ctype
) || check_java_method (decl
))
7866 tree old_decl
= check_classfn (ctype
, decl
,
7867 (processing_template_decl
7868 > template_class_depth (ctype
))
7869 ? current_template_parms
7872 if (old_decl
== error_mark_node
)
7880 if (TREE_CODE (old_decl
) == TEMPLATE_DECL
)
7881 /* Because grokfndecl is always supposed to return a
7882 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
7883 here. We depend on our callers to figure out that its
7884 really a template that's being returned. */
7885 old_decl
= DECL_TEMPLATE_RESULT (old_decl
);
7887 if (DECL_STATIC_FUNCTION_P (old_decl
)
7888 && TREE_CODE (TREE_TYPE (decl
)) == METHOD_TYPE
)
7890 /* Remove the `this' parm added by grokclassfn. */
7891 revert_static_member_fn (decl
);
7892 check_static_quals (decl
, quals
);
7894 if (DECL_ARTIFICIAL (old_decl
))
7896 error ("definition of implicitly-declared %qD", old_decl
);
7899 else if (DECL_DEFAULTED_FN (old_decl
))
7901 error ("definition of explicitly-defaulted %q+D", decl
);
7902 error ("%q+#D explicitly defaulted here", old_decl
);
7906 /* Since we've smashed OLD_DECL to its
7907 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
7908 if (TREE_CODE (decl
) == TEMPLATE_DECL
)
7909 decl
= DECL_TEMPLATE_RESULT (decl
);
7911 /* Attempt to merge the declarations. This can fail, in
7912 the case of some invalid specialization declarations. */
7913 pushed_scope
= push_scope (ctype
);
7914 ok
= duplicate_decls (decl
, old_decl
, friendp
);
7916 pop_scope (pushed_scope
);
7919 error ("no %q#D member function declared in class %qT",
7923 if (ok
== error_mark_node
)
7929 if (DECL_CONSTRUCTOR_P (decl
) && !grok_ctor_properties (ctype
, decl
))
7932 if (ctype
== NULL_TREE
|| check
)
7936 DECL_VIRTUAL_P (decl
) = 1;
7941 /* decl is a FUNCTION_DECL.
7942 specifiers are the parsed virt-specifiers.
7944 Set flags to reflect the virt-specifiers.
7949 set_virt_specifiers (tree decl
, cp_virt_specifiers specifiers
)
7951 if (decl
== NULL_TREE
)
7953 if (specifiers
& VIRT_SPEC_OVERRIDE
)
7954 DECL_OVERRIDE_P (decl
) = 1;
7955 if (specifiers
& VIRT_SPEC_FINAL
)
7956 DECL_FINAL_P (decl
) = 1;
7960 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
7961 the linkage that DECL will receive in the object file. */
7964 set_linkage_for_static_data_member (tree decl
)
7966 /* A static data member always has static storage duration and
7967 external linkage. Note that static data members are forbidden in
7968 local classes -- the only situation in which a class has
7969 non-external linkage. */
7970 TREE_PUBLIC (decl
) = 1;
7971 TREE_STATIC (decl
) = 1;
7972 /* For non-template classes, static data members are always put
7973 out in exactly those files where they are defined, just as
7974 with ordinary namespace-scope variables. */
7975 if (!processing_template_decl
)
7976 DECL_INTERFACE_KNOWN (decl
) = 1;
7979 /* Create a VAR_DECL named NAME with the indicated TYPE.
7981 If SCOPE is non-NULL, it is the class type or namespace containing
7982 the variable. If SCOPE is NULL, the variable should is created in
7983 the innermost enclosing scope. */
7986 grokvardecl (tree type
,
7988 tree orig_declarator
,
7989 const cp_decl_specifier_seq
*declspecs
,
7996 tree explicit_scope
;
7998 gcc_assert (!name
|| identifier_p (name
));
8000 /* Compute the scope in which to place the variable, but remember
8001 whether or not that scope was explicitly specified by the user. */
8002 explicit_scope
= scope
;
8005 /* An explicit "extern" specifier indicates a namespace-scope
8007 if (declspecs
->storage_class
== sc_extern
)
8008 scope
= current_decl_namespace ();
8009 else if (!at_function_scope_p ())
8010 scope
= current_scope ();
8014 && (/* If the variable is a namespace-scope variable declared in a
8015 template, we need DECL_LANG_SPECIFIC. */
8016 (TREE_CODE (scope
) == NAMESPACE_DECL
&& processing_template_decl
)
8017 /* Similarly for namespace-scope variables with language linkage
8019 || (TREE_CODE (scope
) == NAMESPACE_DECL
8020 && current_lang_name
!= lang_name_cplusplus
)
8021 /* Similarly for static data members. */
8023 /* Similarly for explicit specializations. */
8025 && TREE_CODE (orig_declarator
) == TEMPLATE_ID_EXPR
)))
8026 decl
= build_lang_decl (VAR_DECL
, name
, type
);
8028 decl
= build_decl (input_location
, VAR_DECL
, name
, type
);
8030 if (explicit_scope
&& TREE_CODE (explicit_scope
) == NAMESPACE_DECL
)
8031 set_decl_namespace (decl
, explicit_scope
, 0);
8033 DECL_CONTEXT (decl
) = FROB_CONTEXT (scope
);
8035 if (declspecs
->storage_class
== sc_extern
)
8037 DECL_THIS_EXTERN (decl
) = 1;
8038 DECL_EXTERNAL (decl
) = !initialized
;
8041 if (DECL_CLASS_SCOPE_P (decl
))
8043 set_linkage_for_static_data_member (decl
);
8044 /* This function is only called with out-of-class definitions. */
8045 DECL_EXTERNAL (decl
) = 0;
8046 check_class_member_definition_namespace (decl
);
8048 /* At top level, either `static' or no s.c. makes a definition
8049 (perhaps tentative), and absence of `static' makes it public. */
8050 else if (toplevel_bindings_p ())
8052 TREE_PUBLIC (decl
) = (declspecs
->storage_class
!= sc_static
8053 && (DECL_THIS_EXTERN (decl
) || ! constp
));
8054 TREE_STATIC (decl
) = ! DECL_EXTERNAL (decl
);
8056 /* Not at top level, only `static' makes a static definition. */
8059 TREE_STATIC (decl
) = declspecs
->storage_class
== sc_static
;
8060 TREE_PUBLIC (decl
) = DECL_EXTERNAL (decl
);
8063 if (decl_spec_seq_has_spec_p (declspecs
, ds_thread
))
8065 if (DECL_EXTERNAL (decl
) || TREE_STATIC (decl
))
8066 set_decl_tls_model (decl
, decl_default_tls_model (decl
));
8067 if (declspecs
->gnu_thread_keyword_p
)
8068 DECL_GNU_TLS_P (decl
) = true;
8071 /* If the type of the decl has no linkage, make sure that we'll
8072 notice that in mark_used. */
8073 if (cxx_dialect
> cxx98
8074 && decl_linkage (decl
) != lk_none
8075 && DECL_LANG_SPECIFIC (decl
) == NULL
8076 && !DECL_EXTERN_C_P (decl
)
8077 && no_linkage_check (TREE_TYPE (decl
), /*relaxed_p=*/false))
8078 retrofit_lang_decl (decl
);
8080 if (TREE_PUBLIC (decl
))
8082 /* [basic.link]: A name with no linkage (notably, the name of a class
8083 or enumeration declared in a local scope) shall not be used to
8084 declare an entity with linkage.
8086 DR 757 relaxes this restriction for C++0x. */
8087 if (cxx_dialect
< cxx11
)
8088 no_linkage_error (decl
);
8091 DECL_INTERFACE_KNOWN (decl
) = 1;
8093 // Handle explicit specializations and instantiations of variable templates.
8094 if (orig_declarator
)
8095 decl
= check_explicit_specialization (orig_declarator
, decl
,
8098 return decl
!= error_mark_node
? decl
: NULL_TREE
;
8101 /* Create and return a canonical pointer to member function type, for
8102 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
8105 build_ptrmemfunc_type (tree type
)
8109 tree unqualified_variant
= NULL_TREE
;
8111 if (type
== error_mark_node
)
8114 /* If a canonical type already exists for this type, use it. We use
8115 this method instead of type_hash_canon, because it only does a
8116 simple equality check on the list of field members. */
8118 if ((t
= TYPE_GET_PTRMEMFUNC_TYPE (type
)))
8121 /* Make sure that we always have the unqualified pointer-to-member
8123 if (cp_type_quals (type
) != TYPE_UNQUALIFIED
)
8125 = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type
));
8127 t
= make_node (RECORD_TYPE
);
8129 /* Let the front end know this is a pointer to member function. */
8130 TYPE_PTRMEMFUNC_FLAG (t
) = 1;
8132 field
= build_decl (input_location
, FIELD_DECL
, pfn_identifier
, type
);
8135 field
= build_decl (input_location
, FIELD_DECL
, delta_identifier
,
8137 DECL_CHAIN (field
) = fields
;
8140 finish_builtin_struct (t
, "__ptrmemfunc_type", fields
, ptr_type_node
);
8142 /* Zap out the name so that the back end will give us the debugging
8143 information for this anonymous RECORD_TYPE. */
8144 TYPE_NAME (t
) = NULL_TREE
;
8146 /* If this is not the unqualified form of this pointer-to-member
8147 type, set the TYPE_MAIN_VARIANT for this type to be the
8148 unqualified type. Since they are actually RECORD_TYPEs that are
8149 not variants of each other, we must do this manually.
8150 As we just built a new type there is no need to do yet another copy. */
8151 if (cp_type_quals (type
) != TYPE_UNQUALIFIED
)
8153 int type_quals
= cp_type_quals (type
);
8154 TYPE_READONLY (t
) = (type_quals
& TYPE_QUAL_CONST
) != 0;
8155 TYPE_VOLATILE (t
) = (type_quals
& TYPE_QUAL_VOLATILE
) != 0;
8156 TYPE_RESTRICT (t
) = (type_quals
& TYPE_QUAL_RESTRICT
) != 0;
8157 TYPE_MAIN_VARIANT (t
) = unqualified_variant
;
8158 TYPE_NEXT_VARIANT (t
) = TYPE_NEXT_VARIANT (unqualified_variant
);
8159 TYPE_NEXT_VARIANT (unqualified_variant
) = t
;
8162 /* Cache this pointer-to-member type so that we can find it again
8164 TYPE_SET_PTRMEMFUNC_TYPE (type
, t
);
8166 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
8167 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8168 else if (TYPE_CANONICAL (type
) != type
)
8169 TYPE_CANONICAL (t
) = build_ptrmemfunc_type (TYPE_CANONICAL (type
));
8174 /* Create and return a pointer to data member type. */
8177 build_ptrmem_type (tree class_type
, tree member_type
)
8179 if (TREE_CODE (member_type
) == METHOD_TYPE
)
8181 cp_cv_quals quals
= type_memfn_quals (member_type
);
8182 cp_ref_qualifier rqual
= type_memfn_rqual (member_type
);
8183 member_type
= build_memfn_type (member_type
, class_type
, quals
, rqual
);
8184 return build_ptrmemfunc_type (build_pointer_type (member_type
));
8188 gcc_assert (TREE_CODE (member_type
) != FUNCTION_TYPE
);
8189 return build_offset_type (class_type
, member_type
);
8193 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
8194 Check to see that the definition is valid. Issue appropriate error
8195 messages. Return 1 if the definition is particularly bad, or 0
8199 check_static_variable_definition (tree decl
, tree type
)
8201 /* Can't check yet if we don't know the type. */
8202 if (dependent_type_p (type
))
8204 /* If DECL is declared constexpr, we'll do the appropriate checks
8205 in check_initializer. */
8206 if (DECL_P (decl
) && DECL_DECLARED_CONSTEXPR_P (decl
))
8208 else if (cxx_dialect
>= cxx11
&& !INTEGRAL_OR_ENUMERATION_TYPE_P (type
))
8210 if (!COMPLETE_TYPE_P (type
))
8211 error ("in-class initialization of static data member %q#D of "
8212 "incomplete type", decl
);
8213 else if (literal_type_p (type
))
8214 permerror (input_location
,
8215 "%<constexpr%> needed for in-class initialization of "
8216 "static data member %q#D of non-integral type", decl
);
8218 error ("in-class initialization of static data member %q#D of "
8219 "non-literal type", decl
);
8223 /* Motion 10 at San Diego: If a static const integral data member is
8224 initialized with an integral constant expression, the initializer
8225 may appear either in the declaration (within the class), or in
8226 the definition, but not both. If it appears in the class, the
8227 member is a member constant. The file-scope definition is always
8229 if (!ARITHMETIC_TYPE_P (type
) && TREE_CODE (type
) != ENUMERAL_TYPE
)
8231 error ("invalid in-class initialization of static data member "
8232 "of non-integral type %qT",
8236 else if (!CP_TYPE_CONST_P (type
))
8237 error ("ISO C++ forbids in-class initialization of non-const "
8238 "static member %qD",
8240 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type
))
8241 pedwarn (input_location
, OPT_Wpedantic
, "ISO C++ forbids initialization of member constant "
8242 "%qD of non-integral type %qT", decl
, type
);
8247 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
8248 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
8249 expressions out into temporary variables so that walk_tree doesn't
8250 step into them (c++/15764). */
8253 stabilize_save_expr_r (tree
*expr_p
, int *walk_subtrees
, void *data
)
8255 hash_set
<tree
> *pset
= (hash_set
<tree
> *)data
;
8256 tree expr
= *expr_p
;
8257 if (TREE_CODE (expr
) == SAVE_EXPR
)
8259 tree op
= TREE_OPERAND (expr
, 0);
8260 cp_walk_tree (&op
, stabilize_save_expr_r
, data
, pset
);
8261 if (TREE_SIDE_EFFECTS (op
))
8262 TREE_OPERAND (expr
, 0) = get_temp_regvar (TREE_TYPE (op
), op
);
8265 else if (!EXPR_P (expr
) || !TREE_SIDE_EFFECTS (expr
))
8270 /* Entry point for the above. */
8273 stabilize_vla_size (tree size
)
8275 hash_set
<tree
> pset
;
8276 /* Break out any function calls into temporary variables. */
8277 cp_walk_tree (&size
, stabilize_save_expr_r
, &pset
, &pset
);
8280 /* Helper function for compute_array_index_type. Look for SIZEOF_EXPR
8281 not inside of SAVE_EXPR and fold them. */
8284 fold_sizeof_expr_r (tree
*expr_p
, int *walk_subtrees
, void *data
)
8286 tree expr
= *expr_p
;
8287 if (TREE_CODE (expr
) == SAVE_EXPR
|| TYPE_P (expr
))
8289 else if (TREE_CODE (expr
) == SIZEOF_EXPR
)
8291 *(bool *)data
= true;
8292 if (SIZEOF_EXPR_TYPE_P (expr
))
8293 expr
= cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (expr
, 0)),
8294 SIZEOF_EXPR
, false);
8295 else if (TYPE_P (TREE_OPERAND (expr
, 0)))
8296 expr
= cxx_sizeof_or_alignof_type (TREE_OPERAND (expr
, 0), SIZEOF_EXPR
,
8299 expr
= cxx_sizeof_or_alignof_expr (TREE_OPERAND (expr
, 0), SIZEOF_EXPR
,
8301 if (expr
== error_mark_node
)
8302 expr
= size_one_node
;
8309 /* Given the SIZE (i.e., number of elements) in an array, compute an
8310 appropriate index type for the array. If non-NULL, NAME is the
8311 name of the thing being declared. */
8314 compute_array_index_type (tree name
, tree size
, tsubst_flags_t complain
)
8319 if (error_operand_p (size
))
8320 return error_mark_node
;
8322 if (!type_dependent_expression_p (size
))
8324 tree type
= TREE_TYPE (size
);
8326 mark_rvalue_use (size
);
8328 if (cxx_dialect
< cxx11
&& TREE_CODE (size
) == NOP_EXPR
8329 && TREE_SIDE_EFFECTS (size
))
8330 /* In C++98, we mark a non-constant array bound with a magic
8331 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
8334 size
= fold_non_dependent_expr_sfinae (size
, complain
);
8336 if (CLASS_TYPE_P (type
)
8337 && CLASSTYPE_LITERAL_P (type
))
8339 size
= build_expr_type_conversion (WANT_INT
, size
, true);
8342 if (!(complain
& tf_error
))
8343 return error_mark_node
;
8345 error ("size of array %qD has non-integral type %qT",
8348 error ("size of array has non-integral type %qT", type
);
8349 size
= integer_one_node
;
8351 if (size
== error_mark_node
)
8352 return error_mark_node
;
8353 type
= TREE_TYPE (size
);
8356 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type
))
8357 size
= maybe_constant_value (size
);
8359 if (!TREE_CONSTANT (size
))
8363 if (error_operand_p (size
))
8364 return error_mark_node
;
8366 /* The array bound must be an integer type. */
8367 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type
))
8369 if (!(complain
& tf_error
))
8370 return error_mark_node
;
8372 error ("size of array %qD has non-integral type %qT", name
, type
);
8374 error ("size of array has non-integral type %qT", type
);
8375 size
= integer_one_node
;
8376 type
= TREE_TYPE (size
);
8380 /* A type is dependent if it is...an array type constructed from any
8381 dependent type or whose size is specified by a constant expression
8382 that is value-dependent. */
8383 /* We can only call value_dependent_expression_p on integral constant
8384 expressions; treat non-constant expressions as dependent, too. */
8385 if (processing_template_decl
8386 && (type_dependent_expression_p (size
)
8387 || !TREE_CONSTANT (size
) || value_dependent_expression_p (size
)))
8389 /* We cannot do any checking for a SIZE that isn't known to be
8390 constant. Just build the index type and mark that it requires
8391 structural equality checks. */
8392 itype
= build_index_type (build_min (MINUS_EXPR
, sizetype
,
8393 size
, size_one_node
));
8394 TYPE_DEPENDENT_P (itype
) = 1;
8395 TYPE_DEPENDENT_P_VALID (itype
) = 1;
8396 SET_TYPE_STRUCTURAL_EQUALITY (itype
);
8400 /* Normally, the array-bound will be a constant. */
8401 if (TREE_CODE (size
) == INTEGER_CST
)
8403 /* Check to see if the array bound overflowed. Make that an
8404 error, no matter how generous we're being. */
8405 constant_expression_error (size
);
8407 /* An array must have a positive number of elements. */
8408 if (tree_int_cst_lt (size
, integer_zero_node
))
8410 if (!(complain
& tf_error
))
8411 return error_mark_node
;
8413 error ("size of array %qD is negative", name
);
8415 error ("size of array is negative");
8416 size
= integer_one_node
;
8418 /* As an extension we allow zero-sized arrays. */
8419 else if (integer_zerop (size
))
8421 if (!(complain
& tf_error
))
8422 /* We must fail if performing argument deduction (as
8423 indicated by the state of complain), so that
8424 another substitution can be found. */
8425 return error_mark_node
;
8426 else if (in_system_header_at (input_location
))
8427 /* Allow them in system headers because glibc uses them. */;
8429 pedwarn (input_location
, OPT_Wpedantic
, "ISO C++ forbids zero-size array %qD", name
);
8431 pedwarn (input_location
, OPT_Wpedantic
, "ISO C++ forbids zero-size array");
8434 else if (TREE_CONSTANT (size
)
8435 /* We don't allow VLAs at non-function scopes, or during
8436 tentative template substitution. */
8437 || !at_function_scope_p ()
8438 || (cxx_dialect
< cxx14
&& !(complain
& tf_error
)))
8440 if (!(complain
& tf_error
))
8441 return error_mark_node
;
8442 /* `(int) &fn' is not a valid array bound. */
8444 error ("size of array %qD is not an integral constant-expression",
8447 error ("size of array is not an integral constant-expression");
8448 size
= integer_one_node
;
8450 else if (cxx_dialect
< cxx14
&& pedantic
&& warn_vla
!= 0)
8453 pedwarn (input_location
, OPT_Wvla
, "ISO C++ forbids variable length array %qD", name
);
8455 pedwarn (input_location
, OPT_Wvla
, "ISO C++ forbids variable length array");
8457 else if (warn_vla
> 0)
8461 "variable length array %qD is used", name
);
8464 "variable length array is used");
8467 if (processing_template_decl
&& !TREE_CONSTANT (size
))
8468 /* A variable sized array. */
8469 itype
= build_min (MINUS_EXPR
, sizetype
, size
, integer_one_node
);
8472 HOST_WIDE_INT saved_processing_template_decl
;
8474 /* Compute the index of the largest element in the array. It is
8475 one less than the number of elements in the array. We save
8476 and restore PROCESSING_TEMPLATE_DECL so that computations in
8477 cp_build_binary_op will be appropriately folded. */
8478 saved_processing_template_decl
= processing_template_decl
;
8479 processing_template_decl
= 0;
8480 itype
= cp_build_binary_op (input_location
,
8482 cp_convert (ssizetype
, size
, complain
),
8483 cp_convert (ssizetype
, integer_one_node
,
8486 itype
= fold (itype
);
8487 processing_template_decl
= saved_processing_template_decl
;
8489 if (!TREE_CONSTANT (itype
))
8491 /* A variable sized array. */
8492 itype
= variable_size (itype
);
8494 if (TREE_CODE (itype
) != SAVE_EXPR
)
8496 /* Look for SIZEOF_EXPRs in itype and fold them, otherwise
8497 they might survive till gimplification. */
8498 tree newitype
= itype
;
8500 cp_walk_tree_without_duplicates (&newitype
,
8501 fold_sizeof_expr_r
, &found
);
8503 itype
= variable_size (fold (newitype
));
8506 stabilize_vla_size (itype
);
8508 if (cxx_dialect
>= cxx14
&& flag_exceptions
)
8510 /* If the VLA bound is larger than half the address space,
8511 or less than zero, throw std::bad_array_length. */
8512 tree comp
= build2 (LT_EXPR
, boolean_type_node
, itype
,
8514 comp
= build3 (COND_EXPR
, void_type_node
, comp
,
8515 throw_bad_array_length (), void_node
);
8516 finish_expr_stmt (comp
);
8518 else if (flag_sanitize
& SANITIZE_VLA
8519 && current_function_decl
!= NULL_TREE
8520 && !lookup_attribute ("no_sanitize_undefined",
8522 (current_function_decl
)))
8524 /* From C++14 onwards, we throw an exception on a negative
8525 length size of an array; see above. */
8527 /* We have to add 1 -- in the ubsan routine we generate
8528 LE_EXPR rather than LT_EXPR. */
8529 tree t
= fold_build2 (PLUS_EXPR
, TREE_TYPE (itype
), itype
,
8530 build_one_cst (TREE_TYPE (itype
)));
8531 t
= ubsan_instrument_vla (input_location
, t
);
8532 finish_expr_stmt (t
);
8535 /* Make sure that there was no overflow when creating to a signed
8536 index type. (For example, on a 32-bit machine, an array with
8537 size 2^32 - 1 is too big.) */
8538 else if (TREE_CODE (itype
) == INTEGER_CST
8539 && TREE_OVERFLOW (itype
))
8541 if (!(complain
& tf_error
))
8542 return error_mark_node
;
8543 error ("overflow in array dimension");
8544 TREE_OVERFLOW (itype
) = 0;
8548 /* Create and return the appropriate index type. */
8549 itype
= build_index_type (itype
);
8551 /* If the index type were dependent, we would have returned early, so
8552 remember that it isn't. */
8553 TYPE_DEPENDENT_P (itype
) = 0;
8554 TYPE_DEPENDENT_P_VALID (itype
) = 1;
8558 /* Returns the scope (if any) in which the entity declared by
8559 DECLARATOR will be located. If the entity was declared with an
8560 unqualified name, NULL_TREE is returned. */
8563 get_scope_of_declarator (const cp_declarator
*declarator
)
8565 while (declarator
&& declarator
->kind
!= cdk_id
)
8566 declarator
= declarator
->declarator
;
8568 /* If the declarator-id is a SCOPE_REF, the scope in which the
8569 declaration occurs is the first operand. */
8571 && declarator
->u
.id
.qualifying_scope
)
8572 return declarator
->u
.id
.qualifying_scope
;
8574 /* Otherwise, the declarator is not a qualified name; the entity will
8575 be declared in the current scope. */
8579 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
8580 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
8584 create_array_type_for_decl (tree name
, tree type
, tree size
)
8586 tree itype
= NULL_TREE
;
8588 /* If things have already gone awry, bail now. */
8589 if (type
== error_mark_node
|| size
== error_mark_node
)
8590 return error_mark_node
;
8592 /* 8.3.4/1: If the type of the identifier of D contains the auto
8593 type-specifier, the program is ill-formed. */
8594 if (type_uses_auto (type
))
8596 error ("%qD declared as array of %qT", name
, type
);
8597 return error_mark_node
;
8600 /* If there are some types which cannot be array elements,
8601 issue an error-message and return. */
8602 switch (TREE_CODE (type
))
8606 error ("declaration of %qD as array of void", name
);
8608 error ("creating array of void");
8609 return error_mark_node
;
8613 error ("declaration of %qD as array of functions", name
);
8615 error ("creating array of functions");
8616 return error_mark_node
;
8618 case REFERENCE_TYPE
:
8620 error ("declaration of %qD as array of references", name
);
8622 error ("creating array of references");
8623 return error_mark_node
;
8627 error ("declaration of %qD as array of function members", name
);
8629 error ("creating array of function members");
8630 return error_mark_node
;
8638 The constant expressions that specify the bounds of the arrays
8639 can be omitted only for the first member of the sequence. */
8640 if (TREE_CODE (type
) == ARRAY_TYPE
&& !TYPE_DOMAIN (type
))
8643 error ("declaration of %qD as multidimensional array must "
8644 "have bounds for all dimensions except the first",
8647 error ("multidimensional array must have bounds for all "
8648 "dimensions except the first");
8650 return error_mark_node
;
8653 if (cxx_dialect
>= cxx14
&& array_of_runtime_bound_p (type
)
8654 && (flag_iso
|| warn_vla
> 0))
8655 pedwarn (input_location
, OPT_Wvla
, "array of array of runtime bound");
8657 /* Figure out the index type for the array. */
8659 itype
= compute_array_index_type (name
, size
, tf_warning_or_error
);
8662 T is called the array element type; this type shall not be [...] an
8663 abstract class type. */
8664 abstract_virtuals_error (name
, type
);
8666 return build_cplus_array_type (type
, itype
);
8669 /* Check that it's OK to declare a function with the indicated TYPE.
8670 SFK indicates the kind of special function (if any) that this
8671 function is. OPTYPE is the type given in a conversion operator
8672 declaration, or the class type for a constructor/destructor.
8673 Returns the actual return type of the function; that
8674 may be different than TYPE if an error occurs, or for certain
8675 special functions. */
8678 check_special_function_return_type (special_function_kind sfk
,
8684 case sfk_constructor
:
8686 error ("return type specification for constructor invalid");
8688 if (targetm
.cxx
.cdtor_returns_this () && !TYPE_FOR_JAVA (optype
))
8689 type
= build_pointer_type (optype
);
8691 type
= void_type_node
;
8694 case sfk_destructor
:
8696 error ("return type specification for destructor invalid");
8697 /* We can't use the proper return type here because we run into
8698 problems with ambiguous bases and covariant returns.
8699 Java classes are left unchanged because (void *) isn't a valid
8700 Java type, and we don't want to change the Java ABI. */
8701 if (targetm
.cxx
.cdtor_returns_this () && !TYPE_FOR_JAVA (optype
))
8702 type
= build_pointer_type (void_type_node
);
8704 type
= void_type_node
;
8707 case sfk_conversion
:
8709 error ("return type specified for %<operator %T%>", optype
);
8720 /* A variable or data member (whose unqualified name is IDENTIFIER)
8721 has been declared with the indicated TYPE. If the TYPE is not
8722 acceptable, issue an error message and return a type to use for
8723 error-recovery purposes. */
8726 check_var_type (tree identifier
, tree type
)
8728 if (VOID_TYPE_P (type
))
8731 error ("unnamed variable or field declared void");
8732 else if (identifier_p (identifier
))
8734 gcc_assert (!IDENTIFIER_OPNAME_P (identifier
));
8735 error ("variable or field %qE declared void", identifier
);
8738 error ("variable or field declared void");
8739 type
= error_mark_node
;
8745 /* Given declspecs and a declarator (abstract or otherwise), determine
8746 the name and type of the object declared and construct a DECL node
8749 DECLSPECS points to the representation of declaration-specifier
8750 sequence that precedes declarator.
8752 DECL_CONTEXT says which syntactic context this declaration is in:
8753 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
8754 FUNCDEF for a function definition. Like NORMAL but a few different
8755 error messages in each case. Return value may be zero meaning
8756 this definition is too screwy to try to parse.
8757 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
8758 handle member functions (which have FIELD context).
8759 Return value may be zero meaning this definition is too screwy to
8761 PARM for a parameter declaration (either within a function prototype
8762 or before a function body). Make a PARM_DECL, or return void_type_node.
8763 TPARM for a template parameter declaration.
8764 CATCHPARM for a parameter declaration before a catch clause.
8765 TYPENAME if for a typename (in a cast or sizeof).
8766 Don't make a DECL node; just return the ..._TYPE node.
8767 FIELD for a struct or union field; make a FIELD_DECL.
8768 BITFIELD for a field with specified width.
8770 INITIALIZED is as for start_decl.
8772 ATTRLIST is a pointer to the list of attributes, which may be NULL
8773 if there are none; *ATTRLIST may be modified if attributes from inside
8774 the declarator should be applied to the declaration.
8776 When this function is called, scoping variables (such as
8777 CURRENT_CLASS_TYPE) should reflect the scope in which the
8778 declaration occurs, not the scope in which the new declaration will
8779 be placed. For example, on:
8783 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
8786 Returns a DECL (if a declarator is present), a TYPE (if there is no
8787 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
8791 grokdeclarator (const cp_declarator
*declarator
,
8792 cp_decl_specifier_seq
*declspecs
,
8793 enum decl_context decl_context
,
8797 tree type
= NULL_TREE
;
8799 int explicit_int128
= 0;
8800 int virtualp
, explicitp
, friendp
, inlinep
, staticp
;
8801 int explicit_int
= 0;
8802 int explicit_char
= 0;
8803 int defaulted_int
= 0;
8805 tree typedef_decl
= NULL_TREE
;
8806 const char *name
= NULL
;
8807 tree typedef_type
= NULL_TREE
;
8808 /* True if this declarator is a function definition. */
8809 bool funcdef_flag
= false;
8810 cp_declarator_kind innermost_code
= cdk_error
;
8813 /* See the code below that used this. */
8814 tree decl_attr
= NULL_TREE
;
8817 /* Keep track of what sort of function is being processed
8818 so that we can warn about default return values, or explicit
8819 return values which do not match prescribed defaults. */
8820 special_function_kind sfk
= sfk_none
;
8822 tree dname
= NULL_TREE
;
8823 tree ctor_return_type
= NULL_TREE
;
8824 enum overload_flags flags
= NO_SPECIAL
;
8825 /* cv-qualifiers that apply to the declarator, for a declaration of
8826 a member function. */
8827 cp_cv_quals memfn_quals
= TYPE_UNQUALIFIED
;
8828 /* virt-specifiers that apply to the declarator, for a declaration of
8829 a member function. */
8830 cp_virt_specifiers virt_specifiers
= VIRT_SPEC_UNSPECIFIED
;
8831 /* ref-qualifier that applies to the declarator, for a declaration of
8832 a member function. */
8833 cp_ref_qualifier rqual
= REF_QUAL_NONE
;
8834 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
8836 tree raises
= NULL_TREE
;
8837 int template_count
= 0;
8838 tree returned_attrs
= NULL_TREE
;
8839 tree parms
= NULL_TREE
;
8840 const cp_declarator
*id_declarator
;
8841 /* The unqualified name of the declarator; either an
8842 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
8843 tree unqualified_id
;
8844 /* The class type, if any, in which this entity is located,
8845 or NULL_TREE if none. Note that this value may be different from
8846 the current class type; for example if an attempt is made to declare
8847 "A::f" inside "B", this value will be "A". */
8848 tree ctype
= current_class_type
;
8849 /* The NAMESPACE_DECL for the namespace in which this entity is
8850 located. If an unqualified name is used to declare the entity,
8851 this value will be NULL_TREE, even if the entity is located at
8853 tree in_namespace
= NULL_TREE
;
8854 cp_storage_class storage_class
;
8855 bool unsigned_p
, signed_p
, short_p
, long_p
, thread_p
;
8856 bool type_was_error_mark_node
= false;
8857 bool parameter_pack_p
= declarator
? declarator
->parameter_pack_p
: false;
8858 bool template_type_arg
= false;
8859 bool template_parm_flag
= false;
8860 bool typedef_p
= decl_spec_seq_has_spec_p (declspecs
, ds_typedef
);
8861 bool constexpr_p
= decl_spec_seq_has_spec_p (declspecs
, ds_constexpr
);
8862 bool late_return_type_p
= false;
8863 bool array_parameter_p
= false;
8864 source_location saved_loc
= input_location
;
8867 signed_p
= decl_spec_seq_has_spec_p (declspecs
, ds_signed
);
8868 unsigned_p
= decl_spec_seq_has_spec_p (declspecs
, ds_unsigned
);
8869 short_p
= decl_spec_seq_has_spec_p (declspecs
, ds_short
);
8870 long_p
= decl_spec_seq_has_spec_p (declspecs
, ds_long
);
8871 longlong
= decl_spec_seq_has_spec_p (declspecs
, ds_long_long
);
8872 explicit_int128
= declspecs
->explicit_int128_p
;
8873 thread_p
= decl_spec_seq_has_spec_p (declspecs
, ds_thread
);
8875 if (decl_context
== FUNCDEF
)
8876 funcdef_flag
= true, decl_context
= NORMAL
;
8877 else if (decl_context
== MEMFUNCDEF
)
8878 funcdef_flag
= true, decl_context
= FIELD
;
8879 else if (decl_context
== BITFIELD
)
8880 bitfield
= 1, decl_context
= FIELD
;
8881 else if (decl_context
== TEMPLATE_TYPE_ARG
)
8882 template_type_arg
= true, decl_context
= TYPENAME
;
8883 else if (decl_context
== TPARM
)
8884 template_parm_flag
= true, decl_context
= PARM
;
8886 if (initialized
> 1)
8887 funcdef_flag
= true;
8889 /* Look inside a declarator for the name being declared
8890 and get it as a string, for an error message. */
8891 for (id_declarator
= declarator
;
8893 id_declarator
= id_declarator
->declarator
)
8895 if (id_declarator
->kind
!= cdk_id
)
8896 innermost_code
= id_declarator
->kind
;
8898 switch (id_declarator
->kind
)
8901 if (id_declarator
->declarator
8902 && id_declarator
->declarator
->kind
== cdk_id
)
8904 sfk
= id_declarator
->declarator
->u
.id
.sfk
;
8905 if (sfk
== sfk_destructor
)
8912 tree qualifying_scope
= id_declarator
->u
.id
.qualifying_scope
;
8913 tree decl
= id_declarator
->u
.id
.unqualified_name
;
8916 if (qualifying_scope
)
8918 if (at_function_scope_p ())
8922 A declarator-id shall not be qualified except
8925 None of the cases are permitted in block
8927 if (qualifying_scope
== global_namespace
)
8928 error ("invalid use of qualified-name %<::%D%>",
8930 else if (TYPE_P (qualifying_scope
))
8931 error ("invalid use of qualified-name %<%T::%D%>",
8932 qualifying_scope
, decl
);
8934 error ("invalid use of qualified-name %<%D::%D%>",
8935 qualifying_scope
, decl
);
8936 return error_mark_node
;
8938 else if (TYPE_P (qualifying_scope
))
8940 ctype
= qualifying_scope
;
8941 if (!MAYBE_CLASS_TYPE_P (ctype
))
8943 error ("%q#T is not a class or a namespace", ctype
);
8946 else if (innermost_code
!= cdk_function
8947 && current_class_type
8948 && !uniquely_derived_from_p (ctype
,
8949 current_class_type
))
8951 error ("invalid use of qualified-name %<%T::%D%>",
8952 qualifying_scope
, decl
);
8953 return error_mark_node
;
8956 else if (TREE_CODE (qualifying_scope
) == NAMESPACE_DECL
)
8957 in_namespace
= qualifying_scope
;
8959 switch (TREE_CODE (decl
))
8965 if (innermost_code
!= cdk_function
)
8967 error ("declaration of %qD as non-function", decl
);
8968 return error_mark_node
;
8970 else if (!qualifying_scope
8971 && !(current_class_type
&& at_class_scope_p ()))
8973 error ("declaration of %qD as non-member", decl
);
8974 return error_mark_node
;
8977 type
= TREE_OPERAND (decl
, 0);
8979 type
= constructor_name (type
);
8980 name
= identifier_to_locale (IDENTIFIER_POINTER (type
));
8985 case TEMPLATE_ID_EXPR
:
8987 tree fns
= TREE_OPERAND (decl
, 0);
8990 if (!identifier_p (dname
))
8992 if (variable_template_p (dname
))
8993 dname
= DECL_NAME (dname
);
8996 gcc_assert (is_overloaded_fn (dname
));
8997 dname
= DECL_NAME (get_first_fn (dname
));
9003 case IDENTIFIER_NODE
:
9004 if (identifier_p (decl
))
9007 if (C_IS_RESERVED_WORD (dname
))
9009 error ("declarator-id missing; using reserved word %qD",
9011 name
= identifier_to_locale (IDENTIFIER_POINTER (dname
));
9013 else if (!IDENTIFIER_TYPENAME_P (dname
))
9014 name
= identifier_to_locale (IDENTIFIER_POINTER (dname
));
9017 gcc_assert (flags
== NO_SPECIAL
);
9018 flags
= TYPENAME_FLAG
;
9019 ctor_return_type
= TREE_TYPE (dname
);
9020 sfk
= sfk_conversion
;
9021 if (is_typename_at_global_scope (dname
))
9022 name
= identifier_to_locale (IDENTIFIER_POINTER (dname
));
9024 name
= "<invalid operator>";
9041 return error_mark_node
;
9046 if (id_declarator
->kind
== cdk_id
)
9052 The declarator in a function-definition shall have the form
9053 D1 ( parameter-declaration-clause) ... */
9054 if (funcdef_flag
&& innermost_code
!= cdk_function
)
9056 error ("function definition does not declare parameters");
9057 return error_mark_node
;
9060 if (flags
== TYPENAME_FLAG
9061 && innermost_code
!= cdk_function
9062 && ! (ctype
&& !declspecs
->any_specifiers_p
))
9064 error ("declaration of %qD as non-function", dname
);
9065 return error_mark_node
;
9069 && identifier_p (dname
)
9070 && UDLIT_OPER_P (dname
)
9071 && innermost_code
!= cdk_function
)
9073 error ("declaration of %qD as non-function", dname
);
9074 return error_mark_node
;
9077 if (dname
&& IDENTIFIER_OPNAME_P (dname
))
9081 error ("declaration of %qD as %<typedef%>", dname
);
9082 return error_mark_node
;
9084 else if (decl_context
== PARM
|| decl_context
== CATCHPARM
)
9086 error ("declaration of %qD as parameter", dname
);
9087 return error_mark_node
;
9091 /* Anything declared one level down from the top level
9092 must be one of the parameters of a function
9093 (because the body is at least two levels down). */
9095 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
9096 by not allowing C++ class definitions to specify their parameters
9097 with xdecls (must be spec.d in the parmlist).
9099 Since we now wait to push a class scope until we are sure that
9100 we are in a legitimate method context, we must set oldcname
9101 explicitly (since current_class_name is not yet alive).
9103 We also want to avoid calling this a PARM if it is in a namespace. */
9105 if (decl_context
== NORMAL
&& !toplevel_bindings_p ())
9107 cp_binding_level
*b
= current_binding_level
;
9108 current_binding_level
= b
->level_chain
;
9109 if (current_binding_level
!= 0 && toplevel_bindings_p ())
9110 decl_context
= PARM
;
9111 current_binding_level
= b
;
9115 name
= decl_context
== PARM
? "parameter" : "type name";
9117 if (constexpr_p
&& typedef_p
)
9119 error ("%<constexpr%> cannot appear in a typedef declaration");
9120 return error_mark_node
;
9123 /* If there were multiple types specified in the decl-specifier-seq,
9124 issue an error message. */
9125 if (declspecs
->multiple_types_p
)
9127 error ("two or more data types in declaration of %qs", name
);
9128 return error_mark_node
;
9131 if (declspecs
->conflicting_specifiers_p
)
9133 error ("conflicting specifiers in declaration of %qs", name
);
9134 return error_mark_node
;
9137 /* Extract the basic type from the decl-specifier-seq. */
9138 type
= declspecs
->type
;
9139 if (type
== error_mark_node
)
9142 type_was_error_mark_node
= true;
9144 /* If the entire declaration is itself tagged as deprecated then
9145 suppress reports of deprecated items. */
9146 if (type
&& TREE_DEPRECATED (type
)
9147 && deprecated_state
!= DEPRECATED_SUPPRESS
)
9148 warn_deprecated_use (type
, NULL_TREE
);
9149 if (type
&& TREE_CODE (type
) == TYPE_DECL
)
9151 typedef_decl
= type
;
9152 type
= TREE_TYPE (typedef_decl
);
9153 if (TREE_DEPRECATED (type
)
9154 && DECL_ARTIFICIAL (typedef_decl
)
9155 && deprecated_state
!= DEPRECATED_SUPPRESS
)
9156 warn_deprecated_use (type
, NULL_TREE
);
9158 /* No type at all: default to `int', and set DEFAULTED_INT
9159 because it was not a user-defined typedef. */
9160 if (type
== NULL_TREE
&& (signed_p
|| unsigned_p
|| long_p
|| short_p
))
9162 /* These imply 'int'. */
9163 type
= integer_type_node
;
9167 explicit_int
= declspecs
->explicit_int_p
;
9168 explicit_char
= declspecs
->explicit_char_p
;
9171 /* See the code below that used this. */
9173 decl_attr
= DECL_ATTRIBUTES (typedef_decl
);
9175 typedef_type
= type
;
9178 if (sfk
!= sfk_conversion
)
9179 ctor_return_type
= ctype
;
9181 if (sfk
!= sfk_none
)
9182 type
= check_special_function_return_type (sfk
, type
,
9184 else if (type
== NULL_TREE
)
9190 /* We handle `main' specially here, because 'main () { }' is so
9191 common. With no options, it is allowed. With -Wreturn-type,
9192 it is a warning. It is only an error with -pedantic-errors. */
9193 is_main
= (funcdef_flag
9194 && dname
&& identifier_p (dname
)
9195 && MAIN_NAME_P (dname
)
9196 && ctype
== NULL_TREE
9197 && in_namespace
== NULL_TREE
9198 && current_namespace
== global_namespace
);
9200 if (type_was_error_mark_node
)
9201 /* We've already issued an error, don't complain more. */;
9202 else if (in_system_header_at (input_location
) || flag_ms_extensions
)
9203 /* Allow it, sigh. */;
9205 permerror (input_location
, "ISO C++ forbids declaration of %qs with no type", name
);
9207 pedwarn (input_location
, OPT_Wpedantic
,
9208 "ISO C++ forbids declaration of %qs with no type", name
);
9210 warning (OPT_Wreturn_type
,
9211 "ISO C++ forbids declaration of %qs with no type", name
);
9213 type
= integer_type_node
;
9218 if (explicit_int128
)
9220 if (int128_integer_type_node
== NULL_TREE
)
9222 error ("%<__int128%> is not supported by this target");
9223 explicit_int128
= false;
9225 else if (pedantic
&& ! in_system_header_at (input_location
))
9226 pedwarn (input_location
, OPT_Wpedantic
,
9227 "ISO C++ does not support %<__int128%> for %qs", name
);
9230 /* Now process the modifiers that were specified
9231 and check for invalid combinations. */
9233 /* Long double is a special combination. */
9234 if (long_p
&& !longlong
&& TYPE_MAIN_VARIANT (type
) == double_type_node
)
9237 type
= cp_build_qualified_type (long_double_type_node
,
9238 cp_type_quals (type
));
9241 /* Check all other uses of type modifiers. */
9243 if (unsigned_p
|| signed_p
|| long_p
|| short_p
)
9247 if ((signed_p
|| unsigned_p
) && TREE_CODE (type
) != INTEGER_TYPE
)
9248 error ("%<signed%> or %<unsigned%> invalid for %qs", name
);
9249 else if (signed_p
&& unsigned_p
)
9250 error ("%<signed%> and %<unsigned%> specified together for %qs", name
);
9251 else if (longlong
&& TREE_CODE (type
) != INTEGER_TYPE
)
9252 error ("%<long long%> invalid for %qs", name
);
9253 else if (long_p
&& TREE_CODE (type
) == REAL_TYPE
)
9254 error ("%<long%> invalid for %qs", name
);
9255 else if (short_p
&& TREE_CODE (type
) == REAL_TYPE
)
9256 error ("%<short%> invalid for %qs", name
);
9257 else if ((long_p
|| short_p
) && TREE_CODE (type
) != INTEGER_TYPE
)
9258 error ("%<long%> or %<short%> invalid for %qs", name
);
9259 else if ((long_p
|| short_p
|| explicit_char
|| explicit_int
) && explicit_int128
)
9260 error ("%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs", name
);
9261 else if ((long_p
|| short_p
) && explicit_char
)
9262 error ("%<long%> or %<short%> specified with char for %qs", name
);
9263 else if (long_p
&& short_p
)
9264 error ("%<long%> and %<short%> specified together for %qs", name
);
9265 else if (type
== char16_type_node
|| type
== char32_type_node
)
9267 if (signed_p
|| unsigned_p
)
9268 error ("%<signed%> or %<unsigned%> invalid for %qs", name
);
9269 else if (short_p
|| long_p
)
9270 error ("%<short%> or %<long%> invalid for %qs", name
);
9275 if (!explicit_int
&& !defaulted_int
&& !explicit_char
&& !explicit_int128
&& pedantic
)
9277 pedwarn (input_location
, OPT_Wpedantic
,
9278 "long, short, signed or unsigned used invalidly for %qs",
9280 if (flag_pedantic_errors
)
9285 /* Discard the type modifiers if they are invalid. */
9296 /* Decide whether an integer type is signed or not.
9297 Optionally treat bitfields as signed by default. */
9301 It is implementation-defined whether a plain (neither
9302 explicitly signed or unsigned) char, short, int, or long
9303 bit-field is signed or unsigned.
9305 Naturally, we extend this to long long as well. Note that
9306 this does not include wchar_t. */
9307 || (bitfield
&& !flag_signed_bitfields
9309 /* A typedef for plain `int' without `signed' can be
9310 controlled just like plain `int', but a typedef for
9311 `signed int' cannot be so controlled. */
9313 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl
))
9314 && TREE_CODE (type
) == INTEGER_TYPE
9315 && !same_type_p (TYPE_MAIN_VARIANT (type
), wchar_type_node
)))
9317 if (explicit_int128
)
9318 type
= int128_unsigned_type_node
;
9320 type
= long_long_unsigned_type_node
;
9322 type
= long_unsigned_type_node
;
9324 type
= short_unsigned_type_node
;
9325 else if (type
== char_type_node
)
9326 type
= unsigned_char_type_node
;
9327 else if (typedef_decl
)
9328 type
= unsigned_type_for (type
);
9330 type
= unsigned_type_node
;
9332 else if (signed_p
&& type
== char_type_node
)
9333 type
= signed_char_type_node
;
9334 else if (explicit_int128
)
9335 type
= int128_integer_type_node
;
9337 type
= long_long_integer_type_node
;
9339 type
= long_integer_type_node
;
9341 type
= short_integer_type_node
;
9343 if (decl_spec_seq_has_spec_p (declspecs
, ds_complex
))
9345 if (TREE_CODE (type
) != INTEGER_TYPE
&& TREE_CODE (type
) != REAL_TYPE
)
9346 error ("complex invalid for %qs", name
);
9347 /* If we just have "complex", it is equivalent to
9348 "complex double", but if any modifiers at all are specified it is
9349 the complex form of TYPE. E.g, "complex short" is
9350 "complex short int". */
9351 else if (defaulted_int
&& ! longlong
&& ! explicit_int128
9352 && ! (long_p
|| short_p
|| signed_p
|| unsigned_p
))
9353 type
= complex_double_type_node
;
9354 else if (type
== integer_type_node
)
9355 type
= complex_integer_type_node
;
9356 else if (type
== float_type_node
)
9357 type
= complex_float_type_node
;
9358 else if (type
== double_type_node
)
9359 type
= complex_double_type_node
;
9360 else if (type
== long_double_type_node
)
9361 type
= complex_long_double_type_node
;
9363 type
= build_complex_type (type
);
9366 type_quals
= TYPE_UNQUALIFIED
;
9367 if (decl_spec_seq_has_spec_p (declspecs
, ds_const
))
9368 type_quals
|= TYPE_QUAL_CONST
;
9369 if (decl_spec_seq_has_spec_p (declspecs
, ds_volatile
))
9370 type_quals
|= TYPE_QUAL_VOLATILE
;
9371 if (decl_spec_seq_has_spec_p (declspecs
, ds_restrict
))
9372 type_quals
|= TYPE_QUAL_RESTRICT
;
9373 if (sfk
== sfk_conversion
&& type_quals
!= TYPE_UNQUALIFIED
)
9374 error ("qualifiers are not allowed on declaration of %<operator %T%>",
9377 /* If we're using the injected-class-name to form a compound type or a
9378 declaration, replace it with the underlying class so we don't get
9379 redundant typedefs in the debug output. But if we are returning the
9380 type unchanged, leave it alone so that it's available to
9381 maybe_get_template_decl_from_type_decl. */
9382 if (CLASS_TYPE_P (type
)
9383 && DECL_SELF_REFERENCE_P (TYPE_NAME (type
))
9384 && type
== TREE_TYPE (TYPE_NAME (type
))
9385 && (declarator
|| type_quals
))
9386 type
= DECL_ORIGINAL_TYPE (TYPE_NAME (type
));
9388 type_quals
|= cp_type_quals (type
);
9389 type
= cp_build_qualified_type_real
9390 (type
, type_quals
, ((typedef_decl
&& !DECL_ARTIFICIAL (typedef_decl
)
9391 ? tf_ignore_bad_quals
: 0) | tf_warning_or_error
));
9392 /* We might have ignored or rejected some of the qualifiers. */
9393 type_quals
= cp_type_quals (type
);
9396 inlinep
= decl_spec_seq_has_spec_p (declspecs
, ds_inline
);
9397 virtualp
= decl_spec_seq_has_spec_p (declspecs
, ds_virtual
);
9398 explicitp
= decl_spec_seq_has_spec_p (declspecs
, ds_explicit
);
9400 storage_class
= declspecs
->storage_class
;
9401 if (storage_class
== sc_static
)
9402 staticp
= 1 + (decl_context
== FIELD
);
9404 if (virtualp
&& staticp
== 2)
9406 error ("member %qD cannot be declared both virtual and static", dname
);
9407 storage_class
= sc_none
;
9410 friendp
= decl_spec_seq_has_spec_p (declspecs
, ds_friend
);
9412 /* Issue errors about use of storage classes for parameters. */
9413 if (decl_context
== PARM
)
9417 error ("typedef declaration invalid in parameter declaration");
9418 return error_mark_node
;
9420 else if (template_parm_flag
&& storage_class
!= sc_none
)
9422 error ("storage class specified for template parameter %qs", name
);
9423 return error_mark_node
;
9425 else if (storage_class
== sc_static
9426 || storage_class
== sc_extern
9428 error ("storage class specifiers invalid in parameter declarations");
9430 /* Function parameters cannot be constexpr. If we saw one, moan
9431 and pretend it wasn't there. */
9434 error ("a parameter cannot be declared %<constexpr%>");
9439 /* Give error if `virtual' is used outside of class declaration. */
9441 && (current_class_name
== NULL_TREE
|| decl_context
!= FIELD
))
9443 error ("%<virtual%> outside class declaration");
9447 /* Static anonymous unions are dealt with here. */
9448 if (staticp
&& decl_context
== TYPENAME
9450 && ANON_AGGR_TYPE_P (declspecs
->type
))
9451 decl_context
= FIELD
;
9453 /* Warn about storage classes that are invalid for certain
9454 kinds of declarations (parameters, typenames, etc.). */
9457 && storage_class
!= sc_extern
9458 && storage_class
!= sc_static
)
9461 error ("multiple storage classes in declaration of %qs", name
);
9464 if (decl_context
!= NORMAL
9465 && ((storage_class
!= sc_none
9466 && storage_class
!= sc_mutable
)
9469 if ((decl_context
== PARM
|| decl_context
== CATCHPARM
)
9470 && (storage_class
== sc_register
9471 || storage_class
== sc_auto
))
9475 else if (decl_context
== FIELD
9476 /* C++ allows static class elements. */
9477 && storage_class
== sc_static
)
9478 /* C++ also allows inlines and signed and unsigned elements,
9479 but in those cases we don't come in here. */
9483 if (decl_context
== FIELD
)
9484 error ("storage class specified for %qs", name
);
9487 if (decl_context
== PARM
|| decl_context
== CATCHPARM
)
9488 error ("storage class specified for parameter %qs", name
);
9490 error ("storage class specified for typename");
9492 if (storage_class
== sc_register
9493 || storage_class
== sc_auto
9494 || storage_class
== sc_extern
9496 storage_class
= sc_none
;
9499 else if (storage_class
== sc_extern
&& funcdef_flag
9500 && ! toplevel_bindings_p ())
9501 error ("nested function %qs declared %<extern%>", name
);
9502 else if (toplevel_bindings_p ())
9504 if (storage_class
== sc_auto
)
9505 error ("top-level declaration of %qs specifies %<auto%>", name
);
9508 && storage_class
!= sc_extern
9509 && storage_class
!= sc_static
)
9511 if (declspecs
->gnu_thread_keyword_p
)
9512 pedwarn (input_location
, 0, "function-scope %qs implicitly auto and "
9513 "declared %<__thread%>", name
);
9515 /* When thread_local is applied to a variable of block scope the
9516 storage-class-specifier static is implied if it does not appear
9518 storage_class
= declspecs
->storage_class
= sc_static
;
9522 if (storage_class
&& friendp
)
9524 error ("storage class specifiers invalid in friend function declarations");
9525 storage_class
= sc_none
;
9530 unqualified_id
= NULL_TREE
;
9533 unqualified_id
= id_declarator
->u
.id
.unqualified_name
;
9534 switch (TREE_CODE (unqualified_id
))
9537 unqualified_id
= TREE_OPERAND (unqualified_id
, 0);
9538 if (TYPE_P (unqualified_id
))
9539 unqualified_id
= constructor_name (unqualified_id
);
9542 case IDENTIFIER_NODE
:
9543 case TEMPLATE_ID_EXPR
:
9551 if (declspecs
->std_attributes
)
9553 /* Apply the c++11 attributes to the type preceding them. */
9554 input_location
= declspecs
->locations
[ds_std_attribute
];
9555 decl_attributes (&type
, declspecs
->std_attributes
, 0);
9556 input_location
= saved_loc
;
9559 /* Determine the type of the entity declared by recurring on the
9561 for (; declarator
; declarator
= declarator
->declarator
)
9563 const cp_declarator
*inner_declarator
;
9566 if (type
== error_mark_node
)
9567 return error_mark_node
;
9569 attrs
= declarator
->attributes
;
9575 if (declarator
== NULL
|| declarator
->kind
== cdk_id
)
9576 attr_flags
|= (int) ATTR_FLAG_DECL_NEXT
;
9577 if (declarator
->kind
== cdk_function
)
9578 attr_flags
|= (int) ATTR_FLAG_FUNCTION_NEXT
;
9579 if (declarator
->kind
== cdk_array
)
9580 attr_flags
|= (int) ATTR_FLAG_ARRAY_NEXT
;
9581 returned_attrs
= decl_attributes (&type
,
9582 chainon (returned_attrs
, attrs
),
9586 if (declarator
->kind
== cdk_id
)
9589 inner_declarator
= declarator
->declarator
;
9591 switch (declarator
->kind
)
9594 type
= create_array_type_for_decl (dname
, type
,
9595 declarator
->u
.array
.bounds
);
9596 if (declarator
->std_attributes
)
9599 The optional attribute-specifier-seq appertains to the
9601 returned_attrs
= chainon (returned_attrs
,
9602 declarator
->std_attributes
);
9610 /* Declaring a function type.
9611 Make sure we have a valid type for the function to return. */
9613 if (type_quals
!= TYPE_UNQUALIFIED
)
9615 if (SCALAR_TYPE_P (type
) || VOID_TYPE_P (type
))
9616 warning (OPT_Wignored_qualifiers
,
9617 "type qualifiers ignored on function return type");
9618 /* We now know that the TYPE_QUALS don't apply to the
9619 decl, but to its return type. */
9620 type_quals
= TYPE_UNQUALIFIED
;
9622 errmsg
= targetm
.invalid_return_type (type
);
9626 type
= integer_type_node
;
9629 /* Error about some types functions can't return. */
9631 if (TREE_CODE (type
) == FUNCTION_TYPE
)
9633 error ("%qs declared as function returning a function", name
);
9634 return error_mark_node
;
9636 if (TREE_CODE (type
) == ARRAY_TYPE
)
9638 error ("%qs declared as function returning an array", name
);
9639 return error_mark_node
;
9642 input_location
= declspecs
->locations
[ds_type_spec
];
9643 abstract_virtuals_error (ACU_RETURN
, type
);
9644 input_location
= saved_loc
;
9646 /* Pick up type qualifiers which should be applied to `this'. */
9647 memfn_quals
= declarator
->u
.function
.qualifiers
;
9648 /* Pick up virt-specifiers. */
9649 virt_specifiers
= declarator
->u
.function
.virt_specifiers
;
9650 /* And ref-qualifier, too */
9651 rqual
= declarator
->u
.function
.ref_qualifier
;
9652 /* Pick up the exception specifications. */
9653 raises
= declarator
->u
.function
.exception_specification
;
9654 /* If the exception-specification is ill-formed, let's pretend
9655 there wasn't one. */
9656 if (raises
== error_mark_node
)
9659 /* Say it's a definition only for the CALL_EXPR
9660 closest to the identifier. */
9661 funcdecl_p
= inner_declarator
&& inner_declarator
->kind
== cdk_id
;
9663 /* Handle a late-specified return type. */
9666 if (type_uses_auto (type
))
9668 if (!declarator
->u
.function
.late_return_type
)
9670 if (current_class_type
9671 && LAMBDA_TYPE_P (current_class_type
))
9672 /* OK for C++11 lambdas. */;
9673 else if (cxx_dialect
< cxx14
)
9675 error ("%qs function uses "
9676 "%<auto%> type specifier without trailing "
9677 "return type", name
);
9678 inform (input_location
, "deduced return type "
9679 "only available with -std=c++14 or "
9684 error ("virtual function cannot "
9685 "have deduced return type");
9689 else if (!is_auto (type
))
9691 error ("%qs function with trailing return type has"
9692 " %qT as its type rather than plain %<auto%>",
9694 return error_mark_node
;
9697 else if (declarator
->u
.function
.late_return_type
)
9699 if (cxx_dialect
< cxx11
)
9700 /* Not using maybe_warn_cpp0x because this should
9701 always be an error. */
9702 error ("trailing return type only available with "
9703 "-std=c++11 or -std=gnu++11");
9705 error ("%qs function with trailing return type not "
9706 "declared with %<auto%> type specifier", name
);
9707 return error_mark_node
;
9710 type
= splice_late_return_type
9711 (type
, declarator
->u
.function
.late_return_type
);
9712 if (type
== error_mark_node
)
9713 return error_mark_node
;
9715 if (declarator
->u
.function
.late_return_type
)
9716 late_return_type_p
= true;
9718 if (ctype
== NULL_TREE
9719 && decl_context
== FIELD
9722 ctype
= current_class_type
;
9724 if (ctype
&& (sfk
== sfk_constructor
9725 || sfk
== sfk_destructor
))
9727 /* We are within a class's scope. If our declarator name
9728 is the same as the class name, and we are defining
9729 a function, then it is a constructor/destructor, and
9730 therefore returns a void type. */
9732 /* ISO C++ 12.4/2. A destructor may not be declared
9733 const or volatile. A destructor may not be static.
9734 A destructor may not be declared with ref-qualifier.
9736 ISO C++ 12.1. A constructor may not be declared
9737 const or volatile. A constructor may not be
9738 virtual. A constructor may not be static.
9739 A constructor may not be declared with ref-qualifier. */
9741 error ((flags
== DTOR_FLAG
)
9742 ? G_("destructor cannot be static member function")
9743 : G_("constructor cannot be static member function"));
9746 error ((flags
== DTOR_FLAG
)
9747 ? G_("destructors may not be cv-qualified")
9748 : G_("constructors may not be cv-qualified"));
9749 memfn_quals
= TYPE_UNQUALIFIED
;
9754 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER
);
9755 error ((flags
== DTOR_FLAG
)
9756 ? "destructors may not be ref-qualified"
9757 : "constructors may not be ref-qualified");
9758 rqual
= REF_QUAL_NONE
;
9761 if (decl_context
== FIELD
9762 && !member_function_or_else (ctype
,
9765 return error_mark_node
;
9767 if (flags
!= DTOR_FLAG
)
9769 /* It's a constructor. */
9774 permerror (input_location
, "constructors cannot be declared virtual");
9777 if (decl_context
== FIELD
9778 && sfk
!= sfk_constructor
)
9779 return error_mark_node
;
9781 if (decl_context
== FIELD
)
9788 /* Cannot be both friend and virtual. */
9789 error ("virtual functions cannot be friends");
9792 if (decl_context
== NORMAL
)
9793 error ("friend declaration not in class definition");
9794 if (current_function_decl
&& funcdef_flag
)
9795 error ("can%'t define friend function %qs in a local "
9799 else if (ctype
&& sfk
== sfk_conversion
)
9803 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION
);
9808 arg_types
= grokparms (declarator
->u
.function
.parameters
,
9811 if (inner_declarator
9812 && inner_declarator
->kind
== cdk_id
9813 && inner_declarator
->u
.id
.sfk
== sfk_destructor
9814 && arg_types
!= void_list_node
)
9816 error ("destructors may not have parameters");
9817 arg_types
= void_list_node
;
9821 type
= build_function_type (type
, arg_types
);
9822 if (declarator
->std_attributes
)
9825 The optional attribute-specifier-seq appertains to
9826 the function type. */
9827 decl_attributes (&type
, declarator
->std_attributes
,
9835 /* Filter out pointers-to-references and references-to-references.
9836 We can get these if a TYPE_DECL is used. */
9838 if (TREE_CODE (type
) == REFERENCE_TYPE
)
9840 if (declarator
->kind
!= cdk_reference
)
9842 error ("cannot declare pointer to %q#T", type
);
9843 type
= TREE_TYPE (type
);
9846 /* In C++0x, we allow reference to reference declarations
9847 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
9848 and template type arguments [14.3.1/4 temp.arg.type]. The
9849 check for direct reference to reference declarations, which
9850 are still forbidden, occurs below. Reasoning behind the change
9851 can be found in DR106, DR540, and the rvalue reference
9853 else if (cxx_dialect
== cxx98
)
9855 error ("cannot declare reference to %q#T", type
);
9856 type
= TREE_TYPE (type
);
9859 else if (VOID_TYPE_P (type
))
9861 if (declarator
->kind
== cdk_reference
)
9862 error ("cannot declare reference to %q#T", type
);
9863 else if (declarator
->kind
== cdk_ptrmem
)
9864 error ("cannot declare pointer to %q#T member", type
);
9867 /* We now know that the TYPE_QUALS don't apply to the decl,
9868 but to the target of the pointer. */
9869 type_quals
= TYPE_UNQUALIFIED
;
9871 /* This code used to handle METHOD_TYPE, but I don't think it's
9872 possible to get it here anymore. */
9873 gcc_assert (TREE_CODE (type
) != METHOD_TYPE
);
9874 if (declarator
->kind
== cdk_ptrmem
9875 && TREE_CODE (type
) == FUNCTION_TYPE
)
9877 memfn_quals
|= type_memfn_quals (type
);
9878 type
= build_memfn_type (type
,
9879 declarator
->u
.pointer
.class_type
,
9882 if (type
== error_mark_node
)
9883 return error_mark_node
;
9885 rqual
= REF_QUAL_NONE
;
9886 memfn_quals
= TYPE_UNQUALIFIED
;
9889 if (TREE_CODE (type
) == FUNCTION_TYPE
9890 && (type_memfn_quals (type
) != TYPE_UNQUALIFIED
9891 || type_memfn_rqual (type
) != REF_QUAL_NONE
))
9892 error (declarator
->kind
== cdk_reference
9893 ? G_("cannot declare reference to qualified function type %qT")
9894 : G_("cannot declare pointer to qualified function type %qT"),
9897 if (cxx_dialect
>= cxx14
&& array_of_runtime_bound_p (type
)
9898 && (flag_iso
|| warn_vla
> 0))
9899 pedwarn (input_location
, OPT_Wvla
,
9900 declarator
->kind
== cdk_reference
9901 ? G_("reference to array of runtime bound")
9902 : G_("pointer to array of runtime bound"));
9904 /* When the pointed-to type involves components of variable size,
9905 care must be taken to ensure that the size evaluation code is
9906 emitted early enough to dominate all the possible later uses
9907 and late enough for the variables on which it depends to have
9910 This is expected to happen automatically when the pointed-to
9911 type has a name/declaration of it's own, but special attention
9912 is required if the type is anonymous.
9914 We handle the NORMAL and FIELD contexts here by inserting a
9915 dummy statement that just evaluates the size at a safe point
9916 and ensures it is not deferred until e.g. within a deeper
9917 conditional context (c++/43555).
9919 We expect nothing to be needed here for PARM or TYPENAME.
9920 Evaluating the size at this point for TYPENAME would
9921 actually be incorrect, as we might be in the middle of an
9922 expression with side effects on the pointed-to type size
9923 "arguments" prior to the pointer declaration point and the
9924 size evaluation could end up prior to the side effects. */
9926 if (!TYPE_NAME (type
)
9927 && (decl_context
== NORMAL
|| decl_context
== FIELD
)
9928 && at_function_scope_p ()
9929 && variably_modified_type_p (type
, NULL_TREE
))
9930 /* Force evaluation of the SAVE_EXPR. */
9931 finish_expr_stmt (TYPE_SIZE (type
));
9933 if (declarator
->kind
== cdk_reference
)
9935 /* In C++0x, the type we are creating a reference to might be
9936 a typedef which is itself a reference type. In that case,
9937 we follow the reference collapsing rules in
9938 [7.1.3/8 dcl.typedef] to create the final reference type:
9940 "If a typedef TD names a type that is a reference to a type
9941 T, an attempt to create the type 'lvalue reference to cv TD'
9942 creates the type 'lvalue reference to T,' while an attempt
9943 to create the type "rvalue reference to cv TD' creates the
9946 if (VOID_TYPE_P (type
))
9947 /* We already gave an error. */;
9948 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
9950 if (declarator
->u
.reference
.rvalue_ref
)
9951 /* Leave type alone. */;
9953 type
= cp_build_reference_type (TREE_TYPE (type
), false);
9956 type
= cp_build_reference_type
9957 (type
, declarator
->u
.reference
.rvalue_ref
);
9959 /* In C++0x, we need this check for direct reference to
9960 reference declarations, which are forbidden by
9961 [8.3.2/5 dcl.ref]. Reference to reference declarations
9962 are only allowed indirectly through typedefs and template
9963 type arguments. Example:
9965 void foo(int & &); // invalid ref-to-ref decl
9967 typedef int & int_ref;
9968 void foo(int_ref &); // valid ref-to-ref decl
9970 if (inner_declarator
&& inner_declarator
->kind
== cdk_reference
)
9971 error ("cannot declare reference to %q#T, which is not "
9972 "a typedef or a template type argument", type
);
9974 else if (TREE_CODE (type
) == METHOD_TYPE
)
9975 type
= build_ptrmemfunc_type (build_pointer_type (type
));
9976 else if (declarator
->kind
== cdk_ptrmem
)
9978 gcc_assert (TREE_CODE (declarator
->u
.pointer
.class_type
)
9980 if (declarator
->u
.pointer
.class_type
== error_mark_node
)
9981 /* We will already have complained. */
9982 type
= error_mark_node
;
9984 type
= build_ptrmem_type (declarator
->u
.pointer
.class_type
,
9988 type
= build_pointer_type (type
);
9990 /* Process a list of type modifier keywords (such as
9991 const or volatile) that were given inside the `*' or `&'. */
9993 if (declarator
->u
.pointer
.qualifiers
)
9996 = cp_build_qualified_type (type
,
9997 declarator
->u
.pointer
.qualifiers
);
9998 type_quals
= cp_type_quals (type
);
10001 /* Apply C++11 attributes to the pointer, and not to the
10002 type pointed to. This is unlike what is done for GNU
10003 attributes above. It is to comply with [dcl.ptr]/1:
10005 [the optional attribute-specifier-seq (7.6.1) appertains
10006 to the pointer and not to the object pointed to]. */
10007 if (declarator
->std_attributes
)
10008 decl_attributes (&type
, declarator
->std_attributes
,
10018 gcc_unreachable ();
10022 /* A `constexpr' specifier used in an object declaration declares
10023 the object as `const'. */
10024 if (constexpr_p
&& innermost_code
!= cdk_function
)
10026 if (type_quals
& TYPE_QUAL_VOLATILE
)
10027 error ("both %<volatile%> and %<constexpr%> cannot be used here");
10028 if (TREE_CODE (type
) != REFERENCE_TYPE
)
10030 type_quals
|= TYPE_QUAL_CONST
;
10031 type
= cp_build_qualified_type (type
, type_quals
);
10035 if (unqualified_id
&& TREE_CODE (unqualified_id
) == TEMPLATE_ID_EXPR
10036 && TREE_CODE (type
) != FUNCTION_TYPE
10037 && TREE_CODE (type
) != METHOD_TYPE
10038 && !variable_template_p (TREE_OPERAND (unqualified_id
, 0)))
10040 error ("template-id %qD used as a declarator",
10042 unqualified_id
= dname
;
10045 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
10046 qualified with a class-name, turn it into a METHOD_TYPE, unless
10047 we know that the function is static. We take advantage of this
10048 opportunity to do other processing that pertains to entities
10049 explicitly declared to be class members. Note that if DECLARATOR
10050 is non-NULL, we know it is a cdk_id declarator; otherwise, we
10051 would not have exited the loop above. */
10053 && declarator
->u
.id
.qualifying_scope
10054 && MAYBE_CLASS_TYPE_P (declarator
->u
.id
.qualifying_scope
))
10056 ctype
= declarator
->u
.id
.qualifying_scope
;
10057 ctype
= TYPE_MAIN_VARIANT (ctype
);
10058 template_count
= num_template_headers_for_class (ctype
);
10060 if (ctype
== current_class_type
)
10064 permerror (input_location
, "member functions are implicitly friends of their class");
10068 permerror (declarator
->id_loc
,
10069 "extra qualification %<%T::%> on member %qs",
10072 else if (/* If the qualifying type is already complete, then we
10073 can skip the following checks. */
10074 !COMPLETE_TYPE_P (ctype
)
10075 && (/* If the function is being defined, then
10076 qualifying type must certainly be complete. */
10078 /* A friend declaration of "T::f" is OK, even if
10079 "T" is a template parameter. But, if this
10080 function is not a friend, the qualifying type
10081 must be a class. */
10082 || (!friendp
&& !CLASS_TYPE_P (ctype
))
10083 /* For a declaration, the type need not be
10084 complete, if either it is dependent (since there
10085 is no meaningful definition of complete in that
10086 case) or the qualifying class is currently being
10088 || !(dependent_type_p (ctype
)
10089 || currently_open_class (ctype
)))
10090 /* Check that the qualifying type is complete. */
10091 && !complete_type_or_else (ctype
, NULL_TREE
))
10092 return error_mark_node
;
10093 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
10095 if (current_class_type
10096 && (!friendp
|| funcdef_flag
))
10098 error (funcdef_flag
10099 ? G_("cannot define member function %<%T::%s%> "
10101 : G_("cannot declare member function %<%T::%s%> "
10103 ctype
, name
, current_class_type
);
10104 return error_mark_node
;
10107 else if (typedef_p
&& current_class_type
)
10109 error ("cannot declare member %<%T::%s%> within %qT",
10110 ctype
, name
, current_class_type
);
10111 return error_mark_node
;
10115 if (ctype
== NULL_TREE
&& decl_context
== FIELD
&& friendp
== 0)
10116 ctype
= current_class_type
;
10118 /* Now TYPE has the actual type. */
10120 if (returned_attrs
)
10123 *attrlist
= chainon (returned_attrs
, *attrlist
);
10125 attrlist
= &returned_attrs
;
10129 && declarator
->kind
== cdk_id
10130 && declarator
->std_attributes
)
10131 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
10132 a declarator-id appertains to the entity that is declared. */
10133 *attrlist
= chainon (*attrlist
, declarator
->std_attributes
);
10135 /* Handle parameter packs. */
10136 if (parameter_pack_p
)
10138 if (decl_context
== PARM
)
10139 /* Turn the type into a pack expansion.*/
10140 type
= make_pack_expansion (type
);
10142 error ("non-parameter %qs cannot be a parameter pack", name
);
10145 /* Did array size calculations overflow or does the array cover more
10146 than half of the address-space? */
10147 if (TREE_CODE (type
) == ARRAY_TYPE
10148 && COMPLETE_TYPE_P (type
)
10149 && TREE_CODE (TYPE_SIZE_UNIT (type
)) == INTEGER_CST
10150 && ! valid_constant_size_p (TYPE_SIZE_UNIT (type
)))
10152 error ("size of array %qs is too large", name
);
10153 /* If we proceed with the array type as it is, we'll eventually
10154 crash in tree_to_[su]hwi(). */
10155 type
= error_mark_node
;
10158 if ((decl_context
== FIELD
|| decl_context
== PARM
)
10159 && !processing_template_decl
10160 && variably_modified_type_p (type
, NULL_TREE
))
10162 if (decl_context
== FIELD
)
10163 error ("data member may not have variably modified type %qT", type
);
10165 error ("parameter may not have variably modified type %qT", type
);
10166 type
= error_mark_node
;
10169 if (explicitp
== 1 || (explicitp
&& friendp
))
10171 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
10172 in the declaration of a constructor or conversion function within
10173 a class definition. */
10174 if (!current_class_type
)
10175 error ("%<explicit%> outside class declaration");
10177 error ("%<explicit%> in friend declaration");
10179 error ("only declarations of constructors and conversion operators "
10180 "can be %<explicit%>");
10184 if (storage_class
== sc_mutable
)
10186 if (decl_context
!= FIELD
|| friendp
)
10188 error ("non-member %qs cannot be declared %<mutable%>", name
);
10189 storage_class
= sc_none
;
10191 else if (decl_context
== TYPENAME
|| typedef_p
)
10193 error ("non-object member %qs cannot be declared %<mutable%>", name
);
10194 storage_class
= sc_none
;
10196 else if (TREE_CODE (type
) == FUNCTION_TYPE
10197 || TREE_CODE (type
) == METHOD_TYPE
)
10199 error ("function %qs cannot be declared %<mutable%>", name
);
10200 storage_class
= sc_none
;
10204 error ("static %qs cannot be declared %<mutable%>", name
);
10205 storage_class
= sc_none
;
10207 else if (type_quals
& TYPE_QUAL_CONST
)
10209 error ("const %qs cannot be declared %<mutable%>", name
);
10210 storage_class
= sc_none
;
10212 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
10214 permerror (input_location
, "reference %qs cannot be declared "
10215 "%<mutable%>", name
);
10216 storage_class
= sc_none
;
10220 /* If this is declaring a typedef name, return a TYPE_DECL. */
10221 if (typedef_p
&& decl_context
!= TYPENAME
)
10225 /* Note that the grammar rejects storage classes
10226 in typenames, fields or parameters. */
10227 if (current_lang_name
== lang_name_java
)
10228 TYPE_FOR_JAVA (type
) = 1;
10230 /* This declaration:
10232 typedef void f(int) const;
10234 declares a function type which is not a member of any
10235 particular class, but which is cv-qualified; for
10236 example "f S::*" declares a pointer to a const-qualified
10237 member function of S. We record the cv-qualification in the
10239 if ((rqual
|| memfn_quals
) && TREE_CODE (type
) == FUNCTION_TYPE
)
10241 type
= apply_memfn_quals (type
, memfn_quals
, rqual
);
10243 /* We have now dealt with these qualifiers. */
10244 memfn_quals
= TYPE_UNQUALIFIED
;
10245 rqual
= REF_QUAL_NONE
;
10248 if (type_uses_auto (type
))
10250 error ("typedef declared %<auto%>");
10251 type
= error_mark_node
;
10254 if (cxx_dialect
>= cxx14
&& array_of_runtime_bound_p (type
)
10255 && (flag_iso
|| warn_vla
> 0))
10256 pedwarn (input_location
, OPT_Wvla
,
10257 "typedef naming array of runtime bound");
10259 if (decl_context
== FIELD
)
10260 decl
= build_lang_decl (TYPE_DECL
, unqualified_id
, type
);
10262 decl
= build_decl (input_location
, TYPE_DECL
, unqualified_id
, type
);
10263 if (id_declarator
&& declarator
->u
.id
.qualifying_scope
) {
10264 error_at (DECL_SOURCE_LOCATION (decl
),
10265 "typedef name may not be a nested-name-specifier");
10266 TREE_TYPE (decl
) = error_mark_node
;
10269 if (decl_context
!= FIELD
)
10271 if (!current_function_decl
)
10272 DECL_CONTEXT (decl
) = FROB_CONTEXT (current_namespace
);
10273 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl
)
10274 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
10275 (current_function_decl
)))
10276 /* The TYPE_DECL is "abstract" because there will be
10277 clones of this constructor/destructor, and there will
10278 be copies of this TYPE_DECL generated in those
10279 clones. The decloning optimization (for space) may
10280 revert this subsequently if it determines that
10281 the clones should share a common implementation. */
10282 DECL_ABSTRACT (decl
) = 1;
10284 else if (current_class_type
10285 && constructor_name_p (unqualified_id
, current_class_type
))
10286 permerror (input_location
, "ISO C++ forbids nested type %qD with same name "
10287 "as enclosing class",
10290 /* If the user declares "typedef struct {...} foo" then the
10291 struct will have an anonymous name. Fill that name in now.
10292 Nothing can refer to it, so nothing needs know about the name
10294 if (type
!= error_mark_node
10296 && TYPE_NAME (type
)
10297 && TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
10298 && TYPE_ANONYMOUS_P (type
)
10299 && declspecs
->type_definition_p
10300 && attributes_naming_typedef_ok (*attrlist
)
10301 && cp_type_quals (type
) == TYPE_UNQUALIFIED
)
10305 /* Replace the anonymous name with the real name everywhere. */
10306 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
10308 if (ANON_AGGRNAME_P (TYPE_IDENTIFIER (t
)))
10309 /* We do not rename the debug info representing the
10310 anonymous tagged type because the standard says in
10311 [dcl.typedef] that the naming applies only for
10312 linkage purposes. */
10313 /*debug_hooks->set_name (t, decl);*/
10314 TYPE_NAME (t
) = decl
;
10317 if (TYPE_LANG_SPECIFIC (type
))
10318 TYPE_WAS_ANONYMOUS (type
) = 1;
10320 /* If this is a typedef within a template class, the nested
10321 type is a (non-primary) template. The name for the
10322 template needs updating as well. */
10323 if (TYPE_LANG_SPECIFIC (type
) && CLASSTYPE_TEMPLATE_INFO (type
))
10324 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type
))
10325 = TYPE_IDENTIFIER (type
);
10327 /* Adjust linkage now that we aren't anonymous anymore. */
10328 reset_type_linkage (type
);
10330 /* FIXME remangle member functions; member functions of a
10331 type with external linkage have external linkage. */
10335 || (typedef_decl
&& C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl
)))
10336 C_TYPEDEF_EXPLICITLY_SIGNED (decl
) = 1;
10338 bad_specifiers (decl
, BSP_TYPE
, virtualp
,
10339 memfn_quals
!= TYPE_UNQUALIFIED
,
10340 inlinep
, friendp
, raises
!= NULL_TREE
);
10342 if (decl_spec_seq_has_spec_p (declspecs
, ds_alias
))
10343 /* Acknowledge that this was written:
10344 `using analias = atype;'. */
10345 TYPE_DECL_ALIAS_P (decl
) = 1;
10350 /* Detect the case of an array type of unspecified size
10351 which came, as such, direct from a typedef name.
10352 We must copy the type, so that the array's domain can be
10353 individually set by the object's initializer. */
10355 if (type
&& typedef_type
10356 && TREE_CODE (type
) == ARRAY_TYPE
&& !TYPE_DOMAIN (type
)
10357 && TYPE_MAIN_VARIANT (type
) == TYPE_MAIN_VARIANT (typedef_type
))
10358 type
= build_cplus_array_type (TREE_TYPE (type
), NULL_TREE
);
10360 /* Detect where we're using a typedef of function type to declare a
10361 function. PARMS will not be set, so we must create it now. */
10363 if (type
== typedef_type
&& TREE_CODE (type
) == FUNCTION_TYPE
)
10365 tree decls
= NULL_TREE
;
10368 for (args
= TYPE_ARG_TYPES (type
);
10369 args
&& args
!= void_list_node
;
10370 args
= TREE_CHAIN (args
))
10372 tree decl
= cp_build_parm_decl (NULL_TREE
, TREE_VALUE (args
));
10374 DECL_CHAIN (decl
) = decls
;
10378 parms
= nreverse (decls
);
10380 if (decl_context
!= TYPENAME
)
10382 /* The qualifiers on the function type become the qualifiers on
10383 the non-static member function. */
10384 memfn_quals
|= type_memfn_quals (type
);
10385 rqual
= type_memfn_rqual (type
);
10386 type_quals
= TYPE_UNQUALIFIED
;
10390 /* If this is a type name (such as, in a cast or sizeof),
10391 compute the type and return it now. */
10393 if (decl_context
== TYPENAME
)
10395 /* Note that the grammar rejects storage classes
10396 in typenames, fields or parameters. */
10397 if (type_quals
!= TYPE_UNQUALIFIED
)
10398 type_quals
= TYPE_UNQUALIFIED
;
10400 /* Special case: "friend class foo" looks like a TYPENAME context. */
10403 if (type_quals
!= TYPE_UNQUALIFIED
)
10405 error ("type qualifiers specified for friend class declaration");
10406 type_quals
= TYPE_UNQUALIFIED
;
10410 error ("%<inline%> specified for friend class declaration");
10416 /* Don't allow friend declaration without a class-key. */
10417 if (TREE_CODE (type
) == TEMPLATE_TYPE_PARM
)
10418 permerror (input_location
, "template parameters cannot be friends");
10419 else if (TREE_CODE (type
) == TYPENAME_TYPE
)
10420 permerror (input_location
, "friend declaration requires class-key, "
10421 "i.e. %<friend class %T::%D%>",
10422 TYPE_CONTEXT (type
), TYPENAME_TYPE_FULLNAME (type
));
10424 permerror (input_location
, "friend declaration requires class-key, "
10425 "i.e. %<friend %#T%>",
10429 /* Only try to do this stuff if we didn't already give up. */
10430 if (type
!= integer_type_node
)
10432 /* A friendly class? */
10433 if (current_class_type
)
10434 make_friend_class (current_class_type
, TYPE_MAIN_VARIANT (type
),
10435 /*complain=*/true);
10437 error ("trying to make class %qT a friend of global scope",
10440 type
= void_type_node
;
10443 else if (memfn_quals
|| rqual
)
10445 if (ctype
== NULL_TREE
10446 && TREE_CODE (type
) == METHOD_TYPE
)
10447 ctype
= TYPE_METHOD_BASETYPE (type
);
10450 type
= build_memfn_type (type
, ctype
, memfn_quals
, rqual
);
10451 /* Core issue #547: need to allow this in template type args.
10452 Allow it in general in C++11 for alias-declarations. */
10453 else if ((template_type_arg
|| cxx_dialect
>= cxx11
)
10454 && TREE_CODE (type
) == FUNCTION_TYPE
)
10455 type
= apply_memfn_quals (type
, memfn_quals
, rqual
);
10457 error ("invalid qualifiers on non-member function type");
10462 else if (unqualified_id
== NULL_TREE
&& decl_context
!= PARM
10463 && decl_context
!= CATCHPARM
10464 && TREE_CODE (type
) != UNION_TYPE
10467 error ("abstract declarator %qT used as declaration", type
);
10468 return error_mark_node
;
10471 /* Only functions may be declared using an operator-function-id. */
10473 && IDENTIFIER_OPNAME_P (unqualified_id
)
10474 && TREE_CODE (type
) != FUNCTION_TYPE
10475 && TREE_CODE (type
) != METHOD_TYPE
)
10477 error ("declaration of %qD as non-function", unqualified_id
);
10478 return error_mark_node
;
10481 /* We don't check parameter types here because we can emit a better
10482 error message later. */
10483 if (decl_context
!= PARM
)
10485 type
= check_var_type (unqualified_id
, type
);
10486 if (type
== error_mark_node
)
10487 return error_mark_node
;
10490 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
10491 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
10493 if (decl_context
== PARM
|| decl_context
== CATCHPARM
)
10495 if (ctype
|| in_namespace
)
10496 error ("cannot use %<::%> in parameter declaration");
10498 if (type_uses_auto (type
))
10500 if (cxx_dialect
>= cxx14
)
10501 error ("%<auto%> parameter not permitted in this context");
10503 error ("parameter declared %<auto%>");
10504 type
= error_mark_node
;
10507 /* A parameter declared as an array of T is really a pointer to T.
10508 One declared as a function is really a pointer to a function.
10509 One declared as a member is really a pointer to member. */
10511 if (TREE_CODE (type
) == ARRAY_TYPE
)
10513 /* Transfer const-ness of array into that of type pointed to. */
10514 type
= build_pointer_type (TREE_TYPE (type
));
10515 type_quals
= TYPE_UNQUALIFIED
;
10516 array_parameter_p
= true;
10518 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
10519 type
= build_pointer_type (type
);
10522 if (ctype
&& TREE_CODE (type
) == FUNCTION_TYPE
&& staticp
< 2
10523 && !NEW_DELETE_OPNAME_P (unqualified_id
))
10525 cp_cv_quals real_quals
= memfn_quals
;
10526 if (constexpr_p
&& sfk
!= sfk_constructor
&& sfk
!= sfk_destructor
)
10527 real_quals
|= TYPE_QUAL_CONST
;
10528 type
= build_memfn_type (type
, ctype
, real_quals
, rqual
);
10534 if (decl_context
== PARM
)
10536 decl
= cp_build_parm_decl (unqualified_id
, type
);
10537 DECL_ARRAY_PARAMETER_P (decl
) = array_parameter_p
;
10539 bad_specifiers (decl
, BSP_PARM
, virtualp
,
10540 memfn_quals
!= TYPE_UNQUALIFIED
,
10541 inlinep
, friendp
, raises
!= NULL_TREE
);
10543 else if (decl_context
== FIELD
)
10545 if (!staticp
&& TREE_CODE (type
) != METHOD_TYPE
10546 && type_uses_auto (type
))
10548 error ("non-static data member declared %<auto%>");
10549 type
= error_mark_node
;
10552 /* The C99 flexible array extension. */
10553 if (!staticp
&& TREE_CODE (type
) == ARRAY_TYPE
10554 && TYPE_DOMAIN (type
) == NULL_TREE
)
10556 tree itype
= compute_array_index_type (dname
, integer_zero_node
,
10557 tf_warning_or_error
);
10558 type
= build_cplus_array_type (TREE_TYPE (type
), itype
);
10561 if (type
== error_mark_node
)
10563 /* Happens when declaring arrays of sizes which
10564 are error_mark_node, for example. */
10567 else if (in_namespace
&& !friendp
)
10569 /* Something like struct S { int N::j; }; */
10570 error ("invalid use of %<::%>");
10571 return error_mark_node
;
10573 else if (TREE_CODE (type
) == FUNCTION_TYPE
10574 || TREE_CODE (type
) == METHOD_TYPE
)
10577 tree function_context
;
10581 /* This should never happen in pure C++ (the check
10582 could be an assert). It could happen in
10583 Objective-C++ if someone writes invalid code that
10584 uses a function declaration for an instance
10585 variable or property (instance variables and
10586 properties are parsed as FIELD_DECLs, but they are
10587 part of an Objective-C class, not a C++ class).
10588 That code is invalid and is caught by this
10592 error ("declaration of function %qD in invalid context",
10594 return error_mark_node
;
10597 /* ``A union may [ ... ] not [ have ] virtual functions.''
10599 if (virtualp
&& TREE_CODE (ctype
) == UNION_TYPE
)
10601 error ("function %qD declared virtual inside a union",
10603 return error_mark_node
;
10606 if (NEW_DELETE_OPNAME_P (unqualified_id
))
10610 error ("%qD cannot be declared virtual, since it "
10611 "is always static",
10618 /* Check that the name used for a destructor makes sense. */
10619 if (sfk
== sfk_destructor
)
10621 tree uqname
= id_declarator
->u
.id
.unqualified_name
;
10625 gcc_assert (friendp
);
10626 error ("expected qualified name in friend declaration "
10627 "for destructor %qD", uqname
);
10628 return error_mark_node
;
10631 if (!check_dtor_name (ctype
, TREE_OPERAND (uqname
, 0)))
10633 error ("declaration of %qD as member of %qT",
10635 return error_mark_node
;
10639 error ("a destructor cannot be %<constexpr%>");
10640 return error_mark_node
;
10643 else if (sfk
== sfk_constructor
&& friendp
&& !ctype
)
10645 error ("expected qualified name in friend declaration "
10646 "for constructor %qD",
10647 id_declarator
->u
.id
.unqualified_name
);
10648 return error_mark_node
;
10651 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
10652 function_context
= (ctype
!= NULL_TREE
) ?
10653 decl_function_context (TYPE_MAIN_DECL (ctype
)) : NULL_TREE
;
10654 publicp
= (! friendp
|| ! staticp
)
10655 && function_context
== NULL_TREE
;
10657 if (late_return_type_p
)
10658 TYPE_HAS_LATE_RETURN_TYPE (type
) = 1;
10660 decl
= grokfndecl (ctype
, type
,
10661 TREE_CODE (unqualified_id
) != TEMPLATE_ID_EXPR
10662 ? unqualified_id
: dname
,
10665 virtualp
, flags
, memfn_quals
, rqual
, raises
,
10666 friendp
? -1 : 0, friendp
, publicp
,
10667 inlinep
| (2 * constexpr_p
),
10669 funcdef_flag
, template_count
, in_namespace
,
10670 attrlist
, declarator
->id_loc
);
10671 decl
= set_virt_specifiers (decl
, virt_specifiers
);
10672 if (decl
== NULL_TREE
)
10673 return error_mark_node
;
10675 /* This clobbers the attrs stored in `decl' from `attrlist'. */
10676 /* The decl and setting of decl_attr is also turned off. */
10677 decl
= build_decl_attribute_variant (decl
, decl_attr
);
10680 /* [class.conv.ctor]
10682 A constructor declared without the function-specifier
10683 explicit that can be called with a single parameter
10684 specifies a conversion from the type of its first
10685 parameter to the type of its class. Such a constructor
10686 is called a converting constructor. */
10687 if (explicitp
== 2)
10688 DECL_NONCONVERTING_P (decl
) = 1;
10690 else if (!staticp
&& !dependent_type_p (type
)
10691 && !COMPLETE_TYPE_P (complete_type (type
))
10692 && (TREE_CODE (type
) != ARRAY_TYPE
10693 || !COMPLETE_TYPE_P (TREE_TYPE (type
))
10694 || initialized
== 0))
10696 if (unqualified_id
)
10698 error ("field %qD has incomplete type %qT",
10699 unqualified_id
, type
);
10700 cxx_incomplete_type_inform (strip_array_types (type
));
10703 error ("name %qT has incomplete type", type
);
10705 type
= error_mark_node
;
10712 error ("%qE is neither function nor member function; "
10713 "cannot be declared friend", unqualified_id
);
10721 /* Friends are treated specially. */
10722 if (ctype
== current_class_type
)
10723 ; /* We already issued a permerror. */
10724 else if (decl
&& DECL_NAME (decl
))
10726 if (template_class_depth (current_class_type
) == 0)
10728 decl
= check_explicit_specialization
10729 (unqualified_id
, decl
, template_count
,
10730 2 * funcdef_flag
+ 4);
10731 if (decl
== error_mark_node
)
10732 return error_mark_node
;
10735 decl
= do_friend (ctype
, unqualified_id
, decl
,
10741 return error_mark_node
;
10744 /* Structure field. It may not be a function, except for C++. */
10746 if (decl
== NULL_TREE
)
10750 /* C++ allows static class members. All other work
10751 for this is done by grokfield. */
10752 decl
= build_lang_decl_loc (declarator
10753 ? declarator
->id_loc
10755 VAR_DECL
, unqualified_id
, type
);
10756 set_linkage_for_static_data_member (decl
);
10757 /* Even if there is an in-class initialization, DECL
10758 is considered undefined until an out-of-class
10759 definition is provided. */
10760 DECL_EXTERNAL (decl
) = 1;
10764 set_decl_tls_model (decl
, decl_default_tls_model (decl
));
10765 if (declspecs
->gnu_thread_keyword_p
)
10766 DECL_GNU_TLS_P (decl
) = true;
10769 if (constexpr_p
&& !initialized
)
10771 error ("constexpr static data member %qD must have an "
10772 "initializer", decl
);
10773 constexpr_p
= false;
10780 error ("non-static data member %qE declared %<constexpr%>",
10782 constexpr_p
= false;
10784 decl
= build_decl (input_location
,
10785 FIELD_DECL
, unqualified_id
, type
);
10786 DECL_NONADDRESSABLE_P (decl
) = bitfield
;
10787 if (bitfield
&& !unqualified_id
)
10788 TREE_NO_WARNING (decl
) = 1;
10790 if (storage_class
== sc_mutable
)
10792 DECL_MUTABLE_P (decl
) = 1;
10793 storage_class
= sc_none
;
10798 /* An attempt is being made to initialize a non-static
10799 member. This is new in C++11. */
10800 maybe_warn_cpp0x (CPP0X_NSDMI
);
10802 /* If this has been parsed with static storage class, but
10803 errors forced staticp to be cleared, ensure NSDMI is
10805 if (declspecs
->storage_class
== sc_static
)
10806 DECL_INITIAL (decl
) = error_mark_node
;
10810 bad_specifiers (decl
, BSP_FIELD
, virtualp
,
10811 memfn_quals
!= TYPE_UNQUALIFIED
,
10812 inlinep
, friendp
, raises
!= NULL_TREE
);
10815 else if (TREE_CODE (type
) == FUNCTION_TYPE
10816 || TREE_CODE (type
) == METHOD_TYPE
)
10818 tree original_name
;
10821 if (!unqualified_id
)
10822 return error_mark_node
;
10824 if (TREE_CODE (unqualified_id
) == TEMPLATE_ID_EXPR
)
10825 original_name
= dname
;
10827 original_name
= unqualified_id
;
10829 if (storage_class
== sc_auto
)
10830 error ("storage class %<auto%> invalid for function %qs", name
);
10831 else if (storage_class
== sc_register
)
10832 error ("storage class %<register%> invalid for function %qs", name
);
10835 if (declspecs
->gnu_thread_keyword_p
)
10836 error ("storage class %<__thread%> invalid for function %qs",
10839 error ("storage class %<thread_local%> invalid for function %qs",
10843 if (virt_specifiers
)
10844 error ("virt-specifiers in %qs not allowed outside a class definition", name
);
10845 /* Function declaration not at top level.
10846 Storage classes other than `extern' are not allowed
10847 and `extern' makes no difference. */
10848 if (! toplevel_bindings_p ()
10849 && (storage_class
== sc_static
10850 || decl_spec_seq_has_spec_p (declspecs
, ds_inline
))
10853 if (storage_class
== sc_static
)
10854 pedwarn (input_location
, OPT_Wpedantic
,
10855 "%<static%> specified invalid for function %qs "
10856 "declared out of global scope", name
);
10858 pedwarn (input_location
, OPT_Wpedantic
,
10859 "%<inline%> specifier invalid for function %qs "
10860 "declared out of global scope", name
);
10863 if (ctype
== NULL_TREE
)
10867 error ("virtual non-class function %qs", name
);
10870 else if (sfk
== sfk_constructor
10871 || sfk
== sfk_destructor
)
10873 error (funcdef_flag
10874 ? G_("%qs defined in a non-class scope")
10875 : G_("%qs declared in a non-class scope"), name
);
10880 /* Record whether the function is public. */
10881 publicp
= (ctype
!= NULL_TREE
10882 || storage_class
!= sc_static
);
10884 if (late_return_type_p
)
10885 TYPE_HAS_LATE_RETURN_TYPE (type
) = 1;
10887 decl
= grokfndecl (ctype
, type
, original_name
, parms
, unqualified_id
,
10888 virtualp
, flags
, memfn_quals
, rqual
, raises
,
10890 publicp
, inlinep
| (2 * constexpr_p
), sfk
,
10892 template_count
, in_namespace
, attrlist
,
10893 declarator
->id_loc
);
10894 if (decl
== NULL_TREE
)
10895 return error_mark_node
;
10899 int invalid_static
= 0;
10901 /* Don't allow a static member function in a class, and forbid
10902 declaring main to be static. */
10903 if (TREE_CODE (type
) == METHOD_TYPE
)
10905 permerror (input_location
, "cannot declare member function %qD to have "
10906 "static linkage", decl
);
10907 invalid_static
= 1;
10909 else if (current_function_decl
)
10911 /* FIXME need arm citation */
10912 error ("cannot declare static function inside another function");
10913 invalid_static
= 1;
10916 if (invalid_static
)
10919 storage_class
= sc_none
;
10925 /* It's a variable. */
10927 /* An uninitialized decl with `extern' is a reference. */
10928 decl
= grokvardecl (type
, dname
, unqualified_id
,
10931 (type_quals
& TYPE_QUAL_CONST
) != 0,
10933 ctype
? ctype
: in_namespace
);
10934 if (decl
== NULL_TREE
)
10935 return error_mark_node
;
10937 bad_specifiers (decl
, BSP_VAR
, virtualp
,
10938 memfn_quals
!= TYPE_UNQUALIFIED
,
10939 inlinep
, friendp
, raises
!= NULL_TREE
);
10943 DECL_CONTEXT (decl
) = ctype
;
10946 permerror (input_location
, "%<static%> may not be used when defining "
10947 "(as opposed to declaring) a static data member");
10949 storage_class
= sc_none
;
10951 if (storage_class
== sc_register
&& TREE_STATIC (decl
))
10953 error ("static member %qD declared %<register%>", decl
);
10954 storage_class
= sc_none
;
10956 if (storage_class
== sc_extern
&& pedantic
)
10958 pedwarn (input_location
, OPT_Wpedantic
,
10959 "cannot explicitly declare member %q#D to have "
10960 "extern linkage", decl
);
10961 storage_class
= sc_none
;
10964 else if (constexpr_p
&& DECL_EXTERNAL (decl
))
10966 error ("declaration of constexpr variable %qD is not a definition",
10968 constexpr_p
= false;
10972 if (storage_class
== sc_extern
&& initialized
&& !funcdef_flag
)
10974 if (toplevel_bindings_p ())
10976 /* It's common practice (and completely valid) to have a const
10977 be initialized and declared extern. */
10978 if (!(type_quals
& TYPE_QUAL_CONST
))
10979 warning (0, "%qs initialized and declared %<extern%>", name
);
10983 error ("%qs has both %<extern%> and initializer", name
);
10984 return error_mark_node
;
10988 /* Record `register' declaration for warnings on &
10989 and in case doing stupid register allocation. */
10991 if (storage_class
== sc_register
)
10992 DECL_REGISTER (decl
) = 1;
10993 else if (storage_class
== sc_extern
)
10994 DECL_THIS_EXTERN (decl
) = 1;
10995 else if (storage_class
== sc_static
)
10996 DECL_THIS_STATIC (decl
) = 1;
10998 /* Set constexpr flag on vars (functions got it in grokfndecl). */
10999 if (constexpr_p
&& VAR_P (decl
))
11000 DECL_DECLARED_CONSTEXPR_P (decl
) = true;
11002 /* Record constancy and volatility on the DECL itself . There's
11003 no need to do this when processing a template; we'll do this
11004 for the instantiated declaration based on the type of DECL. */
11005 if (!processing_template_decl
)
11006 cp_apply_type_quals_to_decl (type_quals
, decl
);
11012 /* Subroutine of start_function. Ensure that each of the parameter
11013 types (as listed in PARMS) is complete, as is required for a
11014 function definition. */
11017 require_complete_types_for_parms (tree parms
)
11019 for (; parms
; parms
= DECL_CHAIN (parms
))
11021 if (dependent_type_p (TREE_TYPE (parms
)))
11023 if (!VOID_TYPE_P (TREE_TYPE (parms
))
11024 && complete_type_or_else (TREE_TYPE (parms
), parms
))
11026 relayout_decl (parms
);
11027 DECL_ARG_TYPE (parms
) = type_passed_as (TREE_TYPE (parms
));
11030 /* grokparms or complete_type_or_else will have already issued
11032 TREE_TYPE (parms
) = error_mark_node
;
11036 /* Returns nonzero if T is a local variable. */
11039 local_variable_p (const_tree t
)
11042 /* A VAR_DECL with a context that is a _TYPE is a static data
11044 && !TYPE_P (CP_DECL_CONTEXT (t
))
11045 /* Any other non-local variable must be at namespace scope. */
11046 && !DECL_NAMESPACE_SCOPE_P (t
))
11047 || (TREE_CODE (t
) == PARM_DECL
))
11053 /* Like local_variable_p, but suitable for use as a tree-walking
11057 local_variable_p_walkfn (tree
*tp
, int *walk_subtrees
,
11060 if (local_variable_p (*tp
)
11061 && (!DECL_ARTIFICIAL (*tp
) || DECL_NAME (*tp
) == this_identifier
))
11063 else if (TYPE_P (*tp
))
11064 *walk_subtrees
= 0;
11069 /* Check that ARG, which is a default-argument expression for a
11070 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
11071 something goes wrong. DECL may also be a _TYPE node, rather than a
11072 DECL, if there is no DECL available. */
11075 check_default_argument (tree decl
, tree arg
, tsubst_flags_t complain
)
11080 if (TREE_CODE (arg
) == DEFAULT_ARG
)
11081 /* We get a DEFAULT_ARG when looking at an in-class declaration
11082 with a default argument. Ignore the argument for now; we'll
11083 deal with it after the class is complete. */
11092 decl_type
= TREE_TYPE (decl
);
11094 if (arg
== error_mark_node
11095 || decl
== error_mark_node
11096 || TREE_TYPE (arg
) == error_mark_node
11097 || decl_type
== error_mark_node
)
11098 /* Something already went wrong. There's no need to check
11100 return error_mark_node
;
11102 /* [dcl.fct.default]
11104 A default argument expression is implicitly converted to the
11106 ++cp_unevaluated_operand
;
11107 perform_implicit_conversion_flags (decl_type
, arg
, complain
,
11109 --cp_unevaluated_operand
;
11111 if (warn_zero_as_null_pointer_constant
11112 && TYPE_PTR_OR_PTRMEM_P (decl_type
)
11113 && null_ptr_cst_p (arg
)
11114 && (complain
& tf_warning
)
11115 && maybe_warn_zero_as_null_pointer_constant (arg
, input_location
))
11116 return nullptr_node
;
11118 /* [dcl.fct.default]
11120 Local variables shall not be used in default argument
11123 The keyword `this' shall not be used in a default argument of a
11124 member function. */
11125 var
= cp_walk_tree_without_duplicates (&arg
, local_variable_p_walkfn
, NULL
);
11128 if (complain
& tf_warning_or_error
)
11130 if (DECL_NAME (var
) == this_identifier
)
11131 permerror (input_location
, "default argument %qE uses %qD",
11134 error ("default argument %qE uses local variable %qD", arg
, var
);
11136 return error_mark_node
;
11143 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
11146 type_is_deprecated (tree type
)
11148 enum tree_code code
;
11149 if (TREE_DEPRECATED (type
))
11151 if (TYPE_NAME (type
)
11152 && TREE_DEPRECATED (TYPE_NAME (type
)))
11155 /* Do warn about using typedefs to a deprecated class. */
11156 if (OVERLOAD_TYPE_P (type
) && type
!= TYPE_MAIN_VARIANT (type
))
11157 return type_is_deprecated (TYPE_MAIN_VARIANT (type
));
11159 code
= TREE_CODE (type
);
11161 if (code
== POINTER_TYPE
|| code
== REFERENCE_TYPE
11162 || code
== OFFSET_TYPE
|| code
== FUNCTION_TYPE
11163 || code
== METHOD_TYPE
|| code
== ARRAY_TYPE
)
11164 return type_is_deprecated (TREE_TYPE (type
));
11166 if (TYPE_PTRMEMFUNC_P (type
))
11167 return type_is_deprecated
11168 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type
))));
11173 /* Decode the list of parameter types for a function type.
11174 Given the list of things declared inside the parens,
11175 return a list of types.
11177 If this parameter does not end with an ellipsis, we append
11180 *PARMS is set to the chain of PARM_DECLs created. */
11183 grokparms (tree parmlist
, tree
*parms
)
11185 tree result
= NULL_TREE
;
11186 tree decls
= NULL_TREE
;
11190 for (parm
= parmlist
; parm
!= NULL_TREE
; parm
= TREE_CHAIN (parm
))
11192 tree type
= NULL_TREE
;
11193 tree init
= TREE_PURPOSE (parm
);
11194 tree decl
= TREE_VALUE (parm
);
11195 const char *errmsg
;
11197 if (parm
== void_list_node
)
11200 if (! decl
|| TREE_TYPE (decl
) == error_mark_node
)
11203 type
= TREE_TYPE (decl
);
11204 if (VOID_TYPE_P (type
))
11206 if (same_type_p (type
, void_type_node
)
11208 && !DECL_NAME (decl
) && !result
11209 && TREE_CHAIN (parm
) == void_list_node
)
11210 /* DR 577: A parameter list consisting of a single
11211 unnamed parameter of non-dependent type 'void'. */
11213 else if (cv_qualified_p (type
))
11214 error_at (DECL_SOURCE_LOCATION (decl
),
11215 "invalid use of cv-qualified type %qT in "
11216 "parameter declaration", type
);
11218 error_at (DECL_SOURCE_LOCATION (decl
),
11219 "invalid use of type %<void%> in parameter "
11221 /* It's not a good idea to actually create parameters of
11222 type `void'; other parts of the compiler assume that a
11223 void type terminates the parameter list. */
11224 type
= error_mark_node
;
11225 TREE_TYPE (decl
) = error_mark_node
;
11228 if (type
!= error_mark_node
11229 && TYPE_FOR_JAVA (type
)
11230 && MAYBE_CLASS_TYPE_P (type
))
11232 error ("parameter %qD has Java class type", decl
);
11233 type
= error_mark_node
;
11234 TREE_TYPE (decl
) = error_mark_node
;
11238 if (type
!= error_mark_node
11239 && (errmsg
= targetm
.invalid_parameter_type (type
)))
11242 type
= error_mark_node
;
11243 TREE_TYPE (decl
) = error_mark_node
;
11246 if (type
!= error_mark_node
)
11248 if (deprecated_state
!= DEPRECATED_SUPPRESS
)
11250 tree deptype
= type_is_deprecated (type
);
11252 warn_deprecated_use (deptype
, NULL_TREE
);
11255 /* Top-level qualifiers on the parameters are
11256 ignored for function types. */
11257 type
= cp_build_qualified_type (type
, 0);
11258 if (TREE_CODE (type
) == METHOD_TYPE
)
11260 error ("parameter %qD invalidly declared method type", decl
);
11261 type
= build_pointer_type (type
);
11262 TREE_TYPE (decl
) = type
;
11264 else if (abstract_virtuals_error (decl
, type
))
11265 any_error
= 1; /* Seems like a good idea. */
11266 else if (POINTER_TYPE_P (type
))
11268 /* [dcl.fct]/6, parameter types cannot contain pointers
11269 (references) to arrays of unknown bound. */
11270 tree t
= TREE_TYPE (type
);
11271 int ptr
= TYPE_PTR_P (type
);
11275 if (TYPE_PTR_P (t
))
11277 else if (TREE_CODE (t
) != ARRAY_TYPE
)
11279 else if (!TYPE_DOMAIN (t
))
11283 if (TREE_CODE (t
) == ARRAY_TYPE
)
11285 ? G_("parameter %qD includes pointer to array of "
11286 "unknown bound %qT")
11287 : G_("parameter %qD includes reference to array of "
11288 "unknown bound %qT"),
11294 else if (init
&& !processing_template_decl
)
11295 init
= check_default_argument (decl
, init
, tf_warning_or_error
);
11298 DECL_CHAIN (decl
) = decls
;
11300 result
= tree_cons (init
, type
, result
);
11302 decls
= nreverse (decls
);
11303 result
= nreverse (result
);
11305 result
= chainon (result
, void_list_node
);
11312 /* D is a constructor or overloaded `operator='.
11314 Let T be the class in which D is declared. Then, this function
11317 -1 if D's is an ill-formed constructor or copy assignment operator
11318 whose first parameter is of type `T'.
11319 0 if D is not a copy constructor or copy assignment
11321 1 if D is a copy constructor or copy assignment operator whose
11322 first parameter is a reference to non-const qualified T.
11323 2 if D is a copy constructor or copy assignment operator whose
11324 first parameter is a reference to const qualified T.
11326 This function can be used as a predicate. Positive values indicate
11327 a copy constructor and nonzero values indicate a copy assignment
11331 copy_fn_p (const_tree d
)
11337 gcc_assert (DECL_FUNCTION_MEMBER_P (d
));
11339 if (TREE_CODE (d
) == TEMPLATE_DECL
11340 || (DECL_TEMPLATE_INFO (d
)
11341 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d
))))
11342 /* Instantiations of template member functions are never copy
11343 functions. Note that member functions of templated classes are
11344 represented as template functions internally, and we must
11345 accept those as copy functions. */
11348 args
= FUNCTION_FIRST_USER_PARMTYPE (d
);
11352 arg_type
= TREE_VALUE (args
);
11353 if (arg_type
== error_mark_node
)
11356 if (TYPE_MAIN_VARIANT (arg_type
) == DECL_CONTEXT (d
))
11358 /* Pass by value copy assignment operator. */
11361 else if (TREE_CODE (arg_type
) == REFERENCE_TYPE
11362 && !TYPE_REF_IS_RVALUE (arg_type
)
11363 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type
)) == DECL_CONTEXT (d
))
11365 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type
)))
11371 args
= TREE_CHAIN (args
);
11373 if (args
&& args
!= void_list_node
&& !TREE_PURPOSE (args
))
11374 /* There are more non-optional args. */
11380 /* D is a constructor or overloaded `operator='.
11382 Let T be the class in which D is declared. Then, this function
11383 returns true when D is a move constructor or move assignment
11384 operator, false otherwise. */
11387 move_fn_p (const_tree d
)
11389 gcc_assert (DECL_FUNCTION_MEMBER_P (d
));
11391 if (cxx_dialect
== cxx98
)
11392 /* There are no move constructors if we are in C++98 mode. */
11395 if (TREE_CODE (d
) == TEMPLATE_DECL
11396 || (DECL_TEMPLATE_INFO (d
)
11397 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d
))))
11398 /* Instantiations of template member functions are never move
11399 functions. Note that member functions of templated classes are
11400 represented as template functions internally, and we must
11401 accept those as move functions. */
11404 return move_signature_fn_p (d
);
11407 /* D is a constructor or overloaded `operator='.
11409 Then, this function returns true when D has the same signature as a move
11410 constructor or move assignment operator (because either it is such a
11411 ctor/op= or it is a template specialization with the same signature),
11412 false otherwise. */
11415 move_signature_fn_p (const_tree d
)
11419 bool result
= false;
11421 args
= FUNCTION_FIRST_USER_PARMTYPE (d
);
11425 arg_type
= TREE_VALUE (args
);
11426 if (arg_type
== error_mark_node
)
11429 if (TREE_CODE (arg_type
) == REFERENCE_TYPE
11430 && TYPE_REF_IS_RVALUE (arg_type
)
11431 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type
)),
11435 args
= TREE_CHAIN (args
);
11437 if (args
&& args
!= void_list_node
&& !TREE_PURPOSE (args
))
11438 /* There are more non-optional args. */
11444 /* Remember any special properties of member function DECL. */
11447 grok_special_member_properties (tree decl
)
11451 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl
))
11454 class_type
= DECL_CONTEXT (decl
);
11455 if (DECL_CONSTRUCTOR_P (decl
))
11457 int ctor
= copy_fn_p (decl
);
11459 if (!DECL_ARTIFICIAL (decl
))
11460 TYPE_HAS_USER_CONSTRUCTOR (class_type
) = 1;
11466 A non-template constructor for class X is a copy
11467 constructor if its first parameter is of type X&, const
11468 X&, volatile X& or const volatile X&, and either there
11469 are no other parameters or else all other parameters have
11470 default arguments. */
11471 TYPE_HAS_COPY_CTOR (class_type
) = 1;
11472 if (user_provided_p (decl
))
11473 TYPE_HAS_COMPLEX_COPY_CTOR (class_type
) = 1;
11475 TYPE_HAS_CONST_COPY_CTOR (class_type
) = 1;
11477 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl
)))
11479 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type
) = 1;
11480 if (user_provided_p (decl
))
11481 TYPE_HAS_COMPLEX_DFLT (class_type
) = 1;
11483 else if (move_fn_p (decl
) && user_provided_p (decl
))
11484 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type
) = 1;
11485 else if (is_list_ctor (decl
))
11486 TYPE_HAS_LIST_CTOR (class_type
) = 1;
11488 if (DECL_DECLARED_CONSTEXPR_P (decl
)
11489 && !copy_fn_p (decl
) && !move_fn_p (decl
))
11490 TYPE_HAS_CONSTEXPR_CTOR (class_type
) = 1;
11492 else if (DECL_OVERLOADED_OPERATOR_P (decl
) == NOP_EXPR
)
11496 A non-template assignment operator for class X is a copy
11497 assignment operator if its parameter is of type X, X&, const
11498 X&, volatile X& or const volatile X&. */
11500 int assop
= copy_fn_p (decl
);
11504 TYPE_HAS_COPY_ASSIGN (class_type
) = 1;
11505 if (user_provided_p (decl
))
11506 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type
) = 1;
11508 TYPE_HAS_CONST_COPY_ASSIGN (class_type
) = 1;
11510 else if (move_fn_p (decl
) && user_provided_p (decl
))
11511 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type
) = 1;
11513 /* Destructors are handled in check_methods. */
11516 /* Check a constructor DECL has the correct form. Complains
11517 if the class has a constructor of the form X(X). */
11520 grok_ctor_properties (const_tree ctype
, const_tree decl
)
11522 int ctor_parm
= copy_fn_p (decl
);
11528 A declaration of a constructor for a class X is ill-formed if
11529 its first parameter is of type (optionally cv-qualified) X
11530 and either there are no other parameters or else all other
11531 parameters have default arguments.
11533 We *don't* complain about member template instantiations that
11534 have this form, though; they can occur as we try to decide
11535 what constructor to use during overload resolution. Since
11536 overload resolution will never prefer such a constructor to
11537 the non-template copy constructor (which is either explicitly
11538 or implicitly defined), there's no need to worry about their
11539 existence. Theoretically, they should never even be
11540 instantiated, but that's hard to forestall. */
11541 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
11549 /* An operator with this code is unary, but can also be binary. */
11552 ambi_op_p (enum tree_code code
)
11554 return (code
== INDIRECT_REF
11555 || code
== ADDR_EXPR
11556 || code
== UNARY_PLUS_EXPR
11557 || code
== NEGATE_EXPR
11558 || code
== PREINCREMENT_EXPR
11559 || code
== PREDECREMENT_EXPR
);
11562 /* An operator with this name can only be unary. */
11565 unary_op_p (enum tree_code code
)
11567 return (code
== TRUTH_NOT_EXPR
11568 || code
== BIT_NOT_EXPR
11569 || code
== COMPONENT_REF
11570 || code
== TYPE_EXPR
);
11573 /* DECL is a declaration for an overloaded operator. If COMPLAIN is true,
11574 errors are issued for invalid declarations. */
11577 grok_op_properties (tree decl
, bool complain
)
11579 tree argtypes
= TYPE_ARG_TYPES (TREE_TYPE (decl
));
11581 int methodp
= (TREE_CODE (TREE_TYPE (decl
)) == METHOD_TYPE
);
11582 tree name
= DECL_NAME (decl
);
11583 enum tree_code operator_code
;
11588 /* Count the number of arguments and check for ellipsis. */
11589 for (argtype
= argtypes
, arity
= 0;
11590 argtype
&& argtype
!= void_list_node
;
11591 argtype
= TREE_CHAIN (argtype
))
11593 ellipsis_p
= !argtype
;
11595 class_type
= DECL_CONTEXT (decl
);
11596 if (class_type
&& !CLASS_TYPE_P (class_type
))
11597 class_type
= NULL_TREE
;
11599 if (DECL_CONV_FN_P (decl
))
11600 operator_code
= TYPE_EXPR
;
11604 #define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P) \
11605 if (ansi_opname (CODE) == name) \
11607 operator_code = (CODE); \
11610 else if (ansi_assopname (CODE) == name) \
11612 operator_code = (CODE); \
11613 DECL_ASSIGNMENT_OPERATOR_P (decl) = 1; \
11617 #include "operators.def"
11618 #undef DEF_OPERATOR
11620 gcc_unreachable ();
11623 gcc_assert (operator_code
!= MAX_TREE_CODES
);
11624 SET_OVERLOADED_OPERATOR_CODE (decl
, operator_code
);
11627 switch (operator_code
)
11630 TYPE_HAS_NEW_OPERATOR (class_type
) = 1;
11634 TYPE_GETS_DELETE (class_type
) |= 1;
11638 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type
) = 1;
11641 case VEC_DELETE_EXPR
:
11642 TYPE_GETS_DELETE (class_type
) |= 2;
11649 /* [basic.std.dynamic.allocation]/1:
11651 A program is ill-formed if an allocation function is declared
11652 in a namespace scope other than global scope or declared static
11655 The same also holds true for deallocation functions. */
11656 if (operator_code
== NEW_EXPR
|| operator_code
== VEC_NEW_EXPR
11657 || operator_code
== DELETE_EXPR
|| operator_code
== VEC_DELETE_EXPR
)
11659 if (DECL_NAMESPACE_SCOPE_P (decl
))
11661 if (CP_DECL_CONTEXT (decl
) != global_namespace
)
11663 error ("%qD may not be declared within a namespace", decl
);
11666 else if (!TREE_PUBLIC (decl
))
11668 error ("%qD may not be declared as static", decl
);
11674 if (operator_code
== NEW_EXPR
|| operator_code
== VEC_NEW_EXPR
)
11676 TREE_TYPE (decl
) = coerce_new_type (TREE_TYPE (decl
));
11677 DECL_IS_OPERATOR_NEW (decl
) = 1;
11679 else if (operator_code
== DELETE_EXPR
|| operator_code
== VEC_DELETE_EXPR
)
11680 TREE_TYPE (decl
) = coerce_delete_type (TREE_TYPE (decl
));
11683 /* An operator function must either be a non-static member function
11684 or have at least one parameter of a class, a reference to a class,
11685 an enumeration, or a reference to an enumeration. 13.4.0.6 */
11686 if (! methodp
|| DECL_STATIC_FUNCTION_P (decl
))
11688 if (operator_code
== TYPE_EXPR
11689 || operator_code
== CALL_EXPR
11690 || operator_code
== COMPONENT_REF
11691 || operator_code
== ARRAY_REF
11692 || operator_code
== NOP_EXPR
)
11694 error ("%qD must be a nonstatic member function", decl
);
11701 if (DECL_STATIC_FUNCTION_P (decl
))
11703 error ("%qD must be either a non-static member "
11704 "function or a non-member function", decl
);
11708 for (p
= argtypes
; p
&& p
!= void_list_node
; p
= TREE_CHAIN (p
))
11710 tree arg
= non_reference (TREE_VALUE (p
));
11711 if (arg
== error_mark_node
)
11714 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
11715 because these checks are performed even on
11716 template functions. */
11717 if (MAYBE_CLASS_TYPE_P (arg
)
11718 || TREE_CODE (arg
) == ENUMERAL_TYPE
)
11722 if (!p
|| p
== void_list_node
)
11725 error ("%qD must have an argument of class or "
11726 "enumerated type", decl
);
11732 /* There are no restrictions on the arguments to an overloaded
11734 if (operator_code
== CALL_EXPR
)
11737 /* Warn about conversion operators that will never be used. */
11738 if (IDENTIFIER_TYPENAME_P (name
)
11739 && ! DECL_TEMPLATE_INFO (decl
)
11741 /* Warn only declaring the function; there is no need to
11742 warn again about out-of-class definitions. */
11743 && class_type
== current_class_type
)
11745 tree t
= TREE_TYPE (name
);
11746 int ref
= (TREE_CODE (t
) == REFERENCE_TYPE
);
11749 t
= TYPE_MAIN_VARIANT (TREE_TYPE (t
));
11751 if (VOID_TYPE_P (t
))
11752 warning (OPT_Wconversion
,
11754 ? G_("conversion to a reference to void "
11755 "will never use a type conversion operator")
11756 : G_("conversion to void "
11757 "will never use a type conversion operator"));
11758 else if (class_type
)
11760 if (t
== class_type
)
11761 warning (OPT_Wconversion
,
11763 ? G_("conversion to a reference to the same type "
11764 "will never use a type conversion operator")
11765 : G_("conversion to the same type "
11766 "will never use a type conversion operator"));
11767 /* Don't force t to be complete here. */
11768 else if (MAYBE_CLASS_TYPE_P (t
)
11769 && COMPLETE_TYPE_P (t
)
11770 && DERIVED_FROM_P (t
, class_type
))
11771 warning (OPT_Wconversion
,
11773 ? G_("conversion to a reference to a base class "
11774 "will never use a type conversion operator")
11775 : G_("conversion to a base class "
11776 "will never use a type conversion operator"));
11781 if (operator_code
== COND_EXPR
)
11784 error ("ISO C++ prohibits overloading operator ?:");
11787 else if (ellipsis_p
)
11789 error ("%qD must not have variable number of arguments", decl
);
11792 else if (ambi_op_p (operator_code
))
11795 /* We pick the one-argument operator codes by default, so
11796 we don't have to change anything. */
11798 else if (arity
== 2)
11800 /* If we thought this was a unary operator, we now know
11801 it to be a binary operator. */
11802 switch (operator_code
)
11805 operator_code
= MULT_EXPR
;
11809 operator_code
= BIT_AND_EXPR
;
11812 case UNARY_PLUS_EXPR
:
11813 operator_code
= PLUS_EXPR
;
11817 operator_code
= MINUS_EXPR
;
11820 case PREINCREMENT_EXPR
:
11821 operator_code
= POSTINCREMENT_EXPR
;
11824 case PREDECREMENT_EXPR
:
11825 operator_code
= POSTDECREMENT_EXPR
;
11829 gcc_unreachable ();
11832 SET_OVERLOADED_OPERATOR_CODE (decl
, operator_code
);
11834 if ((operator_code
== POSTINCREMENT_EXPR
11835 || operator_code
== POSTDECREMENT_EXPR
)
11836 && ! processing_template_decl
11837 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes
)), integer_type_node
))
11840 error ("postfix %qD must take %<int%> as its argument",
11843 error ("postfix %qD must take %<int%> as its second "
11851 error ("%qD must take either zero or one argument", decl
);
11853 error ("%qD must take either one or two arguments", decl
);
11857 /* More Effective C++ rule 6. */
11859 && (operator_code
== POSTINCREMENT_EXPR
11860 || operator_code
== POSTDECREMENT_EXPR
11861 || operator_code
== PREINCREMENT_EXPR
11862 || operator_code
== PREDECREMENT_EXPR
))
11864 tree arg
= TREE_VALUE (argtypes
);
11865 tree ret
= TREE_TYPE (TREE_TYPE (decl
));
11866 if (methodp
|| TREE_CODE (arg
) == REFERENCE_TYPE
)
11867 arg
= TREE_TYPE (arg
);
11868 arg
= TYPE_MAIN_VARIANT (arg
);
11869 if (operator_code
== PREINCREMENT_EXPR
11870 || operator_code
== PREDECREMENT_EXPR
)
11872 if (TREE_CODE (ret
) != REFERENCE_TYPE
11873 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret
)),
11875 warning (OPT_Weffc__
, "prefix %qD should return %qT", decl
,
11876 build_reference_type (arg
));
11880 if (!same_type_p (TYPE_MAIN_VARIANT (ret
), arg
))
11881 warning (OPT_Weffc__
, "postfix %qD should return %qT", decl
, arg
);
11885 else if (unary_op_p (operator_code
))
11890 error ("%qD must take %<void%>", decl
);
11892 error ("%qD must take exactly one argument", decl
);
11896 else /* if (binary_op_p (operator_code)) */
11901 error ("%qD must take exactly one argument", decl
);
11903 error ("%qD must take exactly two arguments", decl
);
11907 /* More Effective C++ rule 7. */
11909 && (operator_code
== TRUTH_ANDIF_EXPR
11910 || operator_code
== TRUTH_ORIF_EXPR
11911 || operator_code
== COMPOUND_EXPR
))
11912 warning (OPT_Weffc__
, "user-defined %qD always evaluates both arguments",
11916 /* Effective C++ rule 23. */
11919 && !DECL_ASSIGNMENT_OPERATOR_P (decl
)
11920 && (operator_code
== PLUS_EXPR
11921 || operator_code
== MINUS_EXPR
11922 || operator_code
== TRUNC_DIV_EXPR
11923 || operator_code
== MULT_EXPR
11924 || operator_code
== TRUNC_MOD_EXPR
)
11925 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl
))) == REFERENCE_TYPE
)
11926 warning (OPT_Weffc__
, "%qD should return by value", decl
);
11928 /* [over.oper]/8 */
11929 for (; argtypes
&& argtypes
!= void_list_node
;
11930 argtypes
= TREE_CHAIN (argtypes
))
11931 if (TREE_PURPOSE (argtypes
))
11933 TREE_PURPOSE (argtypes
) = NULL_TREE
;
11934 if (operator_code
== POSTINCREMENT_EXPR
11935 || operator_code
== POSTDECREMENT_EXPR
)
11937 pedwarn (input_location
, OPT_Wpedantic
, "%qD cannot have default arguments",
11942 error ("%qD cannot have default arguments", decl
);
11950 /* Return a string giving the keyword associate with CODE. */
11952 static const char *
11953 tag_name (enum tag_types code
)
11965 case typename_type
:
11968 gcc_unreachable ();
11972 /* Name lookup in an elaborated-type-specifier (after the keyword
11973 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
11974 elaborated-type-specifier is invalid, issue a diagnostic and return
11975 error_mark_node; otherwise, return the *_TYPE to which it referred.
11976 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
11979 check_elaborated_type_specifier (enum tag_types tag_code
,
11981 bool allow_template_p
)
11987 struct S { struct S *p; };
11989 name lookup will find the TYPE_DECL for the implicit "S::S"
11990 typedef. Adjust for that here. */
11991 if (DECL_SELF_REFERENCE_P (decl
))
11992 decl
= TYPE_NAME (TREE_TYPE (decl
));
11994 type
= TREE_TYPE (decl
);
11996 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
11997 is false for this case as well. */
11998 if (TREE_CODE (type
) == TEMPLATE_TYPE_PARM
)
12000 error ("using template type parameter %qT after %qs",
12001 type
, tag_name (tag_code
));
12002 return error_mark_node
;
12004 /* Accept template template parameters. */
12005 else if (allow_template_p
12006 && (TREE_CODE (type
) == BOUND_TEMPLATE_TEMPLATE_PARM
12007 || TREE_CODE (type
) == TEMPLATE_TEMPLATE_PARM
))
12011 If the identifier resolves to a typedef-name or the
12012 simple-template-id resolves to an alias template
12013 specialization, the elaborated-type-specifier is ill-formed.
12015 In other words, the only legitimate declaration to use in the
12016 elaborated type specifier is the implicit typedef created when
12017 the type is declared. */
12018 else if (!DECL_IMPLICIT_TYPEDEF_P (decl
)
12019 && !DECL_SELF_REFERENCE_P (decl
)
12020 && tag_code
!= typename_type
)
12022 if (alias_template_specialization_p (type
))
12023 error ("using alias template specialization %qT after %qs",
12024 type
, tag_name (tag_code
));
12026 error ("using typedef-name %qD after %qs", decl
, tag_name (tag_code
));
12027 inform (DECL_SOURCE_LOCATION (decl
),
12028 "%qD has a previous declaration here", decl
);
12029 return error_mark_node
;
12031 else if (TREE_CODE (type
) != RECORD_TYPE
12032 && TREE_CODE (type
) != UNION_TYPE
12033 && tag_code
!= enum_type
12034 && tag_code
!= typename_type
)
12036 error ("%qT referred to as %qs", type
, tag_name (tag_code
));
12037 inform (input_location
, "%q+T has a previous declaration here", type
);
12038 return error_mark_node
;
12040 else if (TREE_CODE (type
) != ENUMERAL_TYPE
12041 && tag_code
== enum_type
)
12043 error ("%qT referred to as enum", type
);
12044 inform (input_location
, "%q+T has a previous declaration here", type
);
12045 return error_mark_node
;
12047 else if (!allow_template_p
12048 && TREE_CODE (type
) == RECORD_TYPE
12049 && CLASSTYPE_IS_TEMPLATE (type
))
12051 /* If a class template appears as elaborated type specifier
12052 without a template header such as:
12054 template <class T> class C {};
12055 void f(class C); // No template header here
12057 then the required template argument is missing. */
12058 error ("template argument required for %<%s %T%>",
12059 tag_name (tag_code
),
12060 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type
)));
12061 return error_mark_node
;
12067 /* Lookup NAME in elaborate type specifier in scope according to
12068 SCOPE and issue diagnostics if necessary.
12069 Return *_TYPE node upon success, NULL_TREE when the NAME is not
12070 found, and ERROR_MARK_NODE for type error. */
12073 lookup_and_check_tag (enum tag_types tag_code
, tree name
,
12074 tag_scope scope
, bool template_header_p
)
12078 if (scope
== ts_global
)
12080 /* First try ordinary name lookup, ignoring hidden class name
12081 injected via friend declaration. */
12082 decl
= lookup_name_prefer_type (name
, 2);
12083 /* If that fails, the name will be placed in the smallest
12084 non-class, non-function-prototype scope according to 3.3.1/5.
12085 We may already have a hidden name declared as friend in this
12086 scope. So lookup again but not ignoring hidden names.
12087 If we find one, that name will be made visible rather than
12088 creating a new tag. */
12090 decl
= lookup_type_scope (name
, ts_within_enclosing_non_class
);
12093 decl
= lookup_type_scope (name
, scope
);
12096 && (DECL_CLASS_TEMPLATE_P (decl
)
12097 /* If scope is ts_current we're defining a class, so ignore a
12098 template template parameter. */
12099 || (scope
!= ts_current
12100 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl
))))
12101 decl
= DECL_TEMPLATE_RESULT (decl
);
12103 if (decl
&& TREE_CODE (decl
) == TYPE_DECL
)
12105 /* Look for invalid nested type:
12109 if (scope
== ts_current
&& DECL_SELF_REFERENCE_P (decl
))
12111 error ("%qD has the same name as the class in which it is "
12114 return error_mark_node
;
12117 /* Two cases we need to consider when deciding if a class
12118 template is allowed as an elaborated type specifier:
12119 1. It is a self reference to its own class.
12120 2. It comes with a template header.
12124 template <class T> class C {
12125 class C *c1; // DECL_SELF_REFERENCE_P is true
12128 template <class U> class C; // template_header_p is true
12129 template <class T> class C<T>::D {
12130 class C *c2; // DECL_SELF_REFERENCE_P is true
12133 t
= check_elaborated_type_specifier (tag_code
,
12136 | DECL_SELF_REFERENCE_P (decl
));
12139 else if (decl
&& TREE_CODE (decl
) == TREE_LIST
)
12141 error ("reference to %qD is ambiguous", name
);
12142 print_candidates (decl
);
12143 return error_mark_node
;
12149 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
12150 Define the tag as a forward-reference if it is not defined.
12152 If a declaration is given, process it here, and report an error if
12153 multiple declarations are not identical.
12155 SCOPE is TS_CURRENT when this is also a definition. Only look in
12156 the current frame for the name (since C++ allows new names in any
12157 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
12158 declaration. Only look beginning from the current scope outward up
12159 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
12161 TEMPLATE_HEADER_P is true when this declaration is preceded by
12162 a set of template parameters. */
12165 xref_tag_1 (enum tag_types tag_code
, tree name
,
12166 tag_scope orig_scope
, bool template_header_p
)
12168 enum tree_code code
;
12170 tree context
= NULL_TREE
;
12173 gcc_assert (identifier_p (name
));
12179 code
= RECORD_TYPE
;
12185 code
= ENUMERAL_TYPE
;
12188 gcc_unreachable ();
12191 if (orig_scope
== ts_lambda
)
12192 scope
= ts_current
;
12194 scope
= orig_scope
;
12196 /* In case of anonymous name, xref_tag is only called to
12197 make type node and push name. Name lookup is not required. */
12198 if (ANON_AGGRNAME_P (name
))
12201 t
= lookup_and_check_tag (tag_code
, name
,
12202 scope
, template_header_p
);
12204 if (t
== error_mark_node
)
12205 return error_mark_node
;
12207 if (scope
!= ts_current
&& t
&& current_class_type
12208 && template_class_depth (current_class_type
)
12209 && template_header_p
)
12211 if (TREE_CODE (t
) == TEMPLATE_TEMPLATE_PARM
)
12214 /* Since SCOPE is not TS_CURRENT, we are not looking at a
12215 definition of this tag. Since, in addition, we are currently
12216 processing a (member) template declaration of a template
12217 class, we must be very careful; consider:
12224 { template <class V>
12225 friend struct S1; };
12227 Here, the S2::S1 declaration should not be confused with the
12228 outer declaration. In particular, the inner version should
12229 have a template parameter of level 2, not level 1. This
12230 would be particularly important if the member declaration
12233 template <class V = U> friend struct S1;
12235 say, when we should tsubst into `U' when instantiating
12236 S2. On the other hand, when presented with:
12246 we must find the inner binding eventually. We
12247 accomplish this by making sure that the new type we
12248 create to represent this declaration has the right
12250 context
= TYPE_CONTEXT (t
);
12256 /* If no such tag is yet defined, create a forward-reference node
12257 and record it as the "definition".
12258 When a real declaration of this type is found,
12259 the forward-reference will be altered into a real type. */
12260 if (code
== ENUMERAL_TYPE
)
12262 error ("use of enum %q#D without previous declaration", name
);
12263 return error_mark_node
;
12267 t
= make_class_type (code
);
12268 TYPE_CONTEXT (t
) = context
;
12269 if (orig_scope
== ts_lambda
)
12270 /* Remember that we're declaring a lambda to avoid bogus errors
12271 in push_template_decl. */
12272 CLASSTYPE_LAMBDA_EXPR (t
) = error_mark_node
;
12273 t
= pushtag (name
, t
, scope
);
12278 if (template_header_p
&& MAYBE_CLASS_TYPE_P (t
))
12280 if (!redeclare_class_template (t
, current_template_parms
))
12281 return error_mark_node
;
12283 else if (!processing_template_decl
12284 && CLASS_TYPE_P (t
)
12285 && CLASSTYPE_IS_TEMPLATE (t
))
12287 error ("redeclaration of %qT as a non-template", t
);
12288 error ("previous declaration %q+D", t
);
12289 return error_mark_node
;
12292 /* Make injected friend class visible. */
12293 if (scope
!= ts_within_enclosing_non_class
12294 && hidden_name_p (TYPE_NAME (t
)))
12296 DECL_ANTICIPATED (TYPE_NAME (t
)) = 0;
12297 DECL_FRIEND_P (TYPE_NAME (t
)) = 0;
12299 if (TYPE_TEMPLATE_INFO (t
))
12301 DECL_ANTICIPATED (TYPE_TI_TEMPLATE (t
)) = 0;
12302 DECL_FRIEND_P (TYPE_TI_TEMPLATE (t
)) = 0;
12310 /* Wrapper for xref_tag_1. */
12313 xref_tag (enum tag_types tag_code
, tree name
,
12314 tag_scope scope
, bool template_header_p
)
12318 subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
12319 ret
= xref_tag_1 (tag_code
, name
, scope
, template_header_p
);
12320 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
12326 xref_tag_from_type (tree old
, tree id
, tag_scope scope
)
12328 enum tag_types tag_kind
;
12330 if (TREE_CODE (old
) == RECORD_TYPE
)
12331 tag_kind
= (CLASSTYPE_DECLARED_CLASS (old
) ? class_type
: record_type
);
12333 tag_kind
= union_type
;
12335 if (id
== NULL_TREE
)
12336 id
= TYPE_IDENTIFIER (old
);
12338 return xref_tag (tag_kind
, id
, scope
, false);
12341 /* Create the binfo hierarchy for REF with (possibly NULL) base list
12342 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
12343 access_* node, and the TREE_VALUE is the type of the base-class.
12344 Non-NULL TREE_TYPE indicates virtual inheritance.
12346 Returns true if the binfo hierarchy was successfully created,
12347 false if an error was detected. */
12350 xref_basetypes (tree ref
, tree base_list
)
12353 tree binfo
, base_binfo
;
12354 unsigned max_vbases
= 0; /* Maximum direct & indirect virtual bases. */
12355 unsigned max_bases
= 0; /* Maximum direct bases. */
12357 tree default_access
;
12358 tree igo_prev
; /* Track Inheritance Graph Order. */
12360 if (ref
== error_mark_node
)
12363 /* The base of a derived class is private by default, all others are
12365 default_access
= (TREE_CODE (ref
) == RECORD_TYPE
12366 && CLASSTYPE_DECLARED_CLASS (ref
)
12367 ? access_private_node
: access_public_node
);
12369 /* First, make sure that any templates in base-classes are
12370 instantiated. This ensures that if we call ourselves recursively
12371 we do not get confused about which classes are marked and which
12373 basep
= &base_list
;
12376 tree basetype
= TREE_VALUE (*basep
);
12378 /* The dependent_type_p call below should really be dependent_scope_p
12379 so that we give a hard error about using an incomplete type as a
12380 base, but we allow it with a pedwarn for backward
12382 if (processing_template_decl
12383 && CLASS_TYPE_P (basetype
) && TYPE_BEING_DEFINED (basetype
))
12384 cxx_incomplete_type_diagnostic (NULL_TREE
, basetype
, DK_PEDWARN
);
12385 if (!dependent_type_p (basetype
)
12386 && !complete_type_or_else (basetype
, NULL
))
12387 /* An incomplete type. Remove it from the list. */
12388 *basep
= TREE_CHAIN (*basep
);
12392 if (TREE_TYPE (*basep
))
12394 if (CLASS_TYPE_P (basetype
))
12395 max_vbases
+= vec_safe_length (CLASSTYPE_VBASECLASSES (basetype
));
12396 basep
= &TREE_CHAIN (*basep
);
12400 TYPE_MARKED_P (ref
) = 1;
12402 /* The binfo slot should be empty, unless this is an (ill-formed)
12404 if (TYPE_BINFO (ref
) && !TYPE_SIZE (ref
))
12406 error ("redefinition of %q#T", ref
);
12410 gcc_assert (TYPE_MAIN_VARIANT (ref
) == ref
);
12412 binfo
= make_tree_binfo (max_bases
);
12414 TYPE_BINFO (ref
) = binfo
;
12415 BINFO_OFFSET (binfo
) = size_zero_node
;
12416 BINFO_TYPE (binfo
) = ref
;
12418 /* Apply base-class info set up to the variants of this type. */
12419 fixup_type_variants (ref
);
12423 vec_alloc (BINFO_BASE_ACCESSES (binfo
), max_bases
);
12424 /* An aggregate cannot have baseclasses. */
12425 CLASSTYPE_NON_AGGREGATE (ref
) = 1;
12427 if (TREE_CODE (ref
) == UNION_TYPE
)
12429 error ("derived union %qT invalid", ref
);
12436 if (TYPE_FOR_JAVA (ref
))
12438 error ("Java class %qT cannot have multiple bases", ref
);
12445 vec_alloc (CLASSTYPE_VBASECLASSES (ref
), max_vbases
);
12447 if (TYPE_FOR_JAVA (ref
))
12449 error ("Java class %qT cannot have virtual bases", ref
);
12454 for (igo_prev
= binfo
; base_list
; base_list
= TREE_CHAIN (base_list
))
12456 tree access
= TREE_PURPOSE (base_list
);
12457 int via_virtual
= TREE_TYPE (base_list
) != NULL_TREE
;
12458 tree basetype
= TREE_VALUE (base_list
);
12460 if (access
== access_default_node
)
12461 access
= default_access
;
12463 if (PACK_EXPANSION_P (basetype
))
12464 basetype
= PACK_EXPANSION_PATTERN (basetype
);
12465 if (TREE_CODE (basetype
) == TYPE_DECL
)
12466 basetype
= TREE_TYPE (basetype
);
12467 if (!MAYBE_CLASS_TYPE_P (basetype
) || TREE_CODE (basetype
) == UNION_TYPE
)
12469 error ("base type %qT fails to be a struct or class type",
12474 if (TYPE_FOR_JAVA (basetype
) && (current_lang_depth () == 0))
12475 TYPE_FOR_JAVA (ref
) = 1;
12477 base_binfo
= NULL_TREE
;
12478 if (CLASS_TYPE_P (basetype
) && !dependent_scope_p (basetype
))
12480 base_binfo
= TYPE_BINFO (basetype
);
12481 /* The original basetype could have been a typedef'd type. */
12482 basetype
= BINFO_TYPE (base_binfo
);
12484 /* Inherit flags from the base. */
12485 TYPE_HAS_NEW_OPERATOR (ref
)
12486 |= TYPE_HAS_NEW_OPERATOR (basetype
);
12487 TYPE_HAS_ARRAY_NEW_OPERATOR (ref
)
12488 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype
);
12489 TYPE_GETS_DELETE (ref
) |= TYPE_GETS_DELETE (basetype
);
12490 TYPE_HAS_CONVERSION (ref
) |= TYPE_HAS_CONVERSION (basetype
);
12491 CLASSTYPE_DIAMOND_SHAPED_P (ref
)
12492 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype
);
12493 CLASSTYPE_REPEATED_BASE_P (ref
)
12494 |= CLASSTYPE_REPEATED_BASE_P (basetype
);
12497 /* We must do this test after we've seen through a typedef
12499 if (TYPE_MARKED_P (basetype
))
12501 if (basetype
== ref
)
12502 error ("recursive type %qT undefined", basetype
);
12504 error ("duplicate base type %qT invalid", basetype
);
12508 if (PACK_EXPANSION_P (TREE_VALUE (base_list
)))
12509 /* Regenerate the pack expansion for the bases. */
12510 basetype
= make_pack_expansion (basetype
);
12512 TYPE_MARKED_P (basetype
) = 1;
12514 base_binfo
= copy_binfo (base_binfo
, basetype
, ref
,
12515 &igo_prev
, via_virtual
);
12516 if (!BINFO_INHERITANCE_CHAIN (base_binfo
))
12517 BINFO_INHERITANCE_CHAIN (base_binfo
) = binfo
;
12519 BINFO_BASE_APPEND (binfo
, base_binfo
);
12520 BINFO_BASE_ACCESS_APPEND (binfo
, access
);
12523 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref
)) < max_vbases
)
12524 /* If we didn't get max_vbases vbases, we must have shared at
12525 least one of them, and are therefore diamond shaped. */
12526 CLASSTYPE_DIAMOND_SHAPED_P (ref
) = 1;
12528 /* Unmark all the types. */
12529 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
12530 TYPE_MARKED_P (BINFO_TYPE (base_binfo
)) = 0;
12531 TYPE_MARKED_P (ref
) = 0;
12533 /* Now see if we have a repeated base type. */
12534 if (!CLASSTYPE_REPEATED_BASE_P (ref
))
12536 for (base_binfo
= binfo
; base_binfo
;
12537 base_binfo
= TREE_CHAIN (base_binfo
))
12539 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo
)))
12541 CLASSTYPE_REPEATED_BASE_P (ref
) = 1;
12544 TYPE_MARKED_P (BINFO_TYPE (base_binfo
)) = 1;
12546 for (base_binfo
= binfo
; base_binfo
;
12547 base_binfo
= TREE_CHAIN (base_binfo
))
12548 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo
)))
12549 TYPE_MARKED_P (BINFO_TYPE (base_binfo
)) = 0;
12558 /* Copies the enum-related properties from type SRC to type DST.
12559 Used with the underlying type of an enum and the enum itself. */
12561 copy_type_enum (tree dst
, tree src
)
12564 for (t
= dst
; t
; t
= TYPE_NEXT_VARIANT (t
))
12566 TYPE_MIN_VALUE (t
) = TYPE_MIN_VALUE (src
);
12567 TYPE_MAX_VALUE (t
) = TYPE_MAX_VALUE (src
);
12568 TYPE_SIZE (t
) = TYPE_SIZE (src
);
12569 TYPE_SIZE_UNIT (t
) = TYPE_SIZE_UNIT (src
);
12570 SET_TYPE_MODE (dst
, TYPE_MODE (src
));
12571 TYPE_PRECISION (t
) = TYPE_PRECISION (src
);
12572 TYPE_ALIGN (t
) = TYPE_ALIGN (src
);
12573 TYPE_USER_ALIGN (t
) = TYPE_USER_ALIGN (src
);
12574 TYPE_UNSIGNED (t
) = TYPE_UNSIGNED (src
);
12578 /* Begin compiling the definition of an enumeration type.
12581 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
12583 UNDERLYING_TYPE is the type that will be used as the storage for
12584 the enumeration type. This should be NULL_TREE if no storage type
12587 SCOPED_ENUM_P is true if this is a scoped enumeration type.
12589 if IS_NEW is not NULL, gets TRUE iff a new type is created.
12591 Returns the type object, as yet incomplete.
12592 Also records info about it so that build_enumerator
12593 may be used to declare the individual values as they are read. */
12596 start_enum (tree name
, tree enumtype
, tree underlying_type
,
12597 bool scoped_enum_p
, bool *is_new
)
12599 tree prevtype
= NULL_TREE
;
12600 gcc_assert (identifier_p (name
));
12604 /* [C++0x dcl.enum]p5:
12606 If not explicitly specified, the underlying type of a scoped
12607 enumeration type is int. */
12608 if (!underlying_type
&& scoped_enum_p
)
12609 underlying_type
= integer_type_node
;
12611 if (underlying_type
)
12612 underlying_type
= cv_unqualified (underlying_type
);
12614 /* If this is the real definition for a previous forward reference,
12615 fill in the contents in the same object that used to be the
12616 forward reference. */
12618 enumtype
= lookup_and_check_tag (enum_type
, name
,
12619 /*tag_scope=*/ts_current
,
12620 /*template_header_p=*/false);
12622 /* In case of a template_decl, the only check that should be deferred
12623 to instantiation time is the comparison of underlying types. */
12624 if (enumtype
&& TREE_CODE (enumtype
) == ENUMERAL_TYPE
)
12626 if (scoped_enum_p
!= SCOPED_ENUM_P (enumtype
))
12628 error_at (input_location
, "scoped/unscoped mismatch "
12629 "in enum %q#T", enumtype
);
12630 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype
)),
12631 "previous definition here");
12632 enumtype
= error_mark_node
;
12634 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype
) != !! underlying_type
)
12636 error_at (input_location
, "underlying type mismatch "
12637 "in enum %q#T", enumtype
);
12638 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype
)),
12639 "previous definition here");
12640 enumtype
= error_mark_node
;
12642 else if (underlying_type
&& ENUM_UNDERLYING_TYPE (enumtype
)
12643 && !dependent_type_p (underlying_type
)
12644 && !dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype
))
12645 && !same_type_p (underlying_type
,
12646 ENUM_UNDERLYING_TYPE (enumtype
)))
12648 error_at (input_location
, "different underlying type "
12649 "in enum %q#T", enumtype
);
12650 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype
)),
12651 "previous definition here");
12652 underlying_type
= NULL_TREE
;
12656 if (!enumtype
|| TREE_CODE (enumtype
) != ENUMERAL_TYPE
12657 || processing_template_decl
)
12659 /* In case of error, make a dummy enum to allow parsing to
12661 if (enumtype
== error_mark_node
)
12663 name
= make_anon_name ();
12664 enumtype
= NULL_TREE
;
12667 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
12668 of an opaque enum, or an opaque enum of an already defined
12669 enumeration (C++0x only).
12670 In any other case, it'll be NULL_TREE. */
12676 prevtype
= enumtype
;
12678 /* Do not push the decl more than once, unless we need to
12679 compare underlying types at instantiation time */
12681 || TREE_CODE (enumtype
) != ENUMERAL_TYPE
12682 || (underlying_type
12683 && dependent_type_p (underlying_type
))
12684 || (ENUM_UNDERLYING_TYPE (enumtype
)
12685 && dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype
))))
12687 enumtype
= cxx_make_type (ENUMERAL_TYPE
);
12688 enumtype
= pushtag (name
, enumtype
, /*tag_scope=*/ts_current
);
12691 enumtype
= xref_tag (enum_type
, name
, /*tag_scope=*/ts_current
,
12694 if (enumtype
== error_mark_node
)
12695 return error_mark_node
;
12697 /* The enum is considered opaque until the opening '{' of the
12698 enumerator list. */
12699 SET_OPAQUE_ENUM_P (enumtype
, true);
12700 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype
) = !! underlying_type
;
12703 SET_SCOPED_ENUM_P (enumtype
, scoped_enum_p
);
12705 if (underlying_type
)
12707 if (CP_INTEGRAL_TYPE_P (underlying_type
))
12709 copy_type_enum (enumtype
, underlying_type
);
12710 ENUM_UNDERLYING_TYPE (enumtype
) = underlying_type
;
12712 else if (dependent_type_p (underlying_type
))
12713 ENUM_UNDERLYING_TYPE (enumtype
) = underlying_type
;
12715 error ("underlying type %<%T%> of %<%T%> must be an integral type",
12716 underlying_type
, enumtype
);
12719 /* If into a template class, the returned enum is always the first
12720 declaration (opaque or not) seen. This way all the references to
12721 this type will be to the same declaration. The following ones are used
12722 only to check for definition errors. */
12723 if (prevtype
&& processing_template_decl
)
12729 /* After processing and defining all the values of an enumeration type,
12730 install their decls in the enumeration type.
12731 ENUMTYPE is the type object. */
12734 finish_enum_value_list (tree enumtype
)
12737 tree underlying_type
;
12740 tree minnode
, maxnode
;
12743 bool fixed_underlying_type_p
12744 = ENUM_UNDERLYING_TYPE (enumtype
) != NULL_TREE
;
12746 /* We built up the VALUES in reverse order. */
12747 TYPE_VALUES (enumtype
) = nreverse (TYPE_VALUES (enumtype
));
12749 /* For an enum defined in a template, just set the type of the values;
12750 all further processing is postponed until the template is
12751 instantiated. We need to set the type so that tsubst of a CONST_DECL
12753 if (processing_template_decl
)
12755 for (values
= TYPE_VALUES (enumtype
);
12757 values
= TREE_CHAIN (values
))
12758 TREE_TYPE (TREE_VALUE (values
)) = enumtype
;
12762 /* Determine the minimum and maximum values of the enumerators. */
12763 if (TYPE_VALUES (enumtype
))
12765 minnode
= maxnode
= NULL_TREE
;
12767 for (values
= TYPE_VALUES (enumtype
);
12769 values
= TREE_CHAIN (values
))
12771 decl
= TREE_VALUE (values
);
12773 /* [dcl.enum]: Following the closing brace of an enum-specifier,
12774 each enumerator has the type of its enumeration. Prior to the
12775 closing brace, the type of each enumerator is the type of its
12776 initializing value. */
12777 TREE_TYPE (decl
) = enumtype
;
12779 /* Update the minimum and maximum values, if appropriate. */
12780 value
= DECL_INITIAL (decl
);
12781 if (value
== error_mark_node
)
12782 value
= integer_zero_node
;
12783 /* Figure out what the minimum and maximum values of the
12784 enumerators are. */
12786 minnode
= maxnode
= value
;
12787 else if (tree_int_cst_lt (maxnode
, value
))
12789 else if (tree_int_cst_lt (value
, minnode
))
12796 If the enumerator-list is empty, the underlying type is as if
12797 the enumeration had a single enumerator with value 0. */
12798 minnode
= maxnode
= integer_zero_node
;
12800 if (!fixed_underlying_type_p
)
12802 /* Compute the number of bits require to represent all values of the
12803 enumeration. We must do this before the type of MINNODE and
12804 MAXNODE are transformed, since tree_int_cst_min_precision relies
12805 on the TREE_TYPE of the value it is passed. */
12806 signop sgn
= tree_int_cst_sgn (minnode
) >= 0 ? UNSIGNED
: SIGNED
;
12807 int lowprec
= tree_int_cst_min_precision (minnode
, sgn
);
12808 int highprec
= tree_int_cst_min_precision (maxnode
, sgn
);
12809 int precision
= MAX (lowprec
, highprec
);
12811 bool use_short_enum
;
12813 /* Determine the underlying type of the enumeration.
12817 The underlying type of an enumeration is an integral type that
12818 can represent all the enumerator values defined in the
12819 enumeration. It is implementation-defined which integral type is
12820 used as the underlying type for an enumeration except that the
12821 underlying type shall not be larger than int unless the value of
12822 an enumerator cannot fit in an int or unsigned int.
12824 We use "int" or an "unsigned int" as the underlying type, even if
12825 a smaller integral type would work, unless the user has
12826 explicitly requested that we use the smallest possible type. The
12827 user can request that for all enumerations with a command line
12828 flag, or for just one enumeration with an attribute. */
12830 use_short_enum
= flag_short_enums
12831 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype
));
12833 for (itk
= (use_short_enum
? itk_char
: itk_int
);
12837 underlying_type
= integer_types
[itk
];
12838 if (underlying_type
!= NULL_TREE
12839 && TYPE_PRECISION (underlying_type
) >= precision
12840 && TYPE_SIGN (underlying_type
) == sgn
)
12843 if (itk
== itk_none
)
12847 IF no integral type can represent all the enumerator values, the
12848 enumeration is ill-formed. */
12849 error ("no integral type can represent all of the enumerator values "
12850 "for %qT", enumtype
);
12851 precision
= TYPE_PRECISION (long_long_integer_type_node
);
12852 underlying_type
= integer_types
[itk_unsigned_long_long
];
12857 The value of sizeof() applied to an enumeration type, an object
12858 of an enumeration type, or an enumerator, is the value of sizeof()
12859 applied to the underlying type. */
12860 copy_type_enum (enumtype
, underlying_type
);
12862 /* Compute the minimum and maximum values for the type.
12866 For an enumeration where emin is the smallest enumerator and emax
12867 is the largest, the values of the enumeration are the values of the
12868 underlying type in the range bmin to bmax, where bmin and bmax are,
12869 respectively, the smallest and largest values of the smallest bit-
12870 field that can store emin and emax. */
12872 /* The middle-end currently assumes that types with TYPE_PRECISION
12873 narrower than their underlying type are suitably zero or sign
12874 extended to fill their mode. Similarly, it assumes that the front
12875 end assures that a value of a particular type must be within
12876 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
12878 We used to set these fields based on bmin and bmax, but that led
12879 to invalid assumptions like optimizing away bounds checking. So
12880 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
12881 TYPE_MAX_VALUE to the values for the mode above and only restrict
12882 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
12883 ENUM_UNDERLYING_TYPE (enumtype
)
12884 = build_distinct_type_copy (underlying_type
);
12885 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype
)) = precision
;
12886 set_min_and_max_values_for_integral_type
12887 (ENUM_UNDERLYING_TYPE (enumtype
), precision
, sgn
);
12889 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
12890 if (flag_strict_enums
)
12891 set_min_and_max_values_for_integral_type (enumtype
, precision
, sgn
);
12894 underlying_type
= ENUM_UNDERLYING_TYPE (enumtype
);
12896 /* Convert each of the enumerators to the type of the underlying
12897 type of the enumeration. */
12898 for (values
= TYPE_VALUES (enumtype
); values
; values
= TREE_CHAIN (values
))
12900 location_t saved_location
;
12902 decl
= TREE_VALUE (values
);
12903 saved_location
= input_location
;
12904 input_location
= DECL_SOURCE_LOCATION (decl
);
12905 if (fixed_underlying_type_p
)
12906 /* If the enumeration type has a fixed underlying type, we
12907 already checked all of the enumerator values. */
12908 value
= DECL_INITIAL (decl
);
12910 value
= perform_implicit_conversion (underlying_type
,
12911 DECL_INITIAL (decl
),
12912 tf_warning_or_error
);
12913 input_location
= saved_location
;
12915 /* Do not clobber shared ints. */
12916 value
= copy_node (value
);
12918 TREE_TYPE (value
) = enumtype
;
12919 DECL_INITIAL (decl
) = value
;
12922 /* Fix up all variant types of this enum type. */
12923 for (t
= TYPE_MAIN_VARIANT (enumtype
); t
; t
= TYPE_NEXT_VARIANT (t
))
12924 TYPE_VALUES (t
) = TYPE_VALUES (enumtype
);
12926 if (at_class_scope_p ()
12927 && COMPLETE_TYPE_P (current_class_type
)
12928 && UNSCOPED_ENUM_P (enumtype
))
12929 insert_late_enum_def_into_classtype_sorted_fields (enumtype
,
12930 current_class_type
);
12932 /* Finish debugging output for this type. */
12933 rest_of_type_compilation (enumtype
, namespace_bindings_p ());
12936 /* Finishes the enum type. This is called only the first time an
12937 enumeration is seen, be it opaque or odinary.
12938 ENUMTYPE is the type object. */
12941 finish_enum (tree enumtype
)
12943 if (processing_template_decl
)
12945 if (at_function_scope_p ())
12946 add_stmt (build_min (TAG_DEFN
, enumtype
));
12950 /* If this is a forward declaration, there should not be any variants,
12951 though we can get a variant in the middle of an enum-specifier with
12952 wacky code like 'enum E { e = sizeof(const E*) };' */
12953 gcc_assert (enumtype
== TYPE_MAIN_VARIANT (enumtype
)
12954 && (TYPE_VALUES (enumtype
)
12955 || !TYPE_NEXT_VARIANT (enumtype
)));
12958 /* Build and install a CONST_DECL for an enumeration constant of the
12959 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
12960 LOC is the location of NAME.
12961 Assignment of sequential values by default is handled here. */
12964 build_enumerator (tree name
, tree value
, tree enumtype
, location_t loc
)
12970 /* If the VALUE was erroneous, pretend it wasn't there; that will
12971 result in the enum being assigned the next value in sequence. */
12972 if (value
== error_mark_node
)
12975 /* Remove no-op casts from the value. */
12977 STRIP_TYPE_NOPS (value
);
12979 if (! processing_template_decl
)
12981 /* Validate and default VALUE. */
12982 if (value
!= NULL_TREE
)
12984 if (!ENUM_UNDERLYING_TYPE (enumtype
))
12986 tree tmp_value
= build_expr_type_conversion (WANT_INT
| WANT_ENUM
,
12991 else if (! INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (value
)))
12992 value
= perform_implicit_conversion_flags
12993 (ENUM_UNDERLYING_TYPE (enumtype
), value
, tf_warning_or_error
,
12994 LOOKUP_IMPLICIT
| LOOKUP_NO_NARROWING
);
12996 if (value
== error_mark_node
)
12999 if (value
!= NULL_TREE
)
13001 value
= cxx_constant_value (value
);
13003 if (TREE_CODE (value
) != INTEGER_CST
13004 || ! INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (value
)))
13006 error ("enumerator value for %qD is not an integer constant",
13013 /* Default based on previous value. */
13014 if (value
== NULL_TREE
)
13016 if (TYPE_VALUES (enumtype
))
13021 /* C++03 7.2/4: If no initializer is specified for the first
13022 enumerator, the type is an unspecified integral
13023 type. Otherwise the type is the same as the type of the
13024 initializing value of the preceding enumerator unless the
13025 incremented value is not representable in that type, in
13026 which case the type is an unspecified integral type
13027 sufficient to contain the incremented value. */
13028 prev_value
= DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype
)));
13029 if (error_operand_p (prev_value
))
13030 value
= error_mark_node
;
13033 tree type
= TREE_TYPE (prev_value
);
13034 signop sgn
= TYPE_SIGN (type
);
13035 widest_int wi
= wi::add (wi::to_widest (prev_value
), 1, sgn
,
13039 bool pos
= !wi::neg_p (wi
, sgn
);
13040 if (!wi::fits_to_tree_p (wi
, type
))
13043 for (itk
= itk_int
; itk
!= itk_none
; itk
++)
13045 type
= integer_types
[itk
];
13046 if (type
!= NULL_TREE
13047 && (pos
|| !TYPE_UNSIGNED (type
))
13048 && wi::fits_to_tree_p (wi
, type
))
13051 if (type
&& cxx_dialect
< cxx11
13052 && itk
> itk_unsigned_long
)
13053 pedwarn (input_location
, OPT_Wlong_long
, pos
? "\
13054 incremented enumerator value is too large for %<unsigned long%>" : "\
13055 incremented enumerator value is too large for %<long%>");
13057 if (type
== NULL_TREE
)
13060 value
= wide_int_to_tree (type
, wi
);
13065 error ("overflow in enumeration values at %qD", name
);
13066 value
= error_mark_node
;
13071 value
= integer_zero_node
;
13074 /* Remove no-op casts from the value. */
13075 STRIP_TYPE_NOPS (value
);
13077 /* If the underlying type of the enum is fixed, check whether
13078 the enumerator values fits in the underlying type. If it
13079 does not fit, the program is ill-formed [C++0x dcl.enum]. */
13080 if (ENUM_UNDERLYING_TYPE (enumtype
)
13082 && TREE_CODE (value
) == INTEGER_CST
)
13084 if (!int_fits_type_p (value
, ENUM_UNDERLYING_TYPE (enumtype
)))
13085 error ("enumerator value %E is outside the range of underlying "
13086 "type %<%T%>", value
, ENUM_UNDERLYING_TYPE (enumtype
));
13088 /* Convert the value to the appropriate type. */
13089 value
= convert (ENUM_UNDERLYING_TYPE (enumtype
), value
);
13093 /* C++ associates enums with global, function, or class declarations. */
13094 context
= current_scope ();
13096 /* Build the actual enumeration constant. Note that the enumeration
13097 constants have the underlying type of the enum (if it is fixed)
13098 or the type of their initializer (if the underlying type of the
13099 enum is not fixed):
13103 If the underlying type is fixed, the type of each enumerator
13104 prior to the closing brace is the underlying type; if the
13105 initializing value of an enumerator cannot be represented by
13106 the underlying type, the program is ill-formed. If the
13107 underlying type is not fixed, the type of each enumerator is
13108 the type of its initializing value.
13110 If the underlying type is not fixed, it will be computed by
13111 finish_enum and we will reset the type of this enumerator. Of
13112 course, if we're processing a template, there may be no value. */
13113 type
= value
? TREE_TYPE (value
) : NULL_TREE
;
13115 decl
= build_decl (loc
, CONST_DECL
, name
, type
);
13117 DECL_CONTEXT (decl
) = enumtype
;
13118 TREE_CONSTANT (decl
) = 1;
13119 TREE_READONLY (decl
) = 1;
13120 DECL_INITIAL (decl
) = value
;
13122 if (context
&& context
== current_class_type
&& !SCOPED_ENUM_P (enumtype
))
13123 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
13124 on the TYPE_FIELDS list for `S'. (That's so that you can say
13125 things like `S::i' later.) */
13126 finish_member_declaration (decl
);
13130 /* Add this enumeration constant to the list for this type. */
13131 TYPE_VALUES (enumtype
) = tree_cons (name
, decl
, TYPE_VALUES (enumtype
));
13134 /* Look for an enumerator with the given NAME within the enumeration
13135 type ENUMTYPE. This routine is used primarily for qualified name
13136 lookup into an enumerator in C++0x, e.g.,
13138 enum class Color { Red, Green, Blue };
13140 Color color = Color::Red;
13142 Returns the value corresponding to the enumerator, or
13143 NULL_TREE if no such enumerator was found. */
13145 lookup_enumerator (tree enumtype
, tree name
)
13148 gcc_assert (enumtype
&& TREE_CODE (enumtype
) == ENUMERAL_TYPE
);
13150 e
= purpose_member (name
, TYPE_VALUES (enumtype
));
13151 return e
? TREE_VALUE (e
) : NULL_TREE
;
13155 /* We're defining DECL. Make sure that its type is OK. */
13158 check_function_type (tree decl
, tree current_function_parms
)
13160 tree fntype
= TREE_TYPE (decl
);
13161 tree return_type
= complete_type (TREE_TYPE (fntype
));
13163 /* In a function definition, arg types must be complete. */
13164 require_complete_types_for_parms (current_function_parms
);
13166 if (dependent_type_p (return_type
)
13167 || type_uses_auto (return_type
))
13169 if (!COMPLETE_OR_VOID_TYPE_P (return_type
)
13170 || (TYPE_FOR_JAVA (return_type
) && MAYBE_CLASS_TYPE_P (return_type
)))
13172 tree args
= TYPE_ARG_TYPES (fntype
);
13174 if (!COMPLETE_OR_VOID_TYPE_P (return_type
))
13175 error ("return type %q#T is incomplete", return_type
);
13177 error ("return type has Java class type %q#T", return_type
);
13179 /* Make it return void instead. */
13180 if (TREE_CODE (fntype
) == METHOD_TYPE
)
13181 fntype
= build_method_type_directly (TREE_TYPE (TREE_VALUE (args
)),
13183 TREE_CHAIN (args
));
13185 fntype
= build_function_type (void_type_node
, args
);
13187 = build_exception_variant (fntype
,
13188 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl
)));
13189 fntype
= (cp_build_type_attribute_variant
13190 (fntype
, TYPE_ATTRIBUTES (TREE_TYPE (decl
))));
13191 TREE_TYPE (decl
) = fntype
;
13194 abstract_virtuals_error (decl
, TREE_TYPE (fntype
));
13197 /* Create the FUNCTION_DECL for a function definition.
13198 DECLSPECS and DECLARATOR are the parts of the declaration;
13199 they describe the function's name and the type it returns,
13200 but twisted together in a fashion that parallels the syntax of C.
13202 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
13203 DECLARATOR is really the DECL for the function we are about to
13204 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
13205 indicating that the function is an inline defined in-class.
13207 This function creates a binding context for the function body
13208 as well as setting up the FUNCTION_DECL in current_function_decl.
13210 For C++, we must first check whether that datum makes any sense.
13211 For example, "class A local_a(1,2);" means that variable local_a
13212 is an aggregate of type A, which should have a constructor
13213 applied to it with the argument list [1, 2].
13215 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
13216 or may be a BLOCK if the function has been defined previously
13217 in this translation unit. On exit, DECL_INITIAL (decl1) will be
13218 error_mark_node if the function has never been defined, or
13219 a BLOCK if the function has been defined somewhere. */
13222 start_preparsed_function (tree decl1
, tree attrs
, int flags
)
13224 tree ctype
= NULL_TREE
;
13227 int doing_friend
= 0;
13228 cp_binding_level
*bl
;
13229 tree current_function_parms
;
13230 struct c_fileinfo
*finfo
13231 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1
)));
13232 bool honor_interface
;
13234 /* Sanity check. */
13235 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node
)));
13236 gcc_assert (TREE_CHAIN (void_list_node
) == NULL_TREE
);
13238 fntype
= TREE_TYPE (decl1
);
13239 if (TREE_CODE (fntype
) == METHOD_TYPE
)
13240 ctype
= TYPE_METHOD_BASETYPE (fntype
);
13242 /* ISO C++ 11.4/5. A friend function defined in a class is in
13243 the (lexical) scope of the class in which it is defined. */
13244 if (!ctype
&& DECL_FRIEND_P (decl1
))
13246 ctype
= DECL_FRIEND_CONTEXT (decl1
);
13248 /* CTYPE could be null here if we're dealing with a template;
13249 for example, `inline friend float foo()' inside a template
13250 will have no CTYPE set. */
13251 if (ctype
&& TREE_CODE (ctype
) != RECORD_TYPE
)
13257 if (DECL_DECLARED_INLINE_P (decl1
)
13258 && lookup_attribute ("noinline", attrs
))
13259 warning (0, "inline function %q+D given attribute noinline", decl1
);
13261 /* Handle gnu_inline attribute. */
13262 if (GNU_INLINE_P (decl1
))
13264 DECL_EXTERNAL (decl1
) = 1;
13265 DECL_NOT_REALLY_EXTERN (decl1
) = 0;
13266 DECL_INTERFACE_KNOWN (decl1
) = 1;
13267 DECL_DISREGARD_INLINE_LIMITS (decl1
) = 1;
13270 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1
))
13271 /* This is a constructor, we must ensure that any default args
13272 introduced by this definition are propagated to the clones
13273 now. The clones are used directly in overload resolution. */
13274 adjust_clone_args (decl1
);
13276 /* Sometimes we don't notice that a function is a static member, and
13277 build a METHOD_TYPE for it. Fix that up now. */
13278 gcc_assert (!(ctype
!= NULL_TREE
&& DECL_STATIC_FUNCTION_P (decl1
)
13279 && TREE_CODE (TREE_TYPE (decl1
)) == METHOD_TYPE
));
13281 /* Set up current_class_type, and enter the scope of the class, if
13284 push_nested_class (ctype
);
13285 else if (DECL_STATIC_FUNCTION_P (decl1
))
13286 push_nested_class (DECL_CONTEXT (decl1
));
13288 /* Now that we have entered the scope of the class, we must restore
13289 the bindings for any template parameters surrounding DECL1, if it
13290 is an inline member template. (Order is important; consider the
13291 case where a template parameter has the same name as a field of
13292 the class.) It is not until after this point that
13293 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
13294 if (flags
& SF_INCLASS_INLINE
)
13295 maybe_begin_member_template_processing (decl1
);
13297 /* Effective C++ rule 15. */
13299 && DECL_OVERLOADED_OPERATOR_P (decl1
) == NOP_EXPR
13300 && VOID_TYPE_P (TREE_TYPE (fntype
)))
13301 warning (OPT_Weffc__
, "%<operator=%> should return a reference to %<*this%>");
13303 /* Make the init_value nonzero so pushdecl knows this is not tentative.
13304 error_mark_node is replaced below (in poplevel) with the BLOCK. */
13305 if (!DECL_INITIAL (decl1
))
13306 DECL_INITIAL (decl1
) = error_mark_node
;
13308 /* This function exists in static storage.
13309 (This does not mean `static' in the C sense!) */
13310 TREE_STATIC (decl1
) = 1;
13312 /* We must call push_template_decl after current_class_type is set
13313 up. (If we are processing inline definitions after exiting a
13314 class scope, current_class_type will be NULL_TREE until set above
13315 by push_nested_class.) */
13316 if (processing_template_decl
)
13318 tree newdecl1
= push_template_decl (decl1
);
13319 if (newdecl1
== error_mark_node
)
13321 if (ctype
|| DECL_STATIC_FUNCTION_P (decl1
))
13322 pop_nested_class ();
13328 /* We are now in the scope of the function being defined. */
13329 current_function_decl
= decl1
;
13331 /* Save the parm names or decls from this function's declarator
13332 where store_parm_decls will find them. */
13333 current_function_parms
= DECL_ARGUMENTS (decl1
);
13335 /* Make sure the parameter and return types are reasonable. When
13336 you declare a function, these types can be incomplete, but they
13337 must be complete when you define the function. */
13338 check_function_type (decl1
, current_function_parms
);
13340 /* Build the return declaration for the function. */
13341 restype
= TREE_TYPE (fntype
);
13343 if (DECL_RESULT (decl1
) == NULL_TREE
)
13347 resdecl
= build_decl (input_location
, RESULT_DECL
, 0, restype
);
13348 DECL_ARTIFICIAL (resdecl
) = 1;
13349 DECL_IGNORED_P (resdecl
) = 1;
13350 DECL_RESULT (decl1
) = resdecl
;
13352 cp_apply_type_quals_to_decl (cp_type_quals (restype
), resdecl
);
13355 /* Let the user know we're compiling this function. */
13356 announce_function (decl1
);
13358 /* Record the decl so that the function name is defined.
13359 If we already have a decl for this name, and it is a FUNCTION_DECL,
13360 use the old decl. */
13361 if (!processing_template_decl
&& !(flags
& SF_PRE_PARSED
))
13363 /* A specialization is not used to guide overload resolution. */
13364 if (!DECL_FUNCTION_MEMBER_P (decl1
)
13365 && !(DECL_USE_TEMPLATE (decl1
) &&
13366 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1
))))
13368 tree olddecl
= pushdecl (decl1
);
13370 if (olddecl
== error_mark_node
)
13371 /* If something went wrong when registering the declaration,
13372 use DECL1; we have to have a FUNCTION_DECL to use when
13373 parsing the body of the function. */
13377 /* Otherwise, OLDDECL is either a previous declaration
13378 of the same function or DECL1 itself. */
13380 if (warn_missing_declarations
13381 && olddecl
== decl1
13382 && !DECL_MAIN_P (decl1
)
13383 && TREE_PUBLIC (decl1
)
13384 && !DECL_DECLARED_INLINE_P (decl1
))
13388 /* Check whether DECL1 is in an anonymous
13390 for (context
= DECL_CONTEXT (decl1
);
13392 context
= DECL_CONTEXT (context
))
13394 if (TREE_CODE (context
) == NAMESPACE_DECL
13395 && DECL_NAME (context
) == NULL_TREE
)
13399 if (context
== NULL
)
13400 warning (OPT_Wmissing_declarations
,
13401 "no previous declaration for %q+D", decl1
);
13409 /* We need to set the DECL_CONTEXT. */
13410 if (!DECL_CONTEXT (decl1
) && DECL_TEMPLATE_INFO (decl1
))
13411 DECL_CONTEXT (decl1
) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1
));
13413 fntype
= TREE_TYPE (decl1
);
13414 restype
= TREE_TYPE (fntype
);
13416 /* If #pragma weak applies, mark the decl appropriately now.
13417 The pragma only applies to global functions. Because
13418 determining whether or not the #pragma applies involves
13419 computing the mangled name for the declaration, we cannot
13420 apply the pragma until after we have merged this declaration
13421 with any previous declarations; if the original declaration
13422 has a linkage specification, that specification applies to
13423 the definition as well, and may affect the mangled name. */
13424 if (DECL_FILE_SCOPE_P (decl1
))
13425 maybe_apply_pragma_weak (decl1
);
13428 /* Reset this in case the call to pushdecl changed it. */
13429 current_function_decl
= decl1
;
13431 gcc_assert (DECL_INITIAL (decl1
));
13433 /* This function may already have been parsed, in which case just
13434 return; our caller will skip over the body without parsing. */
13435 if (DECL_INITIAL (decl1
) != error_mark_node
)
13438 /* Initialize RTL machinery. We cannot do this until
13439 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
13440 even when processing a template; this is how we get
13441 CFUN set up, and our per-function variables initialized.
13442 FIXME factor out the non-RTL stuff. */
13443 bl
= current_binding_level
;
13444 allocate_struct_function (decl1
, processing_template_decl
);
13446 /* Initialize the language data structures. Whenever we start
13447 a new function, we destroy temporaries in the usual way. */
13448 cfun
->language
= ggc_cleared_alloc
<language_function
> ();
13449 current_stmt_tree ()->stmts_are_full_exprs_p
= 1;
13450 current_binding_level
= bl
;
13452 if (!processing_template_decl
&& type_uses_auto (restype
))
13454 FNDECL_USED_AUTO (decl1
) = true;
13455 current_function_auto_return_pattern
= restype
;
13458 /* Start the statement-tree, start the tree now. */
13459 DECL_SAVED_TREE (decl1
) = push_stmt_list ();
13461 /* If we are (erroneously) defining a function that we have already
13462 defined before, wipe out what we knew before. */
13463 if (!DECL_PENDING_INLINE_P (decl1
))
13464 DECL_SAVED_FUNCTION_DATA (decl1
) = NULL
;
13466 if (ctype
&& !doing_friend
&& !DECL_STATIC_FUNCTION_P (decl1
))
13468 /* We know that this was set up by `grokclassfn'. We do not
13469 wait until `store_parm_decls', since evil parse errors may
13470 never get us to that point. Here we keep the consistency
13471 between `current_class_type' and `current_class_ptr'. */
13472 tree t
= DECL_ARGUMENTS (decl1
);
13474 gcc_assert (t
!= NULL_TREE
&& TREE_CODE (t
) == PARM_DECL
);
13475 gcc_assert (TYPE_PTR_P (TREE_TYPE (t
)));
13477 cp_function_chain
->x_current_class_ref
13478 = cp_build_indirect_ref (t
, RO_NULL
, tf_warning_or_error
);
13479 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
13480 cp_function_chain
->x_current_class_ptr
= t
;
13482 /* Constructors and destructors need to know whether they're "in
13483 charge" of initializing virtual base classes. */
13484 t
= DECL_CHAIN (t
);
13485 if (DECL_HAS_IN_CHARGE_PARM_P (decl1
))
13487 current_in_charge_parm
= t
;
13488 t
= DECL_CHAIN (t
);
13490 if (DECL_HAS_VTT_PARM_P (decl1
))
13492 gcc_assert (DECL_NAME (t
) == vtt_parm_identifier
);
13493 current_vtt_parm
= t
;
13497 honor_interface
= (!DECL_TEMPLATE_INSTANTIATION (decl1
)
13498 /* Implicitly-defined methods (like the
13499 destructor for a class in which no destructor
13500 is explicitly declared) must not be defined
13501 until their definition is needed. So, we
13502 ignore interface specifications for
13503 compiler-generated functions. */
13504 && !DECL_ARTIFICIAL (decl1
));
13506 if (processing_template_decl
)
13507 /* Don't mess with interface flags. */;
13508 else if (DECL_INTERFACE_KNOWN (decl1
))
13510 tree ctx
= decl_function_context (decl1
);
13512 if (DECL_NOT_REALLY_EXTERN (decl1
))
13513 DECL_EXTERNAL (decl1
) = 0;
13515 if (ctx
!= NULL_TREE
&& vague_linkage_p (ctx
))
13516 /* This is a function in a local class in an extern inline
13517 or template function. */
13518 comdat_linkage (decl1
);
13520 /* If this function belongs to an interface, it is public.
13521 If it belongs to someone else's interface, it is also external.
13522 This only affects inlines and template instantiations. */
13523 else if (!finfo
->interface_unknown
&& honor_interface
)
13525 if (DECL_DECLARED_INLINE_P (decl1
)
13526 || DECL_TEMPLATE_INSTANTIATION (decl1
))
13528 DECL_EXTERNAL (decl1
)
13529 = (finfo
->interface_only
13530 || (DECL_DECLARED_INLINE_P (decl1
)
13531 && ! flag_implement_inlines
13532 && !DECL_VINDEX (decl1
)));
13534 /* For WIN32 we also want to put these in linkonce sections. */
13535 maybe_make_one_only (decl1
);
13538 DECL_EXTERNAL (decl1
) = 0;
13539 DECL_INTERFACE_KNOWN (decl1
) = 1;
13540 /* If this function is in an interface implemented in this file,
13541 make sure that the back end knows to emit this function
13543 if (!DECL_EXTERNAL (decl1
))
13544 mark_needed (decl1
);
13546 else if (finfo
->interface_unknown
&& finfo
->interface_only
13547 && honor_interface
)
13549 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
13550 interface, we will have both finfo->interface_unknown and
13551 finfo->interface_only set. In that case, we don't want to
13552 use the normal heuristics because someone will supply a
13553 #pragma implementation elsewhere, and deducing it here would
13554 produce a conflict. */
13555 comdat_linkage (decl1
);
13556 DECL_EXTERNAL (decl1
) = 0;
13557 DECL_INTERFACE_KNOWN (decl1
) = 1;
13558 DECL_DEFER_OUTPUT (decl1
) = 1;
13562 /* This is a definition, not a reference.
13563 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
13564 if (!GNU_INLINE_P (decl1
))
13565 DECL_EXTERNAL (decl1
) = 0;
13567 if ((DECL_DECLARED_INLINE_P (decl1
)
13568 || DECL_TEMPLATE_INSTANTIATION (decl1
))
13569 && ! DECL_INTERFACE_KNOWN (decl1
))
13570 DECL_DEFER_OUTPUT (decl1
) = 1;
13572 DECL_INTERFACE_KNOWN (decl1
) = 1;
13575 /* Determine the ELF visibility attribute for the function. We must not
13576 do this before calling "pushdecl", as we must allow "duplicate_decls"
13577 to merge any attributes appropriately. We also need to wait until
13579 if (!DECL_CLONED_FUNCTION_P (decl1
))
13580 determine_visibility (decl1
);
13582 if (!processing_template_decl
)
13583 maybe_instantiate_noexcept (decl1
);
13585 begin_scope (sk_function_parms
, decl1
);
13589 if (DECL_DESTRUCTOR_P (decl1
)
13590 || (DECL_CONSTRUCTOR_P (decl1
)
13591 && targetm
.cxx
.cdtor_returns_this ()))
13593 cdtor_label
= build_decl (input_location
,
13594 LABEL_DECL
, NULL_TREE
, NULL_TREE
);
13595 DECL_CONTEXT (cdtor_label
) = current_function_decl
;
13598 start_fname_decls ();
13600 store_parm_decls (current_function_parms
);
13606 /* Like start_preparsed_function, except that instead of a
13607 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
13609 Returns true on success. If the DECLARATOR is not suitable
13610 for a function, we return false, which tells the parser to
13611 skip the entire function. */
13614 start_function (cp_decl_specifier_seq
*declspecs
,
13615 const cp_declarator
*declarator
,
13620 decl1
= grokdeclarator (declarator
, declspecs
, FUNCDEF
, 1, &attrs
);
13621 if (decl1
== error_mark_node
)
13623 /* If the declarator is not suitable for a function definition,
13624 cause a syntax error. */
13625 if (decl1
== NULL_TREE
|| TREE_CODE (decl1
) != FUNCTION_DECL
)
13627 error ("invalid function declaration");
13631 if (DECL_MAIN_P (decl1
))
13632 /* main must return int. grokfndecl should have corrected it
13633 (and issued a diagnostic) if the user got it wrong. */
13634 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1
)),
13635 integer_type_node
));
13637 return start_preparsed_function (decl1
, attrs
, /*flags=*/SF_DEFAULT
);
13640 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
13644 use_eh_spec_block (tree fn
)
13646 return (flag_exceptions
&& flag_enforce_eh_specs
13647 && !processing_template_decl
13648 && !type_throw_all_p (TREE_TYPE (fn
))
13649 /* We insert the EH_SPEC_BLOCK only in the original
13650 function; then, it is copied automatically to the
13652 && !DECL_CLONED_FUNCTION_P (fn
)
13653 /* Implicitly-generated constructors and destructors have
13654 exception specifications. However, those specifications
13655 are the union of the possible exceptions specified by the
13656 constructors/destructors for bases and members, so no
13657 unallowed exception will ever reach this function. By
13658 not creating the EH_SPEC_BLOCK we save a little memory,
13659 and we avoid spurious warnings about unreachable
13661 && !DECL_DEFAULTED_FN (fn
));
13664 /* Store the parameter declarations into the current function declaration.
13665 This is called after parsing the parameter declarations, before
13666 digesting the body of the function.
13668 Also install to binding contour return value identifier, if any. */
13671 store_parm_decls (tree current_function_parms
)
13673 tree fndecl
= current_function_decl
;
13676 /* This is a chain of any other decls that came in among the parm
13677 declarations. If a parm is declared with enum {foo, bar} x;
13678 then CONST_DECLs for foo and bar are put here. */
13679 tree nonparms
= NULL_TREE
;
13681 if (current_function_parms
)
13683 /* This case is when the function was defined with an ANSI prototype.
13684 The parms already have decls, so we need not do anything here
13685 except record them as in effect
13686 and complain if any redundant old-style parm decls were written. */
13688 tree specparms
= current_function_parms
;
13691 /* Must clear this because it might contain TYPE_DECLs declared
13693 current_binding_level
->names
= NULL
;
13695 /* If we're doing semantic analysis, then we'll call pushdecl
13696 for each of these. We must do them in reverse order so that
13697 they end in the correct forward order. */
13698 specparms
= nreverse (specparms
);
13700 for (parm
= specparms
; parm
; parm
= next
)
13702 next
= DECL_CHAIN (parm
);
13703 if (TREE_CODE (parm
) == PARM_DECL
)
13705 if (DECL_NAME (parm
) == NULL_TREE
13706 || !VOID_TYPE_P (parm
))
13709 error ("parameter %qD declared void", parm
);
13713 /* If we find an enum constant or a type tag,
13714 put it aside for the moment. */
13715 TREE_CHAIN (parm
) = NULL_TREE
;
13716 nonparms
= chainon (nonparms
, parm
);
13720 /* Get the decls in their original chain order and record in the
13721 function. This is all and only the PARM_DECLs that were
13722 pushed into scope by the loop above. */
13723 DECL_ARGUMENTS (fndecl
) = getdecls ();
13726 DECL_ARGUMENTS (fndecl
) = NULL_TREE
;
13728 /* Now store the final chain of decls for the arguments
13729 as the decl-chain of the current lexical scope.
13730 Put the enumerators in as well, at the front so that
13731 DECL_ARGUMENTS is not modified. */
13732 current_binding_level
->names
= chainon (nonparms
, DECL_ARGUMENTS (fndecl
));
13734 if (use_eh_spec_block (current_function_decl
))
13735 current_eh_spec_block
= begin_eh_spec_block ();
13739 /* We have finished doing semantic analysis on DECL, but have not yet
13740 generated RTL for its body. Save away our current state, so that
13741 when we want to generate RTL later we know what to do. */
13744 save_function_data (tree decl
)
13746 struct language_function
*f
;
13748 /* Save the language-specific per-function data so that we can
13749 get it back when we really expand this function. */
13750 gcc_assert (!DECL_PENDING_INLINE_P (decl
));
13753 f
= ggc_alloc
<language_function
> ();
13754 memcpy (f
, cp_function_chain
, sizeof (struct language_function
));
13755 DECL_SAVED_FUNCTION_DATA (decl
) = f
;
13757 /* Clear out the bits we don't need. */
13758 f
->base
.x_stmt_tree
.x_cur_stmt_list
= NULL
;
13759 f
->bindings
= NULL
;
13760 f
->x_local_names
= NULL
;
13761 f
->base
.local_typedefs
= NULL
;
13765 /* Set the return value of the constructor (if present). */
13768 finish_constructor_body (void)
13773 if (targetm
.cxx
.cdtor_returns_this ()
13774 && (! TYPE_FOR_JAVA (current_class_type
)))
13776 /* Any return from a constructor will end up here. */
13777 add_stmt (build_stmt (input_location
, LABEL_EXPR
, cdtor_label
));
13779 val
= DECL_ARGUMENTS (current_function_decl
);
13780 val
= build2 (MODIFY_EXPR
, TREE_TYPE (val
),
13781 DECL_RESULT (current_function_decl
), val
);
13782 /* Return the address of the object. */
13783 exprstmt
= build_stmt (input_location
, RETURN_EXPR
, val
);
13784 add_stmt (exprstmt
);
13788 /* Do all the processing for the beginning of a destructor; set up the
13789 vtable pointers and cleanups for bases and members. */
13792 begin_destructor_body (void)
13794 tree compound_stmt
;
13796 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
13797 issued an error message. We still want to try to process the
13798 body of the function, but initialize_vtbl_ptrs will crash if
13799 TYPE_BINFO is NULL. */
13800 if (COMPLETE_TYPE_P (current_class_type
))
13802 compound_stmt
= begin_compound_stmt (0);
13803 /* Make all virtual function table pointers in non-virtual base
13804 classes point to CURRENT_CLASS_TYPE's virtual function
13806 initialize_vtbl_ptrs (current_class_ptr
);
13807 finish_compound_stmt (compound_stmt
);
13809 /* Insert a cleanup to let the back end know that the object is dead
13810 when we exit the destructor, either normally or via exception. */
13811 tree clobber
= build_constructor (current_class_type
, NULL
);
13812 TREE_THIS_VOLATILE (clobber
) = true;
13813 tree exprstmt
= build2 (MODIFY_EXPR
, current_class_type
,
13814 current_class_ref
, clobber
);
13815 finish_decl_cleanup (NULL_TREE
, exprstmt
);
13817 /* And insert cleanups for our bases and members so that they
13818 will be properly destroyed if we throw. */
13819 push_base_cleanups ();
13823 /* At the end of every destructor we generate code to delete the object if
13824 necessary. Do that now. */
13827 finish_destructor_body (void)
13831 /* Any return from a destructor will end up here; that way all base
13832 and member cleanups will be run when the function returns. */
13833 add_stmt (build_stmt (input_location
, LABEL_EXPR
, cdtor_label
));
13835 /* In a virtual destructor, we must call delete. */
13836 if (DECL_VIRTUAL_P (current_function_decl
))
13839 tree virtual_size
= cxx_sizeof (current_class_type
);
13843 At the point of definition of a virtual destructor (including
13844 an implicit definition), non-placement operator delete shall
13845 be looked up in the scope of the destructor's class and if
13846 found shall be accessible and unambiguous. */
13847 exprstmt
= build_op_delete_call (DELETE_EXPR
, current_class_ptr
,
13849 /*global_p=*/false,
13850 /*placement=*/NULL_TREE
,
13851 /*alloc_fn=*/NULL_TREE
,
13852 tf_warning_or_error
);
13854 if_stmt
= begin_if_stmt ();
13855 finish_if_stmt_cond (build2 (BIT_AND_EXPR
, integer_type_node
,
13856 current_in_charge_parm
,
13859 finish_expr_stmt (exprstmt
);
13860 finish_then_clause (if_stmt
);
13861 finish_if_stmt (if_stmt
);
13864 if (targetm
.cxx
.cdtor_returns_this ())
13868 val
= DECL_ARGUMENTS (current_function_decl
);
13869 val
= build2 (MODIFY_EXPR
, TREE_TYPE (val
),
13870 DECL_RESULT (current_function_decl
), val
);
13871 /* Return the address of the object. */
13872 exprstmt
= build_stmt (input_location
, RETURN_EXPR
, val
);
13873 add_stmt (exprstmt
);
13877 /* Do the necessary processing for the beginning of a function body, which
13878 in this case includes member-initializers, but not the catch clauses of
13879 a function-try-block. Currently, this means opening a binding level
13880 for the member-initializers (in a ctor), member cleanups (in a dtor),
13881 and capture proxies (in a lambda operator()). */
13884 begin_function_body (void)
13888 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl
))
13891 if (processing_template_decl
)
13892 /* Do nothing now. */;
13894 /* Always keep the BLOCK node associated with the outermost pair of
13895 curly braces of a function. These are needed for correct
13896 operation of dwarfout.c. */
13897 keep_next_level (true);
13899 stmt
= begin_compound_stmt (BCS_FN_BODY
);
13901 if (processing_template_decl
)
13902 /* Do nothing now. */;
13903 else if (DECL_DESTRUCTOR_P (current_function_decl
))
13904 begin_destructor_body ();
13909 /* Do the processing for the end of a function body. Currently, this means
13910 closing out the cleanups for fully-constructed bases and members, and in
13911 the case of the destructor, deleting the object if desired. Again, this
13912 is only meaningful for [cd]tors, since they are the only functions where
13913 there is a significant distinction between the main body and any
13914 function catch clauses. Handling, say, main() return semantics here
13915 would be wrong, as flowing off the end of a function catch clause for
13916 main() would also need to return 0. */
13919 finish_function_body (tree compstmt
)
13921 if (compstmt
== NULL_TREE
)
13924 /* Close the block. */
13925 finish_compound_stmt (compstmt
);
13927 if (processing_template_decl
)
13928 /* Do nothing now. */;
13929 else if (DECL_CONSTRUCTOR_P (current_function_decl
))
13930 finish_constructor_body ();
13931 else if (DECL_DESTRUCTOR_P (current_function_decl
))
13932 finish_destructor_body ();
13935 /* Given a function, returns the BLOCK corresponding to the outermost level
13936 of curly braces, skipping the artificial block created for constructor
13940 outer_curly_brace_block (tree fndecl
)
13942 tree block
= BLOCK_SUBBLOCKS (DECL_INITIAL (fndecl
));
13943 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl
))
13944 /* Skip the artificial function body block. */
13945 block
= BLOCK_SUBBLOCKS (block
);
13949 /* If FNDECL is a class's key method, add the class to the list of
13950 keyed classes that should be emitted. */
13953 record_key_method_defined (tree fndecl
)
13955 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl
)
13956 && DECL_VIRTUAL_P (fndecl
)
13957 && !processing_template_decl
)
13959 tree fnclass
= DECL_CONTEXT (fndecl
);
13960 if (fndecl
== CLASSTYPE_KEY_METHOD (fnclass
))
13961 keyed_classes
= tree_cons (NULL_TREE
, fnclass
, keyed_classes
);
13965 /* Subroutine of finish_function.
13966 Save the body of constexpr functions for possible
13967 future compile time evaluation. */
13970 maybe_save_function_definition (tree fun
)
13972 if (!processing_template_decl
13973 && DECL_DECLARED_CONSTEXPR_P (fun
)
13974 && !DECL_CLONED_FUNCTION_P (fun
))
13975 register_constexpr_fundef (fun
, DECL_SAVED_TREE (fun
));
13978 /* Finish up a function declaration and compile that function
13979 all the way to assembler language output. The free the storage
13980 for the function definition.
13982 FLAGS is a bitwise or of the following values:
13984 We just finished processing the body of an in-class inline
13985 function definition. (This processing will have taken place
13986 after the class definition is complete.) */
13989 finish_function (int flags
)
13991 tree fndecl
= current_function_decl
;
13992 tree fntype
, ctype
= NULL_TREE
;
13993 int inclass_inline
= (flags
& 2) != 0;
13995 /* When we get some parse errors, we can end up without a
13996 current_function_decl, so cope. */
13997 if (fndecl
== NULL_TREE
)
13998 return error_mark_node
;
14000 if (c_dialect_objc ())
14001 objc_finish_function ();
14003 gcc_assert (!defer_mark_used_calls
);
14004 defer_mark_used_calls
= true;
14006 record_key_method_defined (fndecl
);
14008 fntype
= TREE_TYPE (fndecl
);
14010 /* TREE_READONLY (fndecl) = 1;
14011 This caused &foo to be of type ptr-to-const-function
14012 which then got a warning when stored in a ptr-to-function variable. */
14014 gcc_assert (building_stmt_list_p ());
14015 /* The current function is being defined, so its DECL_INITIAL should
14016 be set, and unless there's a multiple definition, it should be
14017 error_mark_node. */
14018 gcc_assert (DECL_INITIAL (fndecl
) == error_mark_node
);
14020 /* For a cloned function, we've already got all the code we need;
14021 there's no need to add any extra bits. */
14022 if (!DECL_CLONED_FUNCTION_P (fndecl
))
14024 /* Make it so that `main' always returns 0 by default. */
14025 if (DECL_MAIN_P (current_function_decl
))
14026 finish_return_stmt (integer_zero_node
);
14028 if (use_eh_spec_block (current_function_decl
))
14029 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
14030 (TREE_TYPE (current_function_decl
)),
14031 current_eh_spec_block
);
14034 /* If we're saving up tree structure, tie off the function now. */
14035 DECL_SAVED_TREE (fndecl
) = pop_stmt_list (DECL_SAVED_TREE (fndecl
));
14037 if (fn_contains_cilk_spawn_p (cfun
) && !processing_template_decl
)
14038 cfun
->cilk_frame_decl
= insert_cilk_frame (fndecl
);
14040 finish_fname_decls ();
14042 /* If this function can't throw any exceptions, remember that. */
14043 if (!processing_template_decl
14044 && !cp_function_chain
->can_throw
14045 && !flag_non_call_exceptions
14046 && !decl_replaceable_p (fndecl
))
14047 TREE_NOTHROW (fndecl
) = 1;
14049 /* This must come after expand_function_end because cleanups might
14050 have declarations (from inline functions) that need to go into
14051 this function's blocks. */
14053 /* If the current binding level isn't the outermost binding level
14054 for this function, either there is a bug, or we have experienced
14055 syntax errors and the statement tree is malformed. */
14056 if (current_binding_level
->kind
!= sk_function_parms
)
14058 /* Make sure we have already experienced errors. */
14059 gcc_assert (errorcount
);
14061 /* Throw away the broken statement tree and extra binding
14063 DECL_SAVED_TREE (fndecl
) = alloc_stmt_list ();
14065 while (current_binding_level
->kind
!= sk_function_parms
)
14067 if (current_binding_level
->kind
== sk_class
)
14068 pop_nested_class ();
14070 poplevel (0, 0, 0);
14073 poplevel (1, 0, 1);
14075 /* Statements should always be full-expressions at the outermost set
14076 of curly braces for a function. */
14077 gcc_assert (stmts_are_full_exprs_p ());
14079 /* If there are no return statements in a function with auto return type,
14080 the return type is void. But if the declared type is something like
14081 auto*, this is an error. */
14082 if (!processing_template_decl
&& FNDECL_USED_AUTO (fndecl
)
14083 && TREE_TYPE (fntype
) == current_function_auto_return_pattern
)
14085 if (!is_auto (current_function_auto_return_pattern
)
14086 && !current_function_returns_value
&& !current_function_returns_null
)
14088 error ("no return statements in function returning %qT",
14089 current_function_auto_return_pattern
);
14090 inform (input_location
, "only plain %<auto%> return type can be "
14091 "deduced to %<void%>");
14093 apply_deduced_return_type (fndecl
, void_type_node
);
14094 fntype
= TREE_TYPE (fndecl
);
14097 /* Save constexpr function body before it gets munged by
14098 the NRV transformation. */
14099 maybe_save_function_definition (fndecl
);
14101 /* Set up the named return value optimization, if we can. Candidate
14102 variables are selected in check_return_expr. */
14103 if (current_function_return_value
)
14105 tree r
= current_function_return_value
;
14108 if (r
!= error_mark_node
14109 /* This is only worth doing for fns that return in memory--and
14110 simpler, since we don't have to worry about promoted modes. */
14111 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl
)), fndecl
)
14112 /* Only allow this for variables declared in the outer scope of
14113 the function so we know that their lifetime always ends with a
14114 return; see g++.dg/opt/nrv6.C. We could be more flexible if
14115 we were to do this optimization in tree-ssa. */
14116 && (outer
= outer_curly_brace_block (fndecl
))
14117 && chain_member (r
, BLOCK_VARS (outer
)))
14118 finalize_nrv (&DECL_SAVED_TREE (fndecl
), r
, DECL_RESULT (fndecl
));
14120 current_function_return_value
= NULL_TREE
;
14123 /* Remember that we were in class scope. */
14124 if (current_class_name
)
14125 ctype
= current_class_type
;
14127 /* Must mark the RESULT_DECL as being in this function. */
14128 DECL_CONTEXT (DECL_RESULT (fndecl
)) = fndecl
;
14130 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
14131 to the FUNCTION_DECL node itself. */
14132 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl
)) = fndecl
;
14134 /* Save away current state, if appropriate. */
14135 if (!processing_template_decl
)
14136 save_function_data (fndecl
);
14138 /* Complain if there's just no return statement. */
14139 if (warn_return_type
14140 && !VOID_TYPE_P (TREE_TYPE (fntype
))
14141 && !dependent_type_p (TREE_TYPE (fntype
))
14142 && !current_function_returns_value
&& !current_function_returns_null
14143 /* Don't complain if we abort or throw. */
14144 && !current_function_returns_abnormally
14145 /* Don't complain if there's an infinite loop. */
14146 && !current_function_infinite_loop
14147 /* Don't complain if we are declared noreturn. */
14148 && !TREE_THIS_VOLATILE (fndecl
)
14149 && !DECL_NAME (DECL_RESULT (fndecl
))
14150 && !TREE_NO_WARNING (fndecl
)
14151 /* Structor return values (if any) are set by the compiler. */
14152 && !DECL_CONSTRUCTOR_P (fndecl
)
14153 && !DECL_DESTRUCTOR_P (fndecl
)
14154 && targetm
.warn_func_return (fndecl
))
14156 warning (OPT_Wreturn_type
,
14157 "no return statement in function returning non-void");
14158 TREE_NO_WARNING (fndecl
) = 1;
14161 /* Store the end of the function, so that we get good line number
14162 info for the epilogue. */
14163 cfun
->function_end_locus
= input_location
;
14165 /* Complain about parameters that are only set, but never otherwise used. */
14166 if (warn_unused_but_set_parameter
14167 && !processing_template_decl
14168 && errorcount
== unused_but_set_errorcount
14169 && !DECL_CLONED_FUNCTION_P (fndecl
))
14173 for (decl
= DECL_ARGUMENTS (fndecl
);
14175 decl
= DECL_CHAIN (decl
))
14176 if (TREE_USED (decl
)
14177 && TREE_CODE (decl
) == PARM_DECL
14178 && !DECL_READ_P (decl
)
14179 && DECL_NAME (decl
)
14180 && !DECL_ARTIFICIAL (decl
)
14181 && !TREE_NO_WARNING (decl
)
14182 && !DECL_IN_SYSTEM_HEADER (decl
)
14183 && TREE_TYPE (decl
) != error_mark_node
14184 && TREE_CODE (TREE_TYPE (decl
)) != REFERENCE_TYPE
14185 && (!CLASS_TYPE_P (TREE_TYPE (decl
))
14186 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl
))))
14187 warning (OPT_Wunused_but_set_parameter
,
14188 "parameter %q+D set but not used", decl
);
14189 unused_but_set_errorcount
= errorcount
;
14192 /* Complain about locally defined typedefs that are not used in this
14194 maybe_warn_unused_local_typedefs ();
14196 /* Genericize before inlining. */
14197 if (!processing_template_decl
)
14199 struct language_function
*f
= DECL_SAVED_FUNCTION_DATA (fndecl
);
14200 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE
, fndecl
);
14201 cp_genericize (fndecl
);
14202 /* Clear out the bits we don't need. */
14203 f
->x_current_class_ptr
= NULL
;
14204 f
->x_current_class_ref
= NULL
;
14205 f
->x_eh_spec_block
= NULL
;
14206 f
->x_in_charge_parm
= NULL
;
14207 f
->x_vtt_parm
= NULL
;
14208 f
->x_return_value
= NULL
;
14209 f
->bindings
= NULL
;
14210 f
->extern_decl_map
= NULL
;
14211 f
->infinite_loops
= NULL
;
14213 /* Clear out the bits we don't need. */
14214 local_names
= NULL
;
14216 /* We're leaving the context of this function, so zap cfun. It's still in
14217 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
14219 current_function_decl
= NULL
;
14221 /* If this is an in-class inline definition, we may have to pop the
14222 bindings for the template parameters that we added in
14223 maybe_begin_member_template_processing when start_function was
14225 if (inclass_inline
)
14226 maybe_end_member_template_processing ();
14228 /* Leave the scope of the class. */
14230 pop_nested_class ();
14235 current_function_decl
= NULL_TREE
;
14237 defer_mark_used_calls
= false;
14238 if (deferred_mark_used_calls
)
14243 FOR_EACH_VEC_SAFE_ELT (deferred_mark_used_calls
, i
, decl
)
14245 vec_free (deferred_mark_used_calls
);
14251 /* Create the FUNCTION_DECL for a function definition.
14252 DECLSPECS and DECLARATOR are the parts of the declaration;
14253 they describe the return type and the name of the function,
14254 but twisted together in a fashion that parallels the syntax of C.
14256 This function creates a binding context for the function body
14257 as well as setting up the FUNCTION_DECL in current_function_decl.
14259 Returns a FUNCTION_DECL on success.
14261 If the DECLARATOR is not suitable for a function (it defines a datum
14262 instead), we return 0, which tells yyparse to report a parse error.
14264 May return void_type_node indicating that this method is actually
14265 a friend. See grokfield for more details.
14267 Came here with a `.pushlevel' .
14269 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
14270 CHANGES TO CODE IN `grokfield'. */
14273 grokmethod (cp_decl_specifier_seq
*declspecs
,
14274 const cp_declarator
*declarator
, tree attrlist
)
14276 tree fndecl
= grokdeclarator (declarator
, declspecs
, MEMFUNCDEF
, 0,
14279 if (fndecl
== error_mark_node
)
14280 return error_mark_node
;
14282 if (fndecl
== NULL
|| TREE_CODE (fndecl
) != FUNCTION_DECL
)
14284 error ("invalid member function declaration");
14285 return error_mark_node
;
14289 cplus_decl_attributes (&fndecl
, attrlist
, 0);
14291 /* Pass friends other than inline friend functions back. */
14292 if (fndecl
== void_type_node
)
14295 if (DECL_IN_AGGR_P (fndecl
))
14297 if (DECL_CLASS_SCOPE_P (fndecl
))
14298 error ("%qD is already defined in class %qT", fndecl
,
14299 DECL_CONTEXT (fndecl
));
14300 return error_mark_node
;
14303 check_template_shadow (fndecl
);
14305 DECL_COMDAT (fndecl
) = 1;
14306 DECL_DECLARED_INLINE_P (fndecl
) = 1;
14307 DECL_NO_INLINE_WARNING_P (fndecl
) = 1;
14309 /* We process method specializations in finish_struct_1. */
14310 if (processing_template_decl
&& !DECL_TEMPLATE_SPECIALIZATION (fndecl
))
14312 fndecl
= push_template_decl (fndecl
);
14313 if (fndecl
== error_mark_node
)
14317 if (! DECL_FRIEND_P (fndecl
))
14319 if (DECL_CHAIN (fndecl
))
14321 fndecl
= copy_node (fndecl
);
14322 TREE_CHAIN (fndecl
) = NULL_TREE
;
14326 cp_finish_decl (fndecl
, NULL_TREE
, false, NULL_TREE
, 0);
14328 DECL_IN_AGGR_P (fndecl
) = 1;
14333 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
14334 we can lay it out later, when and if its type becomes complete.
14336 Also handle constexpr variables where the initializer involves
14337 an unlowered PTRMEM_CST because the class isn't complete yet. */
14340 maybe_register_incomplete_var (tree var
)
14342 gcc_assert (VAR_P (var
));
14344 /* Keep track of variables with incomplete types. */
14345 if (!processing_template_decl
&& TREE_TYPE (var
) != error_mark_node
14346 && DECL_EXTERNAL (var
))
14348 tree inner_type
= TREE_TYPE (var
);
14350 while (TREE_CODE (inner_type
) == ARRAY_TYPE
)
14351 inner_type
= TREE_TYPE (inner_type
);
14352 inner_type
= TYPE_MAIN_VARIANT (inner_type
);
14354 if ((!COMPLETE_TYPE_P (inner_type
) && CLASS_TYPE_P (inner_type
))
14355 /* RTTI TD entries are created while defining the type_info. */
14356 || (TYPE_LANG_SPECIFIC (inner_type
)
14357 && TYPE_BEING_DEFINED (inner_type
)))
14359 incomplete_var iv
= {var
, inner_type
};
14360 vec_safe_push (incomplete_vars
, iv
);
14362 else if (!(DECL_LANG_SPECIFIC (var
) && DECL_TEMPLATE_INFO (var
))
14363 && decl_constant_var_p (var
)
14364 && (TYPE_PTRMEM_P (inner_type
) || CLASS_TYPE_P (inner_type
)))
14366 /* When the outermost open class is complete we can resolve any
14367 pointers-to-members. */
14368 tree context
= outermost_open_class ();
14369 incomplete_var iv
= {var
, context
};
14370 vec_safe_push (incomplete_vars
, iv
);
14375 /* Called when a class type (given by TYPE) is defined. If there are
14376 any existing VAR_DECLs whose type has been completed by this
14377 declaration, update them now. */
14380 complete_vars (tree type
)
14383 incomplete_var
*iv
;
14385 for (ix
= 0; vec_safe_iterate (incomplete_vars
, ix
, &iv
); )
14387 if (same_type_p (type
, iv
->incomplete_type
))
14389 tree var
= iv
->decl
;
14390 tree type
= TREE_TYPE (var
);
14392 if (TYPE_MAIN_VARIANT (strip_array_types (type
))
14393 == iv
->incomplete_type
)
14395 /* Complete the type of the variable. The VAR_DECL itself
14396 will be laid out in expand_expr. */
14397 complete_type (type
);
14398 cp_apply_type_quals_to_decl (cp_type_quals (type
), var
);
14401 if (DECL_INITIAL (var
)
14402 && decl_constant_var_p (var
))
14403 DECL_INITIAL (var
) = cplus_expand_constant (DECL_INITIAL (var
));
14405 /* Remove this entry from the list. */
14406 incomplete_vars
->unordered_remove (ix
);
14412 /* Check for pending declarations which may have abstract type. */
14413 complete_type_check_abstract (type
);
14416 /* If DECL is of a type which needs a cleanup, build and return an
14417 expression to perform that cleanup here. Return NULL_TREE if no
14418 cleanup need be done. */
14421 cxx_maybe_build_cleanup (tree decl
, tsubst_flags_t complain
)
14427 /* Assume no cleanup is required. */
14428 cleanup
= NULL_TREE
;
14430 if (error_operand_p (decl
))
14433 /* Handle "__attribute__((cleanup))". We run the cleanup function
14434 before the destructor since the destructor is what actually
14435 terminates the lifetime of the object. */
14436 attr
= lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl
));
14443 /* Get the name specified by the user for the cleanup function. */
14444 id
= TREE_VALUE (TREE_VALUE (attr
));
14445 /* Look up the name to find the cleanup function to call. It is
14446 important to use lookup_name here because that is what is
14447 used in c-common.c:handle_cleanup_attribute when performing
14448 initial checks on the attribute. Note that those checks
14449 include ensuring that the function found is not an overloaded
14450 function, or an object with an overloaded call operator,
14451 etc.; we can rely on the fact that the function found is an
14452 ordinary FUNCTION_DECL. */
14453 fn
= lookup_name (id
);
14454 arg
= build_address (decl
);
14456 cleanup
= cp_build_function_call_nary (fn
, complain
, arg
, NULL_TREE
);
14457 if (cleanup
== error_mark_node
)
14458 return error_mark_node
;
14460 /* Handle ordinary C++ destructors. */
14461 type
= TREE_TYPE (decl
);
14462 if (type_build_dtor_call (type
))
14464 int flags
= LOOKUP_NORMAL
|LOOKUP_NONVIRTUAL
|LOOKUP_DESTRUCTOR
;
14468 if (TREE_CODE (type
) == ARRAY_TYPE
)
14471 addr
= build_address (decl
);
14473 call
= build_delete (TREE_TYPE (addr
), addr
,
14474 sfk_complete_destructor
, flags
, 0, complain
);
14475 if (call
== error_mark_node
)
14476 cleanup
= error_mark_node
;
14477 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type
))
14478 /* Discard the call. */;
14480 cleanup
= cp_build_compound_expr (cleanup
, call
, complain
);
14485 /* build_delete sets the location of the destructor call to the
14486 current location, even though the destructor is going to be
14487 called later, at the end of the current scope. This can lead to
14488 a "jumpy" behaviour for users of debuggers when they step around
14489 the end of the block. So let's unset the location of the
14490 destructor call instead. */
14491 if (cleanup
!= NULL
&& EXPR_P (cleanup
))
14492 SET_EXPR_LOCATION (cleanup
, UNKNOWN_LOCATION
);
14495 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl
))))
14496 /* Treat objects with destructors as used; the destructor may do
14497 something substantive. */
14504 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
14505 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
14506 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
14509 static_fn_type (tree memfntype
)
14514 if (TYPE_PTRMEMFUNC_P (memfntype
))
14515 memfntype
= TYPE_PTRMEMFUNC_FN_TYPE (memfntype
);
14516 if (POINTER_TYPE_P (memfntype
)
14517 || TREE_CODE (memfntype
) == FUNCTION_DECL
)
14518 memfntype
= TREE_TYPE (memfntype
);
14519 if (TREE_CODE (memfntype
) == FUNCTION_TYPE
)
14521 gcc_assert (TREE_CODE (memfntype
) == METHOD_TYPE
);
14522 args
= TYPE_ARG_TYPES (memfntype
);
14523 cp_ref_qualifier rqual
= type_memfn_rqual (memfntype
);
14524 fntype
= build_function_type (TREE_TYPE (memfntype
), TREE_CHAIN (args
));
14525 fntype
= apply_memfn_quals (fntype
, type_memfn_quals (memfntype
), rqual
);
14526 fntype
= (cp_build_type_attribute_variant
14527 (fntype
, TYPE_ATTRIBUTES (memfntype
)));
14528 fntype
= (build_exception_variant
14529 (fntype
, TYPE_RAISES_EXCEPTIONS (memfntype
)));
14530 if (TYPE_HAS_LATE_RETURN_TYPE (memfntype
))
14531 TYPE_HAS_LATE_RETURN_TYPE (fntype
) = 1;
14535 /* DECL was originally constructed as a non-static member function,
14536 but turned out to be static. Update it accordingly. */
14539 revert_static_member_fn (tree decl
)
14541 tree stype
= static_fn_type (decl
);
14542 cp_cv_quals quals
= type_memfn_quals (stype
);
14543 cp_ref_qualifier rqual
= type_memfn_rqual (stype
);
14545 if (quals
!= TYPE_UNQUALIFIED
|| rqual
!= REF_QUAL_NONE
)
14546 stype
= apply_memfn_quals (stype
, TYPE_UNQUALIFIED
, REF_QUAL_NONE
);
14548 TREE_TYPE (decl
) = stype
;
14550 if (DECL_ARGUMENTS (decl
))
14551 DECL_ARGUMENTS (decl
) = DECL_CHAIN (DECL_ARGUMENTS (decl
));
14552 DECL_STATIC_FUNCTION_P (decl
) = 1;
14555 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
14556 one of the language-independent trees. */
14558 enum cp_tree_node_structure_enum
14559 cp_tree_node_structure (union lang_tree_node
* t
)
14561 switch (TREE_CODE (&t
->generic
))
14563 case DEFAULT_ARG
: return TS_CP_DEFAULT_ARG
;
14564 case DEFERRED_NOEXCEPT
: return TS_CP_DEFERRED_NOEXCEPT
;
14565 case IDENTIFIER_NODE
: return TS_CP_IDENTIFIER
;
14566 case OVERLOAD
: return TS_CP_OVERLOAD
;
14567 case TEMPLATE_PARM_INDEX
: return TS_CP_TPI
;
14568 case PTRMEM_CST
: return TS_CP_PTRMEM
;
14569 case BASELINK
: return TS_CP_BASELINK
;
14570 case TEMPLATE_DECL
: return TS_CP_TEMPLATE_DECL
;
14571 case STATIC_ASSERT
: return TS_CP_STATIC_ASSERT
;
14572 case ARGUMENT_PACK_SELECT
: return TS_CP_ARGUMENT_PACK_SELECT
;
14573 case TRAIT_EXPR
: return TS_CP_TRAIT_EXPR
;
14574 case LAMBDA_EXPR
: return TS_CP_LAMBDA_EXPR
;
14575 case TEMPLATE_INFO
: return TS_CP_TEMPLATE_INFO
;
14576 case USERDEF_LITERAL
: return TS_CP_USERDEF_LITERAL
;
14577 default: return TS_CP_GENERIC
;
14581 /* Build the void_list_node (void_type_node having been created). */
14583 build_void_list_node (void)
14585 tree t
= build_tree_list (NULL_TREE
, void_type_node
);
14590 cp_missing_noreturn_ok_p (tree decl
)
14592 /* A missing noreturn is ok for the `main' function. */
14593 return DECL_MAIN_P (decl
);
14596 /* Return the decl used to identify the COMDAT group into which DECL should
14600 cxx_comdat_group (tree decl
)
14602 /* Virtual tables, construction virtual tables, and virtual table
14603 tables all go in a single COMDAT group, named after the primary
14605 if (VAR_P (decl
) && DECL_VTABLE_OR_VTT_P (decl
))
14606 decl
= CLASSTYPE_VTABLES (DECL_CONTEXT (decl
));
14607 /* For all other DECLs, the COMDAT group is the mangled name of the
14608 declaration itself. */
14611 while (DECL_THUNK_P (decl
))
14613 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
14614 into the same section as the target function. In that case
14615 we must return target's name. */
14616 tree target
= THUNK_TARGET (decl
);
14617 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target
)
14618 && DECL_SECTION_NAME (target
) != NULL
14619 && DECL_ONE_ONLY (target
))
14629 /* Returns the return type for FN as written by the user, which may include
14630 a placeholder for a deduced return type. */
14633 fndecl_declared_return_type (tree fn
)
14635 fn
= STRIP_TEMPLATE (fn
);
14636 if (FNDECL_USED_AUTO (fn
))
14638 struct language_function
*f
= NULL
;
14639 if (DECL_STRUCT_FUNCTION (fn
))
14640 f
= DECL_STRUCT_FUNCTION (fn
)->language
;
14642 f
= DECL_SAVED_FUNCTION_DATA (fn
);
14643 return f
->x_auto_return_pattern
;
14645 return TREE_TYPE (TREE_TYPE (fn
));
14648 /* Returns true iff DECL was declared with an auto return type and it has
14649 not yet been deduced to a real type. */
14652 undeduced_auto_decl (tree decl
)
14654 if (cxx_dialect
< cxx14
)
14656 return type_uses_auto (TREE_TYPE (decl
));
14659 /* Complain if DECL has an undeduced return type. */
14662 require_deduced_type (tree decl
)
14664 if (undeduced_auto_decl (decl
))
14665 error ("use of %qD before deduction of %<auto%>", decl
);
14668 #include "gt-cp-decl.h"