re PR c++/68006 ([C++14] Incorrect aggregate initialization from empty initializer...
[gcc.git] / gcc / cp / decl.c
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988-2015 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
11
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.
16
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/>. */
20
21
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. */
25
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
28
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "tm.h"
33 #include "alias.h"
34 #include "tree.h"
35 #include "tree-hasher.h"
36 #include "stringpool.h"
37 #include "stor-layout.h"
38 #include "varasm.h"
39 #include "attribs.h"
40 #include "calls.h"
41 #include "flags.h"
42 #include "cp-tree.h"
43 #include "tree-iterator.h"
44 #include "tree-inline.h"
45 #include "decl.h"
46 #include "intl.h"
47 #include "toplev.h"
48 #include "tm_p.h"
49 #include "target.h"
50 #include "c-family/c-common.h"
51 #include "c-family/c-objc.h"
52 #include "c-family/c-pragma.h"
53 #include "c-family/c-target.h"
54 #include "c-family/c-ubsan.h"
55 #include "diagnostic.h"
56 #include "intl.h"
57 #include "debug.h"
58 #include "timevar.h"
59 #include "splay-tree.h"
60 #include "plugin.h"
61 #include "hard-reg-set.h"
62 #include "function.h"
63 #include "cgraph.h"
64 #include "cilk.h"
65 #include "builtins.h"
66
67 /* Possible cases of bad specifiers type used by bad_specifiers. */
68 enum bad_spec_place {
69 BSP_VAR, /* variable */
70 BSP_PARM, /* parameter */
71 BSP_TYPE, /* type */
72 BSP_FIELD /* field */
73 };
74
75 static const char *redeclaration_error_message (tree, tree);
76
77 static int decl_jump_unsafe (tree);
78 static void require_complete_types_for_parms (tree);
79 static int ambi_op_p (enum tree_code);
80 static int unary_op_p (enum tree_code);
81 static void push_local_name (tree);
82 static tree grok_reference_init (tree, tree, tree, int);
83 static tree grokvardecl (tree, tree, tree, const cp_decl_specifier_seq *,
84 int, int, int, tree);
85 static int check_static_variable_definition (tree, tree);
86 static void record_unknown_type (tree, const char *);
87 static tree builtin_function_1 (tree, tree, bool);
88 static int member_function_or_else (tree, tree, enum overload_flags);
89 static void bad_specifiers (tree, enum bad_spec_place, int, int, int, int,
90 int);
91 static void check_for_uninitialized_const_var (tree);
92 static tree local_variable_p_walkfn (tree *, int *, void *);
93 static tree record_builtin_java_type (const char *, int);
94 static const char *tag_name (enum tag_types);
95 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
96 static int walk_namespaces_r (tree, walk_namespaces_fn, void *);
97 static void maybe_deduce_size_from_array_init (tree, tree);
98 static void layout_var_decl (tree);
99 static tree check_initializer (tree, tree, int, vec<tree, va_gc> **);
100 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
101 static void save_function_data (tree);
102 static void copy_type_enum (tree , tree);
103 static void check_function_type (tree, tree);
104 static void finish_constructor_body (void);
105 static void begin_destructor_body (void);
106 static void finish_destructor_body (void);
107 static void record_key_method_defined (tree);
108 static tree create_array_type_for_decl (tree, tree, tree);
109 static tree get_atexit_node (void);
110 static tree get_dso_handle_node (void);
111 static tree start_cleanup_fn (void);
112 static void end_cleanup_fn (void);
113 static tree cp_make_fname_decl (location_t, tree, int);
114 static void initialize_predefined_identifiers (void);
115 static tree check_special_function_return_type
116 (special_function_kind, tree, tree, int, const location_t*);
117 static tree push_cp_library_fn (enum tree_code, tree, int);
118 static tree build_cp_library_fn (tree, enum tree_code, tree, int);
119 static void store_parm_decls (tree);
120 static void initialize_local_var (tree, tree);
121 static void expand_static_init (tree, tree);
122
123 /* The following symbols are subsumed in the cp_global_trees array, and
124 listed here individually for documentation purposes.
125
126 C++ extensions
127 tree wchar_decl_node;
128
129 tree vtable_entry_type;
130 tree delta_type_node;
131 tree __t_desc_type_node;
132
133 tree class_type_node;
134 tree unknown_type_node;
135
136 Array type `vtable_entry_type[]'
137
138 tree vtbl_type_node;
139 tree vtbl_ptr_type_node;
140
141 Namespaces,
142
143 tree std_node;
144 tree abi_node;
145
146 A FUNCTION_DECL which can call `abort'. Not necessarily the
147 one that the user will declare, but sufficient to be called
148 by routines that want to abort the program.
149
150 tree abort_fndecl;
151
152 Used by RTTI
153 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
154 tree tinfo_var_id; */
155
156 tree cp_global_trees[CPTI_MAX];
157
158 /* Indicates that there is a type value in some namespace, although
159 that is not necessarily in scope at the moment. */
160
161 tree global_type_node;
162
163 /* The node that holds the "name" of the global scope. */
164 tree global_scope_name;
165
166 #define local_names cp_function_chain->x_local_names
167
168 /* A list of objects which have constructors or destructors
169 which reside in the global scope. The decl is stored in
170 the TREE_VALUE slot and the initializer is stored
171 in the TREE_PURPOSE slot. */
172 tree static_aggregates;
173
174 /* Like static_aggregates, but for thread_local variables. */
175 tree tls_aggregates;
176
177 /* -- end of C++ */
178
179 /* A node for the integer constant 2. */
180
181 tree integer_two_node;
182
183 /* Used only for jumps to as-yet undefined labels, since jumps to
184 defined labels can have their validity checked immediately. */
185
186 struct GTY((chain_next ("%h.next"))) named_label_use_entry {
187 struct named_label_use_entry *next;
188 /* The binding level to which this entry is *currently* attached.
189 This is initially the binding level in which the goto appeared,
190 but is modified as scopes are closed. */
191 cp_binding_level *binding_level;
192 /* The head of the names list that was current when the goto appeared,
193 or the inner scope popped. These are the decls that will *not* be
194 skipped when jumping to the label. */
195 tree names_in_scope;
196 /* The location of the goto, for error reporting. */
197 location_t o_goto_locus;
198 /* True if an OpenMP structured block scope has been closed since
199 the goto appeared. This means that the branch from the label will
200 illegally exit an OpenMP scope. */
201 bool in_omp_scope;
202 };
203
204 /* A list of all LABEL_DECLs in the function that have names. Here so
205 we can clear out their names' definitions at the end of the
206 function, and so we can check the validity of jumps to these labels. */
207
208 struct GTY((for_user)) named_label_entry {
209 /* The decl itself. */
210 tree label_decl;
211
212 /* The binding level to which the label is *currently* attached.
213 This is initially set to the binding level in which the label
214 is defined, but is modified as scopes are closed. */
215 cp_binding_level *binding_level;
216 /* The head of the names list that was current when the label was
217 defined, or the inner scope popped. These are the decls that will
218 be skipped when jumping to the label. */
219 tree names_in_scope;
220 /* A vector of all decls from all binding levels that would be
221 crossed by a backward branch to the label. */
222 vec<tree, va_gc> *bad_decls;
223
224 /* A list of uses of the label, before the label is defined. */
225 struct named_label_use_entry *uses;
226
227 /* The following bits are set after the label is defined, and are
228 updated as scopes are popped. They indicate that a backward jump
229 to the label will illegally enter a scope of the given flavor. */
230 bool in_try_scope;
231 bool in_catch_scope;
232 bool in_omp_scope;
233 bool in_transaction_scope;
234 };
235
236 #define named_labels cp_function_chain->x_named_labels
237 \f
238 /* The number of function bodies which we are currently processing.
239 (Zero if we are at namespace scope, one inside the body of a
240 function, two inside the body of a function in a local class, etc.) */
241 int function_depth;
242
243 /* To avoid unwanted recursion, finish_function defers all mark_used calls
244 encountered during its execution until it finishes. */
245 bool defer_mark_used_calls;
246 vec<tree, va_gc> *deferred_mark_used_calls;
247
248 /* States indicating how grokdeclarator() should handle declspecs marked
249 with __attribute__((deprecated)). An object declared as
250 __attribute__((deprecated)) suppresses warnings of uses of other
251 deprecated items. */
252 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
253
254 \f
255 /* A list of VAR_DECLs whose type was incomplete at the time the
256 variable was declared. */
257
258 struct GTY(()) incomplete_var {
259 tree decl;
260 tree incomplete_type;
261 };
262
263
264 static GTY(()) vec<incomplete_var, va_gc> *incomplete_vars;
265 \f
266 /* Returns the kind of template specialization we are currently
267 processing, given that it's declaration contained N_CLASS_SCOPES
268 explicit scope qualifications. */
269
270 tmpl_spec_kind
271 current_tmpl_spec_kind (int n_class_scopes)
272 {
273 int n_template_parm_scopes = 0;
274 int seen_specialization_p = 0;
275 int innermost_specialization_p = 0;
276 cp_binding_level *b;
277
278 /* Scan through the template parameter scopes. */
279 for (b = current_binding_level;
280 b->kind == sk_template_parms;
281 b = b->level_chain)
282 {
283 /* If we see a specialization scope inside a parameter scope,
284 then something is wrong. That corresponds to a declaration
285 like:
286
287 template <class T> template <> ...
288
289 which is always invalid since [temp.expl.spec] forbids the
290 specialization of a class member template if the enclosing
291 class templates are not explicitly specialized as well. */
292 if (b->explicit_spec_p)
293 {
294 if (n_template_parm_scopes == 0)
295 innermost_specialization_p = 1;
296 else
297 seen_specialization_p = 1;
298 }
299 else if (seen_specialization_p == 1)
300 return tsk_invalid_member_spec;
301
302 ++n_template_parm_scopes;
303 }
304
305 /* Handle explicit instantiations. */
306 if (processing_explicit_instantiation)
307 {
308 if (n_template_parm_scopes != 0)
309 /* We've seen a template parameter list during an explicit
310 instantiation. For example:
311
312 template <class T> template void f(int);
313
314 This is erroneous. */
315 return tsk_invalid_expl_inst;
316 else
317 return tsk_expl_inst;
318 }
319
320 if (n_template_parm_scopes < n_class_scopes)
321 /* We've not seen enough template headers to match all the
322 specialized classes present. For example:
323
324 template <class T> void R<T>::S<T>::f(int);
325
326 This is invalid; there needs to be one set of template
327 parameters for each class. */
328 return tsk_insufficient_parms;
329 else if (n_template_parm_scopes == n_class_scopes)
330 /* We're processing a non-template declaration (even though it may
331 be a member of a template class.) For example:
332
333 template <class T> void S<T>::f(int);
334
335 The `class T' matches the `S<T>', leaving no template headers
336 corresponding to the `f'. */
337 return tsk_none;
338 else if (n_template_parm_scopes > n_class_scopes + 1)
339 /* We've got too many template headers. For example:
340
341 template <> template <class T> void f (T);
342
343 There need to be more enclosing classes. */
344 return tsk_excessive_parms;
345 else
346 /* This must be a template. It's of the form:
347
348 template <class T> template <class U> void S<T>::f(U);
349
350 This is a specialization if the innermost level was a
351 specialization; otherwise it's just a definition of the
352 template. */
353 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
354 }
355
356 /* Exit the current scope. */
357
358 void
359 finish_scope (void)
360 {
361 poplevel (0, 0, 0);
362 }
363
364 /* When a label goes out of scope, check to see if that label was used
365 in a valid manner, and issue any appropriate warnings or errors. */
366
367 static void
368 pop_label (tree label, tree old_value)
369 {
370 if (!processing_template_decl)
371 {
372 if (DECL_INITIAL (label) == NULL_TREE)
373 {
374 location_t location;
375
376 error ("label %q+D used but not defined", label);
377 location = input_location;
378 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
379 /* Avoid crashing later. */
380 define_label (location, DECL_NAME (label));
381 }
382 else
383 warn_for_unused_label (label);
384 }
385
386 SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), old_value);
387 }
388
389 /* At the end of a function, all labels declared within the function
390 go out of scope. BLOCK is the top-level block for the
391 function. */
392
393 int
394 pop_labels_1 (named_label_entry **slot, tree block)
395 {
396 struct named_label_entry *ent = *slot;
397
398 pop_label (ent->label_decl, NULL_TREE);
399
400 /* Put the labels into the "variables" of the top-level block,
401 so debugger can see them. */
402 DECL_CHAIN (ent->label_decl) = BLOCK_VARS (block);
403 BLOCK_VARS (block) = ent->label_decl;
404
405 named_labels->clear_slot (slot);
406
407 return 1;
408 }
409
410 static void
411 pop_labels (tree block)
412 {
413 if (named_labels)
414 {
415 named_labels->traverse<tree, pop_labels_1> (block);
416 named_labels = NULL;
417 }
418 }
419
420 /* At the end of a block with local labels, restore the outer definition. */
421
422 static void
423 pop_local_label (tree label, tree old_value)
424 {
425 struct named_label_entry dummy;
426
427 pop_label (label, old_value);
428
429 dummy.label_decl = label;
430 named_label_entry **slot = named_labels->find_slot (&dummy, NO_INSERT);
431 named_labels->clear_slot (slot);
432 }
433
434 /* The following two routines are used to interface to Objective-C++.
435 The binding level is purposely treated as an opaque type. */
436
437 void *
438 objc_get_current_scope (void)
439 {
440 return current_binding_level;
441 }
442
443 /* The following routine is used by the NeXT-style SJLJ exceptions;
444 variables get marked 'volatile' so as to not be clobbered by
445 _setjmp()/_longjmp() calls. All variables in the current scope,
446 as well as parent scopes up to (but not including) ENCLOSING_BLK
447 shall be thusly marked. */
448
449 void
450 objc_mark_locals_volatile (void *enclosing_blk)
451 {
452 cp_binding_level *scope;
453
454 for (scope = current_binding_level;
455 scope && scope != enclosing_blk;
456 scope = scope->level_chain)
457 {
458 tree decl;
459
460 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
461 objc_volatilize_decl (decl);
462
463 /* Do not climb up past the current function. */
464 if (scope->kind == sk_function_parms)
465 break;
466 }
467 }
468
469 /* Update data for defined and undefined labels when leaving a scope. */
470
471 int
472 poplevel_named_label_1 (named_label_entry **slot, cp_binding_level *bl)
473 {
474 named_label_entry *ent = *slot;
475 cp_binding_level *obl = bl->level_chain;
476
477 if (ent->binding_level == bl)
478 {
479 tree decl;
480
481 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
482 TREE_LISTs representing OVERLOADs, so be careful. */
483 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
484 ? DECL_CHAIN (decl)
485 : TREE_CHAIN (decl)))
486 if (decl_jump_unsafe (decl))
487 vec_safe_push (ent->bad_decls, decl);
488
489 ent->binding_level = obl;
490 ent->names_in_scope = obl->names;
491 switch (bl->kind)
492 {
493 case sk_try:
494 ent->in_try_scope = true;
495 break;
496 case sk_catch:
497 ent->in_catch_scope = true;
498 break;
499 case sk_omp:
500 ent->in_omp_scope = true;
501 break;
502 case sk_transaction:
503 ent->in_transaction_scope = true;
504 break;
505 default:
506 break;
507 }
508 }
509 else if (ent->uses)
510 {
511 struct named_label_use_entry *use;
512
513 for (use = ent->uses; use ; use = use->next)
514 if (use->binding_level == bl)
515 {
516 use->binding_level = obl;
517 use->names_in_scope = obl->names;
518 if (bl->kind == sk_omp)
519 use->in_omp_scope = true;
520 }
521 }
522
523 return 1;
524 }
525
526 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
527 when errors were reported, except for -Werror-unused-but-set-*. */
528 static int unused_but_set_errorcount;
529
530 /* Exit a binding level.
531 Pop the level off, and restore the state of the identifier-decl mappings
532 that were in effect when this level was entered.
533
534 If KEEP == 1, this level had explicit declarations, so
535 and create a "block" (a BLOCK node) for the level
536 to record its declarations and subblocks for symbol table output.
537
538 If FUNCTIONBODY is nonzero, this level is the body of a function,
539 so create a block as if KEEP were set and also clear out all
540 label names.
541
542 If REVERSE is nonzero, reverse the order of decls before putting
543 them into the BLOCK. */
544
545 tree
546 poplevel (int keep, int reverse, int functionbody)
547 {
548 tree link;
549 /* The chain of decls was accumulated in reverse order.
550 Put it into forward order, just for cleanliness. */
551 tree decls;
552 tree subblocks;
553 tree block;
554 tree decl;
555 int leaving_for_scope;
556 scope_kind kind;
557 unsigned ix;
558 cp_label_binding *label_bind;
559
560 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
561 restart:
562
563 block = NULL_TREE;
564
565 gcc_assert (current_binding_level->kind != sk_class);
566
567 if (current_binding_level->kind == sk_cleanup)
568 functionbody = 0;
569 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
570
571 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
572
573 /* We used to use KEEP == 2 to indicate that the new block should go
574 at the beginning of the list of blocks at this binding level,
575 rather than the end. This hack is no longer used. */
576 gcc_assert (keep == 0 || keep == 1);
577
578 if (current_binding_level->keep)
579 keep = 1;
580
581 /* Any uses of undefined labels, and any defined labels, now operate
582 under constraints of next binding contour. */
583 if (cfun && !functionbody && named_labels)
584 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
585 (current_binding_level);
586
587 /* Get the decls in the order they were written.
588 Usually current_binding_level->names is in reverse order.
589 But parameter decls were previously put in forward order. */
590
591 if (reverse)
592 current_binding_level->names
593 = decls = nreverse (current_binding_level->names);
594 else
595 decls = current_binding_level->names;
596
597 /* If there were any declarations or structure tags in that level,
598 or if this level is a function body,
599 create a BLOCK to record them for the life of this function. */
600 block = NULL_TREE;
601 /* Avoid function body block if possible. */
602 if (functionbody && subblocks && BLOCK_CHAIN (subblocks) == NULL_TREE)
603 keep = 0;
604 else if (keep == 1 || functionbody)
605 block = make_node (BLOCK);
606 if (block != NULL_TREE)
607 {
608 BLOCK_VARS (block) = decls;
609 BLOCK_SUBBLOCKS (block) = subblocks;
610 }
611
612 /* In each subblock, record that this is its superior. */
613 if (keep >= 0)
614 for (link = subblocks; link; link = BLOCK_CHAIN (link))
615 BLOCK_SUPERCONTEXT (link) = block;
616
617 /* We still support the old for-scope rules, whereby the variables
618 in a for-init statement were in scope after the for-statement
619 ended. We only use the new rules if flag_new_for_scope is
620 nonzero. */
621 leaving_for_scope
622 = current_binding_level->kind == sk_for && flag_new_for_scope == 1;
623
624 /* Before we remove the declarations first check for unused variables. */
625 if ((warn_unused_variable || warn_unused_but_set_variable)
626 && current_binding_level->kind != sk_template_parms
627 && !processing_template_decl)
628 for (tree d = getdecls (); d; d = TREE_CHAIN (d))
629 {
630 /* There are cases where D itself is a TREE_LIST. See in
631 push_local_binding where the list of decls returned by
632 getdecls is built. */
633 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
634 tree type = TREE_TYPE (decl);
635 if (VAR_P (decl)
636 && (! TREE_USED (decl) || !DECL_READ_P (decl))
637 && ! DECL_IN_SYSTEM_HEADER (decl)
638 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl)
639 && type != error_mark_node
640 && (!CLASS_TYPE_P (type)
641 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
642 || lookup_attribute ("warn_unused",
643 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
644 {
645 if (! TREE_USED (decl))
646 warning_at (DECL_SOURCE_LOCATION (decl),
647 OPT_Wunused_variable, "unused variable %qD", 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)
652 {
653 warning_at (DECL_SOURCE_LOCATION (decl),
654 OPT_Wunused_but_set_variable,
655 "variable %qD set but not used", decl);
656 unused_but_set_errorcount = errorcount;
657 }
658 }
659 }
660
661 /* Remove declarations for all the DECLs in this level. */
662 for (link = decls; link; link = TREE_CHAIN (link))
663 {
664 if (leaving_for_scope && VAR_P (link)
665 /* It's hard to make this ARM compatibility hack play nicely with
666 lambdas, and it really isn't necessary in C++11 mode. */
667 && cxx_dialect < cxx11
668 && DECL_NAME (link))
669 {
670 tree name = DECL_NAME (link);
671 cxx_binding *ob;
672 tree ns_binding;
673
674 ob = outer_binding (name,
675 IDENTIFIER_BINDING (name),
676 /*class_p=*/true);
677 if (!ob)
678 ns_binding = IDENTIFIER_NAMESPACE_VALUE (name);
679 else
680 ns_binding = NULL_TREE;
681
682 if (ob && ob->scope == current_binding_level->level_chain)
683 /* We have something like:
684
685 int i;
686 for (int i; ;);
687
688 and we are leaving the `for' scope. There's no reason to
689 keep the binding of the inner `i' in this case. */
690 pop_binding (name, link);
691 else if ((ob && (TREE_CODE (ob->value) == TYPE_DECL))
692 || (ns_binding && TREE_CODE (ns_binding) == TYPE_DECL))
693 /* Here, we have something like:
694
695 typedef int I;
696
697 void f () {
698 for (int I; ;);
699 }
700
701 We must pop the for-scope binding so we know what's a
702 type and what isn't. */
703 pop_binding (name, link);
704 else
705 {
706 /* Mark this VAR_DECL as dead so that we can tell we left it
707 there only for backward compatibility. */
708 DECL_DEAD_FOR_LOCAL (link) = 1;
709
710 /* Keep track of what should have happened when we
711 popped the binding. */
712 if (ob && ob->value)
713 {
714 SET_DECL_SHADOWED_FOR_VAR (link, ob->value);
715 DECL_HAS_SHADOWED_FOR_VAR_P (link) = 1;
716 }
717
718 /* Add it to the list of dead variables in the next
719 outermost binding to that we can remove these when we
720 leave that binding. */
721 vec_safe_push (
722 current_binding_level->level_chain->dead_vars_from_for,
723 link);
724
725 /* Although we don't pop the cxx_binding, we do clear
726 its SCOPE since the scope is going away now. */
727 IDENTIFIER_BINDING (name)->scope
728 = current_binding_level->level_chain;
729 }
730 }
731 else
732 {
733 tree name;
734
735 /* Remove the binding. */
736 decl = link;
737
738 if (TREE_CODE (decl) == TREE_LIST)
739 decl = TREE_VALUE (decl);
740 name = decl;
741
742 if (TREE_CODE (name) == OVERLOAD)
743 name = OVL_FUNCTION (name);
744
745 gcc_assert (DECL_P (name));
746 pop_binding (DECL_NAME (name), decl);
747 }
748 }
749
750 /* Remove declarations for any `for' variables from inner scopes
751 that we kept around. */
752 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->dead_vars_from_for,
753 ix, decl)
754 pop_binding (DECL_NAME (decl), decl);
755
756 /* Restore the IDENTIFIER_TYPE_VALUEs. */
757 for (link = current_binding_level->type_shadowed;
758 link; link = TREE_CHAIN (link))
759 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
760
761 /* Restore the IDENTIFIER_LABEL_VALUEs for local labels. */
762 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->shadowed_labels,
763 ix, label_bind)
764 pop_local_label (label_bind->label, label_bind->prev_value);
765
766 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
767 list if a `using' declaration put them there. The debugging
768 back ends won't understand OVERLOAD, so we remove them here.
769 Because the BLOCK_VARS are (temporarily) shared with
770 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
771 popped all the bindings. */
772 if (block)
773 {
774 tree* d;
775
776 for (d = &BLOCK_VARS (block); *d; )
777 {
778 if (TREE_CODE (*d) == TREE_LIST)
779 *d = TREE_CHAIN (*d);
780 else
781 d = &DECL_CHAIN (*d);
782 }
783 }
784
785 /* If the level being exited is the top level of a function,
786 check over all the labels. */
787 if (functionbody)
788 {
789 if (block)
790 {
791 /* Since this is the top level block of a function, the vars are
792 the function's parameters. Don't leave them in the BLOCK
793 because they are found in the FUNCTION_DECL instead. */
794 BLOCK_VARS (block) = 0;
795 pop_labels (block);
796 }
797 else
798 pop_labels (subblocks);
799 }
800
801 kind = current_binding_level->kind;
802 if (kind == sk_cleanup)
803 {
804 tree stmt;
805
806 /* If this is a temporary binding created for a cleanup, then we'll
807 have pushed a statement list level. Pop that, create a new
808 BIND_EXPR for the block, and insert it into the stream. */
809 stmt = pop_stmt_list (current_binding_level->statement_list);
810 stmt = c_build_bind_expr (input_location, block, stmt);
811 add_stmt (stmt);
812 }
813
814 leave_scope ();
815 if (functionbody)
816 {
817 /* The current function is being defined, so its DECL_INITIAL
818 should be error_mark_node. */
819 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
820 DECL_INITIAL (current_function_decl) = block ? block : subblocks;
821 if (subblocks)
822 {
823 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
824 {
825 if (BLOCK_SUBBLOCKS (subblocks))
826 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks)) = 1;
827 }
828 else
829 BLOCK_OUTER_CURLY_BRACE_P (subblocks) = 1;
830 }
831 }
832 else if (block)
833 current_binding_level->blocks
834 = block_chainon (current_binding_level->blocks, block);
835
836 /* If we did not make a block for the level just exited,
837 any blocks made for inner levels
838 (since they cannot be recorded as subblocks in that level)
839 must be carried forward so they will later become subblocks
840 of something else. */
841 else if (subblocks)
842 current_binding_level->blocks
843 = block_chainon (current_binding_level->blocks, subblocks);
844
845 /* Each and every BLOCK node created here in `poplevel' is important
846 (e.g. for proper debugging information) so if we created one
847 earlier, mark it as "used". */
848 if (block)
849 TREE_USED (block) = 1;
850
851 /* All temporary bindings created for cleanups are popped silently. */
852 if (kind == sk_cleanup)
853 goto restart;
854
855 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
856 return block;
857 }
858
859 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
860 itself, calling F for each. The DATA is passed to F as well. */
861
862 static int
863 walk_namespaces_r (tree name_space, walk_namespaces_fn f, void* data)
864 {
865 int result = 0;
866 tree current = NAMESPACE_LEVEL (name_space)->namespaces;
867
868 result |= (*f) (name_space, data);
869
870 for (; current; current = DECL_CHAIN (current))
871 result |= walk_namespaces_r (current, f, data);
872
873 return result;
874 }
875
876 /* Walk all the namespaces, calling F for each. The DATA is passed to
877 F as well. */
878
879 int
880 walk_namespaces (walk_namespaces_fn f, void* data)
881 {
882 return walk_namespaces_r (global_namespace, f, data);
883 }
884
885 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
886
887 int
888 wrapup_globals_for_namespace (tree name_space, void* data ATTRIBUTE_UNUSED)
889 {
890 cp_binding_level *level = NAMESPACE_LEVEL (name_space);
891 vec<tree, va_gc> *statics = level->static_decls;
892 tree *vec = statics->address ();
893 int len = statics->length ();
894
895 /* Write out any globals that need to be output. */
896 return wrapup_global_declarations (vec, len);
897 }
898 \f
899 /* In C++, you don't have to write `struct S' to refer to `S'; you
900 can just use `S'. We accomplish this by creating a TYPE_DECL as
901 if the user had written `typedef struct S S'. Create and return
902 the TYPE_DECL for TYPE. */
903
904 tree
905 create_implicit_typedef (tree name, tree type)
906 {
907 tree decl;
908
909 decl = build_decl (input_location, TYPE_DECL, name, type);
910 DECL_ARTIFICIAL (decl) = 1;
911 /* There are other implicit type declarations, like the one *within*
912 a class that allows you to write `S::S'. We must distinguish
913 amongst these. */
914 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
915 TYPE_NAME (type) = decl;
916 TYPE_STUB_DECL (type) = decl;
917
918 return decl;
919 }
920
921 /* Remember a local name for name-mangling purposes. */
922
923 static void
924 push_local_name (tree decl)
925 {
926 size_t i, nelts;
927 tree t, name;
928
929 timevar_start (TV_NAME_LOOKUP);
930
931 name = DECL_NAME (decl);
932
933 nelts = vec_safe_length (local_names);
934 for (i = 0; i < nelts; i++)
935 {
936 t = (*local_names)[i];
937 if (DECL_NAME (t) == name)
938 {
939 if (!DECL_LANG_SPECIFIC (decl))
940 retrofit_lang_decl (decl);
941 DECL_LANG_SPECIFIC (decl)->u.base.u2sel = 1;
942 if (DECL_DISCRIMINATOR_SET_P (t))
943 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
944 else
945 DECL_DISCRIMINATOR (decl) = 1;
946
947 (*local_names)[i] = decl;
948 timevar_stop (TV_NAME_LOOKUP);
949 return;
950 }
951 }
952
953 vec_safe_push (local_names, decl);
954 timevar_stop (TV_NAME_LOOKUP);
955 }
956 \f
957 /* Subroutine of duplicate_decls: return truthvalue of whether
958 or not types of these decls match.
959
960 For C++, we must compare the parameter list so that `int' can match
961 `int&' in a parameter position, but `int&' is not confused with
962 `const int&'. */
963
964 int
965 decls_match (tree newdecl, tree olddecl)
966 {
967 int types_match;
968
969 if (newdecl == olddecl)
970 return 1;
971
972 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
973 /* If the two DECLs are not even the same kind of thing, we're not
974 interested in their types. */
975 return 0;
976
977 gcc_assert (DECL_P (newdecl));
978
979 if (TREE_CODE (newdecl) == FUNCTION_DECL)
980 {
981 tree f1 = TREE_TYPE (newdecl);
982 tree f2 = TREE_TYPE (olddecl);
983 tree p1 = TYPE_ARG_TYPES (f1);
984 tree p2 = TYPE_ARG_TYPES (f2);
985 tree r2;
986
987 /* Specializations of different templates are different functions
988 even if they have the same type. */
989 tree t1 = (DECL_USE_TEMPLATE (newdecl)
990 ? DECL_TI_TEMPLATE (newdecl)
991 : NULL_TREE);
992 tree t2 = (DECL_USE_TEMPLATE (olddecl)
993 ? DECL_TI_TEMPLATE (olddecl)
994 : NULL_TREE);
995 if (t1 != t2)
996 return 0;
997
998 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
999 && ! (DECL_EXTERN_C_P (newdecl)
1000 && DECL_EXTERN_C_P (olddecl)))
1001 return 0;
1002
1003 /* A new declaration doesn't match a built-in one unless it
1004 is also extern "C". */
1005 if (DECL_IS_BUILTIN (olddecl)
1006 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
1007 return 0;
1008
1009 if (TREE_CODE (f1) != TREE_CODE (f2))
1010 return 0;
1011
1012 /* A declaration with deduced return type should use its pre-deduction
1013 type for declaration matching. */
1014 r2 = fndecl_declared_return_type (olddecl);
1015
1016 if (same_type_p (TREE_TYPE (f1), r2))
1017 {
1018 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
1019 && (DECL_BUILT_IN (olddecl)
1020 #ifndef NO_IMPLICIT_EXTERN_C
1021 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
1022 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
1023 #endif
1024 ))
1025 {
1026 types_match = self_promoting_args_p (p1);
1027 if (p1 == void_list_node)
1028 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1029 }
1030 #ifndef NO_IMPLICIT_EXTERN_C
1031 else if (!prototype_p (f1)
1032 && (DECL_EXTERN_C_P (olddecl)
1033 && DECL_IN_SYSTEM_HEADER (olddecl)
1034 && !DECL_CLASS_SCOPE_P (olddecl))
1035 && (DECL_EXTERN_C_P (newdecl)
1036 && DECL_IN_SYSTEM_HEADER (newdecl)
1037 && !DECL_CLASS_SCOPE_P (newdecl)))
1038 {
1039 types_match = self_promoting_args_p (p2);
1040 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1041 }
1042 #endif
1043 else
1044 types_match =
1045 compparms (p1, p2)
1046 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
1047 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
1048 || comp_type_attributes (TREE_TYPE (newdecl),
1049 TREE_TYPE (olddecl)) != 0);
1050 }
1051 else
1052 types_match = 0;
1053
1054 /* The decls dont match if they correspond to two different versions
1055 of the same function. Disallow extern "C" functions to be
1056 versions for now. */
1057 if (types_match
1058 && !DECL_EXTERN_C_P (newdecl)
1059 && !DECL_EXTERN_C_P (olddecl)
1060 && targetm.target_option.function_versions (newdecl, olddecl))
1061 {
1062 /* Mark functions as versions if necessary. Modify the mangled decl
1063 name if necessary. */
1064 if (DECL_FUNCTION_VERSIONED (newdecl)
1065 && DECL_FUNCTION_VERSIONED (olddecl))
1066 return 0;
1067 if (!DECL_FUNCTION_VERSIONED (newdecl))
1068 {
1069 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1070 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1071 mangle_decl (newdecl);
1072 }
1073 if (!DECL_FUNCTION_VERSIONED (olddecl))
1074 {
1075 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1076 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1077 mangle_decl (olddecl);
1078 }
1079 cgraph_node::record_function_versions (olddecl, newdecl);
1080 return 0;
1081 }
1082 }
1083 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1084 {
1085 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1086 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1087
1088 if (TREE_CODE (newres) != TREE_CODE (oldres))
1089 return 0;
1090
1091 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1092 DECL_TEMPLATE_PARMS (olddecl)))
1093 return 0;
1094
1095 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1096 types_match = (same_type_p (TREE_TYPE (oldres), TREE_TYPE (newres))
1097 && equivalently_constrained (olddecl, newdecl));
1098 else
1099 // We don't need to check equivalently_constrained for variable and
1100 // function templates because we check it on the results.
1101 types_match = decls_match (oldres, newres);
1102 }
1103 else
1104 {
1105 /* Need to check scope for variable declaration (VAR_DECL).
1106 For typedef (TYPE_DECL), scope is ignored. */
1107 if (VAR_P (newdecl)
1108 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1109 /* [dcl.link]
1110 Two declarations for an object with C language linkage
1111 with the same name (ignoring the namespace that qualify
1112 it) that appear in different namespace scopes refer to
1113 the same object. */
1114 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1115 return 0;
1116
1117 if (TREE_TYPE (newdecl) == error_mark_node)
1118 types_match = TREE_TYPE (olddecl) == error_mark_node;
1119 else if (TREE_TYPE (olddecl) == NULL_TREE)
1120 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1121 else if (TREE_TYPE (newdecl) == NULL_TREE)
1122 types_match = 0;
1123 else
1124 types_match = comptypes (TREE_TYPE (newdecl),
1125 TREE_TYPE (olddecl),
1126 COMPARE_REDECLARATION);
1127 }
1128
1129 // Normal functions can be constrained, as can variable partial
1130 // specializations.
1131 if (types_match && VAR_OR_FUNCTION_DECL_P (newdecl))
1132 types_match = equivalently_constrained (newdecl, olddecl);
1133
1134 return types_match;
1135 }
1136
1137 /* If NEWDECL is `static' and an `extern' was seen previously,
1138 warn about it. OLDDECL is the previous declaration.
1139
1140 Note that this does not apply to the C++ case of declaring
1141 a variable `extern const' and then later `const'.
1142
1143 Don't complain about built-in functions, since they are beyond
1144 the user's control. */
1145
1146 void
1147 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1148 {
1149 if (TREE_CODE (newdecl) == TYPE_DECL
1150 || TREE_CODE (newdecl) == TEMPLATE_DECL
1151 || TREE_CODE (newdecl) == CONST_DECL
1152 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1153 return;
1154
1155 /* Don't get confused by static member functions; that's a different
1156 use of `static'. */
1157 if (TREE_CODE (newdecl) == FUNCTION_DECL
1158 && DECL_STATIC_FUNCTION_P (newdecl))
1159 return;
1160
1161 /* If the old declaration was `static', or the new one isn't, then
1162 everything is OK. */
1163 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1164 return;
1165
1166 /* It's OK to declare a builtin function as `static'. */
1167 if (TREE_CODE (olddecl) == FUNCTION_DECL
1168 && DECL_ARTIFICIAL (olddecl))
1169 return;
1170
1171 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1172 "%qD was declared %<extern%> and later %<static%>", newdecl))
1173 inform (DECL_SOURCE_LOCATION (olddecl),
1174 "previous declaration of %qD", olddecl);
1175 }
1176
1177 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1178 function templates. If their exception specifications do not
1179 match, issue a diagnostic. */
1180
1181 static void
1182 check_redeclaration_exception_specification (tree new_decl,
1183 tree old_decl)
1184 {
1185 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1186 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1187
1188 /* Two default specs are equivalent, don't force evaluation. */
1189 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1190 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1191 return;
1192
1193 maybe_instantiate_noexcept (new_decl);
1194 maybe_instantiate_noexcept (old_decl);
1195 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1196 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1197
1198 /* [except.spec]
1199
1200 If any declaration of a function has an exception-specification,
1201 all declarations, including the definition and an explicit
1202 specialization, of that function shall have an
1203 exception-specification with the same set of type-ids. */
1204 if (! DECL_IS_BUILTIN (old_decl)
1205 && flag_exceptions
1206 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1207 {
1208 const char *msg
1209 = "declaration of %q+F has a different exception specifier";
1210 bool complained = true;
1211 if (! DECL_IN_SYSTEM_HEADER (old_decl))
1212 error (msg, new_decl);
1213 else
1214 complained = pedwarn (0, OPT_Wsystem_headers, msg, new_decl);
1215 if (complained)
1216 inform (0, "from previous declaration %q+F", old_decl);
1217 }
1218 }
1219
1220 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1221 Otherwise issue diagnostics. */
1222
1223 static bool
1224 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1225 {
1226 old_decl = STRIP_TEMPLATE (old_decl);
1227 new_decl = STRIP_TEMPLATE (new_decl);
1228 if (!VAR_OR_FUNCTION_DECL_P (old_decl)
1229 || !VAR_OR_FUNCTION_DECL_P (new_decl))
1230 return true;
1231 if (DECL_DECLARED_CONSTEXPR_P (old_decl)
1232 == DECL_DECLARED_CONSTEXPR_P (new_decl))
1233 return true;
1234 if (TREE_CODE (old_decl) == FUNCTION_DECL)
1235 {
1236 if (DECL_BUILT_IN (old_decl))
1237 {
1238 /* Hide a built-in declaration. */
1239 DECL_DECLARED_CONSTEXPR_P (old_decl)
1240 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1241 return true;
1242 }
1243 /* 7.1.5 [dcl.constexpr]
1244 Note: An explicit specialization can differ from the template
1245 declaration with respect to the constexpr specifier. */
1246 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl)
1247 && DECL_TEMPLATE_SPECIALIZATION (new_decl))
1248 return true;
1249
1250 error ("redeclaration %q+D differs in %<constexpr%>", new_decl);
1251 error ("from previous declaration %q+D", old_decl);
1252 return false;
1253 }
1254 return true;
1255 }
1256
1257 // If OLDDECL and NEWDECL are concept declarations with the same type
1258 // (i.e., and template parameters), but different requirements,
1259 // emit diagnostics and return true. Otherwise, return false.
1260 static inline bool
1261 check_concept_refinement (tree olddecl, tree newdecl)
1262 {
1263 if (!DECL_DECLARED_CONCEPT_P (olddecl) || !DECL_DECLARED_CONCEPT_P (newdecl))
1264 return false;
1265
1266 tree d1 = DECL_TEMPLATE_RESULT (olddecl);
1267 tree d2 = DECL_TEMPLATE_RESULT (newdecl);
1268 if (TREE_CODE (d1) != TREE_CODE (d2))
1269 return false;
1270
1271 tree t1 = TREE_TYPE (d1);
1272 tree t2 = TREE_TYPE (d2);
1273 if (TREE_CODE (d1) == FUNCTION_DECL)
1274 {
1275 if (compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2))
1276 && comp_template_parms (DECL_TEMPLATE_PARMS (olddecl),
1277 DECL_TEMPLATE_PARMS (newdecl))
1278 && !equivalently_constrained (olddecl, newdecl))
1279 {
1280 error ("cannot specialize concept %q#D", olddecl);
1281 return true;
1282 }
1283 }
1284 return false;
1285 }
1286
1287 /* DECL is a redeclaration of a function or function template. If
1288 it does have default arguments issue a diagnostic. Note: this
1289 function is used to enforce the requirements in C++11 8.3.6 about
1290 no default arguments in redeclarations. */
1291
1292 static void
1293 check_redeclaration_no_default_args (tree decl)
1294 {
1295 gcc_assert (DECL_DECLARES_FUNCTION_P (decl));
1296
1297 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
1298 t && t != void_list_node; t = TREE_CHAIN (t))
1299 if (TREE_PURPOSE (t))
1300 {
1301 permerror (DECL_SOURCE_LOCATION (decl),
1302 "redeclaration of %q#D may not have default "
1303 "arguments", decl);
1304 return;
1305 }
1306 }
1307
1308 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1309 && lookup_attribute ("gnu_inline", \
1310 DECL_ATTRIBUTES (fn)))
1311
1312 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1313 If the redeclaration is invalid, a diagnostic is issued, and the
1314 error_mark_node is returned. Otherwise, OLDDECL is returned.
1315
1316 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1317 returned.
1318
1319 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1320
1321 tree
1322 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1323 {
1324 unsigned olddecl_uid = DECL_UID (olddecl);
1325 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1326 int new_defines_function = 0;
1327 tree new_template_info;
1328
1329 if (newdecl == olddecl)
1330 return olddecl;
1331
1332 types_match = decls_match (newdecl, olddecl);
1333
1334 /* If either the type of the new decl or the type of the old decl is an
1335 error_mark_node, then that implies that we have already issued an
1336 error (earlier) for some bogus type specification, and in that case,
1337 it is rather pointless to harass the user with yet more error message
1338 about the same declaration, so just pretend the types match here. */
1339 if (TREE_TYPE (newdecl) == error_mark_node
1340 || TREE_TYPE (olddecl) == error_mark_node)
1341 return error_mark_node;
1342
1343 if (UDLIT_OPER_P (DECL_NAME (newdecl))
1344 && UDLIT_OPER_P (DECL_NAME (olddecl)))
1345 {
1346 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1347 && TREE_CODE (olddecl) != TEMPLATE_DECL
1348 && check_raw_literal_operator (olddecl))
1349 error ("literal operator template %q+D conflicts with"
1350 " raw literal operator %qD", newdecl, olddecl);
1351 else if (TREE_CODE (newdecl) != TEMPLATE_DECL
1352 && TREE_CODE (olddecl) == TEMPLATE_DECL
1353 && check_raw_literal_operator (newdecl))
1354 error ("raw literal operator %q+D conflicts with"
1355 " literal operator template %qD", newdecl, olddecl);
1356 }
1357
1358 if (DECL_P (olddecl)
1359 && TREE_CODE (newdecl) == FUNCTION_DECL
1360 && TREE_CODE (olddecl) == FUNCTION_DECL
1361 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1362 {
1363 if (DECL_DECLARED_INLINE_P (newdecl)
1364 && DECL_UNINLINABLE (newdecl)
1365 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1366 /* Already warned elsewhere. */;
1367 else if (DECL_DECLARED_INLINE_P (olddecl)
1368 && DECL_UNINLINABLE (olddecl)
1369 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1370 /* Already warned. */;
1371 else if (DECL_DECLARED_INLINE_P (newdecl)
1372 && DECL_UNINLINABLE (olddecl)
1373 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1374 {
1375 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1376 OPT_Wattributes, "function %qD redeclared as inline",
1377 newdecl))
1378 inform (DECL_SOURCE_LOCATION (olddecl),
1379 "previous declaration of %qD with attribute noinline",
1380 olddecl);
1381 }
1382 else if (DECL_DECLARED_INLINE_P (olddecl)
1383 && DECL_UNINLINABLE (newdecl)
1384 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1385 {
1386 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1387 OPT_Wattributes, "function %qD redeclared with "
1388 "attribute noinline", newdecl))
1389 inform (DECL_SOURCE_LOCATION (olddecl),
1390 "previous declaration of %qD was inline",
1391 olddecl);
1392 }
1393 }
1394
1395 /* Check for redeclaration and other discrepancies. */
1396 if (TREE_CODE (olddecl) == FUNCTION_DECL
1397 && DECL_ARTIFICIAL (olddecl))
1398 {
1399 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1400 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1401 {
1402 /* Avoid warnings redeclaring built-ins which have not been
1403 explicitly declared. */
1404 if (DECL_ANTICIPATED (olddecl))
1405 return NULL_TREE;
1406
1407 /* If you declare a built-in or predefined function name as static,
1408 the old definition is overridden, but optionally warn this was a
1409 bad choice of name. */
1410 if (! TREE_PUBLIC (newdecl))
1411 {
1412 warning (OPT_Wshadow,
1413 DECL_BUILT_IN (olddecl)
1414 ? G_("shadowing built-in function %q#D")
1415 : G_("shadowing library function %q#D"), olddecl);
1416 /* Discard the old built-in function. */
1417 return NULL_TREE;
1418 }
1419 /* If the built-in is not ansi, then programs can override
1420 it even globally without an error. */
1421 else if (! DECL_BUILT_IN (olddecl))
1422 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1423 "library function %q#D redeclared as non-function %q#D",
1424 olddecl, newdecl);
1425 else
1426 error ("declaration of %q+#D conflicts with built-in "
1427 "declaration %q#D", newdecl, olddecl);
1428 return NULL_TREE;
1429 }
1430 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1431 {
1432 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1433 error_at (DECL_SOURCE_LOCATION (newdecl),
1434 "redeclaration of %<pragma omp declare reduction%>");
1435 inform (DECL_SOURCE_LOCATION (olddecl),
1436 "previous %<pragma omp declare reduction%> declaration");
1437 return error_mark_node;
1438 }
1439 else if (!types_match)
1440 {
1441 /* Avoid warnings redeclaring built-ins which have not been
1442 explicitly declared. */
1443 if (DECL_ANTICIPATED (olddecl))
1444 {
1445 /* Deal with fileptr_type_node. FILE type is not known
1446 at the time we create the builtins. */
1447 tree t1, t2;
1448
1449 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1450 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1451 t1 || t2;
1452 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1453 if (!t1 || !t2)
1454 break;
1455 else if (TREE_VALUE (t2) == fileptr_type_node)
1456 {
1457 tree t = TREE_VALUE (t1);
1458
1459 if (TYPE_PTR_P (t)
1460 && TYPE_IDENTIFIER (TREE_TYPE (t))
1461 == get_identifier ("FILE")
1462 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1463 {
1464 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1465
1466 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1467 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1468 types_match = decls_match (newdecl, olddecl);
1469 if (types_match)
1470 return duplicate_decls (newdecl, olddecl,
1471 newdecl_is_friend);
1472 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1473 }
1474 }
1475 else if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1476 break;
1477 }
1478 else if ((DECL_EXTERN_C_P (newdecl)
1479 && DECL_EXTERN_C_P (olddecl))
1480 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1481 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1482 {
1483 /* A near match; override the builtin. */
1484
1485 if (TREE_PUBLIC (newdecl))
1486 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1487 "new declaration %q#D ambiguates built-in "
1488 "declaration %q#D", newdecl, olddecl);
1489 else
1490 warning (OPT_Wshadow,
1491 DECL_BUILT_IN (olddecl)
1492 ? G_("shadowing built-in function %q#D")
1493 : G_("shadowing library function %q#D"), olddecl);
1494 }
1495 else
1496 /* Discard the old built-in function. */
1497 return NULL_TREE;
1498
1499 /* Replace the old RTL to avoid problems with inlining. */
1500 COPY_DECL_RTL (newdecl, olddecl);
1501 }
1502 /* Even if the types match, prefer the new declarations type for
1503 built-ins which have not been explicitly declared, for
1504 exception lists, etc... */
1505 else if (DECL_IS_BUILTIN (olddecl))
1506 {
1507 tree type = TREE_TYPE (newdecl);
1508 tree attribs = (*targetm.merge_type_attributes)
1509 (TREE_TYPE (olddecl), type);
1510
1511 type = cp_build_type_attribute_variant (type, attribs);
1512 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1513 }
1514
1515 /* If a function is explicitly declared "throw ()", propagate that to
1516 the corresponding builtin. */
1517 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1518 && DECL_ANTICIPATED (olddecl)
1519 && TREE_NOTHROW (newdecl)
1520 && !TREE_NOTHROW (olddecl))
1521 {
1522 enum built_in_function fncode = DECL_FUNCTION_CODE (olddecl);
1523 tree tmpdecl = builtin_decl_explicit (fncode);
1524 if (tmpdecl && tmpdecl != olddecl && types_match)
1525 TREE_NOTHROW (tmpdecl) = 1;
1526 }
1527
1528 /* Whether or not the builtin can throw exceptions has no
1529 bearing on this declarator. */
1530 TREE_NOTHROW (olddecl) = 0;
1531
1532 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1533 {
1534 /* If a builtin function is redeclared as `static', merge
1535 the declarations, but make the original one static. */
1536 DECL_THIS_STATIC (olddecl) = 1;
1537 TREE_PUBLIC (olddecl) = 0;
1538
1539 /* Make the old declaration consistent with the new one so
1540 that all remnants of the builtin-ness of this function
1541 will be banished. */
1542 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1543 COPY_DECL_RTL (newdecl, olddecl);
1544 }
1545 }
1546 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1547 {
1548 /* C++ Standard, 3.3, clause 4:
1549 "[Note: a namespace name or a class template name must be unique
1550 in its declarative region (7.3.2, clause 14). ]" */
1551 if (TREE_CODE (olddecl) != NAMESPACE_DECL
1552 && TREE_CODE (newdecl) != NAMESPACE_DECL
1553 && (TREE_CODE (olddecl) != TEMPLATE_DECL
1554 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) != TYPE_DECL)
1555 && (TREE_CODE (newdecl) != TEMPLATE_DECL
1556 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != TYPE_DECL))
1557 {
1558 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1559 && TREE_CODE (newdecl) != TYPE_DECL)
1560 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1561 && TREE_CODE (olddecl) != TYPE_DECL))
1562 {
1563 /* We do nothing special here, because C++ does such nasty
1564 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1565 get shadowed, and know that if we need to find a TYPE_DECL
1566 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1567 slot of the identifier. */
1568 return NULL_TREE;
1569 }
1570
1571 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1572 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1573 || (TREE_CODE (olddecl) == FUNCTION_DECL
1574 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1575 return NULL_TREE;
1576 }
1577
1578 error ("%q#D redeclared as different kind of symbol", newdecl);
1579 if (TREE_CODE (olddecl) == TREE_LIST)
1580 olddecl = TREE_VALUE (olddecl);
1581 inform (DECL_SOURCE_LOCATION (olddecl),
1582 "previous declaration %q#D", olddecl);
1583
1584 return error_mark_node;
1585 }
1586 else if (!types_match)
1587 {
1588 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1589 /* These are certainly not duplicate declarations; they're
1590 from different scopes. */
1591 return NULL_TREE;
1592
1593 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1594 {
1595 /* The name of a class template may not be declared to refer to
1596 any other template, class, function, object, namespace, value,
1597 or type in the same scope. */
1598 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1599 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1600 {
1601 error ("conflicting declaration of template %q+#D", newdecl);
1602 inform (DECL_SOURCE_LOCATION (olddecl),
1603 "previous declaration %q#D", olddecl);
1604 return error_mark_node;
1605 }
1606 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1607 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1608 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1609 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1610 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1611 DECL_TEMPLATE_PARMS (olddecl))
1612 /* Template functions can be disambiguated by
1613 return type. */
1614 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1615 TREE_TYPE (TREE_TYPE (olddecl)))
1616 // Template functions can also be disambiguated by
1617 // constraints.
1618 && equivalently_constrained (olddecl, newdecl))
1619 {
1620 error ("ambiguating new declaration %q+#D", newdecl);
1621 inform (DECL_SOURCE_LOCATION (olddecl),
1622 "old declaration %q#D", olddecl);
1623 }
1624 else if (check_concept_refinement (olddecl, newdecl))
1625 return error_mark_node;
1626 return NULL_TREE;
1627 }
1628 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1629 {
1630 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1631 {
1632 error ("conflicting declaration of C function %q+#D",
1633 newdecl);
1634 inform (DECL_SOURCE_LOCATION (olddecl),
1635 "previous declaration %q#D", olddecl);
1636 return NULL_TREE;
1637 }
1638 /* For function versions, params and types match, but they
1639 are not ambiguous. */
1640 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1641 && !DECL_FUNCTION_VERSIONED (olddecl))
1642 // The functions have the same parameter types.
1643 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1644 TYPE_ARG_TYPES (TREE_TYPE (olddecl)))
1645 // And the same constraints.
1646 && equivalently_constrained (newdecl, olddecl))
1647 {
1648 error ("ambiguating new declaration of %q+#D", newdecl);
1649 inform (DECL_SOURCE_LOCATION (olddecl),
1650 "old declaration %q#D", olddecl);
1651 return error_mark_node;
1652 }
1653 else
1654 return NULL_TREE;
1655 }
1656 else
1657 {
1658 error ("conflicting declaration %q+#D", newdecl);
1659 inform (DECL_SOURCE_LOCATION (olddecl),
1660 "previous declaration as %q#D", olddecl);
1661 return error_mark_node;
1662 }
1663 }
1664 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1665 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1666 && (!DECL_TEMPLATE_INFO (newdecl)
1667 || (DECL_TI_TEMPLATE (newdecl)
1668 != DECL_TI_TEMPLATE (olddecl))))
1669 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1670 && (!DECL_TEMPLATE_INFO (olddecl)
1671 || (DECL_TI_TEMPLATE (olddecl)
1672 != DECL_TI_TEMPLATE (newdecl))))))
1673 /* It's OK to have a template specialization and a non-template
1674 with the same type, or to have specializations of two
1675 different templates with the same type. Note that if one is a
1676 specialization, and the other is an instantiation of the same
1677 template, that we do not exit at this point. That situation
1678 can occur if we instantiate a template class, and then
1679 specialize one of its methods. This situation is valid, but
1680 the declarations must be merged in the usual way. */
1681 return NULL_TREE;
1682 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1683 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1684 && !DECL_USE_TEMPLATE (newdecl))
1685 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1686 && !DECL_USE_TEMPLATE (olddecl))))
1687 /* One of the declarations is a template instantiation, and the
1688 other is not a template at all. That's OK. */
1689 return NULL_TREE;
1690 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1691 {
1692 /* In [namespace.alias] we have:
1693
1694 In a declarative region, a namespace-alias-definition can be
1695 used to redefine a namespace-alias declared in that declarative
1696 region to refer only to the namespace to which it already
1697 refers.
1698
1699 Therefore, if we encounter a second alias directive for the same
1700 alias, we can just ignore the second directive. */
1701 if (DECL_NAMESPACE_ALIAS (newdecl)
1702 && (DECL_NAMESPACE_ALIAS (newdecl)
1703 == DECL_NAMESPACE_ALIAS (olddecl)))
1704 return olddecl;
1705 /* [namespace.alias]
1706
1707 A namespace-name or namespace-alias shall not be declared as
1708 the name of any other entity in the same declarative region.
1709 A namespace-name defined at global scope shall not be
1710 declared as the name of any other entity in any global scope
1711 of the program. */
1712 error ("conflicting declaration of namespace %q+D", newdecl);
1713 inform (DECL_SOURCE_LOCATION (olddecl),
1714 "previous declaration of namespace %qD here", olddecl);
1715 return error_mark_node;
1716 }
1717 else
1718 {
1719 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1720 if (errmsg)
1721 {
1722 error_at (DECL_SOURCE_LOCATION (newdecl), errmsg, newdecl);
1723 if (DECL_NAME (olddecl) != NULL_TREE)
1724 inform (DECL_SOURCE_LOCATION (olddecl),
1725 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1726 ? G_("%q#D previously defined here")
1727 : G_("%q#D previously declared here"), olddecl);
1728 return error_mark_node;
1729 }
1730 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1731 && DECL_INITIAL (olddecl) != NULL_TREE
1732 && !prototype_p (TREE_TYPE (olddecl))
1733 && prototype_p (TREE_TYPE (newdecl)))
1734 {
1735 /* Prototype decl follows defn w/o prototype. */
1736 if (warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1737 "prototype specified for %q#D", newdecl))
1738 inform (DECL_SOURCE_LOCATION (olddecl),
1739 "previous non-prototype definition here");
1740 }
1741 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1742 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1743 {
1744 /* [dcl.link]
1745 If two declarations of the same function or object
1746 specify different linkage-specifications ..., the program
1747 is ill-formed.... Except for functions with C++ linkage,
1748 a function declaration without a linkage specification
1749 shall not precede the first linkage specification for
1750 that function. A function can be declared without a
1751 linkage specification after an explicit linkage
1752 specification has been seen; the linkage explicitly
1753 specified in the earlier declaration is not affected by
1754 such a function declaration.
1755
1756 DR 563 raises the question why the restrictions on
1757 functions should not also apply to objects. Older
1758 versions of G++ silently ignore the linkage-specification
1759 for this example:
1760
1761 namespace N {
1762 extern int i;
1763 extern "C" int i;
1764 }
1765
1766 which is clearly wrong. Therefore, we now treat objects
1767 like functions. */
1768 if (current_lang_depth () == 0)
1769 {
1770 /* There is no explicit linkage-specification, so we use
1771 the linkage from the previous declaration. */
1772 if (!DECL_LANG_SPECIFIC (newdecl))
1773 retrofit_lang_decl (newdecl);
1774 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1775 }
1776 else
1777 {
1778 error ("conflicting declaration of %q+#D with %qL linkage",
1779 newdecl, DECL_LANGUAGE (newdecl));
1780 inform (DECL_SOURCE_LOCATION (olddecl),
1781 "previous declaration with %qL linkage",
1782 DECL_LANGUAGE (olddecl));
1783 }
1784 }
1785
1786 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1787 ;
1788 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1789 {
1790 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1791 if (DECL_FUNCTION_MEMBER_P (olddecl)
1792 && (/* grokfndecl passes member function templates too
1793 as FUNCTION_DECLs. */
1794 DECL_TEMPLATE_INFO (olddecl)
1795 /* C++11 8.3.6/6.
1796 Default arguments for a member function of a class
1797 template shall be specified on the initial declaration
1798 of the member function within the class template. */
1799 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
1800 check_redeclaration_no_default_args (newdecl);
1801 else
1802 {
1803 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1804 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1805 int i = 1;
1806
1807 for (; t1 && t1 != void_list_node;
1808 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1809 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1810 {
1811 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
1812 TREE_PURPOSE (t2)))
1813 {
1814 if (permerror (input_location,
1815 "default argument given for parameter "
1816 "%d of %q#D", i, newdecl))
1817 inform (DECL_SOURCE_LOCATION (olddecl),
1818 "previous specification in %q#D here",
1819 olddecl);
1820 }
1821 else
1822 {
1823 error ("default argument given for parameter %d "
1824 "of %q#D", i, newdecl);
1825 inform (DECL_SOURCE_LOCATION (olddecl),
1826 "previous specification in %q#D here",
1827 olddecl);
1828 }
1829 }
1830 }
1831 }
1832 }
1833
1834 /* Do not merge an implicit typedef with an explicit one. In:
1835
1836 class A;
1837 ...
1838 typedef class A A __attribute__ ((foo));
1839
1840 the attribute should apply only to the typedef. */
1841 if (TREE_CODE (olddecl) == TYPE_DECL
1842 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1843 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1844 return NULL_TREE;
1845
1846 /* If new decl is `static' and an `extern' was seen previously,
1847 warn about it. */
1848 warn_extern_redeclared_static (newdecl, olddecl);
1849
1850 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1851 return error_mark_node;
1852
1853 /* We have committed to returning 1 at this point. */
1854 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1855 {
1856 /* Now that functions must hold information normally held
1857 by field decls, there is extra work to do so that
1858 declaration information does not get destroyed during
1859 definition. */
1860 if (DECL_VINDEX (olddecl))
1861 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1862 if (DECL_CONTEXT (olddecl))
1863 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1864 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1865 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1866 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1867 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1868 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1869 DECL_FINAL_P (newdecl) |= DECL_FINAL_P (olddecl);
1870 DECL_OVERRIDE_P (newdecl) |= DECL_OVERRIDE_P (olddecl);
1871 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1872 if (DECL_OVERLOADED_OPERATOR_P (olddecl) != ERROR_MARK)
1873 SET_OVERLOADED_OPERATOR_CODE
1874 (newdecl, DECL_OVERLOADED_OPERATOR_P (olddecl));
1875 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1876
1877 /* Optionally warn about more than one declaration for the same
1878 name, but don't warn about a function declaration followed by a
1879 definition. */
1880 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1881 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1882 /* Don't warn about extern decl followed by definition. */
1883 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1884 /* Don't warn about friends, let add_friend take care of it. */
1885 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1886 /* Don't warn about declaration followed by specialization. */
1887 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1888 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1889 {
1890 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1891 OPT_Wredundant_decls,
1892 "redundant redeclaration of %qD in same scope",
1893 newdecl))
1894 inform (DECL_SOURCE_LOCATION (olddecl),
1895 "previous declaration of %qD", olddecl);
1896 }
1897
1898 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1899 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1900 {
1901 if (DECL_DELETED_FN (newdecl))
1902 {
1903 error ("deleted definition of %q+D", newdecl);
1904 inform (DECL_SOURCE_LOCATION (olddecl),
1905 "previous declaration of %qD", olddecl);
1906 }
1907 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
1908 }
1909 }
1910
1911 /* Deal with C++: must preserve virtual function table size. */
1912 if (TREE_CODE (olddecl) == TYPE_DECL)
1913 {
1914 tree newtype = TREE_TYPE (newdecl);
1915 tree oldtype = TREE_TYPE (olddecl);
1916
1917 if (newtype != error_mark_node && oldtype != error_mark_node
1918 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1919 CLASSTYPE_FRIEND_CLASSES (newtype)
1920 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1921
1922 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1923 }
1924
1925 /* Copy all the DECL_... slots specified in the new decl
1926 except for any that we copy here from the old type. */
1927 DECL_ATTRIBUTES (newdecl)
1928 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1929
1930 if (DECL_DECLARES_FUNCTION_P (olddecl) && DECL_DECLARES_FUNCTION_P (newdecl))
1931 {
1932 olddecl_friend = DECL_FRIEND_P (olddecl);
1933 hidden_friend = (DECL_ANTICIPATED (olddecl)
1934 && DECL_HIDDEN_FRIEND_P (olddecl)
1935 && newdecl_is_friend);
1936 if (!hidden_friend)
1937 {
1938 DECL_ANTICIPATED (olddecl) = 0;
1939 DECL_HIDDEN_FRIEND_P (olddecl) = 0;
1940 }
1941 }
1942
1943 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1944 {
1945 tree old_result;
1946 tree new_result;
1947 old_result = DECL_TEMPLATE_RESULT (olddecl);
1948 new_result = DECL_TEMPLATE_RESULT (newdecl);
1949 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
1950 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
1951 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
1952 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
1953
1954 DECL_ATTRIBUTES (old_result)
1955 = (*targetm.merge_decl_attributes) (old_result, new_result);
1956
1957 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1958 {
1959 /* Per C++11 8.3.6/4, default arguments cannot be added in later
1960 declarations of a function template. */
1961 if (DECL_SOURCE_LOCATION (newdecl)
1962 != DECL_SOURCE_LOCATION (olddecl))
1963 check_redeclaration_no_default_args (newdecl);
1964
1965 check_default_args (newdecl);
1966
1967 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
1968 && DECL_INITIAL (new_result))
1969 {
1970 if (DECL_INITIAL (old_result))
1971 DECL_UNINLINABLE (old_result) = 1;
1972 else
1973 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
1974 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
1975 DECL_NOT_REALLY_EXTERN (old_result)
1976 = DECL_NOT_REALLY_EXTERN (new_result);
1977 DECL_INTERFACE_KNOWN (old_result)
1978 = DECL_INTERFACE_KNOWN (new_result);
1979 DECL_DECLARED_INLINE_P (old_result)
1980 = DECL_DECLARED_INLINE_P (new_result);
1981 DECL_DISREGARD_INLINE_LIMITS (old_result)
1982 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
1983
1984 }
1985 else
1986 {
1987 DECL_DECLARED_INLINE_P (old_result)
1988 |= DECL_DECLARED_INLINE_P (new_result);
1989 DECL_DISREGARD_INLINE_LIMITS (old_result)
1990 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
1991 check_redeclaration_exception_specification (newdecl, olddecl);
1992 }
1993 }
1994
1995 /* If the new declaration is a definition, update the file and
1996 line information on the declaration, and also make
1997 the old declaration the same definition. */
1998 if (DECL_INITIAL (new_result) != NULL_TREE)
1999 {
2000 DECL_SOURCE_LOCATION (olddecl)
2001 = DECL_SOURCE_LOCATION (old_result)
2002 = DECL_SOURCE_LOCATION (newdecl);
2003 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
2004 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2005 {
2006 tree parm;
2007 DECL_ARGUMENTS (old_result)
2008 = DECL_ARGUMENTS (new_result);
2009 for (parm = DECL_ARGUMENTS (old_result); parm;
2010 parm = DECL_CHAIN (parm))
2011 DECL_CONTEXT (parm) = old_result;
2012 }
2013 }
2014
2015 return olddecl;
2016 }
2017
2018 if (types_match)
2019 {
2020 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2021 check_redeclaration_exception_specification (newdecl, olddecl);
2022
2023 /* Automatically handles default parameters. */
2024 tree oldtype = TREE_TYPE (olddecl);
2025 tree newtype;
2026
2027 /* For typedefs use the old type, as the new type's DECL_NAME points
2028 at newdecl, which will be ggc_freed. */
2029 if (TREE_CODE (newdecl) == TYPE_DECL)
2030 newtype = oldtype;
2031 else
2032 /* Merge the data types specified in the two decls. */
2033 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
2034
2035 if (VAR_P (newdecl))
2036 {
2037 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
2038 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
2039 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
2040 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
2041 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
2042 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
2043
2044 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
2045 if (DECL_LANG_SPECIFIC (olddecl)
2046 && CP_DECL_THREADPRIVATE_P (olddecl))
2047 {
2048 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
2049 if (!DECL_LANG_SPECIFIC (newdecl))
2050 retrofit_lang_decl (newdecl);
2051
2052 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
2053 }
2054 }
2055
2056 /* An explicit specialization of a function template or of a member
2057 function of a class template can be declared transaction_safe
2058 independently of whether the corresponding template entity is declared
2059 transaction_safe. */
2060 if (flag_tm && TREE_CODE (newdecl) == FUNCTION_DECL
2061 && DECL_TEMPLATE_INSTANTIATION (olddecl)
2062 && DECL_TEMPLATE_SPECIALIZATION (newdecl)
2063 && tx_safe_fn_type_p (newtype)
2064 && !tx_safe_fn_type_p (TREE_TYPE (newdecl)))
2065 newtype = tx_unsafe_fn_variant (newtype);
2066
2067 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2068
2069 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2070 check_default_args (newdecl);
2071
2072 /* Lay the type out, unless already done. */
2073 if (! same_type_p (newtype, oldtype)
2074 && TREE_TYPE (newdecl) != error_mark_node
2075 && !(processing_template_decl && uses_template_parms (newdecl)))
2076 layout_type (TREE_TYPE (newdecl));
2077
2078 if ((VAR_P (newdecl)
2079 || TREE_CODE (newdecl) == PARM_DECL
2080 || TREE_CODE (newdecl) == RESULT_DECL
2081 || TREE_CODE (newdecl) == FIELD_DECL
2082 || TREE_CODE (newdecl) == TYPE_DECL)
2083 && !(processing_template_decl && uses_template_parms (newdecl)))
2084 layout_decl (newdecl, 0);
2085
2086 /* Merge the type qualifiers. */
2087 if (TREE_READONLY (newdecl))
2088 TREE_READONLY (olddecl) = 1;
2089 if (TREE_THIS_VOLATILE (newdecl))
2090 TREE_THIS_VOLATILE (olddecl) = 1;
2091 if (TREE_NOTHROW (newdecl))
2092 TREE_NOTHROW (olddecl) = 1;
2093
2094 /* Merge deprecatedness. */
2095 if (TREE_DEPRECATED (newdecl))
2096 TREE_DEPRECATED (olddecl) = 1;
2097
2098 /* Preserve function specific target and optimization options */
2099 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2100 {
2101 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2102 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2103 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2104 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2105
2106 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2107 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2108 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2109 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2110 }
2111
2112 /* Merge the initialization information. */
2113 if (DECL_INITIAL (newdecl) == NULL_TREE
2114 && DECL_INITIAL (olddecl) != NULL_TREE)
2115 {
2116 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2117 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2118 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2119 {
2120 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2121 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2122 }
2123 }
2124
2125 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2126 {
2127 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2128 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2129 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2130 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2131 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
2132 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2133 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2134 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2135 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2136 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2137 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2138 /* Keep the old RTL. */
2139 COPY_DECL_RTL (olddecl, newdecl);
2140 }
2141 else if (VAR_P (newdecl)
2142 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2143 {
2144 /* Keep the old RTL. We cannot keep the old RTL if the old
2145 declaration was for an incomplete object and the new
2146 declaration is not since many attributes of the RTL will
2147 change. */
2148 COPY_DECL_RTL (olddecl, newdecl);
2149 }
2150 }
2151 /* If cannot merge, then use the new type and qualifiers,
2152 and don't preserve the old rtl. */
2153 else
2154 {
2155 /* Clean out any memory we had of the old declaration. */
2156 tree oldstatic = value_member (olddecl, static_aggregates);
2157 if (oldstatic)
2158 TREE_VALUE (oldstatic) = error_mark_node;
2159
2160 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2161 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2162 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2163 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2164 }
2165
2166 /* Merge the storage class information. */
2167 merge_weak (newdecl, olddecl);
2168
2169 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2170 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2171 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2172 if (! DECL_EXTERNAL (olddecl))
2173 DECL_EXTERNAL (newdecl) = 0;
2174 if (! DECL_COMDAT (olddecl))
2175 DECL_COMDAT (newdecl) = 0;
2176
2177 new_template_info = NULL_TREE;
2178 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2179 {
2180 bool new_redefines_gnu_inline = false;
2181
2182 if (new_defines_function
2183 && ((DECL_INTERFACE_KNOWN (olddecl)
2184 && TREE_CODE (olddecl) == FUNCTION_DECL)
2185 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2186 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2187 == FUNCTION_DECL))))
2188 {
2189 tree fn = olddecl;
2190
2191 if (TREE_CODE (fn) == TEMPLATE_DECL)
2192 fn = DECL_TEMPLATE_RESULT (olddecl);
2193
2194 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2195 }
2196
2197 if (!new_redefines_gnu_inline)
2198 {
2199 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2200 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2201 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2202 }
2203 DECL_TEMPLATE_INSTANTIATED (newdecl)
2204 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2205 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2206
2207 /* If the OLDDECL is an instantiation and/or specialization,
2208 then the NEWDECL must be too. But, it may not yet be marked
2209 as such if the caller has created NEWDECL, but has not yet
2210 figured out that it is a redeclaration. */
2211 if (!DECL_USE_TEMPLATE (newdecl))
2212 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2213
2214 /* Don't really know how much of the language-specific
2215 values we should copy from old to new. */
2216 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2217 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
2218 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2219 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2220
2221 if (LANG_DECL_HAS_MIN (newdecl))
2222 {
2223 DECL_LANG_SPECIFIC (newdecl)->u.min.u2 =
2224 DECL_LANG_SPECIFIC (olddecl)->u.min.u2;
2225 if (DECL_TEMPLATE_INFO (newdecl))
2226 {
2227 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2228 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2229 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2230 /* Remember the presence of explicit specialization args. */
2231 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2232 = TINFO_USED_TEMPLATE_ID (new_template_info);
2233 }
2234 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2235 }
2236 /* Only functions have these fields. */
2237 if (DECL_DECLARES_FUNCTION_P (newdecl))
2238 {
2239 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2240 DECL_BEFRIENDING_CLASSES (newdecl)
2241 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2242 DECL_BEFRIENDING_CLASSES (olddecl));
2243 /* DECL_THUNKS is only valid for virtual functions,
2244 otherwise it is a DECL_FRIEND_CONTEXT. */
2245 if (DECL_VIRTUAL_P (newdecl))
2246 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2247 }
2248 /* Only variables have this field. */
2249 else if (VAR_P (newdecl)
2250 && VAR_HAD_UNKNOWN_BOUND (olddecl))
2251 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2252 }
2253
2254 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2255 {
2256 tree parm;
2257
2258 /* Merge parameter attributes. */
2259 tree oldarg, newarg;
2260 for (oldarg = DECL_ARGUMENTS(olddecl),
2261 newarg = DECL_ARGUMENTS(newdecl);
2262 oldarg && newarg;
2263 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg)) {
2264 DECL_ATTRIBUTES (newarg)
2265 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2266 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2267 }
2268
2269 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2270 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2271 {
2272 /* If newdecl is not a specialization, then it is not a
2273 template-related function at all. And that means that we
2274 should have exited above, returning 0. */
2275 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2276
2277 if (DECL_ODR_USED (olddecl))
2278 /* From [temp.expl.spec]:
2279
2280 If a template, a member template or the member of a class
2281 template is explicitly specialized then that
2282 specialization shall be declared before the first use of
2283 that specialization that would cause an implicit
2284 instantiation to take place, in every translation unit in
2285 which such a use occurs. */
2286 error ("explicit specialization of %qD after first use",
2287 olddecl);
2288
2289 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2290 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2291 && DECL_DECLARED_INLINE_P (newdecl));
2292
2293 /* Don't propagate visibility from the template to the
2294 specialization here. We'll do that in determine_visibility if
2295 appropriate. */
2296 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2297
2298 /* [temp.expl.spec/14] We don't inline explicit specialization
2299 just because the primary template says so. */
2300
2301 /* But still keep DECL_DISREGARD_INLINE_LIMITS in sync with
2302 the always_inline attribute. */
2303 if (DECL_DISREGARD_INLINE_LIMITS (olddecl)
2304 && !DECL_DISREGARD_INLINE_LIMITS (newdecl))
2305 {
2306 if (DECL_DECLARED_INLINE_P (newdecl))
2307 DECL_DISREGARD_INLINE_LIMITS (newdecl) = true;
2308 else
2309 DECL_ATTRIBUTES (newdecl)
2310 = remove_attribute ("always_inline",
2311 DECL_ATTRIBUTES (newdecl));
2312 }
2313 }
2314 else if (new_defines_function && DECL_INITIAL (olddecl))
2315 {
2316 /* Never inline re-defined extern inline functions.
2317 FIXME: this could be better handled by keeping both
2318 function as separate declarations. */
2319 DECL_UNINLINABLE (newdecl) = 1;
2320 }
2321 else
2322 {
2323 if (DECL_PENDING_INLINE_INFO (newdecl) == 0)
2324 DECL_PENDING_INLINE_INFO (newdecl) = DECL_PENDING_INLINE_INFO (olddecl);
2325
2326 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2327
2328 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2329 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2330
2331 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2332 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2333 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2334 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2335 }
2336
2337 /* Preserve abstractness on cloned [cd]tors. */
2338 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2339
2340 /* Update newdecl's parms to point at olddecl. */
2341 for (parm = DECL_ARGUMENTS (newdecl); parm;
2342 parm = DECL_CHAIN (parm))
2343 DECL_CONTEXT (parm) = olddecl;
2344
2345 if (! types_match)
2346 {
2347 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2348 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2349 COPY_DECL_RTL (newdecl, olddecl);
2350 }
2351 if (! types_match || new_defines_function)
2352 {
2353 /* These need to be copied so that the names are available.
2354 Note that if the types do match, we'll preserve inline
2355 info and other bits, but if not, we won't. */
2356 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2357 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2358 }
2359 /* If redeclaring a builtin function, it stays built in
2360 if newdecl is a gnu_inline definition, or if newdecl is just
2361 a declaration. */
2362 if (DECL_BUILT_IN (olddecl)
2363 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2364 {
2365 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2366 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2367 /* If we're keeping the built-in definition, keep the rtl,
2368 regardless of declaration matches. */
2369 COPY_DECL_RTL (olddecl, newdecl);
2370 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2371 {
2372 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2373 switch (fncode)
2374 {
2375 /* If a compatible prototype of these builtin functions
2376 is seen, assume the runtime implements it with the
2377 expected semantics. */
2378 case BUILT_IN_STPCPY:
2379 if (builtin_decl_explicit_p (fncode))
2380 set_builtin_decl_implicit_p (fncode, true);
2381 break;
2382 default:
2383 if (builtin_decl_explicit_p (fncode))
2384 set_builtin_decl_declared_p (fncode, true);
2385 break;
2386 }
2387 }
2388 }
2389 if (new_defines_function)
2390 /* If defining a function declared with other language
2391 linkage, use the previously declared language linkage. */
2392 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2393 else if (types_match)
2394 {
2395 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2396 /* Don't clear out the arguments if we're just redeclaring a
2397 function. */
2398 if (DECL_ARGUMENTS (olddecl))
2399 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2400 }
2401 }
2402 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2403 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2404
2405 /* Now preserve various other info from the definition. */
2406 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2407 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2408 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2409 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2410
2411 /* Warn about conflicting visibility specifications. */
2412 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2413 && DECL_VISIBILITY_SPECIFIED (newdecl)
2414 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2415 {
2416 if (warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wattributes,
2417 "%qD: visibility attribute ignored because it "
2418 "conflicts with previous declaration", newdecl))
2419 inform (DECL_SOURCE_LOCATION (olddecl),
2420 "previous declaration of %qD", olddecl);
2421 }
2422 /* Choose the declaration which specified visibility. */
2423 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2424 {
2425 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2426 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2427 }
2428 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2429 so keep this behavior. */
2430 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2431 {
2432 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2433 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2434 }
2435 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2436 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2437 {
2438 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
2439 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2440 }
2441 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2442 if (TREE_CODE (newdecl) == FIELD_DECL)
2443 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2444
2445 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2446 with that from NEWDECL below. */
2447 if (DECL_LANG_SPECIFIC (olddecl))
2448 {
2449 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2450 != DECL_LANG_SPECIFIC (newdecl));
2451 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2452 }
2453
2454 /* Merge the USED information. */
2455 if (TREE_USED (olddecl))
2456 TREE_USED (newdecl) = 1;
2457 else if (TREE_USED (newdecl))
2458 TREE_USED (olddecl) = 1;
2459 if (VAR_P (newdecl))
2460 {
2461 if (DECL_READ_P (olddecl))
2462 DECL_READ_P (newdecl) = 1;
2463 else if (DECL_READ_P (newdecl))
2464 DECL_READ_P (olddecl) = 1;
2465 }
2466 if (DECL_PRESERVE_P (olddecl))
2467 DECL_PRESERVE_P (newdecl) = 1;
2468 else if (DECL_PRESERVE_P (newdecl))
2469 DECL_PRESERVE_P (olddecl) = 1;
2470
2471 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2472 to olddecl and deleted. */
2473 if (TREE_CODE (newdecl) == FUNCTION_DECL
2474 && DECL_FUNCTION_VERSIONED (olddecl))
2475 {
2476 /* Set the flag for newdecl so that it gets copied to olddecl. */
2477 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2478 /* newdecl will be purged after copying to olddecl and is no longer
2479 a version. */
2480 cgraph_node::delete_function_version (newdecl);
2481 }
2482
2483 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2484 {
2485 int function_size;
2486 struct symtab_node *snode = symtab_node::get (olddecl);
2487
2488 function_size = sizeof (struct tree_decl_common);
2489
2490 memcpy ((char *) olddecl + sizeof (struct tree_common),
2491 (char *) newdecl + sizeof (struct tree_common),
2492 function_size - sizeof (struct tree_common));
2493
2494 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2495 (char *) newdecl + sizeof (struct tree_decl_common),
2496 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2497
2498 /* Preserve symtab node mapping. */
2499 olddecl->decl_with_vis.symtab_node = snode;
2500
2501 if (new_template_info)
2502 /* If newdecl is a template instantiation, it is possible that
2503 the following sequence of events has occurred:
2504
2505 o A friend function was declared in a class template. The
2506 class template was instantiated.
2507
2508 o The instantiation of the friend declaration was
2509 recorded on the instantiation list, and is newdecl.
2510
2511 o Later, however, instantiate_class_template called pushdecl
2512 on the newdecl to perform name injection. But, pushdecl in
2513 turn called duplicate_decls when it discovered that another
2514 declaration of a global function with the same name already
2515 existed.
2516
2517 o Here, in duplicate_decls, we decided to clobber newdecl.
2518
2519 If we're going to do that, we'd better make sure that
2520 olddecl, and not newdecl, is on the list of
2521 instantiations so that if we try to do the instantiation
2522 again we won't get the clobbered declaration. */
2523 reregister_specialization (newdecl,
2524 new_template_info,
2525 olddecl);
2526 }
2527 else
2528 {
2529 size_t size = tree_code_size (TREE_CODE (newdecl));
2530
2531 memcpy ((char *) olddecl + sizeof (struct tree_common),
2532 (char *) newdecl + sizeof (struct tree_common),
2533 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2534 switch (TREE_CODE (newdecl))
2535 {
2536 case LABEL_DECL:
2537 case VAR_DECL:
2538 case RESULT_DECL:
2539 case PARM_DECL:
2540 case FIELD_DECL:
2541 case TYPE_DECL:
2542 case CONST_DECL:
2543 {
2544 struct symtab_node *snode = NULL;
2545
2546 if (VAR_P (newdecl)
2547 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl)
2548 || DECL_EXTERNAL (olddecl)))
2549 snode = symtab_node::get (olddecl);
2550 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2551 (char *) newdecl + sizeof (struct tree_decl_common),
2552 size - sizeof (struct tree_decl_common)
2553 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2554 if (VAR_P (newdecl))
2555 olddecl->decl_with_vis.symtab_node = snode;
2556 }
2557 break;
2558 default:
2559 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2560 (char *) newdecl + sizeof (struct tree_decl_common),
2561 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2562 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2563 break;
2564 }
2565 }
2566
2567 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2568 {
2569 if (DECL_EXTERNAL (olddecl)
2570 || TREE_PUBLIC (olddecl)
2571 || TREE_STATIC (olddecl))
2572 {
2573 /* Merge the section attribute.
2574 We want to issue an error if the sections conflict but that must be
2575 done later in decl_attributes since we are called before attributes
2576 are assigned. */
2577 if (DECL_SECTION_NAME (newdecl) != NULL)
2578 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2579
2580 if (DECL_ONE_ONLY (newdecl))
2581 {
2582 struct symtab_node *oldsym, *newsym;
2583 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2584 oldsym = cgraph_node::get_create (olddecl);
2585 else
2586 oldsym = varpool_node::get_create (olddecl);
2587 newsym = symtab_node::get (newdecl);
2588 oldsym->set_comdat_group (newsym->get_comdat_group ());
2589 }
2590 }
2591
2592 if (VAR_P (newdecl)
2593 && CP_DECL_THREAD_LOCAL_P (newdecl))
2594 {
2595 CP_DECL_THREAD_LOCAL_P (olddecl) = true;
2596 if (!processing_template_decl)
2597 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2598 }
2599 }
2600
2601 DECL_UID (olddecl) = olddecl_uid;
2602 if (olddecl_friend)
2603 DECL_FRIEND_P (olddecl) = 1;
2604 if (hidden_friend)
2605 {
2606 DECL_ANTICIPATED (olddecl) = 1;
2607 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2608 }
2609
2610 /* NEWDECL contains the merged attribute lists.
2611 Update OLDDECL to be the same. */
2612 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2613
2614 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2615 so that encode_section_info has a chance to look at the new decl
2616 flags and attributes. */
2617 if (DECL_RTL_SET_P (olddecl)
2618 && (TREE_CODE (olddecl) == FUNCTION_DECL
2619 || (VAR_P (olddecl)
2620 && TREE_STATIC (olddecl))))
2621 make_decl_rtl (olddecl);
2622
2623 /* The NEWDECL will no longer be needed. Because every out-of-class
2624 declaration of a member results in a call to duplicate_decls,
2625 freeing these nodes represents in a significant savings.
2626
2627 Before releasing the node, be sore to remove function from symbol
2628 table that might have been inserted there to record comdat group.
2629 Be sure to however do not free DECL_STRUCT_FUNCTION becuase this
2630 structure is shared in between newdecl and oldecl. */
2631 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2632 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2633 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2634 {
2635 struct symtab_node *snode = symtab_node::get (newdecl);
2636 if (snode)
2637 snode->remove ();
2638 }
2639
2640 /* Remove the associated constraints for newdecl, if any, before
2641 reclaiming memory. */
2642 if (flag_concepts)
2643 remove_constraints (newdecl);
2644
2645 ggc_free (newdecl);
2646
2647 return olddecl;
2648 }
2649 \f
2650 /* Return zero if the declaration NEWDECL is valid
2651 when the declaration OLDDECL (assumed to be for the same name)
2652 has already been seen.
2653 Otherwise return an error message format string with a %s
2654 where the identifier should go. */
2655
2656 static const char *
2657 redeclaration_error_message (tree newdecl, tree olddecl)
2658 {
2659 if (TREE_CODE (newdecl) == TYPE_DECL)
2660 {
2661 /* Because C++ can put things into name space for free,
2662 constructs like "typedef struct foo { ... } foo"
2663 would look like an erroneous redeclaration. */
2664 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2665 return NULL;
2666 else
2667 return G_("redefinition of %q#D");
2668 }
2669 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2670 {
2671 /* If this is a pure function, its olddecl will actually be
2672 the original initialization to `0' (which we force to call
2673 abort()). Don't complain about redefinition in this case. */
2674 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2675 && DECL_INITIAL (olddecl) == NULL_TREE)
2676 return NULL;
2677
2678 /* If both functions come from different namespaces, this is not
2679 a redeclaration - this is a conflict with a used function. */
2680 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2681 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2682 && ! decls_match (olddecl, newdecl))
2683 return G_("%qD conflicts with used function");
2684
2685 /* We'll complain about linkage mismatches in
2686 warn_extern_redeclared_static. */
2687
2688 /* Defining the same name twice is no good. */
2689 if (DECL_INITIAL (olddecl) != NULL_TREE
2690 && DECL_INITIAL (newdecl) != NULL_TREE)
2691 {
2692 if (DECL_NAME (olddecl) == NULL_TREE)
2693 return G_("%q#D not declared in class");
2694 else if (!GNU_INLINE_P (olddecl)
2695 || GNU_INLINE_P (newdecl))
2696 return G_("redefinition of %q#D");
2697 }
2698
2699 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2700 {
2701 bool olda = GNU_INLINE_P (olddecl);
2702 bool newa = GNU_INLINE_P (newdecl);
2703
2704 if (olda != newa)
2705 {
2706 if (newa)
2707 return G_("%q+D redeclared inline with "
2708 "%<gnu_inline%> attribute");
2709 else
2710 return G_("%q+D redeclared inline without "
2711 "%<gnu_inline%> attribute");
2712 }
2713 }
2714
2715 check_abi_tag_redeclaration
2716 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2717 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2718
2719 return NULL;
2720 }
2721 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2722 {
2723 tree nt, ot;
2724
2725 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2726 {
2727 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2728 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2729 return G_("redefinition of %q#D");
2730 return NULL;
2731 }
2732
2733 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2734 || (DECL_TEMPLATE_RESULT (newdecl)
2735 == DECL_TEMPLATE_RESULT (olddecl)))
2736 return NULL;
2737
2738 nt = DECL_TEMPLATE_RESULT (newdecl);
2739 if (DECL_TEMPLATE_INFO (nt))
2740 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2741 ot = DECL_TEMPLATE_RESULT (olddecl);
2742 if (DECL_TEMPLATE_INFO (ot))
2743 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2744 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2745 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2746 return G_("redefinition of %q#D");
2747
2748 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2749 {
2750 bool olda = GNU_INLINE_P (ot);
2751 bool newa = GNU_INLINE_P (nt);
2752
2753 if (olda != newa)
2754 {
2755 if (newa)
2756 return G_("%q+D redeclared inline with "
2757 "%<gnu_inline%> attribute");
2758 else
2759 return G_("%q+D redeclared inline without "
2760 "%<gnu_inline%> attribute");
2761 }
2762 }
2763
2764 /* Core issue #226 (C++0x):
2765
2766 If a friend function template declaration specifies a
2767 default template-argument, that declaration shall be a
2768 definition and shall be the only declaration of the
2769 function template in the translation unit. */
2770 if ((cxx_dialect != cxx98)
2771 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2772 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2773 /*is_primary=*/true,
2774 /*is_partial=*/false,
2775 /*is_friend_decl=*/2))
2776 return G_("redeclaration of friend %q#D "
2777 "may not have default template arguments");
2778
2779 return NULL;
2780 }
2781 else if (VAR_P (newdecl)
2782 && CP_DECL_THREAD_LOCAL_P (newdecl) != CP_DECL_THREAD_LOCAL_P (olddecl)
2783 && (! DECL_LANG_SPECIFIC (olddecl)
2784 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2785 || CP_DECL_THREAD_LOCAL_P (newdecl)))
2786 {
2787 /* Only variables can be thread-local, and all declarations must
2788 agree on this property. */
2789 if (CP_DECL_THREAD_LOCAL_P (newdecl))
2790 return G_("thread-local declaration of %q#D follows "
2791 "non-thread-local declaration");
2792 else
2793 return G_("non-thread-local declaration of %q#D follows "
2794 "thread-local declaration");
2795 }
2796 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2797 {
2798 /* The objects have been declared at namespace scope. If either
2799 is a member of an anonymous union, then this is an invalid
2800 redeclaration. For example:
2801
2802 int i;
2803 union { int i; };
2804
2805 is invalid. */
2806 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2807 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2808 return G_("redeclaration of %q#D");
2809 /* If at least one declaration is a reference, there is no
2810 conflict. For example:
2811
2812 int i = 3;
2813 extern int i;
2814
2815 is valid. */
2816 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2817 return NULL;
2818 /* Reject two definitions. */
2819 return G_("redefinition of %q#D");
2820 }
2821 else
2822 {
2823 /* Objects declared with block scope: */
2824 /* Reject two definitions, and reject a definition
2825 together with an external reference. */
2826 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2827 return G_("redeclaration of %q#D");
2828 return NULL;
2829 }
2830 }
2831 \f
2832 /* Hash and equality functions for the named_label table. */
2833
2834 hashval_t
2835 named_label_hasher::hash (named_label_entry *ent)
2836 {
2837 return DECL_UID (ent->label_decl);
2838 }
2839
2840 bool
2841 named_label_hasher::equal (named_label_entry *a, named_label_entry *b)
2842 {
2843 return a->label_decl == b->label_decl;
2844 }
2845
2846 /* Create a new label, named ID. */
2847
2848 static tree
2849 make_label_decl (tree id, int local_p)
2850 {
2851 struct named_label_entry *ent;
2852 tree decl;
2853
2854 decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
2855
2856 DECL_CONTEXT (decl) = current_function_decl;
2857 DECL_MODE (decl) = VOIDmode;
2858 C_DECLARED_LABEL_FLAG (decl) = local_p;
2859
2860 /* Say where one reference is to the label, for the sake of the
2861 error if it is not defined. */
2862 DECL_SOURCE_LOCATION (decl) = input_location;
2863
2864 /* Record the fact that this identifier is bound to this label. */
2865 SET_IDENTIFIER_LABEL_VALUE (id, decl);
2866
2867 /* Create the label htab for the function on demand. */
2868 if (!named_labels)
2869 named_labels = hash_table<named_label_hasher>::create_ggc (13);
2870
2871 /* Record this label on the list of labels used in this function.
2872 We do this before calling make_label_decl so that we get the
2873 IDENTIFIER_LABEL_VALUE before the new label is declared. */
2874 ent = ggc_cleared_alloc<named_label_entry> ();
2875 ent->label_decl = decl;
2876
2877 named_label_entry **slot = named_labels->find_slot (ent, INSERT);
2878 gcc_assert (*slot == NULL);
2879 *slot = ent;
2880
2881 return decl;
2882 }
2883
2884 /* Look for a label named ID in the current function. If one cannot
2885 be found, create one. (We keep track of used, but undefined,
2886 labels, and complain about them at the end of a function.) */
2887
2888 static tree
2889 lookup_label_1 (tree id)
2890 {
2891 tree decl;
2892
2893 /* You can't use labels at global scope. */
2894 if (current_function_decl == NULL_TREE)
2895 {
2896 error ("label %qE referenced outside of any function", id);
2897 return NULL_TREE;
2898 }
2899
2900 /* See if we've already got this label. */
2901 decl = IDENTIFIER_LABEL_VALUE (id);
2902 if (decl != NULL_TREE && DECL_CONTEXT (decl) == current_function_decl)
2903 return decl;
2904
2905 decl = make_label_decl (id, /*local_p=*/0);
2906 return decl;
2907 }
2908
2909 /* Wrapper for lookup_label_1. */
2910
2911 tree
2912 lookup_label (tree id)
2913 {
2914 tree ret;
2915 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
2916 ret = lookup_label_1 (id);
2917 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
2918 return ret;
2919 }
2920
2921 /* Declare a local label named ID. */
2922
2923 tree
2924 declare_local_label (tree id)
2925 {
2926 tree decl;
2927 cp_label_binding bind;
2928
2929 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
2930 this scope we can restore the old value of IDENTIFIER_TYPE_VALUE. */
2931 bind.prev_value = IDENTIFIER_LABEL_VALUE (id);
2932
2933 decl = make_label_decl (id, /*local_p=*/1);
2934 bind.label = decl;
2935 vec_safe_push (current_binding_level->shadowed_labels, bind);
2936
2937 return decl;
2938 }
2939
2940 /* Returns nonzero if it is ill-formed to jump past the declaration of
2941 DECL. Returns 2 if it's also a real problem. */
2942
2943 static int
2944 decl_jump_unsafe (tree decl)
2945 {
2946 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
2947 with automatic storage duration is not in scope to a point where it is
2948 in scope is ill-formed unless the variable has scalar type, class type
2949 with a trivial default constructor and a trivial destructor, a
2950 cv-qualified version of one of these types, or an array of one of the
2951 preceding types and is declared without an initializer (8.5). */
2952 tree type = TREE_TYPE (decl);
2953
2954 if (!VAR_P (decl) || TREE_STATIC (decl)
2955 || type == error_mark_node)
2956 return 0;
2957
2958 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
2959 || variably_modified_type_p (type, NULL_TREE))
2960 return 2;
2961
2962 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
2963 return 1;
2964
2965 return 0;
2966 }
2967
2968 /* A subroutine of check_previous_goto_1 to identify a branch to the user. */
2969
2970 static bool
2971 identify_goto (tree decl, const location_t *locus)
2972 {
2973 bool complained = (decl
2974 ? permerror (input_location, "jump to label %qD", decl)
2975 : permerror (input_location, "jump to case label"));
2976 if (complained && locus)
2977 inform (*locus, " from here");
2978 return complained;
2979 }
2980
2981 /* Check that a single previously seen jump to a newly defined label
2982 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
2983 the jump context; NAMES are the names in scope in LEVEL at the jump
2984 context; LOCUS is the source position of the jump or 0. Returns
2985 true if all is well. */
2986
2987 static bool
2988 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
2989 bool exited_omp, const location_t *locus)
2990 {
2991 cp_binding_level *b;
2992 bool identified = false, complained = false;
2993 bool saw_eh = false, saw_omp = false, saw_tm = false;
2994
2995 if (exited_omp)
2996 {
2997 complained = identify_goto (decl, locus);
2998 if (complained)
2999 inform (input_location, " exits OpenMP structured block");
3000 identified = saw_omp = true;
3001 }
3002
3003 for (b = current_binding_level; b ; b = b->level_chain)
3004 {
3005 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
3006
3007 for (new_decls = b->names; new_decls != old_decls;
3008 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
3009 : TREE_CHAIN (new_decls)))
3010 {
3011 int problem = decl_jump_unsafe (new_decls);
3012 if (! problem)
3013 continue;
3014
3015 if (!identified)
3016 {
3017 complained = identify_goto (decl, locus);
3018 identified = true;
3019 }
3020 if (complained)
3021 {
3022 if (problem > 1)
3023 inform (DECL_SOURCE_LOCATION (new_decls),
3024 " crosses initialization of %q#D", new_decls);
3025 else
3026 inform (DECL_SOURCE_LOCATION (new_decls),
3027 " enters scope of %q#D which has "
3028 "non-trivial destructor", new_decls);
3029 }
3030 }
3031
3032 if (b == level)
3033 break;
3034 if ((b->kind == sk_try || b->kind == sk_catch) && !saw_eh)
3035 {
3036 if (!identified)
3037 {
3038 complained = identify_goto (decl, locus);
3039 identified = true;
3040 }
3041 if (complained)
3042 {
3043 if (b->kind == sk_try)
3044 inform (input_location, " enters try block");
3045 else
3046 inform (input_location, " enters catch block");
3047 }
3048 saw_eh = true;
3049 }
3050 if (b->kind == sk_omp && !saw_omp)
3051 {
3052 if (!identified)
3053 {
3054 complained = identify_goto (decl, locus);
3055 identified = true;
3056 }
3057 if (complained)
3058 inform (input_location, " enters OpenMP structured block");
3059 saw_omp = true;
3060 }
3061 if (b->kind == sk_transaction && !saw_tm)
3062 {
3063 if (!identified)
3064 {
3065 complained = identify_goto (decl, locus);
3066 identified = true;
3067 }
3068 if (complained)
3069 inform (input_location,
3070 " enters synchronized or atomic statement");
3071 saw_tm = true;
3072 }
3073 }
3074
3075 return !identified;
3076 }
3077
3078 static void
3079 check_previous_goto (tree decl, struct named_label_use_entry *use)
3080 {
3081 check_previous_goto_1 (decl, use->binding_level,
3082 use->names_in_scope, use->in_omp_scope,
3083 &use->o_goto_locus);
3084 }
3085
3086 static bool
3087 check_switch_goto (cp_binding_level* level)
3088 {
3089 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
3090 }
3091
3092 /* Check that a new jump to a label DECL is OK. Called by
3093 finish_goto_stmt. */
3094
3095 void
3096 check_goto (tree decl)
3097 {
3098 struct named_label_entry *ent, dummy;
3099 bool saw_catch = false, identified = false, complained = false;
3100 tree bad;
3101 unsigned ix;
3102
3103 /* We can't know where a computed goto is jumping.
3104 So we assume that it's OK. */
3105 if (TREE_CODE (decl) != LABEL_DECL)
3106 return;
3107
3108 /* We didn't record any information about this label when we created it,
3109 and there's not much point since it's trivial to analyze as a return. */
3110 if (decl == cdtor_label)
3111 return;
3112
3113 dummy.label_decl = decl;
3114 ent = named_labels->find (&dummy);
3115 gcc_assert (ent != NULL);
3116
3117 /* If the label hasn't been defined yet, defer checking. */
3118 if (! DECL_INITIAL (decl))
3119 {
3120 struct named_label_use_entry *new_use;
3121
3122 /* Don't bother creating another use if the last goto had the
3123 same data, and will therefore create the same set of errors. */
3124 if (ent->uses
3125 && ent->uses->names_in_scope == current_binding_level->names)
3126 return;
3127
3128 new_use = ggc_alloc<named_label_use_entry> ();
3129 new_use->binding_level = current_binding_level;
3130 new_use->names_in_scope = current_binding_level->names;
3131 new_use->o_goto_locus = input_location;
3132 new_use->in_omp_scope = false;
3133
3134 new_use->next = ent->uses;
3135 ent->uses = new_use;
3136 return;
3137 }
3138
3139 if (ent->in_try_scope || ent->in_catch_scope || ent->in_transaction_scope
3140 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3141 {
3142 complained = permerror (DECL_SOURCE_LOCATION (decl),
3143 "jump to label %qD", decl);
3144 if (complained)
3145 inform (input_location, " from here");
3146 identified = true;
3147 }
3148
3149 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3150 {
3151 int u = decl_jump_unsafe (bad);
3152
3153 if (u > 1 && DECL_ARTIFICIAL (bad))
3154 {
3155 /* Can't skip init of __exception_info. */
3156 if (complained)
3157 inform (DECL_SOURCE_LOCATION (bad), " enters catch block");
3158 saw_catch = true;
3159 }
3160 else if (complained)
3161 {
3162 if (u > 1)
3163 inform (DECL_SOURCE_LOCATION (bad),
3164 " skips initialization of %q#D", bad);
3165 else
3166 inform (DECL_SOURCE_LOCATION (bad),
3167 " enters scope of %q#D which has "
3168 "non-trivial destructor", bad);
3169 }
3170 }
3171
3172 if (complained)
3173 {
3174 if (ent->in_try_scope)
3175 inform (input_location, " enters try block");
3176 else if (ent->in_catch_scope && !saw_catch)
3177 inform (input_location, " enters catch block");
3178 else if (ent->in_transaction_scope)
3179 inform (input_location, " enters synchronized or atomic statement");
3180 }
3181
3182 if (ent->in_omp_scope)
3183 {
3184 if (complained)
3185 inform (input_location, " enters OpenMP structured block");
3186 }
3187 else if (flag_openmp)
3188 {
3189 cp_binding_level *b;
3190 for (b = current_binding_level; b ; b = b->level_chain)
3191 {
3192 if (b == ent->binding_level)
3193 break;
3194 if (b->kind == sk_omp)
3195 {
3196 if (!identified)
3197 {
3198 complained = permerror (DECL_SOURCE_LOCATION (decl),
3199 "jump to label %qD", decl);
3200 if (complained)
3201 inform (input_location, " from here");
3202 identified = true;
3203 }
3204 if (complained)
3205 inform (input_location, " exits OpenMP structured block");
3206 break;
3207 }
3208 }
3209 }
3210 }
3211
3212 /* Check that a return is ok wrt OpenMP structured blocks.
3213 Called by finish_return_stmt. Returns true if all is well. */
3214
3215 bool
3216 check_omp_return (void)
3217 {
3218 cp_binding_level *b;
3219 for (b = current_binding_level; b ; b = b->level_chain)
3220 if (b->kind == sk_omp)
3221 {
3222 error ("invalid exit from OpenMP structured block");
3223 return false;
3224 }
3225 else if (b->kind == sk_function_parms)
3226 break;
3227 return true;
3228 }
3229
3230 /* Define a label, specifying the location in the source file.
3231 Return the LABEL_DECL node for the label. */
3232
3233 static tree
3234 define_label_1 (location_t location, tree name)
3235 {
3236 struct named_label_entry *ent, dummy;
3237 cp_binding_level *p;
3238 tree decl;
3239
3240 decl = lookup_label (name);
3241
3242 dummy.label_decl = decl;
3243 ent = named_labels->find (&dummy);
3244 gcc_assert (ent != NULL);
3245
3246 /* After labels, make any new cleanups in the function go into their
3247 own new (temporary) binding contour. */
3248 for (p = current_binding_level;
3249 p->kind != sk_function_parms;
3250 p = p->level_chain)
3251 p->more_cleanups_ok = 0;
3252
3253 if (name == get_identifier ("wchar_t"))
3254 permerror (input_location, "label named wchar_t");
3255
3256 if (DECL_INITIAL (decl) != NULL_TREE)
3257 {
3258 error ("duplicate label %qD", decl);
3259 return error_mark_node;
3260 }
3261 else
3262 {
3263 struct named_label_use_entry *use;
3264
3265 /* Mark label as having been defined. */
3266 DECL_INITIAL (decl) = error_mark_node;
3267 /* Say where in the source. */
3268 DECL_SOURCE_LOCATION (decl) = location;
3269
3270 ent->binding_level = current_binding_level;
3271 ent->names_in_scope = current_binding_level->names;
3272
3273 for (use = ent->uses; use ; use = use->next)
3274 check_previous_goto (decl, use);
3275 ent->uses = NULL;
3276 }
3277
3278 return decl;
3279 }
3280
3281 /* Wrapper for define_label_1. */
3282
3283 tree
3284 define_label (location_t location, tree name)
3285 {
3286 tree ret;
3287 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3288 ret = define_label_1 (location, name);
3289 timevar_cond_stop (TV_NAME_LOOKUP, running);
3290 return ret;
3291 }
3292
3293
3294 struct cp_switch
3295 {
3296 cp_binding_level *level;
3297 struct cp_switch *next;
3298 /* The SWITCH_STMT being built. */
3299 tree switch_stmt;
3300 /* A splay-tree mapping the low element of a case range to the high
3301 element, or NULL_TREE if there is no high element. Used to
3302 determine whether or not a new case label duplicates an old case
3303 label. We need a tree, rather than simply a hash table, because
3304 of the GNU case range extension. */
3305 splay_tree cases;
3306 /* Remember whether there was a case value that is outside the
3307 range of the original type of the controlling expression. */
3308 bool outside_range_p;
3309 };
3310
3311 /* A stack of the currently active switch statements. The innermost
3312 switch statement is on the top of the stack. There is no need to
3313 mark the stack for garbage collection because it is only active
3314 during the processing of the body of a function, and we never
3315 collect at that point. */
3316
3317 static struct cp_switch *switch_stack;
3318
3319 /* Called right after a switch-statement condition is parsed.
3320 SWITCH_STMT is the switch statement being parsed. */
3321
3322 void
3323 push_switch (tree switch_stmt)
3324 {
3325 struct cp_switch *p = XNEW (struct cp_switch);
3326 p->level = current_binding_level;
3327 p->next = switch_stack;
3328 p->switch_stmt = switch_stmt;
3329 p->cases = splay_tree_new (case_compare, NULL, NULL);
3330 p->outside_range_p = false;
3331 switch_stack = p;
3332 }
3333
3334 void
3335 pop_switch (void)
3336 {
3337 struct cp_switch *cs = switch_stack;
3338 location_t switch_location;
3339
3340 /* Emit warnings as needed. */
3341 switch_location = EXPR_LOC_OR_LOC (cs->switch_stmt, input_location);
3342 const bool bool_cond_p
3343 = (SWITCH_STMT_TYPE (cs->switch_stmt)
3344 && TREE_CODE (SWITCH_STMT_TYPE (cs->switch_stmt)) == BOOLEAN_TYPE);
3345 if (!processing_template_decl)
3346 c_do_switch_warnings (cs->cases, switch_location,
3347 SWITCH_STMT_TYPE (cs->switch_stmt),
3348 SWITCH_STMT_COND (cs->switch_stmt),
3349 bool_cond_p, cs->outside_range_p);
3350
3351 splay_tree_delete (cs->cases);
3352 switch_stack = switch_stack->next;
3353 free (cs);
3354 }
3355
3356 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3357 condition. Note that if TYPE and VALUE are already integral we don't
3358 really do the conversion because the language-independent
3359 warning/optimization code will work better that way. */
3360
3361 static tree
3362 case_conversion (tree type, tree value)
3363 {
3364 if (value == NULL_TREE)
3365 return value;
3366
3367 if (cxx_dialect >= cxx11
3368 && (SCOPED_ENUM_P (type)
3369 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))))
3370 {
3371 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3372 type = type_promotes_to (type);
3373 value = (perform_implicit_conversion_flags
3374 (type, value, tf_warning_or_error,
3375 LOOKUP_IMPLICIT | LOOKUP_NO_NON_INTEGRAL));
3376 }
3377 return cxx_constant_value (value);
3378 }
3379
3380 /* Note that we've seen a definition of a case label, and complain if this
3381 is a bad place for one. */
3382
3383 tree
3384 finish_case_label (location_t loc, tree low_value, tree high_value)
3385 {
3386 tree cond, r;
3387 cp_binding_level *p;
3388 tree type;
3389
3390 if (processing_template_decl)
3391 {
3392 tree label;
3393
3394 /* For templates, just add the case label; we'll do semantic
3395 analysis at instantiation-time. */
3396 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
3397 return add_stmt (build_case_label (low_value, high_value, label));
3398 }
3399
3400 /* Find the condition on which this switch statement depends. */
3401 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3402 if (cond && TREE_CODE (cond) == TREE_LIST)
3403 cond = TREE_VALUE (cond);
3404
3405 if (!check_switch_goto (switch_stack->level))
3406 return error_mark_node;
3407
3408 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3409
3410 low_value = case_conversion (type, low_value);
3411 high_value = case_conversion (type, high_value);
3412
3413 r = c_add_case_label (loc, switch_stack->cases, cond, type,
3414 low_value, high_value,
3415 &switch_stack->outside_range_p);
3416
3417 /* After labels, make any new cleanups in the function go into their
3418 own new (temporary) binding contour. */
3419 for (p = current_binding_level;
3420 p->kind != sk_function_parms;
3421 p = p->level_chain)
3422 p->more_cleanups_ok = 0;
3423
3424 return r;
3425 }
3426 \f
3427 struct typename_info {
3428 tree scope;
3429 tree name;
3430 tree template_id;
3431 bool enum_p;
3432 bool class_p;
3433 };
3434
3435 struct typename_hasher : ggc_ptr_hash<tree_node>
3436 {
3437 typedef typename_info *compare_type;
3438
3439 /* Hash a TYPENAME_TYPE. */
3440
3441 static hashval_t
3442 hash (tree t)
3443 {
3444 hashval_t hash;
3445
3446 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3447 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3448
3449 return hash;
3450 }
3451
3452 /* Compare two TYPENAME_TYPEs. */
3453
3454 static bool
3455 equal (tree t1, const typename_info *t2)
3456 {
3457 return (TYPE_IDENTIFIER (t1) == t2->name
3458 && TYPE_CONTEXT (t1) == t2->scope
3459 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3460 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3461 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3462 }
3463 };
3464
3465 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3466 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3467
3468 Returns the new TYPENAME_TYPE. */
3469
3470 static GTY (()) hash_table<typename_hasher> *typename_htab;
3471
3472 static tree
3473 build_typename_type (tree context, tree name, tree fullname,
3474 enum tag_types tag_type)
3475 {
3476 tree t;
3477 tree d;
3478 typename_info ti;
3479 tree *e;
3480 hashval_t hash;
3481
3482 if (typename_htab == NULL)
3483 typename_htab = hash_table<typename_hasher>::create_ggc (61);
3484
3485 ti.scope = FROB_CONTEXT (context);
3486 ti.name = name;
3487 ti.template_id = fullname;
3488 ti.enum_p = tag_type == enum_type;
3489 ti.class_p = (tag_type == class_type
3490 || tag_type == record_type
3491 || tag_type == union_type);
3492 hash = (htab_hash_pointer (ti.scope)
3493 ^ htab_hash_pointer (ti.name));
3494
3495 /* See if we already have this type. */
3496 e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
3497 if (*e)
3498 t = *e;
3499 else
3500 {
3501 /* Build the TYPENAME_TYPE. */
3502 t = cxx_make_type (TYPENAME_TYPE);
3503 TYPE_CONTEXT (t) = ti.scope;
3504 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3505 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3506 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3507
3508 /* Build the corresponding TYPE_DECL. */
3509 d = build_decl (input_location, TYPE_DECL, name, t);
3510 TYPE_NAME (TREE_TYPE (d)) = d;
3511 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3512 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3513 DECL_ARTIFICIAL (d) = 1;
3514
3515 /* Store it in the hash table. */
3516 *e = t;
3517
3518 /* TYPENAME_TYPEs must always be compared structurally, because
3519 they may or may not resolve down to another type depending on
3520 the currently open classes. */
3521 SET_TYPE_STRUCTURAL_EQUALITY (t);
3522 }
3523
3524 return t;
3525 }
3526
3527 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3528 provided to name the type. Returns an appropriate type, unless an
3529 error occurs, in which case error_mark_node is returned. If we
3530 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3531 return that, rather than the _TYPE it corresponds to, in other
3532 cases we look through the type decl. If TF_ERROR is set, complain
3533 about errors, otherwise be quiet. */
3534
3535 tree
3536 make_typename_type (tree context, tree name, enum tag_types tag_type,
3537 tsubst_flags_t complain)
3538 {
3539 tree fullname;
3540 tree t;
3541 bool want_template;
3542
3543 if (name == error_mark_node
3544 || context == NULL_TREE
3545 || context == error_mark_node)
3546 return error_mark_node;
3547
3548 if (TYPE_P (name))
3549 {
3550 if (!(TYPE_LANG_SPECIFIC (name)
3551 && (CLASSTYPE_IS_TEMPLATE (name)
3552 || CLASSTYPE_USE_TEMPLATE (name))))
3553 name = TYPE_IDENTIFIER (name);
3554 else
3555 /* Create a TEMPLATE_ID_EXPR for the type. */
3556 name = build_nt (TEMPLATE_ID_EXPR,
3557 CLASSTYPE_TI_TEMPLATE (name),
3558 CLASSTYPE_TI_ARGS (name));
3559 }
3560 else if (TREE_CODE (name) == TYPE_DECL)
3561 name = DECL_NAME (name);
3562
3563 fullname = name;
3564
3565 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3566 {
3567 name = TREE_OPERAND (name, 0);
3568 if (DECL_TYPE_TEMPLATE_P (name))
3569 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3570 if (TREE_CODE (name) != IDENTIFIER_NODE)
3571 {
3572 if (complain & tf_error)
3573 error ("%qD is not a type", name);
3574 return error_mark_node;
3575 }
3576 }
3577 if (TREE_CODE (name) == TEMPLATE_DECL)
3578 {
3579 if (complain & tf_error)
3580 error ("%qD used without template parameters", name);
3581 return error_mark_node;
3582 }
3583 gcc_assert (identifier_p (name));
3584 gcc_assert (TYPE_P (context));
3585
3586 if (!MAYBE_CLASS_TYPE_P (context))
3587 {
3588 if (complain & tf_error)
3589 error ("%q#T is not a class", context);
3590 return error_mark_node;
3591 }
3592
3593 /* When the CONTEXT is a dependent type, NAME could refer to a
3594 dependent base class of CONTEXT. But look inside it anyway
3595 if CONTEXT is a currently open scope, in case it refers to a
3596 member of the current instantiation or a non-dependent base;
3597 lookup will stop when we hit a dependent base. */
3598 if (!dependent_scope_p (context))
3599 /* We should only set WANT_TYPE when we're a nested typename type.
3600 Then we can give better diagnostics if we find a non-type. */
3601 t = lookup_field (context, name, 2, /*want_type=*/true);
3602 else
3603 t = NULL_TREE;
3604
3605 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3606 return build_typename_type (context, name, fullname, tag_type);
3607
3608 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3609
3610 if (!t)
3611 {
3612 if (complain & tf_error)
3613 error (want_template ? G_("no class template named %q#T in %q#T")
3614 : G_("no type named %q#T in %q#T"), name, context);
3615 return error_mark_node;
3616 }
3617
3618 /* Pull out the template from an injected-class-name (or multiple). */
3619 if (want_template)
3620 t = maybe_get_template_decl_from_type_decl (t);
3621
3622 if (TREE_CODE (t) == TREE_LIST)
3623 {
3624 if (complain & tf_error)
3625 {
3626 error ("lookup of %qT in %qT is ambiguous", name, context);
3627 print_candidates (t);
3628 }
3629 return error_mark_node;
3630 }
3631
3632 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3633 {
3634 if (complain & tf_error)
3635 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3636 context, name, t);
3637 return error_mark_node;
3638 }
3639 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3640 {
3641 if (complain & tf_error)
3642 error ("%<typename %T::%D%> names %q#T, which is not a type",
3643 context, name, t);
3644 return error_mark_node;
3645 }
3646
3647 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3648 return error_mark_node;
3649
3650 /* If we are currently parsing a template and if T is a typedef accessed
3651 through CONTEXT then we need to remember and check access of T at
3652 template instantiation time. */
3653 add_typedef_to_current_template_for_access_check (t, context, input_location);
3654
3655 if (want_template)
3656 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3657 NULL_TREE, context,
3658 /*entering_scope=*/0,
3659 complain | tf_user);
3660
3661 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3662 t = TREE_TYPE (t);
3663
3664 maybe_record_typedef_use (t);
3665
3666 return t;
3667 }
3668
3669 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3670 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3671 in which case error_mark_node is returned.
3672
3673 If PARM_LIST is non-NULL, also make sure that the template parameter
3674 list of TEMPLATE_DECL matches.
3675
3676 If COMPLAIN zero, don't complain about any errors that occur. */
3677
3678 tree
3679 make_unbound_class_template (tree context, tree name, tree parm_list,
3680 tsubst_flags_t complain)
3681 {
3682 tree t;
3683 tree d;
3684
3685 if (TYPE_P (name))
3686 name = TYPE_IDENTIFIER (name);
3687 else if (DECL_P (name))
3688 name = DECL_NAME (name);
3689 gcc_assert (identifier_p (name));
3690
3691 if (!dependent_type_p (context)
3692 || currently_open_class (context))
3693 {
3694 tree tmpl = NULL_TREE;
3695
3696 if (MAYBE_CLASS_TYPE_P (context))
3697 tmpl = lookup_field (context, name, 0, false);
3698
3699 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3700 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3701
3702 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3703 {
3704 if (complain & tf_error)
3705 error ("no class template named %q#T in %q#T", name, context);
3706 return error_mark_node;
3707 }
3708
3709 if (parm_list
3710 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3711 {
3712 if (complain & tf_error)
3713 {
3714 error ("template parameters do not match template %qD", tmpl);
3715 inform (DECL_SOURCE_LOCATION (tmpl),
3716 "%qD declared here", tmpl);
3717 }
3718 return error_mark_node;
3719 }
3720
3721 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
3722 complain))
3723 return error_mark_node;
3724
3725 return tmpl;
3726 }
3727
3728 /* Build the UNBOUND_CLASS_TEMPLATE. */
3729 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3730 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3731 TREE_TYPE (t) = NULL_TREE;
3732 SET_TYPE_STRUCTURAL_EQUALITY (t);
3733
3734 /* Build the corresponding TEMPLATE_DECL. */
3735 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3736 TYPE_NAME (TREE_TYPE (d)) = d;
3737 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3738 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3739 DECL_ARTIFICIAL (d) = 1;
3740 DECL_TEMPLATE_PARMS (d) = parm_list;
3741
3742 return t;
3743 }
3744
3745 \f
3746
3747 /* Push the declarations of builtin types into the namespace.
3748 RID_INDEX is the index of the builtin type in the array
3749 RID_POINTERS. NAME is the name used when looking up the builtin
3750 type. TYPE is the _TYPE node for the builtin type. */
3751
3752 void
3753 record_builtin_type (enum rid rid_index,
3754 const char* name,
3755 tree type)
3756 {
3757 tree rname = NULL_TREE, tname = NULL_TREE;
3758 tree tdecl = NULL_TREE;
3759
3760 if ((int) rid_index < (int) RID_MAX)
3761 rname = ridpointers[(int) rid_index];
3762 if (name)
3763 tname = get_identifier (name);
3764
3765 /* The calls to SET_IDENTIFIER_GLOBAL_VALUE below should be
3766 eliminated. Built-in types should not be looked up name; their
3767 names are keywords that the parser can recognize. However, there
3768 is code in c-common.c that uses identifier_global_value to look
3769 up built-in types by name. */
3770 if (tname)
3771 {
3772 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
3773 DECL_ARTIFICIAL (tdecl) = 1;
3774 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
3775 }
3776 if (rname)
3777 {
3778 if (!tdecl)
3779 {
3780 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
3781 DECL_ARTIFICIAL (tdecl) = 1;
3782 }
3783 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
3784 }
3785
3786 if (!TYPE_NAME (type))
3787 TYPE_NAME (type) = tdecl;
3788
3789 if (tdecl)
3790 debug_hooks->type_decl (tdecl, 0);
3791 }
3792
3793 /* Record one of the standard Java types.
3794 * Declare it as having the given NAME.
3795 * If SIZE > 0, it is the size of one of the integral types;
3796 * otherwise it is the negative of the size of one of the other types. */
3797
3798 static tree
3799 record_builtin_java_type (const char* name, int size)
3800 {
3801 tree type, decl;
3802 if (size > 0)
3803 {
3804 type = build_nonstandard_integer_type (size, 0);
3805 type = build_distinct_type_copy (type);
3806 }
3807 else if (size > -32)
3808 {
3809 tree stype;
3810 /* "__java_char" or ""__java_boolean". */
3811 type = build_nonstandard_integer_type (-size, 1);
3812 type = build_distinct_type_copy (type);
3813 /* Get the signed type cached and attached to the unsigned type,
3814 so it doesn't get garbage-collected at "random" times,
3815 causing potential codegen differences out of different UIDs
3816 and different alias set numbers. */
3817 stype = build_nonstandard_integer_type (-size, 0);
3818 stype = build_distinct_type_copy (stype);
3819 TREE_CHAIN (type) = stype;
3820 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
3821 }
3822 else
3823 { /* "__java_float" or ""__java_double". */
3824 type = make_node (REAL_TYPE);
3825 TYPE_PRECISION (type) = - size;
3826 layout_type (type);
3827 }
3828 record_builtin_type (RID_MAX, name, type);
3829 decl = TYPE_NAME (type);
3830
3831 /* Suppress generate debug symbol entries for these types,
3832 since for normal C++ they are just clutter.
3833 However, push_lang_context undoes this if extern "Java" is seen. */
3834 DECL_IGNORED_P (decl) = 1;
3835
3836 TYPE_FOR_JAVA (type) = 1;
3837 return type;
3838 }
3839
3840 /* Push a type into the namespace so that the back ends ignore it. */
3841
3842 static void
3843 record_unknown_type (tree type, const char* name)
3844 {
3845 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
3846 TYPE_DECL, get_identifier (name), type));
3847 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3848 DECL_IGNORED_P (decl) = 1;
3849 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
3850 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
3851 TYPE_ALIGN (type) = 1;
3852 TYPE_USER_ALIGN (type) = 0;
3853 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
3854 }
3855
3856 /* A string for which we should create an IDENTIFIER_NODE at
3857 startup. */
3858
3859 struct predefined_identifier
3860 {
3861 /* The name of the identifier. */
3862 const char *const name;
3863 /* The place where the IDENTIFIER_NODE should be stored. */
3864 tree *const node;
3865 /* Nonzero if this is the name of a constructor or destructor. */
3866 const int ctor_or_dtor_p;
3867 };
3868
3869 /* Create all the predefined identifiers. */
3870
3871 static void
3872 initialize_predefined_identifiers (void)
3873 {
3874 const predefined_identifier *pid;
3875
3876 /* A table of identifiers to create at startup. */
3877 static const predefined_identifier predefined_identifiers[] = {
3878 { "C++", &lang_name_cplusplus, 0 },
3879 { "C", &lang_name_c, 0 },
3880 { "Java", &lang_name_java, 0 },
3881 /* Some of these names have a trailing space so that it is
3882 impossible for them to conflict with names written by users. */
3883 { "__ct ", &ctor_identifier, 1 },
3884 { "__base_ctor ", &base_ctor_identifier, 1 },
3885 { "__comp_ctor ", &complete_ctor_identifier, 1 },
3886 { "__dt ", &dtor_identifier, 1 },
3887 { "__comp_dtor ", &complete_dtor_identifier, 1 },
3888 { "__base_dtor ", &base_dtor_identifier, 1 },
3889 { "__deleting_dtor ", &deleting_dtor_identifier, 1 },
3890 { IN_CHARGE_NAME, &in_charge_identifier, 0 },
3891 { "nelts", &nelts_identifier, 0 },
3892 { THIS_NAME, &this_identifier, 0 },
3893 { VTABLE_DELTA_NAME, &delta_identifier, 0 },
3894 { VTABLE_PFN_NAME, &pfn_identifier, 0 },
3895 { "_vptr", &vptr_identifier, 0 },
3896 { "__vtt_parm", &vtt_parm_identifier, 0 },
3897 { "::", &global_scope_name, 0 },
3898 { "std", &std_identifier, 0 },
3899 { NULL, NULL, 0 }
3900 };
3901
3902 for (pid = predefined_identifiers; pid->name; ++pid)
3903 {
3904 *pid->node = get_identifier (pid->name);
3905 if (pid->ctor_or_dtor_p)
3906 IDENTIFIER_CTOR_OR_DTOR_P (*pid->node) = 1;
3907 }
3908 }
3909
3910 /* Create the predefined scalar types of C,
3911 and some nodes representing standard constants (0, 1, (void *)0).
3912 Initialize the global binding level.
3913 Make definitions for built-in primitive functions. */
3914
3915 void
3916 cxx_init_decl_processing (void)
3917 {
3918 tree void_ftype;
3919 tree void_ftype_ptr;
3920
3921 /* Create all the identifiers we need. */
3922 initialize_predefined_identifiers ();
3923
3924 /* Create the global variables. */
3925 push_to_top_level ();
3926
3927 current_function_decl = NULL_TREE;
3928 current_binding_level = NULL;
3929 /* Enter the global namespace. */
3930 gcc_assert (global_namespace == NULL_TREE);
3931 global_namespace = build_lang_decl (NAMESPACE_DECL, global_scope_name,
3932 void_type_node);
3933 DECL_CONTEXT (global_namespace) = build_translation_unit_decl (NULL_TREE);
3934 debug_hooks->register_main_translation_unit
3935 (DECL_CONTEXT (global_namespace));
3936 TREE_PUBLIC (global_namespace) = 1;
3937 begin_scope (sk_namespace, global_namespace);
3938
3939 if (flag_visibility_ms_compat)
3940 default_visibility = VISIBILITY_HIDDEN;
3941
3942 /* Initially, C. */
3943 current_lang_name = lang_name_c;
3944
3945 /* Create the `std' namespace. */
3946 push_namespace (std_identifier);
3947 std_node = current_namespace;
3948 pop_namespace ();
3949
3950 c_common_nodes_and_builtins ();
3951
3952 java_byte_type_node = record_builtin_java_type ("__java_byte", 8);
3953 java_short_type_node = record_builtin_java_type ("__java_short", 16);
3954 java_int_type_node = record_builtin_java_type ("__java_int", 32);
3955 java_long_type_node = record_builtin_java_type ("__java_long", 64);
3956 java_float_type_node = record_builtin_java_type ("__java_float", -32);
3957 java_double_type_node = record_builtin_java_type ("__java_double", -64);
3958 java_char_type_node = record_builtin_java_type ("__java_char", -16);
3959 java_boolean_type_node = record_builtin_java_type ("__java_boolean", -1);
3960
3961 integer_two_node = build_int_cst (NULL_TREE, 2);
3962
3963 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
3964 truthvalue_type_node = boolean_type_node;
3965 truthvalue_false_node = boolean_false_node;
3966 truthvalue_true_node = boolean_true_node;
3967
3968 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
3969 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
3970 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
3971
3972 #if 0
3973 record_builtin_type (RID_MAX, NULL, string_type_node);
3974 #endif
3975
3976 delta_type_node = ptrdiff_type_node;
3977 vtable_index_type = ptrdiff_type_node;
3978
3979 vtt_parm_type = build_pointer_type (const_ptr_type_node);
3980 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
3981 void_ftype_ptr = build_function_type_list (void_type_node,
3982 ptr_type_node, NULL_TREE);
3983 void_ftype_ptr
3984 = build_exception_variant (void_ftype_ptr, empty_except_spec);
3985
3986 /* C++ extensions */
3987
3988 unknown_type_node = make_node (LANG_TYPE);
3989 record_unknown_type (unknown_type_node, "unknown type");
3990
3991 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
3992 TREE_TYPE (unknown_type_node) = unknown_type_node;
3993
3994 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
3995 result. */
3996 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
3997 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
3998
3999 init_list_type_node = make_node (LANG_TYPE);
4000 record_unknown_type (init_list_type_node, "init list");
4001
4002 {
4003 /* Make sure we get a unique function type, so we can give
4004 its pointer type a name. (This wins for gdb.) */
4005 tree vfunc_type = make_node (FUNCTION_TYPE);
4006 TREE_TYPE (vfunc_type) = integer_type_node;
4007 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
4008 layout_type (vfunc_type);
4009
4010 vtable_entry_type = build_pointer_type (vfunc_type);
4011 }
4012 record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
4013
4014 vtbl_type_node
4015 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
4016 layout_type (vtbl_type_node);
4017 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
4018 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
4019 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
4020 layout_type (vtbl_ptr_type_node);
4021 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
4022
4023 push_namespace (get_identifier ("__cxxabiv1"));
4024 abi_node = current_namespace;
4025 pop_namespace ();
4026
4027 global_type_node = make_node (LANG_TYPE);
4028 record_unknown_type (global_type_node, "global type");
4029
4030 /* Now, C++. */
4031 current_lang_name = lang_name_cplusplus;
4032
4033 {
4034 tree newattrs, extvisattr;
4035 tree newtype, deltype;
4036 tree ptr_ftype_sizetype;
4037 tree new_eh_spec;
4038
4039 ptr_ftype_sizetype
4040 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
4041 if (cxx_dialect == cxx98)
4042 {
4043 tree bad_alloc_id;
4044 tree bad_alloc_type_node;
4045 tree bad_alloc_decl;
4046
4047 push_namespace (std_identifier);
4048 bad_alloc_id = get_identifier ("bad_alloc");
4049 bad_alloc_type_node = make_class_type (RECORD_TYPE);
4050 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
4051 bad_alloc_decl
4052 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
4053 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
4054 pop_namespace ();
4055
4056 new_eh_spec
4057 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
4058 }
4059 else
4060 new_eh_spec = noexcept_false_spec;
4061
4062 /* Ensure attribs.c is initialized. */
4063 init_attributes ();
4064
4065 /* Ensure constraint.cc is initialized. */
4066 init_constraint_processing ();
4067
4068 extvisattr = build_tree_list (get_identifier ("externally_visible"),
4069 NULL_TREE);
4070 newattrs = tree_cons (get_identifier ("alloc_size"),
4071 build_tree_list (NULL_TREE, integer_one_node),
4072 extvisattr);
4073 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
4074 newtype = build_exception_variant (newtype, new_eh_spec);
4075 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
4076 deltype = build_exception_variant (deltype, empty_except_spec);
4077 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4078 DECL_IS_MALLOC (opnew) = 1;
4079 DECL_IS_OPERATOR_NEW (opnew) = 1;
4080 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4081 DECL_IS_MALLOC (opnew) = 1;
4082 DECL_IS_OPERATOR_NEW (opnew) = 1;
4083 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4084 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4085 if (flag_sized_deallocation)
4086 {
4087 /* Also push the sized deallocation variants:
4088 void operator delete(void*, std::size_t) throw();
4089 void operator delete[](void*, std::size_t) throw(); */
4090 tree void_ftype_ptr_size
4091 = build_function_type_list (void_type_node, ptr_type_node,
4092 size_type_node, NULL_TREE);
4093 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
4094 extvisattr);
4095 deltype = build_exception_variant (deltype, empty_except_spec);
4096 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4097 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4098 }
4099
4100 nullptr_type_node = make_node (NULLPTR_TYPE);
4101 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
4102 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
4103 TYPE_UNSIGNED (nullptr_type_node) = 1;
4104 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
4105 if (abi_version_at_least (9))
4106 TYPE_ALIGN (nullptr_type_node) = GET_MODE_ALIGNMENT (ptr_mode);
4107 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
4108 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4109 nullptr_node = build_int_cst (nullptr_type_node, 0);
4110 }
4111
4112 abort_fndecl
4113 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4114 ECF_NORETURN | ECF_NOTHROW);
4115
4116 /* Perform other language dependent initializations. */
4117 init_class_processing ();
4118 init_rtti_processing ();
4119 init_template_processing ();
4120
4121 if (flag_exceptions)
4122 init_exception_processing ();
4123
4124 if (! supports_one_only ())
4125 flag_weak = 0;
4126
4127 make_fname_decl = cp_make_fname_decl;
4128 start_fname_decls ();
4129
4130 /* Show we use EH for cleanups. */
4131 if (flag_exceptions)
4132 using_eh_for_cleanups ();
4133 }
4134
4135 /* Generate an initializer for a function naming variable from
4136 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4137 filled in with the type of the init. */
4138
4139 tree
4140 cp_fname_init (const char* name, tree *type_p)
4141 {
4142 tree domain = NULL_TREE;
4143 tree type;
4144 tree init = NULL_TREE;
4145 size_t length = 0;
4146
4147 if (name)
4148 {
4149 length = strlen (name);
4150 domain = build_index_type (size_int (length));
4151 init = build_string (length + 1, name);
4152 }
4153
4154 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4155 type = build_cplus_array_type (type, domain);
4156
4157 *type_p = type;
4158
4159 if (init)
4160 TREE_TYPE (init) = type;
4161 else
4162 init = error_mark_node;
4163
4164 return init;
4165 }
4166
4167 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4168 the decl, LOC is the location to give the decl, NAME is the
4169 initialization string and TYPE_DEP indicates whether NAME depended
4170 on the type of the function. We make use of that to detect
4171 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4172 at the point of first use, so we mustn't push the decl now. */
4173
4174 static tree
4175 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4176 {
4177 const char *const name = (type_dep && processing_template_decl
4178 ? NULL : fname_as_string (type_dep));
4179 tree type;
4180 tree init = cp_fname_init (name, &type);
4181 tree decl = build_decl (loc, VAR_DECL, id, type);
4182
4183 if (name)
4184 free (CONST_CAST (char *, name));
4185
4186 /* As we're using pushdecl_with_scope, we must set the context. */
4187 DECL_CONTEXT (decl) = current_function_decl;
4188
4189 TREE_STATIC (decl) = 1;
4190 TREE_READONLY (decl) = 1;
4191 DECL_ARTIFICIAL (decl) = 1;
4192
4193 TREE_USED (decl) = 1;
4194
4195 if (current_function_decl)
4196 {
4197 cp_binding_level *b = current_binding_level;
4198 if (b->kind == sk_function_parms)
4199 return error_mark_node;
4200 while (b->level_chain->kind != sk_function_parms)
4201 b = b->level_chain;
4202 pushdecl_with_scope (decl, b, /*is_friend=*/false);
4203 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
4204 LOOKUP_ONLYCONVERTING);
4205 }
4206 else
4207 {
4208 DECL_THIS_STATIC (decl) = true;
4209 pushdecl_top_level_and_finish (decl, init);
4210 }
4211
4212 return decl;
4213 }
4214
4215 static tree
4216 builtin_function_1 (tree decl, tree context, bool is_global)
4217 {
4218 tree id = DECL_NAME (decl);
4219 const char *name = IDENTIFIER_POINTER (id);
4220
4221 retrofit_lang_decl (decl);
4222
4223 DECL_ARTIFICIAL (decl) = 1;
4224 SET_OVERLOADED_OPERATOR_CODE (decl, ERROR_MARK);
4225 SET_DECL_LANGUAGE (decl, lang_c);
4226 /* Runtime library routines are, by definition, available in an
4227 external shared object. */
4228 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4229 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4230
4231 DECL_CONTEXT (decl) = context;
4232
4233 if (is_global)
4234 pushdecl_top_level (decl);
4235 else
4236 pushdecl (decl);
4237
4238 /* A function in the user's namespace should have an explicit
4239 declaration before it is used. Mark the built-in function as
4240 anticipated but not actually declared. */
4241 if (name[0] != '_' || name[1] != '_')
4242 DECL_ANTICIPATED (decl) = 1;
4243 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
4244 {
4245 size_t len = strlen (name);
4246
4247 /* Treat __*_chk fortification functions as anticipated as well,
4248 unless they are __builtin_*. */
4249 if (len > strlen ("___chk")
4250 && memcmp (name + len - strlen ("_chk"),
4251 "_chk", strlen ("_chk") + 1) == 0)
4252 DECL_ANTICIPATED (decl) = 1;
4253 }
4254
4255 return decl;
4256 }
4257
4258 tree
4259 cxx_builtin_function (tree decl)
4260 {
4261 tree id = DECL_NAME (decl);
4262 const char *name = IDENTIFIER_POINTER (id);
4263 /* All builtins that don't begin with an '_' should additionally
4264 go in the 'std' namespace. */
4265 if (name[0] != '_')
4266 {
4267 tree decl2 = copy_node(decl);
4268 push_namespace (std_identifier);
4269 builtin_function_1 (decl2, std_node, false);
4270 pop_namespace ();
4271 }
4272
4273 return builtin_function_1 (decl, NULL_TREE, false);
4274 }
4275
4276 /* Like cxx_builtin_function, but guarantee the function is added to the global
4277 scope. This is to allow function specific options to add new machine
4278 dependent builtins when the target ISA changes via attribute((target(...)))
4279 which saves space on program startup if the program does not use non-generic
4280 ISAs. */
4281
4282 tree
4283 cxx_builtin_function_ext_scope (tree decl)
4284 {
4285
4286 tree id = DECL_NAME (decl);
4287 const char *name = IDENTIFIER_POINTER (id);
4288 /* All builtins that don't begin with an '_' should additionally
4289 go in the 'std' namespace. */
4290 if (name[0] != '_')
4291 {
4292 tree decl2 = copy_node(decl);
4293 push_namespace (std_identifier);
4294 builtin_function_1 (decl2, std_node, true);
4295 pop_namespace ();
4296 }
4297
4298 return builtin_function_1 (decl, NULL_TREE, true);
4299 }
4300
4301 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4302 function. Not called directly. */
4303
4304 static tree
4305 build_library_fn (tree name, enum tree_code operator_code, tree type,
4306 int ecf_flags)
4307 {
4308 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4309 DECL_EXTERNAL (fn) = 1;
4310 TREE_PUBLIC (fn) = 1;
4311 DECL_ARTIFICIAL (fn) = 1;
4312 SET_OVERLOADED_OPERATOR_CODE (fn, operator_code);
4313 SET_DECL_LANGUAGE (fn, lang_c);
4314 /* Runtime library routines are, by definition, available in an
4315 external shared object. */
4316 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4317 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4318 set_call_expr_flags (fn, ecf_flags);
4319 return fn;
4320 }
4321
4322 /* Returns the _DECL for a library function with C++ linkage. */
4323
4324 static tree
4325 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4326 int ecf_flags)
4327 {
4328 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4329 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4330 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4331 return fn;
4332 }
4333
4334 /* Like build_library_fn, but takes a C string instead of an
4335 IDENTIFIER_NODE. */
4336
4337 tree
4338 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4339 {
4340 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4341 }
4342
4343 /* Like build_cp_library_fn, but takes a C string instead of an
4344 IDENTIFIER_NODE. */
4345
4346 tree
4347 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4348 {
4349 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4350 ecf_flags);
4351 }
4352
4353 /* Like build_library_fn, but also pushes the function so that we will
4354 be able to find it via IDENTIFIER_GLOBAL_VALUE. Also, the function
4355 may throw exceptions listed in RAISES. */
4356
4357 tree
4358 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4359 {
4360 tree fn;
4361
4362 if (raises)
4363 type = build_exception_variant (type, raises);
4364
4365 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4366 pushdecl_top_level (fn);
4367 return fn;
4368 }
4369
4370 /* Like build_cp_library_fn, but also pushes the function so that it
4371 will be found by normal lookup. */
4372
4373 static tree
4374 push_cp_library_fn (enum tree_code operator_code, tree type,
4375 int ecf_flags)
4376 {
4377 tree fn = build_cp_library_fn (ansi_opname (operator_code),
4378 operator_code,
4379 type, ecf_flags);
4380 pushdecl (fn);
4381 if (flag_tm)
4382 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4383 return fn;
4384 }
4385
4386 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4387 a FUNCTION_TYPE. */
4388
4389 tree
4390 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4391 {
4392 tree type = build_function_type (void_type_node, parmtypes);
4393 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4394 }
4395
4396 /* Like push_library_fn, but also note that this function throws
4397 and does not return. Used for __throw_foo and the like. */
4398
4399 tree
4400 push_throw_library_fn (tree name, tree type)
4401 {
4402 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN);
4403 return fn;
4404 }
4405 \f
4406 /* When we call finish_struct for an anonymous union, we create
4407 default copy constructors and such. But, an anonymous union
4408 shouldn't have such things; this function undoes the damage to the
4409 anonymous union type T.
4410
4411 (The reason that we create the synthesized methods is that we don't
4412 distinguish `union { int i; }' from `typedef union { int i; } U'.
4413 The first is an anonymous union; the second is just an ordinary
4414 union type.) */
4415
4416 void
4417 fixup_anonymous_aggr (tree t)
4418 {
4419 tree *q;
4420
4421 /* Wipe out memory of synthesized methods. */
4422 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4423 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4424 TYPE_HAS_COPY_CTOR (t) = 0;
4425 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4426 TYPE_HAS_COPY_ASSIGN (t) = 0;
4427 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4428
4429 /* Splice the implicitly generated functions out of the TYPE_METHODS
4430 list. */
4431 q = &TYPE_METHODS (t);
4432 while (*q)
4433 {
4434 if (DECL_ARTIFICIAL (*q))
4435 *q = TREE_CHAIN (*q);
4436 else
4437 q = &DECL_CHAIN (*q);
4438 }
4439
4440 /* ISO C++ 9.5.3. Anonymous unions may not have function members. */
4441 if (TYPE_METHODS (t))
4442 {
4443 tree decl = TYPE_MAIN_DECL (t);
4444
4445 if (TREE_CODE (t) != UNION_TYPE)
4446 error_at (DECL_SOURCE_LOCATION (decl),
4447 "an anonymous struct cannot have function members");
4448 else
4449 error_at (DECL_SOURCE_LOCATION (decl),
4450 "an anonymous union cannot have function members");
4451 }
4452
4453 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4454 assignment operators (because they cannot have these methods themselves).
4455 For anonymous unions this is already checked because they are not allowed
4456 in any union, otherwise we have to check it. */
4457 if (TREE_CODE (t) != UNION_TYPE)
4458 {
4459 tree field, type;
4460
4461 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4462 if (TREE_CODE (field) == FIELD_DECL)
4463 {
4464 type = TREE_TYPE (field);
4465 if (CLASS_TYPE_P (type))
4466 {
4467 if (TYPE_NEEDS_CONSTRUCTING (type))
4468 error ("member %q+#D with constructor not allowed "
4469 "in anonymous aggregate", field);
4470 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4471 error ("member %q+#D with destructor not allowed "
4472 "in anonymous aggregate", field);
4473 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4474 error ("member %q+#D with copy assignment operator "
4475 "not allowed in anonymous aggregate", field);
4476 }
4477 }
4478 }
4479 }
4480
4481 /* Warn for an attribute located at LOCATION that appertains to the
4482 class type CLASS_TYPE that has not been properly placed after its
4483 class-key, in it class-specifier. */
4484
4485 void
4486 warn_misplaced_attr_for_class_type (source_location location,
4487 tree class_type)
4488 {
4489 gcc_assert (OVERLOAD_TYPE_P (class_type));
4490
4491 if (warning_at (location, OPT_Wattributes,
4492 "attribute ignored in declaration "
4493 "of %q#T", class_type))
4494 inform (location,
4495 "attribute for %q#T must follow the %qs keyword",
4496 class_type, class_key_or_enum_as_string (class_type));
4497 }
4498
4499 /* Make sure that a declaration with no declarator is well-formed, i.e.
4500 just declares a tagged type or anonymous union.
4501
4502 Returns the type declared; or NULL_TREE if none. */
4503
4504 tree
4505 check_tag_decl (cp_decl_specifier_seq *declspecs,
4506 bool explicit_type_instantiation_p)
4507 {
4508 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4509 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4510 /* If a class, struct, or enum type is declared by the DECLSPECS
4511 (i.e, if a class-specifier, enum-specifier, or non-typename
4512 elaborated-type-specifier appears in the DECLSPECS),
4513 DECLARED_TYPE is set to the corresponding type. */
4514 tree declared_type = NULL_TREE;
4515 bool error_p = false;
4516
4517 if (declspecs->multiple_types_p)
4518 error ("multiple types in one declaration");
4519 else if (declspecs->redefined_builtin_type)
4520 {
4521 if (!in_system_header_at (input_location))
4522 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4523 "redeclaration of C++ built-in type %qT",
4524 declspecs->redefined_builtin_type);
4525 return NULL_TREE;
4526 }
4527
4528 if (declspecs->type
4529 && TYPE_P (declspecs->type)
4530 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4531 && MAYBE_CLASS_TYPE_P (declspecs->type))
4532 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4533 declared_type = declspecs->type;
4534 else if (declspecs->type == error_mark_node)
4535 error_p = true;
4536 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
4537 permerror (input_location, "declaration does not declare anything");
4538 else if (declared_type != NULL_TREE && type_uses_auto (declared_type))
4539 {
4540 error ("%<auto%> can only be specified for variables "
4541 "or function declarations");
4542 return error_mark_node;
4543 }
4544 /* Check for an anonymous union. */
4545 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4546 && TYPE_ANONYMOUS_P (declared_type))
4547 {
4548 /* 7/3 In a simple-declaration, the optional init-declarator-list
4549 can be omitted only when declaring a class (clause 9) or
4550 enumeration (7.2), that is, when the decl-specifier-seq contains
4551 either a class-specifier, an elaborated-type-specifier with
4552 a class-key (9.1), or an enum-specifier. In these cases and
4553 whenever a class-specifier or enum-specifier is present in the
4554 decl-specifier-seq, the identifiers in these specifiers are among
4555 the names being declared by the declaration (as class-name,
4556 enum-names, or enumerators, depending on the syntax). In such
4557 cases, and except for the declaration of an unnamed bit-field (9.6),
4558 the decl-specifier-seq shall introduce one or more names into the
4559 program, or shall redeclare a name introduced by a previous
4560 declaration. [Example:
4561 enum { }; // ill-formed
4562 typedef class { }; // ill-formed
4563 --end example] */
4564 if (saw_typedef)
4565 {
4566 error ("missing type-name in typedef-declaration");
4567 return NULL_TREE;
4568 }
4569 /* Anonymous unions are objects, so they can have specifiers. */;
4570 SET_ANON_AGGR_TYPE_P (declared_type);
4571
4572 if (TREE_CODE (declared_type) != UNION_TYPE
4573 && !in_system_header_at (input_location))
4574 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4575 }
4576
4577 else
4578 {
4579 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
4580 error_at (declspecs->locations[ds_inline],
4581 "%<inline%> can only be specified for functions");
4582 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4583 error_at (declspecs->locations[ds_virtual],
4584 "%<virtual%> can only be specified for functions");
4585 else if (saw_friend
4586 && (!current_class_type
4587 || current_scope () != current_class_type))
4588 error_at (declspecs->locations[ds_friend],
4589 "%<friend%> can only be specified inside a class");
4590 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4591 error_at (declspecs->locations[ds_explicit],
4592 "%<explicit%> can only be specified for constructors");
4593 else if (declspecs->storage_class)
4594 error_at (declspecs->locations[ds_storage_class],
4595 "a storage class can only be specified for objects "
4596 "and functions");
4597 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
4598 error_at (declspecs->locations[ds_const],
4599 "%<const%> can only be specified for objects and "
4600 "functions");
4601 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
4602 error_at (declspecs->locations[ds_volatile],
4603 "%<volatile%> can only be specified for objects and "
4604 "functions");
4605 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
4606 error_at (declspecs->locations[ds_restrict],
4607 "%<__restrict%> can only be specified for objects and "
4608 "functions");
4609 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
4610 error_at (declspecs->locations[ds_thread],
4611 "%<__thread%> can only be specified for objects "
4612 "and functions");
4613 else if (saw_typedef)
4614 warning_at (declspecs->locations[ds_typedef], 0,
4615 "%<typedef%> was ignored in this declaration");
4616 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4617 error_at (declspecs->locations[ds_constexpr],
4618 "%<constexpr%> cannot be used for type declarations");
4619 }
4620
4621 if (declspecs->attributes && warn_attributes && declared_type)
4622 {
4623 location_t loc;
4624 if (!CLASS_TYPE_P (declared_type)
4625 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4626 /* For a non-template class, use the name location. */
4627 loc = location_of (declared_type);
4628 else
4629 /* For a template class (an explicit instantiation), use the
4630 current location. */
4631 loc = input_location;
4632
4633 if (explicit_type_instantiation_p)
4634 /* [dcl.attr.grammar]/4:
4635
4636 No attribute-specifier-seq shall appertain to an explicit
4637 instantiation. */
4638 {
4639 if (warning_at (loc, OPT_Wattributes,
4640 "attribute ignored in explicit instantiation %q#T",
4641 declared_type))
4642 inform (loc,
4643 "no attribute can be applied to "
4644 "an explicit instantiation");
4645 }
4646 else
4647 warn_misplaced_attr_for_class_type (loc, declared_type);
4648 }
4649
4650 return declared_type;
4651 }
4652
4653 /* Called when a declaration is seen that contains no names to declare.
4654 If its type is a reference to a structure, union or enum inherited
4655 from a containing scope, shadow that tag name for the current scope
4656 with a forward reference.
4657 If its type defines a new named structure or union
4658 or defines an enum, it is valid but we need not do anything here.
4659 Otherwise, it is an error.
4660
4661 C++: may have to grok the declspecs to learn about static,
4662 complain for anonymous unions.
4663
4664 Returns the TYPE declared -- or NULL_TREE if none. */
4665
4666 tree
4667 shadow_tag (cp_decl_specifier_seq *declspecs)
4668 {
4669 tree t = check_tag_decl (declspecs,
4670 /*explicit_type_instantiation_p=*/false);
4671
4672 if (!t)
4673 return NULL_TREE;
4674
4675 if (maybe_process_partial_specialization (t) == error_mark_node)
4676 return NULL_TREE;
4677
4678 /* This is where the variables in an anonymous union are
4679 declared. An anonymous union declaration looks like:
4680 union { ... } ;
4681 because there is no declarator after the union, the parser
4682 sends that declaration here. */
4683 if (ANON_AGGR_TYPE_P (t))
4684 {
4685 fixup_anonymous_aggr (t);
4686
4687 if (TYPE_FIELDS (t))
4688 {
4689 tree decl = grokdeclarator (/*declarator=*/NULL,
4690 declspecs, NORMAL, 0, NULL);
4691 finish_anon_union (decl);
4692 }
4693 }
4694
4695 return t;
4696 }
4697 \f
4698 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4699
4700 tree
4701 groktypename (cp_decl_specifier_seq *type_specifiers,
4702 const cp_declarator *declarator,
4703 bool is_template_arg)
4704 {
4705 tree attrs;
4706 tree type;
4707 enum decl_context context
4708 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
4709 attrs = type_specifiers->attributes;
4710 type_specifiers->attributes = NULL_TREE;
4711 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
4712 if (attrs && type != error_mark_node)
4713 {
4714 if (CLASS_TYPE_P (type))
4715 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
4716 "outside of definition", type);
4717 else if (MAYBE_CLASS_TYPE_P (type))
4718 /* A template type parameter or other dependent type. */
4719 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
4720 "type %qT without an associated declaration", type);
4721 else
4722 cplus_decl_attributes (&type, attrs, 0);
4723 }
4724 return type;
4725 }
4726
4727 /* Process a DECLARATOR for a function-scope variable declaration,
4728 namespace-scope variable declaration, or function declaration.
4729 (Function definitions go through start_function; class member
4730 declarations appearing in the body of the class go through
4731 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4732 If an error occurs, the error_mark_node is returned instead.
4733
4734 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
4735 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
4736 for an explicitly defaulted function, or SD_DELETED for an explicitly
4737 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
4738 implicitly initialized via a default constructor. ATTRIBUTES and
4739 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
4740
4741 The scope represented by the context of the returned DECL is pushed
4742 (if it is not the global namespace) and is assigned to
4743 *PUSHED_SCOPE_P. The caller is then responsible for calling
4744 pop_scope on *PUSHED_SCOPE_P if it is set. */
4745
4746 tree
4747 start_decl (const cp_declarator *declarator,
4748 cp_decl_specifier_seq *declspecs,
4749 int initialized,
4750 tree attributes,
4751 tree prefix_attributes,
4752 tree *pushed_scope_p)
4753 {
4754 tree decl;
4755 tree context;
4756 bool was_public;
4757 int flags;
4758 bool alias;
4759
4760 *pushed_scope_p = NULL_TREE;
4761
4762 /* An object declared as __attribute__((deprecated)) suppresses
4763 warnings of uses of other deprecated items. */
4764 if (lookup_attribute ("deprecated", attributes))
4765 deprecated_state = DEPRECATED_SUPPRESS;
4766
4767 attributes = chainon (attributes, prefix_attributes);
4768
4769 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
4770 &attributes);
4771
4772 deprecated_state = DEPRECATED_NORMAL;
4773
4774 if (decl == NULL_TREE || VOID_TYPE_P (decl)
4775 || decl == error_mark_node)
4776 return error_mark_node;
4777
4778 context = CP_DECL_CONTEXT (decl);
4779 if (context != global_namespace)
4780 *pushed_scope_p = push_scope (context);
4781
4782 /* Is it valid for this decl to have an initializer at all?
4783 If not, set INITIALIZED to zero, which will indirectly
4784 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4785 if (initialized
4786 && TREE_CODE (decl) == TYPE_DECL)
4787 {
4788 error ("typedef %qD is initialized (use decltype instead)", decl);
4789 return error_mark_node;
4790 }
4791
4792 if (initialized)
4793 {
4794 if (! toplevel_bindings_p ()
4795 && DECL_EXTERNAL (decl))
4796 warning (0, "declaration of %q#D has %<extern%> and is initialized",
4797 decl);
4798 DECL_EXTERNAL (decl) = 0;
4799 if (toplevel_bindings_p ())
4800 TREE_STATIC (decl) = 1;
4801 }
4802 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
4803
4804 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
4805 record_key_method_defined (decl);
4806
4807 /* If this is a typedef that names the class for linkage purposes
4808 (7.1.3p8), apply any attributes directly to the type. */
4809 if (TREE_CODE (decl) == TYPE_DECL
4810 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
4811 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
4812 flags = ATTR_FLAG_TYPE_IN_PLACE;
4813 else
4814 flags = 0;
4815
4816 /* Set attributes here so if duplicate decl, will have proper attributes. */
4817 cplus_decl_attributes (&decl, attributes, flags);
4818
4819 /* Dllimported symbols cannot be defined. Static data members (which
4820 can be initialized in-class and dllimported) go through grokfield,
4821 not here, so we don't need to exclude those decls when checking for
4822 a definition. */
4823 if (initialized && DECL_DLLIMPORT_P (decl))
4824 {
4825 error ("definition of %q#D is marked %<dllimport%>", decl);
4826 DECL_DLLIMPORT_P (decl) = 0;
4827 }
4828
4829 /* If #pragma weak was used, mark the decl weak now. */
4830 if (!processing_template_decl)
4831 maybe_apply_pragma_weak (decl);
4832
4833 if (TREE_CODE (decl) == FUNCTION_DECL
4834 && DECL_DECLARED_INLINE_P (decl)
4835 && DECL_UNINLINABLE (decl)
4836 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4837 warning_at (DECL_SOURCE_LOCATION (decl), 0,
4838 "inline function %qD given attribute noinline", decl);
4839
4840 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
4841 {
4842 bool this_tmpl = (processing_template_decl
4843 > template_class_depth (context));
4844 if (VAR_P (decl))
4845 {
4846 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
4847 if (field == NULL_TREE
4848 || !(VAR_P (field) || variable_template_p (field)))
4849 error ("%q+#D is not a static data member of %q#T", decl, context);
4850 else if (variable_template_p (field) && !this_tmpl)
4851 {
4852 if (DECL_LANG_SPECIFIC (decl)
4853 && DECL_TEMPLATE_SPECIALIZATION (decl))
4854 /* OK, specialization was already checked. */;
4855 else
4856 {
4857 error_at (DECL_SOURCE_LOCATION (decl),
4858 "non-member-template declaration of %qD", decl);
4859 inform (DECL_SOURCE_LOCATION (field), "does not match "
4860 "member template declaration here");
4861 return error_mark_node;
4862 }
4863 }
4864 else
4865 {
4866 if (variable_template_p (field))
4867 field = DECL_TEMPLATE_RESULT (field);
4868
4869 if (DECL_CONTEXT (field) != context)
4870 {
4871 if (!same_type_p (DECL_CONTEXT (field), context))
4872 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
4873 "to be defined as %<%T::%D%>",
4874 DECL_CONTEXT (field), DECL_NAME (decl),
4875 context, DECL_NAME (decl));
4876 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
4877 }
4878 /* Static data member are tricky; an in-class initialization
4879 still doesn't provide a definition, so the in-class
4880 declaration will have DECL_EXTERNAL set, but will have an
4881 initialization. Thus, duplicate_decls won't warn
4882 about this situation, and so we check here. */
4883 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
4884 error ("duplicate initialization of %qD", decl);
4885 if (duplicate_decls (decl, field, /*newdecl_is_friend=*/false))
4886 decl = field;
4887 if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr)
4888 && !DECL_DECLARED_CONSTEXPR_P (field))
4889 error ("%qD declared %<constexpr%> outside its class", field);
4890 }
4891 }
4892 else
4893 {
4894 tree field = check_classfn (context, decl,
4895 this_tmpl
4896 ? current_template_parms
4897 : NULL_TREE);
4898 if (field && field != error_mark_node
4899 && duplicate_decls (decl, field,
4900 /*newdecl_is_friend=*/false))
4901 decl = field;
4902 }
4903
4904 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
4905 DECL_IN_AGGR_P (decl) = 0;
4906 /* Do not mark DECL as an explicit specialization if it was not
4907 already marked as an instantiation; a declaration should
4908 never be marked as a specialization unless we know what
4909 template is being specialized. */
4910 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
4911 {
4912 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
4913 if (TREE_CODE (decl) == FUNCTION_DECL)
4914 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
4915 && DECL_DECLARED_INLINE_P (decl));
4916 else
4917 DECL_COMDAT (decl) = false;
4918
4919 /* [temp.expl.spec] An explicit specialization of a static data
4920 member of a template is a definition if the declaration
4921 includes an initializer; otherwise, it is a declaration.
4922
4923 We check for processing_specialization so this only applies
4924 to the new specialization syntax. */
4925 if (!initialized && processing_specialization)
4926 DECL_EXTERNAL (decl) = 1;
4927 }
4928
4929 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
4930 /* Aliases are definitions. */
4931 && !alias)
4932 permerror (input_location, "declaration of %q#D outside of class is not definition",
4933 decl);
4934 }
4935
4936 was_public = TREE_PUBLIC (decl);
4937
4938 /* Enter this declaration into the symbol table. Don't push the plain
4939 VAR_DECL for a variable template. */
4940 if (!template_parm_scope_p ()
4941 || !VAR_P (decl))
4942 decl = maybe_push_decl (decl);
4943
4944 if (processing_template_decl)
4945 decl = push_template_decl (decl);
4946 if (decl == error_mark_node)
4947 return error_mark_node;
4948
4949 if (VAR_P (decl)
4950 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
4951 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
4952 {
4953 /* This is a const variable with implicit 'static'. Set
4954 DECL_THIS_STATIC so we can tell it from variables that are
4955 !TREE_PUBLIC because of the anonymous namespace. */
4956 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
4957 DECL_THIS_STATIC (decl) = 1;
4958 }
4959
4960 if (current_function_decl && VAR_P (decl)
4961 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
4962 {
4963 bool ok = false;
4964 if (CP_DECL_THREAD_LOCAL_P (decl))
4965 error ("%qD declared %<thread_local%> in %<constexpr%> function",
4966 decl);
4967 else if (TREE_STATIC (decl))
4968 error ("%qD declared %<static%> in %<constexpr%> function", decl);
4969 else
4970 ok = true;
4971 if (!ok)
4972 cp_function_chain->invalid_constexpr = true;
4973 }
4974
4975 if (!processing_template_decl && VAR_P (decl))
4976 start_decl_1 (decl, initialized);
4977
4978 return decl;
4979 }
4980
4981 /* Process the declaration of a variable DECL. INITIALIZED is true
4982 iff DECL is explicitly initialized. (INITIALIZED is false if the
4983 variable is initialized via an implicitly-called constructor.)
4984 This function must be called for ordinary variables (including, for
4985 example, implicit instantiations of templates), but must not be
4986 called for template declarations. */
4987
4988 void
4989 start_decl_1 (tree decl, bool initialized)
4990 {
4991 tree type;
4992 bool complete_p;
4993 bool aggregate_definition_p;
4994
4995 gcc_assert (!processing_template_decl);
4996
4997 if (error_operand_p (decl))
4998 return;
4999
5000 gcc_assert (VAR_P (decl));
5001
5002 type = TREE_TYPE (decl);
5003 complete_p = COMPLETE_TYPE_P (type);
5004 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
5005
5006 /* If an explicit initializer is present, or if this is a definition
5007 of an aggregate, then we need a complete type at this point.
5008 (Scalars are always complete types, so there is nothing to
5009 check.) This code just sets COMPLETE_P; errors (if necessary)
5010 are issued below. */
5011 if ((initialized || aggregate_definition_p)
5012 && !complete_p
5013 && COMPLETE_TYPE_P (complete_type (type)))
5014 {
5015 complete_p = true;
5016 /* We will not yet have set TREE_READONLY on DECL if the type
5017 was "const", but incomplete, before this point. But, now, we
5018 have a complete type, so we can try again. */
5019 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
5020 }
5021
5022 if (initialized)
5023 /* Is it valid for this decl to have an initializer at all? */
5024 {
5025 /* Don't allow initializations for incomplete types except for
5026 arrays which might be completed by the initialization. */
5027 if (complete_p)
5028 ; /* A complete type is ok. */
5029 else if (type_uses_auto (type))
5030 ; /* An auto type is ok. */
5031 else if (TREE_CODE (type) != ARRAY_TYPE)
5032 {
5033 error ("variable %q#D has initializer but incomplete type", decl);
5034 type = TREE_TYPE (decl) = error_mark_node;
5035 }
5036 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
5037 {
5038 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5039 error ("elements of array %q#D have incomplete type", decl);
5040 /* else we already gave an error in start_decl. */
5041 }
5042 }
5043 else if (aggregate_definition_p && !complete_p)
5044 {
5045 if (type_uses_auto (type))
5046 error ("declaration of %q#D has no initializer", decl);
5047 else
5048 error ("aggregate %q#D has incomplete type and cannot be defined",
5049 decl);
5050 /* Change the type so that assemble_variable will give
5051 DECL an rtl we can live with: (mem (const_int 0)). */
5052 type = TREE_TYPE (decl) = error_mark_node;
5053 }
5054
5055 /* Create a new scope to hold this declaration if necessary.
5056 Whether or not a new scope is necessary cannot be determined
5057 until after the type has been completed; if the type is a
5058 specialization of a class template it is not until after
5059 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5060 will be set correctly. */
5061 maybe_push_cleanup_level (type);
5062 }
5063
5064 /* Handle initialization of references. DECL, TYPE, and INIT have the
5065 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
5066 but will be set to a new CLEANUP_STMT if a temporary is created
5067 that must be destroyed subsequently.
5068
5069 Returns an initializer expression to use to initialize DECL, or
5070 NULL if the initialization can be performed statically.
5071
5072 Quotes on semantics can be found in ARM 8.4.3. */
5073
5074 static tree
5075 grok_reference_init (tree decl, tree type, tree init, int flags)
5076 {
5077 if (init == NULL_TREE)
5078 {
5079 if ((DECL_LANG_SPECIFIC (decl) == 0
5080 || DECL_IN_AGGR_P (decl) == 0)
5081 && ! DECL_THIS_EXTERN (decl))
5082 error ("%qD declared as reference but not initialized", decl);
5083 return NULL_TREE;
5084 }
5085
5086 if (TREE_CODE (init) == TREE_LIST)
5087 init = build_x_compound_expr_from_list (init, ELK_INIT,
5088 tf_warning_or_error);
5089
5090 tree ttype = TREE_TYPE (type);
5091 if (TREE_CODE (ttype) != ARRAY_TYPE
5092 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
5093 /* Note: default conversion is only called in very special cases. */
5094 init = decay_conversion (init, tf_warning_or_error);
5095
5096 /* check_initializer handles this for non-reference variables, but for
5097 references we need to do it here or the initializer will get the
5098 incomplete array type and confuse later calls to
5099 cp_complete_array_type. */
5100 if (TREE_CODE (ttype) == ARRAY_TYPE
5101 && TYPE_DOMAIN (ttype) == NULL_TREE
5102 && (BRACE_ENCLOSED_INITIALIZER_P (init)
5103 || TREE_CODE (init) == STRING_CST))
5104 {
5105 cp_complete_array_type (&ttype, init, false);
5106 if (ttype != TREE_TYPE (type))
5107 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
5108 }
5109
5110 /* Convert INIT to the reference type TYPE. This may involve the
5111 creation of a temporary, whose lifetime must be the same as that
5112 of the reference. If so, a DECL_EXPR for the temporary will be
5113 added just after the DECL_EXPR for DECL. That's why we don't set
5114 DECL_INITIAL for local references (instead assigning to them
5115 explicitly); we need to allow the temporary to be initialized
5116 first. */
5117 return initialize_reference (type, init, flags,
5118 tf_warning_or_error);
5119 }
5120
5121 /* Designated initializers in arrays are not supported in GNU C++.
5122 The parser cannot detect this error since it does not know whether
5123 a given brace-enclosed initializer is for a class type or for an
5124 array. This function checks that CE does not use a designated
5125 initializer. If it does, an error is issued. Returns true if CE
5126 is valid, i.e., does not have a designated initializer. */
5127
5128 static bool
5129 check_array_designated_initializer (constructor_elt *ce,
5130 unsigned HOST_WIDE_INT index)
5131 {
5132 /* Designated initializers for array elements are not supported. */
5133 if (ce->index)
5134 {
5135 /* The parser only allows identifiers as designated
5136 initializers. */
5137 if (ce->index == error_mark_node)
5138 {
5139 error ("name used in a GNU-style designated "
5140 "initializer for an array");
5141 return false;
5142 }
5143 else if (identifier_p (ce->index))
5144 {
5145 error ("name %qD used in a GNU-style designated "
5146 "initializer for an array", ce->index);
5147 return false;
5148 }
5149
5150 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5151 ce->index, true);
5152 if (ce_index
5153 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
5154 && (TREE_CODE (ce_index = maybe_constant_value (ce_index))
5155 == INTEGER_CST))
5156 {
5157 /* A C99 designator is OK if it matches the current index. */
5158 if (wi::eq_p (ce_index, index))
5159 return true;
5160 else
5161 sorry ("non-trivial designated initializers not supported");
5162 }
5163 else
5164 error ("C99 designator %qE is not an integral constant-expression",
5165 ce->index);
5166
5167 return false;
5168 }
5169
5170 return true;
5171 }
5172
5173 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5174 array until we finish parsing the initializer. If that's the
5175 situation we're in, update DECL accordingly. */
5176
5177 static void
5178 maybe_deduce_size_from_array_init (tree decl, tree init)
5179 {
5180 tree type = TREE_TYPE (decl);
5181
5182 if (TREE_CODE (type) == ARRAY_TYPE
5183 && TYPE_DOMAIN (type) == NULL_TREE
5184 && TREE_CODE (decl) != TYPE_DECL)
5185 {
5186 /* do_default is really a C-ism to deal with tentative definitions.
5187 But let's leave it here to ease the eventual merge. */
5188 int do_default = !DECL_EXTERNAL (decl);
5189 tree initializer = init ? init : DECL_INITIAL (decl);
5190 int failure = 0;
5191
5192 /* Check that there are no designated initializers in INIT, as
5193 those are not supported in GNU C++, and as the middle-end
5194 will crash if presented with a non-numeric designated
5195 initializer. */
5196 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
5197 {
5198 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
5199 constructor_elt *ce;
5200 HOST_WIDE_INT i;
5201 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
5202 if (!check_array_designated_initializer (ce, i))
5203 failure = 1;
5204 }
5205
5206 if (!failure)
5207 {
5208 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
5209 do_default);
5210 if (failure == 1)
5211 {
5212 error ("initializer fails to determine size of %qD", decl);
5213 }
5214 else if (failure == 2)
5215 {
5216 if (do_default)
5217 {
5218 error ("array size missing in %qD", decl);
5219 }
5220 /* If a `static' var's size isn't known, make it extern as
5221 well as static, so it does not get allocated. If it's not
5222 `static', then don't mark it extern; finish_incomplete_decl
5223 will give it a default size and it will get allocated. */
5224 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
5225 DECL_EXTERNAL (decl) = 1;
5226 }
5227 else if (failure == 3)
5228 {
5229 error ("zero-size array %qD", decl);
5230 }
5231 }
5232
5233 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
5234
5235 relayout_decl (decl);
5236 }
5237 }
5238
5239 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5240 any appropriate error messages regarding the layout. */
5241
5242 static void
5243 layout_var_decl (tree decl)
5244 {
5245 tree type;
5246
5247 type = TREE_TYPE (decl);
5248 if (type == error_mark_node)
5249 return;
5250
5251 /* If we haven't already laid out this declaration, do so now.
5252 Note that we must not call complete type for an external object
5253 because it's type might involve templates that we are not
5254 supposed to instantiate yet. (And it's perfectly valid to say
5255 `extern X x' for some incomplete type `X'.) */
5256 if (!DECL_EXTERNAL (decl))
5257 complete_type (type);
5258 if (!DECL_SIZE (decl)
5259 && TREE_TYPE (decl) != error_mark_node
5260 && (COMPLETE_TYPE_P (type)
5261 || (TREE_CODE (type) == ARRAY_TYPE
5262 && !TYPE_DOMAIN (type)
5263 && COMPLETE_TYPE_P (TREE_TYPE (type)))))
5264 layout_decl (decl, 0);
5265
5266 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
5267 {
5268 /* An automatic variable with an incomplete type: that is an error.
5269 Don't talk about array types here, since we took care of that
5270 message in grokdeclarator. */
5271 error ("storage size of %qD isn%'t known", decl);
5272 TREE_TYPE (decl) = error_mark_node;
5273 }
5274 #if 0
5275 /* Keep this code around in case we later want to control debug info
5276 based on whether a type is "used". (jason 1999-11-11) */
5277
5278 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
5279 /* Let debugger know it should output info for this type. */
5280 note_debug_info_needed (ttype);
5281
5282 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
5283 note_debug_info_needed (DECL_CONTEXT (decl));
5284 #endif
5285
5286 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
5287 && DECL_SIZE (decl) != NULL_TREE
5288 && ! TREE_CONSTANT (DECL_SIZE (decl)))
5289 {
5290 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
5291 constant_expression_warning (DECL_SIZE (decl));
5292 else
5293 {
5294 error ("storage size of %qD isn%'t constant", decl);
5295 TREE_TYPE (decl) = error_mark_node;
5296 }
5297 }
5298 }
5299
5300 /* If a local static variable is declared in an inline function, or if
5301 we have a weak definition, we must endeavor to create only one
5302 instance of the variable at link-time. */
5303
5304 void
5305 maybe_commonize_var (tree decl)
5306 {
5307 /* Static data in a function with comdat linkage also has comdat
5308 linkage. */
5309 if (TREE_STATIC (decl)
5310 /* Don't mess with __FUNCTION__. */
5311 && ! DECL_ARTIFICIAL (decl)
5312 && DECL_FUNCTION_SCOPE_P (decl)
5313 && vague_linkage_p (DECL_CONTEXT (decl)))
5314 {
5315 if (flag_weak)
5316 {
5317 /* With weak symbols, we simply make the variable COMDAT;
5318 that will cause copies in multiple translations units to
5319 be merged. */
5320 comdat_linkage (decl);
5321 }
5322 else
5323 {
5324 if (DECL_INITIAL (decl) == NULL_TREE
5325 || DECL_INITIAL (decl) == error_mark_node)
5326 {
5327 /* Without weak symbols, we can use COMMON to merge
5328 uninitialized variables. */
5329 TREE_PUBLIC (decl) = 1;
5330 DECL_COMMON (decl) = 1;
5331 }
5332 else
5333 {
5334 /* While for initialized variables, we must use internal
5335 linkage -- which means that multiple copies will not
5336 be merged. */
5337 TREE_PUBLIC (decl) = 0;
5338 DECL_COMMON (decl) = 0;
5339 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
5340 "sorry: semantics of inline function static "
5341 "data %q#D are wrong (you%'ll wind up "
5342 "with multiple copies)", decl))
5343 inform (DECL_SOURCE_LOCATION (decl),
5344 "you can work around this by removing the initializer");
5345 }
5346 }
5347 }
5348 }
5349
5350 /* Issue an error message if DECL is an uninitialized const variable. */
5351
5352 static void
5353 check_for_uninitialized_const_var (tree decl)
5354 {
5355 tree type = strip_array_types (TREE_TYPE (decl));
5356
5357 /* ``Unless explicitly declared extern, a const object does not have
5358 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5359 7.1.6 */
5360 if (VAR_P (decl)
5361 && TREE_CODE (type) != REFERENCE_TYPE
5362 && (CP_TYPE_CONST_P (type) || var_in_constexpr_fn (decl))
5363 && !DECL_INITIAL (decl))
5364 {
5365 tree field = default_init_uninitialized_part (type);
5366 if (!field)
5367 return;
5368
5369 if (CP_TYPE_CONST_P (type))
5370 permerror (DECL_SOURCE_LOCATION (decl),
5371 "uninitialized const %qD", decl);
5372 else
5373 {
5374 error_at (DECL_SOURCE_LOCATION (decl),
5375 "uninitialized variable %qD in %<constexpr%> function",
5376 decl);
5377 cp_function_chain->invalid_constexpr = true;
5378 }
5379
5380 if (CLASS_TYPE_P (type))
5381 {
5382 tree defaulted_ctor;
5383
5384 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5385 "%q#T has no user-provided default constructor", type);
5386 defaulted_ctor = in_class_defaulted_default_constructor (type);
5387 if (defaulted_ctor)
5388 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5389 "constructor is not user-provided because it is "
5390 "explicitly defaulted in the class body");
5391 inform (DECL_SOURCE_LOCATION (field),
5392 "and the implicitly-defined constructor does not "
5393 "initialize %q#D", field);
5394 }
5395 }
5396 }
5397 \f
5398 /* Structure holding the current initializer being processed by reshape_init.
5399 CUR is a pointer to the current element being processed, END is a pointer
5400 after the last element present in the initializer. */
5401 struct reshape_iter
5402 {
5403 constructor_elt *cur;
5404 constructor_elt *end;
5405 };
5406
5407 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5408
5409 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5410 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5411 initialized. If there are no more such fields, the return value
5412 will be NULL. */
5413
5414 tree
5415 next_initializable_field (tree field)
5416 {
5417 while (field
5418 && (TREE_CODE (field) != FIELD_DECL
5419 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
5420 || DECL_ARTIFICIAL (field)))
5421 field = DECL_CHAIN (field);
5422
5423 return field;
5424 }
5425
5426 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5427 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5428 INTEGER_CST representing the size of the array minus one (the maximum index),
5429 or NULL_TREE if the array was declared without specifying the size. D is
5430 the iterator within the constructor. */
5431
5432 static tree
5433 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5434 tsubst_flags_t complain)
5435 {
5436 tree new_init;
5437 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5438 unsigned HOST_WIDE_INT max_index_cst = 0;
5439 unsigned HOST_WIDE_INT index;
5440
5441 /* The initializer for an array is always a CONSTRUCTOR. */
5442 new_init = build_constructor (init_list_type_node, NULL);
5443
5444 if (sized_array_p)
5445 {
5446 /* Minus 1 is used for zero sized arrays. */
5447 if (integer_all_onesp (max_index))
5448 return new_init;
5449
5450 if (tree_fits_uhwi_p (max_index))
5451 max_index_cst = tree_to_uhwi (max_index);
5452 /* sizetype is sign extended, not zero extended. */
5453 else
5454 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5455 }
5456
5457 /* Loop until there are no more initializers. */
5458 for (index = 0;
5459 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5460 ++index)
5461 {
5462 tree elt_init;
5463 constructor_elt *old_cur = d->cur;
5464
5465 check_array_designated_initializer (d->cur, index);
5466 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5467 complain);
5468 if (elt_init == error_mark_node)
5469 return error_mark_node;
5470 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5471 size_int (index), elt_init);
5472 if (!TREE_CONSTANT (elt_init))
5473 TREE_CONSTANT (new_init) = false;
5474
5475 /* This can happen with an invalid initializer (c++/54501). */
5476 if (d->cur == old_cur && !sized_array_p)
5477 break;
5478 }
5479
5480 return new_init;
5481 }
5482
5483 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5484 Parameters are the same of reshape_init_r. */
5485
5486 static tree
5487 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5488 {
5489 tree max_index = NULL_TREE;
5490
5491 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5492
5493 if (TYPE_DOMAIN (type))
5494 max_index = array_type_nelts (type);
5495
5496 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5497 }
5498
5499 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5500 Parameters are the same of reshape_init_r. */
5501
5502 static tree
5503 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5504 {
5505 tree max_index = NULL_TREE;
5506
5507 gcc_assert (VECTOR_TYPE_P (type));
5508
5509 if (COMPOUND_LITERAL_P (d->cur->value))
5510 {
5511 tree value = d->cur->value;
5512 if (!same_type_p (TREE_TYPE (value), type))
5513 {
5514 if (complain & tf_error)
5515 error ("invalid type %qT as initializer for a vector of type %qT",
5516 TREE_TYPE (d->cur->value), type);
5517 value = error_mark_node;
5518 }
5519 ++d->cur;
5520 return value;
5521 }
5522
5523 /* For a vector, we initialize it as an array of the appropriate size. */
5524 if (VECTOR_TYPE_P (type))
5525 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5526
5527 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5528 }
5529
5530 /* Subroutine of reshape_init_r, processes the initializers for classes
5531 or union. Parameters are the same of reshape_init_r. */
5532
5533 static tree
5534 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
5535 tsubst_flags_t complain)
5536 {
5537 tree field;
5538 tree new_init;
5539
5540 gcc_assert (CLASS_TYPE_P (type));
5541
5542 /* The initializer for a class is always a CONSTRUCTOR. */
5543 new_init = build_constructor (init_list_type_node, NULL);
5544 field = next_initializable_field (TYPE_FIELDS (type));
5545
5546 if (!field)
5547 {
5548 /* [dcl.init.aggr]
5549
5550 An initializer for an aggregate member that is an
5551 empty class shall have the form of an empty
5552 initializer-list {}. */
5553 if (!first_initializer_p)
5554 {
5555 if (complain & tf_error)
5556 error ("initializer for %qT must be brace-enclosed", type);
5557 return error_mark_node;
5558 }
5559 return new_init;
5560 }
5561
5562 /* Loop through the initializable fields, gathering initializers. */
5563 while (d->cur != d->end)
5564 {
5565 tree field_init;
5566 constructor_elt *old_cur = d->cur;
5567
5568 /* Handle designated initializers, as an extension. */
5569 if (d->cur->index)
5570 {
5571 if (d->cur->index == error_mark_node)
5572 return error_mark_node;
5573
5574 if (TREE_CODE (d->cur->index) == FIELD_DECL)
5575 /* We already reshaped this. */
5576 gcc_assert (d->cur->index == field);
5577 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
5578 field = lookup_field_1 (type, d->cur->index, /*want_type=*/false);
5579 else
5580 {
5581 if (complain & tf_error)
5582 error ("%<[%E] =%> used in a GNU-style designated initializer"
5583 " for class %qT", d->cur->index, type);
5584 return error_mark_node;
5585 }
5586
5587 if (!field || TREE_CODE (field) != FIELD_DECL)
5588 {
5589 if (complain & tf_error)
5590 error ("%qT has no non-static data member named %qD", type,
5591 d->cur->index);
5592 return error_mark_node;
5593 }
5594 }
5595
5596 /* If we processed all the member of the class, we are done. */
5597 if (!field)
5598 break;
5599
5600 field_init = reshape_init_r (TREE_TYPE (field), d,
5601 /*first_initializer_p=*/false, complain);
5602 if (field_init == error_mark_node)
5603 return error_mark_node;
5604
5605 if (d->cur == old_cur && d->cur->index)
5606 {
5607 /* This can happen with an invalid initializer for a flexible
5608 array member (c++/54441). */
5609 if (complain & tf_error)
5610 error ("invalid initializer for %q#D", field);
5611 return error_mark_node;
5612 }
5613
5614 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
5615
5616 /* [dcl.init.aggr]
5617
5618 When a union is initialized with a brace-enclosed
5619 initializer, the braces shall only contain an
5620 initializer for the first member of the union. */
5621 if (TREE_CODE (type) == UNION_TYPE)
5622 break;
5623
5624 field = next_initializable_field (DECL_CHAIN (field));
5625 }
5626
5627 return new_init;
5628 }
5629
5630 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5631 designators are not valid; either complain or return true to indicate
5632 that reshape_init_r should return error_mark_node. */
5633
5634 static bool
5635 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
5636 {
5637 if (d->cur->index)
5638 {
5639 if (complain & tf_error)
5640 error ("C99 designator %qE outside aggregate initializer",
5641 d->cur->index);
5642 else
5643 return true;
5644 }
5645 return false;
5646 }
5647
5648 /* Subroutine of reshape_init, which processes a single initializer (part of
5649 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5650 iterator within the CONSTRUCTOR which points to the initializer to process.
5651 FIRST_INITIALIZER_P is true if this is the first initializer of the
5652 outermost CONSTRUCTOR node. */
5653
5654 static tree
5655 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
5656 tsubst_flags_t complain)
5657 {
5658 tree init = d->cur->value;
5659
5660 if (error_operand_p (init))
5661 return error_mark_node;
5662
5663 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
5664 && has_designator_problem (d, complain))
5665 return error_mark_node;
5666
5667 if (TREE_CODE (type) == COMPLEX_TYPE)
5668 {
5669 /* A complex type can be initialized from one or two initializers,
5670 but braces are not elided. */
5671 d->cur++;
5672 if (BRACE_ENCLOSED_INITIALIZER_P (init))
5673 {
5674 if (CONSTRUCTOR_NELTS (init) > 2)
5675 {
5676 if (complain & tf_error)
5677 error ("too many initializers for %qT", type);
5678 else
5679 return error_mark_node;
5680 }
5681 }
5682 else if (first_initializer_p && d->cur != d->end)
5683 {
5684 vec<constructor_elt, va_gc> *v = 0;
5685 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
5686 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
5687 if (has_designator_problem (d, complain))
5688 return error_mark_node;
5689 d->cur++;
5690 init = build_constructor (init_list_type_node, v);
5691 }
5692 return init;
5693 }
5694
5695 /* A non-aggregate type is always initialized with a single
5696 initializer. */
5697 if (!CP_AGGREGATE_TYPE_P (type))
5698 {
5699 /* It is invalid to initialize a non-aggregate type with a
5700 brace-enclosed initializer before C++0x.
5701 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
5702 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
5703 a CONSTRUCTOR (with a record type). */
5704 if (TREE_CODE (init) == CONSTRUCTOR
5705 /* Don't complain about a capture-init. */
5706 && !CONSTRUCTOR_IS_DIRECT_INIT (init)
5707 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
5708 {
5709 if (SCALAR_TYPE_P (type))
5710 {
5711 if (cxx_dialect < cxx11
5712 /* Isn't value-initialization. */
5713 || CONSTRUCTOR_NELTS (init) > 0)
5714 {
5715 if (complain & tf_error)
5716 error ("braces around scalar initializer for type %qT",
5717 type);
5718 init = error_mark_node;
5719 }
5720 }
5721 else
5722 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5723 }
5724
5725 d->cur++;
5726 return init;
5727 }
5728
5729 /* "If T is a class type and the initializer list has a single element of
5730 type cv U, where U is T or a class derived from T, the object is
5731 initialized from that element." Even if T is an aggregate. */
5732 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
5733 && first_initializer_p
5734 && d->end - d->cur == 1
5735 && reference_related_p (type, TREE_TYPE (init)))
5736 {
5737 d->cur++;
5738 return init;
5739 }
5740
5741 /* [dcl.init.aggr]
5742
5743 All implicit type conversions (clause _conv_) are considered when
5744 initializing the aggregate member with an initializer from an
5745 initializer-list. If the initializer can initialize a member,
5746 the member is initialized. Otherwise, if the member is itself a
5747 non-empty subaggregate, brace elision is assumed and the
5748 initializer is considered for the initialization of the first
5749 member of the subaggregate. */
5750 if (TREE_CODE (init) != CONSTRUCTOR
5751 /* But don't try this for the first initializer, since that would be
5752 looking through the outermost braces; A a2 = { a1 }; is not a
5753 valid aggregate initialization. */
5754 && !first_initializer_p
5755 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
5756 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
5757 complain)))
5758 {
5759 d->cur++;
5760 return init;
5761 }
5762
5763 /* [dcl.init.string]
5764
5765 A char array (whether plain char, signed char, or unsigned char)
5766 can be initialized by a string-literal (optionally enclosed in
5767 braces); a wchar_t array can be initialized by a wide
5768 string-literal (optionally enclosed in braces). */
5769 if (TREE_CODE (type) == ARRAY_TYPE
5770 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
5771 {
5772 tree str_init = init;
5773
5774 /* Strip one level of braces if and only if they enclose a single
5775 element (as allowed by [dcl.init.string]). */
5776 if (!first_initializer_p
5777 && TREE_CODE (str_init) == CONSTRUCTOR
5778 && vec_safe_length (CONSTRUCTOR_ELTS (str_init)) == 1)
5779 {
5780 str_init = (*CONSTRUCTOR_ELTS (str_init))[0].value;
5781 }
5782
5783 /* If it's a string literal, then it's the initializer for the array
5784 as a whole. Otherwise, continue with normal initialization for
5785 array types (one value per array element). */
5786 if (TREE_CODE (str_init) == STRING_CST)
5787 {
5788 if (has_designator_problem (d, complain))
5789 return error_mark_node;
5790 d->cur++;
5791 return str_init;
5792 }
5793 }
5794
5795 /* The following cases are about aggregates. If we are not within a full
5796 initializer already, and there is not a CONSTRUCTOR, it means that there
5797 is a missing set of braces (that is, we are processing the case for
5798 which reshape_init exists). */
5799 if (!first_initializer_p)
5800 {
5801 if (TREE_CODE (init) == CONSTRUCTOR)
5802 {
5803 if (TREE_TYPE (init) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init)))
5804 /* There is no need to reshape pointer-to-member function
5805 initializers, as they are always constructed correctly
5806 by the front end. */
5807 ;
5808 else if (COMPOUND_LITERAL_P (init))
5809 /* For a nested compound literal, there is no need to reshape since
5810 brace elision is not allowed. Even if we decided to allow it,
5811 we should add a call to reshape_init in finish_compound_literal,
5812 before calling digest_init, so changing this code would still
5813 not be necessary. */
5814 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
5815 else
5816 {
5817 ++d->cur;
5818 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5819 return reshape_init (type, init, complain);
5820 }
5821 }
5822
5823 warning (OPT_Wmissing_braces, "missing braces around initializer for %qT",
5824 type);
5825 }
5826
5827 /* Dispatch to specialized routines. */
5828 if (CLASS_TYPE_P (type))
5829 return reshape_init_class (type, d, first_initializer_p, complain);
5830 else if (TREE_CODE (type) == ARRAY_TYPE)
5831 return reshape_init_array (type, d, complain);
5832 else if (VECTOR_TYPE_P (type))
5833 return reshape_init_vector (type, d, complain);
5834 else
5835 gcc_unreachable();
5836 }
5837
5838 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
5839 brace-enclosed aggregate initializer.
5840
5841 INIT is the CONSTRUCTOR containing the list of initializers describing
5842 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
5843 It may not presently match the shape of the TYPE; for example:
5844
5845 struct S { int a; int b; };
5846 struct S a[] = { 1, 2, 3, 4 };
5847
5848 Here INIT will hold a vector of four elements, rather than a
5849 vector of two elements, each itself a vector of two elements. This
5850 routine transforms INIT from the former form into the latter. The
5851 revised CONSTRUCTOR node is returned. */
5852
5853 tree
5854 reshape_init (tree type, tree init, tsubst_flags_t complain)
5855 {
5856 vec<constructor_elt, va_gc> *v;
5857 reshape_iter d;
5858 tree new_init;
5859
5860 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5861
5862 v = CONSTRUCTOR_ELTS (init);
5863
5864 /* An empty constructor does not need reshaping, and it is always a valid
5865 initializer. */
5866 if (vec_safe_is_empty (v))
5867 return init;
5868
5869 /* Recurse on this CONSTRUCTOR. */
5870 d.cur = &(*v)[0];
5871 d.end = d.cur + v->length ();
5872
5873 new_init = reshape_init_r (type, &d, true, complain);
5874 if (new_init == error_mark_node)
5875 return error_mark_node;
5876
5877 /* Make sure all the element of the constructor were used. Otherwise,
5878 issue an error about exceeding initializers. */
5879 if (d.cur != d.end)
5880 {
5881 if (complain & tf_error)
5882 error ("too many initializers for %qT", type);
5883 else
5884 return error_mark_node;
5885 }
5886
5887 return new_init;
5888 }
5889
5890 /* Verify array initializer. Returns true if errors have been reported. */
5891
5892 bool
5893 check_array_initializer (tree decl, tree type, tree init)
5894 {
5895 tree element_type = TREE_TYPE (type);
5896
5897 /* The array type itself need not be complete, because the
5898 initializer may tell us how many elements are in the array.
5899 But, the elements of the array must be complete. */
5900 if (!COMPLETE_TYPE_P (complete_type (element_type)))
5901 {
5902 if (decl)
5903 error ("elements of array %q#D have incomplete type", decl);
5904 else
5905 error ("elements of array %q#T have incomplete type", type);
5906 return true;
5907 }
5908 /* A compound literal can't have variable size. */
5909 if (init && !decl
5910 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
5911 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
5912 {
5913 error ("variable-sized compound literal");
5914 return true;
5915 }
5916 return false;
5917 }
5918
5919 /* Subroutine of check_initializer; args are passed down from that function.
5920 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
5921
5922 static tree
5923 build_aggr_init_full_exprs (tree decl, tree init, int flags)
5924
5925 {
5926 gcc_assert (stmts_are_full_exprs_p ());
5927 return build_aggr_init (decl, init, flags, tf_warning_or_error);
5928 }
5929
5930 /* Verify INIT (the initializer for DECL), and record the
5931 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
5932 grok_reference_init.
5933
5934 If the return value is non-NULL, it is an expression that must be
5935 evaluated dynamically to initialize DECL. */
5936
5937 static tree
5938 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
5939 {
5940 tree type = TREE_TYPE (decl);
5941 tree init_code = NULL;
5942 tree core_type;
5943
5944 /* Things that are going to be initialized need to have complete
5945 type. */
5946 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
5947
5948 if (DECL_HAS_VALUE_EXPR_P (decl))
5949 {
5950 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
5951 it doesn't have storage to be initialized. */
5952 gcc_assert (init == NULL_TREE);
5953 return NULL_TREE;
5954 }
5955
5956 if (type == error_mark_node)
5957 /* We will have already complained. */
5958 return NULL_TREE;
5959
5960 if (TREE_CODE (type) == ARRAY_TYPE)
5961 {
5962 if (check_array_initializer (decl, type, init))
5963 return NULL_TREE;
5964 }
5965 else if (!COMPLETE_TYPE_P (type))
5966 {
5967 error ("%q#D has incomplete type", decl);
5968 TREE_TYPE (decl) = error_mark_node;
5969 return NULL_TREE;
5970 }
5971 else
5972 /* There is no way to make a variable-sized class type in GNU C++. */
5973 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
5974
5975 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
5976 {
5977 int init_len = vec_safe_length (CONSTRUCTOR_ELTS (init));
5978 if (SCALAR_TYPE_P (type))
5979 {
5980 if (init_len == 0)
5981 {
5982 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5983 init = build_zero_init (type, NULL_TREE, false);
5984 }
5985 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
5986 {
5987 error ("scalar object %qD requires one element in initializer",
5988 decl);
5989 TREE_TYPE (decl) = error_mark_node;
5990 return NULL_TREE;
5991 }
5992 }
5993 }
5994
5995 if (TREE_CODE (decl) == CONST_DECL)
5996 {
5997 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
5998
5999 DECL_INITIAL (decl) = init;
6000
6001 gcc_assert (init != NULL_TREE);
6002 init = NULL_TREE;
6003 }
6004 else if (!init && DECL_REALLY_EXTERN (decl))
6005 ;
6006 else if (init || type_build_ctor_call (type)
6007 || TREE_CODE (type) == REFERENCE_TYPE)
6008 {
6009 if (TREE_CODE (type) == REFERENCE_TYPE)
6010 {
6011 init = grok_reference_init (decl, type, init, flags);
6012 flags |= LOOKUP_ALREADY_DIGESTED;
6013 }
6014 else if (!init)
6015 check_for_uninitialized_const_var (decl);
6016 /* Do not reshape constructors of vectors (they don't need to be
6017 reshaped. */
6018 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
6019 {
6020 if (is_std_init_list (type))
6021 {
6022 init = perform_implicit_conversion (type, init,
6023 tf_warning_or_error);
6024 flags |= LOOKUP_ALREADY_DIGESTED;
6025 }
6026 else if (TYPE_NON_AGGREGATE_CLASS (type))
6027 {
6028 /* Don't reshape if the class has constructors. */
6029 if (cxx_dialect == cxx98)
6030 error ("in C++98 %qD must be initialized by constructor, "
6031 "not by %<{...}%>",
6032 decl);
6033 }
6034 else if (VECTOR_TYPE_P (type) && TYPE_VECTOR_OPAQUE (type))
6035 {
6036 error ("opaque vector types cannot be initialized");
6037 init = error_mark_node;
6038 }
6039 else
6040 {
6041 init = reshape_init (type, init, tf_warning_or_error);
6042 flags |= LOOKUP_NO_NARROWING;
6043 }
6044 }
6045 else if (TREE_CODE (init) == TREE_LIST
6046 && TREE_TYPE (init) != unknown_type_node
6047 && !MAYBE_CLASS_TYPE_P (type))
6048 {
6049 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6050
6051 /* We get here with code like `int a (2);' */
6052 init = build_x_compound_expr_from_list (init, ELK_INIT,
6053 tf_warning_or_error);
6054 }
6055
6056 /* If DECL has an array type without a specific bound, deduce the
6057 array size from the initializer. */
6058 maybe_deduce_size_from_array_init (decl, init);
6059 type = TREE_TYPE (decl);
6060 if (type == error_mark_node)
6061 return NULL_TREE;
6062
6063 if ((type_build_ctor_call (type) || CLASS_TYPE_P (type))
6064 && !(flags & LOOKUP_ALREADY_DIGESTED)
6065 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
6066 && CP_AGGREGATE_TYPE_P (type)
6067 && (CLASS_TYPE_P (type)
6068 || !TYPE_NEEDS_CONSTRUCTING (type)
6069 || type_has_extended_temps (type))))
6070 {
6071 init_code = build_aggr_init_full_exprs (decl, init, flags);
6072
6073 /* A constructor call is a non-trivial initializer even if
6074 it isn't explicitly written. */
6075 if (TREE_SIDE_EFFECTS (init_code))
6076 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
6077
6078 /* If this is a constexpr initializer, expand_default_init will
6079 have returned an INIT_EXPR rather than a CALL_EXPR. In that
6080 case, pull the initializer back out and pass it down into
6081 store_init_value. */
6082 while (TREE_CODE (init_code) == EXPR_STMT
6083 || TREE_CODE (init_code) == CONVERT_EXPR)
6084 init_code = TREE_OPERAND (init_code, 0);
6085 if (TREE_CODE (init_code) == INIT_EXPR)
6086 {
6087 init = TREE_OPERAND (init_code, 1);
6088 init_code = NULL_TREE;
6089 /* Don't call digest_init; it's unnecessary and will complain
6090 about aggregate initialization of non-aggregate classes. */
6091 flags |= LOOKUP_ALREADY_DIGESTED;
6092 }
6093 else if (DECL_DECLARED_CONSTEXPR_P (decl))
6094 {
6095 /* Declared constexpr, but no suitable initializer; massage
6096 init appropriately so we can pass it into store_init_value
6097 for the error. */
6098 if (CLASS_TYPE_P (type)
6099 && (!init || TREE_CODE (init) == TREE_LIST))
6100 {
6101 init = build_functional_cast (type, init, tf_none);
6102 if (TREE_CODE (init) == TARGET_EXPR)
6103 TARGET_EXPR_DIRECT_INIT_P (init) = true;
6104 }
6105 init_code = NULL_TREE;
6106 }
6107 else
6108 init = NULL_TREE;
6109 }
6110
6111 if (init && TREE_CODE (init) != TREE_VEC)
6112 {
6113 /* In aggregate initialization of a variable, each element
6114 initialization is a full-expression because there is no
6115 enclosing expression. */
6116 gcc_assert (stmts_are_full_exprs_p ());
6117
6118 init_code = store_init_value (decl, init, cleanups, flags);
6119
6120 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
6121 && DECL_INITIAL (decl)
6122 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
6123 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
6124 warning (0, "array %qD initialized by parenthesized string literal %qE",
6125 decl, DECL_INITIAL (decl));
6126 init = NULL;
6127 }
6128 }
6129 else
6130 {
6131 if (CLASS_TYPE_P (core_type = strip_array_types (type))
6132 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
6133 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
6134 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
6135 /*complain=*/true);
6136
6137 check_for_uninitialized_const_var (decl);
6138 }
6139
6140 if (init && init != error_mark_node)
6141 init_code = build2 (INIT_EXPR, type, decl, init);
6142
6143 if (init_code)
6144 {
6145 /* We might have set these in cp_finish_decl. */
6146 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
6147 TREE_CONSTANT (decl) = false;
6148 }
6149
6150 if (init_code && DECL_IN_AGGR_P (decl))
6151 {
6152 static int explained = 0;
6153
6154 if (cxx_dialect < cxx11)
6155 error ("initializer invalid for static member with constructor");
6156 else
6157 error ("non-constant in-class initialization invalid for static "
6158 "member %qD", decl);
6159 if (!explained)
6160 {
6161 inform (input_location,
6162 "(an out of class initialization is required)");
6163 explained = 1;
6164 }
6165 return NULL_TREE;
6166 }
6167
6168 return init_code;
6169 }
6170
6171 /* If DECL is not a local variable, give it RTL. */
6172
6173 static void
6174 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
6175 {
6176 int toplev = toplevel_bindings_p ();
6177 int defer_p;
6178
6179 /* Set the DECL_ASSEMBLER_NAME for the object. */
6180 if (asmspec)
6181 {
6182 /* The `register' keyword, when used together with an
6183 asm-specification, indicates that the variable should be
6184 placed in a particular register. */
6185 if (VAR_P (decl) && DECL_REGISTER (decl))
6186 {
6187 set_user_assembler_name (decl, asmspec);
6188 DECL_HARD_REGISTER (decl) = 1;
6189 }
6190 else
6191 {
6192 if (TREE_CODE (decl) == FUNCTION_DECL
6193 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
6194 set_builtin_user_assembler_name (decl, asmspec);
6195 set_user_assembler_name (decl, asmspec);
6196 }
6197 }
6198
6199 /* Handle non-variables up front. */
6200 if (!VAR_P (decl))
6201 {
6202 rest_of_decl_compilation (decl, toplev, at_eof);
6203 return;
6204 }
6205
6206 /* If we see a class member here, it should be a static data
6207 member. */
6208 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
6209 {
6210 gcc_assert (TREE_STATIC (decl));
6211 /* An in-class declaration of a static data member should be
6212 external; it is only a declaration, and not a definition. */
6213 if (init == NULL_TREE)
6214 gcc_assert (DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl));
6215 }
6216
6217 /* We don't create any RTL for local variables. */
6218 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6219 return;
6220
6221 /* We defer emission of local statics until the corresponding
6222 DECL_EXPR is expanded. */
6223 defer_p = DECL_FUNCTION_SCOPE_P (decl) || DECL_VIRTUAL_P (decl);
6224
6225 /* Defer template instantiations. */
6226 if (DECL_LANG_SPECIFIC (decl)
6227 && DECL_IMPLICIT_INSTANTIATION (decl))
6228 defer_p = 1;
6229
6230 /* If we're not deferring, go ahead and assemble the variable. */
6231 if (!defer_p)
6232 rest_of_decl_compilation (decl, toplev, at_eof);
6233 }
6234
6235 /* walk_tree helper for wrap_temporary_cleanups, below. */
6236
6237 static tree
6238 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
6239 {
6240 /* Stop at types or full-expression boundaries. */
6241 if (TYPE_P (*stmt_p)
6242 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
6243 {
6244 *walk_subtrees = 0;
6245 return NULL_TREE;
6246 }
6247
6248 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
6249 {
6250 tree guard = (tree)data;
6251 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
6252
6253 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
6254 /* Tell honor_protect_cleanup_actions to handle this as a separate
6255 cleanup. */
6256 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
6257
6258 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
6259 }
6260
6261 return NULL_TREE;
6262 }
6263
6264 /* We're initializing a local variable which has a cleanup GUARD. If there
6265 are any temporaries used in the initializer INIT of this variable, we
6266 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6267 variable will be cleaned up properly if one of them throws.
6268
6269 Unfortunately, there's no way to express this properly in terms of
6270 nesting, as the regions for the temporaries overlap the region for the
6271 variable itself; if there are two temporaries, the variable needs to be
6272 the first thing destroyed if either of them throws. However, we only
6273 want to run the variable's cleanup if it actually got constructed. So
6274 we need to guard the temporary cleanups with the variable's cleanup if
6275 they are run on the normal path, but not if they are run on the
6276 exceptional path. We implement this by telling
6277 honor_protect_cleanup_actions to strip the variable cleanup from the
6278 exceptional path. */
6279
6280 static void
6281 wrap_temporary_cleanups (tree init, tree guard)
6282 {
6283 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
6284 }
6285
6286 /* Generate code to initialize DECL (a local variable). */
6287
6288 static void
6289 initialize_local_var (tree decl, tree init)
6290 {
6291 tree type = TREE_TYPE (decl);
6292 tree cleanup;
6293 int already_used;
6294
6295 gcc_assert (VAR_P (decl)
6296 || TREE_CODE (decl) == RESULT_DECL);
6297 gcc_assert (!TREE_STATIC (decl));
6298
6299 if (DECL_SIZE (decl) == NULL_TREE)
6300 {
6301 /* If we used it already as memory, it must stay in memory. */
6302 DECL_INITIAL (decl) = NULL_TREE;
6303 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6304 return;
6305 }
6306
6307 if (type == error_mark_node)
6308 return;
6309
6310 /* Compute and store the initial value. */
6311 already_used = TREE_USED (decl) || TREE_USED (type);
6312 if (TREE_USED (type))
6313 DECL_READ_P (decl) = 1;
6314
6315 /* Generate a cleanup, if necessary. */
6316 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6317
6318 /* Perform the initialization. */
6319 if (init)
6320 {
6321 tree rinit = (TREE_CODE (init) == INIT_EXPR
6322 ? TREE_OPERAND (init, 1) : NULL_TREE);
6323 if (rinit && !TREE_SIDE_EFFECTS (rinit))
6324 {
6325 /* Stick simple initializers in DECL_INITIAL so that
6326 -Wno-init-self works (c++/34772). */
6327 gcc_assert (TREE_OPERAND (init, 0) == decl);
6328 DECL_INITIAL (decl) = rinit;
6329
6330 if (warn_init_self && TREE_CODE (type) == REFERENCE_TYPE)
6331 {
6332 STRIP_NOPS (rinit);
6333 if (rinit == decl)
6334 warning_at (DECL_SOURCE_LOCATION (decl),
6335 OPT_Winit_self,
6336 "reference %qD is initialized with itself", decl);
6337 }
6338 }
6339 else
6340 {
6341 int saved_stmts_are_full_exprs_p;
6342
6343 /* If we're only initializing a single object, guard the
6344 destructors of any temporaries used in its initializer with
6345 its destructor. This isn't right for arrays because each
6346 element initialization is a full-expression. */
6347 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6348 wrap_temporary_cleanups (init, cleanup);
6349
6350 gcc_assert (building_stmt_list_p ());
6351 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6352 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6353 finish_expr_stmt (init);
6354 current_stmt_tree ()->stmts_are_full_exprs_p =
6355 saved_stmts_are_full_exprs_p;
6356 }
6357 }
6358
6359 /* Set this to 0 so we can tell whether an aggregate which was
6360 initialized was ever used. Don't do this if it has a
6361 destructor, so we don't complain about the 'resource
6362 allocation is initialization' idiom. Now set
6363 attribute((unused)) on types so decls of that type will be
6364 marked used. (see TREE_USED, above.) */
6365 if (TYPE_NEEDS_CONSTRUCTING (type)
6366 && ! already_used
6367 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6368 && DECL_NAME (decl))
6369 TREE_USED (decl) = 0;
6370 else if (already_used)
6371 TREE_USED (decl) = 1;
6372
6373 if (cleanup)
6374 finish_decl_cleanup (decl, cleanup);
6375 }
6376
6377 /* DECL is a VAR_DECL for a compiler-generated variable with static
6378 storage duration (like a virtual table) whose initializer is a
6379 compile-time constant. Initialize the variable and provide it to the
6380 back end. */
6381
6382 void
6383 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6384 {
6385 tree init;
6386 gcc_assert (DECL_ARTIFICIAL (decl));
6387 init = build_constructor (TREE_TYPE (decl), v);
6388 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6389 DECL_INITIAL (decl) = init;
6390 DECL_INITIALIZED_P (decl) = 1;
6391 determine_visibility (decl);
6392 layout_var_decl (decl);
6393 maybe_commonize_var (decl);
6394 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6395 }
6396
6397 /* INIT is the initializer for a variable, as represented by the
6398 parser. Returns true iff INIT is type-dependent. */
6399
6400 static bool
6401 type_dependent_init_p (tree init)
6402 {
6403 if (TREE_CODE (init) == TREE_LIST)
6404 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6405 return any_type_dependent_elements_p (init);
6406 else if (TREE_CODE (init) == CONSTRUCTOR)
6407 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6408 {
6409 vec<constructor_elt, va_gc> *elts;
6410 size_t nelts;
6411 size_t i;
6412
6413 elts = CONSTRUCTOR_ELTS (init);
6414 nelts = vec_safe_length (elts);
6415 for (i = 0; i < nelts; ++i)
6416 if (type_dependent_init_p ((*elts)[i].value))
6417 return true;
6418 }
6419 else
6420 /* It must be a simple expression, e.g., int i = 3; */
6421 return type_dependent_expression_p (init);
6422
6423 return false;
6424 }
6425
6426 /* INIT is the initializer for a variable, as represented by the
6427 parser. Returns true iff INIT is value-dependent. */
6428
6429 static bool
6430 value_dependent_init_p (tree init)
6431 {
6432 if (TREE_CODE (init) == TREE_LIST)
6433 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6434 return any_value_dependent_elements_p (init);
6435 else if (TREE_CODE (init) == CONSTRUCTOR)
6436 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6437 {
6438 vec<constructor_elt, va_gc> *elts;
6439 size_t nelts;
6440 size_t i;
6441
6442 elts = CONSTRUCTOR_ELTS (init);
6443 nelts = vec_safe_length (elts);
6444 for (i = 0; i < nelts; ++i)
6445 if (value_dependent_init_p ((*elts)[i].value))
6446 return true;
6447 }
6448 else
6449 /* It must be a simple expression, e.g., int i = 3; */
6450 return value_dependent_expression_p (init);
6451
6452 return false;
6453 }
6454
6455 // Returns true if a DECL is VAR_DECL with the concept specifier.
6456 static inline bool
6457 is_concept_var (tree decl)
6458 {
6459 return (VAR_P (decl)
6460 // Not all variables have DECL_LANG_SPECIFIC.
6461 && DECL_LANG_SPECIFIC (decl)
6462 && DECL_DECLARED_CONCEPT_P (decl));
6463 }
6464
6465 /* Finish processing of a declaration;
6466 install its line number and initial value.
6467 If the length of an array type is not known before,
6468 it must be determined now, from the initial value, or it is an error.
6469
6470 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6471 true, then INIT is an integral constant expression.
6472
6473 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6474 if the (init) syntax was used. */
6475
6476 void
6477 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
6478 tree asmspec_tree, int flags)
6479 {
6480 tree type;
6481 vec<tree, va_gc> *cleanups = NULL;
6482 const char *asmspec = NULL;
6483 int was_readonly = 0;
6484 bool var_definition_p = false;
6485 tree auto_node;
6486
6487 if (decl == error_mark_node)
6488 return;
6489 else if (! decl)
6490 {
6491 if (init)
6492 error ("assignment (not initialization) in declaration");
6493 return;
6494 }
6495
6496 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6497 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6498 gcc_assert (TREE_CODE (decl) != PARM_DECL);
6499
6500 type = TREE_TYPE (decl);
6501 if (type == error_mark_node)
6502 return;
6503
6504 /* If a name was specified, get the string. */
6505 if (at_namespace_scope_p ())
6506 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
6507 if (asmspec_tree && asmspec_tree != error_mark_node)
6508 asmspec = TREE_STRING_POINTER (asmspec_tree);
6509
6510 if (current_class_type
6511 && CP_DECL_CONTEXT (decl) == current_class_type
6512 && TYPE_BEING_DEFINED (current_class_type)
6513 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
6514 && (DECL_INITIAL (decl) || init))
6515 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
6516
6517 if (TREE_CODE (decl) != FUNCTION_DECL
6518 && (auto_node = type_uses_auto (type)))
6519 {
6520 tree d_init;
6521 if (init == NULL_TREE)
6522 {
6523 if (DECL_LANG_SPECIFIC (decl)
6524 && DECL_TEMPLATE_INSTANTIATION (decl)
6525 && !DECL_TEMPLATE_INSTANTIATED (decl))
6526 {
6527 /* init is null because we're deferring instantiating the
6528 initializer until we need it. Well, we need it now. */
6529 instantiate_decl (decl, /*defer_ok*/true, /*expl*/false);
6530 return;
6531 }
6532
6533 error ("declaration of %q#D has no initializer", decl);
6534 TREE_TYPE (decl) = error_mark_node;
6535 return;
6536 }
6537 d_init = init;
6538 if (TREE_CODE (d_init) == TREE_LIST)
6539 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
6540 tf_warning_or_error);
6541 d_init = resolve_nondeduced_context (d_init);
6542 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init,
6543 auto_node,
6544 tf_warning_or_error,
6545 adc_variable_type);
6546 if (type == error_mark_node)
6547 return;
6548 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
6549 }
6550
6551 if (!ensure_literal_type_for_constexpr_object (decl))
6552 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
6553
6554 if (VAR_P (decl)
6555 && DECL_CLASS_SCOPE_P (decl)
6556 && DECL_INITIALIZED_IN_CLASS_P (decl))
6557 check_static_variable_definition (decl, type);
6558
6559 if (init && TREE_CODE (decl) == FUNCTION_DECL)
6560 {
6561 tree clone;
6562 if (init == ridpointers[(int)RID_DELETE])
6563 {
6564 /* FIXME check this is 1st decl. */
6565 DECL_DELETED_FN (decl) = 1;
6566 DECL_DECLARED_INLINE_P (decl) = 1;
6567 DECL_INITIAL (decl) = error_mark_node;
6568 FOR_EACH_CLONE (clone, decl)
6569 {
6570 DECL_DELETED_FN (clone) = 1;
6571 DECL_DECLARED_INLINE_P (clone) = 1;
6572 DECL_INITIAL (clone) = error_mark_node;
6573 }
6574 init = NULL_TREE;
6575 }
6576 else if (init == ridpointers[(int)RID_DEFAULT])
6577 {
6578 if (defaultable_fn_check (decl))
6579 DECL_DEFAULTED_FN (decl) = 1;
6580 else
6581 DECL_INITIAL (decl) = NULL_TREE;
6582 }
6583 }
6584
6585 if (init && VAR_P (decl))
6586 {
6587 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
6588 /* If DECL is a reference, then we want to know whether init is a
6589 reference constant; init_const_expr_p as passed tells us whether
6590 it's an rvalue constant. */
6591 if (TREE_CODE (type) == REFERENCE_TYPE)
6592 init_const_expr_p = potential_constant_expression (init);
6593 if (init_const_expr_p)
6594 {
6595 /* Set these flags now for templates. We'll update the flags in
6596 store_init_value for instantiations. */
6597 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
6598 if (decl_maybe_constant_var_p (decl))
6599 TREE_CONSTANT (decl) = 1;
6600 }
6601 }
6602
6603 if (processing_template_decl)
6604 {
6605 bool type_dependent_p;
6606
6607 /* Add this declaration to the statement-tree. */
6608 if (at_function_scope_p ())
6609 add_decl_expr (decl);
6610
6611 type_dependent_p = dependent_type_p (type);
6612
6613 if (check_for_bare_parameter_packs (init))
6614 {
6615 init = NULL_TREE;
6616 DECL_INITIAL (decl) = NULL_TREE;
6617 }
6618
6619 /* Generally, initializers in templates are expanded when the
6620 template is instantiated. But, if DECL is a variable constant
6621 then it can be used in future constant expressions, so its value
6622 must be available. */
6623
6624 if (!VAR_P (decl) || type_dependent_p)
6625 /* We can't do anything if the decl has dependent type. */;
6626 else if (init
6627 && init_const_expr_p
6628 && TREE_CODE (type) != REFERENCE_TYPE
6629 && decl_maybe_constant_var_p (decl)
6630 && !type_dependent_init_p (init)
6631 && !value_dependent_init_p (init))
6632 {
6633 /* This variable seems to be a non-dependent constant, so process
6634 its initializer. If check_initializer returns non-null the
6635 initialization wasn't constant after all. */
6636 tree init_code;
6637 cleanups = make_tree_vector ();
6638 init_code = check_initializer (decl, init, flags, &cleanups);
6639 if (init_code == NULL_TREE)
6640 init = NULL_TREE;
6641 release_tree_vector (cleanups);
6642 }
6643 else if (!init && is_concept_var (decl))
6644 error ("variable concept has no initializer");
6645 else if (!DECL_PRETTY_FUNCTION_P (decl))
6646 {
6647 /* Deduce array size even if the initializer is dependent. */
6648 maybe_deduce_size_from_array_init (decl, init);
6649 /* And complain about multiple initializers. */
6650 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
6651 && !MAYBE_CLASS_TYPE_P (type))
6652 init = build_x_compound_expr_from_list (init, ELK_INIT,
6653 tf_warning_or_error);
6654 }
6655
6656 if (init)
6657 DECL_INITIAL (decl) = init;
6658 return;
6659 }
6660
6661 /* Just store non-static data member initializers for later. */
6662 if (init && TREE_CODE (decl) == FIELD_DECL)
6663 DECL_INITIAL (decl) = init;
6664
6665 /* Take care of TYPE_DECLs up front. */
6666 if (TREE_CODE (decl) == TYPE_DECL)
6667 {
6668 if (type != error_mark_node
6669 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
6670 {
6671 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
6672 warning (0, "shadowing previous type declaration of %q#D", decl);
6673 set_identifier_type_value (DECL_NAME (decl), decl);
6674 }
6675
6676 /* If we have installed this as the canonical typedef for this
6677 type, and that type has not been defined yet, delay emitting
6678 the debug information for it, as we will emit it later. */
6679 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
6680 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
6681 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
6682
6683 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
6684 at_eof);
6685 return;
6686 }
6687
6688 /* A reference will be modified here, as it is initialized. */
6689 if (! DECL_EXTERNAL (decl)
6690 && TREE_READONLY (decl)
6691 && TREE_CODE (type) == REFERENCE_TYPE)
6692 {
6693 was_readonly = 1;
6694 TREE_READONLY (decl) = 0;
6695 }
6696
6697 if (VAR_P (decl))
6698 {
6699 /* If this is a local variable that will need a mangled name,
6700 register it now. We must do this before processing the
6701 initializer for the variable, since the initialization might
6702 require a guard variable, and since the mangled name of the
6703 guard variable will depend on the mangled name of this
6704 variable. */
6705 if (DECL_FUNCTION_SCOPE_P (decl)
6706 && TREE_STATIC (decl)
6707 && !DECL_ARTIFICIAL (decl))
6708 {
6709 push_local_name (decl);
6710 if (DECL_CONSTRUCTOR_P (current_function_decl)
6711 || DECL_DESTRUCTOR_P (current_function_decl))
6712 /* Normally local_decls is populated during GIMPLE lowering,
6713 but [cd]tors are never actually compiled directly. We need
6714 to put statics on the list so we can deal with the label
6715 address extension. FIXME. */
6716 add_local_decl (cfun, decl);
6717 }
6718
6719 /* Convert the initializer to the type of DECL, if we have not
6720 already initialized DECL. */
6721 if (!DECL_INITIALIZED_P (decl)
6722 /* If !DECL_EXTERNAL then DECL is being defined. In the
6723 case of a static data member initialized inside the
6724 class-specifier, there can be an initializer even if DECL
6725 is *not* defined. */
6726 && (!DECL_EXTERNAL (decl) || init))
6727 {
6728 if (TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6729 {
6730 tree jclass
6731 = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jclass"));
6732 /* Allow libjava/prims.cc define primitive classes. */
6733 if (init != NULL_TREE
6734 || jclass == NULL_TREE
6735 || TREE_CODE (jclass) != TYPE_DECL
6736 || !POINTER_TYPE_P (TREE_TYPE (jclass))
6737 || !same_type_ignoring_top_level_qualifiers_p
6738 (type, TREE_TYPE (TREE_TYPE (jclass))))
6739 error ("Java object %qD not allocated with %<new%>", decl);
6740 init = NULL_TREE;
6741 }
6742 cleanups = make_tree_vector ();
6743 init = check_initializer (decl, init, flags, &cleanups);
6744
6745 /* Handle:
6746
6747 [dcl.init]
6748
6749 The memory occupied by any object of static storage
6750 duration is zero-initialized at program startup before
6751 any other initialization takes place.
6752
6753 We cannot create an appropriate initializer until after
6754 the type of DECL is finalized. If DECL_INITIAL is set,
6755 then the DECL is statically initialized, and any
6756 necessary zero-initialization has already been performed. */
6757 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
6758 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
6759 /*nelts=*/NULL_TREE,
6760 /*static_storage_p=*/true);
6761 /* Remember that the initialization for this variable has
6762 taken place. */
6763 DECL_INITIALIZED_P (decl) = 1;
6764 /* This declaration is the definition of this variable,
6765 unless we are initializing a static data member within
6766 the class specifier. */
6767 if (!DECL_EXTERNAL (decl))
6768 var_definition_p = true;
6769 }
6770 /* If the variable has an array type, lay out the type, even if
6771 there is no initializer. It is valid to index through the
6772 array, and we must get TYPE_ALIGN set correctly on the array
6773 type. */
6774 else if (TREE_CODE (type) == ARRAY_TYPE)
6775 layout_type (type);
6776
6777 if (TREE_STATIC (decl)
6778 && !at_function_scope_p ()
6779 && current_function_decl == NULL)
6780 /* So decl is a global variable or a static member of a
6781 non local class. Record the types it uses
6782 so that we can decide later to emit debug info for them. */
6783 record_types_used_by_current_var_decl (decl);
6784 }
6785 else if (TREE_CODE (decl) == FIELD_DECL
6786 && TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6787 error ("non-static data member %qD has Java class type", decl);
6788
6789 /* Add this declaration to the statement-tree. This needs to happen
6790 after the call to check_initializer so that the DECL_EXPR for a
6791 reference temp is added before the DECL_EXPR for the reference itself. */
6792 if (DECL_FUNCTION_SCOPE_P (decl))
6793 {
6794 /* If we're building a variable sized type, and we might be
6795 reachable other than via the top of the current binding
6796 level, then create a new BIND_EXPR so that we deallocate
6797 the object at the right time. */
6798 if (VAR_P (decl)
6799 && DECL_SIZE (decl)
6800 && !TREE_CONSTANT (DECL_SIZE (decl))
6801 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
6802 {
6803 tree bind;
6804 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6805 TREE_SIDE_EFFECTS (bind) = 1;
6806 add_stmt (bind);
6807 BIND_EXPR_BODY (bind) = push_stmt_list ();
6808 }
6809 add_decl_expr (decl);
6810 }
6811
6812 /* Let the middle end know about variables and functions -- but not
6813 static data members in uninstantiated class templates. */
6814 if (VAR_OR_FUNCTION_DECL_P (decl))
6815 {
6816 if (VAR_P (decl))
6817 {
6818 layout_var_decl (decl);
6819 maybe_commonize_var (decl);
6820 }
6821
6822 /* This needs to happen after the linkage is set. */
6823 determine_visibility (decl);
6824
6825 if (var_definition_p && TREE_STATIC (decl))
6826 {
6827 /* If a TREE_READONLY variable needs initialization
6828 at runtime, it is no longer readonly and we need to
6829 avoid MEM_READONLY_P being set on RTL created for it. */
6830 if (init)
6831 {
6832 if (TREE_READONLY (decl))
6833 TREE_READONLY (decl) = 0;
6834 was_readonly = 0;
6835 }
6836 else if (was_readonly)
6837 TREE_READONLY (decl) = 1;
6838
6839 /* Likewise if it needs destruction. */
6840 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
6841 TREE_READONLY (decl) = 0;
6842 }
6843
6844 make_rtl_for_nonlocal_decl (decl, init, asmspec);
6845
6846 /* Check for abstractness of the type. Notice that there is no
6847 need to strip array types here since the check for those types
6848 is already done within create_array_type_for_decl. */
6849 abstract_virtuals_error (decl, type);
6850
6851 if (TREE_TYPE (decl) == error_mark_node)
6852 /* No initialization required. */
6853 ;
6854 else if (TREE_CODE (decl) == FUNCTION_DECL)
6855 {
6856 if (init)
6857 {
6858 if (init == ridpointers[(int)RID_DEFAULT])
6859 {
6860 /* An out-of-class default definition is defined at
6861 the point where it is explicitly defaulted. */
6862 if (DECL_DELETED_FN (decl))
6863 maybe_explain_implicit_delete (decl);
6864 else if (DECL_INITIAL (decl) == error_mark_node)
6865 synthesize_method (decl);
6866 }
6867 else
6868 error ("function %q#D is initialized like a variable", decl);
6869 }
6870 /* else no initialization required. */
6871 }
6872 else if (DECL_EXTERNAL (decl)
6873 && ! (DECL_LANG_SPECIFIC (decl)
6874 && DECL_NOT_REALLY_EXTERN (decl)))
6875 {
6876 if (init)
6877 DECL_INITIAL (decl) = init;
6878 }
6879 /* A variable definition. */
6880 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6881 /* Initialize the local variable. */
6882 initialize_local_var (decl, init);
6883
6884 /* If a variable is defined, and then a subsequent
6885 definition with external linkage is encountered, we will
6886 get here twice for the same variable. We want to avoid
6887 calling expand_static_init more than once. For variables
6888 that are not static data members, we can call
6889 expand_static_init only when we actually process the
6890 initializer. It is not legal to redeclare a static data
6891 member, so this issue does not arise in that case. */
6892 else if (var_definition_p && TREE_STATIC (decl))
6893 expand_static_init (decl, init);
6894 }
6895
6896 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
6897 reference, insert it in the statement-tree now. */
6898 if (cleanups)
6899 {
6900 unsigned i; tree t;
6901 FOR_EACH_VEC_ELT (*cleanups, i, t)
6902 push_cleanup (decl, t, false);
6903 release_tree_vector (cleanups);
6904 }
6905
6906 if (was_readonly)
6907 TREE_READONLY (decl) = 1;
6908
6909 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
6910 }
6911
6912 /* Returns a declaration for a VAR_DECL as if:
6913
6914 extern "C" TYPE NAME;
6915
6916 had been seen. Used to create compiler-generated global
6917 variables. */
6918
6919 static tree
6920 declare_global_var (tree name, tree type)
6921 {
6922 tree decl;
6923
6924 push_to_top_level ();
6925 decl = build_decl (input_location, VAR_DECL, name, type);
6926 TREE_PUBLIC (decl) = 1;
6927 DECL_EXTERNAL (decl) = 1;
6928 DECL_ARTIFICIAL (decl) = 1;
6929 /* If the user has explicitly declared this variable (perhaps
6930 because the code we are compiling is part of a low-level runtime
6931 library), then it is possible that our declaration will be merged
6932 with theirs by pushdecl. */
6933 decl = pushdecl (decl);
6934 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
6935 pop_from_top_level ();
6936
6937 return decl;
6938 }
6939
6940 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
6941 if "__cxa_atexit" is not being used) corresponding to the function
6942 to be called when the program exits. */
6943
6944 static tree
6945 get_atexit_fn_ptr_type (void)
6946 {
6947 tree fn_type;
6948
6949 if (!atexit_fn_ptr_type_node)
6950 {
6951 tree arg_type;
6952 if (flag_use_cxa_atexit
6953 && !targetm.cxx.use_atexit_for_cxa_atexit ())
6954 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
6955 arg_type = ptr_type_node;
6956 else
6957 /* The parameter to "atexit" is "void (*)(void)". */
6958 arg_type = NULL_TREE;
6959
6960 fn_type = build_function_type_list (void_type_node,
6961 arg_type, NULL_TREE);
6962 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
6963 }
6964
6965 return atexit_fn_ptr_type_node;
6966 }
6967
6968 /* Returns a pointer to the `atexit' function. Note that if
6969 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
6970 `__cxa_atexit' function specified in the IA64 C++ ABI. */
6971
6972 static tree
6973 get_atexit_node (void)
6974 {
6975 tree atexit_fndecl;
6976 tree fn_type;
6977 tree fn_ptr_type;
6978 const char *name;
6979 bool use_aeabi_atexit;
6980
6981 if (atexit_node)
6982 return atexit_node;
6983
6984 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
6985 {
6986 /* The declaration for `__cxa_atexit' is:
6987
6988 int __cxa_atexit (void (*)(void *), void *, void *)
6989
6990 We build up the argument types and then the function type
6991 itself. */
6992 tree argtype0, argtype1, argtype2;
6993
6994 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
6995 /* First, build the pointer-to-function type for the first
6996 argument. */
6997 fn_ptr_type = get_atexit_fn_ptr_type ();
6998 /* Then, build the rest of the argument types. */
6999 argtype2 = ptr_type_node;
7000 if (use_aeabi_atexit)
7001 {
7002 argtype1 = fn_ptr_type;
7003 argtype0 = ptr_type_node;
7004 }
7005 else
7006 {
7007 argtype1 = ptr_type_node;
7008 argtype0 = fn_ptr_type;
7009 }
7010 /* And the final __cxa_atexit type. */
7011 fn_type = build_function_type_list (integer_type_node,
7012 argtype0, argtype1, argtype2,
7013 NULL_TREE);
7014 if (use_aeabi_atexit)
7015 name = "__aeabi_atexit";
7016 else
7017 name = "__cxa_atexit";
7018 }
7019 else
7020 {
7021 /* The declaration for `atexit' is:
7022
7023 int atexit (void (*)());
7024
7025 We build up the argument types and then the function type
7026 itself. */
7027 fn_ptr_type = get_atexit_fn_ptr_type ();
7028 /* Build the final atexit type. */
7029 fn_type = build_function_type_list (integer_type_node,
7030 fn_ptr_type, NULL_TREE);
7031 name = "atexit";
7032 }
7033
7034 /* Now, build the function declaration. */
7035 push_lang_context (lang_name_c);
7036 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
7037 mark_used (atexit_fndecl);
7038 pop_lang_context ();
7039 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
7040
7041 return atexit_node;
7042 }
7043
7044 /* Like get_atexit_node, but for thread-local cleanups. */
7045
7046 static tree
7047 get_thread_atexit_node (void)
7048 {
7049 /* The declaration for `__cxa_thread_atexit' is:
7050
7051 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
7052 tree fn_type = build_function_type_list (integer_type_node,
7053 get_atexit_fn_ptr_type (),
7054 ptr_type_node, ptr_type_node,
7055 NULL_TREE);
7056
7057 /* Now, build the function declaration. */
7058 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
7059 ECF_LEAF | ECF_NOTHROW);
7060 return decay_conversion (atexit_fndecl, tf_warning_or_error);
7061 }
7062
7063 /* Returns the __dso_handle VAR_DECL. */
7064
7065 static tree
7066 get_dso_handle_node (void)
7067 {
7068 if (dso_handle_node)
7069 return dso_handle_node;
7070
7071 /* Declare the variable. */
7072 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
7073 ptr_type_node);
7074
7075 #ifdef HAVE_GAS_HIDDEN
7076 if (dso_handle_node != error_mark_node)
7077 {
7078 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
7079 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
7080 }
7081 #endif
7082
7083 return dso_handle_node;
7084 }
7085
7086 /* Begin a new function with internal linkage whose job will be simply
7087 to destroy some particular variable. */
7088
7089 static GTY(()) int start_cleanup_cnt;
7090
7091 static tree
7092 start_cleanup_fn (void)
7093 {
7094 char name[32];
7095 tree fntype;
7096 tree fndecl;
7097 bool use_cxa_atexit = flag_use_cxa_atexit
7098 && !targetm.cxx.use_atexit_for_cxa_atexit ();
7099
7100 push_to_top_level ();
7101
7102 /* No need to mangle this. */
7103 push_lang_context (lang_name_c);
7104
7105 /* Build the name of the function. */
7106 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
7107 /* Build the function declaration. */
7108 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
7109 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
7110 /* It's a function with internal linkage, generated by the
7111 compiler. */
7112 TREE_PUBLIC (fndecl) = 0;
7113 DECL_ARTIFICIAL (fndecl) = 1;
7114 /* Make the function `inline' so that it is only emitted if it is
7115 actually needed. It is unlikely that it will be inlined, since
7116 it is only called via a function pointer, but we avoid unnecessary
7117 emissions this way. */
7118 DECL_DECLARED_INLINE_P (fndecl) = 1;
7119 DECL_INTERFACE_KNOWN (fndecl) = 1;
7120 /* Build the parameter. */
7121 if (use_cxa_atexit)
7122 {
7123 tree parmdecl;
7124
7125 parmdecl = cp_build_parm_decl (NULL_TREE, ptr_type_node);
7126 DECL_CONTEXT (parmdecl) = fndecl;
7127 TREE_USED (parmdecl) = 1;
7128 DECL_READ_P (parmdecl) = 1;
7129 DECL_ARGUMENTS (fndecl) = parmdecl;
7130 }
7131
7132 pushdecl (fndecl);
7133 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
7134
7135 pop_lang_context ();
7136
7137 return current_function_decl;
7138 }
7139
7140 /* Finish the cleanup function begun by start_cleanup_fn. */
7141
7142 static void
7143 end_cleanup_fn (void)
7144 {
7145 expand_or_defer_fn (finish_function (0));
7146
7147 pop_from_top_level ();
7148 }
7149
7150 /* Generate code to handle the destruction of DECL, an object with
7151 static storage duration. */
7152
7153 tree
7154 register_dtor_fn (tree decl)
7155 {
7156 tree cleanup;
7157 tree addr;
7158 tree compound_stmt;
7159 tree fcall;
7160 tree type;
7161 bool ob_parm, dso_parm, use_dtor;
7162 tree arg0, arg1, arg2;
7163 tree atex_node;
7164
7165 type = TREE_TYPE (decl);
7166 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
7167 return void_node;
7168
7169 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
7170 "__aeabi_atexit"), and DECL is a class object, we can just pass the
7171 destructor to "__cxa_atexit"; we don't have to build a temporary
7172 function to do the cleanup. */
7173 dso_parm = (flag_use_cxa_atexit
7174 && !targetm.cxx.use_atexit_for_cxa_atexit ());
7175 ob_parm = (CP_DECL_THREAD_LOCAL_P (decl) || dso_parm);
7176 use_dtor = ob_parm && CLASS_TYPE_P (type);
7177 if (use_dtor)
7178 {
7179 int idx;
7180
7181 /* Find the destructor. */
7182 idx = lookup_fnfields_1 (type, complete_dtor_identifier);
7183 gcc_assert (idx >= 0);
7184 cleanup = (*CLASSTYPE_METHOD_VEC (type))[idx];
7185 /* Make sure it is accessible. */
7186 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
7187 tf_warning_or_error);
7188 }
7189 else
7190 {
7191 /* Call build_cleanup before we enter the anonymous function so
7192 that any access checks will be done relative to the current
7193 scope, rather than the scope of the anonymous function. */
7194 build_cleanup (decl);
7195
7196 /* Now start the function. */
7197 cleanup = start_cleanup_fn ();
7198
7199 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
7200 to the original function, rather than the anonymous one. That
7201 will make the back end think that nested functions are in use,
7202 which causes confusion. */
7203 push_deferring_access_checks (dk_no_check);
7204 fcall = build_cleanup (decl);
7205 pop_deferring_access_checks ();
7206
7207 /* Create the body of the anonymous function. */
7208 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
7209 finish_expr_stmt (fcall);
7210 finish_compound_stmt (compound_stmt);
7211 end_cleanup_fn ();
7212 }
7213
7214 /* Call atexit with the cleanup function. */
7215 mark_used (cleanup);
7216 cleanup = build_address (cleanup);
7217
7218 if (CP_DECL_THREAD_LOCAL_P (decl))
7219 atex_node = get_thread_atexit_node ();
7220 else
7221 atex_node = get_atexit_node ();
7222
7223 if (use_dtor)
7224 {
7225 /* We must convert CLEANUP to the type that "__cxa_atexit"
7226 expects. */
7227 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
7228 /* "__cxa_atexit" will pass the address of DECL to the
7229 cleanup function. */
7230 mark_used (decl);
7231 addr = build_address (decl);
7232 /* The declared type of the parameter to "__cxa_atexit" is
7233 "void *". For plain "T*", we could just let the
7234 machinery in cp_build_function_call convert it -- but if the
7235 type is "cv-qualified T *", then we need to convert it
7236 before passing it in, to avoid spurious errors. */
7237 addr = build_nop (ptr_type_node, addr);
7238 }
7239 else
7240 /* Since the cleanup functions we build ignore the address
7241 they're given, there's no reason to pass the actual address
7242 in, and, in general, it's cheaper to pass NULL than any
7243 other value. */
7244 addr = null_pointer_node;
7245
7246 if (dso_parm)
7247 arg2 = cp_build_addr_expr (get_dso_handle_node (),
7248 tf_warning_or_error);
7249 else if (ob_parm)
7250 /* Just pass NULL to the dso handle parm if we don't actually
7251 have a DSO handle on this target. */
7252 arg2 = null_pointer_node;
7253 else
7254 arg2 = NULL_TREE;
7255
7256 if (ob_parm)
7257 {
7258 if (!CP_DECL_THREAD_LOCAL_P (decl)
7259 && targetm.cxx.use_aeabi_atexit ())
7260 {
7261 arg1 = cleanup;
7262 arg0 = addr;
7263 }
7264 else
7265 {
7266 arg1 = addr;
7267 arg0 = cleanup;
7268 }
7269 }
7270 else
7271 {
7272 arg0 = cleanup;
7273 arg1 = NULL_TREE;
7274 }
7275 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
7276 arg0, arg1, arg2, NULL_TREE);
7277 }
7278
7279 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
7280 is its initializer. Generate code to handle the construction
7281 and destruction of DECL. */
7282
7283 static void
7284 expand_static_init (tree decl, tree init)
7285 {
7286 gcc_assert (VAR_P (decl));
7287 gcc_assert (TREE_STATIC (decl));
7288
7289 /* Some variables require no dynamic initialization. */
7290 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
7291 {
7292 /* Make sure the destructor is callable. */
7293 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
7294 if (!init)
7295 return;
7296 }
7297
7298 if (CP_DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
7299 && !DECL_FUNCTION_SCOPE_P (decl))
7300 {
7301 if (init)
7302 error ("non-local variable %qD declared %<__thread%> "
7303 "needs dynamic initialization", decl);
7304 else
7305 error ("non-local variable %qD declared %<__thread%> "
7306 "has a non-trivial destructor", decl);
7307 static bool informed;
7308 if (!informed)
7309 {
7310 inform (DECL_SOURCE_LOCATION (decl),
7311 "C++11 %<thread_local%> allows dynamic initialization "
7312 "and destruction");
7313 informed = true;
7314 }
7315 return;
7316 }
7317
7318 if (DECL_FUNCTION_SCOPE_P (decl))
7319 {
7320 /* Emit code to perform this initialization but once. */
7321 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
7322 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
7323 tree guard, guard_addr;
7324 tree flag, begin;
7325 /* We don't need thread-safety code for thread-local vars. */
7326 bool thread_guard = (flag_threadsafe_statics
7327 && !CP_DECL_THREAD_LOCAL_P (decl));
7328
7329 /* Emit code to perform this initialization but once. This code
7330 looks like:
7331
7332 static <type> guard;
7333 if (!__atomic_load (guard.first_byte)) {
7334 if (__cxa_guard_acquire (&guard)) {
7335 bool flag = false;
7336 try {
7337 // Do initialization.
7338 flag = true; __cxa_guard_release (&guard);
7339 // Register variable for destruction at end of program.
7340 } catch {
7341 if (!flag) __cxa_guard_abort (&guard);
7342 }
7343 }
7344
7345 Note that the `flag' variable is only set to 1 *after* the
7346 initialization is complete. This ensures that an exception,
7347 thrown during the construction, will cause the variable to
7348 reinitialized when we pass through this code again, as per:
7349
7350 [stmt.dcl]
7351
7352 If the initialization exits by throwing an exception, the
7353 initialization is not complete, so it will be tried again
7354 the next time control enters the declaration.
7355
7356 This process should be thread-safe, too; multiple threads
7357 should not be able to initialize the variable more than
7358 once. */
7359
7360 /* Create the guard variable. */
7361 guard = get_guard (decl);
7362
7363 /* Begin the conditional initialization. */
7364 if_stmt = begin_if_stmt ();
7365
7366 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
7367 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7368
7369 if (thread_guard)
7370 {
7371 tree vfntype = NULL_TREE;
7372 tree acquire_name, release_name, abort_name;
7373 tree acquire_fn, release_fn, abort_fn;
7374 guard_addr = build_address (guard);
7375
7376 acquire_name = get_identifier ("__cxa_guard_acquire");
7377 release_name = get_identifier ("__cxa_guard_release");
7378 abort_name = get_identifier ("__cxa_guard_abort");
7379 acquire_fn = identifier_global_value (acquire_name);
7380 release_fn = identifier_global_value (release_name);
7381 abort_fn = identifier_global_value (abort_name);
7382 if (!acquire_fn)
7383 acquire_fn = push_library_fn
7384 (acquire_name, build_function_type_list (integer_type_node,
7385 TREE_TYPE (guard_addr),
7386 NULL_TREE),
7387 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
7388 if (!release_fn || !abort_fn)
7389 vfntype = build_function_type_list (void_type_node,
7390 TREE_TYPE (guard_addr),
7391 NULL_TREE);
7392 if (!release_fn)
7393 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
7394 ECF_NOTHROW | ECF_LEAF);
7395 if (!abort_fn)
7396 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
7397 ECF_NOTHROW | ECF_LEAF);
7398
7399 inner_if_stmt = begin_if_stmt ();
7400 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
7401 inner_if_stmt);
7402
7403 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7404 begin = get_target_expr (boolean_false_node);
7405 flag = TARGET_EXPR_SLOT (begin);
7406
7407 TARGET_EXPR_CLEANUP (begin)
7408 = build3 (COND_EXPR, void_type_node, flag,
7409 void_node,
7410 build_call_n (abort_fn, 1, guard_addr));
7411 CLEANUP_EH_ONLY (begin) = 1;
7412
7413 /* Do the initialization itself. */
7414 init = add_stmt_to_compound (begin, init);
7415 init = add_stmt_to_compound
7416 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
7417 init = add_stmt_to_compound
7418 (init, build_call_n (release_fn, 1, guard_addr));
7419 }
7420 else
7421 init = add_stmt_to_compound (init, set_guard (guard));
7422
7423 /* Use atexit to register a function for destroying this static
7424 variable. */
7425 init = add_stmt_to_compound (init, register_dtor_fn (decl));
7426
7427 finish_expr_stmt (init);
7428
7429 if (thread_guard)
7430 {
7431 finish_compound_stmt (inner_then_clause);
7432 finish_then_clause (inner_if_stmt);
7433 finish_if_stmt (inner_if_stmt);
7434 }
7435
7436 finish_compound_stmt (then_clause);
7437 finish_then_clause (if_stmt);
7438 finish_if_stmt (if_stmt);
7439 }
7440 else if (CP_DECL_THREAD_LOCAL_P (decl))
7441 tls_aggregates = tree_cons (init, decl, tls_aggregates);
7442 else
7443 static_aggregates = tree_cons (init, decl, static_aggregates);
7444 }
7445
7446 \f
7447 /* Make TYPE a complete type based on INITIAL_VALUE.
7448 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
7449 2 if there was no information (in which case assume 0 if DO_DEFAULT),
7450 3 if the initializer list is empty (in pedantic mode). */
7451
7452 int
7453 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
7454 {
7455 int failure;
7456 tree type, elt_type;
7457
7458 /* Don't get confused by a CONSTRUCTOR for some other type. */
7459 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
7460 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value))
7461 return 1;
7462
7463 if (initial_value)
7464 {
7465 unsigned HOST_WIDE_INT i;
7466 tree value;
7467
7468 /* An array of character type can be initialized from a
7469 brace-enclosed string constant.
7470
7471 FIXME: this code is duplicated from reshape_init. Probably
7472 we should just call reshape_init here? */
7473 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
7474 && TREE_CODE (initial_value) == CONSTRUCTOR
7475 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
7476 {
7477 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
7478 tree value = (*v)[0].value;
7479
7480 if (TREE_CODE (value) == STRING_CST
7481 && v->length () == 1)
7482 initial_value = value;
7483 }
7484
7485 /* If any of the elements are parameter packs, we can't actually
7486 complete this type now because the array size is dependent. */
7487 if (TREE_CODE (initial_value) == CONSTRUCTOR)
7488 {
7489 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
7490 i, value)
7491 {
7492 if (PACK_EXPANSION_P (value))
7493 return 0;
7494 }
7495 }
7496 }
7497
7498 failure = complete_array_type (ptype, initial_value, do_default);
7499
7500 /* We can create the array before the element type is complete, which
7501 means that we didn't have these two bits set in the original type
7502 either. In completing the type, we are expected to propagate these
7503 bits. See also complete_type which does the same thing for arrays
7504 of fixed size. */
7505 type = *ptype;
7506 if (TYPE_DOMAIN (type))
7507 {
7508 elt_type = TREE_TYPE (type);
7509 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
7510 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
7511 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
7512 }
7513
7514 return failure;
7515 }
7516
7517 /* As above, but either give an error or reject zero-size arrays, depending
7518 on COMPLAIN. */
7519
7520 int
7521 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
7522 bool do_default, tsubst_flags_t complain)
7523 {
7524 int failure;
7525 bool sfinae = !(complain & tf_error);
7526 /* In SFINAE context we can't be lenient about zero-size arrays. */
7527 if (sfinae)
7528 ++pedantic;
7529 failure = cp_complete_array_type (ptype, initial_value, do_default);
7530 if (sfinae)
7531 --pedantic;
7532 if (failure)
7533 {
7534 if (sfinae)
7535 /* Not an error. */;
7536 else if (failure == 1)
7537 error ("initializer fails to determine size of %qT", *ptype);
7538 else if (failure == 2)
7539 {
7540 if (do_default)
7541 error ("array size missing in %qT", *ptype);
7542 }
7543 else if (failure == 3)
7544 error ("zero-size array %qT", *ptype);
7545 *ptype = error_mark_node;
7546 }
7547 return failure;
7548 }
7549 \f
7550 /* Return zero if something is declared to be a member of type
7551 CTYPE when in the context of CUR_TYPE. STRING is the error
7552 message to print in that case. Otherwise, quietly return 1. */
7553
7554 static int
7555 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
7556 {
7557 if (ctype && ctype != cur_type)
7558 {
7559 if (flags == DTOR_FLAG)
7560 error ("destructor for alien class %qT cannot be a member", ctype);
7561 else
7562 error ("constructor for alien class %qT cannot be a member", ctype);
7563 return 0;
7564 }
7565 return 1;
7566 }
7567 \f
7568 /* Subroutine of `grokdeclarator'. */
7569
7570 /* Generate errors possibly applicable for a given set of specifiers.
7571 This is for ARM $7.1.2. */
7572
7573 static void
7574 bad_specifiers (tree object,
7575 enum bad_spec_place type,
7576 int virtualp,
7577 int quals,
7578 int inlinep,
7579 int friendp,
7580 int raises)
7581 {
7582 switch (type)
7583 {
7584 case BSP_VAR:
7585 if (virtualp)
7586 error ("%qD declared as a %<virtual%> variable", object);
7587 if (inlinep)
7588 error ("%qD declared as an %<inline%> variable", object);
7589 if (quals)
7590 error ("%<const%> and %<volatile%> function specifiers on "
7591 "%qD invalid in variable declaration", object);
7592 break;
7593 case BSP_PARM:
7594 if (virtualp)
7595 error ("%qD declared as a %<virtual%> parameter", object);
7596 if (inlinep)
7597 error ("%qD declared as an %<inline%> parameter", object);
7598 if (quals)
7599 error ("%<const%> and %<volatile%> function specifiers on "
7600 "%qD invalid in parameter declaration", object);
7601 break;
7602 case BSP_TYPE:
7603 if (virtualp)
7604 error ("%qD declared as a %<virtual%> type", object);
7605 if (inlinep)
7606 error ("%qD declared as an %<inline%> type", object);
7607 if (quals)
7608 error ("%<const%> and %<volatile%> function specifiers on "
7609 "%qD invalid in type declaration", object);
7610 break;
7611 case BSP_FIELD:
7612 if (virtualp)
7613 error ("%qD declared as a %<virtual%> field", object);
7614 if (inlinep)
7615 error ("%qD declared as an %<inline%> field", object);
7616 if (quals)
7617 error ("%<const%> and %<volatile%> function specifiers on "
7618 "%qD invalid in field declaration", object);
7619 break;
7620 default:
7621 gcc_unreachable();
7622 }
7623 if (friendp)
7624 error ("%q+D declared as a friend", object);
7625 if (raises
7626 && (TREE_CODE (object) == TYPE_DECL
7627 || (!TYPE_PTRFN_P (TREE_TYPE (object))
7628 && !TYPE_REFFN_P (TREE_TYPE (object))
7629 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
7630 error ("%q+D declared with an exception specification", object);
7631 }
7632
7633 /* DECL is a member function or static data member and is presently
7634 being defined. Check that the definition is taking place in a
7635 valid namespace. */
7636
7637 static void
7638 check_class_member_definition_namespace (tree decl)
7639 {
7640 /* These checks only apply to member functions and static data
7641 members. */
7642 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
7643 /* We check for problems with specializations in pt.c in
7644 check_specialization_namespace, where we can issue better
7645 diagnostics. */
7646 if (processing_specialization)
7647 return;
7648 /* There are no restrictions on the placement of
7649 explicit instantiations. */
7650 if (processing_explicit_instantiation)
7651 return;
7652 /* [class.mfct]
7653
7654 A member function definition that appears outside of the
7655 class definition shall appear in a namespace scope enclosing
7656 the class definition.
7657
7658 [class.static.data]
7659
7660 The definition for a static data member shall appear in a
7661 namespace scope enclosing the member's class definition. */
7662 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
7663 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
7664 decl, DECL_CONTEXT (decl));
7665 }
7666
7667 /* Build a PARM_DECL for the "this" parameter. TYPE is the
7668 METHOD_TYPE for a non-static member function; QUALS are the
7669 cv-qualifiers that apply to the function. */
7670
7671 tree
7672 build_this_parm (tree type, cp_cv_quals quals)
7673 {
7674 tree this_type;
7675 tree qual_type;
7676 tree parm;
7677 cp_cv_quals this_quals;
7678
7679 if (CLASS_TYPE_P (type))
7680 {
7681 this_type
7682 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
7683 this_type = build_pointer_type (this_type);
7684 }
7685 else
7686 this_type = type_of_this_parm (type);
7687 /* The `this' parameter is implicitly `const'; it cannot be
7688 assigned to. */
7689 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
7690 qual_type = cp_build_qualified_type (this_type, this_quals);
7691 parm = build_artificial_parm (this_identifier, qual_type);
7692 cp_apply_type_quals_to_decl (this_quals, parm);
7693 return parm;
7694 }
7695
7696 /* DECL is a static member function. Complain if it was declared
7697 with function-cv-quals. */
7698
7699 static void
7700 check_static_quals (tree decl, cp_cv_quals quals)
7701 {
7702 if (quals != TYPE_UNQUALIFIED)
7703 error ("static member function %q#D declared with type qualifiers",
7704 decl);
7705 }
7706
7707 // Check that FN takes no arguments and returns bool.
7708 static void
7709 check_concept_fn (tree fn)
7710 {
7711 // A constraint is nullary.
7712 if (DECL_ARGUMENTS (fn))
7713 error ("concept %q#D declared with function parameters", fn);
7714
7715 // The declared return type of the concept shall be bool, and
7716 // it shall not be deduced from it definition.
7717 tree type = TREE_TYPE (TREE_TYPE (fn));
7718 if (is_auto (type))
7719 error ("concept %q#D declared with a deduced return type", fn);
7720 else if (type != boolean_type_node)
7721 error ("concept %q#D with non-%<bool%> return type %qT", fn, type);
7722 }
7723
7724 /* Helper function. Replace the temporary this parameter injected
7725 during cp_finish_omp_declare_simd with the real this parameter. */
7726
7727 static tree
7728 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
7729 {
7730 tree this_parm = (tree) data;
7731 if (TREE_CODE (*tp) == PARM_DECL
7732 && DECL_NAME (*tp) == this_identifier
7733 && *tp != this_parm)
7734 *tp = this_parm;
7735 else if (TYPE_P (*tp))
7736 *walk_subtrees = 0;
7737 return NULL_TREE;
7738 }
7739
7740 /* CTYPE is class type, or null if non-class.
7741 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
7742 or METHOD_TYPE.
7743 DECLARATOR is the function's name.
7744 PARMS is a chain of PARM_DECLs for the function.
7745 VIRTUALP is truthvalue of whether the function is virtual or not.
7746 FLAGS are to be passed through to `grokclassfn'.
7747 QUALS are qualifiers indicating whether the function is `const'
7748 or `volatile'.
7749 RAISES is a list of exceptions that this function can raise.
7750 CHECK is 1 if we must find this method in CTYPE, 0 if we should
7751 not look, and -1 if we should not call `grokclassfn' at all.
7752
7753 SFK is the kind of special function (if any) for the new function.
7754
7755 Returns `NULL_TREE' if something goes wrong, after issuing
7756 applicable error messages. */
7757
7758 static tree
7759 grokfndecl (tree ctype,
7760 tree type,
7761 tree declarator,
7762 tree parms,
7763 tree orig_declarator,
7764 tree decl_reqs,
7765 int virtualp,
7766 enum overload_flags flags,
7767 cp_cv_quals quals,
7768 cp_ref_qualifier rqual,
7769 tree raises,
7770 int check,
7771 int friendp,
7772 int publicp,
7773 int inlinep,
7774 bool deletedp,
7775 special_function_kind sfk,
7776 bool funcdef_flag,
7777 int template_count,
7778 tree in_namespace,
7779 tree* attrlist,
7780 location_t location)
7781 {
7782 tree decl;
7783 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
7784 tree t;
7785
7786 // Was the concept specifier present?
7787 bool concept_p = inlinep & 4;
7788
7789 // Concept declarations must have a corresponding definition.
7790 if (concept_p && !funcdef_flag)
7791 {
7792 error ("concept %qD has no definition", declarator);
7793 return NULL_TREE;
7794 }
7795
7796 if (rqual)
7797 type = build_ref_qualified_type (type, rqual);
7798 if (raises)
7799 type = build_exception_variant (type, raises);
7800
7801 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
7802
7803 /* Set the constraints on the declaration. */
7804 if (flag_concepts)
7805 {
7806 tree tmpl_reqs = NULL_TREE;
7807 if (processing_template_decl > template_class_depth (ctype))
7808 tmpl_reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
7809
7810 /* Adjust the required expression into a constraint. */
7811 if (decl_reqs)
7812 decl_reqs = make_predicate_constraint (decl_reqs);
7813
7814 tree ci = build_constraints (tmpl_reqs, decl_reqs);
7815 set_constraints (decl, ci);
7816 }
7817
7818 /* If we have an explicit location, use it, otherwise use whatever
7819 build_lang_decl used (probably input_location). */
7820 if (location != UNKNOWN_LOCATION)
7821 DECL_SOURCE_LOCATION (decl) = location;
7822
7823 if (TREE_CODE (type) == METHOD_TYPE)
7824 {
7825 tree parm;
7826 parm = build_this_parm (type, quals);
7827 DECL_CHAIN (parm) = parms;
7828 parms = parm;
7829 }
7830 DECL_ARGUMENTS (decl) = parms;
7831 for (t = parms; t; t = DECL_CHAIN (t))
7832 DECL_CONTEXT (t) = decl;
7833 /* Propagate volatile out from type to decl. */
7834 if (TYPE_VOLATILE (type))
7835 TREE_THIS_VOLATILE (decl) = 1;
7836
7837 /* Setup decl according to sfk. */
7838 switch (sfk)
7839 {
7840 case sfk_constructor:
7841 case sfk_copy_constructor:
7842 case sfk_move_constructor:
7843 DECL_CONSTRUCTOR_P (decl) = 1;
7844 break;
7845 case sfk_destructor:
7846 DECL_DESTRUCTOR_P (decl) = 1;
7847 break;
7848 default:
7849 break;
7850 }
7851
7852 /* If pointers to member functions use the least significant bit to
7853 indicate whether a function is virtual, ensure a pointer
7854 to this function will have that bit clear. */
7855 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
7856 && TREE_CODE (type) == METHOD_TYPE
7857 && DECL_ALIGN (decl) < 2 * BITS_PER_UNIT)
7858 DECL_ALIGN (decl) = 2 * BITS_PER_UNIT;
7859
7860 if (friendp
7861 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
7862 {
7863 if (funcdef_flag)
7864 error
7865 ("defining explicit specialization %qD in friend declaration",
7866 orig_declarator);
7867 else
7868 {
7869 tree fns = TREE_OPERAND (orig_declarator, 0);
7870 tree args = TREE_OPERAND (orig_declarator, 1);
7871
7872 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
7873 {
7874 /* Something like `template <class T> friend void f<T>()'. */
7875 error ("invalid use of template-id %qD in declaration "
7876 "of primary template",
7877 orig_declarator);
7878 return NULL_TREE;
7879 }
7880
7881
7882 /* A friend declaration of the form friend void f<>(). Record
7883 the information in the TEMPLATE_ID_EXPR. */
7884 SET_DECL_IMPLICIT_INSTANTIATION (decl);
7885
7886 gcc_assert (identifier_p (fns) || TREE_CODE (fns) == OVERLOAD);
7887 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
7888
7889 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
7890 if (TREE_PURPOSE (t)
7891 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
7892 {
7893 error ("default arguments are not allowed in declaration "
7894 "of friend template specialization %qD",
7895 decl);
7896 return NULL_TREE;
7897 }
7898
7899 if (inlinep & 1)
7900 {
7901 error ("%<inline%> is not allowed in declaration of friend "
7902 "template specialization %qD",
7903 decl);
7904 return NULL_TREE;
7905 }
7906 }
7907 }
7908
7909 /* If this decl has namespace scope, set that up. */
7910 if (in_namespace)
7911 set_decl_namespace (decl, in_namespace, friendp);
7912 else if (!ctype)
7913 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
7914
7915 /* `main' and builtins have implicit 'C' linkage. */
7916 if ((MAIN_NAME_P (declarator)
7917 || (IDENTIFIER_LENGTH (declarator) > 10
7918 && IDENTIFIER_POINTER (declarator)[0] == '_'
7919 && IDENTIFIER_POINTER (declarator)[1] == '_'
7920 && strncmp (IDENTIFIER_POINTER (declarator)+2, "builtin_", 8) == 0)
7921 || (targetcm.cxx_implicit_extern_c
7922 && targetcm.cxx_implicit_extern_c(IDENTIFIER_POINTER (declarator))))
7923 && current_lang_name == lang_name_cplusplus
7924 && ctype == NULL_TREE
7925 && DECL_FILE_SCOPE_P (decl))
7926 SET_DECL_LANGUAGE (decl, lang_c);
7927
7928 /* Should probably propagate const out from type to decl I bet (mrs). */
7929 if (staticp)
7930 {
7931 DECL_STATIC_FUNCTION_P (decl) = 1;
7932 DECL_CONTEXT (decl) = ctype;
7933 }
7934
7935 if (deletedp)
7936 DECL_DELETED_FN (decl) = 1;
7937
7938 if (ctype)
7939 {
7940 DECL_CONTEXT (decl) = ctype;
7941 if (funcdef_flag)
7942 check_class_member_definition_namespace (decl);
7943 }
7944
7945 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
7946 {
7947 if (PROCESSING_REAL_TEMPLATE_DECL_P())
7948 error ("cannot declare %<::main%> to be a template");
7949 if (inlinep & 1)
7950 error ("cannot declare %<::main%> to be inline");
7951 if (inlinep & 2)
7952 error ("cannot declare %<::main%> to be constexpr");
7953 if (!publicp)
7954 error ("cannot declare %<::main%> to be static");
7955 inlinep = 0;
7956 publicp = 1;
7957 }
7958
7959 /* Members of anonymous types and local classes have no linkage; make
7960 them internal. If a typedef is made later, this will be changed. */
7961 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
7962 || decl_function_context (TYPE_MAIN_DECL (ctype))))
7963 publicp = 0;
7964
7965 if (publicp && cxx_dialect == cxx98)
7966 {
7967 /* [basic.link]: A name with no linkage (notably, the name of a class
7968 or enumeration declared in a local scope) shall not be used to
7969 declare an entity with linkage.
7970
7971 DR 757 relaxes this restriction for C++0x. */
7972 no_linkage_error (decl);
7973 }
7974
7975 TREE_PUBLIC (decl) = publicp;
7976 if (! publicp)
7977 {
7978 DECL_INTERFACE_KNOWN (decl) = 1;
7979 DECL_NOT_REALLY_EXTERN (decl) = 1;
7980 }
7981
7982 /* If the declaration was declared inline, mark it as such. */
7983 if (inlinep)
7984 {
7985 DECL_DECLARED_INLINE_P (decl) = 1;
7986 if (publicp)
7987 DECL_COMDAT (decl) = 1;
7988 }
7989 if (inlinep & 2)
7990 DECL_DECLARED_CONSTEXPR_P (decl) = true;
7991
7992 // If the concept declaration specifier was found, check
7993 // that the declaration satisfies the necessary requirements.
7994 if (concept_p)
7995 {
7996 DECL_DECLARED_CONCEPT_P (decl) = true;
7997 check_concept_fn (decl);
7998 }
7999
8000 DECL_EXTERNAL (decl) = 1;
8001 if (TREE_CODE (type) == FUNCTION_TYPE)
8002 {
8003 if (quals)
8004 {
8005 error (ctype
8006 ? G_("static member function %qD cannot have cv-qualifier")
8007 : G_("non-member function %qD cannot have cv-qualifier"),
8008 decl);
8009 quals = TYPE_UNQUALIFIED;
8010 }
8011
8012 if (rqual)
8013 {
8014 error (ctype
8015 ? G_("static member function %qD cannot have ref-qualifier")
8016 : G_("non-member function %qD cannot have ref-qualifier"),
8017 decl);
8018 rqual = REF_QUAL_NONE;
8019 }
8020 }
8021
8022 if (IDENTIFIER_OPNAME_P (DECL_NAME (decl))
8023 && !grok_op_properties (decl, /*complain=*/true))
8024 return NULL_TREE;
8025 else if (UDLIT_OPER_P (DECL_NAME (decl)))
8026 {
8027 bool long_long_unsigned_p;
8028 bool long_double_p;
8029 const char *suffix = NULL;
8030 /* [over.literal]/6: Literal operators shall not have C linkage. */
8031 if (DECL_LANGUAGE (decl) == lang_c)
8032 {
8033 error ("literal operator with C linkage");
8034 return NULL_TREE;
8035 }
8036
8037 if (DECL_NAMESPACE_SCOPE_P (decl))
8038 {
8039 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
8040 &long_double_p))
8041 {
8042 error ("%qD has invalid argument list", decl);
8043 return NULL_TREE;
8044 }
8045
8046 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
8047 if (long_long_unsigned_p)
8048 {
8049 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
8050 warning (0, "integer suffix %<%s%>"
8051 " shadowed by implementation", suffix);
8052 }
8053 else if (long_double_p)
8054 {
8055 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
8056 warning (0, "floating point suffix %<%s%>"
8057 " shadowed by implementation", suffix);
8058 }
8059 }
8060 else
8061 {
8062 error ("%qD must be a non-member function", decl);
8063 return NULL_TREE;
8064 }
8065 }
8066
8067 if (funcdef_flag)
8068 /* Make the init_value nonzero so pushdecl knows this is not
8069 tentative. error_mark_node is replaced later with the BLOCK. */
8070 DECL_INITIAL (decl) = error_mark_node;
8071
8072 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
8073 TREE_NOTHROW (decl) = 1;
8074
8075 if (flag_openmp || flag_openmp_simd || flag_cilkplus)
8076 {
8077 /* Adjust "omp declare simd" attributes. */
8078 tree ods = lookup_attribute ("omp declare simd", *attrlist);
8079 if (ods)
8080 {
8081 tree attr;
8082 for (attr = ods; attr;
8083 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
8084 {
8085 if (TREE_CODE (type) == METHOD_TYPE)
8086 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
8087 DECL_ARGUMENTS (decl), NULL);
8088 if (TREE_VALUE (attr) != NULL_TREE)
8089 {
8090 tree cl = TREE_VALUE (TREE_VALUE (attr));
8091 cl = c_omp_declare_simd_clauses_to_numbers
8092 (DECL_ARGUMENTS (decl), cl);
8093 if (cl)
8094 TREE_VALUE (TREE_VALUE (attr)) = cl;
8095 else
8096 TREE_VALUE (attr) = NULL_TREE;
8097 }
8098 }
8099 }
8100 }
8101
8102 /* Caller will do the rest of this. */
8103 if (check < 0)
8104 return decl;
8105
8106 if (ctype != NULL_TREE)
8107 grokclassfn (ctype, decl, flags);
8108
8109 /* 12.4/3 */
8110 if (cxx_dialect >= cxx11
8111 && DECL_DESTRUCTOR_P (decl)
8112 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
8113 && !processing_template_decl)
8114 deduce_noexcept_on_destructor (decl);
8115
8116 decl = check_explicit_specialization (orig_declarator, decl,
8117 template_count,
8118 2 * funcdef_flag +
8119 4 * (friendp != 0) +
8120 8 * concept_p);
8121 if (decl == error_mark_node)
8122 return NULL_TREE;
8123
8124 if (DECL_STATIC_FUNCTION_P (decl))
8125 check_static_quals (decl, quals);
8126
8127 if (attrlist)
8128 {
8129 cplus_decl_attributes (&decl, *attrlist, 0);
8130 *attrlist = NULL_TREE;
8131 }
8132
8133 /* Check main's type after attributes have been applied. */
8134 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8135 {
8136 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
8137 integer_type_node))
8138 {
8139 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
8140 tree newtype;
8141 error ("%<::main%> must return %<int%>");
8142 newtype = build_function_type (integer_type_node, oldtypeargs);
8143 TREE_TYPE (decl) = newtype;
8144 }
8145 if (warn_main)
8146 check_main_parameter_types (decl);
8147 }
8148
8149 if (ctype != NULL_TREE
8150 && (! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
8151 && check)
8152 {
8153 tree old_decl = check_classfn (ctype, decl,
8154 (processing_template_decl
8155 > template_class_depth (ctype))
8156 ? current_template_parms
8157 : NULL_TREE);
8158
8159 if (old_decl == error_mark_node)
8160 return NULL_TREE;
8161
8162 if (old_decl)
8163 {
8164 tree ok;
8165 tree pushed_scope;
8166
8167 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
8168 /* Because grokfndecl is always supposed to return a
8169 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
8170 here. We depend on our callers to figure out that its
8171 really a template that's being returned. */
8172 old_decl = DECL_TEMPLATE_RESULT (old_decl);
8173
8174 if (DECL_STATIC_FUNCTION_P (old_decl)
8175 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
8176 {
8177 /* Remove the `this' parm added by grokclassfn. */
8178 revert_static_member_fn (decl);
8179 check_static_quals (decl, quals);
8180 }
8181 if (DECL_ARTIFICIAL (old_decl))
8182 {
8183 error ("definition of implicitly-declared %qD", old_decl);
8184 return NULL_TREE;
8185 }
8186 else if (DECL_DEFAULTED_FN (old_decl))
8187 {
8188 error ("definition of explicitly-defaulted %q+D", decl);
8189 error ("%q+#D explicitly defaulted here", old_decl);
8190 return NULL_TREE;
8191 }
8192
8193 /* Since we've smashed OLD_DECL to its
8194 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
8195 if (TREE_CODE (decl) == TEMPLATE_DECL)
8196 decl = DECL_TEMPLATE_RESULT (decl);
8197
8198 /* Attempt to merge the declarations. This can fail, in
8199 the case of some invalid specialization declarations. */
8200 pushed_scope = push_scope (ctype);
8201 ok = duplicate_decls (decl, old_decl, friendp);
8202 if (pushed_scope)
8203 pop_scope (pushed_scope);
8204 if (!ok)
8205 {
8206 error ("no %q#D member function declared in class %qT",
8207 decl, ctype);
8208 return NULL_TREE;
8209 }
8210 if (ok == error_mark_node)
8211 return NULL_TREE;
8212 return old_decl;
8213 }
8214 }
8215
8216 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
8217 return NULL_TREE;
8218
8219 if (ctype == NULL_TREE || check)
8220 return decl;
8221
8222 if (virtualp)
8223 DECL_VIRTUAL_P (decl) = 1;
8224
8225 return decl;
8226 }
8227
8228 /* decl is a FUNCTION_DECL.
8229 specifiers are the parsed virt-specifiers.
8230
8231 Set flags to reflect the virt-specifiers.
8232
8233 Returns decl. */
8234
8235 static tree
8236 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
8237 {
8238 if (decl == NULL_TREE)
8239 return decl;
8240 if (specifiers & VIRT_SPEC_OVERRIDE)
8241 DECL_OVERRIDE_P (decl) = 1;
8242 if (specifiers & VIRT_SPEC_FINAL)
8243 DECL_FINAL_P (decl) = 1;
8244 return decl;
8245 }
8246
8247 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
8248 the linkage that DECL will receive in the object file. */
8249
8250 static void
8251 set_linkage_for_static_data_member (tree decl)
8252 {
8253 /* A static data member always has static storage duration and
8254 external linkage. Note that static data members are forbidden in
8255 local classes -- the only situation in which a class has
8256 non-external linkage. */
8257 TREE_PUBLIC (decl) = 1;
8258 TREE_STATIC (decl) = 1;
8259 /* For non-template classes, static data members are always put
8260 out in exactly those files where they are defined, just as
8261 with ordinary namespace-scope variables. */
8262 if (!processing_template_decl)
8263 DECL_INTERFACE_KNOWN (decl) = 1;
8264 }
8265
8266 /* Create a VAR_DECL named NAME with the indicated TYPE.
8267
8268 If SCOPE is non-NULL, it is the class type or namespace containing
8269 the variable. If SCOPE is NULL, the variable should is created in
8270 the innermost enclosing scope. */
8271
8272 static tree
8273 grokvardecl (tree type,
8274 tree name,
8275 tree orig_declarator,
8276 const cp_decl_specifier_seq *declspecs,
8277 int initialized,
8278 int flags,
8279 int template_count,
8280 tree scope)
8281 {
8282 tree decl;
8283 tree explicit_scope;
8284
8285 gcc_assert (!name || identifier_p (name));
8286
8287 bool constp = flags&1;
8288 bool conceptp = flags&2;
8289
8290 /* Compute the scope in which to place the variable, but remember
8291 whether or not that scope was explicitly specified by the user. */
8292 explicit_scope = scope;
8293 if (!scope)
8294 {
8295 /* An explicit "extern" specifier indicates a namespace-scope
8296 variable. */
8297 if (declspecs->storage_class == sc_extern)
8298 scope = current_decl_namespace ();
8299 else if (!at_function_scope_p ())
8300 scope = current_scope ();
8301 }
8302
8303 if (scope
8304 && (/* If the variable is a namespace-scope variable declared in a
8305 template, we need DECL_LANG_SPECIFIC. */
8306 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
8307 /* Similarly for namespace-scope variables with language linkage
8308 other than C++. */
8309 || (TREE_CODE (scope) == NAMESPACE_DECL
8310 && current_lang_name != lang_name_cplusplus)
8311 /* Similarly for static data members. */
8312 || TYPE_P (scope)
8313 /* Similarly for explicit specializations. */
8314 || (orig_declarator
8315 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
8316 decl = build_lang_decl (VAR_DECL, name, type);
8317 else
8318 decl = build_decl (input_location, VAR_DECL, name, type);
8319
8320 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
8321 set_decl_namespace (decl, explicit_scope, 0);
8322 else
8323 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
8324
8325 if (declspecs->storage_class == sc_extern)
8326 {
8327 DECL_THIS_EXTERN (decl) = 1;
8328 DECL_EXTERNAL (decl) = !initialized;
8329 }
8330
8331 if (DECL_CLASS_SCOPE_P (decl))
8332 {
8333 set_linkage_for_static_data_member (decl);
8334 /* This function is only called with out-of-class definitions. */
8335 DECL_EXTERNAL (decl) = 0;
8336 check_class_member_definition_namespace (decl);
8337 }
8338 /* At top level, either `static' or no s.c. makes a definition
8339 (perhaps tentative), and absence of `static' makes it public. */
8340 else if (toplevel_bindings_p ())
8341 {
8342 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
8343 && (DECL_THIS_EXTERN (decl) || ! constp));
8344 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
8345 }
8346 /* Not at top level, only `static' makes a static definition. */
8347 else
8348 {
8349 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
8350 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
8351 }
8352
8353 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
8354 {
8355 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
8356 {
8357 CP_DECL_THREAD_LOCAL_P (decl) = true;
8358 if (!processing_template_decl)
8359 set_decl_tls_model (decl, decl_default_tls_model (decl));
8360 }
8361 if (declspecs->gnu_thread_keyword_p)
8362 SET_DECL_GNU_TLS_P (decl);
8363 }
8364
8365 /* If the type of the decl has no linkage, make sure that we'll
8366 notice that in mark_used. */
8367 if (cxx_dialect > cxx98
8368 && decl_linkage (decl) != lk_none
8369 && DECL_LANG_SPECIFIC (decl) == NULL
8370 && !DECL_EXTERN_C_P (decl)
8371 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
8372 retrofit_lang_decl (decl);
8373
8374 if (TREE_PUBLIC (decl))
8375 {
8376 /* [basic.link]: A name with no linkage (notably, the name of a class
8377 or enumeration declared in a local scope) shall not be used to
8378 declare an entity with linkage.
8379
8380 DR 757 relaxes this restriction for C++0x. */
8381 if (cxx_dialect < cxx11)
8382 no_linkage_error (decl);
8383 }
8384 else
8385 DECL_INTERFACE_KNOWN (decl) = 1;
8386
8387 if (DECL_NAME (decl)
8388 && MAIN_NAME_P (DECL_NAME (decl))
8389 && scope == global_namespace)
8390 error ("cannot declare %<::main%> to be a global variable");
8391
8392 /* Check that the variable can be safely declared as a concept.
8393 Note that this also forbids explicit specializations. */
8394 if (conceptp)
8395 {
8396 if (!processing_template_decl)
8397 {
8398 error ("a non-template variable cannot be %<concept%>");
8399 return NULL_TREE;
8400 }
8401 else
8402 DECL_DECLARED_CONCEPT_P (decl) = true;
8403 if (!same_type_ignoring_top_level_qualifiers_p (type, boolean_type_node))
8404 error_at (declspecs->locations[ds_type_spec],
8405 "concept must have type %<bool%>");
8406 }
8407 else if (flag_concepts
8408 && processing_template_decl > template_class_depth (scope))
8409 {
8410 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
8411 tree ci = build_constraints (reqs, NULL_TREE);
8412 set_constraints (decl, ci);
8413 }
8414
8415 // Handle explicit specializations and instantiations of variable templates.
8416 if (orig_declarator)
8417 decl = check_explicit_specialization (orig_declarator, decl,
8418 template_count, conceptp * 8);
8419
8420 return decl != error_mark_node ? decl : NULL_TREE;
8421 }
8422
8423 /* Create and return a canonical pointer to member function type, for
8424 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
8425
8426 tree
8427 build_ptrmemfunc_type (tree type)
8428 {
8429 tree field, fields;
8430 tree t;
8431
8432 if (type == error_mark_node)
8433 return type;
8434
8435 /* Make sure that we always have the unqualified pointer-to-member
8436 type first. */
8437 if (cp_cv_quals quals = cp_type_quals (type))
8438 {
8439 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
8440 return cp_build_qualified_type (unqual, quals);
8441 }
8442
8443 /* If a canonical type already exists for this type, use it. We use
8444 this method instead of type_hash_canon, because it only does a
8445 simple equality check on the list of field members. */
8446
8447 if ((t = TYPE_GET_PTRMEMFUNC_TYPE (type)))
8448 return t;
8449
8450 t = make_node (RECORD_TYPE);
8451
8452 /* Let the front end know this is a pointer to member function. */
8453 TYPE_PTRMEMFUNC_FLAG (t) = 1;
8454
8455 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
8456 fields = field;
8457
8458 field = build_decl (input_location, FIELD_DECL, delta_identifier,
8459 delta_type_node);
8460 DECL_CHAIN (field) = fields;
8461 fields = field;
8462
8463 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
8464
8465 /* Zap out the name so that the back end will give us the debugging
8466 information for this anonymous RECORD_TYPE. */
8467 TYPE_NAME (t) = NULL_TREE;
8468
8469 /* Cache this pointer-to-member type so that we can find it again
8470 later. */
8471 TYPE_SET_PTRMEMFUNC_TYPE (type, t);
8472
8473 if (TYPE_STRUCTURAL_EQUALITY_P (type))
8474 SET_TYPE_STRUCTURAL_EQUALITY (t);
8475 else if (TYPE_CANONICAL (type) != type)
8476 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
8477
8478 return t;
8479 }
8480
8481 /* Create and return a pointer to data member type. */
8482
8483 tree
8484 build_ptrmem_type (tree class_type, tree member_type)
8485 {
8486 if (TREE_CODE (member_type) == METHOD_TYPE)
8487 {
8488 cp_cv_quals quals = type_memfn_quals (member_type);
8489 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
8490 member_type = build_memfn_type (member_type, class_type, quals, rqual);
8491 return build_ptrmemfunc_type (build_pointer_type (member_type));
8492 }
8493 else
8494 {
8495 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
8496 return build_offset_type (class_type, member_type);
8497 }
8498 }
8499
8500 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
8501 Check to see that the definition is valid. Issue appropriate error
8502 messages. Return 1 if the definition is particularly bad, or 0
8503 otherwise. */
8504
8505 static int
8506 check_static_variable_definition (tree decl, tree type)
8507 {
8508 /* Can't check yet if we don't know the type. */
8509 if (dependent_type_p (type))
8510 return 0;
8511 /* If DECL is declared constexpr, we'll do the appropriate checks
8512 in check_initializer. */
8513 if (DECL_P (decl) && DECL_DECLARED_CONSTEXPR_P (decl))
8514 return 0;
8515 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8516 {
8517 if (!COMPLETE_TYPE_P (type))
8518 error ("in-class initialization of static data member %q#D of "
8519 "incomplete type", decl);
8520 else if (literal_type_p (type))
8521 permerror (input_location,
8522 "%<constexpr%> needed for in-class initialization of "
8523 "static data member %q#D of non-integral type", decl);
8524 else
8525 error ("in-class initialization of static data member %q#D of "
8526 "non-literal type", decl);
8527 return 1;
8528 }
8529
8530 /* Motion 10 at San Diego: If a static const integral data member is
8531 initialized with an integral constant expression, the initializer
8532 may appear either in the declaration (within the class), or in
8533 the definition, but not both. If it appears in the class, the
8534 member is a member constant. The file-scope definition is always
8535 required. */
8536 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
8537 {
8538 error ("invalid in-class initialization of static data member "
8539 "of non-integral type %qT",
8540 type);
8541 return 1;
8542 }
8543 else if (!CP_TYPE_CONST_P (type))
8544 error ("ISO C++ forbids in-class initialization of non-const "
8545 "static member %qD",
8546 decl);
8547 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8548 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids initialization of member constant "
8549 "%qD of non-integral type %qT", decl, type);
8550
8551 return 0;
8552 }
8553
8554 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
8555 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
8556 expressions out into temporary variables so that walk_tree doesn't
8557 step into them (c++/15764). */
8558
8559 static tree
8560 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
8561 {
8562 hash_set<tree> *pset = (hash_set<tree> *)data;
8563 tree expr = *expr_p;
8564 if (TREE_CODE (expr) == SAVE_EXPR)
8565 {
8566 tree op = TREE_OPERAND (expr, 0);
8567 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
8568 if (TREE_SIDE_EFFECTS (op))
8569 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
8570 *walk_subtrees = 0;
8571 }
8572 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
8573 *walk_subtrees = 0;
8574 return NULL;
8575 }
8576
8577 /* Entry point for the above. */
8578
8579 static void
8580 stabilize_vla_size (tree size)
8581 {
8582 hash_set<tree> pset;
8583 /* Break out any function calls into temporary variables. */
8584 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
8585 }
8586
8587 /* Helper function for compute_array_index_type. Look for SIZEOF_EXPR
8588 not inside of SAVE_EXPR and fold them. */
8589
8590 static tree
8591 fold_sizeof_expr_r (tree *expr_p, int *walk_subtrees, void *data)
8592 {
8593 tree expr = *expr_p;
8594 if (TREE_CODE (expr) == SAVE_EXPR || TYPE_P (expr))
8595 *walk_subtrees = 0;
8596 else if (TREE_CODE (expr) == SIZEOF_EXPR)
8597 {
8598 *(bool *)data = true;
8599 if (SIZEOF_EXPR_TYPE_P (expr))
8600 expr = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (expr, 0)),
8601 SIZEOF_EXPR, false);
8602 else if (TYPE_P (TREE_OPERAND (expr, 0)))
8603 expr = cxx_sizeof_or_alignof_type (TREE_OPERAND (expr, 0), SIZEOF_EXPR,
8604 false);
8605 else
8606 expr = cxx_sizeof_or_alignof_expr (TREE_OPERAND (expr, 0), SIZEOF_EXPR,
8607 false);
8608 if (expr == error_mark_node)
8609 expr = size_one_node;
8610 *expr_p = expr;
8611 *walk_subtrees = 0;
8612 }
8613 return NULL;
8614 }
8615
8616 /* Given the SIZE (i.e., number of elements) in an array, compute an
8617 appropriate index type for the array. If non-NULL, NAME is the
8618 name of the thing being declared. */
8619
8620 tree
8621 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
8622 {
8623 tree itype;
8624 tree osize = size;
8625
8626 if (error_operand_p (size))
8627 return error_mark_node;
8628
8629 if (!type_dependent_expression_p (size))
8630 {
8631 tree type = TREE_TYPE (size);
8632
8633 mark_rvalue_use (size);
8634
8635 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
8636 && TREE_SIDE_EFFECTS (size))
8637 /* In C++98, we mark a non-constant array bound with a magic
8638 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
8639 else
8640 {
8641 size = instantiate_non_dependent_expr_sfinae (size, complain);
8642
8643 if (CLASS_TYPE_P (type)
8644 && CLASSTYPE_LITERAL_P (type))
8645 {
8646 size = build_expr_type_conversion (WANT_INT, size, true);
8647 if (!size)
8648 {
8649 if (!(complain & tf_error))
8650 return error_mark_node;
8651 if (name)
8652 error ("size of array %qD has non-integral type %qT",
8653 name, type);
8654 else
8655 error ("size of array has non-integral type %qT", type);
8656 size = integer_one_node;
8657 }
8658 if (size == error_mark_node)
8659 return error_mark_node;
8660 type = TREE_TYPE (size);
8661 }
8662
8663 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8664 size = maybe_constant_value (size);
8665
8666 if (!TREE_CONSTANT (size))
8667 size = osize;
8668 }
8669
8670 if (error_operand_p (size))
8671 return error_mark_node;
8672
8673 /* The array bound must be an integer type. */
8674 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8675 {
8676 if (!(complain & tf_error))
8677 return error_mark_node;
8678 if (name)
8679 error ("size of array %qD has non-integral type %qT", name, type);
8680 else
8681 error ("size of array has non-integral type %qT", type);
8682 size = integer_one_node;
8683 type = TREE_TYPE (size);
8684 }
8685 }
8686
8687 /* A type is dependent if it is...an array type constructed from any
8688 dependent type or whose size is specified by a constant expression
8689 that is value-dependent. */
8690 /* We can only call value_dependent_expression_p on integral constant
8691 expressions; treat non-constant expressions as dependent, too. */
8692 if (processing_template_decl
8693 && (type_dependent_expression_p (size)
8694 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
8695 {
8696 /* We cannot do any checking for a SIZE that isn't known to be
8697 constant. Just build the index type and mark that it requires
8698 structural equality checks. */
8699 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
8700 size, size_one_node));
8701 TYPE_DEPENDENT_P (itype) = 1;
8702 TYPE_DEPENDENT_P_VALID (itype) = 1;
8703 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8704 return itype;
8705 }
8706
8707 /* Normally, the array-bound will be a constant. */
8708 if (TREE_CODE (size) == INTEGER_CST)
8709 {
8710 /* Check to see if the array bound overflowed. Make that an
8711 error, no matter how generous we're being. */
8712 constant_expression_error (size);
8713
8714 /* An array must have a positive number of elements. */
8715 if (tree_int_cst_lt (size, integer_zero_node))
8716 {
8717 if (!(complain & tf_error))
8718 return error_mark_node;
8719 if (name)
8720 error ("size of array %qD is negative", name);
8721 else
8722 error ("size of array is negative");
8723 size = integer_one_node;
8724 }
8725 /* As an extension we allow zero-sized arrays. */
8726 else if (integer_zerop (size))
8727 {
8728 if (!(complain & tf_error))
8729 /* We must fail if performing argument deduction (as
8730 indicated by the state of complain), so that
8731 another substitution can be found. */
8732 return error_mark_node;
8733 else if (in_system_header_at (input_location))
8734 /* Allow them in system headers because glibc uses them. */;
8735 else if (name)
8736 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array %qD", name);
8737 else
8738 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array");
8739 }
8740 }
8741 else if (TREE_CONSTANT (size)
8742 /* We don't allow VLAs at non-function scopes, or during
8743 tentative template substitution. */
8744 || !at_function_scope_p ()
8745 || !(complain & tf_error))
8746 {
8747 if (!(complain & tf_error))
8748 return error_mark_node;
8749 /* `(int) &fn' is not a valid array bound. */
8750 if (name)
8751 error ("size of array %qD is not an integral constant-expression",
8752 name);
8753 else
8754 error ("size of array is not an integral constant-expression");
8755 size = integer_one_node;
8756 }
8757 else if (pedantic && warn_vla != 0)
8758 {
8759 if (name)
8760 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array %qD", name);
8761 else
8762 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array");
8763 }
8764 else if (warn_vla > 0)
8765 {
8766 if (name)
8767 warning (OPT_Wvla,
8768 "variable length array %qD is used", name);
8769 else
8770 warning (OPT_Wvla,
8771 "variable length array is used");
8772 }
8773
8774 if (processing_template_decl && !TREE_CONSTANT (size))
8775 /* A variable sized array. */
8776 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
8777 else
8778 {
8779 HOST_WIDE_INT saved_processing_template_decl;
8780
8781 /* Compute the index of the largest element in the array. It is
8782 one less than the number of elements in the array. We save
8783 and restore PROCESSING_TEMPLATE_DECL so that computations in
8784 cp_build_binary_op will be appropriately folded. */
8785 saved_processing_template_decl = processing_template_decl;
8786 processing_template_decl = 0;
8787 itype = cp_build_binary_op (input_location,
8788 MINUS_EXPR,
8789 cp_convert (ssizetype, size, complain),
8790 cp_convert (ssizetype, integer_one_node,
8791 complain),
8792 complain);
8793 itype = fold (itype);
8794 processing_template_decl = saved_processing_template_decl;
8795
8796 if (!TREE_CONSTANT (itype))
8797 {
8798 /* A variable sized array. */
8799 itype = variable_size (itype);
8800
8801 if (TREE_CODE (itype) != SAVE_EXPR)
8802 {
8803 /* Look for SIZEOF_EXPRs in itype and fold them, otherwise
8804 they might survive till gimplification. */
8805 tree newitype = itype;
8806 bool found = false;
8807 cp_walk_tree_without_duplicates (&newitype,
8808 fold_sizeof_expr_r, &found);
8809 if (found)
8810 itype = variable_size (fold (newitype));
8811 }
8812
8813 stabilize_vla_size (itype);
8814
8815 if (flag_sanitize & SANITIZE_VLA
8816 && do_ubsan_in_current_function ())
8817 {
8818 /* We have to add 1 -- in the ubsan routine we generate
8819 LE_EXPR rather than LT_EXPR. */
8820 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
8821 build_one_cst (TREE_TYPE (itype)));
8822 t = ubsan_instrument_vla (input_location, t);
8823 finish_expr_stmt (t);
8824 }
8825 }
8826 /* Make sure that there was no overflow when creating to a signed
8827 index type. (For example, on a 32-bit machine, an array with
8828 size 2^32 - 1 is too big.) */
8829 else if (TREE_CODE (itype) == INTEGER_CST
8830 && TREE_OVERFLOW (itype))
8831 {
8832 if (!(complain & tf_error))
8833 return error_mark_node;
8834 error ("overflow in array dimension");
8835 TREE_OVERFLOW (itype) = 0;
8836 }
8837 }
8838
8839 /* Create and return the appropriate index type. */
8840 itype = build_index_type (itype);
8841
8842 /* If the index type were dependent, we would have returned early, so
8843 remember that it isn't. */
8844 TYPE_DEPENDENT_P (itype) = 0;
8845 TYPE_DEPENDENT_P_VALID (itype) = 1;
8846 return itype;
8847 }
8848
8849 /* Returns the scope (if any) in which the entity declared by
8850 DECLARATOR will be located. If the entity was declared with an
8851 unqualified name, NULL_TREE is returned. */
8852
8853 tree
8854 get_scope_of_declarator (const cp_declarator *declarator)
8855 {
8856 while (declarator && declarator->kind != cdk_id)
8857 declarator = declarator->declarator;
8858
8859 /* If the declarator-id is a SCOPE_REF, the scope in which the
8860 declaration occurs is the first operand. */
8861 if (declarator
8862 && declarator->u.id.qualifying_scope)
8863 return declarator->u.id.qualifying_scope;
8864
8865 /* Otherwise, the declarator is not a qualified name; the entity will
8866 be declared in the current scope. */
8867 return NULL_TREE;
8868 }
8869
8870 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
8871 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
8872 with this type. */
8873
8874 static tree
8875 create_array_type_for_decl (tree name, tree type, tree size)
8876 {
8877 tree itype = NULL_TREE;
8878
8879 /* If things have already gone awry, bail now. */
8880 if (type == error_mark_node || size == error_mark_node)
8881 return error_mark_node;
8882
8883 /* 8.3.4/1: If the type of the identifier of D contains the auto
8884 type-specifier, the program is ill-formed. */
8885 if (type_uses_auto (type))
8886 {
8887 error ("%qD declared as array of %qT", name, type);
8888 return error_mark_node;
8889 }
8890
8891 /* If there are some types which cannot be array elements,
8892 issue an error-message and return. */
8893 switch (TREE_CODE (type))
8894 {
8895 case VOID_TYPE:
8896 if (name)
8897 error ("declaration of %qD as array of void", name);
8898 else
8899 error ("creating array of void");
8900 return error_mark_node;
8901
8902 case FUNCTION_TYPE:
8903 if (name)
8904 error ("declaration of %qD as array of functions", name);
8905 else
8906 error ("creating array of functions");
8907 return error_mark_node;
8908
8909 case REFERENCE_TYPE:
8910 if (name)
8911 error ("declaration of %qD as array of references", name);
8912 else
8913 error ("creating array of references");
8914 return error_mark_node;
8915
8916 case METHOD_TYPE:
8917 if (name)
8918 error ("declaration of %qD as array of function members", name);
8919 else
8920 error ("creating array of function members");
8921 return error_mark_node;
8922
8923 default:
8924 break;
8925 }
8926
8927 /* [dcl.array]
8928
8929 The constant expressions that specify the bounds of the arrays
8930 can be omitted only for the first member of the sequence. */
8931 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
8932 {
8933 if (name)
8934 error ("declaration of %qD as multidimensional array must "
8935 "have bounds for all dimensions except the first",
8936 name);
8937 else
8938 error ("multidimensional array must have bounds for all "
8939 "dimensions except the first");
8940
8941 return error_mark_node;
8942 }
8943
8944 /* Figure out the index type for the array. */
8945 if (size)
8946 itype = compute_array_index_type (name, size, tf_warning_or_error);
8947
8948 /* [dcl.array]
8949 T is called the array element type; this type shall not be [...] an
8950 abstract class type. */
8951 abstract_virtuals_error (name, type);
8952
8953 return build_cplus_array_type (type, itype);
8954 }
8955
8956 /* Returns the smallest location != UNKNOWN_LOCATION among the
8957 three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile],
8958 and LOCATIONS[ds_restrict]. */
8959
8960 static location_t
8961 smallest_type_quals_location (int type_quals, const location_t* locations)
8962 {
8963 location_t loc = UNKNOWN_LOCATION;
8964
8965 if (type_quals & TYPE_QUAL_CONST)
8966 loc = locations[ds_const];
8967
8968 if ((type_quals & TYPE_QUAL_VOLATILE)
8969 && (loc == UNKNOWN_LOCATION || locations[ds_volatile] < loc))
8970 loc = locations[ds_volatile];
8971
8972 if ((type_quals & TYPE_QUAL_RESTRICT)
8973 && (loc == UNKNOWN_LOCATION || locations[ds_restrict] < loc))
8974 loc = locations[ds_restrict];
8975
8976 return loc;
8977 }
8978
8979 /* Check that it's OK to declare a function with the indicated TYPE
8980 and TYPE_QUALS. SFK indicates the kind of special function (if any)
8981 that this function is. OPTYPE is the type given in a conversion
8982 operator declaration, or the class type for a constructor/destructor.
8983 Returns the actual return type of the function; that may be different
8984 than TYPE if an error occurs, or for certain special functions. */
8985
8986 static tree
8987 check_special_function_return_type (special_function_kind sfk,
8988 tree type,
8989 tree optype,
8990 int type_quals,
8991 const location_t* locations)
8992 {
8993 switch (sfk)
8994 {
8995 case sfk_constructor:
8996 if (type)
8997 error ("return type specification for constructor invalid");
8998 else if (type_quals != TYPE_UNQUALIFIED)
8999 error_at (smallest_type_quals_location (type_quals, locations),
9000 "qualifiers are not allowed on constructor declaration");
9001
9002 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
9003 type = build_pointer_type (optype);
9004 else
9005 type = void_type_node;
9006 break;
9007
9008 case sfk_destructor:
9009 if (type)
9010 error ("return type specification for destructor invalid");
9011 else if (type_quals != TYPE_UNQUALIFIED)
9012 error_at (smallest_type_quals_location (type_quals, locations),
9013 "qualifiers are not allowed on destructor declaration");
9014
9015 /* We can't use the proper return type here because we run into
9016 problems with ambiguous bases and covariant returns.
9017 Java classes are left unchanged because (void *) isn't a valid
9018 Java type, and we don't want to change the Java ABI. */
9019 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
9020 type = build_pointer_type (void_type_node);
9021 else
9022 type = void_type_node;
9023 break;
9024
9025 case sfk_conversion:
9026 if (type)
9027 error ("return type specified for %<operator %T%>", optype);
9028 else if (type_quals != TYPE_UNQUALIFIED)
9029 error_at (smallest_type_quals_location (type_quals, locations),
9030 "qualifiers are not allowed on declaration of "
9031 "%<operator %T%>", optype);
9032
9033 type = optype;
9034 break;
9035
9036 default:
9037 gcc_unreachable ();
9038 }
9039
9040 return type;
9041 }
9042
9043 /* A variable or data member (whose unqualified name is IDENTIFIER)
9044 has been declared with the indicated TYPE. If the TYPE is not
9045 acceptable, issue an error message and return a type to use for
9046 error-recovery purposes. */
9047
9048 tree
9049 check_var_type (tree identifier, tree type)
9050 {
9051 if (VOID_TYPE_P (type))
9052 {
9053 if (!identifier)
9054 error ("unnamed variable or field declared void");
9055 else if (identifier_p (identifier))
9056 {
9057 gcc_assert (!IDENTIFIER_OPNAME_P (identifier));
9058 error ("variable or field %qE declared void", identifier);
9059 }
9060 else
9061 error ("variable or field declared void");
9062 type = error_mark_node;
9063 }
9064
9065 return type;
9066 }
9067
9068 /* Given declspecs and a declarator (abstract or otherwise), determine
9069 the name and type of the object declared and construct a DECL node
9070 for it.
9071
9072 DECLSPECS points to the representation of declaration-specifier
9073 sequence that precedes declarator.
9074
9075 DECL_CONTEXT says which syntactic context this declaration is in:
9076 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
9077 FUNCDEF for a function definition. Like NORMAL but a few different
9078 error messages in each case. Return value may be zero meaning
9079 this definition is too screwy to try to parse.
9080 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
9081 handle member functions (which have FIELD context).
9082 Return value may be zero meaning this definition is too screwy to
9083 try to parse.
9084 PARM for a parameter declaration (either within a function prototype
9085 or before a function body). Make a PARM_DECL, or return void_type_node.
9086 TPARM for a template parameter declaration.
9087 CATCHPARM for a parameter declaration before a catch clause.
9088 TYPENAME if for a typename (in a cast or sizeof).
9089 Don't make a DECL node; just return the ..._TYPE node.
9090 FIELD for a struct or union field; make a FIELD_DECL.
9091 BITFIELD for a field with specified width.
9092
9093 INITIALIZED is as for start_decl.
9094
9095 ATTRLIST is a pointer to the list of attributes, which may be NULL
9096 if there are none; *ATTRLIST may be modified if attributes from inside
9097 the declarator should be applied to the declaration.
9098
9099 When this function is called, scoping variables (such as
9100 CURRENT_CLASS_TYPE) should reflect the scope in which the
9101 declaration occurs, not the scope in which the new declaration will
9102 be placed. For example, on:
9103
9104 void S::f() { ... }
9105
9106 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
9107 should not be `S'.
9108
9109 Returns a DECL (if a declarator is present), a TYPE (if there is no
9110 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
9111 error occurs. */
9112
9113 tree
9114 grokdeclarator (const cp_declarator *declarator,
9115 cp_decl_specifier_seq *declspecs,
9116 enum decl_context decl_context,
9117 int initialized,
9118 tree* attrlist)
9119 {
9120 tree type = NULL_TREE;
9121 int longlong = 0;
9122 int explicit_intN = 0;
9123 int virtualp, explicitp, friendp, inlinep, staticp;
9124 int explicit_int = 0;
9125 int explicit_char = 0;
9126 int defaulted_int = 0;
9127
9128 tree typedef_decl = NULL_TREE;
9129 const char *name = NULL;
9130 tree typedef_type = NULL_TREE;
9131 /* True if this declarator is a function definition. */
9132 bool funcdef_flag = false;
9133 cp_declarator_kind innermost_code = cdk_error;
9134 int bitfield = 0;
9135 #if 0
9136 /* See the code below that used this. */
9137 tree decl_attr = NULL_TREE;
9138 #endif
9139
9140 /* Keep track of what sort of function is being processed
9141 so that we can warn about default return values, or explicit
9142 return values which do not match prescribed defaults. */
9143 special_function_kind sfk = sfk_none;
9144
9145 tree dname = NULL_TREE;
9146 tree ctor_return_type = NULL_TREE;
9147 enum overload_flags flags = NO_SPECIAL;
9148 /* cv-qualifiers that apply to the declarator, for a declaration of
9149 a member function. */
9150 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
9151 /* virt-specifiers that apply to the declarator, for a declaration of
9152 a member function. */
9153 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
9154 /* ref-qualifier that applies to the declarator, for a declaration of
9155 a member function. */
9156 cp_ref_qualifier rqual = REF_QUAL_NONE;
9157 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
9158 int type_quals = TYPE_UNQUALIFIED;
9159 tree raises = NULL_TREE;
9160 int template_count = 0;
9161 tree returned_attrs = NULL_TREE;
9162 tree parms = NULL_TREE;
9163 const cp_declarator *id_declarator;
9164 /* The unqualified name of the declarator; either an
9165 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
9166 tree unqualified_id;
9167 /* The class type, if any, in which this entity is located,
9168 or NULL_TREE if none. Note that this value may be different from
9169 the current class type; for example if an attempt is made to declare
9170 "A::f" inside "B", this value will be "A". */
9171 tree ctype = current_class_type;
9172 /* The NAMESPACE_DECL for the namespace in which this entity is
9173 located. If an unqualified name is used to declare the entity,
9174 this value will be NULL_TREE, even if the entity is located at
9175 namespace scope. */
9176 tree in_namespace = NULL_TREE;
9177 cp_storage_class storage_class;
9178 bool unsigned_p, signed_p, short_p, long_p, thread_p;
9179 bool type_was_error_mark_node = false;
9180 bool parameter_pack_p = declarator? declarator->parameter_pack_p : false;
9181 bool template_type_arg = false;
9182 bool template_parm_flag = false;
9183 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
9184 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
9185 bool late_return_type_p = false;
9186 bool array_parameter_p = false;
9187 source_location saved_loc = input_location;
9188 const char *errmsg;
9189 tree reqs = NULL_TREE;
9190
9191 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
9192 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
9193 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
9194 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
9195 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
9196 explicit_intN = declspecs->explicit_intN_p;
9197 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
9198
9199 // Was concept_p specified? Note that ds_concept
9200 // implies ds_constexpr!
9201 bool concept_p = decl_spec_seq_has_spec_p (declspecs, ds_concept);
9202 if (concept_p)
9203 constexpr_p = true;
9204
9205 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
9206 type_quals |= TYPE_QUAL_CONST;
9207 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
9208 type_quals |= TYPE_QUAL_VOLATILE;
9209 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
9210 type_quals |= TYPE_QUAL_RESTRICT;
9211
9212 if (decl_context == FUNCDEF)
9213 funcdef_flag = true, decl_context = NORMAL;
9214 else if (decl_context == MEMFUNCDEF)
9215 funcdef_flag = true, decl_context = FIELD;
9216 else if (decl_context == BITFIELD)
9217 bitfield = 1, decl_context = FIELD;
9218 else if (decl_context == TEMPLATE_TYPE_ARG)
9219 template_type_arg = true, decl_context = TYPENAME;
9220 else if (decl_context == TPARM)
9221 template_parm_flag = true, decl_context = PARM;
9222
9223 if (initialized > 1)
9224 funcdef_flag = true;
9225
9226 /* Look inside a declarator for the name being declared
9227 and get it as a string, for an error message. */
9228 for (id_declarator = declarator;
9229 id_declarator;
9230 id_declarator = id_declarator->declarator)
9231 {
9232 if (id_declarator->kind != cdk_id)
9233 innermost_code = id_declarator->kind;
9234
9235 switch (id_declarator->kind)
9236 {
9237 case cdk_function:
9238 if (id_declarator->declarator
9239 && id_declarator->declarator->kind == cdk_id)
9240 {
9241 sfk = id_declarator->declarator->u.id.sfk;
9242 if (sfk == sfk_destructor)
9243 flags = DTOR_FLAG;
9244 }
9245 break;
9246
9247 case cdk_id:
9248 {
9249 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
9250 tree decl = id_declarator->u.id.unqualified_name;
9251 if (!decl)
9252 break;
9253 if (qualifying_scope)
9254 {
9255 if (at_function_scope_p ())
9256 {
9257 /* [dcl.meaning]
9258
9259 A declarator-id shall not be qualified except
9260 for ...
9261
9262 None of the cases are permitted in block
9263 scope. */
9264 if (qualifying_scope == global_namespace)
9265 error ("invalid use of qualified-name %<::%D%>",
9266 decl);
9267 else if (TYPE_P (qualifying_scope))
9268 error ("invalid use of qualified-name %<%T::%D%>",
9269 qualifying_scope, decl);
9270 else
9271 error ("invalid use of qualified-name %<%D::%D%>",
9272 qualifying_scope, decl);
9273 return error_mark_node;
9274 }
9275 else if (TYPE_P (qualifying_scope))
9276 {
9277 ctype = qualifying_scope;
9278 if (!MAYBE_CLASS_TYPE_P (ctype))
9279 {
9280 error ("%q#T is not a class or a namespace", ctype);
9281 ctype = NULL_TREE;
9282 }
9283 else if (innermost_code != cdk_function
9284 && current_class_type
9285 && !uniquely_derived_from_p (ctype,
9286 current_class_type))
9287 {
9288 error ("invalid use of qualified-name %<%T::%D%>",
9289 qualifying_scope, decl);
9290 return error_mark_node;
9291 }
9292 }
9293 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
9294 in_namespace = qualifying_scope;
9295 }
9296 switch (TREE_CODE (decl))
9297 {
9298 case BIT_NOT_EXPR:
9299 {
9300 tree type;
9301
9302 if (innermost_code != cdk_function)
9303 {
9304 error ("declaration of %qD as non-function", decl);
9305 return error_mark_node;
9306 }
9307 else if (!qualifying_scope
9308 && !(current_class_type && at_class_scope_p ()))
9309 {
9310 error ("declaration of %qD as non-member", decl);
9311 return error_mark_node;
9312 }
9313
9314 type = TREE_OPERAND (decl, 0);
9315 if (TYPE_P (type))
9316 type = constructor_name (type);
9317 name = identifier_to_locale (IDENTIFIER_POINTER (type));
9318 dname = decl;
9319 }
9320 break;
9321
9322 case TEMPLATE_ID_EXPR:
9323 {
9324 tree fns = TREE_OPERAND (decl, 0);
9325
9326 dname = fns;
9327 if (!identifier_p (dname))
9328 {
9329 if (variable_template_p (dname))
9330 dname = DECL_NAME (dname);
9331 else
9332 {
9333 gcc_assert (is_overloaded_fn (dname));
9334 dname = DECL_NAME (get_first_fn (dname));
9335 }
9336 }
9337 }
9338 /* Fall through. */
9339
9340 case IDENTIFIER_NODE:
9341 if (identifier_p (decl))
9342 dname = decl;
9343
9344 if (C_IS_RESERVED_WORD (dname))
9345 {
9346 error ("declarator-id missing; using reserved word %qD",
9347 dname);
9348 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9349 }
9350 else if (!IDENTIFIER_TYPENAME_P (dname))
9351 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9352 else
9353 {
9354 gcc_assert (flags == NO_SPECIAL);
9355 flags = TYPENAME_FLAG;
9356 ctor_return_type = TREE_TYPE (dname);
9357 sfk = sfk_conversion;
9358 if (is_typename_at_global_scope (dname))
9359 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9360 else
9361 name = "<invalid operator>";
9362 }
9363 break;
9364
9365 default:
9366 gcc_unreachable ();
9367 }
9368 break;
9369 }
9370
9371 case cdk_array:
9372 case cdk_pointer:
9373 case cdk_reference:
9374 case cdk_ptrmem:
9375 break;
9376
9377 case cdk_error:
9378 return error_mark_node;
9379
9380 default:
9381 gcc_unreachable ();
9382 }
9383 if (id_declarator->kind == cdk_id)
9384 break;
9385 }
9386
9387 /* [dcl.fct.edf]
9388
9389 The declarator in a function-definition shall have the form
9390 D1 ( parameter-declaration-clause) ... */
9391 if (funcdef_flag && innermost_code != cdk_function)
9392 {
9393 error ("function definition does not declare parameters");
9394 return error_mark_node;
9395 }
9396
9397 if (flags == TYPENAME_FLAG
9398 && innermost_code != cdk_function
9399 && ! (ctype && !declspecs->any_specifiers_p))
9400 {
9401 error ("declaration of %qD as non-function", dname);
9402 return error_mark_node;
9403 }
9404
9405 if (dname
9406 && identifier_p (dname)
9407 && UDLIT_OPER_P (dname)
9408 && innermost_code != cdk_function)
9409 {
9410 error ("declaration of %qD as non-function", dname);
9411 return error_mark_node;
9412 }
9413
9414 if (dname && IDENTIFIER_OPNAME_P (dname))
9415 {
9416 if (typedef_p)
9417 {
9418 error ("declaration of %qD as %<typedef%>", dname);
9419 return error_mark_node;
9420 }
9421 else if (decl_context == PARM || decl_context == CATCHPARM)
9422 {
9423 error ("declaration of %qD as parameter", dname);
9424 return error_mark_node;
9425 }
9426 }
9427
9428 /* Anything declared one level down from the top level
9429 must be one of the parameters of a function
9430 (because the body is at least two levels down). */
9431
9432 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
9433 by not allowing C++ class definitions to specify their parameters
9434 with xdecls (must be spec.d in the parmlist).
9435
9436 Since we now wait to push a class scope until we are sure that
9437 we are in a legitimate method context, we must set oldcname
9438 explicitly (since current_class_name is not yet alive).
9439
9440 We also want to avoid calling this a PARM if it is in a namespace. */
9441
9442 if (decl_context == NORMAL && !toplevel_bindings_p ())
9443 {
9444 cp_binding_level *b = current_binding_level;
9445 current_binding_level = b->level_chain;
9446 if (current_binding_level != 0 && toplevel_bindings_p ())
9447 decl_context = PARM;
9448 current_binding_level = b;
9449 }
9450
9451 if (name == NULL)
9452 name = decl_context == PARM ? "parameter" : "type name";
9453
9454 if (concept_p && typedef_p)
9455 {
9456 error ("%<concept%> cannot appear in a typedef declaration");
9457 return error_mark_node;
9458 }
9459
9460 if (constexpr_p && typedef_p)
9461 {
9462 error ("%<constexpr%> cannot appear in a typedef declaration");
9463 return error_mark_node;
9464 }
9465
9466 /* If there were multiple types specified in the decl-specifier-seq,
9467 issue an error message. */
9468 if (declspecs->multiple_types_p)
9469 {
9470 error ("two or more data types in declaration of %qs", name);
9471 return error_mark_node;
9472 }
9473
9474 if (declspecs->conflicting_specifiers_p)
9475 {
9476 error ("conflicting specifiers in declaration of %qs", name);
9477 return error_mark_node;
9478 }
9479
9480 /* Extract the basic type from the decl-specifier-seq. */
9481 type = declspecs->type;
9482 if (type == error_mark_node)
9483 {
9484 type = NULL_TREE;
9485 type_was_error_mark_node = true;
9486 }
9487 /* If the entire declaration is itself tagged as deprecated then
9488 suppress reports of deprecated items. */
9489 if (type && TREE_DEPRECATED (type)
9490 && deprecated_state != DEPRECATED_SUPPRESS)
9491 warn_deprecated_use (type, NULL_TREE);
9492 if (type && TREE_CODE (type) == TYPE_DECL)
9493 {
9494 typedef_decl = type;
9495 type = TREE_TYPE (typedef_decl);
9496 if (TREE_DEPRECATED (type)
9497 && DECL_ARTIFICIAL (typedef_decl)
9498 && deprecated_state != DEPRECATED_SUPPRESS)
9499 warn_deprecated_use (type, NULL_TREE);
9500 }
9501 /* No type at all: default to `int', and set DEFAULTED_INT
9502 because it was not a user-defined typedef. */
9503 if (type == NULL_TREE)
9504 {
9505 if (signed_p || unsigned_p || long_p || short_p)
9506 {
9507 /* These imply 'int'. */
9508 type = integer_type_node;
9509 defaulted_int = 1;
9510 }
9511 /* If we just have "complex", it is equivalent to "complex double". */
9512 else if (!longlong && !explicit_intN
9513 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
9514 {
9515 type = double_type_node;
9516 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
9517 "ISO C++ does not support plain %<complex%> meaning "
9518 "%<double complex%>");
9519 }
9520 }
9521 /* Gather flags. */
9522 explicit_int = declspecs->explicit_int_p;
9523 explicit_char = declspecs->explicit_char_p;
9524
9525 #if 0
9526 /* See the code below that used this. */
9527 if (typedef_decl)
9528 decl_attr = DECL_ATTRIBUTES (typedef_decl);
9529 #endif
9530 typedef_type = type;
9531
9532
9533 if (sfk != sfk_conversion)
9534 ctor_return_type = ctype;
9535
9536 if (sfk != sfk_none)
9537 {
9538 type = check_special_function_return_type (sfk, type,
9539 ctor_return_type,
9540 type_quals,
9541 declspecs->locations);
9542 type_quals = TYPE_UNQUALIFIED;
9543 }
9544 else if (type == NULL_TREE)
9545 {
9546 int is_main;
9547
9548 explicit_int = -1;
9549
9550 /* We handle `main' specially here, because 'main () { }' is so
9551 common. With no options, it is allowed. With -Wreturn-type,
9552 it is a warning. It is only an error with -pedantic-errors. */
9553 is_main = (funcdef_flag
9554 && dname && identifier_p (dname)
9555 && MAIN_NAME_P (dname)
9556 && ctype == NULL_TREE
9557 && in_namespace == NULL_TREE
9558 && current_namespace == global_namespace);
9559
9560 if (type_was_error_mark_node)
9561 /* We've already issued an error, don't complain more. */;
9562 else if (in_system_header_at (input_location) || flag_ms_extensions)
9563 /* Allow it, sigh. */;
9564 else if (! is_main)
9565 permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
9566 else if (pedantic)
9567 pedwarn (input_location, OPT_Wpedantic,
9568 "ISO C++ forbids declaration of %qs with no type", name);
9569 else
9570 warning (OPT_Wreturn_type,
9571 "ISO C++ forbids declaration of %qs with no type", name);
9572
9573 if (type_was_error_mark_node && template_parm_flag)
9574 /* FIXME we should be able to propagate the error_mark_node as is
9575 for other contexts too. */
9576 type = error_mark_node;
9577 else
9578 type = integer_type_node;
9579 }
9580
9581 ctype = NULL_TREE;
9582
9583 if (explicit_intN)
9584 {
9585 if (! int_n_enabled_p[declspecs->int_n_idx])
9586 {
9587 error ("%<__int%d%> is not supported by this target",
9588 int_n_data[declspecs->int_n_idx].bitsize);
9589 explicit_intN = false;
9590 }
9591 else if (pedantic && ! in_system_header_at (input_location))
9592 pedwarn (input_location, OPT_Wpedantic,
9593 "ISO C++ does not support %<__int%d%> for %qs",
9594 int_n_data[declspecs->int_n_idx].bitsize, name);
9595 }
9596
9597 /* Now process the modifiers that were specified
9598 and check for invalid combinations. */
9599
9600 /* Long double is a special combination. */
9601 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
9602 {
9603 long_p = false;
9604 type = cp_build_qualified_type (long_double_type_node,
9605 cp_type_quals (type));
9606 }
9607
9608 /* Check all other uses of type modifiers. */
9609
9610 if (unsigned_p || signed_p || long_p || short_p)
9611 {
9612 int ok = 0;
9613
9614 if ((signed_p || unsigned_p) && TREE_CODE (type) != INTEGER_TYPE)
9615 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9616 else if (signed_p && unsigned_p)
9617 error ("%<signed%> and %<unsigned%> specified together for %qs", name);
9618 else if (longlong && TREE_CODE (type) != INTEGER_TYPE)
9619 error ("%<long long%> invalid for %qs", name);
9620 else if (long_p && TREE_CODE (type) == REAL_TYPE)
9621 error ("%<long%> invalid for %qs", name);
9622 else if (short_p && TREE_CODE (type) == REAL_TYPE)
9623 error ("%<short%> invalid for %qs", name);
9624 else if ((long_p || short_p) && TREE_CODE (type) != INTEGER_TYPE)
9625 error ("%<long%> or %<short%> invalid for %qs", name);
9626 else if ((long_p || short_p || explicit_char || explicit_int) && explicit_intN)
9627 error ("%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs", name);
9628 else if ((long_p || short_p) && explicit_char)
9629 error ("%<long%> or %<short%> specified with char for %qs", name);
9630 else if (long_p && short_p)
9631 error ("%<long%> and %<short%> specified together for %qs", name);
9632 else if (type == char16_type_node || type == char32_type_node)
9633 {
9634 if (signed_p || unsigned_p)
9635 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9636 else if (short_p || long_p)
9637 error ("%<short%> or %<long%> invalid for %qs", name);
9638 }
9639 else
9640 {
9641 ok = 1;
9642 if (!explicit_int && !defaulted_int && !explicit_char && !explicit_intN && pedantic)
9643 {
9644 pedwarn (input_location, OPT_Wpedantic,
9645 "long, short, signed or unsigned used invalidly for %qs",
9646 name);
9647 if (flag_pedantic_errors)
9648 ok = 0;
9649 }
9650 }
9651
9652 /* Discard the type modifiers if they are invalid. */
9653 if (! ok)
9654 {
9655 unsigned_p = false;
9656 signed_p = false;
9657 long_p = false;
9658 short_p = false;
9659 longlong = 0;
9660 }
9661 }
9662
9663 /* Decide whether an integer type is signed or not.
9664 Optionally treat bitfields as signed by default. */
9665 if (unsigned_p
9666 /* [class.bit]
9667
9668 It is implementation-defined whether a plain (neither
9669 explicitly signed or unsigned) char, short, int, or long
9670 bit-field is signed or unsigned.
9671
9672 Naturally, we extend this to long long as well. Note that
9673 this does not include wchar_t. */
9674 || (bitfield && !flag_signed_bitfields
9675 && !signed_p
9676 /* A typedef for plain `int' without `signed' can be
9677 controlled just like plain `int', but a typedef for
9678 `signed int' cannot be so controlled. */
9679 && !(typedef_decl
9680 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
9681 && TREE_CODE (type) == INTEGER_TYPE
9682 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
9683 {
9684 if (explicit_intN)
9685 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
9686 else if (longlong)
9687 type = long_long_unsigned_type_node;
9688 else if (long_p)
9689 type = long_unsigned_type_node;
9690 else if (short_p)
9691 type = short_unsigned_type_node;
9692 else if (type == char_type_node)
9693 type = unsigned_char_type_node;
9694 else if (typedef_decl)
9695 type = unsigned_type_for (type);
9696 else
9697 type = unsigned_type_node;
9698 }
9699 else if (signed_p && type == char_type_node)
9700 type = signed_char_type_node;
9701 else if (explicit_intN)
9702 type = int_n_trees[declspecs->int_n_idx].signed_type;
9703 else if (longlong)
9704 type = long_long_integer_type_node;
9705 else if (long_p)
9706 type = long_integer_type_node;
9707 else if (short_p)
9708 type = short_integer_type_node;
9709
9710 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
9711 {
9712 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
9713 error ("complex invalid for %qs", name);
9714 /* If a modifier is specified, the resulting complex is the complex
9715 form of TYPE. E.g, "complex short" is "complex short int". */
9716 else if (type == integer_type_node)
9717 type = complex_integer_type_node;
9718 else if (type == float_type_node)
9719 type = complex_float_type_node;
9720 else if (type == double_type_node)
9721 type = complex_double_type_node;
9722 else if (type == long_double_type_node)
9723 type = complex_long_double_type_node;
9724 else
9725 type = build_complex_type (type);
9726 }
9727
9728 /* If we're using the injected-class-name to form a compound type or a
9729 declaration, replace it with the underlying class so we don't get
9730 redundant typedefs in the debug output. But if we are returning the
9731 type unchanged, leave it alone so that it's available to
9732 maybe_get_template_decl_from_type_decl. */
9733 if (CLASS_TYPE_P (type)
9734 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
9735 && type == TREE_TYPE (TYPE_NAME (type))
9736 && (declarator || type_quals))
9737 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
9738
9739 type_quals |= cp_type_quals (type);
9740 type = cp_build_qualified_type_real
9741 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
9742 || declspecs->decltype_p)
9743 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
9744 /* We might have ignored or rejected some of the qualifiers. */
9745 type_quals = cp_type_quals (type);
9746
9747 staticp = 0;
9748 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
9749 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
9750 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
9751
9752 storage_class = declspecs->storage_class;
9753 if (storage_class == sc_static)
9754 staticp = 1 + (decl_context == FIELD);
9755
9756 if (virtualp && staticp == 2)
9757 {
9758 error ("member %qD cannot be declared both virtual and static", dname);
9759 storage_class = sc_none;
9760 staticp = 0;
9761 }
9762 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
9763
9764 /* Issue errors about use of storage classes for parameters. */
9765 if (decl_context == PARM)
9766 {
9767 if (typedef_p)
9768 {
9769 error ("typedef declaration invalid in parameter declaration");
9770 return error_mark_node;
9771 }
9772 else if (template_parm_flag && storage_class != sc_none)
9773 {
9774 error ("storage class specified for template parameter %qs", name);
9775 return error_mark_node;
9776 }
9777 else if (storage_class == sc_static
9778 || storage_class == sc_extern
9779 || thread_p)
9780 error ("storage class specifiers invalid in parameter declarations");
9781
9782 /* Function parameters cannot be concept. */
9783 if (concept_p)
9784 error ("a parameter cannot be declared %<concept%>");
9785 /* Function parameters cannot be constexpr. If we saw one, moan
9786 and pretend it wasn't there. */
9787 else if (constexpr_p)
9788 {
9789 error ("a parameter cannot be declared %<constexpr%>");
9790 constexpr_p = 0;
9791 }
9792 }
9793
9794 /* Give error if `virtual' is used outside of class declaration. */
9795 if (virtualp
9796 && (current_class_name == NULL_TREE || decl_context != FIELD))
9797 {
9798 error_at (declspecs->locations[ds_virtual],
9799 "%<virtual%> outside class declaration");
9800 virtualp = 0;
9801 }
9802
9803 /* Static anonymous unions are dealt with here. */
9804 if (staticp && decl_context == TYPENAME
9805 && declspecs->type
9806 && ANON_AGGR_TYPE_P (declspecs->type))
9807 decl_context = FIELD;
9808
9809 /* Warn about storage classes that are invalid for certain
9810 kinds of declarations (parameters, typenames, etc.). */
9811 if (thread_p
9812 && ((storage_class
9813 && storage_class != sc_extern
9814 && storage_class != sc_static)
9815 || typedef_p))
9816 {
9817 error ("multiple storage classes in declaration of %qs", name);
9818 thread_p = false;
9819 }
9820 if (decl_context != NORMAL
9821 && ((storage_class != sc_none
9822 && storage_class != sc_mutable)
9823 || thread_p))
9824 {
9825 if ((decl_context == PARM || decl_context == CATCHPARM)
9826 && (storage_class == sc_register
9827 || storage_class == sc_auto))
9828 ;
9829 else if (typedef_p)
9830 ;
9831 else if (decl_context == FIELD
9832 /* C++ allows static class elements. */
9833 && storage_class == sc_static)
9834 /* C++ also allows inlines and signed and unsigned elements,
9835 but in those cases we don't come in here. */
9836 ;
9837 else
9838 {
9839 if (decl_context == FIELD)
9840 error ("storage class specified for %qs", name);
9841 else
9842 {
9843 if (decl_context == PARM || decl_context == CATCHPARM)
9844 error ("storage class specified for parameter %qs", name);
9845 else
9846 error ("storage class specified for typename");
9847 }
9848 if (storage_class == sc_register
9849 || storage_class == sc_auto
9850 || storage_class == sc_extern
9851 || thread_p)
9852 storage_class = sc_none;
9853 }
9854 }
9855 else if (storage_class == sc_extern && funcdef_flag
9856 && ! toplevel_bindings_p ())
9857 error ("nested function %qs declared %<extern%>", name);
9858 else if (toplevel_bindings_p ())
9859 {
9860 if (storage_class == sc_auto)
9861 error ("top-level declaration of %qs specifies %<auto%>", name);
9862 }
9863 else if (thread_p
9864 && storage_class != sc_extern
9865 && storage_class != sc_static)
9866 {
9867 if (declspecs->gnu_thread_keyword_p)
9868 pedwarn (input_location, 0, "function-scope %qs implicitly auto and "
9869 "declared %<__thread%>", name);
9870
9871 /* When thread_local is applied to a variable of block scope the
9872 storage-class-specifier static is implied if it does not appear
9873 explicitly. */
9874 storage_class = declspecs->storage_class = sc_static;
9875 staticp = 1;
9876 }
9877
9878 if (storage_class && friendp)
9879 {
9880 error ("storage class specifiers invalid in friend function declarations");
9881 storage_class = sc_none;
9882 staticp = 0;
9883 }
9884
9885 if (!id_declarator)
9886 unqualified_id = NULL_TREE;
9887 else
9888 {
9889 unqualified_id = id_declarator->u.id.unqualified_name;
9890 switch (TREE_CODE (unqualified_id))
9891 {
9892 case BIT_NOT_EXPR:
9893 unqualified_id = TREE_OPERAND (unqualified_id, 0);
9894 if (TYPE_P (unqualified_id))
9895 unqualified_id = constructor_name (unqualified_id);
9896 break;
9897
9898 case IDENTIFIER_NODE:
9899 case TEMPLATE_ID_EXPR:
9900 break;
9901
9902 default:
9903 gcc_unreachable ();
9904 }
9905 }
9906
9907 if (declspecs->std_attributes)
9908 {
9909 /* Apply the c++11 attributes to the type preceding them. */
9910 input_location = declspecs->locations[ds_std_attribute];
9911 decl_attributes (&type, declspecs->std_attributes, 0);
9912 input_location = saved_loc;
9913 }
9914
9915 /* Determine the type of the entity declared by recurring on the
9916 declarator. */
9917 for (; declarator; declarator = declarator->declarator)
9918 {
9919 const cp_declarator *inner_declarator;
9920 tree attrs;
9921
9922 if (type == error_mark_node)
9923 return error_mark_node;
9924
9925 attrs = declarator->attributes;
9926 if (attrs)
9927 {
9928 int attr_flags;
9929
9930 attr_flags = 0;
9931 if (declarator == NULL || declarator->kind == cdk_id)
9932 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
9933 if (declarator->kind == cdk_function)
9934 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
9935 if (declarator->kind == cdk_array)
9936 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
9937 returned_attrs = decl_attributes (&type,
9938 chainon (returned_attrs, attrs),
9939 attr_flags);
9940 }
9941
9942 if (declarator->kind == cdk_id)
9943 break;
9944
9945 inner_declarator = declarator->declarator;
9946
9947 switch (declarator->kind)
9948 {
9949 case cdk_array:
9950 type = create_array_type_for_decl (dname, type,
9951 declarator->u.array.bounds);
9952 if (declarator->std_attributes)
9953 /* [dcl.array]/1:
9954
9955 The optional attribute-specifier-seq appertains to the
9956 array. */
9957 returned_attrs = chainon (returned_attrs,
9958 declarator->std_attributes);
9959 break;
9960
9961 case cdk_function:
9962 {
9963 tree arg_types;
9964 int funcdecl_p;
9965
9966 /* Declaring a function type.
9967 Make sure we have a valid type for the function to return. */
9968
9969 if (type_quals != TYPE_UNQUALIFIED)
9970 {
9971 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
9972 warning (OPT_Wignored_qualifiers,
9973 "type qualifiers ignored on function return type");
9974 /* We now know that the TYPE_QUALS don't apply to the
9975 decl, but to its return type. */
9976 type_quals = TYPE_UNQUALIFIED;
9977 }
9978 errmsg = targetm.invalid_return_type (type);
9979 if (errmsg)
9980 {
9981 error (errmsg);
9982 type = integer_type_node;
9983 }
9984
9985 /* Error about some types functions can't return. */
9986
9987 if (TREE_CODE (type) == FUNCTION_TYPE)
9988 {
9989 error ("%qs declared as function returning a function", name);
9990 return error_mark_node;
9991 }
9992 if (TREE_CODE (type) == ARRAY_TYPE)
9993 {
9994 error ("%qs declared as function returning an array", name);
9995 return error_mark_node;
9996 }
9997
9998 input_location = declspecs->locations[ds_type_spec];
9999 abstract_virtuals_error (ACU_RETURN, type);
10000 input_location = saved_loc;
10001
10002 /* Pick up type qualifiers which should be applied to `this'. */
10003 memfn_quals = declarator->u.function.qualifiers;
10004 /* Pick up virt-specifiers. */
10005 virt_specifiers = declarator->u.function.virt_specifiers;
10006 /* And ref-qualifier, too */
10007 rqual = declarator->u.function.ref_qualifier;
10008 /* And tx-qualifier. */
10009 tree tx_qual = declarator->u.function.tx_qualifier;
10010 /* Pick up the exception specifications. */
10011 raises = declarator->u.function.exception_specification;
10012 /* If the exception-specification is ill-formed, let's pretend
10013 there wasn't one. */
10014 if (raises == error_mark_node)
10015 raises = NULL_TREE;
10016
10017 if (reqs)
10018 error_at (location_of (reqs), "requires-clause on return type");
10019 reqs = declarator->u.function.requires_clause;
10020
10021 /* Say it's a definition only for the CALL_EXPR
10022 closest to the identifier. */
10023 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
10024
10025 /* Handle a late-specified return type. */
10026 if (funcdecl_p)
10027 {
10028 if (type_uses_auto (type))
10029 {
10030 if (!declarator->u.function.late_return_type)
10031 {
10032 if (current_class_type
10033 && LAMBDA_TYPE_P (current_class_type))
10034 /* OK for C++11 lambdas. */;
10035 else if (cxx_dialect < cxx14)
10036 {
10037 error ("%qs function uses "
10038 "%<auto%> type specifier without trailing "
10039 "return type", name);
10040 inform (input_location, "deduced return type "
10041 "only available with -std=c++14 or "
10042 "-std=gnu++14");
10043 }
10044 else if (virtualp)
10045 {
10046 error ("virtual function cannot "
10047 "have deduced return type");
10048 virtualp = false;
10049 }
10050 }
10051 else if (!is_auto (type) && sfk != sfk_conversion)
10052 {
10053 error ("%qs function with trailing return type has"
10054 " %qT as its type rather than plain %<auto%>",
10055 name, type);
10056 return error_mark_node;
10057 }
10058 }
10059 else if (declarator->u.function.late_return_type
10060 && sfk != sfk_conversion)
10061 {
10062 if (cxx_dialect < cxx11)
10063 /* Not using maybe_warn_cpp0x because this should
10064 always be an error. */
10065 error ("trailing return type only available with "
10066 "-std=c++11 or -std=gnu++11");
10067 else
10068 error ("%qs function with trailing return type not "
10069 "declared with %<auto%> type specifier", name);
10070 return error_mark_node;
10071 }
10072 }
10073 type = splice_late_return_type
10074 (type, declarator->u.function.late_return_type);
10075 if (type == error_mark_node)
10076 return error_mark_node;
10077
10078 if (declarator->u.function.late_return_type)
10079 late_return_type_p = true;
10080
10081 if (ctype == NULL_TREE
10082 && decl_context == FIELD
10083 && funcdecl_p
10084 && friendp == 0)
10085 ctype = current_class_type;
10086
10087 if (ctype && (sfk == sfk_constructor
10088 || sfk == sfk_destructor))
10089 {
10090 /* We are within a class's scope. If our declarator name
10091 is the same as the class name, and we are defining
10092 a function, then it is a constructor/destructor, and
10093 therefore returns a void type. */
10094
10095 /* ISO C++ 12.4/2. A destructor may not be declared
10096 const or volatile. A destructor may not be static.
10097 A destructor may not be declared with ref-qualifier.
10098
10099 ISO C++ 12.1. A constructor may not be declared
10100 const or volatile. A constructor may not be
10101 virtual. A constructor may not be static.
10102 A constructor may not be declared with ref-qualifier. */
10103 if (staticp == 2)
10104 error ((flags == DTOR_FLAG)
10105 ? G_("destructor cannot be static member function")
10106 : G_("constructor cannot be static member function"));
10107 if (memfn_quals)
10108 {
10109 error ((flags == DTOR_FLAG)
10110 ? G_("destructors may not be cv-qualified")
10111 : G_("constructors may not be cv-qualified"));
10112 memfn_quals = TYPE_UNQUALIFIED;
10113 }
10114
10115 if (rqual)
10116 {
10117 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
10118 error ((flags == DTOR_FLAG)
10119 ? "destructors may not be ref-qualified"
10120 : "constructors may not be ref-qualified");
10121 rqual = REF_QUAL_NONE;
10122 }
10123
10124 if (decl_context == FIELD
10125 && !member_function_or_else (ctype,
10126 current_class_type,
10127 flags))
10128 return error_mark_node;
10129
10130 if (flags != DTOR_FLAG)
10131 {
10132 /* It's a constructor. */
10133 if (explicitp == 1)
10134 explicitp = 2;
10135 if (virtualp)
10136 {
10137 permerror (input_location, "constructors cannot be declared virtual");
10138 virtualp = 0;
10139 }
10140 if (decl_context == FIELD
10141 && sfk != sfk_constructor)
10142 return error_mark_node;
10143 }
10144 if (decl_context == FIELD)
10145 staticp = 0;
10146 }
10147 else if (friendp)
10148 {
10149 if (virtualp)
10150 {
10151 /* Cannot be both friend and virtual. */
10152 error ("virtual functions cannot be friends");
10153 friendp = 0;
10154 }
10155 if (decl_context == NORMAL)
10156 error ("friend declaration not in class definition");
10157 if (current_function_decl && funcdef_flag)
10158 error ("can%'t define friend function %qs in a local "
10159 "class definition",
10160 name);
10161 }
10162 else if (ctype && sfk == sfk_conversion)
10163 {
10164 if (explicitp == 1)
10165 {
10166 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
10167 explicitp = 2;
10168 }
10169 if (late_return_type_p)
10170 error ("a conversion function cannot have a trailing return type");
10171 }
10172
10173 arg_types = grokparms (declarator->u.function.parameters,
10174 &parms);
10175
10176 if (inner_declarator
10177 && inner_declarator->kind == cdk_id
10178 && inner_declarator->u.id.sfk == sfk_destructor
10179 && arg_types != void_list_node)
10180 {
10181 error ("destructors may not have parameters");
10182 arg_types = void_list_node;
10183 parms = NULL_TREE;
10184 }
10185
10186 type = build_function_type (type, arg_types);
10187
10188 tree attrs = declarator->std_attributes;
10189 if (tx_qual)
10190 {
10191 tree att = build_tree_list (tx_qual, NULL_TREE);
10192 /* transaction_safe applies to the type, but
10193 transaction_safe_dynamic applies to the function. */
10194 if (is_attribute_p ("transaction_safe", tx_qual))
10195 attrs = chainon (attrs, att);
10196 else
10197 returned_attrs = chainon (returned_attrs, att);
10198 }
10199 if (attrs)
10200 /* [dcl.fct]/2:
10201
10202 The optional attribute-specifier-seq appertains to
10203 the function type. */
10204 decl_attributes (&type, attrs, 0);
10205 }
10206 break;
10207
10208 case cdk_pointer:
10209 case cdk_reference:
10210 case cdk_ptrmem:
10211 /* Filter out pointers-to-references and references-to-references.
10212 We can get these if a TYPE_DECL is used. */
10213
10214 if (TREE_CODE (type) == REFERENCE_TYPE)
10215 {
10216 if (declarator->kind != cdk_reference)
10217 {
10218 error ("cannot declare pointer to %q#T", type);
10219 type = TREE_TYPE (type);
10220 }
10221
10222 /* In C++0x, we allow reference to reference declarations
10223 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
10224 and template type arguments [14.3.1/4 temp.arg.type]. The
10225 check for direct reference to reference declarations, which
10226 are still forbidden, occurs below. Reasoning behind the change
10227 can be found in DR106, DR540, and the rvalue reference
10228 proposals. */
10229 else if (cxx_dialect == cxx98)
10230 {
10231 error ("cannot declare reference to %q#T", type);
10232 type = TREE_TYPE (type);
10233 }
10234 }
10235 else if (VOID_TYPE_P (type))
10236 {
10237 if (declarator->kind == cdk_reference)
10238 error ("cannot declare reference to %q#T", type);
10239 else if (declarator->kind == cdk_ptrmem)
10240 error ("cannot declare pointer to %q#T member", type);
10241 }
10242
10243 /* We now know that the TYPE_QUALS don't apply to the decl,
10244 but to the target of the pointer. */
10245 type_quals = TYPE_UNQUALIFIED;
10246
10247 /* This code used to handle METHOD_TYPE, but I don't think it's
10248 possible to get it here anymore. */
10249 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
10250 if (declarator->kind == cdk_ptrmem
10251 && TREE_CODE (type) == FUNCTION_TYPE)
10252 {
10253 memfn_quals |= type_memfn_quals (type);
10254 type = build_memfn_type (type,
10255 declarator->u.pointer.class_type,
10256 memfn_quals,
10257 rqual);
10258 if (type == error_mark_node)
10259 return error_mark_node;
10260
10261 rqual = REF_QUAL_NONE;
10262 memfn_quals = TYPE_UNQUALIFIED;
10263 }
10264
10265 if (TREE_CODE (type) == FUNCTION_TYPE
10266 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
10267 || type_memfn_rqual (type) != REF_QUAL_NONE))
10268 error (declarator->kind == cdk_reference
10269 ? G_("cannot declare reference to qualified function type %qT")
10270 : G_("cannot declare pointer to qualified function type %qT"),
10271 type);
10272
10273 /* When the pointed-to type involves components of variable size,
10274 care must be taken to ensure that the size evaluation code is
10275 emitted early enough to dominate all the possible later uses
10276 and late enough for the variables on which it depends to have
10277 been assigned.
10278
10279 This is expected to happen automatically when the pointed-to
10280 type has a name/declaration of it's own, but special attention
10281 is required if the type is anonymous.
10282
10283 We handle the NORMAL and FIELD contexts here by inserting a
10284 dummy statement that just evaluates the size at a safe point
10285 and ensures it is not deferred until e.g. within a deeper
10286 conditional context (c++/43555).
10287
10288 We expect nothing to be needed here for PARM or TYPENAME.
10289 Evaluating the size at this point for TYPENAME would
10290 actually be incorrect, as we might be in the middle of an
10291 expression with side effects on the pointed-to type size
10292 "arguments" prior to the pointer declaration point and the
10293 size evaluation could end up prior to the side effects. */
10294
10295 if (!TYPE_NAME (type)
10296 && (decl_context == NORMAL || decl_context == FIELD)
10297 && at_function_scope_p ()
10298 && variably_modified_type_p (type, NULL_TREE))
10299 /* Force evaluation of the SAVE_EXPR. */
10300 finish_expr_stmt (TYPE_SIZE (type));
10301
10302 if (declarator->kind == cdk_reference)
10303 {
10304 /* In C++0x, the type we are creating a reference to might be
10305 a typedef which is itself a reference type. In that case,
10306 we follow the reference collapsing rules in
10307 [7.1.3/8 dcl.typedef] to create the final reference type:
10308
10309 "If a typedef TD names a type that is a reference to a type
10310 T, an attempt to create the type 'lvalue reference to cv TD'
10311 creates the type 'lvalue reference to T,' while an attempt
10312 to create the type "rvalue reference to cv TD' creates the
10313 type TD."
10314 */
10315 if (VOID_TYPE_P (type))
10316 /* We already gave an error. */;
10317 else if (TREE_CODE (type) == REFERENCE_TYPE)
10318 {
10319 if (declarator->u.reference.rvalue_ref)
10320 /* Leave type alone. */;
10321 else
10322 type = cp_build_reference_type (TREE_TYPE (type), false);
10323 }
10324 else
10325 type = cp_build_reference_type
10326 (type, declarator->u.reference.rvalue_ref);
10327
10328 /* In C++0x, we need this check for direct reference to
10329 reference declarations, which are forbidden by
10330 [8.3.2/5 dcl.ref]. Reference to reference declarations
10331 are only allowed indirectly through typedefs and template
10332 type arguments. Example:
10333
10334 void foo(int & &); // invalid ref-to-ref decl
10335
10336 typedef int & int_ref;
10337 void foo(int_ref &); // valid ref-to-ref decl
10338 */
10339 if (inner_declarator && inner_declarator->kind == cdk_reference)
10340 error ("cannot declare reference to %q#T, which is not "
10341 "a typedef or a template type argument", type);
10342 }
10343 else if (TREE_CODE (type) == METHOD_TYPE)
10344 type = build_ptrmemfunc_type (build_pointer_type (type));
10345 else if (declarator->kind == cdk_ptrmem)
10346 {
10347 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
10348 != NAMESPACE_DECL);
10349 if (declarator->u.pointer.class_type == error_mark_node)
10350 /* We will already have complained. */
10351 type = error_mark_node;
10352 else
10353 type = build_ptrmem_type (declarator->u.pointer.class_type,
10354 type);
10355 }
10356 else
10357 type = build_pointer_type (type);
10358
10359 /* Process a list of type modifier keywords (such as
10360 const or volatile) that were given inside the `*' or `&'. */
10361
10362 if (declarator->u.pointer.qualifiers)
10363 {
10364 type
10365 = cp_build_qualified_type (type,
10366 declarator->u.pointer.qualifiers);
10367 type_quals = cp_type_quals (type);
10368 }
10369
10370 /* Apply C++11 attributes to the pointer, and not to the
10371 type pointed to. This is unlike what is done for GNU
10372 attributes above. It is to comply with [dcl.ptr]/1:
10373
10374 [the optional attribute-specifier-seq (7.6.1) appertains
10375 to the pointer and not to the object pointed to]. */
10376 if (declarator->std_attributes)
10377 decl_attributes (&type, declarator->std_attributes,
10378 0);
10379
10380 ctype = NULL_TREE;
10381 break;
10382
10383 case cdk_error:
10384 break;
10385
10386 default:
10387 gcc_unreachable ();
10388 }
10389 }
10390
10391 /* A `constexpr' specifier used in an object declaration declares
10392 the object as `const'. */
10393 if (constexpr_p && innermost_code != cdk_function)
10394 {
10395 /* DR1688 says that a `constexpr' specifier in combination with
10396 `volatile' is valid. */
10397
10398 if (TREE_CODE (type) != REFERENCE_TYPE)
10399 {
10400 type_quals |= TYPE_QUAL_CONST;
10401 type = cp_build_qualified_type (type, type_quals);
10402 }
10403 }
10404
10405 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
10406 && TREE_CODE (type) != FUNCTION_TYPE
10407 && TREE_CODE (type) != METHOD_TYPE
10408 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
10409 {
10410 error ("template-id %qD used as a declarator",
10411 unqualified_id);
10412 unqualified_id = dname;
10413 }
10414
10415 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
10416 qualified with a class-name, turn it into a METHOD_TYPE, unless
10417 we know that the function is static. We take advantage of this
10418 opportunity to do other processing that pertains to entities
10419 explicitly declared to be class members. Note that if DECLARATOR
10420 is non-NULL, we know it is a cdk_id declarator; otherwise, we
10421 would not have exited the loop above. */
10422 if (declarator
10423 && declarator->u.id.qualifying_scope
10424 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
10425 {
10426 ctype = declarator->u.id.qualifying_scope;
10427 ctype = TYPE_MAIN_VARIANT (ctype);
10428 template_count = num_template_headers_for_class (ctype);
10429
10430 if (ctype == current_class_type)
10431 {
10432 if (friendp)
10433 {
10434 permerror (input_location, "member functions are implicitly friends of their class");
10435 friendp = 0;
10436 }
10437 else
10438 permerror (declarator->id_loc,
10439 "extra qualification %<%T::%> on member %qs",
10440 ctype, name);
10441 }
10442 else if (/* If the qualifying type is already complete, then we
10443 can skip the following checks. */
10444 !COMPLETE_TYPE_P (ctype)
10445 && (/* If the function is being defined, then
10446 qualifying type must certainly be complete. */
10447 funcdef_flag
10448 /* A friend declaration of "T::f" is OK, even if
10449 "T" is a template parameter. But, if this
10450 function is not a friend, the qualifying type
10451 must be a class. */
10452 || (!friendp && !CLASS_TYPE_P (ctype))
10453 /* For a declaration, the type need not be
10454 complete, if either it is dependent (since there
10455 is no meaningful definition of complete in that
10456 case) or the qualifying class is currently being
10457 defined. */
10458 || !(dependent_type_p (ctype)
10459 || currently_open_class (ctype)))
10460 /* Check that the qualifying type is complete. */
10461 && !complete_type_or_else (ctype, NULL_TREE))
10462 return error_mark_node;
10463 else if (TREE_CODE (type) == FUNCTION_TYPE)
10464 {
10465 if (current_class_type
10466 && (!friendp || funcdef_flag))
10467 {
10468 error (funcdef_flag
10469 ? G_("cannot define member function %<%T::%s%> "
10470 "within %<%T%>")
10471 : G_("cannot declare member function %<%T::%s%> "
10472 "within %<%T%>"),
10473 ctype, name, current_class_type);
10474 return error_mark_node;
10475 }
10476 }
10477 else if (typedef_p && current_class_type)
10478 {
10479 error ("cannot declare member %<%T::%s%> within %qT",
10480 ctype, name, current_class_type);
10481 return error_mark_node;
10482 }
10483 }
10484
10485 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
10486 ctype = current_class_type;
10487
10488 /* Now TYPE has the actual type. */
10489
10490 if (returned_attrs)
10491 {
10492 if (attrlist)
10493 *attrlist = chainon (returned_attrs, *attrlist);
10494 else
10495 attrlist = &returned_attrs;
10496 }
10497
10498 if (declarator
10499 && declarator->kind == cdk_id
10500 && declarator->std_attributes)
10501 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
10502 a declarator-id appertains to the entity that is declared. */
10503 *attrlist = chainon (*attrlist, declarator->std_attributes);
10504
10505 /* Handle parameter packs. */
10506 if (parameter_pack_p)
10507 {
10508 if (decl_context == PARM)
10509 /* Turn the type into a pack expansion.*/
10510 type = make_pack_expansion (type);
10511 else
10512 error ("non-parameter %qs cannot be a parameter pack", name);
10513 }
10514
10515 /* Did array size calculations overflow or does the array cover more
10516 than half of the address-space? */
10517 if (TREE_CODE (type) == ARRAY_TYPE
10518 && COMPLETE_TYPE_P (type)
10519 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
10520 && ! valid_constant_size_p (TYPE_SIZE_UNIT (type)))
10521 {
10522 error ("size of array %qs is too large", name);
10523 /* If we proceed with the array type as it is, we'll eventually
10524 crash in tree_to_[su]hwi(). */
10525 type = error_mark_node;
10526 }
10527
10528 if ((decl_context == FIELD || decl_context == PARM)
10529 && !processing_template_decl
10530 && variably_modified_type_p (type, NULL_TREE))
10531 {
10532 if (decl_context == FIELD)
10533 error ("data member may not have variably modified type %qT", type);
10534 else
10535 error ("parameter may not have variably modified type %qT", type);
10536 type = error_mark_node;
10537 }
10538
10539 if (explicitp == 1 || (explicitp && friendp))
10540 {
10541 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
10542 in the declaration of a constructor or conversion function within
10543 a class definition. */
10544 if (!current_class_type)
10545 error_at (declspecs->locations[ds_explicit],
10546 "%<explicit%> outside class declaration");
10547 else if (friendp)
10548 error_at (declspecs->locations[ds_explicit],
10549 "%<explicit%> in friend declaration");
10550 else
10551 error_at (declspecs->locations[ds_explicit],
10552 "only declarations of constructors and conversion operators "
10553 "can be %<explicit%>");
10554 explicitp = 0;
10555 }
10556
10557 if (storage_class == sc_mutable)
10558 {
10559 if (decl_context != FIELD || friendp)
10560 {
10561 error ("non-member %qs cannot be declared %<mutable%>", name);
10562 storage_class = sc_none;
10563 }
10564 else if (decl_context == TYPENAME || typedef_p)
10565 {
10566 error ("non-object member %qs cannot be declared %<mutable%>", name);
10567 storage_class = sc_none;
10568 }
10569 else if (TREE_CODE (type) == FUNCTION_TYPE
10570 || TREE_CODE (type) == METHOD_TYPE)
10571 {
10572 error ("function %qs cannot be declared %<mutable%>", name);
10573 storage_class = sc_none;
10574 }
10575 else if (staticp)
10576 {
10577 error ("static %qs cannot be declared %<mutable%>", name);
10578 storage_class = sc_none;
10579 }
10580 else if (type_quals & TYPE_QUAL_CONST)
10581 {
10582 error ("const %qs cannot be declared %<mutable%>", name);
10583 storage_class = sc_none;
10584 }
10585 else if (TREE_CODE (type) == REFERENCE_TYPE)
10586 {
10587 permerror (input_location, "reference %qs cannot be declared "
10588 "%<mutable%>", name);
10589 storage_class = sc_none;
10590 }
10591 }
10592
10593 /* If this is declaring a typedef name, return a TYPE_DECL. */
10594 if (typedef_p && decl_context != TYPENAME)
10595 {
10596 tree decl;
10597
10598 /* Note that the grammar rejects storage classes
10599 in typenames, fields or parameters. */
10600 if (current_lang_name == lang_name_java)
10601 TYPE_FOR_JAVA (type) = 1;
10602
10603 /* This declaration:
10604
10605 typedef void f(int) const;
10606
10607 declares a function type which is not a member of any
10608 particular class, but which is cv-qualified; for
10609 example "f S::*" declares a pointer to a const-qualified
10610 member function of S. We record the cv-qualification in the
10611 function type. */
10612 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
10613 {
10614 type = apply_memfn_quals (type, memfn_quals, rqual);
10615
10616 /* We have now dealt with these qualifiers. */
10617 memfn_quals = TYPE_UNQUALIFIED;
10618 rqual = REF_QUAL_NONE;
10619 }
10620
10621 if (type_uses_auto (type))
10622 {
10623 error ("typedef declared %<auto%>");
10624 type = error_mark_node;
10625 }
10626
10627 if (reqs)
10628 error_at (location_of (reqs), "requires-clause on typedef");
10629
10630 if (decl_context == FIELD)
10631 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
10632 else
10633 decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
10634 if (id_declarator && declarator->u.id.qualifying_scope) {
10635 error_at (DECL_SOURCE_LOCATION (decl),
10636 "typedef name may not be a nested-name-specifier");
10637 TREE_TYPE (decl) = error_mark_node;
10638 }
10639
10640 if (decl_context != FIELD)
10641 {
10642 if (!current_function_decl)
10643 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
10644 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl)
10645 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
10646 (current_function_decl)))
10647 /* The TYPE_DECL is "abstract" because there will be
10648 clones of this constructor/destructor, and there will
10649 be copies of this TYPE_DECL generated in those
10650 clones. The decloning optimization (for space) may
10651 revert this subsequently if it determines that
10652 the clones should share a common implementation. */
10653 DECL_ABSTRACT_P (decl) = true;
10654 }
10655 else if (current_class_type
10656 && constructor_name_p (unqualified_id, current_class_type))
10657 permerror (input_location, "ISO C++ forbids nested type %qD with same name "
10658 "as enclosing class",
10659 unqualified_id);
10660
10661 /* If the user declares "typedef struct {...} foo" then the
10662 struct will have an anonymous name. Fill that name in now.
10663 Nothing can refer to it, so nothing needs know about the name
10664 change. */
10665 if (type != error_mark_node
10666 && unqualified_id
10667 && TYPE_NAME (type)
10668 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10669 && TYPE_ANONYMOUS_P (type)
10670 && declspecs->type_definition_p
10671 && attributes_naming_typedef_ok (*attrlist)
10672 && cp_type_quals (type) == TYPE_UNQUALIFIED)
10673 {
10674 tree t;
10675
10676 /* Replace the anonymous name with the real name everywhere. */
10677 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
10678 {
10679 if (anon_aggrname_p (TYPE_IDENTIFIER (t)))
10680 /* We do not rename the debug info representing the
10681 anonymous tagged type because the standard says in
10682 [dcl.typedef] that the naming applies only for
10683 linkage purposes. */
10684 /*debug_hooks->set_name (t, decl);*/
10685 TYPE_NAME (t) = decl;
10686 }
10687
10688 if (TYPE_LANG_SPECIFIC (type))
10689 TYPE_WAS_ANONYMOUS (type) = 1;
10690
10691 /* If this is a typedef within a template class, the nested
10692 type is a (non-primary) template. The name for the
10693 template needs updating as well. */
10694 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
10695 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
10696 = TYPE_IDENTIFIER (type);
10697
10698 /* Adjust linkage now that we aren't anonymous anymore. */
10699 reset_type_linkage (type);
10700
10701 /* FIXME remangle member functions; member functions of a
10702 type with external linkage have external linkage. */
10703 }
10704
10705 if (signed_p
10706 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
10707 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
10708
10709 bad_specifiers (decl, BSP_TYPE, virtualp,
10710 memfn_quals != TYPE_UNQUALIFIED,
10711 inlinep, friendp, raises != NULL_TREE);
10712
10713 if (decl_spec_seq_has_spec_p (declspecs, ds_alias))
10714 /* Acknowledge that this was written:
10715 `using analias = atype;'. */
10716 TYPE_DECL_ALIAS_P (decl) = 1;
10717
10718 return decl;
10719 }
10720
10721 /* Detect the case of an array type of unspecified size
10722 which came, as such, direct from a typedef name.
10723 We must copy the type, so that the array's domain can be
10724 individually set by the object's initializer. */
10725
10726 if (type && typedef_type
10727 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
10728 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
10729 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
10730
10731 /* Detect where we're using a typedef of function type to declare a
10732 function. PARMS will not be set, so we must create it now. */
10733
10734 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
10735 {
10736 tree decls = NULL_TREE;
10737 tree args;
10738
10739 for (args = TYPE_ARG_TYPES (type);
10740 args && args != void_list_node;
10741 args = TREE_CHAIN (args))
10742 {
10743 tree decl = cp_build_parm_decl (NULL_TREE, TREE_VALUE (args));
10744
10745 DECL_CHAIN (decl) = decls;
10746 decls = decl;
10747 }
10748
10749 parms = nreverse (decls);
10750
10751 if (decl_context != TYPENAME)
10752 {
10753 /* The qualifiers on the function type become the qualifiers on
10754 the non-static member function. */
10755 memfn_quals |= type_memfn_quals (type);
10756 rqual = type_memfn_rqual (type);
10757 type_quals = TYPE_UNQUALIFIED;
10758 }
10759 }
10760
10761 /* If this is a type name (such as, in a cast or sizeof),
10762 compute the type and return it now. */
10763
10764 if (decl_context == TYPENAME)
10765 {
10766 /* Note that here we don't care about type_quals. */
10767
10768 /* Special case: "friend class foo" looks like a TYPENAME context. */
10769 if (friendp)
10770 {
10771 if (inlinep)
10772 {
10773 error ("%<inline%> specified for friend class declaration");
10774 inlinep = 0;
10775 }
10776
10777 if (!current_aggr)
10778 {
10779 /* Don't allow friend declaration without a class-key. */
10780 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
10781 permerror (input_location, "template parameters cannot be friends");
10782 else if (TREE_CODE (type) == TYPENAME_TYPE)
10783 permerror (input_location, "friend declaration requires class-key, "
10784 "i.e. %<friend class %T::%D%>",
10785 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
10786 else
10787 permerror (input_location, "friend declaration requires class-key, "
10788 "i.e. %<friend %#T%>",
10789 type);
10790 }
10791
10792 /* Only try to do this stuff if we didn't already give up. */
10793 if (type != integer_type_node)
10794 {
10795 /* A friendly class? */
10796 if (current_class_type)
10797 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
10798 /*complain=*/true);
10799 else
10800 error ("trying to make class %qT a friend of global scope",
10801 type);
10802
10803 type = void_type_node;
10804 }
10805 }
10806 else if (memfn_quals || rqual)
10807 {
10808 if (ctype == NULL_TREE
10809 && TREE_CODE (type) == METHOD_TYPE)
10810 ctype = TYPE_METHOD_BASETYPE (type);
10811
10812 if (ctype)
10813 type = build_memfn_type (type, ctype, memfn_quals, rqual);
10814 /* Core issue #547: need to allow this in template type args.
10815 Allow it in general in C++11 for alias-declarations. */
10816 else if ((template_type_arg || cxx_dialect >= cxx11)
10817 && TREE_CODE (type) == FUNCTION_TYPE)
10818 type = apply_memfn_quals (type, memfn_quals, rqual);
10819 else
10820 error ("invalid qualifiers on non-member function type");
10821 }
10822
10823 if (reqs)
10824 error_at (location_of (reqs), "requires-clause on type-id");
10825
10826 return type;
10827 }
10828 else if (unqualified_id == NULL_TREE && decl_context != PARM
10829 && decl_context != CATCHPARM
10830 && TREE_CODE (type) != UNION_TYPE
10831 && ! bitfield)
10832 {
10833 error ("abstract declarator %qT used as declaration", type);
10834 return error_mark_node;
10835 }
10836
10837 /* Only functions may be declared using an operator-function-id. */
10838 if (unqualified_id
10839 && IDENTIFIER_OPNAME_P (unqualified_id)
10840 && TREE_CODE (type) != FUNCTION_TYPE
10841 && TREE_CODE (type) != METHOD_TYPE)
10842 {
10843 error ("declaration of %qD as non-function", unqualified_id);
10844 return error_mark_node;
10845 }
10846
10847 if (reqs
10848 && TREE_CODE (type) != FUNCTION_TYPE
10849 && TREE_CODE (type) != METHOD_TYPE)
10850 error_at (location_of (reqs),
10851 "requires-clause on declaration of non-function type %qT",
10852 type);
10853
10854 /* We don't check parameter types here because we can emit a better
10855 error message later. */
10856 if (decl_context != PARM)
10857 {
10858 type = check_var_type (unqualified_id, type);
10859 if (type == error_mark_node)
10860 return error_mark_node;
10861 }
10862
10863 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
10864 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
10865
10866 if (decl_context == PARM || decl_context == CATCHPARM)
10867 {
10868 if (ctype || in_namespace)
10869 error ("cannot use %<::%> in parameter declaration");
10870
10871 if (type_uses_auto (type))
10872 {
10873 if (cxx_dialect >= cxx14)
10874 error ("%<auto%> parameter not permitted in this context");
10875 else
10876 error ("parameter declared %<auto%>");
10877 type = error_mark_node;
10878 }
10879
10880 /* A parameter declared as an array of T is really a pointer to T.
10881 One declared as a function is really a pointer to a function.
10882 One declared as a member is really a pointer to member. */
10883
10884 if (TREE_CODE (type) == ARRAY_TYPE)
10885 {
10886 /* Transfer const-ness of array into that of type pointed to. */
10887 type = build_pointer_type (TREE_TYPE (type));
10888 type_quals = TYPE_UNQUALIFIED;
10889 array_parameter_p = true;
10890 }
10891 else if (TREE_CODE (type) == FUNCTION_TYPE)
10892 type = build_pointer_type (type);
10893 }
10894
10895 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
10896 && !NEW_DELETE_OPNAME_P (unqualified_id))
10897 {
10898 cp_cv_quals real_quals = memfn_quals;
10899 if (cxx_dialect < cxx14 && constexpr_p
10900 && sfk != sfk_constructor && sfk != sfk_destructor)
10901 real_quals |= TYPE_QUAL_CONST;
10902 type = build_memfn_type (type, ctype, real_quals, rqual);
10903 }
10904
10905 {
10906 tree decl;
10907
10908 if (decl_context == PARM)
10909 {
10910 decl = cp_build_parm_decl (unqualified_id, type);
10911 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
10912
10913 bad_specifiers (decl, BSP_PARM, virtualp,
10914 memfn_quals != TYPE_UNQUALIFIED,
10915 inlinep, friendp, raises != NULL_TREE);
10916 }
10917 else if (decl_context == FIELD)
10918 {
10919 if (!staticp && !friendp && TREE_CODE (type) != METHOD_TYPE
10920 && type_uses_auto (type))
10921 {
10922 error ("non-static data member declared %<auto%>");
10923 type = error_mark_node;
10924 }
10925
10926 /* The C99 flexible array extension. */
10927 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
10928 && TYPE_DOMAIN (type) == NULL_TREE)
10929 {
10930 tree itype = compute_array_index_type (dname, integer_zero_node,
10931 tf_warning_or_error);
10932 type = build_cplus_array_type (TREE_TYPE (type), itype);
10933 }
10934
10935 if (type == error_mark_node)
10936 {
10937 /* Happens when declaring arrays of sizes which
10938 are error_mark_node, for example. */
10939 decl = NULL_TREE;
10940 }
10941 else if (in_namespace && !friendp)
10942 {
10943 /* Something like struct S { int N::j; }; */
10944 error ("invalid use of %<::%>");
10945 return error_mark_node;
10946 }
10947 else if (TREE_CODE (type) == FUNCTION_TYPE
10948 || TREE_CODE (type) == METHOD_TYPE)
10949 {
10950 int publicp = 0;
10951 tree function_context;
10952
10953 if (friendp == 0)
10954 {
10955 /* This should never happen in pure C++ (the check
10956 could be an assert). It could happen in
10957 Objective-C++ if someone writes invalid code that
10958 uses a function declaration for an instance
10959 variable or property (instance variables and
10960 properties are parsed as FIELD_DECLs, but they are
10961 part of an Objective-C class, not a C++ class).
10962 That code is invalid and is caught by this
10963 check. */
10964 if (!ctype)
10965 {
10966 error ("declaration of function %qD in invalid context",
10967 unqualified_id);
10968 return error_mark_node;
10969 }
10970
10971 /* ``A union may [ ... ] not [ have ] virtual functions.''
10972 ARM 9.5 */
10973 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
10974 {
10975 error ("function %qD declared virtual inside a union",
10976 unqualified_id);
10977 return error_mark_node;
10978 }
10979
10980 if (NEW_DELETE_OPNAME_P (unqualified_id))
10981 {
10982 if (virtualp)
10983 {
10984 error ("%qD cannot be declared virtual, since it "
10985 "is always static",
10986 unqualified_id);
10987 virtualp = 0;
10988 }
10989 }
10990 }
10991
10992 /* Check that the name used for a destructor makes sense. */
10993 if (sfk == sfk_destructor)
10994 {
10995 tree uqname = id_declarator->u.id.unqualified_name;
10996
10997 if (!ctype)
10998 {
10999 gcc_assert (friendp);
11000 error ("expected qualified name in friend declaration "
11001 "for destructor %qD", uqname);
11002 return error_mark_node;
11003 }
11004
11005 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
11006 {
11007 error ("declaration of %qD as member of %qT",
11008 uqname, ctype);
11009 return error_mark_node;
11010 }
11011 if (concept_p)
11012 {
11013 error ("a destructor cannot be %<concept%>");
11014 return error_mark_node;
11015 }
11016 if (constexpr_p)
11017 {
11018 error ("a destructor cannot be %<constexpr%>");
11019 return error_mark_node;
11020 }
11021 }
11022 else if (sfk == sfk_constructor && friendp && !ctype)
11023 {
11024 error ("expected qualified name in friend declaration "
11025 "for constructor %qD",
11026 id_declarator->u.id.unqualified_name);
11027 return error_mark_node;
11028 }
11029 if (sfk == sfk_constructor)
11030 if (concept_p)
11031 {
11032 error ("a constructor cannot be %<concept%>");
11033 return error_mark_node;
11034 }
11035 if (concept_p)
11036 {
11037 error ("a concept cannot be a member function");
11038 concept_p = false;
11039 }
11040
11041 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
11042 {
11043 tree tmpl = TREE_OPERAND (unqualified_id, 0);
11044 if (variable_template_p (tmpl))
11045 {
11046 error ("specialization of variable template %qD "
11047 "declared as function", tmpl);
11048 inform (DECL_SOURCE_LOCATION (tmpl),
11049 "variable template declared here");
11050 return error_mark_node;
11051 }
11052 }
11053
11054 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
11055 function_context = (ctype != NULL_TREE) ?
11056 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
11057 publicp = (! friendp || ! staticp)
11058 && function_context == NULL_TREE;
11059
11060 if (late_return_type_p)
11061 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
11062
11063 decl = grokfndecl (ctype, type,
11064 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
11065 ? unqualified_id : dname,
11066 parms,
11067 unqualified_id,
11068 reqs,
11069 virtualp, flags, memfn_quals, rqual, raises,
11070 friendp ? -1 : 0, friendp, publicp,
11071 inlinep | (2 * constexpr_p) | (4 * concept_p),
11072 initialized == SD_DELETED, sfk,
11073 funcdef_flag, template_count, in_namespace,
11074 attrlist, declarator->id_loc);
11075 decl = set_virt_specifiers (decl, virt_specifiers);
11076 if (decl == NULL_TREE)
11077 return error_mark_node;
11078 #if 0
11079 /* This clobbers the attrs stored in `decl' from `attrlist'. */
11080 /* The decl and setting of decl_attr is also turned off. */
11081 decl = build_decl_attribute_variant (decl, decl_attr);
11082 #endif
11083
11084 /* [class.conv.ctor]
11085
11086 A constructor declared without the function-specifier
11087 explicit that can be called with a single parameter
11088 specifies a conversion from the type of its first
11089 parameter to the type of its class. Such a constructor
11090 is called a converting constructor. */
11091 if (explicitp == 2)
11092 DECL_NONCONVERTING_P (decl) = 1;
11093 }
11094 else if (!staticp && !dependent_type_p (type)
11095 && !COMPLETE_TYPE_P (complete_type (type))
11096 && (TREE_CODE (type) != ARRAY_TYPE
11097 || !COMPLETE_TYPE_P (TREE_TYPE (type))
11098 || initialized == 0))
11099 {
11100 if (unqualified_id)
11101 {
11102 error ("field %qD has incomplete type %qT",
11103 unqualified_id, type);
11104 cxx_incomplete_type_inform (strip_array_types (type));
11105 }
11106 else
11107 error ("name %qT has incomplete type", type);
11108
11109 type = error_mark_node;
11110 decl = NULL_TREE;
11111 }
11112 else
11113 {
11114 if (friendp)
11115 {
11116 error ("%qE is neither function nor member function; "
11117 "cannot be declared friend", unqualified_id);
11118 friendp = 0;
11119 }
11120 decl = NULL_TREE;
11121 }
11122
11123 if (friendp)
11124 {
11125 /* Friends are treated specially. */
11126 if (ctype == current_class_type)
11127 ; /* We already issued a permerror. */
11128 else if (decl && DECL_NAME (decl))
11129 {
11130 if (template_class_depth (current_class_type) == 0)
11131 {
11132 decl = check_explicit_specialization
11133 (unqualified_id, decl, template_count,
11134 2 * funcdef_flag + 4);
11135 if (decl == error_mark_node)
11136 return error_mark_node;
11137 }
11138
11139 decl = do_friend (ctype, unqualified_id, decl,
11140 *attrlist, flags,
11141 funcdef_flag);
11142 return decl;
11143 }
11144 else
11145 return error_mark_node;
11146 }
11147
11148 /* Structure field. It may not be a function, except for C++. */
11149
11150 if (decl == NULL_TREE)
11151 {
11152 if (staticp)
11153 {
11154 /* C++ allows static class members. All other work
11155 for this is done by grokfield. */
11156 decl = build_lang_decl_loc (declarator
11157 ? declarator->id_loc
11158 : input_location,
11159 VAR_DECL, unqualified_id, type);
11160 set_linkage_for_static_data_member (decl);
11161 /* Even if there is an in-class initialization, DECL
11162 is considered undefined until an out-of-class
11163 definition is provided. */
11164 DECL_EXTERNAL (decl) = 1;
11165
11166 if (thread_p)
11167 {
11168 CP_DECL_THREAD_LOCAL_P (decl) = true;
11169 if (!processing_template_decl)
11170 set_decl_tls_model (decl, decl_default_tls_model (decl));
11171 if (declspecs->gnu_thread_keyword_p)
11172 SET_DECL_GNU_TLS_P (decl);
11173 }
11174 if (concept_p)
11175 error ("static data member %qE declared %<concept%>",
11176 unqualified_id);
11177 else if (constexpr_p && !initialized)
11178 {
11179 error ("constexpr static data member %qD must have an "
11180 "initializer", decl);
11181 constexpr_p = false;
11182 }
11183 }
11184 else
11185 {
11186 if (concept_p)
11187 error ("non-static data member %qE declared %<concept%>",
11188 unqualified_id);
11189 else if (constexpr_p)
11190 {
11191 error ("non-static data member %qE declared %<constexpr%>",
11192 unqualified_id);
11193 constexpr_p = false;
11194 }
11195 decl = build_decl (input_location,
11196 FIELD_DECL, unqualified_id, type);
11197 DECL_NONADDRESSABLE_P (decl) = bitfield;
11198 if (bitfield && !unqualified_id)
11199 TREE_NO_WARNING (decl) = 1;
11200
11201 if (storage_class == sc_mutable)
11202 {
11203 DECL_MUTABLE_P (decl) = 1;
11204 storage_class = sc_none;
11205 }
11206
11207 if (initialized)
11208 {
11209 /* An attempt is being made to initialize a non-static
11210 member. This is new in C++11. */
11211 maybe_warn_cpp0x (CPP0X_NSDMI);
11212
11213 /* If this has been parsed with static storage class, but
11214 errors forced staticp to be cleared, ensure NSDMI is
11215 not present. */
11216 if (declspecs->storage_class == sc_static)
11217 DECL_INITIAL (decl) = error_mark_node;
11218 }
11219 }
11220
11221 bad_specifiers (decl, BSP_FIELD, virtualp,
11222 memfn_quals != TYPE_UNQUALIFIED,
11223 inlinep, friendp, raises != NULL_TREE);
11224 }
11225 }
11226 else if (TREE_CODE (type) == FUNCTION_TYPE
11227 || TREE_CODE (type) == METHOD_TYPE)
11228 {
11229 tree original_name;
11230 int publicp = 0;
11231
11232 if (!unqualified_id)
11233 return error_mark_node;
11234
11235 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
11236 original_name = dname;
11237 else
11238 original_name = unqualified_id;
11239
11240 if (storage_class == sc_auto)
11241 error ("storage class %<auto%> invalid for function %qs", name);
11242 else if (storage_class == sc_register)
11243 error ("storage class %<register%> invalid for function %qs", name);
11244 else if (thread_p)
11245 {
11246 if (declspecs->gnu_thread_keyword_p)
11247 error ("storage class %<__thread%> invalid for function %qs",
11248 name);
11249 else
11250 error ("storage class %<thread_local%> invalid for function %qs",
11251 name);
11252 }
11253
11254 if (virt_specifiers)
11255 error ("virt-specifiers in %qs not allowed outside a class definition", name);
11256 /* Function declaration not at top level.
11257 Storage classes other than `extern' are not allowed
11258 and `extern' makes no difference. */
11259 if (! toplevel_bindings_p ()
11260 && (storage_class == sc_static
11261 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
11262 && pedantic)
11263 {
11264 if (storage_class == sc_static)
11265 pedwarn (input_location, OPT_Wpedantic,
11266 "%<static%> specified invalid for function %qs "
11267 "declared out of global scope", name);
11268 else
11269 pedwarn (input_location, OPT_Wpedantic,
11270 "%<inline%> specifier invalid for function %qs "
11271 "declared out of global scope", name);
11272 }
11273
11274 if (ctype == NULL_TREE)
11275 {
11276 if (virtualp)
11277 {
11278 error ("virtual non-class function %qs", name);
11279 virtualp = 0;
11280 }
11281 else if (sfk == sfk_constructor
11282 || sfk == sfk_destructor)
11283 {
11284 error (funcdef_flag
11285 ? G_("%qs defined in a non-class scope")
11286 : G_("%qs declared in a non-class scope"), name);
11287 sfk = sfk_none;
11288 }
11289 }
11290
11291 /* Record whether the function is public. */
11292 publicp = (ctype != NULL_TREE
11293 || storage_class != sc_static);
11294
11295 if (late_return_type_p)
11296 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
11297
11298 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
11299 reqs, virtualp, flags, memfn_quals, rqual, raises,
11300 1, friendp,
11301 publicp,
11302 inlinep | (2 * constexpr_p) | (4 * concept_p),
11303 initialized == SD_DELETED,
11304 sfk,
11305 funcdef_flag,
11306 template_count, in_namespace, attrlist,
11307 declarator->id_loc);
11308 if (decl == NULL_TREE)
11309 return error_mark_node;
11310
11311 if (staticp == 1)
11312 {
11313 int invalid_static = 0;
11314
11315 /* Don't allow a static member function in a class, and forbid
11316 declaring main to be static. */
11317 if (TREE_CODE (type) == METHOD_TYPE)
11318 {
11319 permerror (input_location, "cannot declare member function %qD to have "
11320 "static linkage", decl);
11321 invalid_static = 1;
11322 }
11323 else if (current_function_decl)
11324 {
11325 /* FIXME need arm citation */
11326 error ("cannot declare static function inside another function");
11327 invalid_static = 1;
11328 }
11329
11330 if (invalid_static)
11331 {
11332 staticp = 0;
11333 storage_class = sc_none;
11334 }
11335 }
11336 }
11337 else
11338 {
11339 /* It's a variable. */
11340
11341 /* An uninitialized decl with `extern' is a reference. */
11342 decl = grokvardecl (type, dname, unqualified_id,
11343 declspecs,
11344 initialized,
11345 ((type_quals & TYPE_QUAL_CONST) != 0) | (2 * concept_p),
11346 template_count,
11347 ctype ? ctype : in_namespace);
11348 if (decl == NULL_TREE)
11349 return error_mark_node;
11350
11351 bad_specifiers (decl, BSP_VAR, virtualp,
11352 memfn_quals != TYPE_UNQUALIFIED,
11353 inlinep, friendp, raises != NULL_TREE);
11354
11355 if (ctype)
11356 {
11357 DECL_CONTEXT (decl) = ctype;
11358 if (staticp == 1)
11359 {
11360 permerror (input_location, "%<static%> may not be used when defining "
11361 "(as opposed to declaring) a static data member");
11362 staticp = 0;
11363 storage_class = sc_none;
11364 }
11365 if (storage_class == sc_register && TREE_STATIC (decl))
11366 {
11367 error ("static member %qD declared %<register%>", decl);
11368 storage_class = sc_none;
11369 }
11370 if (storage_class == sc_extern && pedantic)
11371 {
11372 pedwarn (input_location, OPT_Wpedantic,
11373 "cannot explicitly declare member %q#D to have "
11374 "extern linkage", decl);
11375 storage_class = sc_none;
11376 }
11377 }
11378 else if (constexpr_p && DECL_EXTERNAL (decl))
11379 {
11380 error ("declaration of constexpr variable %qD is not a definition",
11381 decl);
11382 constexpr_p = false;
11383 }
11384 }
11385
11386 if (storage_class == sc_extern && initialized && !funcdef_flag)
11387 {
11388 if (toplevel_bindings_p ())
11389 {
11390 /* It's common practice (and completely valid) to have a const
11391 be initialized and declared extern. */
11392 if (!(type_quals & TYPE_QUAL_CONST))
11393 warning (0, "%qs initialized and declared %<extern%>", name);
11394 }
11395 else
11396 {
11397 error ("%qs has both %<extern%> and initializer", name);
11398 return error_mark_node;
11399 }
11400 }
11401
11402 /* Record `register' declaration for warnings on &
11403 and in case doing stupid register allocation. */
11404
11405 if (storage_class == sc_register)
11406 DECL_REGISTER (decl) = 1;
11407 else if (storage_class == sc_extern)
11408 DECL_THIS_EXTERN (decl) = 1;
11409 else if (storage_class == sc_static)
11410 DECL_THIS_STATIC (decl) = 1;
11411
11412 /* Set constexpr flag on vars (functions got it in grokfndecl). */
11413 if (constexpr_p && VAR_P (decl))
11414 DECL_DECLARED_CONSTEXPR_P (decl) = true;
11415
11416 /* Record constancy and volatility on the DECL itself . There's
11417 no need to do this when processing a template; we'll do this
11418 for the instantiated declaration based on the type of DECL. */
11419 if (!processing_template_decl)
11420 cp_apply_type_quals_to_decl (type_quals, decl);
11421
11422 return decl;
11423 }
11424 }
11425 \f
11426 /* Subroutine of start_function. Ensure that each of the parameter
11427 types (as listed in PARMS) is complete, as is required for a
11428 function definition. */
11429
11430 static void
11431 require_complete_types_for_parms (tree parms)
11432 {
11433 for (; parms; parms = DECL_CHAIN (parms))
11434 {
11435 if (dependent_type_p (TREE_TYPE (parms)))
11436 continue;
11437 if (!VOID_TYPE_P (TREE_TYPE (parms))
11438 && complete_type_or_else (TREE_TYPE (parms), parms))
11439 {
11440 relayout_decl (parms);
11441 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
11442 }
11443 else
11444 /* grokparms or complete_type_or_else will have already issued
11445 an error. */
11446 TREE_TYPE (parms) = error_mark_node;
11447 }
11448 }
11449
11450 /* Returns nonzero if T is a local variable. */
11451
11452 int
11453 local_variable_p (const_tree t)
11454 {
11455 if ((VAR_P (t)
11456 /* A VAR_DECL with a context that is a _TYPE is a static data
11457 member. */
11458 && !TYPE_P (CP_DECL_CONTEXT (t))
11459 /* Any other non-local variable must be at namespace scope. */
11460 && !DECL_NAMESPACE_SCOPE_P (t))
11461 || (TREE_CODE (t) == PARM_DECL))
11462 return 1;
11463
11464 return 0;
11465 }
11466
11467 /* Like local_variable_p, but suitable for use as a tree-walking
11468 function. */
11469
11470 static tree
11471 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
11472 void * /*data*/)
11473 {
11474 if (local_variable_p (*tp)
11475 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
11476 return *tp;
11477 else if (TYPE_P (*tp))
11478 *walk_subtrees = 0;
11479
11480 return NULL_TREE;
11481 }
11482
11483 /* Check that ARG, which is a default-argument expression for a
11484 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
11485 something goes wrong. DECL may also be a _TYPE node, rather than a
11486 DECL, if there is no DECL available. */
11487
11488 tree
11489 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
11490 {
11491 tree var;
11492 tree decl_type;
11493
11494 if (TREE_CODE (arg) == DEFAULT_ARG)
11495 /* We get a DEFAULT_ARG when looking at an in-class declaration
11496 with a default argument. Ignore the argument for now; we'll
11497 deal with it after the class is complete. */
11498 return arg;
11499
11500 if (TYPE_P (decl))
11501 {
11502 decl_type = decl;
11503 decl = NULL_TREE;
11504 }
11505 else
11506 decl_type = TREE_TYPE (decl);
11507
11508 if (arg == error_mark_node
11509 || decl == error_mark_node
11510 || TREE_TYPE (arg) == error_mark_node
11511 || decl_type == error_mark_node)
11512 /* Something already went wrong. There's no need to check
11513 further. */
11514 return error_mark_node;
11515
11516 /* [dcl.fct.default]
11517
11518 A default argument expression is implicitly converted to the
11519 parameter type. */
11520 ++cp_unevaluated_operand;
11521 perform_implicit_conversion_flags (decl_type, arg, complain,
11522 LOOKUP_IMPLICIT);
11523 --cp_unevaluated_operand;
11524
11525 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
11526 the call sites. */
11527 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
11528 && null_ptr_cst_p (arg))
11529 return nullptr_node;
11530
11531 /* [dcl.fct.default]
11532
11533 Local variables shall not be used in default argument
11534 expressions.
11535
11536 The keyword `this' shall not be used in a default argument of a
11537 member function. */
11538 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
11539 if (var)
11540 {
11541 if (complain & tf_warning_or_error)
11542 {
11543 if (DECL_NAME (var) == this_identifier)
11544 permerror (input_location, "default argument %qE uses %qD",
11545 arg, var);
11546 else
11547 error ("default argument %qE uses local variable %qD", arg, var);
11548 }
11549 return error_mark_node;
11550 }
11551
11552 /* All is well. */
11553 return arg;
11554 }
11555
11556 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
11557
11558 static tree
11559 type_is_deprecated (tree type)
11560 {
11561 enum tree_code code;
11562 if (TREE_DEPRECATED (type))
11563 return type;
11564 if (TYPE_NAME (type)
11565 && TREE_DEPRECATED (TYPE_NAME (type)))
11566 return type;
11567
11568 /* Do warn about using typedefs to a deprecated class. */
11569 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
11570 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
11571
11572 code = TREE_CODE (type);
11573
11574 if (code == POINTER_TYPE || code == REFERENCE_TYPE
11575 || code == OFFSET_TYPE || code == FUNCTION_TYPE
11576 || code == METHOD_TYPE || code == ARRAY_TYPE)
11577 return type_is_deprecated (TREE_TYPE (type));
11578
11579 if (TYPE_PTRMEMFUNC_P (type))
11580 return type_is_deprecated
11581 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
11582
11583 return NULL_TREE;
11584 }
11585
11586 /* Decode the list of parameter types for a function type.
11587 Given the list of things declared inside the parens,
11588 return a list of types.
11589
11590 If this parameter does not end with an ellipsis, we append
11591 void_list_node.
11592
11593 *PARMS is set to the chain of PARM_DECLs created. */
11594
11595 tree
11596 grokparms (tree parmlist, tree *parms)
11597 {
11598 tree result = NULL_TREE;
11599 tree decls = NULL_TREE;
11600 tree parm;
11601 int any_error = 0;
11602
11603 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
11604 {
11605 tree type = NULL_TREE;
11606 tree init = TREE_PURPOSE (parm);
11607 tree decl = TREE_VALUE (parm);
11608 const char *errmsg;
11609
11610 if (parm == void_list_node)
11611 break;
11612
11613 if (! decl || TREE_TYPE (decl) == error_mark_node)
11614 continue;
11615
11616 type = TREE_TYPE (decl);
11617 if (VOID_TYPE_P (type))
11618 {
11619 if (same_type_p (type, void_type_node)
11620 && !init
11621 && !DECL_NAME (decl) && !result
11622 && TREE_CHAIN (parm) == void_list_node)
11623 /* DR 577: A parameter list consisting of a single
11624 unnamed parameter of non-dependent type 'void'. */
11625 break;
11626 else if (cv_qualified_p (type))
11627 error_at (DECL_SOURCE_LOCATION (decl),
11628 "invalid use of cv-qualified type %qT in "
11629 "parameter declaration", type);
11630 else
11631 error_at (DECL_SOURCE_LOCATION (decl),
11632 "invalid use of type %<void%> in parameter "
11633 "declaration");
11634 /* It's not a good idea to actually create parameters of
11635 type `void'; other parts of the compiler assume that a
11636 void type terminates the parameter list. */
11637 type = error_mark_node;
11638 TREE_TYPE (decl) = error_mark_node;
11639 }
11640
11641 if (type != error_mark_node
11642 && TYPE_FOR_JAVA (type)
11643 && MAYBE_CLASS_TYPE_P (type))
11644 {
11645 error ("parameter %qD has Java class type", decl);
11646 type = error_mark_node;
11647 TREE_TYPE (decl) = error_mark_node;
11648 init = NULL_TREE;
11649 }
11650
11651 if (type != error_mark_node
11652 && (errmsg = targetm.invalid_parameter_type (type)))
11653 {
11654 error (errmsg);
11655 type = error_mark_node;
11656 TREE_TYPE (decl) = error_mark_node;
11657 }
11658
11659 if (type != error_mark_node)
11660 {
11661 if (deprecated_state != DEPRECATED_SUPPRESS)
11662 {
11663 tree deptype = type_is_deprecated (type);
11664 if (deptype)
11665 warn_deprecated_use (deptype, NULL_TREE);
11666 }
11667
11668 /* Top-level qualifiers on the parameters are
11669 ignored for function types. */
11670 type = cp_build_qualified_type (type, 0);
11671 if (TREE_CODE (type) == METHOD_TYPE)
11672 {
11673 error ("parameter %qD invalidly declared method type", decl);
11674 type = build_pointer_type (type);
11675 TREE_TYPE (decl) = type;
11676 }
11677 else if (abstract_virtuals_error (decl, type))
11678 any_error = 1; /* Seems like a good idea. */
11679 else if (POINTER_TYPE_P (type))
11680 {
11681 /* [dcl.fct]/6, parameter types cannot contain pointers
11682 (references) to arrays of unknown bound. */
11683 tree t = TREE_TYPE (type);
11684 int ptr = TYPE_PTR_P (type);
11685
11686 while (1)
11687 {
11688 if (TYPE_PTR_P (t))
11689 ptr = 1;
11690 else if (TREE_CODE (t) != ARRAY_TYPE)
11691 break;
11692 else if (!TYPE_DOMAIN (t))
11693 break;
11694 t = TREE_TYPE (t);
11695 }
11696 if (TREE_CODE (t) == ARRAY_TYPE)
11697 error (ptr
11698 ? G_("parameter %qD includes pointer to array of "
11699 "unknown bound %qT")
11700 : G_("parameter %qD includes reference to array of "
11701 "unknown bound %qT"),
11702 decl, t);
11703 }
11704
11705 if (any_error)
11706 init = NULL_TREE;
11707 else if (init && !processing_template_decl)
11708 init = check_default_argument (decl, init, tf_warning_or_error);
11709 }
11710
11711 DECL_CHAIN (decl) = decls;
11712 decls = decl;
11713 result = tree_cons (init, type, result);
11714 }
11715 decls = nreverse (decls);
11716 result = nreverse (result);
11717 if (parm)
11718 result = chainon (result, void_list_node);
11719 *parms = decls;
11720
11721 return result;
11722 }
11723
11724 \f
11725 /* D is a constructor or overloaded `operator='.
11726
11727 Let T be the class in which D is declared. Then, this function
11728 returns:
11729
11730 -1 if D's is an ill-formed constructor or copy assignment operator
11731 whose first parameter is of type `T'.
11732 0 if D is not a copy constructor or copy assignment
11733 operator.
11734 1 if D is a copy constructor or copy assignment operator whose
11735 first parameter is a reference to non-const qualified T.
11736 2 if D is a copy constructor or copy assignment operator whose
11737 first parameter is a reference to const qualified T.
11738
11739 This function can be used as a predicate. Positive values indicate
11740 a copy constructor and nonzero values indicate a copy assignment
11741 operator. */
11742
11743 int
11744 copy_fn_p (const_tree d)
11745 {
11746 tree args;
11747 tree arg_type;
11748 int result = 1;
11749
11750 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11751
11752 if (TREE_CODE (d) == TEMPLATE_DECL
11753 || (DECL_TEMPLATE_INFO (d)
11754 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11755 /* Instantiations of template member functions are never copy
11756 functions. Note that member functions of templated classes are
11757 represented as template functions internally, and we must
11758 accept those as copy functions. */
11759 return 0;
11760
11761 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11762 if (!args)
11763 return 0;
11764
11765 arg_type = TREE_VALUE (args);
11766 if (arg_type == error_mark_node)
11767 return 0;
11768
11769 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
11770 {
11771 /* Pass by value copy assignment operator. */
11772 result = -1;
11773 }
11774 else if (TREE_CODE (arg_type) == REFERENCE_TYPE
11775 && !TYPE_REF_IS_RVALUE (arg_type)
11776 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
11777 {
11778 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
11779 result = 2;
11780 }
11781 else
11782 return 0;
11783
11784 args = TREE_CHAIN (args);
11785
11786 if (args && args != void_list_node && !TREE_PURPOSE (args))
11787 /* There are more non-optional args. */
11788 return 0;
11789
11790 return result;
11791 }
11792
11793 /* D is a constructor or overloaded `operator='.
11794
11795 Let T be the class in which D is declared. Then, this function
11796 returns true when D is a move constructor or move assignment
11797 operator, false otherwise. */
11798
11799 bool
11800 move_fn_p (const_tree d)
11801 {
11802 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11803
11804 if (cxx_dialect == cxx98)
11805 /* There are no move constructors if we are in C++98 mode. */
11806 return false;
11807
11808 if (TREE_CODE (d) == TEMPLATE_DECL
11809 || (DECL_TEMPLATE_INFO (d)
11810 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11811 /* Instantiations of template member functions are never move
11812 functions. Note that member functions of templated classes are
11813 represented as template functions internally, and we must
11814 accept those as move functions. */
11815 return 0;
11816
11817 return move_signature_fn_p (d);
11818 }
11819
11820 /* D is a constructor or overloaded `operator='.
11821
11822 Then, this function returns true when D has the same signature as a move
11823 constructor or move assignment operator (because either it is such a
11824 ctor/op= or it is a template specialization with the same signature),
11825 false otherwise. */
11826
11827 bool
11828 move_signature_fn_p (const_tree d)
11829 {
11830 tree args;
11831 tree arg_type;
11832 bool result = false;
11833
11834 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11835 if (!args)
11836 return 0;
11837
11838 arg_type = TREE_VALUE (args);
11839 if (arg_type == error_mark_node)
11840 return 0;
11841
11842 if (TREE_CODE (arg_type) == REFERENCE_TYPE
11843 && TYPE_REF_IS_RVALUE (arg_type)
11844 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
11845 DECL_CONTEXT (d)))
11846 result = true;
11847
11848 args = TREE_CHAIN (args);
11849
11850 if (args && args != void_list_node && !TREE_PURPOSE (args))
11851 /* There are more non-optional args. */
11852 return false;
11853
11854 return result;
11855 }
11856
11857 /* Remember any special properties of member function DECL. */
11858
11859 void
11860 grok_special_member_properties (tree decl)
11861 {
11862 tree class_type;
11863
11864 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
11865 return;
11866
11867 class_type = DECL_CONTEXT (decl);
11868 if (DECL_CONSTRUCTOR_P (decl))
11869 {
11870 int ctor = copy_fn_p (decl);
11871
11872 if (!DECL_ARTIFICIAL (decl))
11873 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
11874
11875 if (ctor > 0)
11876 {
11877 /* [class.copy]
11878
11879 A non-template constructor for class X is a copy
11880 constructor if its first parameter is of type X&, const
11881 X&, volatile X& or const volatile X&, and either there
11882 are no other parameters or else all other parameters have
11883 default arguments. */
11884 TYPE_HAS_COPY_CTOR (class_type) = 1;
11885 if (user_provided_p (decl))
11886 TYPE_HAS_COMPLEX_COPY_CTOR (class_type) = 1;
11887 if (ctor > 1)
11888 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
11889 }
11890 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
11891 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
11892 else if (move_fn_p (decl) && user_provided_p (decl))
11893 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type) = 1;
11894 else if (is_list_ctor (decl))
11895 TYPE_HAS_LIST_CTOR (class_type) = 1;
11896
11897 if (DECL_DECLARED_CONSTEXPR_P (decl)
11898 && !copy_fn_p (decl) && !move_fn_p (decl))
11899 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
11900 }
11901 else if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
11902 {
11903 /* [class.copy]
11904
11905 A non-template assignment operator for class X is a copy
11906 assignment operator if its parameter is of type X, X&, const
11907 X&, volatile X& or const volatile X&. */
11908
11909 int assop = copy_fn_p (decl);
11910
11911 if (assop)
11912 {
11913 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
11914 if (user_provided_p (decl))
11915 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type) = 1;
11916 if (assop != 1)
11917 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
11918 }
11919 else if (move_fn_p (decl) && user_provided_p (decl))
11920 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type) = 1;
11921 }
11922 /* Destructors are handled in check_methods. */
11923 }
11924
11925 /* Check a constructor DECL has the correct form. Complains
11926 if the class has a constructor of the form X(X). */
11927
11928 int
11929 grok_ctor_properties (const_tree ctype, const_tree decl)
11930 {
11931 int ctor_parm = copy_fn_p (decl);
11932
11933 if (ctor_parm < 0)
11934 {
11935 /* [class.copy]
11936
11937 A declaration of a constructor for a class X is ill-formed if
11938 its first parameter is of type (optionally cv-qualified) X
11939 and either there are no other parameters or else all other
11940 parameters have default arguments.
11941
11942 We *don't* complain about member template instantiations that
11943 have this form, though; they can occur as we try to decide
11944 what constructor to use during overload resolution. Since
11945 overload resolution will never prefer such a constructor to
11946 the non-template copy constructor (which is either explicitly
11947 or implicitly defined), there's no need to worry about their
11948 existence. Theoretically, they should never even be
11949 instantiated, but that's hard to forestall. */
11950 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
11951 ctype, ctype);
11952 return 0;
11953 }
11954
11955 return 1;
11956 }
11957
11958 /* An operator with this code is unary, but can also be binary. */
11959
11960 static int
11961 ambi_op_p (enum tree_code code)
11962 {
11963 return (code == INDIRECT_REF
11964 || code == ADDR_EXPR
11965 || code == UNARY_PLUS_EXPR
11966 || code == NEGATE_EXPR
11967 || code == PREINCREMENT_EXPR
11968 || code == PREDECREMENT_EXPR);
11969 }
11970
11971 /* An operator with this name can only be unary. */
11972
11973 static int
11974 unary_op_p (enum tree_code code)
11975 {
11976 return (code == TRUTH_NOT_EXPR
11977 || code == BIT_NOT_EXPR
11978 || code == COMPONENT_REF
11979 || code == TYPE_EXPR);
11980 }
11981
11982 /* DECL is a declaration for an overloaded operator. If COMPLAIN is true,
11983 errors are issued for invalid declarations. */
11984
11985 bool
11986 grok_op_properties (tree decl, bool complain)
11987 {
11988 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
11989 tree argtype;
11990 int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
11991 tree name = DECL_NAME (decl);
11992 enum tree_code operator_code;
11993 int arity;
11994 bool ellipsis_p;
11995 tree class_type;
11996
11997 /* Count the number of arguments and check for ellipsis. */
11998 for (argtype = argtypes, arity = 0;
11999 argtype && argtype != void_list_node;
12000 argtype = TREE_CHAIN (argtype))
12001 ++arity;
12002 ellipsis_p = !argtype;
12003
12004 class_type = DECL_CONTEXT (decl);
12005 if (class_type && !CLASS_TYPE_P (class_type))
12006 class_type = NULL_TREE;
12007
12008 if (DECL_CONV_FN_P (decl))
12009 operator_code = TYPE_EXPR;
12010 else
12011 do
12012 {
12013 #define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P) \
12014 if (ansi_opname (CODE) == name) \
12015 { \
12016 operator_code = (CODE); \
12017 break; \
12018 } \
12019 else if (ansi_assopname (CODE) == name) \
12020 { \
12021 operator_code = (CODE); \
12022 DECL_ASSIGNMENT_OPERATOR_P (decl) = 1; \
12023 break; \
12024 }
12025
12026 #include "operators.def"
12027 #undef DEF_OPERATOR
12028
12029 gcc_unreachable ();
12030 }
12031 while (0);
12032 gcc_assert (operator_code != MAX_TREE_CODES);
12033 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
12034
12035 if (class_type)
12036 switch (operator_code)
12037 {
12038 case NEW_EXPR:
12039 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
12040 break;
12041
12042 case DELETE_EXPR:
12043 TYPE_GETS_DELETE (class_type) |= 1;
12044 break;
12045
12046 case VEC_NEW_EXPR:
12047 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
12048 break;
12049
12050 case VEC_DELETE_EXPR:
12051 TYPE_GETS_DELETE (class_type) |= 2;
12052 break;
12053
12054 default:
12055 break;
12056 }
12057
12058 /* [basic.std.dynamic.allocation]/1:
12059
12060 A program is ill-formed if an allocation function is declared
12061 in a namespace scope other than global scope or declared static
12062 in global scope.
12063
12064 The same also holds true for deallocation functions. */
12065 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR
12066 || operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
12067 {
12068 if (DECL_NAMESPACE_SCOPE_P (decl))
12069 {
12070 if (CP_DECL_CONTEXT (decl) != global_namespace)
12071 {
12072 error ("%qD may not be declared within a namespace", decl);
12073 return false;
12074 }
12075 else if (!TREE_PUBLIC (decl))
12076 {
12077 error ("%qD may not be declared as static", decl);
12078 return false;
12079 }
12080 }
12081 }
12082
12083 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR)
12084 {
12085 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
12086 DECL_IS_OPERATOR_NEW (decl) = 1;
12087 }
12088 else if (operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
12089 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
12090 else
12091 {
12092 /* An operator function must either be a non-static member function
12093 or have at least one parameter of a class, a reference to a class,
12094 an enumeration, or a reference to an enumeration. 13.4.0.6 */
12095 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
12096 {
12097 if (operator_code == TYPE_EXPR
12098 || operator_code == CALL_EXPR
12099 || operator_code == COMPONENT_REF
12100 || operator_code == ARRAY_REF
12101 || operator_code == NOP_EXPR)
12102 {
12103 error ("%qD must be a nonstatic member function", decl);
12104 return false;
12105 }
12106 else
12107 {
12108 tree p;
12109
12110 if (DECL_STATIC_FUNCTION_P (decl))
12111 {
12112 error ("%qD must be either a non-static member "
12113 "function or a non-member function", decl);
12114 return false;
12115 }
12116
12117 for (p = argtypes; p && p != void_list_node; p = TREE_CHAIN (p))
12118 {
12119 tree arg = non_reference (TREE_VALUE (p));
12120 if (arg == error_mark_node)
12121 return false;
12122
12123 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
12124 because these checks are performed even on
12125 template functions. */
12126 if (MAYBE_CLASS_TYPE_P (arg)
12127 || TREE_CODE (arg) == ENUMERAL_TYPE)
12128 break;
12129 }
12130
12131 if (!p || p == void_list_node)
12132 {
12133 if (complain)
12134 error ("%qD must have an argument of class or "
12135 "enumerated type", decl);
12136 return false;
12137 }
12138 }
12139 }
12140
12141 /* There are no restrictions on the arguments to an overloaded
12142 "operator ()". */
12143 if (operator_code == CALL_EXPR)
12144 return true;
12145
12146 /* Warn about conversion operators that will never be used. */
12147 if (IDENTIFIER_TYPENAME_P (name)
12148 && ! DECL_TEMPLATE_INFO (decl)
12149 && warn_conversion
12150 /* Warn only declaring the function; there is no need to
12151 warn again about out-of-class definitions. */
12152 && class_type == current_class_type)
12153 {
12154 tree t = TREE_TYPE (name);
12155 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
12156
12157 if (ref)
12158 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
12159
12160 if (VOID_TYPE_P (t))
12161 warning (OPT_Wconversion,
12162 ref
12163 ? G_("conversion to a reference to void "
12164 "will never use a type conversion operator")
12165 : G_("conversion to void "
12166 "will never use a type conversion operator"));
12167 else if (class_type)
12168 {
12169 if (t == class_type)
12170 warning (OPT_Wconversion,
12171 ref
12172 ? G_("conversion to a reference to the same type "
12173 "will never use a type conversion operator")
12174 : G_("conversion to the same type "
12175 "will never use a type conversion operator"));
12176 /* Don't force t to be complete here. */
12177 else if (MAYBE_CLASS_TYPE_P (t)
12178 && COMPLETE_TYPE_P (t)
12179 && DERIVED_FROM_P (t, class_type))
12180 warning (OPT_Wconversion,
12181 ref
12182 ? G_("conversion to a reference to a base class "
12183 "will never use a type conversion operator")
12184 : G_("conversion to a base class "
12185 "will never use a type conversion operator"));
12186 }
12187
12188 }
12189
12190 if (operator_code == COND_EXPR)
12191 {
12192 /* 13.4.0.3 */
12193 error ("ISO C++ prohibits overloading operator ?:");
12194 return false;
12195 }
12196 else if (ellipsis_p)
12197 {
12198 error ("%qD must not have variable number of arguments", decl);
12199 return false;
12200 }
12201 else if (ambi_op_p (operator_code))
12202 {
12203 if (arity == 1)
12204 /* We pick the one-argument operator codes by default, so
12205 we don't have to change anything. */
12206 ;
12207 else if (arity == 2)
12208 {
12209 /* If we thought this was a unary operator, we now know
12210 it to be a binary operator. */
12211 switch (operator_code)
12212 {
12213 case INDIRECT_REF:
12214 operator_code = MULT_EXPR;
12215 break;
12216
12217 case ADDR_EXPR:
12218 operator_code = BIT_AND_EXPR;
12219 break;
12220
12221 case UNARY_PLUS_EXPR:
12222 operator_code = PLUS_EXPR;
12223 break;
12224
12225 case NEGATE_EXPR:
12226 operator_code = MINUS_EXPR;
12227 break;
12228
12229 case PREINCREMENT_EXPR:
12230 operator_code = POSTINCREMENT_EXPR;
12231 break;
12232
12233 case PREDECREMENT_EXPR:
12234 operator_code = POSTDECREMENT_EXPR;
12235 break;
12236
12237 default:
12238 gcc_unreachable ();
12239 }
12240
12241 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
12242
12243 if ((operator_code == POSTINCREMENT_EXPR
12244 || operator_code == POSTDECREMENT_EXPR)
12245 && ! processing_template_decl
12246 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)), integer_type_node))
12247 {
12248 if (methodp)
12249 error ("postfix %qD must take %<int%> as its argument",
12250 decl);
12251 else
12252 error ("postfix %qD must take %<int%> as its second "
12253 "argument", decl);
12254 return false;
12255 }
12256 }
12257 else
12258 {
12259 if (methodp)
12260 error ("%qD must take either zero or one argument", decl);
12261 else
12262 error ("%qD must take either one or two arguments", decl);
12263 return false;
12264 }
12265
12266 /* More Effective C++ rule 6. */
12267 if (warn_ecpp
12268 && (operator_code == POSTINCREMENT_EXPR
12269 || operator_code == POSTDECREMENT_EXPR
12270 || operator_code == PREINCREMENT_EXPR
12271 || operator_code == PREDECREMENT_EXPR))
12272 {
12273 tree arg = TREE_VALUE (argtypes);
12274 tree ret = TREE_TYPE (TREE_TYPE (decl));
12275 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
12276 arg = TREE_TYPE (arg);
12277 arg = TYPE_MAIN_VARIANT (arg);
12278 if (operator_code == PREINCREMENT_EXPR
12279 || operator_code == PREDECREMENT_EXPR)
12280 {
12281 if (TREE_CODE (ret) != REFERENCE_TYPE
12282 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)),
12283 arg))
12284 warning (OPT_Weffc__, "prefix %qD should return %qT", decl,
12285 build_reference_type (arg));
12286 }
12287 else
12288 {
12289 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
12290 warning (OPT_Weffc__, "postfix %qD should return %qT", decl, arg);
12291 }
12292 }
12293 }
12294 else if (unary_op_p (operator_code))
12295 {
12296 if (arity != 1)
12297 {
12298 if (methodp)
12299 error ("%qD must take %<void%>", decl);
12300 else
12301 error ("%qD must take exactly one argument", decl);
12302 return false;
12303 }
12304 }
12305 else /* if (binary_op_p (operator_code)) */
12306 {
12307 if (arity != 2)
12308 {
12309 if (methodp)
12310 error ("%qD must take exactly one argument", decl);
12311 else
12312 error ("%qD must take exactly two arguments", decl);
12313 return false;
12314 }
12315
12316 /* More Effective C++ rule 7. */
12317 if (warn_ecpp
12318 && (operator_code == TRUTH_ANDIF_EXPR
12319 || operator_code == TRUTH_ORIF_EXPR
12320 || operator_code == COMPOUND_EXPR))
12321 warning (OPT_Weffc__, "user-defined %qD always evaluates both arguments",
12322 decl);
12323 }
12324
12325 /* Effective C++ rule 23. */
12326 if (warn_ecpp
12327 && arity == 2
12328 && !DECL_ASSIGNMENT_OPERATOR_P (decl)
12329 && (operator_code == PLUS_EXPR
12330 || operator_code == MINUS_EXPR
12331 || operator_code == TRUNC_DIV_EXPR
12332 || operator_code == MULT_EXPR
12333 || operator_code == TRUNC_MOD_EXPR)
12334 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
12335 warning (OPT_Weffc__, "%qD should return by value", decl);
12336
12337 /* [over.oper]/8 */
12338 for (; argtypes && argtypes != void_list_node;
12339 argtypes = TREE_CHAIN (argtypes))
12340 if (TREE_PURPOSE (argtypes))
12341 {
12342 TREE_PURPOSE (argtypes) = NULL_TREE;
12343 if (operator_code == POSTINCREMENT_EXPR
12344 || operator_code == POSTDECREMENT_EXPR)
12345 {
12346 pedwarn (input_location, OPT_Wpedantic, "%qD cannot have default arguments",
12347 decl);
12348 }
12349 else
12350 {
12351 error ("%qD cannot have default arguments", decl);
12352 return false;
12353 }
12354 }
12355 }
12356 return true;
12357 }
12358 \f
12359 /* Return a string giving the keyword associate with CODE. */
12360
12361 static const char *
12362 tag_name (enum tag_types code)
12363 {
12364 switch (code)
12365 {
12366 case record_type:
12367 return "struct";
12368 case class_type:
12369 return "class";
12370 case union_type:
12371 return "union";
12372 case enum_type:
12373 return "enum";
12374 case typename_type:
12375 return "typename";
12376 default:
12377 gcc_unreachable ();
12378 }
12379 }
12380
12381 /* Name lookup in an elaborated-type-specifier (after the keyword
12382 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
12383 elaborated-type-specifier is invalid, issue a diagnostic and return
12384 error_mark_node; otherwise, return the *_TYPE to which it referred.
12385 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
12386
12387 tree
12388 check_elaborated_type_specifier (enum tag_types tag_code,
12389 tree decl,
12390 bool allow_template_p)
12391 {
12392 tree type;
12393
12394 /* In the case of:
12395
12396 struct S { struct S *p; };
12397
12398 name lookup will find the TYPE_DECL for the implicit "S::S"
12399 typedef. Adjust for that here. */
12400 if (DECL_SELF_REFERENCE_P (decl))
12401 decl = TYPE_NAME (TREE_TYPE (decl));
12402
12403 type = TREE_TYPE (decl);
12404
12405 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
12406 is false for this case as well. */
12407 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
12408 {
12409 error ("using template type parameter %qT after %qs",
12410 type, tag_name (tag_code));
12411 return error_mark_node;
12412 }
12413 /* Accept template template parameters. */
12414 else if (allow_template_p
12415 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
12416 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
12417 ;
12418 /* [dcl.type.elab]
12419
12420 If the identifier resolves to a typedef-name or the
12421 simple-template-id resolves to an alias template
12422 specialization, the elaborated-type-specifier is ill-formed.
12423
12424 In other words, the only legitimate declaration to use in the
12425 elaborated type specifier is the implicit typedef created when
12426 the type is declared. */
12427 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
12428 && !DECL_SELF_REFERENCE_P (decl)
12429 && tag_code != typename_type)
12430 {
12431 if (alias_template_specialization_p (type))
12432 error ("using alias template specialization %qT after %qs",
12433 type, tag_name (tag_code));
12434 else
12435 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
12436 inform (DECL_SOURCE_LOCATION (decl),
12437 "%qD has a previous declaration here", decl);
12438 return error_mark_node;
12439 }
12440 else if (TREE_CODE (type) != RECORD_TYPE
12441 && TREE_CODE (type) != UNION_TYPE
12442 && tag_code != enum_type
12443 && tag_code != typename_type)
12444 {
12445 error ("%qT referred to as %qs", type, tag_name (tag_code));
12446 inform (input_location, "%q+T has a previous declaration here", type);
12447 return error_mark_node;
12448 }
12449 else if (TREE_CODE (type) != ENUMERAL_TYPE
12450 && tag_code == enum_type)
12451 {
12452 error ("%qT referred to as enum", type);
12453 inform (input_location, "%q+T has a previous declaration here", type);
12454 return error_mark_node;
12455 }
12456 else if (!allow_template_p
12457 && TREE_CODE (type) == RECORD_TYPE
12458 && CLASSTYPE_IS_TEMPLATE (type))
12459 {
12460 /* If a class template appears as elaborated type specifier
12461 without a template header such as:
12462
12463 template <class T> class C {};
12464 void f(class C); // No template header here
12465
12466 then the required template argument is missing. */
12467 error ("template argument required for %<%s %T%>",
12468 tag_name (tag_code),
12469 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
12470 return error_mark_node;
12471 }
12472
12473 return type;
12474 }
12475
12476 /* Lookup NAME in elaborate type specifier in scope according to
12477 SCOPE and issue diagnostics if necessary.
12478 Return *_TYPE node upon success, NULL_TREE when the NAME is not
12479 found, and ERROR_MARK_NODE for type error. */
12480
12481 static tree
12482 lookup_and_check_tag (enum tag_types tag_code, tree name,
12483 tag_scope scope, bool template_header_p)
12484 {
12485 tree t;
12486 tree decl;
12487 if (scope == ts_global)
12488 {
12489 /* First try ordinary name lookup, ignoring hidden class name
12490 injected via friend declaration. */
12491 decl = lookup_name_prefer_type (name, 2);
12492 decl = strip_using_decl (decl);
12493 /* If that fails, the name will be placed in the smallest
12494 non-class, non-function-prototype scope according to 3.3.1/5.
12495 We may already have a hidden name declared as friend in this
12496 scope. So lookup again but not ignoring hidden names.
12497 If we find one, that name will be made visible rather than
12498 creating a new tag. */
12499 if (!decl)
12500 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
12501 }
12502 else
12503 decl = lookup_type_scope (name, scope);
12504
12505 if (decl
12506 && (DECL_CLASS_TEMPLATE_P (decl)
12507 /* If scope is ts_current we're defining a class, so ignore a
12508 template template parameter. */
12509 || (scope != ts_current
12510 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
12511 decl = DECL_TEMPLATE_RESULT (decl);
12512
12513 if (decl && TREE_CODE (decl) == TYPE_DECL)
12514 {
12515 /* Look for invalid nested type:
12516 class C {
12517 class C {};
12518 }; */
12519 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
12520 {
12521 error ("%qD has the same name as the class in which it is "
12522 "declared",
12523 decl);
12524 return error_mark_node;
12525 }
12526
12527 /* Two cases we need to consider when deciding if a class
12528 template is allowed as an elaborated type specifier:
12529 1. It is a self reference to its own class.
12530 2. It comes with a template header.
12531
12532 For example:
12533
12534 template <class T> class C {
12535 class C *c1; // DECL_SELF_REFERENCE_P is true
12536 class D;
12537 };
12538 template <class U> class C; // template_header_p is true
12539 template <class T> class C<T>::D {
12540 class C *c2; // DECL_SELF_REFERENCE_P is true
12541 }; */
12542
12543 t = check_elaborated_type_specifier (tag_code,
12544 decl,
12545 template_header_p
12546 | DECL_SELF_REFERENCE_P (decl));
12547 return t;
12548 }
12549 else if (decl && TREE_CODE (decl) == TREE_LIST)
12550 {
12551 error ("reference to %qD is ambiguous", name);
12552 print_candidates (decl);
12553 return error_mark_node;
12554 }
12555 else
12556 return NULL_TREE;
12557 }
12558
12559 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
12560 Define the tag as a forward-reference if it is not defined.
12561
12562 If a declaration is given, process it here, and report an error if
12563 multiple declarations are not identical.
12564
12565 SCOPE is TS_CURRENT when this is also a definition. Only look in
12566 the current frame for the name (since C++ allows new names in any
12567 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
12568 declaration. Only look beginning from the current scope outward up
12569 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
12570
12571 TEMPLATE_HEADER_P is true when this declaration is preceded by
12572 a set of template parameters. */
12573
12574 static tree
12575 xref_tag_1 (enum tag_types tag_code, tree name,
12576 tag_scope orig_scope, bool template_header_p)
12577 {
12578 enum tree_code code;
12579 tree t;
12580 tree context = NULL_TREE;
12581 tag_scope scope;
12582
12583 gcc_assert (identifier_p (name));
12584
12585 switch (tag_code)
12586 {
12587 case record_type:
12588 case class_type:
12589 code = RECORD_TYPE;
12590 break;
12591 case union_type:
12592 code = UNION_TYPE;
12593 break;
12594 case enum_type:
12595 code = ENUMERAL_TYPE;
12596 break;
12597 default:
12598 gcc_unreachable ();
12599 }
12600
12601 if (orig_scope == ts_lambda)
12602 scope = ts_current;
12603 else
12604 scope = orig_scope;
12605
12606 /* In case of anonymous name, xref_tag is only called to
12607 make type node and push name. Name lookup is not required. */
12608 if (anon_aggrname_p (name))
12609 t = NULL_TREE;
12610 else
12611 t = lookup_and_check_tag (tag_code, name,
12612 scope, template_header_p);
12613
12614 if (t == error_mark_node)
12615 return error_mark_node;
12616
12617 if (scope != ts_current && t && current_class_type
12618 && template_class_depth (current_class_type)
12619 && template_header_p)
12620 {
12621 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
12622 return t;
12623
12624 /* Since SCOPE is not TS_CURRENT, we are not looking at a
12625 definition of this tag. Since, in addition, we are currently
12626 processing a (member) template declaration of a template
12627 class, we must be very careful; consider:
12628
12629 template <class X>
12630 struct S1
12631
12632 template <class U>
12633 struct S2
12634 { template <class V>
12635 friend struct S1; };
12636
12637 Here, the S2::S1 declaration should not be confused with the
12638 outer declaration. In particular, the inner version should
12639 have a template parameter of level 2, not level 1. This
12640 would be particularly important if the member declaration
12641 were instead:
12642
12643 template <class V = U> friend struct S1;
12644
12645 say, when we should tsubst into `U' when instantiating
12646 S2. On the other hand, when presented with:
12647
12648 template <class T>
12649 struct S1 {
12650 template <class U>
12651 struct S2 {};
12652 template <class U>
12653 friend struct S2;
12654 };
12655
12656 we must find the inner binding eventually. We
12657 accomplish this by making sure that the new type we
12658 create to represent this declaration has the right
12659 TYPE_CONTEXT. */
12660 context = TYPE_CONTEXT (t);
12661 t = NULL_TREE;
12662 }
12663
12664 if (! t)
12665 {
12666 /* If no such tag is yet defined, create a forward-reference node
12667 and record it as the "definition".
12668 When a real declaration of this type is found,
12669 the forward-reference will be altered into a real type. */
12670 if (code == ENUMERAL_TYPE)
12671 {
12672 error ("use of enum %q#D without previous declaration", name);
12673 return error_mark_node;
12674 }
12675 else
12676 {
12677 t = make_class_type (code);
12678 TYPE_CONTEXT (t) = context;
12679 if (orig_scope == ts_lambda)
12680 /* Remember that we're declaring a lambda to avoid bogus errors
12681 in push_template_decl. */
12682 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
12683 t = pushtag (name, t, scope);
12684 }
12685 }
12686 else
12687 {
12688 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
12689 {
12690 /* Check that we aren't trying to overload a class with different
12691 constraints. */
12692 tree constr = NULL_TREE;
12693 if (current_template_parms)
12694 {
12695 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
12696 constr = build_constraints (reqs, NULL_TREE);
12697 }
12698 if (!redeclare_class_template (t, current_template_parms, constr))
12699 return error_mark_node;
12700 }
12701 else if (!processing_template_decl
12702 && CLASS_TYPE_P (t)
12703 && CLASSTYPE_IS_TEMPLATE (t))
12704 {
12705 error ("redeclaration of %qT as a non-template", t);
12706 error ("previous declaration %q+D", t);
12707 return error_mark_node;
12708 }
12709
12710 /* Make injected friend class visible. */
12711 if (scope != ts_within_enclosing_non_class
12712 && hidden_name_p (TYPE_NAME (t)))
12713 {
12714 DECL_ANTICIPATED (TYPE_NAME (t)) = 0;
12715 DECL_FRIEND_P (TYPE_NAME (t)) = 0;
12716
12717 if (TYPE_TEMPLATE_INFO (t))
12718 {
12719 DECL_ANTICIPATED (TYPE_TI_TEMPLATE (t)) = 0;
12720 DECL_FRIEND_P (TYPE_TI_TEMPLATE (t)) = 0;
12721 }
12722 }
12723 }
12724
12725 return t;
12726 }
12727
12728 /* Wrapper for xref_tag_1. */
12729
12730 tree
12731 xref_tag (enum tag_types tag_code, tree name,
12732 tag_scope scope, bool template_header_p)
12733 {
12734 tree ret;
12735 bool subtime;
12736 subtime = timevar_cond_start (TV_NAME_LOOKUP);
12737 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
12738 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
12739 return ret;
12740 }
12741
12742
12743 tree
12744 xref_tag_from_type (tree old, tree id, tag_scope scope)
12745 {
12746 enum tag_types tag_kind;
12747
12748 if (TREE_CODE (old) == RECORD_TYPE)
12749 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
12750 else
12751 tag_kind = union_type;
12752
12753 if (id == NULL_TREE)
12754 id = TYPE_IDENTIFIER (old);
12755
12756 return xref_tag (tag_kind, id, scope, false);
12757 }
12758
12759 /* Create the binfo hierarchy for REF with (possibly NULL) base list
12760 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
12761 access_* node, and the TREE_VALUE is the type of the base-class.
12762 Non-NULL TREE_TYPE indicates virtual inheritance.
12763
12764 Returns true if the binfo hierarchy was successfully created,
12765 false if an error was detected. */
12766
12767 bool
12768 xref_basetypes (tree ref, tree base_list)
12769 {
12770 tree *basep;
12771 tree binfo, base_binfo;
12772 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
12773 unsigned max_bases = 0; /* Maximum direct bases. */
12774 unsigned max_dvbases = 0; /* Maximum direct virtual bases. */
12775 int i;
12776 tree default_access;
12777 tree igo_prev; /* Track Inheritance Graph Order. */
12778
12779 if (ref == error_mark_node)
12780 return false;
12781
12782 /* The base of a derived class is private by default, all others are
12783 public. */
12784 default_access = (TREE_CODE (ref) == RECORD_TYPE
12785 && CLASSTYPE_DECLARED_CLASS (ref)
12786 ? access_private_node : access_public_node);
12787
12788 /* First, make sure that any templates in base-classes are
12789 instantiated. This ensures that if we call ourselves recursively
12790 we do not get confused about which classes are marked and which
12791 are not. */
12792 basep = &base_list;
12793 while (*basep)
12794 {
12795 tree basetype = TREE_VALUE (*basep);
12796
12797 /* The dependent_type_p call below should really be dependent_scope_p
12798 so that we give a hard error about using an incomplete type as a
12799 base, but we allow it with a pedwarn for backward
12800 compatibility. */
12801 if (processing_template_decl
12802 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
12803 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
12804 if (!dependent_type_p (basetype)
12805 && !complete_type_or_else (basetype, NULL))
12806 /* An incomplete type. Remove it from the list. */
12807 *basep = TREE_CHAIN (*basep);
12808 else
12809 {
12810 max_bases++;
12811 if (TREE_TYPE (*basep))
12812 max_dvbases++;
12813 if (CLASS_TYPE_P (basetype))
12814 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
12815 basep = &TREE_CHAIN (*basep);
12816 }
12817 }
12818 max_vbases += max_dvbases;
12819
12820 TYPE_MARKED_P (ref) = 1;
12821
12822 /* The binfo slot should be empty, unless this is an (ill-formed)
12823 redefinition. */
12824 if (TYPE_BINFO (ref) && !TYPE_SIZE (ref))
12825 {
12826 error ("redefinition of %q#T", ref);
12827 return false;
12828 }
12829
12830 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
12831
12832 binfo = make_tree_binfo (max_bases);
12833
12834 TYPE_BINFO (ref) = binfo;
12835 BINFO_OFFSET (binfo) = size_zero_node;
12836 BINFO_TYPE (binfo) = ref;
12837
12838 /* Apply base-class info set up to the variants of this type. */
12839 fixup_type_variants (ref);
12840
12841 if (max_bases)
12842 {
12843 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
12844 /* An aggregate cannot have baseclasses. */
12845 CLASSTYPE_NON_AGGREGATE (ref) = 1;
12846
12847 if (TREE_CODE (ref) == UNION_TYPE)
12848 {
12849 error ("derived union %qT invalid", ref);
12850 return false;
12851 }
12852 }
12853
12854 if (max_bases > 1)
12855 {
12856 if (TYPE_FOR_JAVA (ref))
12857 {
12858 error ("Java class %qT cannot have multiple bases", ref);
12859 return false;
12860 }
12861 else
12862 warning (OPT_Wmultiple_inheritance,
12863 "%qT defined with multiple direct bases", ref);
12864 }
12865
12866 if (max_vbases)
12867 {
12868 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
12869
12870 if (TYPE_FOR_JAVA (ref))
12871 {
12872 error ("Java class %qT cannot have virtual bases", ref);
12873 return false;
12874 }
12875 else if (max_dvbases)
12876 warning (OPT_Wvirtual_inheritance,
12877 "%qT defined with direct virtual base", ref);
12878 }
12879
12880 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
12881 {
12882 tree access = TREE_PURPOSE (base_list);
12883 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
12884 tree basetype = TREE_VALUE (base_list);
12885
12886 if (access == access_default_node)
12887 access = default_access;
12888
12889 if (PACK_EXPANSION_P (basetype))
12890 basetype = PACK_EXPANSION_PATTERN (basetype);
12891 if (TREE_CODE (basetype) == TYPE_DECL)
12892 basetype = TREE_TYPE (basetype);
12893 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
12894 {
12895 error ("base type %qT fails to be a struct or class type",
12896 basetype);
12897 return false;
12898 }
12899
12900 if (TYPE_FOR_JAVA (basetype) && (current_lang_depth () == 0))
12901 TYPE_FOR_JAVA (ref) = 1;
12902
12903 base_binfo = NULL_TREE;
12904 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
12905 {
12906 base_binfo = TYPE_BINFO (basetype);
12907 /* The original basetype could have been a typedef'd type. */
12908 basetype = BINFO_TYPE (base_binfo);
12909
12910 /* Inherit flags from the base. */
12911 TYPE_HAS_NEW_OPERATOR (ref)
12912 |= TYPE_HAS_NEW_OPERATOR (basetype);
12913 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
12914 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
12915 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
12916 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
12917 CLASSTYPE_DIAMOND_SHAPED_P (ref)
12918 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
12919 CLASSTYPE_REPEATED_BASE_P (ref)
12920 |= CLASSTYPE_REPEATED_BASE_P (basetype);
12921 }
12922
12923 /* We must do this test after we've seen through a typedef
12924 type. */
12925 if (TYPE_MARKED_P (basetype))
12926 {
12927 if (basetype == ref)
12928 error ("recursive type %qT undefined", basetype);
12929 else
12930 error ("duplicate base type %qT invalid", basetype);
12931 return false;
12932 }
12933
12934 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
12935 /* Regenerate the pack expansion for the bases. */
12936 basetype = make_pack_expansion (basetype);
12937
12938 TYPE_MARKED_P (basetype) = 1;
12939
12940 base_binfo = copy_binfo (base_binfo, basetype, ref,
12941 &igo_prev, via_virtual);
12942 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
12943 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
12944
12945 BINFO_BASE_APPEND (binfo, base_binfo);
12946 BINFO_BASE_ACCESS_APPEND (binfo, access);
12947 }
12948
12949 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
12950 /* If we didn't get max_vbases vbases, we must have shared at
12951 least one of them, and are therefore diamond shaped. */
12952 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
12953
12954 /* Unmark all the types. */
12955 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12956 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
12957 TYPE_MARKED_P (ref) = 0;
12958
12959 /* Now see if we have a repeated base type. */
12960 if (!CLASSTYPE_REPEATED_BASE_P (ref))
12961 {
12962 for (base_binfo = binfo; base_binfo;
12963 base_binfo = TREE_CHAIN (base_binfo))
12964 {
12965 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
12966 {
12967 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
12968 break;
12969 }
12970 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
12971 }
12972 for (base_binfo = binfo; base_binfo;
12973 base_binfo = TREE_CHAIN (base_binfo))
12974 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
12975 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
12976 else
12977 break;
12978 }
12979
12980 return true;
12981 }
12982
12983 \f
12984 /* Copies the enum-related properties from type SRC to type DST.
12985 Used with the underlying type of an enum and the enum itself. */
12986 static void
12987 copy_type_enum (tree dst, tree src)
12988 {
12989 tree t;
12990 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
12991 {
12992 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
12993 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
12994 TYPE_SIZE (t) = TYPE_SIZE (src);
12995 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
12996 SET_TYPE_MODE (dst, TYPE_MODE (src));
12997 TYPE_PRECISION (t) = TYPE_PRECISION (src);
12998 TYPE_ALIGN (t) = TYPE_ALIGN (src);
12999 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
13000 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
13001 }
13002 }
13003
13004 /* Begin compiling the definition of an enumeration type.
13005 NAME is its name,
13006
13007 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
13008
13009 UNDERLYING_TYPE is the type that will be used as the storage for
13010 the enumeration type. This should be NULL_TREE if no storage type
13011 was specified.
13012
13013 SCOPED_ENUM_P is true if this is a scoped enumeration type.
13014
13015 if IS_NEW is not NULL, gets TRUE iff a new type is created.
13016
13017 Returns the type object, as yet incomplete.
13018 Also records info about it so that build_enumerator
13019 may be used to declare the individual values as they are read. */
13020
13021 tree
13022 start_enum (tree name, tree enumtype, tree underlying_type,
13023 bool scoped_enum_p, bool *is_new)
13024 {
13025 tree prevtype = NULL_TREE;
13026 gcc_assert (identifier_p (name));
13027
13028 if (is_new)
13029 *is_new = false;
13030 /* [C++0x dcl.enum]p5:
13031
13032 If not explicitly specified, the underlying type of a scoped
13033 enumeration type is int. */
13034 if (!underlying_type && scoped_enum_p)
13035 underlying_type = integer_type_node;
13036
13037 if (underlying_type)
13038 underlying_type = cv_unqualified (underlying_type);
13039
13040 /* If this is the real definition for a previous forward reference,
13041 fill in the contents in the same object that used to be the
13042 forward reference. */
13043 if (!enumtype)
13044 enumtype = lookup_and_check_tag (enum_type, name,
13045 /*tag_scope=*/ts_current,
13046 /*template_header_p=*/false);
13047
13048 /* In case of a template_decl, the only check that should be deferred
13049 to instantiation time is the comparison of underlying types. */
13050 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
13051 {
13052 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
13053 {
13054 error_at (input_location, "scoped/unscoped mismatch "
13055 "in enum %q#T", enumtype);
13056 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13057 "previous definition here");
13058 enumtype = error_mark_node;
13059 }
13060 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
13061 {
13062 error_at (input_location, "underlying type mismatch "
13063 "in enum %q#T", enumtype);
13064 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13065 "previous definition here");
13066 enumtype = error_mark_node;
13067 }
13068 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
13069 && !dependent_type_p (underlying_type)
13070 && !dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))
13071 && !same_type_p (underlying_type,
13072 ENUM_UNDERLYING_TYPE (enumtype)))
13073 {
13074 error_at (input_location, "different underlying type "
13075 "in enum %q#T", enumtype);
13076 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13077 "previous definition here");
13078 underlying_type = NULL_TREE;
13079 }
13080 }
13081
13082 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
13083 || processing_template_decl)
13084 {
13085 /* In case of error, make a dummy enum to allow parsing to
13086 continue. */
13087 if (enumtype == error_mark_node)
13088 {
13089 name = make_anon_name ();
13090 enumtype = NULL_TREE;
13091 }
13092
13093 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
13094 of an opaque enum, or an opaque enum of an already defined
13095 enumeration (C++0x only).
13096 In any other case, it'll be NULL_TREE. */
13097 if (!enumtype)
13098 {
13099 if (is_new)
13100 *is_new = true;
13101 }
13102 prevtype = enumtype;
13103
13104 /* Do not push the decl more than once, unless we need to
13105 compare underlying types at instantiation time */
13106 if (!enumtype
13107 || TREE_CODE (enumtype) != ENUMERAL_TYPE
13108 || (underlying_type
13109 && dependent_type_p (underlying_type))
13110 || (ENUM_UNDERLYING_TYPE (enumtype)
13111 && dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))))
13112 {
13113 enumtype = cxx_make_type (ENUMERAL_TYPE);
13114 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
13115 }
13116 else
13117 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
13118 false);
13119
13120 if (enumtype == error_mark_node)
13121 return error_mark_node;
13122
13123 /* The enum is considered opaque until the opening '{' of the
13124 enumerator list. */
13125 SET_OPAQUE_ENUM_P (enumtype, true);
13126 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
13127 }
13128
13129 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
13130
13131 if (underlying_type)
13132 {
13133 if (CP_INTEGRAL_TYPE_P (underlying_type))
13134 {
13135 copy_type_enum (enumtype, underlying_type);
13136 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
13137 }
13138 else if (dependent_type_p (underlying_type))
13139 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
13140 else
13141 error ("underlying type %<%T%> of %<%T%> must be an integral type",
13142 underlying_type, enumtype);
13143 }
13144
13145 /* If into a template class, the returned enum is always the first
13146 declaration (opaque or not) seen. This way all the references to
13147 this type will be to the same declaration. The following ones are used
13148 only to check for definition errors. */
13149 if (prevtype && processing_template_decl)
13150 return prevtype;
13151 else
13152 return enumtype;
13153 }
13154
13155 /* After processing and defining all the values of an enumeration type,
13156 install their decls in the enumeration type.
13157 ENUMTYPE is the type object. */
13158
13159 void
13160 finish_enum_value_list (tree enumtype)
13161 {
13162 tree values;
13163 tree underlying_type;
13164 tree decl;
13165 tree value;
13166 tree minnode, maxnode;
13167 tree t;
13168
13169 bool fixed_underlying_type_p
13170 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
13171
13172 /* We built up the VALUES in reverse order. */
13173 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
13174
13175 /* For an enum defined in a template, just set the type of the values;
13176 all further processing is postponed until the template is
13177 instantiated. We need to set the type so that tsubst of a CONST_DECL
13178 works. */
13179 if (processing_template_decl)
13180 {
13181 for (values = TYPE_VALUES (enumtype);
13182 values;
13183 values = TREE_CHAIN (values))
13184 TREE_TYPE (TREE_VALUE (values)) = enumtype;
13185 return;
13186 }
13187
13188 /* Determine the minimum and maximum values of the enumerators. */
13189 if (TYPE_VALUES (enumtype))
13190 {
13191 minnode = maxnode = NULL_TREE;
13192
13193 for (values = TYPE_VALUES (enumtype);
13194 values;
13195 values = TREE_CHAIN (values))
13196 {
13197 decl = TREE_VALUE (values);
13198
13199 /* [dcl.enum]: Following the closing brace of an enum-specifier,
13200 each enumerator has the type of its enumeration. Prior to the
13201 closing brace, the type of each enumerator is the type of its
13202 initializing value. */
13203 TREE_TYPE (decl) = enumtype;
13204
13205 /* Update the minimum and maximum values, if appropriate. */
13206 value = DECL_INITIAL (decl);
13207 if (value == error_mark_node)
13208 value = integer_zero_node;
13209 /* Figure out what the minimum and maximum values of the
13210 enumerators are. */
13211 if (!minnode)
13212 minnode = maxnode = value;
13213 else if (tree_int_cst_lt (maxnode, value))
13214 maxnode = value;
13215 else if (tree_int_cst_lt (value, minnode))
13216 minnode = value;
13217 }
13218 }
13219 else
13220 /* [dcl.enum]
13221
13222 If the enumerator-list is empty, the underlying type is as if
13223 the enumeration had a single enumerator with value 0. */
13224 minnode = maxnode = integer_zero_node;
13225
13226 if (!fixed_underlying_type_p)
13227 {
13228 /* Compute the number of bits require to represent all values of the
13229 enumeration. We must do this before the type of MINNODE and
13230 MAXNODE are transformed, since tree_int_cst_min_precision relies
13231 on the TREE_TYPE of the value it is passed. */
13232 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
13233 int lowprec = tree_int_cst_min_precision (minnode, sgn);
13234 int highprec = tree_int_cst_min_precision (maxnode, sgn);
13235 int precision = MAX (lowprec, highprec);
13236 unsigned int itk;
13237 bool use_short_enum;
13238
13239 /* Determine the underlying type of the enumeration.
13240
13241 [dcl.enum]
13242
13243 The underlying type of an enumeration is an integral type that
13244 can represent all the enumerator values defined in the
13245 enumeration. It is implementation-defined which integral type is
13246 used as the underlying type for an enumeration except that the
13247 underlying type shall not be larger than int unless the value of
13248 an enumerator cannot fit in an int or unsigned int.
13249
13250 We use "int" or an "unsigned int" as the underlying type, even if
13251 a smaller integral type would work, unless the user has
13252 explicitly requested that we use the smallest possible type. The
13253 user can request that for all enumerations with a command line
13254 flag, or for just one enumeration with an attribute. */
13255
13256 use_short_enum = flag_short_enums
13257 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
13258
13259 for (itk = (use_short_enum ? itk_char : itk_int);
13260 itk != itk_none;
13261 itk++)
13262 {
13263 underlying_type = integer_types[itk];
13264 if (underlying_type != NULL_TREE
13265 && TYPE_PRECISION (underlying_type) >= precision
13266 && TYPE_SIGN (underlying_type) == sgn)
13267 break;
13268 }
13269 if (itk == itk_none)
13270 {
13271 /* DR 377
13272
13273 IF no integral type can represent all the enumerator values, the
13274 enumeration is ill-formed. */
13275 error ("no integral type can represent all of the enumerator values "
13276 "for %qT", enumtype);
13277 precision = TYPE_PRECISION (long_long_integer_type_node);
13278 underlying_type = integer_types[itk_unsigned_long_long];
13279 }
13280
13281 /* [dcl.enum]
13282
13283 The value of sizeof() applied to an enumeration type, an object
13284 of an enumeration type, or an enumerator, is the value of sizeof()
13285 applied to the underlying type. */
13286 copy_type_enum (enumtype, underlying_type);
13287
13288 /* Compute the minimum and maximum values for the type.
13289
13290 [dcl.enum]
13291
13292 For an enumeration where emin is the smallest enumerator and emax
13293 is the largest, the values of the enumeration are the values of the
13294 underlying type in the range bmin to bmax, where bmin and bmax are,
13295 respectively, the smallest and largest values of the smallest bit-
13296 field that can store emin and emax. */
13297
13298 /* The middle-end currently assumes that types with TYPE_PRECISION
13299 narrower than their underlying type are suitably zero or sign
13300 extended to fill their mode. Similarly, it assumes that the front
13301 end assures that a value of a particular type must be within
13302 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
13303
13304 We used to set these fields based on bmin and bmax, but that led
13305 to invalid assumptions like optimizing away bounds checking. So
13306 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
13307 TYPE_MAX_VALUE to the values for the mode above and only restrict
13308 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
13309 ENUM_UNDERLYING_TYPE (enumtype)
13310 = build_distinct_type_copy (underlying_type);
13311 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
13312 set_min_and_max_values_for_integral_type
13313 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
13314
13315 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
13316 if (flag_strict_enums)
13317 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
13318 }
13319 else
13320 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
13321
13322 /* Convert each of the enumerators to the type of the underlying
13323 type of the enumeration. */
13324 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
13325 {
13326 location_t saved_location;
13327
13328 decl = TREE_VALUE (values);
13329 saved_location = input_location;
13330 input_location = DECL_SOURCE_LOCATION (decl);
13331 if (fixed_underlying_type_p)
13332 /* If the enumeration type has a fixed underlying type, we
13333 already checked all of the enumerator values. */
13334 value = DECL_INITIAL (decl);
13335 else
13336 value = perform_implicit_conversion (underlying_type,
13337 DECL_INITIAL (decl),
13338 tf_warning_or_error);
13339 input_location = saved_location;
13340
13341 /* Do not clobber shared ints. */
13342 value = copy_node (value);
13343
13344 TREE_TYPE (value) = enumtype;
13345 DECL_INITIAL (decl) = value;
13346 }
13347
13348 /* Fix up all variant types of this enum type. */
13349 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
13350 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
13351
13352 if (at_class_scope_p ()
13353 && COMPLETE_TYPE_P (current_class_type)
13354 && UNSCOPED_ENUM_P (enumtype))
13355 insert_late_enum_def_into_classtype_sorted_fields (enumtype,
13356 current_class_type);
13357
13358 /* Finish debugging output for this type. */
13359 rest_of_type_compilation (enumtype, namespace_bindings_p ());
13360 }
13361
13362 /* Finishes the enum type. This is called only the first time an
13363 enumeration is seen, be it opaque or odinary.
13364 ENUMTYPE is the type object. */
13365
13366 void
13367 finish_enum (tree enumtype)
13368 {
13369 if (processing_template_decl)
13370 {
13371 if (at_function_scope_p ())
13372 add_stmt (build_min (TAG_DEFN, enumtype));
13373 return;
13374 }
13375
13376 /* If this is a forward declaration, there should not be any variants,
13377 though we can get a variant in the middle of an enum-specifier with
13378 wacky code like 'enum E { e = sizeof(const E*) };' */
13379 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
13380 && (TYPE_VALUES (enumtype)
13381 || !TYPE_NEXT_VARIANT (enumtype)));
13382 }
13383
13384 /* Build and install a CONST_DECL for an enumeration constant of the
13385 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
13386 Apply ATTRIBUTES if available. LOC is the location of NAME.
13387 Assignment of sequential values by default is handled here. */
13388
13389 void
13390 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
13391 location_t loc)
13392 {
13393 tree decl;
13394 tree context;
13395 tree type;
13396
13397 /* scalar_constant_value will pull out this expression, so make sure
13398 it's folded as appropriate. */
13399 if (processing_template_decl)
13400 value = fold_non_dependent_expr (value);
13401
13402 /* If the VALUE was erroneous, pretend it wasn't there; that will
13403 result in the enum being assigned the next value in sequence. */
13404 if (value == error_mark_node)
13405 value = NULL_TREE;
13406
13407 /* Remove no-op casts from the value. */
13408 if (value)
13409 STRIP_TYPE_NOPS (value);
13410
13411 if (! processing_template_decl)
13412 {
13413 /* Validate and default VALUE. */
13414 if (value != NULL_TREE)
13415 {
13416 if (!ENUM_UNDERLYING_TYPE (enumtype))
13417 {
13418 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
13419 value, true);
13420 if (tmp_value)
13421 value = tmp_value;
13422 }
13423 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
13424 (TREE_TYPE (value)))
13425 value = perform_implicit_conversion_flags
13426 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
13427 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
13428
13429 if (value == error_mark_node)
13430 value = NULL_TREE;
13431
13432 if (value != NULL_TREE)
13433 {
13434 value = cxx_constant_value (value);
13435
13436 if (TREE_CODE (value) != INTEGER_CST
13437 || ! INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (value)))
13438 {
13439 error ("enumerator value for %qD is not an integer constant",
13440 name);
13441 value = NULL_TREE;
13442 }
13443 }
13444 }
13445
13446 /* Default based on previous value. */
13447 if (value == NULL_TREE)
13448 {
13449 if (TYPE_VALUES (enumtype))
13450 {
13451 tree prev_value;
13452 bool overflowed;
13453
13454 /* C++03 7.2/4: If no initializer is specified for the first
13455 enumerator, the type is an unspecified integral
13456 type. Otherwise the type is the same as the type of the
13457 initializing value of the preceding enumerator unless the
13458 incremented value is not representable in that type, in
13459 which case the type is an unspecified integral type
13460 sufficient to contain the incremented value. */
13461 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
13462 if (error_operand_p (prev_value))
13463 value = error_mark_node;
13464 else
13465 {
13466 tree type = TREE_TYPE (prev_value);
13467 signop sgn = TYPE_SIGN (type);
13468 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
13469 &overflowed);
13470 if (!overflowed)
13471 {
13472 bool pos = !wi::neg_p (wi, sgn);
13473 if (!wi::fits_to_tree_p (wi, type))
13474 {
13475 unsigned int itk;
13476 for (itk = itk_int; itk != itk_none; itk++)
13477 {
13478 type = integer_types[itk];
13479 if (type != NULL_TREE
13480 && (pos || !TYPE_UNSIGNED (type))
13481 && wi::fits_to_tree_p (wi, type))
13482 break;
13483 }
13484 if (type && cxx_dialect < cxx11
13485 && itk > itk_unsigned_long)
13486 pedwarn (input_location, OPT_Wlong_long, pos ? "\
13487 incremented enumerator value is too large for %<unsigned long%>" : "\
13488 incremented enumerator value is too large for %<long%>");
13489 }
13490 if (type == NULL_TREE)
13491 overflowed = true;
13492 else
13493 value = wide_int_to_tree (type, wi);
13494 }
13495
13496 if (overflowed)
13497 {
13498 error ("overflow in enumeration values at %qD", name);
13499 value = error_mark_node;
13500 }
13501 }
13502 }
13503 else
13504 value = integer_zero_node;
13505 }
13506
13507 /* Remove no-op casts from the value. */
13508 STRIP_TYPE_NOPS (value);
13509
13510 /* If the underlying type of the enum is fixed, check whether
13511 the enumerator values fits in the underlying type. If it
13512 does not fit, the program is ill-formed [C++0x dcl.enum]. */
13513 if (ENUM_UNDERLYING_TYPE (enumtype)
13514 && value
13515 && TREE_CODE (value) == INTEGER_CST)
13516 {
13517 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
13518 error ("enumerator value %E is outside the range of underlying "
13519 "type %<%T%>", value, ENUM_UNDERLYING_TYPE (enumtype));
13520
13521 /* Convert the value to the appropriate type. */
13522 value = convert (ENUM_UNDERLYING_TYPE (enumtype), value);
13523 }
13524 }
13525
13526 /* C++ associates enums with global, function, or class declarations. */
13527 context = current_scope ();
13528
13529 /* Build the actual enumeration constant. Note that the enumeration
13530 constants have the underlying type of the enum (if it is fixed)
13531 or the type of their initializer (if the underlying type of the
13532 enum is not fixed):
13533
13534 [ C++0x dcl.enum ]
13535
13536 If the underlying type is fixed, the type of each enumerator
13537 prior to the closing brace is the underlying type; if the
13538 initializing value of an enumerator cannot be represented by
13539 the underlying type, the program is ill-formed. If the
13540 underlying type is not fixed, the type of each enumerator is
13541 the type of its initializing value.
13542
13543 If the underlying type is not fixed, it will be computed by
13544 finish_enum and we will reset the type of this enumerator. Of
13545 course, if we're processing a template, there may be no value. */
13546 type = value ? TREE_TYPE (value) : NULL_TREE;
13547
13548 decl = build_decl (loc, CONST_DECL, name, type);
13549
13550 DECL_CONTEXT (decl) = enumtype;
13551 TREE_CONSTANT (decl) = 1;
13552 TREE_READONLY (decl) = 1;
13553 DECL_INITIAL (decl) = value;
13554
13555 if (attributes)
13556 cplus_decl_attributes (&decl, attributes, 0);
13557
13558 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
13559 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
13560 on the TYPE_FIELDS list for `S'. (That's so that you can say
13561 things like `S::i' later.) */
13562 finish_member_declaration (decl);
13563 else
13564 pushdecl (decl);
13565
13566 /* Add this enumeration constant to the list for this type. */
13567 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
13568 }
13569
13570 /* Look for an enumerator with the given NAME within the enumeration
13571 type ENUMTYPE. This routine is used primarily for qualified name
13572 lookup into an enumerator in C++0x, e.g.,
13573
13574 enum class Color { Red, Green, Blue };
13575
13576 Color color = Color::Red;
13577
13578 Returns the value corresponding to the enumerator, or
13579 NULL_TREE if no such enumerator was found. */
13580 tree
13581 lookup_enumerator (tree enumtype, tree name)
13582 {
13583 tree e;
13584 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
13585
13586 e = purpose_member (name, TYPE_VALUES (enumtype));
13587 return e? TREE_VALUE (e) : NULL_TREE;
13588 }
13589
13590 \f
13591 /* We're defining DECL. Make sure that its type is OK. */
13592
13593 static void
13594 check_function_type (tree decl, tree current_function_parms)
13595 {
13596 tree fntype = TREE_TYPE (decl);
13597 tree return_type = complete_type (TREE_TYPE (fntype));
13598
13599 /* In a function definition, arg types must be complete. */
13600 require_complete_types_for_parms (current_function_parms);
13601
13602 if (dependent_type_p (return_type)
13603 || type_uses_auto (return_type))
13604 return;
13605 if (!COMPLETE_OR_VOID_TYPE_P (return_type)
13606 || (TYPE_FOR_JAVA (return_type) && MAYBE_CLASS_TYPE_P (return_type)))
13607 {
13608 tree args = TYPE_ARG_TYPES (fntype);
13609
13610 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
13611 error ("return type %q#T is incomplete", return_type);
13612 else
13613 error ("return type has Java class type %q#T", return_type);
13614
13615 /* Make it return void instead. */
13616 if (TREE_CODE (fntype) == METHOD_TYPE)
13617 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
13618 void_type_node,
13619 TREE_CHAIN (args));
13620 else
13621 fntype = build_function_type (void_type_node, args);
13622 fntype
13623 = build_exception_variant (fntype,
13624 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)));
13625 fntype = (cp_build_type_attribute_variant
13626 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
13627 TREE_TYPE (decl) = fntype;
13628 }
13629 else
13630 abstract_virtuals_error (decl, TREE_TYPE (fntype));
13631 }
13632
13633 /* True iff FN is an implicitly-defined default constructor. */
13634
13635 static bool
13636 implicit_default_ctor_p (tree fn)
13637 {
13638 return (DECL_CONSTRUCTOR_P (fn)
13639 && !user_provided_p (fn)
13640 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)));
13641 }
13642
13643 /* Create the FUNCTION_DECL for a function definition.
13644 DECLSPECS and DECLARATOR are the parts of the declaration;
13645 they describe the function's name and the type it returns,
13646 but twisted together in a fashion that parallels the syntax of C.
13647
13648 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
13649 DECLARATOR is really the DECL for the function we are about to
13650 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
13651 indicating that the function is an inline defined in-class.
13652
13653 This function creates a binding context for the function body
13654 as well as setting up the FUNCTION_DECL in current_function_decl.
13655
13656 For C++, we must first check whether that datum makes any sense.
13657 For example, "class A local_a(1,2);" means that variable local_a
13658 is an aggregate of type A, which should have a constructor
13659 applied to it with the argument list [1, 2].
13660
13661 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
13662 or may be a BLOCK if the function has been defined previously
13663 in this translation unit. On exit, DECL_INITIAL (decl1) will be
13664 error_mark_node if the function has never been defined, or
13665 a BLOCK if the function has been defined somewhere. */
13666
13667 bool
13668 start_preparsed_function (tree decl1, tree attrs, int flags)
13669 {
13670 tree ctype = NULL_TREE;
13671 tree fntype;
13672 tree restype;
13673 int doing_friend = 0;
13674 cp_binding_level *bl;
13675 tree current_function_parms;
13676 struct c_fileinfo *finfo
13677 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
13678 bool honor_interface;
13679
13680 /* Sanity check. */
13681 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
13682 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
13683
13684 fntype = TREE_TYPE (decl1);
13685 if (TREE_CODE (fntype) == METHOD_TYPE)
13686 ctype = TYPE_METHOD_BASETYPE (fntype);
13687
13688 /* ISO C++ 11.4/5. A friend function defined in a class is in
13689 the (lexical) scope of the class in which it is defined. */
13690 if (!ctype && DECL_FRIEND_P (decl1))
13691 {
13692 ctype = DECL_FRIEND_CONTEXT (decl1);
13693
13694 /* CTYPE could be null here if we're dealing with a template;
13695 for example, `inline friend float foo()' inside a template
13696 will have no CTYPE set. */
13697 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
13698 ctype = NULL_TREE;
13699 else
13700 doing_friend = 1;
13701 }
13702
13703 if (DECL_DECLARED_INLINE_P (decl1)
13704 && lookup_attribute ("noinline", attrs))
13705 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
13706 "inline function %qD given attribute noinline", decl1);
13707
13708 /* Handle gnu_inline attribute. */
13709 if (GNU_INLINE_P (decl1))
13710 {
13711 DECL_EXTERNAL (decl1) = 1;
13712 DECL_NOT_REALLY_EXTERN (decl1) = 0;
13713 DECL_INTERFACE_KNOWN (decl1) = 1;
13714 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
13715 }
13716
13717 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
13718 /* This is a constructor, we must ensure that any default args
13719 introduced by this definition are propagated to the clones
13720 now. The clones are used directly in overload resolution. */
13721 adjust_clone_args (decl1);
13722
13723 /* Sometimes we don't notice that a function is a static member, and
13724 build a METHOD_TYPE for it. Fix that up now. */
13725 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
13726 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
13727
13728 /* Set up current_class_type, and enter the scope of the class, if
13729 appropriate. */
13730 if (ctype)
13731 push_nested_class (ctype);
13732 else if (DECL_STATIC_FUNCTION_P (decl1))
13733 push_nested_class (DECL_CONTEXT (decl1));
13734
13735 /* Now that we have entered the scope of the class, we must restore
13736 the bindings for any template parameters surrounding DECL1, if it
13737 is an inline member template. (Order is important; consider the
13738 case where a template parameter has the same name as a field of
13739 the class.) It is not until after this point that
13740 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
13741 if (flags & SF_INCLASS_INLINE)
13742 maybe_begin_member_template_processing (decl1);
13743
13744 /* Effective C++ rule 15. */
13745 if (warn_ecpp
13746 && DECL_OVERLOADED_OPERATOR_P (decl1) == NOP_EXPR
13747 && VOID_TYPE_P (TREE_TYPE (fntype)))
13748 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
13749
13750 /* Make the init_value nonzero so pushdecl knows this is not tentative.
13751 error_mark_node is replaced below (in poplevel) with the BLOCK. */
13752 if (!DECL_INITIAL (decl1))
13753 DECL_INITIAL (decl1) = error_mark_node;
13754
13755 /* This function exists in static storage.
13756 (This does not mean `static' in the C sense!) */
13757 TREE_STATIC (decl1) = 1;
13758
13759 /* We must call push_template_decl after current_class_type is set
13760 up. (If we are processing inline definitions after exiting a
13761 class scope, current_class_type will be NULL_TREE until set above
13762 by push_nested_class.) */
13763 if (processing_template_decl)
13764 {
13765 tree newdecl1 = push_template_decl (decl1);
13766 if (newdecl1 == error_mark_node)
13767 {
13768 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
13769 pop_nested_class ();
13770 return false;
13771 }
13772 decl1 = newdecl1;
13773 }
13774
13775 /* We are now in the scope of the function being defined. */
13776 current_function_decl = decl1;
13777
13778 /* Save the parm names or decls from this function's declarator
13779 where store_parm_decls will find them. */
13780 current_function_parms = DECL_ARGUMENTS (decl1);
13781
13782 /* Make sure the parameter and return types are reasonable. When
13783 you declare a function, these types can be incomplete, but they
13784 must be complete when you define the function. */
13785 check_function_type (decl1, current_function_parms);
13786
13787 /* Build the return declaration for the function. */
13788 restype = TREE_TYPE (fntype);
13789
13790 if (DECL_RESULT (decl1) == NULL_TREE)
13791 {
13792 tree resdecl;
13793
13794 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
13795 DECL_ARTIFICIAL (resdecl) = 1;
13796 DECL_IGNORED_P (resdecl) = 1;
13797 DECL_RESULT (decl1) = resdecl;
13798
13799 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
13800 }
13801
13802 /* Let the user know we're compiling this function. */
13803 announce_function (decl1);
13804
13805 /* Record the decl so that the function name is defined.
13806 If we already have a decl for this name, and it is a FUNCTION_DECL,
13807 use the old decl. */
13808 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
13809 {
13810 /* A specialization is not used to guide overload resolution. */
13811 if (!DECL_FUNCTION_MEMBER_P (decl1)
13812 && !(DECL_USE_TEMPLATE (decl1) &&
13813 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
13814 {
13815 tree olddecl = pushdecl (decl1);
13816
13817 if (olddecl == error_mark_node)
13818 /* If something went wrong when registering the declaration,
13819 use DECL1; we have to have a FUNCTION_DECL to use when
13820 parsing the body of the function. */
13821 ;
13822 else
13823 {
13824 /* Otherwise, OLDDECL is either a previous declaration
13825 of the same function or DECL1 itself. */
13826
13827 if (warn_missing_declarations
13828 && olddecl == decl1
13829 && !DECL_MAIN_P (decl1)
13830 && TREE_PUBLIC (decl1)
13831 && !DECL_DECLARED_INLINE_P (decl1))
13832 {
13833 tree context;
13834
13835 /* Check whether DECL1 is in an anonymous
13836 namespace. */
13837 for (context = DECL_CONTEXT (decl1);
13838 context;
13839 context = DECL_CONTEXT (context))
13840 {
13841 if (TREE_CODE (context) == NAMESPACE_DECL
13842 && DECL_NAME (context) == NULL_TREE)
13843 break;
13844 }
13845
13846 if (context == NULL)
13847 warning_at (DECL_SOURCE_LOCATION (decl1),
13848 OPT_Wmissing_declarations,
13849 "no previous declaration for %qD", decl1);
13850 }
13851
13852 decl1 = olddecl;
13853 }
13854 }
13855 else
13856 {
13857 /* We need to set the DECL_CONTEXT. */
13858 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
13859 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
13860 }
13861 fntype = TREE_TYPE (decl1);
13862 restype = TREE_TYPE (fntype);
13863
13864 /* If #pragma weak applies, mark the decl appropriately now.
13865 The pragma only applies to global functions. Because
13866 determining whether or not the #pragma applies involves
13867 computing the mangled name for the declaration, we cannot
13868 apply the pragma until after we have merged this declaration
13869 with any previous declarations; if the original declaration
13870 has a linkage specification, that specification applies to
13871 the definition as well, and may affect the mangled name. */
13872 if (DECL_FILE_SCOPE_P (decl1))
13873 maybe_apply_pragma_weak (decl1);
13874 }
13875
13876 /* Reset this in case the call to pushdecl changed it. */
13877 current_function_decl = decl1;
13878
13879 gcc_assert (DECL_INITIAL (decl1));
13880
13881 /* This function may already have been parsed, in which case just
13882 return; our caller will skip over the body without parsing. */
13883 if (DECL_INITIAL (decl1) != error_mark_node)
13884 return true;
13885
13886 /* Initialize RTL machinery. We cannot do this until
13887 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
13888 even when processing a template; this is how we get
13889 CFUN set up, and our per-function variables initialized.
13890 FIXME factor out the non-RTL stuff. */
13891 bl = current_binding_level;
13892 allocate_struct_function (decl1, processing_template_decl);
13893
13894 /* Initialize the language data structures. Whenever we start
13895 a new function, we destroy temporaries in the usual way. */
13896 cfun->language = ggc_cleared_alloc<language_function> ();
13897 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
13898 current_binding_level = bl;
13899
13900 if (!processing_template_decl && type_uses_auto (restype))
13901 {
13902 FNDECL_USED_AUTO (decl1) = true;
13903 current_function_auto_return_pattern = restype;
13904 }
13905
13906 /* Start the statement-tree, start the tree now. */
13907 DECL_SAVED_TREE (decl1) = push_stmt_list ();
13908
13909 /* If we are (erroneously) defining a function that we have already
13910 defined before, wipe out what we knew before. */
13911 if (!DECL_PENDING_INLINE_P (decl1))
13912 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
13913
13914 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
13915 {
13916 /* We know that this was set up by `grokclassfn'. We do not
13917 wait until `store_parm_decls', since evil parse errors may
13918 never get us to that point. Here we keep the consistency
13919 between `current_class_type' and `current_class_ptr'. */
13920 tree t = DECL_ARGUMENTS (decl1);
13921
13922 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
13923 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
13924
13925 cp_function_chain->x_current_class_ref
13926 = cp_build_indirect_ref (t, RO_NULL, tf_warning_or_error);
13927 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
13928 cp_function_chain->x_current_class_ptr = t;
13929
13930 /* Constructors and destructors need to know whether they're "in
13931 charge" of initializing virtual base classes. */
13932 t = DECL_CHAIN (t);
13933 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
13934 {
13935 current_in_charge_parm = t;
13936 t = DECL_CHAIN (t);
13937 }
13938 if (DECL_HAS_VTT_PARM_P (decl1))
13939 {
13940 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
13941 current_vtt_parm = t;
13942 }
13943 }
13944
13945 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
13946 /* Implicitly-defined methods (like the
13947 destructor for a class in which no destructor
13948 is explicitly declared) must not be defined
13949 until their definition is needed. So, we
13950 ignore interface specifications for
13951 compiler-generated functions. */
13952 && !DECL_ARTIFICIAL (decl1));
13953
13954 if (processing_template_decl)
13955 /* Don't mess with interface flags. */;
13956 else if (DECL_INTERFACE_KNOWN (decl1))
13957 {
13958 tree ctx = decl_function_context (decl1);
13959
13960 if (DECL_NOT_REALLY_EXTERN (decl1))
13961 DECL_EXTERNAL (decl1) = 0;
13962
13963 if (ctx != NULL_TREE && vague_linkage_p (ctx))
13964 /* This is a function in a local class in an extern inline
13965 or template function. */
13966 comdat_linkage (decl1);
13967 }
13968 /* If this function belongs to an interface, it is public.
13969 If it belongs to someone else's interface, it is also external.
13970 This only affects inlines and template instantiations. */
13971 else if (!finfo->interface_unknown && honor_interface)
13972 {
13973 if (DECL_DECLARED_INLINE_P (decl1)
13974 || DECL_TEMPLATE_INSTANTIATION (decl1))
13975 {
13976 DECL_EXTERNAL (decl1)
13977 = (finfo->interface_only
13978 || (DECL_DECLARED_INLINE_P (decl1)
13979 && ! flag_implement_inlines
13980 && !DECL_VINDEX (decl1)));
13981
13982 /* For WIN32 we also want to put these in linkonce sections. */
13983 maybe_make_one_only (decl1);
13984 }
13985 else
13986 DECL_EXTERNAL (decl1) = 0;
13987 DECL_INTERFACE_KNOWN (decl1) = 1;
13988 /* If this function is in an interface implemented in this file,
13989 make sure that the back end knows to emit this function
13990 here. */
13991 if (!DECL_EXTERNAL (decl1))
13992 mark_needed (decl1);
13993 }
13994 else if (finfo->interface_unknown && finfo->interface_only
13995 && honor_interface)
13996 {
13997 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
13998 interface, we will have both finfo->interface_unknown and
13999 finfo->interface_only set. In that case, we don't want to
14000 use the normal heuristics because someone will supply a
14001 #pragma implementation elsewhere, and deducing it here would
14002 produce a conflict. */
14003 comdat_linkage (decl1);
14004 DECL_EXTERNAL (decl1) = 0;
14005 DECL_INTERFACE_KNOWN (decl1) = 1;
14006 DECL_DEFER_OUTPUT (decl1) = 1;
14007 }
14008 else
14009 {
14010 /* This is a definition, not a reference.
14011 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
14012 if (!GNU_INLINE_P (decl1))
14013 DECL_EXTERNAL (decl1) = 0;
14014
14015 if ((DECL_DECLARED_INLINE_P (decl1)
14016 || DECL_TEMPLATE_INSTANTIATION (decl1))
14017 && ! DECL_INTERFACE_KNOWN (decl1))
14018 DECL_DEFER_OUTPUT (decl1) = 1;
14019 else
14020 DECL_INTERFACE_KNOWN (decl1) = 1;
14021 }
14022
14023 /* Determine the ELF visibility attribute for the function. We must not
14024 do this before calling "pushdecl", as we must allow "duplicate_decls"
14025 to merge any attributes appropriately. We also need to wait until
14026 linkage is set. */
14027 if (!DECL_CLONED_FUNCTION_P (decl1))
14028 determine_visibility (decl1);
14029
14030 if (!processing_template_decl)
14031 maybe_instantiate_noexcept (decl1);
14032
14033 begin_scope (sk_function_parms, decl1);
14034
14035 ++function_depth;
14036
14037 if (DECL_DESTRUCTOR_P (decl1)
14038 || (DECL_CONSTRUCTOR_P (decl1)
14039 && targetm.cxx.cdtor_returns_this ()))
14040 {
14041 cdtor_label = create_artificial_label (input_location);
14042 }
14043
14044 start_fname_decls ();
14045
14046 store_parm_decls (current_function_parms);
14047
14048 if (!processing_template_decl
14049 && flag_lifetime_dse && DECL_CONSTRUCTOR_P (decl1)
14050 /* We can't clobber safely for an implicitly-defined default constructor
14051 because part of the initialization might happen before we enter the
14052 consructor, via AGGR_INIT_ZERO_FIRST (c++/68006). */
14053 && !implicit_default_ctor_p (decl1))
14054 {
14055 /* Insert a clobber to let the back end know that the object storage
14056 is dead when we enter the constructor. */
14057 tree btype = CLASSTYPE_AS_BASE (current_class_type);
14058 tree clobber = build_constructor (btype, NULL);
14059 TREE_THIS_VOLATILE (clobber) = true;
14060 tree bref = build_nop (build_reference_type (btype), current_class_ptr);
14061 bref = convert_from_reference (bref);
14062 tree exprstmt = build2 (MODIFY_EXPR, btype, bref, clobber);
14063 finish_expr_stmt (exprstmt);
14064 }
14065
14066 return true;
14067 }
14068
14069
14070 /* Like start_preparsed_function, except that instead of a
14071 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
14072
14073 Returns true on success. If the DECLARATOR is not suitable
14074 for a function, we return false, which tells the parser to
14075 skip the entire function. */
14076
14077 bool
14078 start_function (cp_decl_specifier_seq *declspecs,
14079 const cp_declarator *declarator,
14080 tree attrs)
14081 {
14082 tree decl1;
14083
14084 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
14085 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
14086 if (decl1 == error_mark_node)
14087 return false;
14088 /* If the declarator is not suitable for a function definition,
14089 cause a syntax error. */
14090 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
14091 {
14092 error ("invalid function declaration");
14093 return false;
14094 }
14095
14096 if (DECL_MAIN_P (decl1))
14097 /* main must return int. grokfndecl should have corrected it
14098 (and issued a diagnostic) if the user got it wrong. */
14099 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
14100 integer_type_node));
14101
14102 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
14103 }
14104 \f
14105 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
14106 FN. */
14107
14108 static bool
14109 use_eh_spec_block (tree fn)
14110 {
14111 return (flag_exceptions && flag_enforce_eh_specs
14112 && !processing_template_decl
14113 && !type_throw_all_p (TREE_TYPE (fn))
14114 /* We insert the EH_SPEC_BLOCK only in the original
14115 function; then, it is copied automatically to the
14116 clones. */
14117 && !DECL_CLONED_FUNCTION_P (fn)
14118 /* Implicitly-generated constructors and destructors have
14119 exception specifications. However, those specifications
14120 are the union of the possible exceptions specified by the
14121 constructors/destructors for bases and members, so no
14122 unallowed exception will ever reach this function. By
14123 not creating the EH_SPEC_BLOCK we save a little memory,
14124 and we avoid spurious warnings about unreachable
14125 code. */
14126 && !DECL_DEFAULTED_FN (fn));
14127 }
14128
14129 /* Store the parameter declarations into the current function declaration.
14130 This is called after parsing the parameter declarations, before
14131 digesting the body of the function.
14132
14133 Also install to binding contour return value identifier, if any. */
14134
14135 static void
14136 store_parm_decls (tree current_function_parms)
14137 {
14138 tree fndecl = current_function_decl;
14139 tree parm;
14140
14141 /* This is a chain of any other decls that came in among the parm
14142 declarations. If a parm is declared with enum {foo, bar} x;
14143 then CONST_DECLs for foo and bar are put here. */
14144 tree nonparms = NULL_TREE;
14145
14146 if (current_function_parms)
14147 {
14148 /* This case is when the function was defined with an ANSI prototype.
14149 The parms already have decls, so we need not do anything here
14150 except record them as in effect
14151 and complain if any redundant old-style parm decls were written. */
14152
14153 tree specparms = current_function_parms;
14154 tree next;
14155
14156 /* Must clear this because it might contain TYPE_DECLs declared
14157 at class level. */
14158 current_binding_level->names = NULL;
14159
14160 /* If we're doing semantic analysis, then we'll call pushdecl
14161 for each of these. We must do them in reverse order so that
14162 they end in the correct forward order. */
14163 specparms = nreverse (specparms);
14164
14165 for (parm = specparms; parm; parm = next)
14166 {
14167 next = DECL_CHAIN (parm);
14168 if (TREE_CODE (parm) == PARM_DECL)
14169 {
14170 if (DECL_NAME (parm) == NULL_TREE
14171 || !VOID_TYPE_P (parm))
14172 pushdecl (parm);
14173 else
14174 error ("parameter %qD declared void", parm);
14175 }
14176 else
14177 {
14178 /* If we find an enum constant or a type tag,
14179 put it aside for the moment. */
14180 TREE_CHAIN (parm) = NULL_TREE;
14181 nonparms = chainon (nonparms, parm);
14182 }
14183 }
14184
14185 /* Get the decls in their original chain order and record in the
14186 function. This is all and only the PARM_DECLs that were
14187 pushed into scope by the loop above. */
14188 DECL_ARGUMENTS (fndecl) = getdecls ();
14189 }
14190 else
14191 DECL_ARGUMENTS (fndecl) = NULL_TREE;
14192
14193 /* Now store the final chain of decls for the arguments
14194 as the decl-chain of the current lexical scope.
14195 Put the enumerators in as well, at the front so that
14196 DECL_ARGUMENTS is not modified. */
14197 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
14198
14199 if (use_eh_spec_block (current_function_decl))
14200 current_eh_spec_block = begin_eh_spec_block ();
14201 }
14202
14203 \f
14204 /* We have finished doing semantic analysis on DECL, but have not yet
14205 generated RTL for its body. Save away our current state, so that
14206 when we want to generate RTL later we know what to do. */
14207
14208 static void
14209 save_function_data (tree decl)
14210 {
14211 struct language_function *f;
14212
14213 /* Save the language-specific per-function data so that we can
14214 get it back when we really expand this function. */
14215 gcc_assert (!DECL_PENDING_INLINE_P (decl));
14216
14217 /* Make a copy. */
14218 f = ggc_alloc<language_function> ();
14219 memcpy (f, cp_function_chain, sizeof (struct language_function));
14220 DECL_SAVED_FUNCTION_DATA (decl) = f;
14221
14222 /* Clear out the bits we don't need. */
14223 f->base.x_stmt_tree.x_cur_stmt_list = NULL;
14224 f->bindings = NULL;
14225 f->x_local_names = NULL;
14226 f->base.local_typedefs = NULL;
14227 }
14228
14229
14230 /* Set the return value of the constructor (if present). */
14231
14232 static void
14233 finish_constructor_body (void)
14234 {
14235 tree val;
14236 tree exprstmt;
14237
14238 if (targetm.cxx.cdtor_returns_this ()
14239 && (! TYPE_FOR_JAVA (current_class_type)))
14240 {
14241 /* Any return from a constructor will end up here. */
14242 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
14243
14244 val = DECL_ARGUMENTS (current_function_decl);
14245 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
14246 DECL_RESULT (current_function_decl), val);
14247 /* Return the address of the object. */
14248 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
14249 add_stmt (exprstmt);
14250 }
14251 }
14252
14253 /* Do all the processing for the beginning of a destructor; set up the
14254 vtable pointers and cleanups for bases and members. */
14255
14256 static void
14257 begin_destructor_body (void)
14258 {
14259 tree compound_stmt;
14260
14261 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
14262 issued an error message. We still want to try to process the
14263 body of the function, but initialize_vtbl_ptrs will crash if
14264 TYPE_BINFO is NULL. */
14265 if (COMPLETE_TYPE_P (current_class_type))
14266 {
14267 compound_stmt = begin_compound_stmt (0);
14268 /* Make all virtual function table pointers in non-virtual base
14269 classes point to CURRENT_CLASS_TYPE's virtual function
14270 tables. */
14271 initialize_vtbl_ptrs (current_class_ptr);
14272 finish_compound_stmt (compound_stmt);
14273
14274 if (flag_lifetime_dse)
14275 {
14276 /* Insert a cleanup to let the back end know that the object is dead
14277 when we exit the destructor, either normally or via exception. */
14278 tree btype = CLASSTYPE_AS_BASE (current_class_type);
14279 tree clobber = build_constructor (btype, NULL);
14280 TREE_THIS_VOLATILE (clobber) = true;
14281 tree bref = build_nop (build_reference_type (btype),
14282 current_class_ptr);
14283 bref = convert_from_reference (bref);
14284 tree exprstmt = build2 (MODIFY_EXPR, btype, bref, clobber);
14285 finish_decl_cleanup (NULL_TREE, exprstmt);
14286 }
14287
14288 /* And insert cleanups for our bases and members so that they
14289 will be properly destroyed if we throw. */
14290 push_base_cleanups ();
14291 }
14292 }
14293
14294 /* At the end of every destructor we generate code to delete the object if
14295 necessary. Do that now. */
14296
14297 static void
14298 finish_destructor_body (void)
14299 {
14300 tree exprstmt;
14301
14302 /* Any return from a destructor will end up here; that way all base
14303 and member cleanups will be run when the function returns. */
14304 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
14305
14306 /* In a virtual destructor, we must call delete. */
14307 if (DECL_VIRTUAL_P (current_function_decl))
14308 {
14309 tree if_stmt;
14310 tree virtual_size = cxx_sizeof (current_class_type);
14311
14312 /* [class.dtor]
14313
14314 At the point of definition of a virtual destructor (including
14315 an implicit definition), non-placement operator delete shall
14316 be looked up in the scope of the destructor's class and if
14317 found shall be accessible and unambiguous. */
14318 exprstmt = build_op_delete_call (DELETE_EXPR, current_class_ptr,
14319 virtual_size,
14320 /*global_p=*/false,
14321 /*placement=*/NULL_TREE,
14322 /*alloc_fn=*/NULL_TREE,
14323 tf_warning_or_error);
14324
14325 if_stmt = begin_if_stmt ();
14326 finish_if_stmt_cond (build2 (BIT_AND_EXPR, integer_type_node,
14327 current_in_charge_parm,
14328 integer_one_node),
14329 if_stmt);
14330 finish_expr_stmt (exprstmt);
14331 finish_then_clause (if_stmt);
14332 finish_if_stmt (if_stmt);
14333 }
14334
14335 if (targetm.cxx.cdtor_returns_this ())
14336 {
14337 tree val;
14338
14339 val = DECL_ARGUMENTS (current_function_decl);
14340 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
14341 DECL_RESULT (current_function_decl), val);
14342 /* Return the address of the object. */
14343 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
14344 add_stmt (exprstmt);
14345 }
14346 }
14347
14348 /* Do the necessary processing for the beginning of a function body, which
14349 in this case includes member-initializers, but not the catch clauses of
14350 a function-try-block. Currently, this means opening a binding level
14351 for the member-initializers (in a ctor), member cleanups (in a dtor),
14352 and capture proxies (in a lambda operator()). */
14353
14354 tree
14355 begin_function_body (void)
14356 {
14357 tree stmt;
14358
14359 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
14360 return NULL_TREE;
14361
14362 if (processing_template_decl)
14363 /* Do nothing now. */;
14364 else
14365 /* Always keep the BLOCK node associated with the outermost pair of
14366 curly braces of a function. These are needed for correct
14367 operation of dwarfout.c. */
14368 keep_next_level (true);
14369
14370 stmt = begin_compound_stmt (BCS_FN_BODY);
14371
14372 if (processing_template_decl)
14373 /* Do nothing now. */;
14374 else if (DECL_DESTRUCTOR_P (current_function_decl))
14375 begin_destructor_body ();
14376
14377 return stmt;
14378 }
14379
14380 /* Do the processing for the end of a function body. Currently, this means
14381 closing out the cleanups for fully-constructed bases and members, and in
14382 the case of the destructor, deleting the object if desired. Again, this
14383 is only meaningful for [cd]tors, since they are the only functions where
14384 there is a significant distinction between the main body and any
14385 function catch clauses. Handling, say, main() return semantics here
14386 would be wrong, as flowing off the end of a function catch clause for
14387 main() would also need to return 0. */
14388
14389 void
14390 finish_function_body (tree compstmt)
14391 {
14392 if (compstmt == NULL_TREE)
14393 return;
14394
14395 /* Close the block. */
14396 finish_compound_stmt (compstmt);
14397
14398 if (processing_template_decl)
14399 /* Do nothing now. */;
14400 else if (DECL_CONSTRUCTOR_P (current_function_decl))
14401 finish_constructor_body ();
14402 else if (DECL_DESTRUCTOR_P (current_function_decl))
14403 finish_destructor_body ();
14404 }
14405
14406 /* Given a function, returns the BLOCK corresponding to the outermost level
14407 of curly braces, skipping the artificial block created for constructor
14408 initializers. */
14409
14410 tree
14411 outer_curly_brace_block (tree fndecl)
14412 {
14413 tree block = DECL_INITIAL (fndecl);
14414 if (BLOCK_OUTER_CURLY_BRACE_P (block))
14415 return block;
14416 block = BLOCK_SUBBLOCKS (block);
14417 if (BLOCK_OUTER_CURLY_BRACE_P (block))
14418 return block;
14419 block = BLOCK_SUBBLOCKS (block);
14420 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
14421 return block;
14422 }
14423
14424 /* If FNDECL is a class's key method, add the class to the list of
14425 keyed classes that should be emitted. */
14426
14427 static void
14428 record_key_method_defined (tree fndecl)
14429 {
14430 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
14431 && DECL_VIRTUAL_P (fndecl)
14432 && !processing_template_decl)
14433 {
14434 tree fnclass = DECL_CONTEXT (fndecl);
14435 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
14436 keyed_classes = tree_cons (NULL_TREE, fnclass, keyed_classes);
14437 }
14438 }
14439
14440 /* Subroutine of finish_function.
14441 Save the body of constexpr functions for possible
14442 future compile time evaluation. */
14443
14444 static void
14445 maybe_save_function_definition (tree fun)
14446 {
14447 if (!processing_template_decl
14448 && DECL_DECLARED_CONSTEXPR_P (fun)
14449 && !cp_function_chain->invalid_constexpr
14450 && !DECL_CLONED_FUNCTION_P (fun))
14451 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
14452 }
14453
14454 /* Finish up a function declaration and compile that function
14455 all the way to assembler language output. The free the storage
14456 for the function definition.
14457
14458 FLAGS is a bitwise or of the following values:
14459 2 - INCLASS_INLINE
14460 We just finished processing the body of an in-class inline
14461 function definition. (This processing will have taken place
14462 after the class definition is complete.) */
14463
14464 tree
14465 finish_function (int flags)
14466 {
14467 tree fndecl = current_function_decl;
14468 tree fntype, ctype = NULL_TREE;
14469 int inclass_inline = (flags & 2) != 0;
14470
14471 /* When we get some parse errors, we can end up without a
14472 current_function_decl, so cope. */
14473 if (fndecl == NULL_TREE)
14474 return error_mark_node;
14475
14476 if (c_dialect_objc ())
14477 objc_finish_function ();
14478
14479 gcc_assert (!defer_mark_used_calls);
14480 defer_mark_used_calls = true;
14481
14482 record_key_method_defined (fndecl);
14483
14484 fntype = TREE_TYPE (fndecl);
14485
14486 /* TREE_READONLY (fndecl) = 1;
14487 This caused &foo to be of type ptr-to-const-function
14488 which then got a warning when stored in a ptr-to-function variable. */
14489
14490 gcc_assert (building_stmt_list_p ());
14491 /* The current function is being defined, so its DECL_INITIAL should
14492 be set, and unless there's a multiple definition, it should be
14493 error_mark_node. */
14494 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
14495
14496 /* For a cloned function, we've already got all the code we need;
14497 there's no need to add any extra bits. */
14498 if (!DECL_CLONED_FUNCTION_P (fndecl))
14499 {
14500 /* Make it so that `main' always returns 0 by default. */
14501 if (DECL_MAIN_P (current_function_decl))
14502 finish_return_stmt (integer_zero_node);
14503
14504 if (use_eh_spec_block (current_function_decl))
14505 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
14506 (TREE_TYPE (current_function_decl)),
14507 current_eh_spec_block);
14508 }
14509
14510 /* If we're saving up tree structure, tie off the function now. */
14511 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
14512
14513 if (fn_contains_cilk_spawn_p (cfun) && !processing_template_decl)
14514 cfun->cilk_frame_decl = insert_cilk_frame (fndecl);
14515
14516 finish_fname_decls ();
14517
14518 /* If this function can't throw any exceptions, remember that. */
14519 if (!processing_template_decl
14520 && !cp_function_chain->can_throw
14521 && !flag_non_call_exceptions
14522 && !decl_replaceable_p (fndecl))
14523 TREE_NOTHROW (fndecl) = 1;
14524
14525 /* This must come after expand_function_end because cleanups might
14526 have declarations (from inline functions) that need to go into
14527 this function's blocks. */
14528
14529 /* If the current binding level isn't the outermost binding level
14530 for this function, either there is a bug, or we have experienced
14531 syntax errors and the statement tree is malformed. */
14532 if (current_binding_level->kind != sk_function_parms)
14533 {
14534 /* Make sure we have already experienced errors. */
14535 gcc_assert (errorcount);
14536
14537 /* Throw away the broken statement tree and extra binding
14538 levels. */
14539 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
14540
14541 while (current_binding_level->kind != sk_function_parms)
14542 {
14543 if (current_binding_level->kind == sk_class)
14544 pop_nested_class ();
14545 else
14546 poplevel (0, 0, 0);
14547 }
14548 }
14549 poplevel (1, 0, 1);
14550
14551 /* Statements should always be full-expressions at the outermost set
14552 of curly braces for a function. */
14553 gcc_assert (stmts_are_full_exprs_p ());
14554
14555 /* If there are no return statements in a function with auto return type,
14556 the return type is void. But if the declared type is something like
14557 auto*, this is an error. */
14558 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
14559 && TREE_TYPE (fntype) == current_function_auto_return_pattern)
14560 {
14561 if (!is_auto (current_function_auto_return_pattern)
14562 && !current_function_returns_value && !current_function_returns_null)
14563 {
14564 error ("no return statements in function returning %qT",
14565 current_function_auto_return_pattern);
14566 inform (input_location, "only plain %<auto%> return type can be "
14567 "deduced to %<void%>");
14568 }
14569 apply_deduced_return_type (fndecl, void_type_node);
14570 fntype = TREE_TYPE (fndecl);
14571 }
14572
14573 // If this is a concept, check that the definition is reasonable.
14574 if (DECL_DECLARED_CONCEPT_P (fndecl))
14575 check_function_concept (fndecl);
14576
14577 /* Save constexpr function body before it gets munged by
14578 the NRV transformation. */
14579 maybe_save_function_definition (fndecl);
14580
14581 /* Set up the named return value optimization, if we can. Candidate
14582 variables are selected in check_return_expr. */
14583 if (current_function_return_value)
14584 {
14585 tree r = current_function_return_value;
14586 tree outer;
14587
14588 if (r != error_mark_node
14589 /* This is only worth doing for fns that return in memory--and
14590 simpler, since we don't have to worry about promoted modes. */
14591 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
14592 /* Only allow this for variables declared in the outer scope of
14593 the function so we know that their lifetime always ends with a
14594 return; see g++.dg/opt/nrv6.C. We could be more flexible if
14595 we were to do this optimization in tree-ssa. */
14596 && (outer = outer_curly_brace_block (fndecl))
14597 && chain_member (r, BLOCK_VARS (outer)))
14598 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
14599
14600 current_function_return_value = NULL_TREE;
14601 }
14602
14603 /* Remember that we were in class scope. */
14604 if (current_class_name)
14605 ctype = current_class_type;
14606
14607 /* Must mark the RESULT_DECL as being in this function. */
14608 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
14609
14610 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
14611 to the FUNCTION_DECL node itself. */
14612 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
14613
14614 /* Save away current state, if appropriate. */
14615 if (!processing_template_decl)
14616 save_function_data (fndecl);
14617
14618 /* Complain if there's just no return statement. */
14619 if (warn_return_type
14620 && !VOID_TYPE_P (TREE_TYPE (fntype))
14621 && !dependent_type_p (TREE_TYPE (fntype))
14622 && !current_function_returns_value && !current_function_returns_null
14623 /* Don't complain if we abort or throw. */
14624 && !current_function_returns_abnormally
14625 /* Don't complain if there's an infinite loop. */
14626 && !current_function_infinite_loop
14627 /* Don't complain if we are declared noreturn. */
14628 && !TREE_THIS_VOLATILE (fndecl)
14629 && !DECL_NAME (DECL_RESULT (fndecl))
14630 && !TREE_NO_WARNING (fndecl)
14631 /* Structor return values (if any) are set by the compiler. */
14632 && !DECL_CONSTRUCTOR_P (fndecl)
14633 && !DECL_DESTRUCTOR_P (fndecl)
14634 && targetm.warn_func_return (fndecl))
14635 {
14636 warning (OPT_Wreturn_type,
14637 "no return statement in function returning non-void");
14638 TREE_NO_WARNING (fndecl) = 1;
14639 }
14640
14641 /* Store the end of the function, so that we get good line number
14642 info for the epilogue. */
14643 cfun->function_end_locus = input_location;
14644
14645 /* Complain about parameters that are only set, but never otherwise used. */
14646 if (warn_unused_but_set_parameter
14647 && !processing_template_decl
14648 && errorcount == unused_but_set_errorcount
14649 && !DECL_CLONED_FUNCTION_P (fndecl))
14650 {
14651 tree decl;
14652
14653 for (decl = DECL_ARGUMENTS (fndecl);
14654 decl;
14655 decl = DECL_CHAIN (decl))
14656 if (TREE_USED (decl)
14657 && TREE_CODE (decl) == PARM_DECL
14658 && !DECL_READ_P (decl)
14659 && DECL_NAME (decl)
14660 && !DECL_ARTIFICIAL (decl)
14661 && !TREE_NO_WARNING (decl)
14662 && !DECL_IN_SYSTEM_HEADER (decl)
14663 && TREE_TYPE (decl) != error_mark_node
14664 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
14665 && (!CLASS_TYPE_P (TREE_TYPE (decl))
14666 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
14667 warning_at (DECL_SOURCE_LOCATION (decl),
14668 OPT_Wunused_but_set_parameter,
14669 "parameter %qD set but not used", decl);
14670 unused_but_set_errorcount = errorcount;
14671 }
14672
14673 /* Complain about locally defined typedefs that are not used in this
14674 function. */
14675 maybe_warn_unused_local_typedefs ();
14676
14677 /* Possibly warn about unused parameters. */
14678 if (warn_unused_parameter
14679 && !processing_template_decl
14680 && !DECL_CLONED_FUNCTION_P (fndecl))
14681 do_warn_unused_parameter (fndecl);
14682
14683 /* Genericize before inlining. */
14684 if (!processing_template_decl)
14685 {
14686 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
14687 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
14688 cp_genericize (fndecl);
14689 /* Clear out the bits we don't need. */
14690 f->x_current_class_ptr = NULL;
14691 f->x_current_class_ref = NULL;
14692 f->x_eh_spec_block = NULL;
14693 f->x_in_charge_parm = NULL;
14694 f->x_vtt_parm = NULL;
14695 f->x_return_value = NULL;
14696 f->bindings = NULL;
14697 f->extern_decl_map = NULL;
14698 f->infinite_loops = NULL;
14699 }
14700 /* Clear out the bits we don't need. */
14701 local_names = NULL;
14702
14703 /* We're leaving the context of this function, so zap cfun. It's still in
14704 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
14705 set_cfun (NULL);
14706 current_function_decl = NULL;
14707
14708 /* If this is an in-class inline definition, we may have to pop the
14709 bindings for the template parameters that we added in
14710 maybe_begin_member_template_processing when start_function was
14711 called. */
14712 if (inclass_inline)
14713 maybe_end_member_template_processing ();
14714
14715 /* Leave the scope of the class. */
14716 if (ctype)
14717 pop_nested_class ();
14718
14719 --function_depth;
14720
14721 /* Clean up. */
14722 current_function_decl = NULL_TREE;
14723
14724 defer_mark_used_calls = false;
14725 if (deferred_mark_used_calls)
14726 {
14727 unsigned int i;
14728 tree decl;
14729
14730 FOR_EACH_VEC_SAFE_ELT (deferred_mark_used_calls, i, decl)
14731 mark_used (decl);
14732 vec_free (deferred_mark_used_calls);
14733 }
14734
14735 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
14736 return fndecl;
14737 }
14738 \f
14739 /* Create the FUNCTION_DECL for a function definition.
14740 DECLSPECS and DECLARATOR are the parts of the declaration;
14741 they describe the return type and the name of the function,
14742 but twisted together in a fashion that parallels the syntax of C.
14743
14744 This function creates a binding context for the function body
14745 as well as setting up the FUNCTION_DECL in current_function_decl.
14746
14747 Returns a FUNCTION_DECL on success.
14748
14749 If the DECLARATOR is not suitable for a function (it defines a datum
14750 instead), we return 0, which tells yyparse to report a parse error.
14751
14752 May return void_type_node indicating that this method is actually
14753 a friend. See grokfield for more details.
14754
14755 Came here with a `.pushlevel' .
14756
14757 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
14758 CHANGES TO CODE IN `grokfield'. */
14759
14760 tree
14761 grokmethod (cp_decl_specifier_seq *declspecs,
14762 const cp_declarator *declarator, tree attrlist)
14763 {
14764 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
14765 &attrlist);
14766
14767 if (fndecl == error_mark_node)
14768 return error_mark_node;
14769
14770 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
14771 {
14772 error ("invalid member function declaration");
14773 return error_mark_node;
14774 }
14775
14776 if (attrlist)
14777 cplus_decl_attributes (&fndecl, attrlist, 0);
14778
14779 /* Pass friends other than inline friend functions back. */
14780 if (fndecl == void_type_node)
14781 return fndecl;
14782
14783 if (DECL_IN_AGGR_P (fndecl))
14784 {
14785 if (DECL_CLASS_SCOPE_P (fndecl))
14786 error ("%qD is already defined in class %qT", fndecl,
14787 DECL_CONTEXT (fndecl));
14788 return error_mark_node;
14789 }
14790
14791 check_template_shadow (fndecl);
14792
14793 if (TREE_PUBLIC (fndecl))
14794 DECL_COMDAT (fndecl) = 1;
14795 DECL_DECLARED_INLINE_P (fndecl) = 1;
14796 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
14797
14798 /* We process method specializations in finish_struct_1. */
14799 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
14800 {
14801 fndecl = push_template_decl (fndecl);
14802 if (fndecl == error_mark_node)
14803 return fndecl;
14804 }
14805
14806 if (! DECL_FRIEND_P (fndecl))
14807 {
14808 if (DECL_CHAIN (fndecl))
14809 {
14810 fndecl = copy_node (fndecl);
14811 TREE_CHAIN (fndecl) = NULL_TREE;
14812 }
14813 }
14814
14815 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
14816
14817 DECL_IN_AGGR_P (fndecl) = 1;
14818 return fndecl;
14819 }
14820 \f
14821
14822 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
14823 we can lay it out later, when and if its type becomes complete.
14824
14825 Also handle constexpr variables where the initializer involves
14826 an unlowered PTRMEM_CST because the class isn't complete yet. */
14827
14828 void
14829 maybe_register_incomplete_var (tree var)
14830 {
14831 gcc_assert (VAR_P (var));
14832
14833 /* Keep track of variables with incomplete types. */
14834 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
14835 && DECL_EXTERNAL (var))
14836 {
14837 tree inner_type = TREE_TYPE (var);
14838
14839 while (TREE_CODE (inner_type) == ARRAY_TYPE)
14840 inner_type = TREE_TYPE (inner_type);
14841 inner_type = TYPE_MAIN_VARIANT (inner_type);
14842
14843 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
14844 /* RTTI TD entries are created while defining the type_info. */
14845 || (TYPE_LANG_SPECIFIC (inner_type)
14846 && TYPE_BEING_DEFINED (inner_type)))
14847 {
14848 incomplete_var iv = {var, inner_type};
14849 vec_safe_push (incomplete_vars, iv);
14850 }
14851 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
14852 && decl_constant_var_p (var)
14853 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
14854 {
14855 /* When the outermost open class is complete we can resolve any
14856 pointers-to-members. */
14857 tree context = outermost_open_class ();
14858 incomplete_var iv = {var, context};
14859 vec_safe_push (incomplete_vars, iv);
14860 }
14861 }
14862 }
14863
14864 /* Called when a class type (given by TYPE) is defined. If there are
14865 any existing VAR_DECLs whose type has been completed by this
14866 declaration, update them now. */
14867
14868 void
14869 complete_vars (tree type)
14870 {
14871 unsigned ix;
14872 incomplete_var *iv;
14873
14874 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
14875 {
14876 if (same_type_p (type, iv->incomplete_type))
14877 {
14878 tree var = iv->decl;
14879 tree type = TREE_TYPE (var);
14880
14881 if (TYPE_MAIN_VARIANT (strip_array_types (type))
14882 == iv->incomplete_type)
14883 {
14884 /* Complete the type of the variable. The VAR_DECL itself
14885 will be laid out in expand_expr. */
14886 complete_type (type);
14887 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
14888 }
14889
14890 if (DECL_INITIAL (var)
14891 && decl_constant_var_p (var))
14892 DECL_INITIAL (var) = cplus_expand_constant (DECL_INITIAL (var));
14893
14894 /* Remove this entry from the list. */
14895 incomplete_vars->unordered_remove (ix);
14896 }
14897 else
14898 ix++;
14899 }
14900
14901 /* Check for pending declarations which may have abstract type. */
14902 complete_type_check_abstract (type);
14903 }
14904
14905 /* If DECL is of a type which needs a cleanup, build and return an
14906 expression to perform that cleanup here. Return NULL_TREE if no
14907 cleanup need be done. */
14908
14909 tree
14910 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
14911 {
14912 tree type;
14913 tree attr;
14914 tree cleanup;
14915
14916 /* Assume no cleanup is required. */
14917 cleanup = NULL_TREE;
14918
14919 if (error_operand_p (decl))
14920 return cleanup;
14921
14922 /* Handle "__attribute__((cleanup))". We run the cleanup function
14923 before the destructor since the destructor is what actually
14924 terminates the lifetime of the object. */
14925 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
14926 if (attr)
14927 {
14928 tree id;
14929 tree fn;
14930 tree arg;
14931
14932 /* Get the name specified by the user for the cleanup function. */
14933 id = TREE_VALUE (TREE_VALUE (attr));
14934 /* Look up the name to find the cleanup function to call. It is
14935 important to use lookup_name here because that is what is
14936 used in c-common.c:handle_cleanup_attribute when performing
14937 initial checks on the attribute. Note that those checks
14938 include ensuring that the function found is not an overloaded
14939 function, or an object with an overloaded call operator,
14940 etc.; we can rely on the fact that the function found is an
14941 ordinary FUNCTION_DECL. */
14942 fn = lookup_name (id);
14943 arg = build_address (decl);
14944 if (!mark_used (decl, complain) && !(complain & tf_error))
14945 return error_mark_node;
14946 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
14947 if (cleanup == error_mark_node)
14948 return error_mark_node;
14949 }
14950 /* Handle ordinary C++ destructors. */
14951 type = TREE_TYPE (decl);
14952 if (type_build_dtor_call (type))
14953 {
14954 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
14955 tree addr;
14956 tree call;
14957
14958 if (TREE_CODE (type) == ARRAY_TYPE)
14959 addr = decl;
14960 else
14961 addr = build_address (decl);
14962
14963 call = build_delete (TREE_TYPE (addr), addr,
14964 sfk_complete_destructor, flags, 0, complain);
14965 if (call == error_mark_node)
14966 cleanup = error_mark_node;
14967 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
14968 /* Discard the call. */;
14969 else if (cleanup)
14970 cleanup = cp_build_compound_expr (cleanup, call, complain);
14971 else
14972 cleanup = call;
14973 }
14974
14975 /* build_delete sets the location of the destructor call to the
14976 current location, even though the destructor is going to be
14977 called later, at the end of the current scope. This can lead to
14978 a "jumpy" behaviour for users of debuggers when they step around
14979 the end of the block. So let's unset the location of the
14980 destructor call instead. */
14981 protected_set_expr_location (cleanup, UNKNOWN_LOCATION);
14982
14983 if (cleanup
14984 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
14985 /* Treat objects with destructors as used; the destructor may do
14986 something substantive. */
14987 && !mark_used (decl, complain) && !(complain & tf_error))
14988 return error_mark_node;
14989
14990 return cleanup;
14991 }
14992
14993 \f
14994 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
14995 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
14996 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
14997
14998 tree
14999 static_fn_type (tree memfntype)
15000 {
15001 tree fntype;
15002 tree args;
15003
15004 if (TYPE_PTRMEMFUNC_P (memfntype))
15005 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
15006 if (POINTER_TYPE_P (memfntype)
15007 || TREE_CODE (memfntype) == FUNCTION_DECL)
15008 memfntype = TREE_TYPE (memfntype);
15009 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
15010 return memfntype;
15011 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
15012 args = TYPE_ARG_TYPES (memfntype);
15013 cp_ref_qualifier rqual = type_memfn_rqual (memfntype);
15014 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
15015 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype), rqual);
15016 fntype = (cp_build_type_attribute_variant
15017 (fntype, TYPE_ATTRIBUTES (memfntype)));
15018 fntype = (build_exception_variant
15019 (fntype, TYPE_RAISES_EXCEPTIONS (memfntype)));
15020 if (TYPE_HAS_LATE_RETURN_TYPE (memfntype))
15021 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
15022 return fntype;
15023 }
15024
15025 /* DECL was originally constructed as a non-static member function,
15026 but turned out to be static. Update it accordingly. */
15027
15028 void
15029 revert_static_member_fn (tree decl)
15030 {
15031 tree stype = static_fn_type (decl);
15032 cp_cv_quals quals = type_memfn_quals (stype);
15033 cp_ref_qualifier rqual = type_memfn_rqual (stype);
15034
15035 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
15036 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
15037
15038 TREE_TYPE (decl) = stype;
15039
15040 if (DECL_ARGUMENTS (decl))
15041 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
15042 DECL_STATIC_FUNCTION_P (decl) = 1;
15043 }
15044
15045 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
15046 one of the language-independent trees. */
15047
15048 enum cp_tree_node_structure_enum
15049 cp_tree_node_structure (union lang_tree_node * t)
15050 {
15051 switch (TREE_CODE (&t->generic))
15052 {
15053 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
15054 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
15055 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
15056 case OVERLOAD: return TS_CP_OVERLOAD;
15057 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
15058 case PTRMEM_CST: return TS_CP_PTRMEM;
15059 case BASELINK: return TS_CP_BASELINK;
15060 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
15061 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
15062 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
15063 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
15064 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
15065 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
15066 case CONSTRAINT_INFO: return TS_CP_CONSTRAINT_INFO;
15067 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
15068 default: return TS_CP_GENERIC;
15069 }
15070 }
15071
15072 /* Build the void_list_node (void_type_node having been created). */
15073 tree
15074 build_void_list_node (void)
15075 {
15076 tree t = build_tree_list (NULL_TREE, void_type_node);
15077 return t;
15078 }
15079
15080 bool
15081 cp_missing_noreturn_ok_p (tree decl)
15082 {
15083 /* A missing noreturn is ok for the `main' function. */
15084 return DECL_MAIN_P (decl);
15085 }
15086
15087 /* Return the decl used to identify the COMDAT group into which DECL should
15088 be placed. */
15089
15090 tree
15091 cxx_comdat_group (tree decl)
15092 {
15093 /* Virtual tables, construction virtual tables, and virtual table
15094 tables all go in a single COMDAT group, named after the primary
15095 virtual table. */
15096 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
15097 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
15098 /* For all other DECLs, the COMDAT group is the mangled name of the
15099 declaration itself. */
15100 else
15101 {
15102 while (DECL_THUNK_P (decl))
15103 {
15104 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
15105 into the same section as the target function. In that case
15106 we must return target's name. */
15107 tree target = THUNK_TARGET (decl);
15108 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
15109 && DECL_SECTION_NAME (target) != NULL
15110 && DECL_ONE_ONLY (target))
15111 decl = target;
15112 else
15113 break;
15114 }
15115 }
15116
15117 return decl;
15118 }
15119
15120 /* Returns the return type for FN as written by the user, which may include
15121 a placeholder for a deduced return type. */
15122
15123 tree
15124 fndecl_declared_return_type (tree fn)
15125 {
15126 fn = STRIP_TEMPLATE (fn);
15127 if (FNDECL_USED_AUTO (fn))
15128 {
15129 struct language_function *f = NULL;
15130 if (DECL_STRUCT_FUNCTION (fn))
15131 f = DECL_STRUCT_FUNCTION (fn)->language;
15132 if (f == NULL)
15133 f = DECL_SAVED_FUNCTION_DATA (fn);
15134 return f->x_auto_return_pattern;
15135 }
15136 return TREE_TYPE (TREE_TYPE (fn));
15137 }
15138
15139 /* Returns true iff DECL was declared with an auto return type and it has
15140 not yet been deduced to a real type. */
15141
15142 bool
15143 undeduced_auto_decl (tree decl)
15144 {
15145 if (cxx_dialect < cxx14)
15146 return false;
15147 return type_uses_auto (TREE_TYPE (decl));
15148 }
15149
15150 /* Complain if DECL has an undeduced return type. */
15151
15152 void
15153 require_deduced_type (tree decl)
15154 {
15155 if (undeduced_auto_decl (decl))
15156 error ("use of %qD before deduction of %<auto%>", decl);
15157 }
15158
15159 #include "gt-cp-decl.h"