decl.c (grokvardecl): Simplify the latter.
[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);
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 };
234
235 #define named_labels cp_function_chain->x_named_labels
236 \f
237 /* The number of function bodies which we are currently processing.
238 (Zero if we are at namespace scope, one inside the body of a
239 function, two inside the body of a function in a local class, etc.) */
240 int function_depth;
241
242 /* To avoid unwanted recursion, finish_function defers all mark_used calls
243 encountered during its execution until it finishes. */
244 bool defer_mark_used_calls;
245 vec<tree, va_gc> *deferred_mark_used_calls;
246
247 /* States indicating how grokdeclarator() should handle declspecs marked
248 with __attribute__((deprecated)). An object declared as
249 __attribute__((deprecated)) suppresses warnings of uses of other
250 deprecated items. */
251 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
252
253 \f
254 /* A list of VAR_DECLs whose type was incomplete at the time the
255 variable was declared. */
256
257 struct GTY(()) incomplete_var {
258 tree decl;
259 tree incomplete_type;
260 };
261
262
263 static GTY(()) vec<incomplete_var, va_gc> *incomplete_vars;
264 \f
265 /* Returns the kind of template specialization we are currently
266 processing, given that it's declaration contained N_CLASS_SCOPES
267 explicit scope qualifications. */
268
269 tmpl_spec_kind
270 current_tmpl_spec_kind (int n_class_scopes)
271 {
272 int n_template_parm_scopes = 0;
273 int seen_specialization_p = 0;
274 int innermost_specialization_p = 0;
275 cp_binding_level *b;
276
277 /* Scan through the template parameter scopes. */
278 for (b = current_binding_level;
279 b->kind == sk_template_parms;
280 b = b->level_chain)
281 {
282 /* If we see a specialization scope inside a parameter scope,
283 then something is wrong. That corresponds to a declaration
284 like:
285
286 template <class T> template <> ...
287
288 which is always invalid since [temp.expl.spec] forbids the
289 specialization of a class member template if the enclosing
290 class templates are not explicitly specialized as well. */
291 if (b->explicit_spec_p)
292 {
293 if (n_template_parm_scopes == 0)
294 innermost_specialization_p = 1;
295 else
296 seen_specialization_p = 1;
297 }
298 else if (seen_specialization_p == 1)
299 return tsk_invalid_member_spec;
300
301 ++n_template_parm_scopes;
302 }
303
304 /* Handle explicit instantiations. */
305 if (processing_explicit_instantiation)
306 {
307 if (n_template_parm_scopes != 0)
308 /* We've seen a template parameter list during an explicit
309 instantiation. For example:
310
311 template <class T> template void f(int);
312
313 This is erroneous. */
314 return tsk_invalid_expl_inst;
315 else
316 return tsk_expl_inst;
317 }
318
319 if (n_template_parm_scopes < n_class_scopes)
320 /* We've not seen enough template headers to match all the
321 specialized classes present. For example:
322
323 template <class T> void R<T>::S<T>::f(int);
324
325 This is invalid; there needs to be one set of template
326 parameters for each class. */
327 return tsk_insufficient_parms;
328 else if (n_template_parm_scopes == n_class_scopes)
329 /* We're processing a non-template declaration (even though it may
330 be a member of a template class.) For example:
331
332 template <class T> void S<T>::f(int);
333
334 The `class T' matches the `S<T>', leaving no template headers
335 corresponding to the `f'. */
336 return tsk_none;
337 else if (n_template_parm_scopes > n_class_scopes + 1)
338 /* We've got too many template headers. For example:
339
340 template <> template <class T> void f (T);
341
342 There need to be more enclosing classes. */
343 return tsk_excessive_parms;
344 else
345 /* This must be a template. It's of the form:
346
347 template <class T> template <class U> void S<T>::f(U);
348
349 This is a specialization if the innermost level was a
350 specialization; otherwise it's just a definition of the
351 template. */
352 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
353 }
354
355 /* Exit the current scope. */
356
357 void
358 finish_scope (void)
359 {
360 poplevel (0, 0, 0);
361 }
362
363 /* When a label goes out of scope, check to see if that label was used
364 in a valid manner, and issue any appropriate warnings or errors. */
365
366 static void
367 pop_label (tree label, tree old_value)
368 {
369 if (!processing_template_decl)
370 {
371 if (DECL_INITIAL (label) == NULL_TREE)
372 {
373 location_t location;
374
375 error ("label %q+D used but not defined", label);
376 location = input_location;
377 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
378 /* Avoid crashing later. */
379 define_label (location, DECL_NAME (label));
380 }
381 else
382 warn_for_unused_label (label);
383 }
384
385 SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), old_value);
386 }
387
388 /* At the end of a function, all labels declared within the function
389 go out of scope. BLOCK is the top-level block for the
390 function. */
391
392 int
393 pop_labels_1 (named_label_entry **slot, tree block)
394 {
395 struct named_label_entry *ent = *slot;
396
397 pop_label (ent->label_decl, NULL_TREE);
398
399 /* Put the labels into the "variables" of the top-level block,
400 so debugger can see them. */
401 DECL_CHAIN (ent->label_decl) = BLOCK_VARS (block);
402 BLOCK_VARS (block) = ent->label_decl;
403
404 named_labels->clear_slot (slot);
405
406 return 1;
407 }
408
409 static void
410 pop_labels (tree block)
411 {
412 if (named_labels)
413 {
414 named_labels->traverse<tree, pop_labels_1> (block);
415 named_labels = NULL;
416 }
417 }
418
419 /* At the end of a block with local labels, restore the outer definition. */
420
421 static void
422 pop_local_label (tree label, tree old_value)
423 {
424 struct named_label_entry dummy;
425
426 pop_label (label, old_value);
427
428 dummy.label_decl = label;
429 named_label_entry **slot = named_labels->find_slot (&dummy, NO_INSERT);
430 named_labels->clear_slot (slot);
431 }
432
433 /* The following two routines are used to interface to Objective-C++.
434 The binding level is purposely treated as an opaque type. */
435
436 void *
437 objc_get_current_scope (void)
438 {
439 return current_binding_level;
440 }
441
442 /* The following routine is used by the NeXT-style SJLJ exceptions;
443 variables get marked 'volatile' so as to not be clobbered by
444 _setjmp()/_longjmp() calls. All variables in the current scope,
445 as well as parent scopes up to (but not including) ENCLOSING_BLK
446 shall be thusly marked. */
447
448 void
449 objc_mark_locals_volatile (void *enclosing_blk)
450 {
451 cp_binding_level *scope;
452
453 for (scope = current_binding_level;
454 scope && scope != enclosing_blk;
455 scope = scope->level_chain)
456 {
457 tree decl;
458
459 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
460 objc_volatilize_decl (decl);
461
462 /* Do not climb up past the current function. */
463 if (scope->kind == sk_function_parms)
464 break;
465 }
466 }
467
468 /* Update data for defined and undefined labels when leaving a scope. */
469
470 int
471 poplevel_named_label_1 (named_label_entry **slot, cp_binding_level *bl)
472 {
473 named_label_entry *ent = *slot;
474 cp_binding_level *obl = bl->level_chain;
475
476 if (ent->binding_level == bl)
477 {
478 tree decl;
479
480 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
481 TREE_LISTs representing OVERLOADs, so be careful. */
482 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
483 ? DECL_CHAIN (decl)
484 : TREE_CHAIN (decl)))
485 if (decl_jump_unsafe (decl))
486 vec_safe_push (ent->bad_decls, decl);
487
488 ent->binding_level = obl;
489 ent->names_in_scope = obl->names;
490 switch (bl->kind)
491 {
492 case sk_try:
493 ent->in_try_scope = true;
494 break;
495 case sk_catch:
496 ent->in_catch_scope = true;
497 break;
498 case sk_omp:
499 ent->in_omp_scope = true;
500 break;
501 default:
502 break;
503 }
504 }
505 else if (ent->uses)
506 {
507 struct named_label_use_entry *use;
508
509 for (use = ent->uses; use ; use = use->next)
510 if (use->binding_level == bl)
511 {
512 use->binding_level = obl;
513 use->names_in_scope = obl->names;
514 if (bl->kind == sk_omp)
515 use->in_omp_scope = true;
516 }
517 }
518
519 return 1;
520 }
521
522 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
523 when errors were reported, except for -Werror-unused-but-set-*. */
524 static int unused_but_set_errorcount;
525
526 /* Exit a binding level.
527 Pop the level off, and restore the state of the identifier-decl mappings
528 that were in effect when this level was entered.
529
530 If KEEP == 1, this level had explicit declarations, so
531 and create a "block" (a BLOCK node) for the level
532 to record its declarations and subblocks for symbol table output.
533
534 If FUNCTIONBODY is nonzero, this level is the body of a function,
535 so create a block as if KEEP were set and also clear out all
536 label names.
537
538 If REVERSE is nonzero, reverse the order of decls before putting
539 them into the BLOCK. */
540
541 tree
542 poplevel (int keep, int reverse, int functionbody)
543 {
544 tree link;
545 /* The chain of decls was accumulated in reverse order.
546 Put it into forward order, just for cleanliness. */
547 tree decls;
548 tree subblocks;
549 tree block;
550 tree decl;
551 int leaving_for_scope;
552 scope_kind kind;
553 unsigned ix;
554 cp_label_binding *label_bind;
555
556 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
557 restart:
558
559 block = NULL_TREE;
560
561 gcc_assert (current_binding_level->kind != sk_class);
562
563 if (current_binding_level->kind == sk_cleanup)
564 functionbody = 0;
565 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
566
567 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
568
569 /* We used to use KEEP == 2 to indicate that the new block should go
570 at the beginning of the list of blocks at this binding level,
571 rather than the end. This hack is no longer used. */
572 gcc_assert (keep == 0 || keep == 1);
573
574 if (current_binding_level->keep)
575 keep = 1;
576
577 /* Any uses of undefined labels, and any defined labels, now operate
578 under constraints of next binding contour. */
579 if (cfun && !functionbody && named_labels)
580 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
581 (current_binding_level);
582
583 /* Get the decls in the order they were written.
584 Usually current_binding_level->names is in reverse order.
585 But parameter decls were previously put in forward order. */
586
587 if (reverse)
588 current_binding_level->names
589 = decls = nreverse (current_binding_level->names);
590 else
591 decls = current_binding_level->names;
592
593 /* If there were any declarations or structure tags in that level,
594 or if this level is a function body,
595 create a BLOCK to record them for the life of this function. */
596 block = NULL_TREE;
597 /* Avoid function body block if possible. */
598 if (functionbody && subblocks && BLOCK_CHAIN (subblocks) == NULL_TREE)
599 keep = 0;
600 else if (keep == 1 || functionbody)
601 block = make_node (BLOCK);
602 if (block != NULL_TREE)
603 {
604 BLOCK_VARS (block) = decls;
605 BLOCK_SUBBLOCKS (block) = subblocks;
606 }
607
608 /* In each subblock, record that this is its superior. */
609 if (keep >= 0)
610 for (link = subblocks; link; link = BLOCK_CHAIN (link))
611 BLOCK_SUPERCONTEXT (link) = block;
612
613 /* We still support the old for-scope rules, whereby the variables
614 in a for-init statement were in scope after the for-statement
615 ended. We only use the new rules if flag_new_for_scope is
616 nonzero. */
617 leaving_for_scope
618 = current_binding_level->kind == sk_for && flag_new_for_scope == 1;
619
620 /* Before we remove the declarations first check for unused variables. */
621 if ((warn_unused_variable || warn_unused_but_set_variable)
622 && current_binding_level->kind != sk_template_parms
623 && !processing_template_decl)
624 for (tree d = getdecls (); d; d = TREE_CHAIN (d))
625 {
626 /* There are cases where D itself is a TREE_LIST. See in
627 push_local_binding where the list of decls returned by
628 getdecls is built. */
629 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
630 tree type = TREE_TYPE (decl);
631 if (VAR_P (decl)
632 && (! TREE_USED (decl) || !DECL_READ_P (decl))
633 && ! DECL_IN_SYSTEM_HEADER (decl)
634 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl)
635 && type != error_mark_node
636 && (!CLASS_TYPE_P (type)
637 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
638 || lookup_attribute ("warn_unused",
639 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
640 {
641 if (! TREE_USED (decl))
642 warning_at (DECL_SOURCE_LOCATION (decl),
643 OPT_Wunused_variable, "unused variable %qD", decl);
644 else if (DECL_CONTEXT (decl) == current_function_decl
645 // For -Wunused-but-set-variable leave references alone.
646 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
647 && errorcount == unused_but_set_errorcount)
648 {
649 warning_at (DECL_SOURCE_LOCATION (decl),
650 OPT_Wunused_but_set_variable,
651 "variable %qD set but not used", decl);
652 unused_but_set_errorcount = errorcount;
653 }
654 }
655 }
656
657 /* Remove declarations for all the DECLs in this level. */
658 for (link = decls; link; link = TREE_CHAIN (link))
659 {
660 if (leaving_for_scope && VAR_P (link)
661 /* It's hard to make this ARM compatibility hack play nicely with
662 lambdas, and it really isn't necessary in C++11 mode. */
663 && cxx_dialect < cxx11
664 && DECL_NAME (link))
665 {
666 tree name = DECL_NAME (link);
667 cxx_binding *ob;
668 tree ns_binding;
669
670 ob = outer_binding (name,
671 IDENTIFIER_BINDING (name),
672 /*class_p=*/true);
673 if (!ob)
674 ns_binding = IDENTIFIER_NAMESPACE_VALUE (name);
675 else
676 ns_binding = NULL_TREE;
677
678 if (ob && ob->scope == current_binding_level->level_chain)
679 /* We have something like:
680
681 int i;
682 for (int i; ;);
683
684 and we are leaving the `for' scope. There's no reason to
685 keep the binding of the inner `i' in this case. */
686 pop_binding (name, link);
687 else if ((ob && (TREE_CODE (ob->value) == TYPE_DECL))
688 || (ns_binding && TREE_CODE (ns_binding) == TYPE_DECL))
689 /* Here, we have something like:
690
691 typedef int I;
692
693 void f () {
694 for (int I; ;);
695 }
696
697 We must pop the for-scope binding so we know what's a
698 type and what isn't. */
699 pop_binding (name, link);
700 else
701 {
702 /* Mark this VAR_DECL as dead so that we can tell we left it
703 there only for backward compatibility. */
704 DECL_DEAD_FOR_LOCAL (link) = 1;
705
706 /* Keep track of what should have happened when we
707 popped the binding. */
708 if (ob && ob->value)
709 {
710 SET_DECL_SHADOWED_FOR_VAR (link, ob->value);
711 DECL_HAS_SHADOWED_FOR_VAR_P (link) = 1;
712 }
713
714 /* Add it to the list of dead variables in the next
715 outermost binding to that we can remove these when we
716 leave that binding. */
717 vec_safe_push (
718 current_binding_level->level_chain->dead_vars_from_for,
719 link);
720
721 /* Although we don't pop the cxx_binding, we do clear
722 its SCOPE since the scope is going away now. */
723 IDENTIFIER_BINDING (name)->scope
724 = current_binding_level->level_chain;
725 }
726 }
727 else
728 {
729 tree name;
730
731 /* Remove the binding. */
732 decl = link;
733
734 if (TREE_CODE (decl) == TREE_LIST)
735 decl = TREE_VALUE (decl);
736 name = decl;
737
738 if (TREE_CODE (name) == OVERLOAD)
739 name = OVL_FUNCTION (name);
740
741 gcc_assert (DECL_P (name));
742 pop_binding (DECL_NAME (name), decl);
743 }
744 }
745
746 /* Remove declarations for any `for' variables from inner scopes
747 that we kept around. */
748 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->dead_vars_from_for,
749 ix, decl)
750 pop_binding (DECL_NAME (decl), decl);
751
752 /* Restore the IDENTIFIER_TYPE_VALUEs. */
753 for (link = current_binding_level->type_shadowed;
754 link; link = TREE_CHAIN (link))
755 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
756
757 /* Restore the IDENTIFIER_LABEL_VALUEs for local labels. */
758 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->shadowed_labels,
759 ix, label_bind)
760 pop_local_label (label_bind->label, label_bind->prev_value);
761
762 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
763 list if a `using' declaration put them there. The debugging
764 back ends won't understand OVERLOAD, so we remove them here.
765 Because the BLOCK_VARS are (temporarily) shared with
766 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
767 popped all the bindings. */
768 if (block)
769 {
770 tree* d;
771
772 for (d = &BLOCK_VARS (block); *d; )
773 {
774 if (TREE_CODE (*d) == TREE_LIST)
775 *d = TREE_CHAIN (*d);
776 else
777 d = &DECL_CHAIN (*d);
778 }
779 }
780
781 /* If the level being exited is the top level of a function,
782 check over all the labels. */
783 if (functionbody)
784 {
785 if (block)
786 {
787 /* Since this is the top level block of a function, the vars are
788 the function's parameters. Don't leave them in the BLOCK
789 because they are found in the FUNCTION_DECL instead. */
790 BLOCK_VARS (block) = 0;
791 pop_labels (block);
792 }
793 else
794 pop_labels (subblocks);
795 }
796
797 kind = current_binding_level->kind;
798 if (kind == sk_cleanup)
799 {
800 tree stmt;
801
802 /* If this is a temporary binding created for a cleanup, then we'll
803 have pushed a statement list level. Pop that, create a new
804 BIND_EXPR for the block, and insert it into the stream. */
805 stmt = pop_stmt_list (current_binding_level->statement_list);
806 stmt = c_build_bind_expr (input_location, block, stmt);
807 add_stmt (stmt);
808 }
809
810 leave_scope ();
811 if (functionbody)
812 {
813 /* The current function is being defined, so its DECL_INITIAL
814 should be error_mark_node. */
815 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
816 DECL_INITIAL (current_function_decl) = block ? block : subblocks;
817 if (subblocks)
818 {
819 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
820 {
821 if (BLOCK_SUBBLOCKS (subblocks))
822 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks)) = 1;
823 }
824 else
825 BLOCK_OUTER_CURLY_BRACE_P (subblocks) = 1;
826 }
827 }
828 else if (block)
829 current_binding_level->blocks
830 = block_chainon (current_binding_level->blocks, block);
831
832 /* If we did not make a block for the level just exited,
833 any blocks made for inner levels
834 (since they cannot be recorded as subblocks in that level)
835 must be carried forward so they will later become subblocks
836 of something else. */
837 else if (subblocks)
838 current_binding_level->blocks
839 = block_chainon (current_binding_level->blocks, subblocks);
840
841 /* Each and every BLOCK node created here in `poplevel' is important
842 (e.g. for proper debugging information) so if we created one
843 earlier, mark it as "used". */
844 if (block)
845 TREE_USED (block) = 1;
846
847 /* All temporary bindings created for cleanups are popped silently. */
848 if (kind == sk_cleanup)
849 goto restart;
850
851 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
852 return block;
853 }
854
855 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
856 itself, calling F for each. The DATA is passed to F as well. */
857
858 static int
859 walk_namespaces_r (tree name_space, walk_namespaces_fn f, void* data)
860 {
861 int result = 0;
862 tree current = NAMESPACE_LEVEL (name_space)->namespaces;
863
864 result |= (*f) (name_space, data);
865
866 for (; current; current = DECL_CHAIN (current))
867 result |= walk_namespaces_r (current, f, data);
868
869 return result;
870 }
871
872 /* Walk all the namespaces, calling F for each. The DATA is passed to
873 F as well. */
874
875 int
876 walk_namespaces (walk_namespaces_fn f, void* data)
877 {
878 return walk_namespaces_r (global_namespace, f, data);
879 }
880
881 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
882
883 int
884 wrapup_globals_for_namespace (tree name_space, void* data ATTRIBUTE_UNUSED)
885 {
886 cp_binding_level *level = NAMESPACE_LEVEL (name_space);
887 vec<tree, va_gc> *statics = level->static_decls;
888 tree *vec = statics->address ();
889 int len = statics->length ();
890
891 /* Write out any globals that need to be output. */
892 return wrapup_global_declarations (vec, len);
893 }
894 \f
895 /* In C++, you don't have to write `struct S' to refer to `S'; you
896 can just use `S'. We accomplish this by creating a TYPE_DECL as
897 if the user had written `typedef struct S S'. Create and return
898 the TYPE_DECL for TYPE. */
899
900 tree
901 create_implicit_typedef (tree name, tree type)
902 {
903 tree decl;
904
905 decl = build_decl (input_location, TYPE_DECL, name, type);
906 DECL_ARTIFICIAL (decl) = 1;
907 /* There are other implicit type declarations, like the one *within*
908 a class that allows you to write `S::S'. We must distinguish
909 amongst these. */
910 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
911 TYPE_NAME (type) = decl;
912 TYPE_STUB_DECL (type) = decl;
913
914 return decl;
915 }
916
917 /* Remember a local name for name-mangling purposes. */
918
919 static void
920 push_local_name (tree decl)
921 {
922 size_t i, nelts;
923 tree t, name;
924
925 timevar_start (TV_NAME_LOOKUP);
926
927 name = DECL_NAME (decl);
928
929 nelts = vec_safe_length (local_names);
930 for (i = 0; i < nelts; i++)
931 {
932 t = (*local_names)[i];
933 if (DECL_NAME (t) == name)
934 {
935 if (!DECL_LANG_SPECIFIC (decl))
936 retrofit_lang_decl (decl);
937 DECL_LANG_SPECIFIC (decl)->u.base.u2sel = 1;
938 if (DECL_DISCRIMINATOR_SET_P (t))
939 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
940 else
941 DECL_DISCRIMINATOR (decl) = 1;
942
943 (*local_names)[i] = decl;
944 timevar_stop (TV_NAME_LOOKUP);
945 return;
946 }
947 }
948
949 vec_safe_push (local_names, decl);
950 timevar_stop (TV_NAME_LOOKUP);
951 }
952 \f
953 /* Subroutine of duplicate_decls: return truthvalue of whether
954 or not types of these decls match.
955
956 For C++, we must compare the parameter list so that `int' can match
957 `int&' in a parameter position, but `int&' is not confused with
958 `const int&'. */
959
960 int
961 decls_match (tree newdecl, tree olddecl)
962 {
963 int types_match;
964
965 if (newdecl == olddecl)
966 return 1;
967
968 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
969 /* If the two DECLs are not even the same kind of thing, we're not
970 interested in their types. */
971 return 0;
972
973 gcc_assert (DECL_P (newdecl));
974
975 if (TREE_CODE (newdecl) == FUNCTION_DECL)
976 {
977 tree f1 = TREE_TYPE (newdecl);
978 tree f2 = TREE_TYPE (olddecl);
979 tree p1 = TYPE_ARG_TYPES (f1);
980 tree p2 = TYPE_ARG_TYPES (f2);
981 tree r2;
982
983 /* Specializations of different templates are different functions
984 even if they have the same type. */
985 tree t1 = (DECL_USE_TEMPLATE (newdecl)
986 ? DECL_TI_TEMPLATE (newdecl)
987 : NULL_TREE);
988 tree t2 = (DECL_USE_TEMPLATE (olddecl)
989 ? DECL_TI_TEMPLATE (olddecl)
990 : NULL_TREE);
991 if (t1 != t2)
992 return 0;
993
994 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
995 && ! (DECL_EXTERN_C_P (newdecl)
996 && DECL_EXTERN_C_P (olddecl)))
997 return 0;
998
999 /* A new declaration doesn't match a built-in one unless it
1000 is also extern "C". */
1001 if (DECL_IS_BUILTIN (olddecl)
1002 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
1003 return 0;
1004
1005 if (TREE_CODE (f1) != TREE_CODE (f2))
1006 return 0;
1007
1008 /* A declaration with deduced return type should use its pre-deduction
1009 type for declaration matching. */
1010 r2 = fndecl_declared_return_type (olddecl);
1011
1012 if (same_type_p (TREE_TYPE (f1), r2))
1013 {
1014 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
1015 && (DECL_BUILT_IN (olddecl)
1016 #ifndef NO_IMPLICIT_EXTERN_C
1017 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
1018 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
1019 #endif
1020 ))
1021 {
1022 types_match = self_promoting_args_p (p1);
1023 if (p1 == void_list_node)
1024 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1025 }
1026 #ifndef NO_IMPLICIT_EXTERN_C
1027 else if (!prototype_p (f1)
1028 && (DECL_EXTERN_C_P (olddecl)
1029 && DECL_IN_SYSTEM_HEADER (olddecl)
1030 && !DECL_CLASS_SCOPE_P (olddecl))
1031 && (DECL_EXTERN_C_P (newdecl)
1032 && DECL_IN_SYSTEM_HEADER (newdecl)
1033 && !DECL_CLASS_SCOPE_P (newdecl)))
1034 {
1035 types_match = self_promoting_args_p (p2);
1036 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1037 }
1038 #endif
1039 else
1040 types_match =
1041 compparms (p1, p2)
1042 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
1043 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
1044 || comp_type_attributes (TREE_TYPE (newdecl),
1045 TREE_TYPE (olddecl)) != 0);
1046 }
1047 else
1048 types_match = 0;
1049
1050 /* The decls dont match if they correspond to two different versions
1051 of the same function. Disallow extern "C" functions to be
1052 versions for now. */
1053 if (types_match
1054 && !DECL_EXTERN_C_P (newdecl)
1055 && !DECL_EXTERN_C_P (olddecl)
1056 && targetm.target_option.function_versions (newdecl, olddecl))
1057 {
1058 /* Mark functions as versions if necessary. Modify the mangled decl
1059 name if necessary. */
1060 if (DECL_FUNCTION_VERSIONED (newdecl)
1061 && DECL_FUNCTION_VERSIONED (olddecl))
1062 return 0;
1063 if (!DECL_FUNCTION_VERSIONED (newdecl))
1064 {
1065 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1066 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1067 mangle_decl (newdecl);
1068 }
1069 if (!DECL_FUNCTION_VERSIONED (olddecl))
1070 {
1071 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1072 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1073 mangle_decl (olddecl);
1074 }
1075 cgraph_node::record_function_versions (olddecl, newdecl);
1076 return 0;
1077 }
1078 }
1079 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1080 {
1081 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1082 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1083
1084 if (TREE_CODE (newres) != TREE_CODE (oldres))
1085 return 0;
1086
1087 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1088 DECL_TEMPLATE_PARMS (olddecl)))
1089 return 0;
1090
1091 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1092 types_match = (same_type_p (TREE_TYPE (oldres), TREE_TYPE (newres))
1093 && equivalently_constrained (olddecl, newdecl));
1094 else
1095 // We don't need to check equivalently_constrained for variable and
1096 // function templates because we check it on the results.
1097 types_match = decls_match (oldres, newres);
1098 }
1099 else
1100 {
1101 /* Need to check scope for variable declaration (VAR_DECL).
1102 For typedef (TYPE_DECL), scope is ignored. */
1103 if (VAR_P (newdecl)
1104 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1105 /* [dcl.link]
1106 Two declarations for an object with C language linkage
1107 with the same name (ignoring the namespace that qualify
1108 it) that appear in different namespace scopes refer to
1109 the same object. */
1110 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1111 return 0;
1112
1113 if (TREE_TYPE (newdecl) == error_mark_node)
1114 types_match = TREE_TYPE (olddecl) == error_mark_node;
1115 else if (TREE_TYPE (olddecl) == NULL_TREE)
1116 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1117 else if (TREE_TYPE (newdecl) == NULL_TREE)
1118 types_match = 0;
1119 else
1120 types_match = comptypes (TREE_TYPE (newdecl),
1121 TREE_TYPE (olddecl),
1122 COMPARE_REDECLARATION);
1123 }
1124
1125 // Normal functions can be constrained, as can variable partial
1126 // specializations.
1127 if (types_match && VAR_OR_FUNCTION_DECL_P (newdecl))
1128 types_match = equivalently_constrained (newdecl, olddecl);
1129
1130 return types_match;
1131 }
1132
1133 /* If NEWDECL is `static' and an `extern' was seen previously,
1134 warn about it. OLDDECL is the previous declaration.
1135
1136 Note that this does not apply to the C++ case of declaring
1137 a variable `extern const' and then later `const'.
1138
1139 Don't complain about built-in functions, since they are beyond
1140 the user's control. */
1141
1142 void
1143 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1144 {
1145 if (TREE_CODE (newdecl) == TYPE_DECL
1146 || TREE_CODE (newdecl) == TEMPLATE_DECL
1147 || TREE_CODE (newdecl) == CONST_DECL
1148 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1149 return;
1150
1151 /* Don't get confused by static member functions; that's a different
1152 use of `static'. */
1153 if (TREE_CODE (newdecl) == FUNCTION_DECL
1154 && DECL_STATIC_FUNCTION_P (newdecl))
1155 return;
1156
1157 /* If the old declaration was `static', or the new one isn't, then
1158 everything is OK. */
1159 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1160 return;
1161
1162 /* It's OK to declare a builtin function as `static'. */
1163 if (TREE_CODE (olddecl) == FUNCTION_DECL
1164 && DECL_ARTIFICIAL (olddecl))
1165 return;
1166
1167 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1168 "%qD was declared %<extern%> and later %<static%>", newdecl))
1169 inform (DECL_SOURCE_LOCATION (olddecl),
1170 "previous declaration of %qD", olddecl);
1171 }
1172
1173 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1174 function templates. If their exception specifications do not
1175 match, issue a diagnostic. */
1176
1177 static void
1178 check_redeclaration_exception_specification (tree new_decl,
1179 tree old_decl)
1180 {
1181 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1182 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1183
1184 /* Two default specs are equivalent, don't force evaluation. */
1185 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1186 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1187 return;
1188
1189 maybe_instantiate_noexcept (new_decl);
1190 maybe_instantiate_noexcept (old_decl);
1191 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1192 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1193
1194 /* [except.spec]
1195
1196 If any declaration of a function has an exception-specification,
1197 all declarations, including the definition and an explicit
1198 specialization, of that function shall have an
1199 exception-specification with the same set of type-ids. */
1200 if (! DECL_IS_BUILTIN (old_decl)
1201 && flag_exceptions
1202 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1203 {
1204 const char *msg
1205 = "declaration of %q+F has a different exception specifier";
1206 bool complained = true;
1207 if (! DECL_IN_SYSTEM_HEADER (old_decl))
1208 error (msg, new_decl);
1209 else
1210 complained = pedwarn (0, OPT_Wsystem_headers, msg, new_decl);
1211 if (complained)
1212 inform (0, "from previous declaration %q+F", old_decl);
1213 }
1214 }
1215
1216 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1217 Otherwise issue diagnostics. */
1218
1219 static bool
1220 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1221 {
1222 old_decl = STRIP_TEMPLATE (old_decl);
1223 new_decl = STRIP_TEMPLATE (new_decl);
1224 if (!VAR_OR_FUNCTION_DECL_P (old_decl)
1225 || !VAR_OR_FUNCTION_DECL_P (new_decl))
1226 return true;
1227 if (DECL_DECLARED_CONSTEXPR_P (old_decl)
1228 == DECL_DECLARED_CONSTEXPR_P (new_decl))
1229 return true;
1230 if (TREE_CODE (old_decl) == FUNCTION_DECL)
1231 {
1232 if (DECL_BUILT_IN (old_decl))
1233 {
1234 /* Hide a built-in declaration. */
1235 DECL_DECLARED_CONSTEXPR_P (old_decl)
1236 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1237 return true;
1238 }
1239 /* 7.1.5 [dcl.constexpr]
1240 Note: An explicit specialization can differ from the template
1241 declaration with respect to the constexpr specifier. */
1242 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl)
1243 && DECL_TEMPLATE_SPECIALIZATION (new_decl))
1244 return true;
1245
1246 error ("redeclaration %q+D differs in %<constexpr%>", new_decl);
1247 error ("from previous declaration %q+D", old_decl);
1248 return false;
1249 }
1250 return true;
1251 }
1252
1253 // If OLDDECL and NEWDECL are concept declarations with the same type
1254 // (i.e., and template parameters), but different requirements,
1255 // emit diagnostics and return true. Otherwise, return false.
1256 static inline bool
1257 check_concept_refinement (tree olddecl, tree newdecl)
1258 {
1259 if (!DECL_DECLARED_CONCEPT_P (olddecl) || !DECL_DECLARED_CONCEPT_P (newdecl))
1260 return false;
1261
1262 tree d1 = DECL_TEMPLATE_RESULT (olddecl);
1263 tree d2 = DECL_TEMPLATE_RESULT (newdecl);
1264 if (TREE_CODE (d1) != TREE_CODE (d2))
1265 return false;
1266
1267 tree t1 = TREE_TYPE (d1);
1268 tree t2 = TREE_TYPE (d2);
1269 if (TREE_CODE (d1) == FUNCTION_DECL)
1270 {
1271 if (compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2))
1272 && comp_template_parms (DECL_TEMPLATE_PARMS (olddecl),
1273 DECL_TEMPLATE_PARMS (newdecl))
1274 && !equivalently_constrained (olddecl, newdecl))
1275 {
1276 error ("cannot specialize concept %q#D", olddecl);
1277 return true;
1278 }
1279 }
1280 return false;
1281 }
1282
1283 /* DECL is a redeclaration of a function or function template. If
1284 it does have default arguments issue a diagnostic. Note: this
1285 function is used to enforce the requirements in C++11 8.3.6 about
1286 no default arguments in redeclarations. */
1287
1288 static void
1289 check_redeclaration_no_default_args (tree decl)
1290 {
1291 gcc_assert (DECL_DECLARES_FUNCTION_P (decl));
1292
1293 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
1294 t && t != void_list_node; t = TREE_CHAIN (t))
1295 if (TREE_PURPOSE (t))
1296 {
1297 permerror (DECL_SOURCE_LOCATION (decl),
1298 "redeclaration of %q#D may not have default "
1299 "arguments", decl);
1300 return;
1301 }
1302 }
1303
1304 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1305 && lookup_attribute ("gnu_inline", \
1306 DECL_ATTRIBUTES (fn)))
1307
1308 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1309 If the redeclaration is invalid, a diagnostic is issued, and the
1310 error_mark_node is returned. Otherwise, OLDDECL is returned.
1311
1312 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1313 returned.
1314
1315 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1316
1317 tree
1318 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1319 {
1320 unsigned olddecl_uid = DECL_UID (olddecl);
1321 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1322 int new_defines_function = 0;
1323 tree new_template_info;
1324
1325 if (newdecl == olddecl)
1326 return olddecl;
1327
1328 types_match = decls_match (newdecl, olddecl);
1329
1330 /* If either the type of the new decl or the type of the old decl is an
1331 error_mark_node, then that implies that we have already issued an
1332 error (earlier) for some bogus type specification, and in that case,
1333 it is rather pointless to harass the user with yet more error message
1334 about the same declaration, so just pretend the types match here. */
1335 if (TREE_TYPE (newdecl) == error_mark_node
1336 || TREE_TYPE (olddecl) == error_mark_node)
1337 return error_mark_node;
1338
1339 if (UDLIT_OPER_P (DECL_NAME (newdecl))
1340 && UDLIT_OPER_P (DECL_NAME (olddecl)))
1341 {
1342 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1343 && TREE_CODE (olddecl) != TEMPLATE_DECL
1344 && check_raw_literal_operator (olddecl))
1345 error ("literal operator template %q+D conflicts with"
1346 " raw literal operator %qD", newdecl, olddecl);
1347 else if (TREE_CODE (newdecl) != TEMPLATE_DECL
1348 && TREE_CODE (olddecl) == TEMPLATE_DECL
1349 && check_raw_literal_operator (newdecl))
1350 error ("raw literal operator %q+D conflicts with"
1351 " literal operator template %qD", newdecl, olddecl);
1352 }
1353
1354 if (DECL_P (olddecl)
1355 && TREE_CODE (newdecl) == FUNCTION_DECL
1356 && TREE_CODE (olddecl) == FUNCTION_DECL
1357 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1358 {
1359 if (DECL_DECLARED_INLINE_P (newdecl)
1360 && DECL_UNINLINABLE (newdecl)
1361 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1362 /* Already warned elsewhere. */;
1363 else if (DECL_DECLARED_INLINE_P (olddecl)
1364 && DECL_UNINLINABLE (olddecl)
1365 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1366 /* Already warned. */;
1367 else if (DECL_DECLARED_INLINE_P (newdecl)
1368 && DECL_UNINLINABLE (olddecl)
1369 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1370 {
1371 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1372 OPT_Wattributes, "function %qD redeclared as inline",
1373 newdecl))
1374 inform (DECL_SOURCE_LOCATION (olddecl),
1375 "previous declaration of %qD with attribute noinline",
1376 olddecl);
1377 }
1378 else if (DECL_DECLARED_INLINE_P (olddecl)
1379 && DECL_UNINLINABLE (newdecl)
1380 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1381 {
1382 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1383 OPT_Wattributes, "function %qD redeclared with "
1384 "attribute noinline", newdecl))
1385 inform (DECL_SOURCE_LOCATION (olddecl),
1386 "previous declaration of %qD was inline",
1387 olddecl);
1388 }
1389 }
1390
1391 /* Check for redeclaration and other discrepancies. */
1392 if (TREE_CODE (olddecl) == FUNCTION_DECL
1393 && DECL_ARTIFICIAL (olddecl))
1394 {
1395 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1396 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1397 {
1398 /* Avoid warnings redeclaring built-ins which have not been
1399 explicitly declared. */
1400 if (DECL_ANTICIPATED (olddecl))
1401 return NULL_TREE;
1402
1403 /* If you declare a built-in or predefined function name as static,
1404 the old definition is overridden, but optionally warn this was a
1405 bad choice of name. */
1406 if (! TREE_PUBLIC (newdecl))
1407 {
1408 warning (OPT_Wshadow,
1409 DECL_BUILT_IN (olddecl)
1410 ? G_("shadowing built-in function %q#D")
1411 : G_("shadowing library function %q#D"), olddecl);
1412 /* Discard the old built-in function. */
1413 return NULL_TREE;
1414 }
1415 /* If the built-in is not ansi, then programs can override
1416 it even globally without an error. */
1417 else if (! DECL_BUILT_IN (olddecl))
1418 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1419 "library function %q#D redeclared as non-function %q#D",
1420 olddecl, newdecl);
1421 else
1422 error ("declaration of %q+#D conflicts with built-in "
1423 "declaration %q#D", newdecl, olddecl);
1424 return NULL_TREE;
1425 }
1426 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1427 {
1428 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1429 error_at (DECL_SOURCE_LOCATION (newdecl),
1430 "redeclaration of %<pragma omp declare reduction%>");
1431 inform (DECL_SOURCE_LOCATION (olddecl),
1432 "previous %<pragma omp declare reduction%> declaration");
1433 return error_mark_node;
1434 }
1435 else if (!types_match)
1436 {
1437 /* Avoid warnings redeclaring built-ins which have not been
1438 explicitly declared. */
1439 if (DECL_ANTICIPATED (olddecl))
1440 {
1441 /* Deal with fileptr_type_node. FILE type is not known
1442 at the time we create the builtins. */
1443 tree t1, t2;
1444
1445 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1446 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1447 t1 || t2;
1448 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1449 if (!t1 || !t2)
1450 break;
1451 else if (TREE_VALUE (t2) == fileptr_type_node)
1452 {
1453 tree t = TREE_VALUE (t1);
1454
1455 if (TYPE_PTR_P (t)
1456 && TYPE_IDENTIFIER (TREE_TYPE (t))
1457 == get_identifier ("FILE")
1458 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1459 {
1460 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1461
1462 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1463 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1464 types_match = decls_match (newdecl, olddecl);
1465 if (types_match)
1466 return duplicate_decls (newdecl, olddecl,
1467 newdecl_is_friend);
1468 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1469 }
1470 }
1471 else if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1472 break;
1473 }
1474 else if ((DECL_EXTERN_C_P (newdecl)
1475 && DECL_EXTERN_C_P (olddecl))
1476 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1477 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1478 {
1479 /* A near match; override the builtin. */
1480
1481 if (TREE_PUBLIC (newdecl))
1482 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1483 "new declaration %q#D ambiguates built-in "
1484 "declaration %q#D", newdecl, olddecl);
1485 else
1486 warning (OPT_Wshadow,
1487 DECL_BUILT_IN (olddecl)
1488 ? G_("shadowing built-in function %q#D")
1489 : G_("shadowing library function %q#D"), olddecl);
1490 }
1491 else
1492 /* Discard the old built-in function. */
1493 return NULL_TREE;
1494
1495 /* Replace the old RTL to avoid problems with inlining. */
1496 COPY_DECL_RTL (newdecl, olddecl);
1497 }
1498 /* Even if the types match, prefer the new declarations type for
1499 built-ins which have not been explicitly declared, for
1500 exception lists, etc... */
1501 else if (DECL_IS_BUILTIN (olddecl))
1502 {
1503 tree type = TREE_TYPE (newdecl);
1504 tree attribs = (*targetm.merge_type_attributes)
1505 (TREE_TYPE (olddecl), type);
1506
1507 type = cp_build_type_attribute_variant (type, attribs);
1508 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1509 }
1510
1511 /* If a function is explicitly declared "throw ()", propagate that to
1512 the corresponding builtin. */
1513 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1514 && DECL_ANTICIPATED (olddecl)
1515 && TREE_NOTHROW (newdecl)
1516 && !TREE_NOTHROW (olddecl))
1517 {
1518 enum built_in_function fncode = DECL_FUNCTION_CODE (olddecl);
1519 tree tmpdecl = builtin_decl_explicit (fncode);
1520 if (tmpdecl && tmpdecl != olddecl && types_match)
1521 TREE_NOTHROW (tmpdecl) = 1;
1522 }
1523
1524 /* Whether or not the builtin can throw exceptions has no
1525 bearing on this declarator. */
1526 TREE_NOTHROW (olddecl) = 0;
1527
1528 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1529 {
1530 /* If a builtin function is redeclared as `static', merge
1531 the declarations, but make the original one static. */
1532 DECL_THIS_STATIC (olddecl) = 1;
1533 TREE_PUBLIC (olddecl) = 0;
1534
1535 /* Make the old declaration consistent with the new one so
1536 that all remnants of the builtin-ness of this function
1537 will be banished. */
1538 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1539 COPY_DECL_RTL (newdecl, olddecl);
1540 }
1541 }
1542 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1543 {
1544 /* C++ Standard, 3.3, clause 4:
1545 "[Note: a namespace name or a class template name must be unique
1546 in its declarative region (7.3.2, clause 14). ]" */
1547 if (TREE_CODE (olddecl) != NAMESPACE_DECL
1548 && TREE_CODE (newdecl) != NAMESPACE_DECL
1549 && (TREE_CODE (olddecl) != TEMPLATE_DECL
1550 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) != TYPE_DECL)
1551 && (TREE_CODE (newdecl) != TEMPLATE_DECL
1552 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != TYPE_DECL))
1553 {
1554 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1555 && TREE_CODE (newdecl) != TYPE_DECL)
1556 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1557 && TREE_CODE (olddecl) != TYPE_DECL))
1558 {
1559 /* We do nothing special here, because C++ does such nasty
1560 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1561 get shadowed, and know that if we need to find a TYPE_DECL
1562 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1563 slot of the identifier. */
1564 return NULL_TREE;
1565 }
1566
1567 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1568 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1569 || (TREE_CODE (olddecl) == FUNCTION_DECL
1570 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1571 return NULL_TREE;
1572 }
1573
1574 error ("%q#D redeclared as different kind of symbol", newdecl);
1575 if (TREE_CODE (olddecl) == TREE_LIST)
1576 olddecl = TREE_VALUE (olddecl);
1577 inform (DECL_SOURCE_LOCATION (olddecl),
1578 "previous declaration %q#D", olddecl);
1579
1580 return error_mark_node;
1581 }
1582 else if (!types_match)
1583 {
1584 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1585 /* These are certainly not duplicate declarations; they're
1586 from different scopes. */
1587 return NULL_TREE;
1588
1589 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1590 {
1591 /* The name of a class template may not be declared to refer to
1592 any other template, class, function, object, namespace, value,
1593 or type in the same scope. */
1594 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1595 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1596 {
1597 error ("conflicting declaration of template %q+#D", newdecl);
1598 inform (DECL_SOURCE_LOCATION (olddecl),
1599 "previous declaration %q#D", olddecl);
1600 return error_mark_node;
1601 }
1602 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1603 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1604 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1605 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1606 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1607 DECL_TEMPLATE_PARMS (olddecl))
1608 /* Template functions can be disambiguated by
1609 return type. */
1610 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1611 TREE_TYPE (TREE_TYPE (olddecl)))
1612 // Template functions can also be disambiguated by
1613 // constraints.
1614 && equivalently_constrained (olddecl, newdecl))
1615 {
1616 error ("ambiguating new declaration %q+#D", newdecl);
1617 inform (DECL_SOURCE_LOCATION (olddecl),
1618 "old declaration %q#D", olddecl);
1619 }
1620 else if (check_concept_refinement (olddecl, newdecl))
1621 return error_mark_node;
1622 return NULL_TREE;
1623 }
1624 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1625 {
1626 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1627 {
1628 error ("conflicting declaration of C function %q+#D",
1629 newdecl);
1630 inform (DECL_SOURCE_LOCATION (olddecl),
1631 "previous declaration %q#D", olddecl);
1632 return NULL_TREE;
1633 }
1634 /* For function versions, params and types match, but they
1635 are not ambiguous. */
1636 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1637 && !DECL_FUNCTION_VERSIONED (olddecl))
1638 // The functions have the same parameter types.
1639 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1640 TYPE_ARG_TYPES (TREE_TYPE (olddecl)))
1641 // And the same constraints.
1642 && equivalently_constrained (newdecl, olddecl))
1643 {
1644 error ("ambiguating new declaration of %q+#D", newdecl);
1645 inform (DECL_SOURCE_LOCATION (olddecl),
1646 "old declaration %q#D", olddecl);
1647 return error_mark_node;
1648 }
1649 else
1650 return NULL_TREE;
1651 }
1652 else
1653 {
1654 error ("conflicting declaration %q+#D", newdecl);
1655 inform (DECL_SOURCE_LOCATION (olddecl),
1656 "previous declaration as %q#D", olddecl);
1657 return error_mark_node;
1658 }
1659 }
1660 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1661 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1662 && (!DECL_TEMPLATE_INFO (newdecl)
1663 || (DECL_TI_TEMPLATE (newdecl)
1664 != DECL_TI_TEMPLATE (olddecl))))
1665 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1666 && (!DECL_TEMPLATE_INFO (olddecl)
1667 || (DECL_TI_TEMPLATE (olddecl)
1668 != DECL_TI_TEMPLATE (newdecl))))))
1669 /* It's OK to have a template specialization and a non-template
1670 with the same type, or to have specializations of two
1671 different templates with the same type. Note that if one is a
1672 specialization, and the other is an instantiation of the same
1673 template, that we do not exit at this point. That situation
1674 can occur if we instantiate a template class, and then
1675 specialize one of its methods. This situation is valid, but
1676 the declarations must be merged in the usual way. */
1677 return NULL_TREE;
1678 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1679 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1680 && !DECL_USE_TEMPLATE (newdecl))
1681 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1682 && !DECL_USE_TEMPLATE (olddecl))))
1683 /* One of the declarations is a template instantiation, and the
1684 other is not a template at all. That's OK. */
1685 return NULL_TREE;
1686 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1687 {
1688 /* In [namespace.alias] we have:
1689
1690 In a declarative region, a namespace-alias-definition can be
1691 used to redefine a namespace-alias declared in that declarative
1692 region to refer only to the namespace to which it already
1693 refers.
1694
1695 Therefore, if we encounter a second alias directive for the same
1696 alias, we can just ignore the second directive. */
1697 if (DECL_NAMESPACE_ALIAS (newdecl)
1698 && (DECL_NAMESPACE_ALIAS (newdecl)
1699 == DECL_NAMESPACE_ALIAS (olddecl)))
1700 return olddecl;
1701 /* [namespace.alias]
1702
1703 A namespace-name or namespace-alias shall not be declared as
1704 the name of any other entity in the same declarative region.
1705 A namespace-name defined at global scope shall not be
1706 declared as the name of any other entity in any global scope
1707 of the program. */
1708 error ("conflicting declaration of namespace %q+D", newdecl);
1709 inform (DECL_SOURCE_LOCATION (olddecl),
1710 "previous declaration of namespace %qD here", olddecl);
1711 return error_mark_node;
1712 }
1713 else
1714 {
1715 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1716 if (errmsg)
1717 {
1718 error_at (DECL_SOURCE_LOCATION (newdecl), errmsg, newdecl);
1719 if (DECL_NAME (olddecl) != NULL_TREE)
1720 inform (DECL_SOURCE_LOCATION (olddecl),
1721 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1722 ? G_("%q#D previously defined here")
1723 : G_("%q#D previously declared here"), olddecl);
1724 return error_mark_node;
1725 }
1726 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1727 && DECL_INITIAL (olddecl) != NULL_TREE
1728 && !prototype_p (TREE_TYPE (olddecl))
1729 && prototype_p (TREE_TYPE (newdecl)))
1730 {
1731 /* Prototype decl follows defn w/o prototype. */
1732 if (warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1733 "prototype specified for %q#D", newdecl))
1734 inform (DECL_SOURCE_LOCATION (olddecl),
1735 "previous non-prototype definition here");
1736 }
1737 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1738 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1739 {
1740 /* [dcl.link]
1741 If two declarations of the same function or object
1742 specify different linkage-specifications ..., the program
1743 is ill-formed.... Except for functions with C++ linkage,
1744 a function declaration without a linkage specification
1745 shall not precede the first linkage specification for
1746 that function. A function can be declared without a
1747 linkage specification after an explicit linkage
1748 specification has been seen; the linkage explicitly
1749 specified in the earlier declaration is not affected by
1750 such a function declaration.
1751
1752 DR 563 raises the question why the restrictions on
1753 functions should not also apply to objects. Older
1754 versions of G++ silently ignore the linkage-specification
1755 for this example:
1756
1757 namespace N {
1758 extern int i;
1759 extern "C" int i;
1760 }
1761
1762 which is clearly wrong. Therefore, we now treat objects
1763 like functions. */
1764 if (current_lang_depth () == 0)
1765 {
1766 /* There is no explicit linkage-specification, so we use
1767 the linkage from the previous declaration. */
1768 if (!DECL_LANG_SPECIFIC (newdecl))
1769 retrofit_lang_decl (newdecl);
1770 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1771 }
1772 else
1773 {
1774 error ("conflicting declaration of %q+#D with %qL linkage",
1775 newdecl, DECL_LANGUAGE (newdecl));
1776 inform (DECL_SOURCE_LOCATION (olddecl),
1777 "previous declaration with %qL linkage",
1778 DECL_LANGUAGE (olddecl));
1779 }
1780 }
1781
1782 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1783 ;
1784 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1785 {
1786 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1787 if (DECL_FUNCTION_MEMBER_P (olddecl)
1788 && (/* grokfndecl passes member function templates too
1789 as FUNCTION_DECLs. */
1790 DECL_TEMPLATE_INFO (olddecl)
1791 /* C++11 8.3.6/6.
1792 Default arguments for a member function of a class
1793 template shall be specified on the initial declaration
1794 of the member function within the class template. */
1795 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
1796 check_redeclaration_no_default_args (newdecl);
1797 else
1798 {
1799 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1800 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1801 int i = 1;
1802
1803 for (; t1 && t1 != void_list_node;
1804 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1805 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1806 {
1807 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
1808 TREE_PURPOSE (t2)))
1809 {
1810 if (permerror (input_location,
1811 "default argument given for parameter "
1812 "%d of %q#D", i, newdecl))
1813 inform (DECL_SOURCE_LOCATION (olddecl),
1814 "previous specification in %q#D here",
1815 olddecl);
1816 }
1817 else
1818 {
1819 error ("default argument given for parameter %d "
1820 "of %q#D", i, newdecl);
1821 inform (DECL_SOURCE_LOCATION (olddecl),
1822 "previous specification in %q#D here",
1823 olddecl);
1824 }
1825 }
1826 }
1827 }
1828 }
1829
1830 /* Do not merge an implicit typedef with an explicit one. In:
1831
1832 class A;
1833 ...
1834 typedef class A A __attribute__ ((foo));
1835
1836 the attribute should apply only to the typedef. */
1837 if (TREE_CODE (olddecl) == TYPE_DECL
1838 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1839 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1840 return NULL_TREE;
1841
1842 /* If new decl is `static' and an `extern' was seen previously,
1843 warn about it. */
1844 warn_extern_redeclared_static (newdecl, olddecl);
1845
1846 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1847 return error_mark_node;
1848
1849 /* We have committed to returning 1 at this point. */
1850 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1851 {
1852 /* Now that functions must hold information normally held
1853 by field decls, there is extra work to do so that
1854 declaration information does not get destroyed during
1855 definition. */
1856 if (DECL_VINDEX (olddecl))
1857 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1858 if (DECL_CONTEXT (olddecl))
1859 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1860 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1861 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1862 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1863 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1864 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1865 DECL_FINAL_P (newdecl) |= DECL_FINAL_P (olddecl);
1866 DECL_OVERRIDE_P (newdecl) |= DECL_OVERRIDE_P (olddecl);
1867 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1868 if (DECL_OVERLOADED_OPERATOR_P (olddecl) != ERROR_MARK)
1869 SET_OVERLOADED_OPERATOR_CODE
1870 (newdecl, DECL_OVERLOADED_OPERATOR_P (olddecl));
1871 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1872
1873 /* Optionally warn about more than one declaration for the same
1874 name, but don't warn about a function declaration followed by a
1875 definition. */
1876 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1877 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1878 /* Don't warn about extern decl followed by definition. */
1879 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1880 /* Don't warn about friends, let add_friend take care of it. */
1881 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1882 /* Don't warn about declaration followed by specialization. */
1883 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1884 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1885 {
1886 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1887 OPT_Wredundant_decls,
1888 "redundant redeclaration of %qD in same scope",
1889 newdecl))
1890 inform (DECL_SOURCE_LOCATION (olddecl),
1891 "previous declaration of %qD", olddecl);
1892 }
1893
1894 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1895 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1896 {
1897 if (DECL_DELETED_FN (newdecl))
1898 {
1899 error ("deleted definition of %q+D", newdecl);
1900 inform (DECL_SOURCE_LOCATION (olddecl),
1901 "previous declaration of %qD", olddecl);
1902 }
1903 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
1904 }
1905 }
1906
1907 /* Deal with C++: must preserve virtual function table size. */
1908 if (TREE_CODE (olddecl) == TYPE_DECL)
1909 {
1910 tree newtype = TREE_TYPE (newdecl);
1911 tree oldtype = TREE_TYPE (olddecl);
1912
1913 if (newtype != error_mark_node && oldtype != error_mark_node
1914 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1915 CLASSTYPE_FRIEND_CLASSES (newtype)
1916 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1917
1918 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1919 }
1920
1921 /* Copy all the DECL_... slots specified in the new decl
1922 except for any that we copy here from the old type. */
1923 DECL_ATTRIBUTES (newdecl)
1924 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1925
1926 if (DECL_DECLARES_FUNCTION_P (olddecl) && DECL_DECLARES_FUNCTION_P (newdecl))
1927 {
1928 olddecl_friend = DECL_FRIEND_P (olddecl);
1929 hidden_friend = (DECL_ANTICIPATED (olddecl)
1930 && DECL_HIDDEN_FRIEND_P (olddecl)
1931 && newdecl_is_friend);
1932 if (!hidden_friend)
1933 {
1934 DECL_ANTICIPATED (olddecl) = 0;
1935 DECL_HIDDEN_FRIEND_P (olddecl) = 0;
1936 }
1937 }
1938
1939 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1940 {
1941 tree old_result;
1942 tree new_result;
1943 old_result = DECL_TEMPLATE_RESULT (olddecl);
1944 new_result = DECL_TEMPLATE_RESULT (newdecl);
1945 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
1946 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
1947 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
1948 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
1949
1950 DECL_ATTRIBUTES (old_result)
1951 = (*targetm.merge_decl_attributes) (old_result, new_result);
1952
1953 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1954 {
1955 /* Per C++11 8.3.6/4, default arguments cannot be added in later
1956 declarations of a function template. */
1957 if (DECL_SOURCE_LOCATION (newdecl)
1958 != DECL_SOURCE_LOCATION (olddecl))
1959 check_redeclaration_no_default_args (newdecl);
1960
1961 check_default_args (newdecl);
1962
1963 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
1964 && DECL_INITIAL (new_result))
1965 {
1966 if (DECL_INITIAL (old_result))
1967 DECL_UNINLINABLE (old_result) = 1;
1968 else
1969 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
1970 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
1971 DECL_NOT_REALLY_EXTERN (old_result)
1972 = DECL_NOT_REALLY_EXTERN (new_result);
1973 DECL_INTERFACE_KNOWN (old_result)
1974 = DECL_INTERFACE_KNOWN (new_result);
1975 DECL_DECLARED_INLINE_P (old_result)
1976 = DECL_DECLARED_INLINE_P (new_result);
1977 DECL_DISREGARD_INLINE_LIMITS (old_result)
1978 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
1979
1980 }
1981 else
1982 {
1983 DECL_DECLARED_INLINE_P (old_result)
1984 |= DECL_DECLARED_INLINE_P (new_result);
1985 DECL_DISREGARD_INLINE_LIMITS (old_result)
1986 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
1987 check_redeclaration_exception_specification (newdecl, olddecl);
1988 }
1989 }
1990
1991 /* If the new declaration is a definition, update the file and
1992 line information on the declaration, and also make
1993 the old declaration the same definition. */
1994 if (DECL_INITIAL (new_result) != NULL_TREE)
1995 {
1996 DECL_SOURCE_LOCATION (olddecl)
1997 = DECL_SOURCE_LOCATION (old_result)
1998 = DECL_SOURCE_LOCATION (newdecl);
1999 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
2000 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2001 {
2002 tree parm;
2003 DECL_ARGUMENTS (old_result)
2004 = DECL_ARGUMENTS (new_result);
2005 for (parm = DECL_ARGUMENTS (old_result); parm;
2006 parm = DECL_CHAIN (parm))
2007 DECL_CONTEXT (parm) = old_result;
2008 }
2009 }
2010
2011 return olddecl;
2012 }
2013
2014 if (types_match)
2015 {
2016 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2017 check_redeclaration_exception_specification (newdecl, olddecl);
2018
2019 /* Automatically handles default parameters. */
2020 tree oldtype = TREE_TYPE (olddecl);
2021 tree newtype;
2022
2023 /* For typedefs use the old type, as the new type's DECL_NAME points
2024 at newdecl, which will be ggc_freed. */
2025 if (TREE_CODE (newdecl) == TYPE_DECL)
2026 newtype = oldtype;
2027 else
2028 /* Merge the data types specified in the two decls. */
2029 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
2030
2031 if (VAR_P (newdecl))
2032 {
2033 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
2034 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
2035 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
2036 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
2037 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
2038 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
2039
2040 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
2041 if (DECL_LANG_SPECIFIC (olddecl)
2042 && CP_DECL_THREADPRIVATE_P (olddecl))
2043 {
2044 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
2045 if (!DECL_LANG_SPECIFIC (newdecl))
2046 retrofit_lang_decl (newdecl);
2047
2048 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
2049 }
2050 }
2051
2052 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2053
2054 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2055 check_default_args (newdecl);
2056
2057 /* Lay the type out, unless already done. */
2058 if (! same_type_p (newtype, oldtype)
2059 && TREE_TYPE (newdecl) != error_mark_node
2060 && !(processing_template_decl && uses_template_parms (newdecl)))
2061 layout_type (TREE_TYPE (newdecl));
2062
2063 if ((VAR_P (newdecl)
2064 || TREE_CODE (newdecl) == PARM_DECL
2065 || TREE_CODE (newdecl) == RESULT_DECL
2066 || TREE_CODE (newdecl) == FIELD_DECL
2067 || TREE_CODE (newdecl) == TYPE_DECL)
2068 && !(processing_template_decl && uses_template_parms (newdecl)))
2069 layout_decl (newdecl, 0);
2070
2071 /* Merge the type qualifiers. */
2072 if (TREE_READONLY (newdecl))
2073 TREE_READONLY (olddecl) = 1;
2074 if (TREE_THIS_VOLATILE (newdecl))
2075 TREE_THIS_VOLATILE (olddecl) = 1;
2076 if (TREE_NOTHROW (newdecl))
2077 TREE_NOTHROW (olddecl) = 1;
2078
2079 /* Merge deprecatedness. */
2080 if (TREE_DEPRECATED (newdecl))
2081 TREE_DEPRECATED (olddecl) = 1;
2082
2083 /* Preserve function specific target and optimization options */
2084 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2085 {
2086 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2087 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2088 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2089 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2090
2091 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2092 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2093 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2094 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2095 }
2096
2097 /* Merge the initialization information. */
2098 if (DECL_INITIAL (newdecl) == NULL_TREE
2099 && DECL_INITIAL (olddecl) != NULL_TREE)
2100 {
2101 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2102 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2103 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2104 {
2105 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2106 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2107 }
2108 }
2109
2110 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2111 {
2112 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2113 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2114 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2115 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2116 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
2117 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2118 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2119 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2120 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2121 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2122 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2123 /* Keep the old RTL. */
2124 COPY_DECL_RTL (olddecl, newdecl);
2125 }
2126 else if (VAR_P (newdecl)
2127 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2128 {
2129 /* Keep the old RTL. We cannot keep the old RTL if the old
2130 declaration was for an incomplete object and the new
2131 declaration is not since many attributes of the RTL will
2132 change. */
2133 COPY_DECL_RTL (olddecl, newdecl);
2134 }
2135 }
2136 /* If cannot merge, then use the new type and qualifiers,
2137 and don't preserve the old rtl. */
2138 else
2139 {
2140 /* Clean out any memory we had of the old declaration. */
2141 tree oldstatic = value_member (olddecl, static_aggregates);
2142 if (oldstatic)
2143 TREE_VALUE (oldstatic) = error_mark_node;
2144
2145 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2146 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2147 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2148 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2149 }
2150
2151 /* Merge the storage class information. */
2152 merge_weak (newdecl, olddecl);
2153
2154 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2155 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2156 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2157 if (! DECL_EXTERNAL (olddecl))
2158 DECL_EXTERNAL (newdecl) = 0;
2159 if (! DECL_COMDAT (olddecl))
2160 DECL_COMDAT (newdecl) = 0;
2161
2162 new_template_info = NULL_TREE;
2163 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2164 {
2165 bool new_redefines_gnu_inline = false;
2166
2167 if (new_defines_function
2168 && ((DECL_INTERFACE_KNOWN (olddecl)
2169 && TREE_CODE (olddecl) == FUNCTION_DECL)
2170 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2171 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2172 == FUNCTION_DECL))))
2173 {
2174 tree fn = olddecl;
2175
2176 if (TREE_CODE (fn) == TEMPLATE_DECL)
2177 fn = DECL_TEMPLATE_RESULT (olddecl);
2178
2179 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2180 }
2181
2182 if (!new_redefines_gnu_inline)
2183 {
2184 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2185 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2186 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2187 }
2188 DECL_TEMPLATE_INSTANTIATED (newdecl)
2189 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2190 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2191
2192 /* If the OLDDECL is an instantiation and/or specialization,
2193 then the NEWDECL must be too. But, it may not yet be marked
2194 as such if the caller has created NEWDECL, but has not yet
2195 figured out that it is a redeclaration. */
2196 if (!DECL_USE_TEMPLATE (newdecl))
2197 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2198
2199 /* Don't really know how much of the language-specific
2200 values we should copy from old to new. */
2201 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2202 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
2203 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2204 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2205
2206 if (LANG_DECL_HAS_MIN (newdecl))
2207 {
2208 DECL_LANG_SPECIFIC (newdecl)->u.min.u2 =
2209 DECL_LANG_SPECIFIC (olddecl)->u.min.u2;
2210 if (DECL_TEMPLATE_INFO (newdecl))
2211 {
2212 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2213 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2214 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2215 /* Remember the presence of explicit specialization args. */
2216 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2217 = TINFO_USED_TEMPLATE_ID (new_template_info);
2218 }
2219 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2220 }
2221 /* Only functions have these fields. */
2222 if (DECL_DECLARES_FUNCTION_P (newdecl))
2223 {
2224 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2225 DECL_BEFRIENDING_CLASSES (newdecl)
2226 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2227 DECL_BEFRIENDING_CLASSES (olddecl));
2228 /* DECL_THUNKS is only valid for virtual functions,
2229 otherwise it is a DECL_FRIEND_CONTEXT. */
2230 if (DECL_VIRTUAL_P (newdecl))
2231 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2232 }
2233 /* Only variables have this field. */
2234 else if (VAR_P (newdecl)
2235 && VAR_HAD_UNKNOWN_BOUND (olddecl))
2236 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2237 }
2238
2239 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2240 {
2241 tree parm;
2242
2243 /* Merge parameter attributes. */
2244 tree oldarg, newarg;
2245 for (oldarg = DECL_ARGUMENTS(olddecl),
2246 newarg = DECL_ARGUMENTS(newdecl);
2247 oldarg && newarg;
2248 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg)) {
2249 DECL_ATTRIBUTES (newarg)
2250 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2251 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2252 }
2253
2254 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2255 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2256 {
2257 /* If newdecl is not a specialization, then it is not a
2258 template-related function at all. And that means that we
2259 should have exited above, returning 0. */
2260 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2261
2262 if (DECL_ODR_USED (olddecl))
2263 /* From [temp.expl.spec]:
2264
2265 If a template, a member template or the member of a class
2266 template is explicitly specialized then that
2267 specialization shall be declared before the first use of
2268 that specialization that would cause an implicit
2269 instantiation to take place, in every translation unit in
2270 which such a use occurs. */
2271 error ("explicit specialization of %qD after first use",
2272 olddecl);
2273
2274 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2275 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2276 && DECL_DECLARED_INLINE_P (newdecl));
2277
2278 /* Don't propagate visibility from the template to the
2279 specialization here. We'll do that in determine_visibility if
2280 appropriate. */
2281 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2282
2283 /* [temp.expl.spec/14] We don't inline explicit specialization
2284 just because the primary template says so. */
2285
2286 /* But still keep DECL_DISREGARD_INLINE_LIMITS in sync with
2287 the always_inline attribute. */
2288 if (DECL_DISREGARD_INLINE_LIMITS (olddecl)
2289 && !DECL_DISREGARD_INLINE_LIMITS (newdecl))
2290 {
2291 if (DECL_DECLARED_INLINE_P (newdecl))
2292 DECL_DISREGARD_INLINE_LIMITS (newdecl) = true;
2293 else
2294 DECL_ATTRIBUTES (newdecl)
2295 = remove_attribute ("always_inline",
2296 DECL_ATTRIBUTES (newdecl));
2297 }
2298 }
2299 else if (new_defines_function && DECL_INITIAL (olddecl))
2300 {
2301 /* Never inline re-defined extern inline functions.
2302 FIXME: this could be better handled by keeping both
2303 function as separate declarations. */
2304 DECL_UNINLINABLE (newdecl) = 1;
2305 }
2306 else
2307 {
2308 if (DECL_PENDING_INLINE_INFO (newdecl) == 0)
2309 DECL_PENDING_INLINE_INFO (newdecl) = DECL_PENDING_INLINE_INFO (olddecl);
2310
2311 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2312
2313 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2314 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2315
2316 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2317 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2318 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2319 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2320 }
2321
2322 /* Preserve abstractness on cloned [cd]tors. */
2323 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2324
2325 /* Update newdecl's parms to point at olddecl. */
2326 for (parm = DECL_ARGUMENTS (newdecl); parm;
2327 parm = DECL_CHAIN (parm))
2328 DECL_CONTEXT (parm) = olddecl;
2329
2330 if (! types_match)
2331 {
2332 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2333 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2334 COPY_DECL_RTL (newdecl, olddecl);
2335 }
2336 if (! types_match || new_defines_function)
2337 {
2338 /* These need to be copied so that the names are available.
2339 Note that if the types do match, we'll preserve inline
2340 info and other bits, but if not, we won't. */
2341 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2342 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2343 }
2344 /* If redeclaring a builtin function, it stays built in
2345 if newdecl is a gnu_inline definition, or if newdecl is just
2346 a declaration. */
2347 if (DECL_BUILT_IN (olddecl)
2348 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2349 {
2350 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2351 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2352 /* If we're keeping the built-in definition, keep the rtl,
2353 regardless of declaration matches. */
2354 COPY_DECL_RTL (olddecl, newdecl);
2355 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2356 {
2357 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2358 switch (fncode)
2359 {
2360 /* If a compatible prototype of these builtin functions
2361 is seen, assume the runtime implements it with the
2362 expected semantics. */
2363 case BUILT_IN_STPCPY:
2364 if (builtin_decl_explicit_p (fncode))
2365 set_builtin_decl_implicit_p (fncode, true);
2366 break;
2367 default:
2368 if (builtin_decl_explicit_p (fncode))
2369 set_builtin_decl_declared_p (fncode, true);
2370 break;
2371 }
2372 }
2373 }
2374 if (new_defines_function)
2375 /* If defining a function declared with other language
2376 linkage, use the previously declared language linkage. */
2377 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2378 else if (types_match)
2379 {
2380 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2381 /* Don't clear out the arguments if we're just redeclaring a
2382 function. */
2383 if (DECL_ARGUMENTS (olddecl))
2384 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2385 }
2386 }
2387 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2388 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2389
2390 /* Now preserve various other info from the definition. */
2391 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2392 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2393 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2394 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2395
2396 /* Warn about conflicting visibility specifications. */
2397 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2398 && DECL_VISIBILITY_SPECIFIED (newdecl)
2399 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2400 {
2401 if (warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wattributes,
2402 "%qD: visibility attribute ignored because it "
2403 "conflicts with previous declaration", newdecl))
2404 inform (DECL_SOURCE_LOCATION (olddecl),
2405 "previous declaration of %qD", olddecl);
2406 }
2407 /* Choose the declaration which specified visibility. */
2408 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2409 {
2410 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2411 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2412 }
2413 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2414 so keep this behavior. */
2415 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2416 {
2417 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2418 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2419 }
2420 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2421 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2422 {
2423 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
2424 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2425 }
2426 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2427 if (TREE_CODE (newdecl) == FIELD_DECL)
2428 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2429
2430 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2431 with that from NEWDECL below. */
2432 if (DECL_LANG_SPECIFIC (olddecl))
2433 {
2434 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2435 != DECL_LANG_SPECIFIC (newdecl));
2436 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2437 }
2438
2439 /* Merge the USED information. */
2440 if (TREE_USED (olddecl))
2441 TREE_USED (newdecl) = 1;
2442 else if (TREE_USED (newdecl))
2443 TREE_USED (olddecl) = 1;
2444 if (VAR_P (newdecl))
2445 {
2446 if (DECL_READ_P (olddecl))
2447 DECL_READ_P (newdecl) = 1;
2448 else if (DECL_READ_P (newdecl))
2449 DECL_READ_P (olddecl) = 1;
2450 }
2451 if (DECL_PRESERVE_P (olddecl))
2452 DECL_PRESERVE_P (newdecl) = 1;
2453 else if (DECL_PRESERVE_P (newdecl))
2454 DECL_PRESERVE_P (olddecl) = 1;
2455
2456 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2457 to olddecl and deleted. */
2458 if (TREE_CODE (newdecl) == FUNCTION_DECL
2459 && DECL_FUNCTION_VERSIONED (olddecl))
2460 {
2461 /* Set the flag for newdecl so that it gets copied to olddecl. */
2462 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2463 /* newdecl will be purged after copying to olddecl and is no longer
2464 a version. */
2465 cgraph_node::delete_function_version (newdecl);
2466 }
2467
2468 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2469 {
2470 int function_size;
2471 struct symtab_node *snode = symtab_node::get (olddecl);
2472
2473 function_size = sizeof (struct tree_decl_common);
2474
2475 memcpy ((char *) olddecl + sizeof (struct tree_common),
2476 (char *) newdecl + sizeof (struct tree_common),
2477 function_size - sizeof (struct tree_common));
2478
2479 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2480 (char *) newdecl + sizeof (struct tree_decl_common),
2481 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2482
2483 /* Preserve symtab node mapping. */
2484 olddecl->decl_with_vis.symtab_node = snode;
2485
2486 if (new_template_info)
2487 /* If newdecl is a template instantiation, it is possible that
2488 the following sequence of events has occurred:
2489
2490 o A friend function was declared in a class template. The
2491 class template was instantiated.
2492
2493 o The instantiation of the friend declaration was
2494 recorded on the instantiation list, and is newdecl.
2495
2496 o Later, however, instantiate_class_template called pushdecl
2497 on the newdecl to perform name injection. But, pushdecl in
2498 turn called duplicate_decls when it discovered that another
2499 declaration of a global function with the same name already
2500 existed.
2501
2502 o Here, in duplicate_decls, we decided to clobber newdecl.
2503
2504 If we're going to do that, we'd better make sure that
2505 olddecl, and not newdecl, is on the list of
2506 instantiations so that if we try to do the instantiation
2507 again we won't get the clobbered declaration. */
2508 reregister_specialization (newdecl,
2509 new_template_info,
2510 olddecl);
2511 }
2512 else
2513 {
2514 size_t size = tree_code_size (TREE_CODE (newdecl));
2515
2516 memcpy ((char *) olddecl + sizeof (struct tree_common),
2517 (char *) newdecl + sizeof (struct tree_common),
2518 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2519 switch (TREE_CODE (newdecl))
2520 {
2521 case LABEL_DECL:
2522 case VAR_DECL:
2523 case RESULT_DECL:
2524 case PARM_DECL:
2525 case FIELD_DECL:
2526 case TYPE_DECL:
2527 case CONST_DECL:
2528 {
2529 struct symtab_node *snode = NULL;
2530
2531 if (VAR_P (newdecl)
2532 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl)
2533 || DECL_EXTERNAL (olddecl)))
2534 snode = symtab_node::get (olddecl);
2535 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2536 (char *) newdecl + sizeof (struct tree_decl_common),
2537 size - sizeof (struct tree_decl_common)
2538 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2539 if (VAR_P (newdecl))
2540 olddecl->decl_with_vis.symtab_node = snode;
2541 }
2542 break;
2543 default:
2544 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2545 (char *) newdecl + sizeof (struct tree_decl_common),
2546 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2547 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2548 break;
2549 }
2550 }
2551
2552 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2553 {
2554 if (DECL_EXTERNAL (olddecl)
2555 || TREE_PUBLIC (olddecl)
2556 || TREE_STATIC (olddecl))
2557 {
2558 /* Merge the section attribute.
2559 We want to issue an error if the sections conflict but that must be
2560 done later in decl_attributes since we are called before attributes
2561 are assigned. */
2562 if (DECL_SECTION_NAME (newdecl) != NULL)
2563 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2564
2565 if (DECL_ONE_ONLY (newdecl))
2566 {
2567 struct symtab_node *oldsym, *newsym;
2568 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2569 oldsym = cgraph_node::get_create (olddecl);
2570 else
2571 oldsym = varpool_node::get_create (olddecl);
2572 newsym = symtab_node::get (newdecl);
2573 oldsym->set_comdat_group (newsym->get_comdat_group ());
2574 }
2575 }
2576
2577 if (VAR_P (newdecl)
2578 && CP_DECL_THREAD_LOCAL_P (newdecl))
2579 {
2580 CP_DECL_THREAD_LOCAL_P (olddecl) = true;
2581 if (!processing_template_decl)
2582 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2583 }
2584 }
2585
2586 DECL_UID (olddecl) = olddecl_uid;
2587 if (olddecl_friend)
2588 DECL_FRIEND_P (olddecl) = 1;
2589 if (hidden_friend)
2590 {
2591 DECL_ANTICIPATED (olddecl) = 1;
2592 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2593 }
2594
2595 /* NEWDECL contains the merged attribute lists.
2596 Update OLDDECL to be the same. */
2597 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2598
2599 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2600 so that encode_section_info has a chance to look at the new decl
2601 flags and attributes. */
2602 if (DECL_RTL_SET_P (olddecl)
2603 && (TREE_CODE (olddecl) == FUNCTION_DECL
2604 || (VAR_P (olddecl)
2605 && TREE_STATIC (olddecl))))
2606 make_decl_rtl (olddecl);
2607
2608 /* The NEWDECL will no longer be needed. Because every out-of-class
2609 declaration of a member results in a call to duplicate_decls,
2610 freeing these nodes represents in a significant savings.
2611
2612 Before releasing the node, be sore to remove function from symbol
2613 table that might have been inserted there to record comdat group.
2614 Be sure to however do not free DECL_STRUCT_FUNCTION becuase this
2615 structure is shared in between newdecl and oldecl. */
2616 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2617 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2618 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2619 {
2620 struct symtab_node *snode = symtab_node::get (newdecl);
2621 if (snode)
2622 snode->remove ();
2623 }
2624
2625 /* Remove the associated constraints for newdecl, if any, before
2626 reclaiming memory. */
2627 if (flag_concepts)
2628 remove_constraints (newdecl);
2629
2630 ggc_free (newdecl);
2631
2632 return olddecl;
2633 }
2634 \f
2635 /* Return zero if the declaration NEWDECL is valid
2636 when the declaration OLDDECL (assumed to be for the same name)
2637 has already been seen.
2638 Otherwise return an error message format string with a %s
2639 where the identifier should go. */
2640
2641 static const char *
2642 redeclaration_error_message (tree newdecl, tree olddecl)
2643 {
2644 if (TREE_CODE (newdecl) == TYPE_DECL)
2645 {
2646 /* Because C++ can put things into name space for free,
2647 constructs like "typedef struct foo { ... } foo"
2648 would look like an erroneous redeclaration. */
2649 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2650 return NULL;
2651 else
2652 return G_("redefinition of %q#D");
2653 }
2654 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2655 {
2656 /* If this is a pure function, its olddecl will actually be
2657 the original initialization to `0' (which we force to call
2658 abort()). Don't complain about redefinition in this case. */
2659 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2660 && DECL_INITIAL (olddecl) == NULL_TREE)
2661 return NULL;
2662
2663 /* If both functions come from different namespaces, this is not
2664 a redeclaration - this is a conflict with a used function. */
2665 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2666 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2667 && ! decls_match (olddecl, newdecl))
2668 return G_("%qD conflicts with used function");
2669
2670 /* We'll complain about linkage mismatches in
2671 warn_extern_redeclared_static. */
2672
2673 /* Defining the same name twice is no good. */
2674 if (DECL_INITIAL (olddecl) != NULL_TREE
2675 && DECL_INITIAL (newdecl) != NULL_TREE)
2676 {
2677 if (DECL_NAME (olddecl) == NULL_TREE)
2678 return G_("%q#D not declared in class");
2679 else if (!GNU_INLINE_P (olddecl)
2680 || GNU_INLINE_P (newdecl))
2681 return G_("redefinition of %q#D");
2682 }
2683
2684 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2685 {
2686 bool olda = GNU_INLINE_P (olddecl);
2687 bool newa = GNU_INLINE_P (newdecl);
2688
2689 if (olda != newa)
2690 {
2691 if (newa)
2692 return G_("%q+D redeclared inline with "
2693 "%<gnu_inline%> attribute");
2694 else
2695 return G_("%q+D redeclared inline without "
2696 "%<gnu_inline%> attribute");
2697 }
2698 }
2699
2700 check_abi_tag_redeclaration
2701 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2702 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2703
2704 return NULL;
2705 }
2706 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2707 {
2708 tree nt, ot;
2709
2710 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2711 {
2712 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2713 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2714 return G_("redefinition of %q#D");
2715 return NULL;
2716 }
2717
2718 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2719 || (DECL_TEMPLATE_RESULT (newdecl)
2720 == DECL_TEMPLATE_RESULT (olddecl)))
2721 return NULL;
2722
2723 nt = DECL_TEMPLATE_RESULT (newdecl);
2724 if (DECL_TEMPLATE_INFO (nt))
2725 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2726 ot = DECL_TEMPLATE_RESULT (olddecl);
2727 if (DECL_TEMPLATE_INFO (ot))
2728 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2729 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2730 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2731 return G_("redefinition of %q#D");
2732
2733 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2734 {
2735 bool olda = GNU_INLINE_P (ot);
2736 bool newa = GNU_INLINE_P (nt);
2737
2738 if (olda != newa)
2739 {
2740 if (newa)
2741 return G_("%q+D redeclared inline with "
2742 "%<gnu_inline%> attribute");
2743 else
2744 return G_("%q+D redeclared inline without "
2745 "%<gnu_inline%> attribute");
2746 }
2747 }
2748
2749 /* Core issue #226 (C++0x):
2750
2751 If a friend function template declaration specifies a
2752 default template-argument, that declaration shall be a
2753 definition and shall be the only declaration of the
2754 function template in the translation unit. */
2755 if ((cxx_dialect != cxx98)
2756 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2757 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2758 /*is_primary=*/true,
2759 /*is_partial=*/false,
2760 /*is_friend_decl=*/2))
2761 return G_("redeclaration of friend %q#D "
2762 "may not have default template arguments");
2763
2764 return NULL;
2765 }
2766 else if (VAR_P (newdecl)
2767 && CP_DECL_THREAD_LOCAL_P (newdecl) != CP_DECL_THREAD_LOCAL_P (olddecl)
2768 && (! DECL_LANG_SPECIFIC (olddecl)
2769 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2770 || CP_DECL_THREAD_LOCAL_P (newdecl)))
2771 {
2772 /* Only variables can be thread-local, and all declarations must
2773 agree on this property. */
2774 if (CP_DECL_THREAD_LOCAL_P (newdecl))
2775 return G_("thread-local declaration of %q#D follows "
2776 "non-thread-local declaration");
2777 else
2778 return G_("non-thread-local declaration of %q#D follows "
2779 "thread-local declaration");
2780 }
2781 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2782 {
2783 /* The objects have been declared at namespace scope. If either
2784 is a member of an anonymous union, then this is an invalid
2785 redeclaration. For example:
2786
2787 int i;
2788 union { int i; };
2789
2790 is invalid. */
2791 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2792 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2793 return G_("redeclaration of %q#D");
2794 /* If at least one declaration is a reference, there is no
2795 conflict. For example:
2796
2797 int i = 3;
2798 extern int i;
2799
2800 is valid. */
2801 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2802 return NULL;
2803 /* Reject two definitions. */
2804 return G_("redefinition of %q#D");
2805 }
2806 else
2807 {
2808 /* Objects declared with block scope: */
2809 /* Reject two definitions, and reject a definition
2810 together with an external reference. */
2811 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2812 return G_("redeclaration of %q#D");
2813 return NULL;
2814 }
2815 }
2816 \f
2817 /* Hash and equality functions for the named_label table. */
2818
2819 hashval_t
2820 named_label_hasher::hash (named_label_entry *ent)
2821 {
2822 return DECL_UID (ent->label_decl);
2823 }
2824
2825 bool
2826 named_label_hasher::equal (named_label_entry *a, named_label_entry *b)
2827 {
2828 return a->label_decl == b->label_decl;
2829 }
2830
2831 /* Create a new label, named ID. */
2832
2833 static tree
2834 make_label_decl (tree id, int local_p)
2835 {
2836 struct named_label_entry *ent;
2837 tree decl;
2838
2839 decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
2840
2841 DECL_CONTEXT (decl) = current_function_decl;
2842 DECL_MODE (decl) = VOIDmode;
2843 C_DECLARED_LABEL_FLAG (decl) = local_p;
2844
2845 /* Say where one reference is to the label, for the sake of the
2846 error if it is not defined. */
2847 DECL_SOURCE_LOCATION (decl) = input_location;
2848
2849 /* Record the fact that this identifier is bound to this label. */
2850 SET_IDENTIFIER_LABEL_VALUE (id, decl);
2851
2852 /* Create the label htab for the function on demand. */
2853 if (!named_labels)
2854 named_labels = hash_table<named_label_hasher>::create_ggc (13);
2855
2856 /* Record this label on the list of labels used in this function.
2857 We do this before calling make_label_decl so that we get the
2858 IDENTIFIER_LABEL_VALUE before the new label is declared. */
2859 ent = ggc_cleared_alloc<named_label_entry> ();
2860 ent->label_decl = decl;
2861
2862 named_label_entry **slot = named_labels->find_slot (ent, INSERT);
2863 gcc_assert (*slot == NULL);
2864 *slot = ent;
2865
2866 return decl;
2867 }
2868
2869 /* Look for a label named ID in the current function. If one cannot
2870 be found, create one. (We keep track of used, but undefined,
2871 labels, and complain about them at the end of a function.) */
2872
2873 static tree
2874 lookup_label_1 (tree id)
2875 {
2876 tree decl;
2877
2878 /* You can't use labels at global scope. */
2879 if (current_function_decl == NULL_TREE)
2880 {
2881 error ("label %qE referenced outside of any function", id);
2882 return NULL_TREE;
2883 }
2884
2885 /* See if we've already got this label. */
2886 decl = IDENTIFIER_LABEL_VALUE (id);
2887 if (decl != NULL_TREE && DECL_CONTEXT (decl) == current_function_decl)
2888 return decl;
2889
2890 decl = make_label_decl (id, /*local_p=*/0);
2891 return decl;
2892 }
2893
2894 /* Wrapper for lookup_label_1. */
2895
2896 tree
2897 lookup_label (tree id)
2898 {
2899 tree ret;
2900 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
2901 ret = lookup_label_1 (id);
2902 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
2903 return ret;
2904 }
2905
2906 /* Declare a local label named ID. */
2907
2908 tree
2909 declare_local_label (tree id)
2910 {
2911 tree decl;
2912 cp_label_binding bind;
2913
2914 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
2915 this scope we can restore the old value of IDENTIFIER_TYPE_VALUE. */
2916 bind.prev_value = IDENTIFIER_LABEL_VALUE (id);
2917
2918 decl = make_label_decl (id, /*local_p=*/1);
2919 bind.label = decl;
2920 vec_safe_push (current_binding_level->shadowed_labels, bind);
2921
2922 return decl;
2923 }
2924
2925 /* Returns nonzero if it is ill-formed to jump past the declaration of
2926 DECL. Returns 2 if it's also a real problem. */
2927
2928 static int
2929 decl_jump_unsafe (tree decl)
2930 {
2931 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
2932 with automatic storage duration is not in scope to a point where it is
2933 in scope is ill-formed unless the variable has scalar type, class type
2934 with a trivial default constructor and a trivial destructor, a
2935 cv-qualified version of one of these types, or an array of one of the
2936 preceding types and is declared without an initializer (8.5). */
2937 tree type = TREE_TYPE (decl);
2938
2939 if (!VAR_P (decl) || TREE_STATIC (decl)
2940 || type == error_mark_node)
2941 return 0;
2942
2943 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
2944 || variably_modified_type_p (type, NULL_TREE))
2945 return 2;
2946
2947 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
2948 return 1;
2949
2950 return 0;
2951 }
2952
2953 /* A subroutine of check_previous_goto_1 to identify a branch to the user. */
2954
2955 static bool
2956 identify_goto (tree decl, const location_t *locus)
2957 {
2958 bool complained = (decl
2959 ? permerror (input_location, "jump to label %qD", decl)
2960 : permerror (input_location, "jump to case label"));
2961 if (complained && locus)
2962 inform (*locus, " from here");
2963 return complained;
2964 }
2965
2966 /* Check that a single previously seen jump to a newly defined label
2967 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
2968 the jump context; NAMES are the names in scope in LEVEL at the jump
2969 context; LOCUS is the source position of the jump or 0. Returns
2970 true if all is well. */
2971
2972 static bool
2973 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
2974 bool exited_omp, const location_t *locus)
2975 {
2976 cp_binding_level *b;
2977 bool identified = false, complained = false;
2978 bool saw_eh = false, saw_omp = false;
2979
2980 if (exited_omp)
2981 {
2982 complained = identify_goto (decl, locus);
2983 if (complained)
2984 inform (input_location, " exits OpenMP structured block");
2985 identified = saw_omp = true;
2986 }
2987
2988 for (b = current_binding_level; b ; b = b->level_chain)
2989 {
2990 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
2991
2992 for (new_decls = b->names; new_decls != old_decls;
2993 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
2994 : TREE_CHAIN (new_decls)))
2995 {
2996 int problem = decl_jump_unsafe (new_decls);
2997 if (! problem)
2998 continue;
2999
3000 if (!identified)
3001 {
3002 complained = identify_goto (decl, locus);
3003 identified = true;
3004 }
3005 if (complained)
3006 {
3007 if (problem > 1)
3008 inform (DECL_SOURCE_LOCATION (new_decls),
3009 " crosses initialization of %q#D", new_decls);
3010 else
3011 inform (DECL_SOURCE_LOCATION (new_decls),
3012 " enters scope of %q#D which has "
3013 "non-trivial destructor", new_decls);
3014 }
3015 }
3016
3017 if (b == level)
3018 break;
3019 if ((b->kind == sk_try || b->kind == sk_catch) && !saw_eh)
3020 {
3021 if (!identified)
3022 {
3023 complained = identify_goto (decl, locus);
3024 identified = true;
3025 }
3026 if (complained)
3027 {
3028 if (b->kind == sk_try)
3029 inform (input_location, " enters try block");
3030 else
3031 inform (input_location, " enters catch block");
3032 }
3033 saw_eh = true;
3034 }
3035 if (b->kind == sk_omp && !saw_omp)
3036 {
3037 if (!identified)
3038 {
3039 complained = identify_goto (decl, locus);
3040 identified = true;
3041 }
3042 if (complained)
3043 inform (input_location, " enters OpenMP structured block");
3044 saw_omp = true;
3045 }
3046 }
3047
3048 return !identified;
3049 }
3050
3051 static void
3052 check_previous_goto (tree decl, struct named_label_use_entry *use)
3053 {
3054 check_previous_goto_1 (decl, use->binding_level,
3055 use->names_in_scope, use->in_omp_scope,
3056 &use->o_goto_locus);
3057 }
3058
3059 static bool
3060 check_switch_goto (cp_binding_level* level)
3061 {
3062 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
3063 }
3064
3065 /* Check that a new jump to a label DECL is OK. Called by
3066 finish_goto_stmt. */
3067
3068 void
3069 check_goto (tree decl)
3070 {
3071 struct named_label_entry *ent, dummy;
3072 bool saw_catch = false, identified = false, complained = false;
3073 tree bad;
3074 unsigned ix;
3075
3076 /* We can't know where a computed goto is jumping.
3077 So we assume that it's OK. */
3078 if (TREE_CODE (decl) != LABEL_DECL)
3079 return;
3080
3081 /* We didn't record any information about this label when we created it,
3082 and there's not much point since it's trivial to analyze as a return. */
3083 if (decl == cdtor_label)
3084 return;
3085
3086 dummy.label_decl = decl;
3087 ent = named_labels->find (&dummy);
3088 gcc_assert (ent != NULL);
3089
3090 /* If the label hasn't been defined yet, defer checking. */
3091 if (! DECL_INITIAL (decl))
3092 {
3093 struct named_label_use_entry *new_use;
3094
3095 /* Don't bother creating another use if the last goto had the
3096 same data, and will therefore create the same set of errors. */
3097 if (ent->uses
3098 && ent->uses->names_in_scope == current_binding_level->names)
3099 return;
3100
3101 new_use = ggc_alloc<named_label_use_entry> ();
3102 new_use->binding_level = current_binding_level;
3103 new_use->names_in_scope = current_binding_level->names;
3104 new_use->o_goto_locus = input_location;
3105 new_use->in_omp_scope = false;
3106
3107 new_use->next = ent->uses;
3108 ent->uses = new_use;
3109 return;
3110 }
3111
3112 if (ent->in_try_scope || ent->in_catch_scope
3113 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3114 {
3115 complained = permerror (DECL_SOURCE_LOCATION (decl),
3116 "jump to label %qD", decl);
3117 if (complained)
3118 inform (input_location, " from here");
3119 identified = true;
3120 }
3121
3122 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3123 {
3124 int u = decl_jump_unsafe (bad);
3125
3126 if (u > 1 && DECL_ARTIFICIAL (bad))
3127 {
3128 /* Can't skip init of __exception_info. */
3129 if (complained)
3130 inform (DECL_SOURCE_LOCATION (bad), " enters catch block");
3131 saw_catch = true;
3132 }
3133 else if (complained)
3134 {
3135 if (u > 1)
3136 inform (DECL_SOURCE_LOCATION (bad),
3137 " skips initialization of %q#D", bad);
3138 else
3139 inform (DECL_SOURCE_LOCATION (bad),
3140 " enters scope of %q#D which has "
3141 "non-trivial destructor", bad);
3142 }
3143 }
3144
3145 if (complained)
3146 {
3147 if (ent->in_try_scope)
3148 inform (input_location, " enters try block");
3149 else if (ent->in_catch_scope && !saw_catch)
3150 inform (input_location, " enters catch block");
3151 }
3152
3153 if (ent->in_omp_scope)
3154 {
3155 if (complained)
3156 inform (input_location, " enters OpenMP structured block");
3157 }
3158 else if (flag_openmp)
3159 {
3160 cp_binding_level *b;
3161 for (b = current_binding_level; b ; b = b->level_chain)
3162 {
3163 if (b == ent->binding_level)
3164 break;
3165 if (b->kind == sk_omp)
3166 {
3167 if (!identified)
3168 {
3169 complained = permerror (DECL_SOURCE_LOCATION (decl),
3170 "jump to label %qD", decl);
3171 if (complained)
3172 inform (input_location, " from here");
3173 identified = true;
3174 }
3175 if (complained)
3176 inform (input_location, " exits OpenMP structured block");
3177 break;
3178 }
3179 }
3180 }
3181 }
3182
3183 /* Check that a return is ok wrt OpenMP structured blocks.
3184 Called by finish_return_stmt. Returns true if all is well. */
3185
3186 bool
3187 check_omp_return (void)
3188 {
3189 cp_binding_level *b;
3190 for (b = current_binding_level; b ; b = b->level_chain)
3191 if (b->kind == sk_omp)
3192 {
3193 error ("invalid exit from OpenMP structured block");
3194 return false;
3195 }
3196 else if (b->kind == sk_function_parms)
3197 break;
3198 return true;
3199 }
3200
3201 /* Define a label, specifying the location in the source file.
3202 Return the LABEL_DECL node for the label. */
3203
3204 static tree
3205 define_label_1 (location_t location, tree name)
3206 {
3207 struct named_label_entry *ent, dummy;
3208 cp_binding_level *p;
3209 tree decl;
3210
3211 decl = lookup_label (name);
3212
3213 dummy.label_decl = decl;
3214 ent = named_labels->find (&dummy);
3215 gcc_assert (ent != NULL);
3216
3217 /* After labels, make any new cleanups in the function go into their
3218 own new (temporary) binding contour. */
3219 for (p = current_binding_level;
3220 p->kind != sk_function_parms;
3221 p = p->level_chain)
3222 p->more_cleanups_ok = 0;
3223
3224 if (name == get_identifier ("wchar_t"))
3225 permerror (input_location, "label named wchar_t");
3226
3227 if (DECL_INITIAL (decl) != NULL_TREE)
3228 {
3229 error ("duplicate label %qD", decl);
3230 return error_mark_node;
3231 }
3232 else
3233 {
3234 struct named_label_use_entry *use;
3235
3236 /* Mark label as having been defined. */
3237 DECL_INITIAL (decl) = error_mark_node;
3238 /* Say where in the source. */
3239 DECL_SOURCE_LOCATION (decl) = location;
3240
3241 ent->binding_level = current_binding_level;
3242 ent->names_in_scope = current_binding_level->names;
3243
3244 for (use = ent->uses; use ; use = use->next)
3245 check_previous_goto (decl, use);
3246 ent->uses = NULL;
3247 }
3248
3249 return decl;
3250 }
3251
3252 /* Wrapper for define_label_1. */
3253
3254 tree
3255 define_label (location_t location, tree name)
3256 {
3257 tree ret;
3258 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3259 ret = define_label_1 (location, name);
3260 timevar_cond_stop (TV_NAME_LOOKUP, running);
3261 return ret;
3262 }
3263
3264
3265 struct cp_switch
3266 {
3267 cp_binding_level *level;
3268 struct cp_switch *next;
3269 /* The SWITCH_STMT being built. */
3270 tree switch_stmt;
3271 /* A splay-tree mapping the low element of a case range to the high
3272 element, or NULL_TREE if there is no high element. Used to
3273 determine whether or not a new case label duplicates an old case
3274 label. We need a tree, rather than simply a hash table, because
3275 of the GNU case range extension. */
3276 splay_tree cases;
3277 /* Remember whether there was a case value that is outside the
3278 range of the original type of the controlling expression. */
3279 bool outside_range_p;
3280 };
3281
3282 /* A stack of the currently active switch statements. The innermost
3283 switch statement is on the top of the stack. There is no need to
3284 mark the stack for garbage collection because it is only active
3285 during the processing of the body of a function, and we never
3286 collect at that point. */
3287
3288 static struct cp_switch *switch_stack;
3289
3290 /* Called right after a switch-statement condition is parsed.
3291 SWITCH_STMT is the switch statement being parsed. */
3292
3293 void
3294 push_switch (tree switch_stmt)
3295 {
3296 struct cp_switch *p = XNEW (struct cp_switch);
3297 p->level = current_binding_level;
3298 p->next = switch_stack;
3299 p->switch_stmt = switch_stmt;
3300 p->cases = splay_tree_new (case_compare, NULL, NULL);
3301 p->outside_range_p = false;
3302 switch_stack = p;
3303 }
3304
3305 void
3306 pop_switch (void)
3307 {
3308 struct cp_switch *cs = switch_stack;
3309 location_t switch_location;
3310
3311 /* Emit warnings as needed. */
3312 switch_location = EXPR_LOC_OR_LOC (cs->switch_stmt, input_location);
3313 const bool bool_cond_p
3314 = (SWITCH_STMT_TYPE (cs->switch_stmt)
3315 && TREE_CODE (SWITCH_STMT_TYPE (cs->switch_stmt)) == BOOLEAN_TYPE);
3316 if (!processing_template_decl)
3317 c_do_switch_warnings (cs->cases, switch_location,
3318 SWITCH_STMT_TYPE (cs->switch_stmt),
3319 SWITCH_STMT_COND (cs->switch_stmt),
3320 bool_cond_p, cs->outside_range_p);
3321
3322 splay_tree_delete (cs->cases);
3323 switch_stack = switch_stack->next;
3324 free (cs);
3325 }
3326
3327 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3328 condition. Note that if TYPE and VALUE are already integral we don't
3329 really do the conversion because the language-independent
3330 warning/optimization code will work better that way. */
3331
3332 static tree
3333 case_conversion (tree type, tree value)
3334 {
3335 if (value == NULL_TREE)
3336 return value;
3337
3338 if (cxx_dialect >= cxx11
3339 && (SCOPED_ENUM_P (type)
3340 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))))
3341 {
3342 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3343 type = type_promotes_to (type);
3344 value = (perform_implicit_conversion_flags
3345 (type, value, tf_warning_or_error,
3346 LOOKUP_IMPLICIT | LOOKUP_NO_NON_INTEGRAL));
3347 }
3348 return cxx_constant_value (value);
3349 }
3350
3351 /* Note that we've seen a definition of a case label, and complain if this
3352 is a bad place for one. */
3353
3354 tree
3355 finish_case_label (location_t loc, tree low_value, tree high_value)
3356 {
3357 tree cond, r;
3358 cp_binding_level *p;
3359 tree type;
3360
3361 if (processing_template_decl)
3362 {
3363 tree label;
3364
3365 /* For templates, just add the case label; we'll do semantic
3366 analysis at instantiation-time. */
3367 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
3368 return add_stmt (build_case_label (low_value, high_value, label));
3369 }
3370
3371 /* Find the condition on which this switch statement depends. */
3372 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3373 if (cond && TREE_CODE (cond) == TREE_LIST)
3374 cond = TREE_VALUE (cond);
3375
3376 if (!check_switch_goto (switch_stack->level))
3377 return error_mark_node;
3378
3379 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3380
3381 low_value = case_conversion (type, low_value);
3382 high_value = case_conversion (type, high_value);
3383
3384 r = c_add_case_label (loc, switch_stack->cases, cond, type,
3385 low_value, high_value,
3386 &switch_stack->outside_range_p);
3387
3388 /* After labels, make any new cleanups in the function go into their
3389 own new (temporary) binding contour. */
3390 for (p = current_binding_level;
3391 p->kind != sk_function_parms;
3392 p = p->level_chain)
3393 p->more_cleanups_ok = 0;
3394
3395 return r;
3396 }
3397 \f
3398 struct typename_info {
3399 tree scope;
3400 tree name;
3401 tree template_id;
3402 bool enum_p;
3403 bool class_p;
3404 };
3405
3406 struct typename_hasher : ggc_ptr_hash<tree_node>
3407 {
3408 typedef typename_info *compare_type;
3409
3410 /* Hash a TYPENAME_TYPE. */
3411
3412 static hashval_t
3413 hash (tree t)
3414 {
3415 hashval_t hash;
3416
3417 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3418 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3419
3420 return hash;
3421 }
3422
3423 /* Compare two TYPENAME_TYPEs. */
3424
3425 static bool
3426 equal (tree t1, const typename_info *t2)
3427 {
3428 return (TYPE_IDENTIFIER (t1) == t2->name
3429 && TYPE_CONTEXT (t1) == t2->scope
3430 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3431 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3432 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3433 }
3434 };
3435
3436 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3437 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3438
3439 Returns the new TYPENAME_TYPE. */
3440
3441 static GTY (()) hash_table<typename_hasher> *typename_htab;
3442
3443 static tree
3444 build_typename_type (tree context, tree name, tree fullname,
3445 enum tag_types tag_type)
3446 {
3447 tree t;
3448 tree d;
3449 typename_info ti;
3450 tree *e;
3451 hashval_t hash;
3452
3453 if (typename_htab == NULL)
3454 typename_htab = hash_table<typename_hasher>::create_ggc (61);
3455
3456 ti.scope = FROB_CONTEXT (context);
3457 ti.name = name;
3458 ti.template_id = fullname;
3459 ti.enum_p = tag_type == enum_type;
3460 ti.class_p = (tag_type == class_type
3461 || tag_type == record_type
3462 || tag_type == union_type);
3463 hash = (htab_hash_pointer (ti.scope)
3464 ^ htab_hash_pointer (ti.name));
3465
3466 /* See if we already have this type. */
3467 e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
3468 if (*e)
3469 t = *e;
3470 else
3471 {
3472 /* Build the TYPENAME_TYPE. */
3473 t = cxx_make_type (TYPENAME_TYPE);
3474 TYPE_CONTEXT (t) = ti.scope;
3475 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3476 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3477 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3478
3479 /* Build the corresponding TYPE_DECL. */
3480 d = build_decl (input_location, TYPE_DECL, name, t);
3481 TYPE_NAME (TREE_TYPE (d)) = d;
3482 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3483 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3484 DECL_ARTIFICIAL (d) = 1;
3485
3486 /* Store it in the hash table. */
3487 *e = t;
3488
3489 /* TYPENAME_TYPEs must always be compared structurally, because
3490 they may or may not resolve down to another type depending on
3491 the currently open classes. */
3492 SET_TYPE_STRUCTURAL_EQUALITY (t);
3493 }
3494
3495 return t;
3496 }
3497
3498 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3499 provided to name the type. Returns an appropriate type, unless an
3500 error occurs, in which case error_mark_node is returned. If we
3501 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3502 return that, rather than the _TYPE it corresponds to, in other
3503 cases we look through the type decl. If TF_ERROR is set, complain
3504 about errors, otherwise be quiet. */
3505
3506 tree
3507 make_typename_type (tree context, tree name, enum tag_types tag_type,
3508 tsubst_flags_t complain)
3509 {
3510 tree fullname;
3511 tree t;
3512 bool want_template;
3513
3514 if (name == error_mark_node
3515 || context == NULL_TREE
3516 || context == error_mark_node)
3517 return error_mark_node;
3518
3519 if (TYPE_P (name))
3520 {
3521 if (!(TYPE_LANG_SPECIFIC (name)
3522 && (CLASSTYPE_IS_TEMPLATE (name)
3523 || CLASSTYPE_USE_TEMPLATE (name))))
3524 name = TYPE_IDENTIFIER (name);
3525 else
3526 /* Create a TEMPLATE_ID_EXPR for the type. */
3527 name = build_nt (TEMPLATE_ID_EXPR,
3528 CLASSTYPE_TI_TEMPLATE (name),
3529 CLASSTYPE_TI_ARGS (name));
3530 }
3531 else if (TREE_CODE (name) == TYPE_DECL)
3532 name = DECL_NAME (name);
3533
3534 fullname = name;
3535
3536 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3537 {
3538 name = TREE_OPERAND (name, 0);
3539 if (DECL_TYPE_TEMPLATE_P (name))
3540 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3541 if (TREE_CODE (name) != IDENTIFIER_NODE)
3542 {
3543 if (complain & tf_error)
3544 error ("%qD is not a type", name);
3545 return error_mark_node;
3546 }
3547 }
3548 if (TREE_CODE (name) == TEMPLATE_DECL)
3549 {
3550 if (complain & tf_error)
3551 error ("%qD used without template parameters", name);
3552 return error_mark_node;
3553 }
3554 gcc_assert (identifier_p (name));
3555 gcc_assert (TYPE_P (context));
3556
3557 if (!MAYBE_CLASS_TYPE_P (context))
3558 {
3559 if (complain & tf_error)
3560 error ("%q#T is not a class", context);
3561 return error_mark_node;
3562 }
3563
3564 /* When the CONTEXT is a dependent type, NAME could refer to a
3565 dependent base class of CONTEXT. But look inside it anyway
3566 if CONTEXT is a currently open scope, in case it refers to a
3567 member of the current instantiation or a non-dependent base;
3568 lookup will stop when we hit a dependent base. */
3569 if (!dependent_scope_p (context))
3570 /* We should only set WANT_TYPE when we're a nested typename type.
3571 Then we can give better diagnostics if we find a non-type. */
3572 t = lookup_field (context, name, 2, /*want_type=*/true);
3573 else
3574 t = NULL_TREE;
3575
3576 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3577 return build_typename_type (context, name, fullname, tag_type);
3578
3579 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3580
3581 if (!t)
3582 {
3583 if (complain & tf_error)
3584 error (want_template ? G_("no class template named %q#T in %q#T")
3585 : G_("no type named %q#T in %q#T"), name, context);
3586 return error_mark_node;
3587 }
3588
3589 /* Pull out the template from an injected-class-name (or multiple). */
3590 if (want_template)
3591 t = maybe_get_template_decl_from_type_decl (t);
3592
3593 if (TREE_CODE (t) == TREE_LIST)
3594 {
3595 if (complain & tf_error)
3596 {
3597 error ("lookup of %qT in %qT is ambiguous", name, context);
3598 print_candidates (t);
3599 }
3600 return error_mark_node;
3601 }
3602
3603 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3604 {
3605 if (complain & tf_error)
3606 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3607 context, name, t);
3608 return error_mark_node;
3609 }
3610 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3611 {
3612 if (complain & tf_error)
3613 error ("%<typename %T::%D%> names %q#T, which is not a type",
3614 context, name, t);
3615 return error_mark_node;
3616 }
3617
3618 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3619 return error_mark_node;
3620
3621 /* If we are currently parsing a template and if T is a typedef accessed
3622 through CONTEXT then we need to remember and check access of T at
3623 template instantiation time. */
3624 add_typedef_to_current_template_for_access_check (t, context, input_location);
3625
3626 if (want_template)
3627 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3628 NULL_TREE, context,
3629 /*entering_scope=*/0,
3630 complain | tf_user);
3631
3632 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3633 t = TREE_TYPE (t);
3634
3635 maybe_record_typedef_use (t);
3636
3637 return t;
3638 }
3639
3640 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3641 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3642 in which case error_mark_node is returned.
3643
3644 If PARM_LIST is non-NULL, also make sure that the template parameter
3645 list of TEMPLATE_DECL matches.
3646
3647 If COMPLAIN zero, don't complain about any errors that occur. */
3648
3649 tree
3650 make_unbound_class_template (tree context, tree name, tree parm_list,
3651 tsubst_flags_t complain)
3652 {
3653 tree t;
3654 tree d;
3655
3656 if (TYPE_P (name))
3657 name = TYPE_IDENTIFIER (name);
3658 else if (DECL_P (name))
3659 name = DECL_NAME (name);
3660 gcc_assert (identifier_p (name));
3661
3662 if (!dependent_type_p (context)
3663 || currently_open_class (context))
3664 {
3665 tree tmpl = NULL_TREE;
3666
3667 if (MAYBE_CLASS_TYPE_P (context))
3668 tmpl = lookup_field (context, name, 0, false);
3669
3670 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3671 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3672
3673 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3674 {
3675 if (complain & tf_error)
3676 error ("no class template named %q#T in %q#T", name, context);
3677 return error_mark_node;
3678 }
3679
3680 if (parm_list
3681 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3682 {
3683 if (complain & tf_error)
3684 {
3685 error ("template parameters do not match template %qD", tmpl);
3686 inform (DECL_SOURCE_LOCATION (tmpl),
3687 "%qD declared here", tmpl);
3688 }
3689 return error_mark_node;
3690 }
3691
3692 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
3693 complain))
3694 return error_mark_node;
3695
3696 return tmpl;
3697 }
3698
3699 /* Build the UNBOUND_CLASS_TEMPLATE. */
3700 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3701 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3702 TREE_TYPE (t) = NULL_TREE;
3703 SET_TYPE_STRUCTURAL_EQUALITY (t);
3704
3705 /* Build the corresponding TEMPLATE_DECL. */
3706 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3707 TYPE_NAME (TREE_TYPE (d)) = d;
3708 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3709 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3710 DECL_ARTIFICIAL (d) = 1;
3711 DECL_TEMPLATE_PARMS (d) = parm_list;
3712
3713 return t;
3714 }
3715
3716 \f
3717
3718 /* Push the declarations of builtin types into the namespace.
3719 RID_INDEX is the index of the builtin type in the array
3720 RID_POINTERS. NAME is the name used when looking up the builtin
3721 type. TYPE is the _TYPE node for the builtin type. */
3722
3723 void
3724 record_builtin_type (enum rid rid_index,
3725 const char* name,
3726 tree type)
3727 {
3728 tree rname = NULL_TREE, tname = NULL_TREE;
3729 tree tdecl = NULL_TREE;
3730
3731 if ((int) rid_index < (int) RID_MAX)
3732 rname = ridpointers[(int) rid_index];
3733 if (name)
3734 tname = get_identifier (name);
3735
3736 /* The calls to SET_IDENTIFIER_GLOBAL_VALUE below should be
3737 eliminated. Built-in types should not be looked up name; their
3738 names are keywords that the parser can recognize. However, there
3739 is code in c-common.c that uses identifier_global_value to look
3740 up built-in types by name. */
3741 if (tname)
3742 {
3743 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
3744 DECL_ARTIFICIAL (tdecl) = 1;
3745 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
3746 }
3747 if (rname)
3748 {
3749 if (!tdecl)
3750 {
3751 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
3752 DECL_ARTIFICIAL (tdecl) = 1;
3753 }
3754 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
3755 }
3756
3757 if (!TYPE_NAME (type))
3758 TYPE_NAME (type) = tdecl;
3759
3760 if (tdecl)
3761 debug_hooks->type_decl (tdecl, 0);
3762 }
3763
3764 /* Record one of the standard Java types.
3765 * Declare it as having the given NAME.
3766 * If SIZE > 0, it is the size of one of the integral types;
3767 * otherwise it is the negative of the size of one of the other types. */
3768
3769 static tree
3770 record_builtin_java_type (const char* name, int size)
3771 {
3772 tree type, decl;
3773 if (size > 0)
3774 {
3775 type = build_nonstandard_integer_type (size, 0);
3776 type = build_distinct_type_copy (type);
3777 }
3778 else if (size > -32)
3779 {
3780 tree stype;
3781 /* "__java_char" or ""__java_boolean". */
3782 type = build_nonstandard_integer_type (-size, 1);
3783 type = build_distinct_type_copy (type);
3784 /* Get the signed type cached and attached to the unsigned type,
3785 so it doesn't get garbage-collected at "random" times,
3786 causing potential codegen differences out of different UIDs
3787 and different alias set numbers. */
3788 stype = build_nonstandard_integer_type (-size, 0);
3789 stype = build_distinct_type_copy (stype);
3790 TREE_CHAIN (type) = stype;
3791 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
3792 }
3793 else
3794 { /* "__java_float" or ""__java_double". */
3795 type = make_node (REAL_TYPE);
3796 TYPE_PRECISION (type) = - size;
3797 layout_type (type);
3798 }
3799 record_builtin_type (RID_MAX, name, type);
3800 decl = TYPE_NAME (type);
3801
3802 /* Suppress generate debug symbol entries for these types,
3803 since for normal C++ they are just clutter.
3804 However, push_lang_context undoes this if extern "Java" is seen. */
3805 DECL_IGNORED_P (decl) = 1;
3806
3807 TYPE_FOR_JAVA (type) = 1;
3808 return type;
3809 }
3810
3811 /* Push a type into the namespace so that the back ends ignore it. */
3812
3813 static void
3814 record_unknown_type (tree type, const char* name)
3815 {
3816 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
3817 TYPE_DECL, get_identifier (name), type));
3818 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3819 DECL_IGNORED_P (decl) = 1;
3820 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
3821 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
3822 TYPE_ALIGN (type) = 1;
3823 TYPE_USER_ALIGN (type) = 0;
3824 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
3825 }
3826
3827 /* A string for which we should create an IDENTIFIER_NODE at
3828 startup. */
3829
3830 struct predefined_identifier
3831 {
3832 /* The name of the identifier. */
3833 const char *const name;
3834 /* The place where the IDENTIFIER_NODE should be stored. */
3835 tree *const node;
3836 /* Nonzero if this is the name of a constructor or destructor. */
3837 const int ctor_or_dtor_p;
3838 };
3839
3840 /* Create all the predefined identifiers. */
3841
3842 static void
3843 initialize_predefined_identifiers (void)
3844 {
3845 const predefined_identifier *pid;
3846
3847 /* A table of identifiers to create at startup. */
3848 static const predefined_identifier predefined_identifiers[] = {
3849 { "C++", &lang_name_cplusplus, 0 },
3850 { "C", &lang_name_c, 0 },
3851 { "Java", &lang_name_java, 0 },
3852 /* Some of these names have a trailing space so that it is
3853 impossible for them to conflict with names written by users. */
3854 { "__ct ", &ctor_identifier, 1 },
3855 { "__base_ctor ", &base_ctor_identifier, 1 },
3856 { "__comp_ctor ", &complete_ctor_identifier, 1 },
3857 { "__dt ", &dtor_identifier, 1 },
3858 { "__comp_dtor ", &complete_dtor_identifier, 1 },
3859 { "__base_dtor ", &base_dtor_identifier, 1 },
3860 { "__deleting_dtor ", &deleting_dtor_identifier, 1 },
3861 { IN_CHARGE_NAME, &in_charge_identifier, 0 },
3862 { "nelts", &nelts_identifier, 0 },
3863 { THIS_NAME, &this_identifier, 0 },
3864 { VTABLE_DELTA_NAME, &delta_identifier, 0 },
3865 { VTABLE_PFN_NAME, &pfn_identifier, 0 },
3866 { "_vptr", &vptr_identifier, 0 },
3867 { "__vtt_parm", &vtt_parm_identifier, 0 },
3868 { "::", &global_scope_name, 0 },
3869 { "std", &std_identifier, 0 },
3870 { NULL, NULL, 0 }
3871 };
3872
3873 for (pid = predefined_identifiers; pid->name; ++pid)
3874 {
3875 *pid->node = get_identifier (pid->name);
3876 if (pid->ctor_or_dtor_p)
3877 IDENTIFIER_CTOR_OR_DTOR_P (*pid->node) = 1;
3878 }
3879 }
3880
3881 /* Create the predefined scalar types of C,
3882 and some nodes representing standard constants (0, 1, (void *)0).
3883 Initialize the global binding level.
3884 Make definitions for built-in primitive functions. */
3885
3886 void
3887 cxx_init_decl_processing (void)
3888 {
3889 tree void_ftype;
3890 tree void_ftype_ptr;
3891
3892 /* Create all the identifiers we need. */
3893 initialize_predefined_identifiers ();
3894
3895 /* Create the global variables. */
3896 push_to_top_level ();
3897
3898 current_function_decl = NULL_TREE;
3899 current_binding_level = NULL;
3900 /* Enter the global namespace. */
3901 gcc_assert (global_namespace == NULL_TREE);
3902 global_namespace = build_lang_decl (NAMESPACE_DECL, global_scope_name,
3903 void_type_node);
3904 DECL_CONTEXT (global_namespace) = build_translation_unit_decl (NULL_TREE);
3905 debug_hooks->register_main_translation_unit
3906 (DECL_CONTEXT (global_namespace));
3907 TREE_PUBLIC (global_namespace) = 1;
3908 begin_scope (sk_namespace, global_namespace);
3909
3910 if (flag_visibility_ms_compat)
3911 default_visibility = VISIBILITY_HIDDEN;
3912
3913 /* Initially, C. */
3914 current_lang_name = lang_name_c;
3915
3916 /* Create the `std' namespace. */
3917 push_namespace (std_identifier);
3918 std_node = current_namespace;
3919 pop_namespace ();
3920
3921 c_common_nodes_and_builtins ();
3922
3923 java_byte_type_node = record_builtin_java_type ("__java_byte", 8);
3924 java_short_type_node = record_builtin_java_type ("__java_short", 16);
3925 java_int_type_node = record_builtin_java_type ("__java_int", 32);
3926 java_long_type_node = record_builtin_java_type ("__java_long", 64);
3927 java_float_type_node = record_builtin_java_type ("__java_float", -32);
3928 java_double_type_node = record_builtin_java_type ("__java_double", -64);
3929 java_char_type_node = record_builtin_java_type ("__java_char", -16);
3930 java_boolean_type_node = record_builtin_java_type ("__java_boolean", -1);
3931
3932 integer_two_node = build_int_cst (NULL_TREE, 2);
3933
3934 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
3935 truthvalue_type_node = boolean_type_node;
3936 truthvalue_false_node = boolean_false_node;
3937 truthvalue_true_node = boolean_true_node;
3938
3939 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
3940 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
3941 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
3942
3943 #if 0
3944 record_builtin_type (RID_MAX, NULL, string_type_node);
3945 #endif
3946
3947 delta_type_node = ptrdiff_type_node;
3948 vtable_index_type = ptrdiff_type_node;
3949
3950 vtt_parm_type = build_pointer_type (const_ptr_type_node);
3951 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
3952 void_ftype_ptr = build_function_type_list (void_type_node,
3953 ptr_type_node, NULL_TREE);
3954 void_ftype_ptr
3955 = build_exception_variant (void_ftype_ptr, empty_except_spec);
3956
3957 /* C++ extensions */
3958
3959 unknown_type_node = make_node (LANG_TYPE);
3960 record_unknown_type (unknown_type_node, "unknown type");
3961
3962 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
3963 TREE_TYPE (unknown_type_node) = unknown_type_node;
3964
3965 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
3966 result. */
3967 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
3968 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
3969
3970 init_list_type_node = make_node (LANG_TYPE);
3971 record_unknown_type (init_list_type_node, "init list");
3972
3973 {
3974 /* Make sure we get a unique function type, so we can give
3975 its pointer type a name. (This wins for gdb.) */
3976 tree vfunc_type = make_node (FUNCTION_TYPE);
3977 TREE_TYPE (vfunc_type) = integer_type_node;
3978 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
3979 layout_type (vfunc_type);
3980
3981 vtable_entry_type = build_pointer_type (vfunc_type);
3982 }
3983 record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
3984
3985 vtbl_type_node
3986 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
3987 layout_type (vtbl_type_node);
3988 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
3989 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
3990 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
3991 layout_type (vtbl_ptr_type_node);
3992 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
3993
3994 push_namespace (get_identifier ("__cxxabiv1"));
3995 abi_node = current_namespace;
3996 pop_namespace ();
3997
3998 global_type_node = make_node (LANG_TYPE);
3999 record_unknown_type (global_type_node, "global type");
4000
4001 /* Now, C++. */
4002 current_lang_name = lang_name_cplusplus;
4003
4004 {
4005 tree newattrs, extvisattr;
4006 tree newtype, deltype;
4007 tree ptr_ftype_sizetype;
4008 tree new_eh_spec;
4009
4010 ptr_ftype_sizetype
4011 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
4012 if (cxx_dialect == cxx98)
4013 {
4014 tree bad_alloc_id;
4015 tree bad_alloc_type_node;
4016 tree bad_alloc_decl;
4017
4018 push_namespace (std_identifier);
4019 bad_alloc_id = get_identifier ("bad_alloc");
4020 bad_alloc_type_node = make_class_type (RECORD_TYPE);
4021 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
4022 bad_alloc_decl
4023 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
4024 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
4025 pop_namespace ();
4026
4027 new_eh_spec
4028 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
4029 }
4030 else
4031 new_eh_spec = noexcept_false_spec;
4032
4033 /* Ensure attribs.c is initialized. */
4034 init_attributes ();
4035
4036 /* Ensure constraint.cc is initialized. */
4037 init_constraint_processing ();
4038
4039 extvisattr = build_tree_list (get_identifier ("externally_visible"),
4040 NULL_TREE);
4041 newattrs = tree_cons (get_identifier ("alloc_size"),
4042 build_tree_list (NULL_TREE, integer_one_node),
4043 extvisattr);
4044 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
4045 newtype = build_exception_variant (newtype, new_eh_spec);
4046 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
4047 deltype = build_exception_variant (deltype, empty_except_spec);
4048 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4049 DECL_IS_MALLOC (opnew) = 1;
4050 DECL_IS_OPERATOR_NEW (opnew) = 1;
4051 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4052 DECL_IS_MALLOC (opnew) = 1;
4053 DECL_IS_OPERATOR_NEW (opnew) = 1;
4054 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4055 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4056 if (flag_sized_deallocation)
4057 {
4058 /* Also push the sized deallocation variants:
4059 void operator delete(void*, std::size_t) throw();
4060 void operator delete[](void*, std::size_t) throw(); */
4061 tree void_ftype_ptr_size
4062 = build_function_type_list (void_type_node, ptr_type_node,
4063 size_type_node, NULL_TREE);
4064 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
4065 extvisattr);
4066 deltype = build_exception_variant (deltype, empty_except_spec);
4067 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4068 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4069 }
4070
4071 nullptr_type_node = make_node (NULLPTR_TYPE);
4072 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
4073 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
4074 TYPE_UNSIGNED (nullptr_type_node) = 1;
4075 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
4076 if (abi_version_at_least (9))
4077 TYPE_ALIGN (nullptr_type_node) = GET_MODE_ALIGNMENT (ptr_mode);
4078 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
4079 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4080 nullptr_node = build_int_cst (nullptr_type_node, 0);
4081 }
4082
4083 abort_fndecl
4084 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4085 ECF_NORETURN | ECF_NOTHROW);
4086
4087 /* Perform other language dependent initializations. */
4088 init_class_processing ();
4089 init_rtti_processing ();
4090 init_template_processing ();
4091
4092 if (flag_exceptions)
4093 init_exception_processing ();
4094
4095 if (! supports_one_only ())
4096 flag_weak = 0;
4097
4098 make_fname_decl = cp_make_fname_decl;
4099 start_fname_decls ();
4100
4101 /* Show we use EH for cleanups. */
4102 if (flag_exceptions)
4103 using_eh_for_cleanups ();
4104 }
4105
4106 /* Generate an initializer for a function naming variable from
4107 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4108 filled in with the type of the init. */
4109
4110 tree
4111 cp_fname_init (const char* name, tree *type_p)
4112 {
4113 tree domain = NULL_TREE;
4114 tree type;
4115 tree init = NULL_TREE;
4116 size_t length = 0;
4117
4118 if (name)
4119 {
4120 length = strlen (name);
4121 domain = build_index_type (size_int (length));
4122 init = build_string (length + 1, name);
4123 }
4124
4125 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4126 type = build_cplus_array_type (type, domain);
4127
4128 *type_p = type;
4129
4130 if (init)
4131 TREE_TYPE (init) = type;
4132 else
4133 init = error_mark_node;
4134
4135 return init;
4136 }
4137
4138 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4139 the decl, LOC is the location to give the decl, NAME is the
4140 initialization string and TYPE_DEP indicates whether NAME depended
4141 on the type of the function. We make use of that to detect
4142 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4143 at the point of first use, so we mustn't push the decl now. */
4144
4145 static tree
4146 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4147 {
4148 const char *const name = (type_dep && processing_template_decl
4149 ? NULL : fname_as_string (type_dep));
4150 tree type;
4151 tree init = cp_fname_init (name, &type);
4152 tree decl = build_decl (loc, VAR_DECL, id, type);
4153
4154 if (name)
4155 free (CONST_CAST (char *, name));
4156
4157 /* As we're using pushdecl_with_scope, we must set the context. */
4158 DECL_CONTEXT (decl) = current_function_decl;
4159
4160 TREE_STATIC (decl) = 1;
4161 TREE_READONLY (decl) = 1;
4162 DECL_ARTIFICIAL (decl) = 1;
4163
4164 TREE_USED (decl) = 1;
4165
4166 if (current_function_decl)
4167 {
4168 cp_binding_level *b = current_binding_level;
4169 if (b->kind == sk_function_parms)
4170 return error_mark_node;
4171 while (b->level_chain->kind != sk_function_parms)
4172 b = b->level_chain;
4173 pushdecl_with_scope (decl, b, /*is_friend=*/false);
4174 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
4175 LOOKUP_ONLYCONVERTING);
4176 }
4177 else
4178 {
4179 DECL_THIS_STATIC (decl) = true;
4180 pushdecl_top_level_and_finish (decl, init);
4181 }
4182
4183 return decl;
4184 }
4185
4186 static tree
4187 builtin_function_1 (tree decl, tree context, bool is_global)
4188 {
4189 tree id = DECL_NAME (decl);
4190 const char *name = IDENTIFIER_POINTER (id);
4191
4192 retrofit_lang_decl (decl);
4193
4194 DECL_ARTIFICIAL (decl) = 1;
4195 SET_OVERLOADED_OPERATOR_CODE (decl, ERROR_MARK);
4196 SET_DECL_LANGUAGE (decl, lang_c);
4197 /* Runtime library routines are, by definition, available in an
4198 external shared object. */
4199 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4200 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4201
4202 DECL_CONTEXT (decl) = context;
4203
4204 if (is_global)
4205 pushdecl_top_level (decl);
4206 else
4207 pushdecl (decl);
4208
4209 /* A function in the user's namespace should have an explicit
4210 declaration before it is used. Mark the built-in function as
4211 anticipated but not actually declared. */
4212 if (name[0] != '_' || name[1] != '_')
4213 DECL_ANTICIPATED (decl) = 1;
4214 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
4215 {
4216 size_t len = strlen (name);
4217
4218 /* Treat __*_chk fortification functions as anticipated as well,
4219 unless they are __builtin_*. */
4220 if (len > strlen ("___chk")
4221 && memcmp (name + len - strlen ("_chk"),
4222 "_chk", strlen ("_chk") + 1) == 0)
4223 DECL_ANTICIPATED (decl) = 1;
4224 }
4225
4226 return decl;
4227 }
4228
4229 tree
4230 cxx_builtin_function (tree decl)
4231 {
4232 tree id = DECL_NAME (decl);
4233 const char *name = IDENTIFIER_POINTER (id);
4234 /* All builtins that don't begin with an '_' should additionally
4235 go in the 'std' namespace. */
4236 if (name[0] != '_')
4237 {
4238 tree decl2 = copy_node(decl);
4239 push_namespace (std_identifier);
4240 builtin_function_1 (decl2, std_node, false);
4241 pop_namespace ();
4242 }
4243
4244 return builtin_function_1 (decl, NULL_TREE, false);
4245 }
4246
4247 /* Like cxx_builtin_function, but guarantee the function is added to the global
4248 scope. This is to allow function specific options to add new machine
4249 dependent builtins when the target ISA changes via attribute((target(...)))
4250 which saves space on program startup if the program does not use non-generic
4251 ISAs. */
4252
4253 tree
4254 cxx_builtin_function_ext_scope (tree decl)
4255 {
4256
4257 tree id = DECL_NAME (decl);
4258 const char *name = IDENTIFIER_POINTER (id);
4259 /* All builtins that don't begin with an '_' should additionally
4260 go in the 'std' namespace. */
4261 if (name[0] != '_')
4262 {
4263 tree decl2 = copy_node(decl);
4264 push_namespace (std_identifier);
4265 builtin_function_1 (decl2, std_node, true);
4266 pop_namespace ();
4267 }
4268
4269 return builtin_function_1 (decl, NULL_TREE, true);
4270 }
4271
4272 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4273 function. Not called directly. */
4274
4275 static tree
4276 build_library_fn (tree name, enum tree_code operator_code, tree type,
4277 int ecf_flags)
4278 {
4279 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4280 DECL_EXTERNAL (fn) = 1;
4281 TREE_PUBLIC (fn) = 1;
4282 DECL_ARTIFICIAL (fn) = 1;
4283 SET_OVERLOADED_OPERATOR_CODE (fn, operator_code);
4284 SET_DECL_LANGUAGE (fn, lang_c);
4285 /* Runtime library routines are, by definition, available in an
4286 external shared object. */
4287 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4288 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4289 set_call_expr_flags (fn, ecf_flags);
4290 return fn;
4291 }
4292
4293 /* Returns the _DECL for a library function with C++ linkage. */
4294
4295 static tree
4296 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4297 int ecf_flags)
4298 {
4299 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4300 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4301 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4302 return fn;
4303 }
4304
4305 /* Like build_library_fn, but takes a C string instead of an
4306 IDENTIFIER_NODE. */
4307
4308 tree
4309 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4310 {
4311 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4312 }
4313
4314 /* Like build_cp_library_fn, but takes a C string instead of an
4315 IDENTIFIER_NODE. */
4316
4317 tree
4318 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4319 {
4320 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4321 ecf_flags);
4322 }
4323
4324 /* Like build_library_fn, but also pushes the function so that we will
4325 be able to find it via IDENTIFIER_GLOBAL_VALUE. Also, the function
4326 may throw exceptions listed in RAISES. */
4327
4328 tree
4329 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4330 {
4331 tree fn;
4332
4333 if (raises)
4334 type = build_exception_variant (type, raises);
4335
4336 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4337 pushdecl_top_level (fn);
4338 return fn;
4339 }
4340
4341 /* Like build_cp_library_fn, but also pushes the function so that it
4342 will be found by normal lookup. */
4343
4344 static tree
4345 push_cp_library_fn (enum tree_code operator_code, tree type,
4346 int ecf_flags)
4347 {
4348 tree fn = build_cp_library_fn (ansi_opname (operator_code),
4349 operator_code,
4350 type, ecf_flags);
4351 pushdecl (fn);
4352 if (flag_tm)
4353 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4354 return fn;
4355 }
4356
4357 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4358 a FUNCTION_TYPE. */
4359
4360 tree
4361 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4362 {
4363 tree type = build_function_type (void_type_node, parmtypes);
4364 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4365 }
4366
4367 /* Like push_library_fn, but also note that this function throws
4368 and does not return. Used for __throw_foo and the like. */
4369
4370 tree
4371 push_throw_library_fn (tree name, tree type)
4372 {
4373 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN);
4374 return fn;
4375 }
4376 \f
4377 /* When we call finish_struct for an anonymous union, we create
4378 default copy constructors and such. But, an anonymous union
4379 shouldn't have such things; this function undoes the damage to the
4380 anonymous union type T.
4381
4382 (The reason that we create the synthesized methods is that we don't
4383 distinguish `union { int i; }' from `typedef union { int i; } U'.
4384 The first is an anonymous union; the second is just an ordinary
4385 union type.) */
4386
4387 void
4388 fixup_anonymous_aggr (tree t)
4389 {
4390 tree *q;
4391
4392 /* Wipe out memory of synthesized methods. */
4393 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4394 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4395 TYPE_HAS_COPY_CTOR (t) = 0;
4396 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4397 TYPE_HAS_COPY_ASSIGN (t) = 0;
4398 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4399
4400 /* Splice the implicitly generated functions out of the TYPE_METHODS
4401 list. */
4402 q = &TYPE_METHODS (t);
4403 while (*q)
4404 {
4405 if (DECL_ARTIFICIAL (*q))
4406 *q = TREE_CHAIN (*q);
4407 else
4408 q = &DECL_CHAIN (*q);
4409 }
4410
4411 /* ISO C++ 9.5.3. Anonymous unions may not have function members. */
4412 if (TYPE_METHODS (t))
4413 {
4414 tree decl = TYPE_MAIN_DECL (t);
4415
4416 if (TREE_CODE (t) != UNION_TYPE)
4417 error_at (DECL_SOURCE_LOCATION (decl),
4418 "an anonymous struct cannot have function members");
4419 else
4420 error_at (DECL_SOURCE_LOCATION (decl),
4421 "an anonymous union cannot have function members");
4422 }
4423
4424 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4425 assignment operators (because they cannot have these methods themselves).
4426 For anonymous unions this is already checked because they are not allowed
4427 in any union, otherwise we have to check it. */
4428 if (TREE_CODE (t) != UNION_TYPE)
4429 {
4430 tree field, type;
4431
4432 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4433 if (TREE_CODE (field) == FIELD_DECL)
4434 {
4435 type = TREE_TYPE (field);
4436 if (CLASS_TYPE_P (type))
4437 {
4438 if (TYPE_NEEDS_CONSTRUCTING (type))
4439 error ("member %q+#D with constructor not allowed "
4440 "in anonymous aggregate", field);
4441 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4442 error ("member %q+#D with destructor not allowed "
4443 "in anonymous aggregate", field);
4444 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4445 error ("member %q+#D with copy assignment operator "
4446 "not allowed in anonymous aggregate", field);
4447 }
4448 }
4449 }
4450 }
4451
4452 /* Warn for an attribute located at LOCATION that appertains to the
4453 class type CLASS_TYPE that has not been properly placed after its
4454 class-key, in it class-specifier. */
4455
4456 void
4457 warn_misplaced_attr_for_class_type (source_location location,
4458 tree class_type)
4459 {
4460 gcc_assert (OVERLOAD_TYPE_P (class_type));
4461
4462 if (warning_at (location, OPT_Wattributes,
4463 "attribute ignored in declaration "
4464 "of %q#T", class_type))
4465 inform (location,
4466 "attribute for %q#T must follow the %qs keyword",
4467 class_type, class_key_or_enum_as_string (class_type));
4468 }
4469
4470 /* Make sure that a declaration with no declarator is well-formed, i.e.
4471 just declares a tagged type or anonymous union.
4472
4473 Returns the type declared; or NULL_TREE if none. */
4474
4475 tree
4476 check_tag_decl (cp_decl_specifier_seq *declspecs,
4477 bool explicit_type_instantiation_p)
4478 {
4479 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4480 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4481 /* If a class, struct, or enum type is declared by the DECLSPECS
4482 (i.e, if a class-specifier, enum-specifier, or non-typename
4483 elaborated-type-specifier appears in the DECLSPECS),
4484 DECLARED_TYPE is set to the corresponding type. */
4485 tree declared_type = NULL_TREE;
4486 bool error_p = false;
4487
4488 if (declspecs->multiple_types_p)
4489 error ("multiple types in one declaration");
4490 else if (declspecs->redefined_builtin_type)
4491 {
4492 if (!in_system_header_at (input_location))
4493 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4494 "redeclaration of C++ built-in type %qT",
4495 declspecs->redefined_builtin_type);
4496 return NULL_TREE;
4497 }
4498
4499 if (declspecs->type
4500 && TYPE_P (declspecs->type)
4501 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4502 && MAYBE_CLASS_TYPE_P (declspecs->type))
4503 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4504 declared_type = declspecs->type;
4505 else if (declspecs->type == error_mark_node)
4506 error_p = true;
4507 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
4508 permerror (input_location, "declaration does not declare anything");
4509 else if (declared_type != NULL_TREE && type_uses_auto (declared_type))
4510 {
4511 error ("%<auto%> can only be specified for variables "
4512 "or function declarations");
4513 return error_mark_node;
4514 }
4515 /* Check for an anonymous union. */
4516 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4517 && TYPE_ANONYMOUS_P (declared_type))
4518 {
4519 /* 7/3 In a simple-declaration, the optional init-declarator-list
4520 can be omitted only when declaring a class (clause 9) or
4521 enumeration (7.2), that is, when the decl-specifier-seq contains
4522 either a class-specifier, an elaborated-type-specifier with
4523 a class-key (9.1), or an enum-specifier. In these cases and
4524 whenever a class-specifier or enum-specifier is present in the
4525 decl-specifier-seq, the identifiers in these specifiers are among
4526 the names being declared by the declaration (as class-name,
4527 enum-names, or enumerators, depending on the syntax). In such
4528 cases, and except for the declaration of an unnamed bit-field (9.6),
4529 the decl-specifier-seq shall introduce one or more names into the
4530 program, or shall redeclare a name introduced by a previous
4531 declaration. [Example:
4532 enum { }; // ill-formed
4533 typedef class { }; // ill-formed
4534 --end example] */
4535 if (saw_typedef)
4536 {
4537 error ("missing type-name in typedef-declaration");
4538 return NULL_TREE;
4539 }
4540 /* Anonymous unions are objects, so they can have specifiers. */;
4541 SET_ANON_AGGR_TYPE_P (declared_type);
4542
4543 if (TREE_CODE (declared_type) != UNION_TYPE
4544 && !in_system_header_at (input_location))
4545 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4546 }
4547
4548 else
4549 {
4550 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
4551 error_at (declspecs->locations[ds_inline],
4552 "%<inline%> can only be specified for functions");
4553 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4554 error_at (declspecs->locations[ds_virtual],
4555 "%<virtual%> can only be specified for functions");
4556 else if (saw_friend
4557 && (!current_class_type
4558 || current_scope () != current_class_type))
4559 error_at (declspecs->locations[ds_friend],
4560 "%<friend%> can only be specified inside a class");
4561 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4562 error_at (declspecs->locations[ds_explicit],
4563 "%<explicit%> can only be specified for constructors");
4564 else if (declspecs->storage_class)
4565 error_at (declspecs->locations[ds_storage_class],
4566 "a storage class can only be specified for objects "
4567 "and functions");
4568 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
4569 error_at (declspecs->locations[ds_const],
4570 "%<const%> can only be specified for objects and "
4571 "functions");
4572 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
4573 error_at (declspecs->locations[ds_volatile],
4574 "%<volatile%> can only be specified for objects and "
4575 "functions");
4576 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
4577 error_at (declspecs->locations[ds_restrict],
4578 "%<__restrict%> can only be specified for objects and "
4579 "functions");
4580 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
4581 error_at (declspecs->locations[ds_thread],
4582 "%<__thread%> can only be specified for objects "
4583 "and functions");
4584 else if (saw_typedef)
4585 warning_at (declspecs->locations[ds_typedef], 0,
4586 "%<typedef%> was ignored in this declaration");
4587 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4588 error_at (declspecs->locations[ds_constexpr],
4589 "%<constexpr%> cannot be used for type declarations");
4590 }
4591
4592 if (declspecs->attributes && warn_attributes && declared_type)
4593 {
4594 location_t loc;
4595 if (!CLASS_TYPE_P (declared_type)
4596 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4597 /* For a non-template class, use the name location. */
4598 loc = location_of (declared_type);
4599 else
4600 /* For a template class (an explicit instantiation), use the
4601 current location. */
4602 loc = input_location;
4603
4604 if (explicit_type_instantiation_p)
4605 /* [dcl.attr.grammar]/4:
4606
4607 No attribute-specifier-seq shall appertain to an explicit
4608 instantiation. */
4609 {
4610 if (warning_at (loc, OPT_Wattributes,
4611 "attribute ignored in explicit instantiation %q#T",
4612 declared_type))
4613 inform (loc,
4614 "no attribute can be applied to "
4615 "an explicit instantiation");
4616 }
4617 else
4618 warn_misplaced_attr_for_class_type (loc, declared_type);
4619 }
4620
4621 return declared_type;
4622 }
4623
4624 /* Called when a declaration is seen that contains no names to declare.
4625 If its type is a reference to a structure, union or enum inherited
4626 from a containing scope, shadow that tag name for the current scope
4627 with a forward reference.
4628 If its type defines a new named structure or union
4629 or defines an enum, it is valid but we need not do anything here.
4630 Otherwise, it is an error.
4631
4632 C++: may have to grok the declspecs to learn about static,
4633 complain for anonymous unions.
4634
4635 Returns the TYPE declared -- or NULL_TREE if none. */
4636
4637 tree
4638 shadow_tag (cp_decl_specifier_seq *declspecs)
4639 {
4640 tree t = check_tag_decl (declspecs,
4641 /*explicit_type_instantiation_p=*/false);
4642
4643 if (!t)
4644 return NULL_TREE;
4645
4646 if (maybe_process_partial_specialization (t) == error_mark_node)
4647 return NULL_TREE;
4648
4649 /* This is where the variables in an anonymous union are
4650 declared. An anonymous union declaration looks like:
4651 union { ... } ;
4652 because there is no declarator after the union, the parser
4653 sends that declaration here. */
4654 if (ANON_AGGR_TYPE_P (t))
4655 {
4656 fixup_anonymous_aggr (t);
4657
4658 if (TYPE_FIELDS (t))
4659 {
4660 tree decl = grokdeclarator (/*declarator=*/NULL,
4661 declspecs, NORMAL, 0, NULL);
4662 finish_anon_union (decl);
4663 }
4664 }
4665
4666 return t;
4667 }
4668 \f
4669 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4670
4671 tree
4672 groktypename (cp_decl_specifier_seq *type_specifiers,
4673 const cp_declarator *declarator,
4674 bool is_template_arg)
4675 {
4676 tree attrs;
4677 tree type;
4678 enum decl_context context
4679 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
4680 attrs = type_specifiers->attributes;
4681 type_specifiers->attributes = NULL_TREE;
4682 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
4683 if (attrs && type != error_mark_node)
4684 {
4685 if (CLASS_TYPE_P (type))
4686 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
4687 "outside of definition", type);
4688 else if (MAYBE_CLASS_TYPE_P (type))
4689 /* A template type parameter or other dependent type. */
4690 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
4691 "type %qT without an associated declaration", type);
4692 else
4693 cplus_decl_attributes (&type, attrs, 0);
4694 }
4695 return type;
4696 }
4697
4698 /* Process a DECLARATOR for a function-scope variable declaration,
4699 namespace-scope variable declaration, or function declaration.
4700 (Function definitions go through start_function; class member
4701 declarations appearing in the body of the class go through
4702 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4703 If an error occurs, the error_mark_node is returned instead.
4704
4705 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
4706 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
4707 for an explicitly defaulted function, or SD_DELETED for an explicitly
4708 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
4709 implicitly initialized via a default constructor. ATTRIBUTES and
4710 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
4711
4712 The scope represented by the context of the returned DECL is pushed
4713 (if it is not the global namespace) and is assigned to
4714 *PUSHED_SCOPE_P. The caller is then responsible for calling
4715 pop_scope on *PUSHED_SCOPE_P if it is set. */
4716
4717 tree
4718 start_decl (const cp_declarator *declarator,
4719 cp_decl_specifier_seq *declspecs,
4720 int initialized,
4721 tree attributes,
4722 tree prefix_attributes,
4723 tree *pushed_scope_p)
4724 {
4725 tree decl;
4726 tree context;
4727 bool was_public;
4728 int flags;
4729 bool alias;
4730
4731 *pushed_scope_p = NULL_TREE;
4732
4733 /* An object declared as __attribute__((deprecated)) suppresses
4734 warnings of uses of other deprecated items. */
4735 if (lookup_attribute ("deprecated", attributes))
4736 deprecated_state = DEPRECATED_SUPPRESS;
4737
4738 attributes = chainon (attributes, prefix_attributes);
4739
4740 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
4741 &attributes);
4742
4743 deprecated_state = DEPRECATED_NORMAL;
4744
4745 if (decl == NULL_TREE || VOID_TYPE_P (decl)
4746 || decl == error_mark_node)
4747 return error_mark_node;
4748
4749 context = CP_DECL_CONTEXT (decl);
4750 if (context != global_namespace)
4751 *pushed_scope_p = push_scope (context);
4752
4753 /* Is it valid for this decl to have an initializer at all?
4754 If not, set INITIALIZED to zero, which will indirectly
4755 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4756 if (initialized
4757 && TREE_CODE (decl) == TYPE_DECL)
4758 {
4759 error ("typedef %qD is initialized (use decltype instead)", decl);
4760 return error_mark_node;
4761 }
4762
4763 if (initialized)
4764 {
4765 if (! toplevel_bindings_p ()
4766 && DECL_EXTERNAL (decl))
4767 warning (0, "declaration of %q#D has %<extern%> and is initialized",
4768 decl);
4769 DECL_EXTERNAL (decl) = 0;
4770 if (toplevel_bindings_p ())
4771 TREE_STATIC (decl) = 1;
4772 }
4773 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
4774
4775 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
4776 record_key_method_defined (decl);
4777
4778 /* If this is a typedef that names the class for linkage purposes
4779 (7.1.3p8), apply any attributes directly to the type. */
4780 if (TREE_CODE (decl) == TYPE_DECL
4781 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
4782 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
4783 flags = ATTR_FLAG_TYPE_IN_PLACE;
4784 else
4785 flags = 0;
4786
4787 /* Set attributes here so if duplicate decl, will have proper attributes. */
4788 cplus_decl_attributes (&decl, attributes, flags);
4789
4790 /* Dllimported symbols cannot be defined. Static data members (which
4791 can be initialized in-class and dllimported) go through grokfield,
4792 not here, so we don't need to exclude those decls when checking for
4793 a definition. */
4794 if (initialized && DECL_DLLIMPORT_P (decl))
4795 {
4796 error ("definition of %q#D is marked %<dllimport%>", decl);
4797 DECL_DLLIMPORT_P (decl) = 0;
4798 }
4799
4800 /* If #pragma weak was used, mark the decl weak now. */
4801 if (!processing_template_decl)
4802 maybe_apply_pragma_weak (decl);
4803
4804 if (TREE_CODE (decl) == FUNCTION_DECL
4805 && DECL_DECLARED_INLINE_P (decl)
4806 && DECL_UNINLINABLE (decl)
4807 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4808 warning_at (DECL_SOURCE_LOCATION (decl), 0,
4809 "inline function %qD given attribute noinline", decl);
4810
4811 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
4812 {
4813 bool this_tmpl = (processing_template_decl
4814 > template_class_depth (context));
4815 if (VAR_P (decl))
4816 {
4817 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
4818 if (field == NULL_TREE
4819 || !(VAR_P (field) || variable_template_p (field)))
4820 error ("%q+#D is not a static data member of %q#T", decl, context);
4821 else if (variable_template_p (field) && !this_tmpl)
4822 {
4823 if (DECL_LANG_SPECIFIC (decl)
4824 && DECL_TEMPLATE_SPECIALIZATION (decl))
4825 /* OK, specialization was already checked. */;
4826 else
4827 {
4828 error_at (DECL_SOURCE_LOCATION (decl),
4829 "non-member-template declaration of %qD", decl);
4830 inform (DECL_SOURCE_LOCATION (field), "does not match "
4831 "member template declaration here");
4832 return error_mark_node;
4833 }
4834 }
4835 else
4836 {
4837 if (variable_template_p (field))
4838 field = DECL_TEMPLATE_RESULT (field);
4839
4840 if (DECL_CONTEXT (field) != context)
4841 {
4842 if (!same_type_p (DECL_CONTEXT (field), context))
4843 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
4844 "to be defined as %<%T::%D%>",
4845 DECL_CONTEXT (field), DECL_NAME (decl),
4846 context, DECL_NAME (decl));
4847 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
4848 }
4849 /* Static data member are tricky; an in-class initialization
4850 still doesn't provide a definition, so the in-class
4851 declaration will have DECL_EXTERNAL set, but will have an
4852 initialization. Thus, duplicate_decls won't warn
4853 about this situation, and so we check here. */
4854 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
4855 error ("duplicate initialization of %qD", decl);
4856 if (duplicate_decls (decl, field, /*newdecl_is_friend=*/false))
4857 decl = field;
4858 if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr)
4859 && !DECL_DECLARED_CONSTEXPR_P (field))
4860 error ("%qD declared %<constexpr%> outside its class", field);
4861 }
4862 }
4863 else
4864 {
4865 tree field = check_classfn (context, decl,
4866 this_tmpl
4867 ? current_template_parms
4868 : NULL_TREE);
4869 if (field && field != error_mark_node
4870 && duplicate_decls (decl, field,
4871 /*newdecl_is_friend=*/false))
4872 decl = field;
4873 }
4874
4875 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
4876 DECL_IN_AGGR_P (decl) = 0;
4877 /* Do not mark DECL as an explicit specialization if it was not
4878 already marked as an instantiation; a declaration should
4879 never be marked as a specialization unless we know what
4880 template is being specialized. */
4881 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
4882 {
4883 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
4884 if (TREE_CODE (decl) == FUNCTION_DECL)
4885 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
4886 && DECL_DECLARED_INLINE_P (decl));
4887 else
4888 DECL_COMDAT (decl) = false;
4889
4890 /* [temp.expl.spec] An explicit specialization of a static data
4891 member of a template is a definition if the declaration
4892 includes an initializer; otherwise, it is a declaration.
4893
4894 We check for processing_specialization so this only applies
4895 to the new specialization syntax. */
4896 if (!initialized && processing_specialization)
4897 DECL_EXTERNAL (decl) = 1;
4898 }
4899
4900 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
4901 /* Aliases are definitions. */
4902 && !alias)
4903 permerror (input_location, "declaration of %q#D outside of class is not definition",
4904 decl);
4905 }
4906
4907 was_public = TREE_PUBLIC (decl);
4908
4909 /* Enter this declaration into the symbol table. Don't push the plain
4910 VAR_DECL for a variable template. */
4911 if (!template_parm_scope_p ()
4912 || !VAR_P (decl))
4913 decl = maybe_push_decl (decl);
4914
4915 if (processing_template_decl)
4916 decl = push_template_decl (decl);
4917 if (decl == error_mark_node)
4918 return error_mark_node;
4919
4920 if (VAR_P (decl)
4921 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
4922 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
4923 {
4924 /* This is a const variable with implicit 'static'. Set
4925 DECL_THIS_STATIC so we can tell it from variables that are
4926 !TREE_PUBLIC because of the anonymous namespace. */
4927 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
4928 DECL_THIS_STATIC (decl) = 1;
4929 }
4930
4931 if (current_function_decl && VAR_P (decl)
4932 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
4933 {
4934 bool ok = false;
4935 if (CP_DECL_THREAD_LOCAL_P (decl))
4936 error ("%qD declared %<thread_local%> in %<constexpr%> function",
4937 decl);
4938 else if (TREE_STATIC (decl))
4939 error ("%qD declared %<static%> in %<constexpr%> function", decl);
4940 else
4941 ok = true;
4942 if (!ok)
4943 cp_function_chain->invalid_constexpr = true;
4944 }
4945
4946 if (!processing_template_decl && VAR_P (decl))
4947 start_decl_1 (decl, initialized);
4948
4949 return decl;
4950 }
4951
4952 /* Process the declaration of a variable DECL. INITIALIZED is true
4953 iff DECL is explicitly initialized. (INITIALIZED is false if the
4954 variable is initialized via an implicitly-called constructor.)
4955 This function must be called for ordinary variables (including, for
4956 example, implicit instantiations of templates), but must not be
4957 called for template declarations. */
4958
4959 void
4960 start_decl_1 (tree decl, bool initialized)
4961 {
4962 tree type;
4963 bool complete_p;
4964 bool aggregate_definition_p;
4965
4966 gcc_assert (!processing_template_decl);
4967
4968 if (error_operand_p (decl))
4969 return;
4970
4971 gcc_assert (VAR_P (decl));
4972
4973 type = TREE_TYPE (decl);
4974 complete_p = COMPLETE_TYPE_P (type);
4975 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
4976
4977 /* If an explicit initializer is present, or if this is a definition
4978 of an aggregate, then we need a complete type at this point.
4979 (Scalars are always complete types, so there is nothing to
4980 check.) This code just sets COMPLETE_P; errors (if necessary)
4981 are issued below. */
4982 if ((initialized || aggregate_definition_p)
4983 && !complete_p
4984 && COMPLETE_TYPE_P (complete_type (type)))
4985 {
4986 complete_p = true;
4987 /* We will not yet have set TREE_READONLY on DECL if the type
4988 was "const", but incomplete, before this point. But, now, we
4989 have a complete type, so we can try again. */
4990 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
4991 }
4992
4993 if (initialized)
4994 /* Is it valid for this decl to have an initializer at all? */
4995 {
4996 /* Don't allow initializations for incomplete types except for
4997 arrays which might be completed by the initialization. */
4998 if (complete_p)
4999 ; /* A complete type is ok. */
5000 else if (type_uses_auto (type))
5001 ; /* An auto type is ok. */
5002 else if (TREE_CODE (type) != ARRAY_TYPE)
5003 {
5004 error ("variable %q#D has initializer but incomplete type", decl);
5005 type = TREE_TYPE (decl) = error_mark_node;
5006 }
5007 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
5008 {
5009 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5010 error ("elements of array %q#D have incomplete type", decl);
5011 /* else we already gave an error in start_decl. */
5012 }
5013 }
5014 else if (aggregate_definition_p && !complete_p)
5015 {
5016 if (type_uses_auto (type))
5017 error ("declaration of %q#D has no initializer", decl);
5018 else
5019 error ("aggregate %q#D has incomplete type and cannot be defined",
5020 decl);
5021 /* Change the type so that assemble_variable will give
5022 DECL an rtl we can live with: (mem (const_int 0)). */
5023 type = TREE_TYPE (decl) = error_mark_node;
5024 }
5025
5026 /* Create a new scope to hold this declaration if necessary.
5027 Whether or not a new scope is necessary cannot be determined
5028 until after the type has been completed; if the type is a
5029 specialization of a class template it is not until after
5030 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5031 will be set correctly. */
5032 maybe_push_cleanup_level (type);
5033 }
5034
5035 /* Handle initialization of references. DECL, TYPE, and INIT have the
5036 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
5037 but will be set to a new CLEANUP_STMT if a temporary is created
5038 that must be destroyed subsequently.
5039
5040 Returns an initializer expression to use to initialize DECL, or
5041 NULL if the initialization can be performed statically.
5042
5043 Quotes on semantics can be found in ARM 8.4.3. */
5044
5045 static tree
5046 grok_reference_init (tree decl, tree type, tree init, int flags)
5047 {
5048 if (init == NULL_TREE)
5049 {
5050 if ((DECL_LANG_SPECIFIC (decl) == 0
5051 || DECL_IN_AGGR_P (decl) == 0)
5052 && ! DECL_THIS_EXTERN (decl))
5053 error ("%qD declared as reference but not initialized", decl);
5054 return NULL_TREE;
5055 }
5056
5057 if (TREE_CODE (init) == TREE_LIST)
5058 init = build_x_compound_expr_from_list (init, ELK_INIT,
5059 tf_warning_or_error);
5060
5061 tree ttype = TREE_TYPE (type);
5062 if (TREE_CODE (ttype) != ARRAY_TYPE
5063 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
5064 /* Note: default conversion is only called in very special cases. */
5065 init = decay_conversion (init, tf_warning_or_error);
5066
5067 /* check_initializer handles this for non-reference variables, but for
5068 references we need to do it here or the initializer will get the
5069 incomplete array type and confuse later calls to
5070 cp_complete_array_type. */
5071 if (TREE_CODE (ttype) == ARRAY_TYPE
5072 && TYPE_DOMAIN (ttype) == NULL_TREE
5073 && (BRACE_ENCLOSED_INITIALIZER_P (init)
5074 || TREE_CODE (init) == STRING_CST))
5075 {
5076 cp_complete_array_type (&ttype, init, false);
5077 if (ttype != TREE_TYPE (type))
5078 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
5079 }
5080
5081 /* Convert INIT to the reference type TYPE. This may involve the
5082 creation of a temporary, whose lifetime must be the same as that
5083 of the reference. If so, a DECL_EXPR for the temporary will be
5084 added just after the DECL_EXPR for DECL. That's why we don't set
5085 DECL_INITIAL for local references (instead assigning to them
5086 explicitly); we need to allow the temporary to be initialized
5087 first. */
5088 return initialize_reference (type, init, flags,
5089 tf_warning_or_error);
5090 }
5091
5092 /* Designated initializers in arrays are not supported in GNU C++.
5093 The parser cannot detect this error since it does not know whether
5094 a given brace-enclosed initializer is for a class type or for an
5095 array. This function checks that CE does not use a designated
5096 initializer. If it does, an error is issued. Returns true if CE
5097 is valid, i.e., does not have a designated initializer. */
5098
5099 static bool
5100 check_array_designated_initializer (constructor_elt *ce,
5101 unsigned HOST_WIDE_INT index)
5102 {
5103 /* Designated initializers for array elements are not supported. */
5104 if (ce->index)
5105 {
5106 /* The parser only allows identifiers as designated
5107 initializers. */
5108 if (ce->index == error_mark_node)
5109 {
5110 error ("name used in a GNU-style designated "
5111 "initializer for an array");
5112 return false;
5113 }
5114 else if (identifier_p (ce->index))
5115 {
5116 error ("name %qD used in a GNU-style designated "
5117 "initializer for an array", ce->index);
5118 return false;
5119 }
5120
5121 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5122 ce->index, true);
5123 if (ce_index
5124 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
5125 && (TREE_CODE (ce_index = maybe_constant_value (ce_index))
5126 == INTEGER_CST))
5127 {
5128 /* A C99 designator is OK if it matches the current index. */
5129 if (wi::eq_p (ce_index, index))
5130 return true;
5131 else
5132 sorry ("non-trivial designated initializers not supported");
5133 }
5134 else
5135 error ("C99 designator %qE is not an integral constant-expression",
5136 ce->index);
5137
5138 return false;
5139 }
5140
5141 return true;
5142 }
5143
5144 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5145 array until we finish parsing the initializer. If that's the
5146 situation we're in, update DECL accordingly. */
5147
5148 static void
5149 maybe_deduce_size_from_array_init (tree decl, tree init)
5150 {
5151 tree type = TREE_TYPE (decl);
5152
5153 if (TREE_CODE (type) == ARRAY_TYPE
5154 && TYPE_DOMAIN (type) == NULL_TREE
5155 && TREE_CODE (decl) != TYPE_DECL)
5156 {
5157 /* do_default is really a C-ism to deal with tentative definitions.
5158 But let's leave it here to ease the eventual merge. */
5159 int do_default = !DECL_EXTERNAL (decl);
5160 tree initializer = init ? init : DECL_INITIAL (decl);
5161 int failure = 0;
5162
5163 /* Check that there are no designated initializers in INIT, as
5164 those are not supported in GNU C++, and as the middle-end
5165 will crash if presented with a non-numeric designated
5166 initializer. */
5167 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
5168 {
5169 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
5170 constructor_elt *ce;
5171 HOST_WIDE_INT i;
5172 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
5173 if (!check_array_designated_initializer (ce, i))
5174 failure = 1;
5175 }
5176
5177 if (!failure)
5178 {
5179 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
5180 do_default);
5181 if (failure == 1)
5182 {
5183 error ("initializer fails to determine size of %qD", decl);
5184 }
5185 else if (failure == 2)
5186 {
5187 if (do_default)
5188 {
5189 error ("array size missing in %qD", decl);
5190 }
5191 /* If a `static' var's size isn't known, make it extern as
5192 well as static, so it does not get allocated. If it's not
5193 `static', then don't mark it extern; finish_incomplete_decl
5194 will give it a default size and it will get allocated. */
5195 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
5196 DECL_EXTERNAL (decl) = 1;
5197 }
5198 else if (failure == 3)
5199 {
5200 error ("zero-size array %qD", decl);
5201 }
5202 }
5203
5204 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
5205
5206 relayout_decl (decl);
5207 }
5208 }
5209
5210 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5211 any appropriate error messages regarding the layout. */
5212
5213 static void
5214 layout_var_decl (tree decl)
5215 {
5216 tree type;
5217
5218 type = TREE_TYPE (decl);
5219 if (type == error_mark_node)
5220 return;
5221
5222 /* If we haven't already laid out this declaration, do so now.
5223 Note that we must not call complete type for an external object
5224 because it's type might involve templates that we are not
5225 supposed to instantiate yet. (And it's perfectly valid to say
5226 `extern X x' for some incomplete type `X'.) */
5227 if (!DECL_EXTERNAL (decl))
5228 complete_type (type);
5229 if (!DECL_SIZE (decl)
5230 && TREE_TYPE (decl) != error_mark_node
5231 && (COMPLETE_TYPE_P (type)
5232 || (TREE_CODE (type) == ARRAY_TYPE
5233 && !TYPE_DOMAIN (type)
5234 && COMPLETE_TYPE_P (TREE_TYPE (type)))))
5235 layout_decl (decl, 0);
5236
5237 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
5238 {
5239 /* An automatic variable with an incomplete type: that is an error.
5240 Don't talk about array types here, since we took care of that
5241 message in grokdeclarator. */
5242 error ("storage size of %qD isn%'t known", decl);
5243 TREE_TYPE (decl) = error_mark_node;
5244 }
5245 #if 0
5246 /* Keep this code around in case we later want to control debug info
5247 based on whether a type is "used". (jason 1999-11-11) */
5248
5249 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
5250 /* Let debugger know it should output info for this type. */
5251 note_debug_info_needed (ttype);
5252
5253 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
5254 note_debug_info_needed (DECL_CONTEXT (decl));
5255 #endif
5256
5257 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
5258 && DECL_SIZE (decl) != NULL_TREE
5259 && ! TREE_CONSTANT (DECL_SIZE (decl)))
5260 {
5261 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
5262 constant_expression_warning (DECL_SIZE (decl));
5263 else
5264 {
5265 error ("storage size of %qD isn%'t constant", decl);
5266 TREE_TYPE (decl) = error_mark_node;
5267 }
5268 }
5269 }
5270
5271 /* If a local static variable is declared in an inline function, or if
5272 we have a weak definition, we must endeavor to create only one
5273 instance of the variable at link-time. */
5274
5275 void
5276 maybe_commonize_var (tree decl)
5277 {
5278 /* Static data in a function with comdat linkage also has comdat
5279 linkage. */
5280 if (TREE_STATIC (decl)
5281 /* Don't mess with __FUNCTION__. */
5282 && ! DECL_ARTIFICIAL (decl)
5283 && DECL_FUNCTION_SCOPE_P (decl)
5284 && vague_linkage_p (DECL_CONTEXT (decl)))
5285 {
5286 if (flag_weak)
5287 {
5288 /* With weak symbols, we simply make the variable COMDAT;
5289 that will cause copies in multiple translations units to
5290 be merged. */
5291 comdat_linkage (decl);
5292 }
5293 else
5294 {
5295 if (DECL_INITIAL (decl) == NULL_TREE
5296 || DECL_INITIAL (decl) == error_mark_node)
5297 {
5298 /* Without weak symbols, we can use COMMON to merge
5299 uninitialized variables. */
5300 TREE_PUBLIC (decl) = 1;
5301 DECL_COMMON (decl) = 1;
5302 }
5303 else
5304 {
5305 /* While for initialized variables, we must use internal
5306 linkage -- which means that multiple copies will not
5307 be merged. */
5308 TREE_PUBLIC (decl) = 0;
5309 DECL_COMMON (decl) = 0;
5310 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
5311 "sorry: semantics of inline function static "
5312 "data %q#D are wrong (you%'ll wind up "
5313 "with multiple copies)", decl))
5314 inform (DECL_SOURCE_LOCATION (decl),
5315 "you can work around this by removing the initializer");
5316 }
5317 }
5318 }
5319 }
5320
5321 /* Issue an error message if DECL is an uninitialized const variable. */
5322
5323 static void
5324 check_for_uninitialized_const_var (tree decl)
5325 {
5326 tree type = strip_array_types (TREE_TYPE (decl));
5327
5328 /* ``Unless explicitly declared extern, a const object does not have
5329 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5330 7.1.6 */
5331 if (VAR_P (decl)
5332 && TREE_CODE (type) != REFERENCE_TYPE
5333 && (CP_TYPE_CONST_P (type) || var_in_constexpr_fn (decl))
5334 && !DECL_INITIAL (decl))
5335 {
5336 tree field = default_init_uninitialized_part (type);
5337 if (!field)
5338 return;
5339
5340 if (CP_TYPE_CONST_P (type))
5341 permerror (DECL_SOURCE_LOCATION (decl),
5342 "uninitialized const %qD", decl);
5343 else
5344 {
5345 error_at (DECL_SOURCE_LOCATION (decl),
5346 "uninitialized variable %qD in %<constexpr%> function",
5347 decl);
5348 cp_function_chain->invalid_constexpr = true;
5349 }
5350
5351 if (CLASS_TYPE_P (type))
5352 {
5353 tree defaulted_ctor;
5354
5355 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5356 "%q#T has no user-provided default constructor", type);
5357 defaulted_ctor = in_class_defaulted_default_constructor (type);
5358 if (defaulted_ctor)
5359 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5360 "constructor is not user-provided because it is "
5361 "explicitly defaulted in the class body");
5362 inform (DECL_SOURCE_LOCATION (field),
5363 "and the implicitly-defined constructor does not "
5364 "initialize %q#D", field);
5365 }
5366 }
5367 }
5368 \f
5369 /* Structure holding the current initializer being processed by reshape_init.
5370 CUR is a pointer to the current element being processed, END is a pointer
5371 after the last element present in the initializer. */
5372 struct reshape_iter
5373 {
5374 constructor_elt *cur;
5375 constructor_elt *end;
5376 };
5377
5378 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5379
5380 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5381 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5382 initialized. If there are no more such fields, the return value
5383 will be NULL. */
5384
5385 tree
5386 next_initializable_field (tree field)
5387 {
5388 while (field
5389 && (TREE_CODE (field) != FIELD_DECL
5390 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
5391 || DECL_ARTIFICIAL (field)))
5392 field = DECL_CHAIN (field);
5393
5394 return field;
5395 }
5396
5397 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5398 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5399 INTEGER_CST representing the size of the array minus one (the maximum index),
5400 or NULL_TREE if the array was declared without specifying the size. D is
5401 the iterator within the constructor. */
5402
5403 static tree
5404 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5405 tsubst_flags_t complain)
5406 {
5407 tree new_init;
5408 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5409 unsigned HOST_WIDE_INT max_index_cst = 0;
5410 unsigned HOST_WIDE_INT index;
5411
5412 /* The initializer for an array is always a CONSTRUCTOR. */
5413 new_init = build_constructor (init_list_type_node, NULL);
5414
5415 if (sized_array_p)
5416 {
5417 /* Minus 1 is used for zero sized arrays. */
5418 if (integer_all_onesp (max_index))
5419 return new_init;
5420
5421 if (tree_fits_uhwi_p (max_index))
5422 max_index_cst = tree_to_uhwi (max_index);
5423 /* sizetype is sign extended, not zero extended. */
5424 else
5425 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5426 }
5427
5428 /* Loop until there are no more initializers. */
5429 for (index = 0;
5430 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5431 ++index)
5432 {
5433 tree elt_init;
5434 constructor_elt *old_cur = d->cur;
5435
5436 check_array_designated_initializer (d->cur, index);
5437 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5438 complain);
5439 if (elt_init == error_mark_node)
5440 return error_mark_node;
5441 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5442 size_int (index), elt_init);
5443 if (!TREE_CONSTANT (elt_init))
5444 TREE_CONSTANT (new_init) = false;
5445
5446 /* This can happen with an invalid initializer (c++/54501). */
5447 if (d->cur == old_cur && !sized_array_p)
5448 break;
5449 }
5450
5451 return new_init;
5452 }
5453
5454 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5455 Parameters are the same of reshape_init_r. */
5456
5457 static tree
5458 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5459 {
5460 tree max_index = NULL_TREE;
5461
5462 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5463
5464 if (TYPE_DOMAIN (type))
5465 max_index = array_type_nelts (type);
5466
5467 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5468 }
5469
5470 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5471 Parameters are the same of reshape_init_r. */
5472
5473 static tree
5474 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5475 {
5476 tree max_index = NULL_TREE;
5477
5478 gcc_assert (VECTOR_TYPE_P (type));
5479
5480 if (COMPOUND_LITERAL_P (d->cur->value))
5481 {
5482 tree value = d->cur->value;
5483 if (!same_type_p (TREE_TYPE (value), type))
5484 {
5485 if (complain & tf_error)
5486 error ("invalid type %qT as initializer for a vector of type %qT",
5487 TREE_TYPE (d->cur->value), type);
5488 value = error_mark_node;
5489 }
5490 ++d->cur;
5491 return value;
5492 }
5493
5494 /* For a vector, we initialize it as an array of the appropriate size. */
5495 if (VECTOR_TYPE_P (type))
5496 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5497
5498 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5499 }
5500
5501 /* Subroutine of reshape_init_r, processes the initializers for classes
5502 or union. Parameters are the same of reshape_init_r. */
5503
5504 static tree
5505 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
5506 tsubst_flags_t complain)
5507 {
5508 tree field;
5509 tree new_init;
5510
5511 gcc_assert (CLASS_TYPE_P (type));
5512
5513 /* The initializer for a class is always a CONSTRUCTOR. */
5514 new_init = build_constructor (init_list_type_node, NULL);
5515 field = next_initializable_field (TYPE_FIELDS (type));
5516
5517 if (!field)
5518 {
5519 /* [dcl.init.aggr]
5520
5521 An initializer for an aggregate member that is an
5522 empty class shall have the form of an empty
5523 initializer-list {}. */
5524 if (!first_initializer_p)
5525 {
5526 if (complain & tf_error)
5527 error ("initializer for %qT must be brace-enclosed", type);
5528 return error_mark_node;
5529 }
5530 return new_init;
5531 }
5532
5533 /* Loop through the initializable fields, gathering initializers. */
5534 while (d->cur != d->end)
5535 {
5536 tree field_init;
5537 constructor_elt *old_cur = d->cur;
5538
5539 /* Handle designated initializers, as an extension. */
5540 if (d->cur->index)
5541 {
5542 if (d->cur->index == error_mark_node)
5543 return error_mark_node;
5544
5545 if (TREE_CODE (d->cur->index) == FIELD_DECL)
5546 /* We already reshaped this. */
5547 gcc_assert (d->cur->index == field);
5548 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
5549 field = lookup_field_1 (type, d->cur->index, /*want_type=*/false);
5550 else
5551 {
5552 if (complain & tf_error)
5553 error ("%<[%E] =%> used in a GNU-style designated initializer"
5554 " for class %qT", d->cur->index, type);
5555 return error_mark_node;
5556 }
5557
5558 if (!field || TREE_CODE (field) != FIELD_DECL)
5559 {
5560 if (complain & tf_error)
5561 error ("%qT has no non-static data member named %qD", type,
5562 d->cur->index);
5563 return error_mark_node;
5564 }
5565 }
5566
5567 /* If we processed all the member of the class, we are done. */
5568 if (!field)
5569 break;
5570
5571 field_init = reshape_init_r (TREE_TYPE (field), d,
5572 /*first_initializer_p=*/false, complain);
5573 if (field_init == error_mark_node)
5574 return error_mark_node;
5575
5576 if (d->cur == old_cur && d->cur->index)
5577 {
5578 /* This can happen with an invalid initializer for a flexible
5579 array member (c++/54441). */
5580 if (complain & tf_error)
5581 error ("invalid initializer for %q#D", field);
5582 return error_mark_node;
5583 }
5584
5585 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
5586
5587 /* [dcl.init.aggr]
5588
5589 When a union is initialized with a brace-enclosed
5590 initializer, the braces shall only contain an
5591 initializer for the first member of the union. */
5592 if (TREE_CODE (type) == UNION_TYPE)
5593 break;
5594
5595 field = next_initializable_field (DECL_CHAIN (field));
5596 }
5597
5598 return new_init;
5599 }
5600
5601 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5602 designators are not valid; either complain or return true to indicate
5603 that reshape_init_r should return error_mark_node. */
5604
5605 static bool
5606 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
5607 {
5608 if (d->cur->index)
5609 {
5610 if (complain & tf_error)
5611 error ("C99 designator %qE outside aggregate initializer",
5612 d->cur->index);
5613 else
5614 return true;
5615 }
5616 return false;
5617 }
5618
5619 /* Subroutine of reshape_init, which processes a single initializer (part of
5620 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5621 iterator within the CONSTRUCTOR which points to the initializer to process.
5622 FIRST_INITIALIZER_P is true if this is the first initializer of the
5623 outermost CONSTRUCTOR node. */
5624
5625 static tree
5626 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
5627 tsubst_flags_t complain)
5628 {
5629 tree init = d->cur->value;
5630
5631 if (error_operand_p (init))
5632 return error_mark_node;
5633
5634 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
5635 && has_designator_problem (d, complain))
5636 return error_mark_node;
5637
5638 if (TREE_CODE (type) == COMPLEX_TYPE)
5639 {
5640 /* A complex type can be initialized from one or two initializers,
5641 but braces are not elided. */
5642 d->cur++;
5643 if (BRACE_ENCLOSED_INITIALIZER_P (init))
5644 {
5645 if (CONSTRUCTOR_NELTS (init) > 2)
5646 {
5647 if (complain & tf_error)
5648 error ("too many initializers for %qT", type);
5649 else
5650 return error_mark_node;
5651 }
5652 }
5653 else if (first_initializer_p && d->cur != d->end)
5654 {
5655 vec<constructor_elt, va_gc> *v = 0;
5656 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
5657 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
5658 if (has_designator_problem (d, complain))
5659 return error_mark_node;
5660 d->cur++;
5661 init = build_constructor (init_list_type_node, v);
5662 }
5663 return init;
5664 }
5665
5666 /* A non-aggregate type is always initialized with a single
5667 initializer. */
5668 if (!CP_AGGREGATE_TYPE_P (type))
5669 {
5670 /* It is invalid to initialize a non-aggregate type with a
5671 brace-enclosed initializer before C++0x.
5672 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
5673 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
5674 a CONSTRUCTOR (with a record type). */
5675 if (TREE_CODE (init) == CONSTRUCTOR
5676 /* Don't complain about a capture-init. */
5677 && !CONSTRUCTOR_IS_DIRECT_INIT (init)
5678 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
5679 {
5680 if (SCALAR_TYPE_P (type))
5681 {
5682 if (cxx_dialect < cxx11
5683 /* Isn't value-initialization. */
5684 || CONSTRUCTOR_NELTS (init) > 0)
5685 {
5686 if (complain & tf_error)
5687 error ("braces around scalar initializer for type %qT",
5688 type);
5689 init = error_mark_node;
5690 }
5691 }
5692 else
5693 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5694 }
5695
5696 d->cur++;
5697 return init;
5698 }
5699
5700 /* "If T is a class type and the initializer list has a single element of
5701 type cv U, where U is T or a class derived from T, the object is
5702 initialized from that element." Even if T is an aggregate. */
5703 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
5704 && first_initializer_p
5705 && d->end - d->cur == 1
5706 && reference_related_p (type, TREE_TYPE (init)))
5707 {
5708 d->cur++;
5709 return init;
5710 }
5711
5712 /* [dcl.init.aggr]
5713
5714 All implicit type conversions (clause _conv_) are considered when
5715 initializing the aggregate member with an initializer from an
5716 initializer-list. If the initializer can initialize a member,
5717 the member is initialized. Otherwise, if the member is itself a
5718 non-empty subaggregate, brace elision is assumed and the
5719 initializer is considered for the initialization of the first
5720 member of the subaggregate. */
5721 if (TREE_CODE (init) != CONSTRUCTOR
5722 /* But don't try this for the first initializer, since that would be
5723 looking through the outermost braces; A a2 = { a1 }; is not a
5724 valid aggregate initialization. */
5725 && !first_initializer_p
5726 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
5727 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
5728 complain)))
5729 {
5730 d->cur++;
5731 return init;
5732 }
5733
5734 /* [dcl.init.string]
5735
5736 A char array (whether plain char, signed char, or unsigned char)
5737 can be initialized by a string-literal (optionally enclosed in
5738 braces); a wchar_t array can be initialized by a wide
5739 string-literal (optionally enclosed in braces). */
5740 if (TREE_CODE (type) == ARRAY_TYPE
5741 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
5742 {
5743 tree str_init = init;
5744
5745 /* Strip one level of braces if and only if they enclose a single
5746 element (as allowed by [dcl.init.string]). */
5747 if (!first_initializer_p
5748 && TREE_CODE (str_init) == CONSTRUCTOR
5749 && vec_safe_length (CONSTRUCTOR_ELTS (str_init)) == 1)
5750 {
5751 str_init = (*CONSTRUCTOR_ELTS (str_init))[0].value;
5752 }
5753
5754 /* If it's a string literal, then it's the initializer for the array
5755 as a whole. Otherwise, continue with normal initialization for
5756 array types (one value per array element). */
5757 if (TREE_CODE (str_init) == STRING_CST)
5758 {
5759 if (has_designator_problem (d, complain))
5760 return error_mark_node;
5761 d->cur++;
5762 return str_init;
5763 }
5764 }
5765
5766 /* The following cases are about aggregates. If we are not within a full
5767 initializer already, and there is not a CONSTRUCTOR, it means that there
5768 is a missing set of braces (that is, we are processing the case for
5769 which reshape_init exists). */
5770 if (!first_initializer_p)
5771 {
5772 if (TREE_CODE (init) == CONSTRUCTOR)
5773 {
5774 if (TREE_TYPE (init) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init)))
5775 /* There is no need to reshape pointer-to-member function
5776 initializers, as they are always constructed correctly
5777 by the front end. */
5778 ;
5779 else if (COMPOUND_LITERAL_P (init))
5780 /* For a nested compound literal, there is no need to reshape since
5781 brace elision is not allowed. Even if we decided to allow it,
5782 we should add a call to reshape_init in finish_compound_literal,
5783 before calling digest_init, so changing this code would still
5784 not be necessary. */
5785 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
5786 else
5787 {
5788 ++d->cur;
5789 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5790 return reshape_init (type, init, complain);
5791 }
5792 }
5793
5794 warning (OPT_Wmissing_braces, "missing braces around initializer for %qT",
5795 type);
5796 }
5797
5798 /* Dispatch to specialized routines. */
5799 if (CLASS_TYPE_P (type))
5800 return reshape_init_class (type, d, first_initializer_p, complain);
5801 else if (TREE_CODE (type) == ARRAY_TYPE)
5802 return reshape_init_array (type, d, complain);
5803 else if (VECTOR_TYPE_P (type))
5804 return reshape_init_vector (type, d, complain);
5805 else
5806 gcc_unreachable();
5807 }
5808
5809 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
5810 brace-enclosed aggregate initializer.
5811
5812 INIT is the CONSTRUCTOR containing the list of initializers describing
5813 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
5814 It may not presently match the shape of the TYPE; for example:
5815
5816 struct S { int a; int b; };
5817 struct S a[] = { 1, 2, 3, 4 };
5818
5819 Here INIT will hold a vector of four elements, rather than a
5820 vector of two elements, each itself a vector of two elements. This
5821 routine transforms INIT from the former form into the latter. The
5822 revised CONSTRUCTOR node is returned. */
5823
5824 tree
5825 reshape_init (tree type, tree init, tsubst_flags_t complain)
5826 {
5827 vec<constructor_elt, va_gc> *v;
5828 reshape_iter d;
5829 tree new_init;
5830
5831 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5832
5833 v = CONSTRUCTOR_ELTS (init);
5834
5835 /* An empty constructor does not need reshaping, and it is always a valid
5836 initializer. */
5837 if (vec_safe_is_empty (v))
5838 return init;
5839
5840 /* Recurse on this CONSTRUCTOR. */
5841 d.cur = &(*v)[0];
5842 d.end = d.cur + v->length ();
5843
5844 new_init = reshape_init_r (type, &d, true, complain);
5845 if (new_init == error_mark_node)
5846 return error_mark_node;
5847
5848 /* Make sure all the element of the constructor were used. Otherwise,
5849 issue an error about exceeding initializers. */
5850 if (d.cur != d.end)
5851 {
5852 if (complain & tf_error)
5853 error ("too many initializers for %qT", type);
5854 else
5855 return error_mark_node;
5856 }
5857
5858 return new_init;
5859 }
5860
5861 /* Verify array initializer. Returns true if errors have been reported. */
5862
5863 bool
5864 check_array_initializer (tree decl, tree type, tree init)
5865 {
5866 tree element_type = TREE_TYPE (type);
5867
5868 /* The array type itself need not be complete, because the
5869 initializer may tell us how many elements are in the array.
5870 But, the elements of the array must be complete. */
5871 if (!COMPLETE_TYPE_P (complete_type (element_type)))
5872 {
5873 if (decl)
5874 error ("elements of array %q#D have incomplete type", decl);
5875 else
5876 error ("elements of array %q#T have incomplete type", type);
5877 return true;
5878 }
5879 /* A compound literal can't have variable size. */
5880 if (init && !decl
5881 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
5882 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
5883 {
5884 error ("variable-sized compound literal");
5885 return true;
5886 }
5887 return false;
5888 }
5889
5890 /* Subroutine of check_initializer; args are passed down from that function.
5891 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
5892
5893 static tree
5894 build_aggr_init_full_exprs (tree decl, tree init, int flags)
5895
5896 {
5897 gcc_assert (stmts_are_full_exprs_p ());
5898 return build_aggr_init (decl, init, flags, tf_warning_or_error);
5899 }
5900
5901 /* Verify INIT (the initializer for DECL), and record the
5902 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
5903 grok_reference_init.
5904
5905 If the return value is non-NULL, it is an expression that must be
5906 evaluated dynamically to initialize DECL. */
5907
5908 static tree
5909 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
5910 {
5911 tree type = TREE_TYPE (decl);
5912 tree init_code = NULL;
5913 tree core_type;
5914
5915 /* Things that are going to be initialized need to have complete
5916 type. */
5917 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
5918
5919 if (DECL_HAS_VALUE_EXPR_P (decl))
5920 {
5921 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
5922 it doesn't have storage to be initialized. */
5923 gcc_assert (init == NULL_TREE);
5924 return NULL_TREE;
5925 }
5926
5927 if (type == error_mark_node)
5928 /* We will have already complained. */
5929 return NULL_TREE;
5930
5931 if (TREE_CODE (type) == ARRAY_TYPE)
5932 {
5933 if (check_array_initializer (decl, type, init))
5934 return NULL_TREE;
5935 }
5936 else if (!COMPLETE_TYPE_P (type))
5937 {
5938 error ("%q#D has incomplete type", decl);
5939 TREE_TYPE (decl) = error_mark_node;
5940 return NULL_TREE;
5941 }
5942 else
5943 /* There is no way to make a variable-sized class type in GNU C++. */
5944 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
5945
5946 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
5947 {
5948 int init_len = vec_safe_length (CONSTRUCTOR_ELTS (init));
5949 if (SCALAR_TYPE_P (type))
5950 {
5951 if (init_len == 0)
5952 {
5953 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5954 init = build_zero_init (type, NULL_TREE, false);
5955 }
5956 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
5957 {
5958 error ("scalar object %qD requires one element in initializer",
5959 decl);
5960 TREE_TYPE (decl) = error_mark_node;
5961 return NULL_TREE;
5962 }
5963 }
5964 }
5965
5966 if (TREE_CODE (decl) == CONST_DECL)
5967 {
5968 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
5969
5970 DECL_INITIAL (decl) = init;
5971
5972 gcc_assert (init != NULL_TREE);
5973 init = NULL_TREE;
5974 }
5975 else if (!init && DECL_REALLY_EXTERN (decl))
5976 ;
5977 else if (init || type_build_ctor_call (type)
5978 || TREE_CODE (type) == REFERENCE_TYPE)
5979 {
5980 if (TREE_CODE (type) == REFERENCE_TYPE)
5981 {
5982 init = grok_reference_init (decl, type, init, flags);
5983 flags |= LOOKUP_ALREADY_DIGESTED;
5984 }
5985 else if (!init)
5986 check_for_uninitialized_const_var (decl);
5987 /* Do not reshape constructors of vectors (they don't need to be
5988 reshaped. */
5989 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
5990 {
5991 if (is_std_init_list (type))
5992 {
5993 init = perform_implicit_conversion (type, init,
5994 tf_warning_or_error);
5995 flags |= LOOKUP_ALREADY_DIGESTED;
5996 }
5997 else if (TYPE_NON_AGGREGATE_CLASS (type))
5998 {
5999 /* Don't reshape if the class has constructors. */
6000 if (cxx_dialect == cxx98)
6001 error ("in C++98 %qD must be initialized by constructor, "
6002 "not by %<{...}%>",
6003 decl);
6004 }
6005 else if (VECTOR_TYPE_P (type) && TYPE_VECTOR_OPAQUE (type))
6006 {
6007 error ("opaque vector types cannot be initialized");
6008 init = error_mark_node;
6009 }
6010 else
6011 {
6012 init = reshape_init (type, init, tf_warning_or_error);
6013 flags |= LOOKUP_NO_NARROWING;
6014 }
6015 }
6016 else if (TREE_CODE (init) == TREE_LIST
6017 && TREE_TYPE (init) != unknown_type_node
6018 && !MAYBE_CLASS_TYPE_P (type))
6019 {
6020 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6021
6022 /* We get here with code like `int a (2);' */
6023 init = build_x_compound_expr_from_list (init, ELK_INIT,
6024 tf_warning_or_error);
6025 }
6026
6027 /* If DECL has an array type without a specific bound, deduce the
6028 array size from the initializer. */
6029 maybe_deduce_size_from_array_init (decl, init);
6030 type = TREE_TYPE (decl);
6031 if (type == error_mark_node)
6032 return NULL_TREE;
6033
6034 if ((type_build_ctor_call (type) || CLASS_TYPE_P (type))
6035 && !(flags & LOOKUP_ALREADY_DIGESTED)
6036 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
6037 && CP_AGGREGATE_TYPE_P (type)
6038 && (CLASS_TYPE_P (type)
6039 || !TYPE_NEEDS_CONSTRUCTING (type)
6040 || type_has_extended_temps (type))))
6041 {
6042 init_code = build_aggr_init_full_exprs (decl, init, flags);
6043
6044 /* A constructor call is a non-trivial initializer even if
6045 it isn't explicitly written. */
6046 if (TREE_SIDE_EFFECTS (init_code))
6047 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
6048
6049 /* If this is a constexpr initializer, expand_default_init will
6050 have returned an INIT_EXPR rather than a CALL_EXPR. In that
6051 case, pull the initializer back out and pass it down into
6052 store_init_value. */
6053 while (TREE_CODE (init_code) == EXPR_STMT
6054 || TREE_CODE (init_code) == CONVERT_EXPR)
6055 init_code = TREE_OPERAND (init_code, 0);
6056 if (TREE_CODE (init_code) == INIT_EXPR)
6057 {
6058 init = TREE_OPERAND (init_code, 1);
6059 init_code = NULL_TREE;
6060 /* Don't call digest_init; it's unnecessary and will complain
6061 about aggregate initialization of non-aggregate classes. */
6062 flags |= LOOKUP_ALREADY_DIGESTED;
6063 }
6064 else if (DECL_DECLARED_CONSTEXPR_P (decl))
6065 {
6066 /* Declared constexpr, but no suitable initializer; massage
6067 init appropriately so we can pass it into store_init_value
6068 for the error. */
6069 if (CLASS_TYPE_P (type)
6070 && (!init || TREE_CODE (init) == TREE_LIST))
6071 {
6072 init = build_functional_cast (type, init, tf_none);
6073 if (TREE_CODE (init) == TARGET_EXPR)
6074 TARGET_EXPR_DIRECT_INIT_P (init) = true;
6075 }
6076 init_code = NULL_TREE;
6077 }
6078 else
6079 init = NULL_TREE;
6080 }
6081
6082 if (init && TREE_CODE (init) != TREE_VEC)
6083 {
6084 /* In aggregate initialization of a variable, each element
6085 initialization is a full-expression because there is no
6086 enclosing expression. */
6087 gcc_assert (stmts_are_full_exprs_p ());
6088
6089 init_code = store_init_value (decl, init, cleanups, flags);
6090
6091 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
6092 && DECL_INITIAL (decl)
6093 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
6094 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
6095 warning (0, "array %qD initialized by parenthesized string literal %qE",
6096 decl, DECL_INITIAL (decl));
6097 init = NULL;
6098 }
6099 }
6100 else
6101 {
6102 if (CLASS_TYPE_P (core_type = strip_array_types (type))
6103 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
6104 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
6105 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
6106 /*complain=*/true);
6107
6108 check_for_uninitialized_const_var (decl);
6109 }
6110
6111 if (init && init != error_mark_node)
6112 init_code = build2 (INIT_EXPR, type, decl, init);
6113
6114 if (init_code)
6115 {
6116 /* We might have set these in cp_finish_decl. */
6117 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
6118 TREE_CONSTANT (decl) = false;
6119 }
6120
6121 if (init_code && DECL_IN_AGGR_P (decl))
6122 {
6123 static int explained = 0;
6124
6125 if (cxx_dialect < cxx11)
6126 error ("initializer invalid for static member with constructor");
6127 else
6128 error ("non-constant in-class initialization invalid for static "
6129 "member %qD", decl);
6130 if (!explained)
6131 {
6132 inform (input_location,
6133 "(an out of class initialization is required)");
6134 explained = 1;
6135 }
6136 return NULL_TREE;
6137 }
6138
6139 return init_code;
6140 }
6141
6142 /* If DECL is not a local variable, give it RTL. */
6143
6144 static void
6145 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
6146 {
6147 int toplev = toplevel_bindings_p ();
6148 int defer_p;
6149
6150 /* Set the DECL_ASSEMBLER_NAME for the object. */
6151 if (asmspec)
6152 {
6153 /* The `register' keyword, when used together with an
6154 asm-specification, indicates that the variable should be
6155 placed in a particular register. */
6156 if (VAR_P (decl) && DECL_REGISTER (decl))
6157 {
6158 set_user_assembler_name (decl, asmspec);
6159 DECL_HARD_REGISTER (decl) = 1;
6160 }
6161 else
6162 {
6163 if (TREE_CODE (decl) == FUNCTION_DECL
6164 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
6165 set_builtin_user_assembler_name (decl, asmspec);
6166 set_user_assembler_name (decl, asmspec);
6167 }
6168 }
6169
6170 /* Handle non-variables up front. */
6171 if (!VAR_P (decl))
6172 {
6173 rest_of_decl_compilation (decl, toplev, at_eof);
6174 return;
6175 }
6176
6177 /* If we see a class member here, it should be a static data
6178 member. */
6179 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
6180 {
6181 gcc_assert (TREE_STATIC (decl));
6182 /* An in-class declaration of a static data member should be
6183 external; it is only a declaration, and not a definition. */
6184 if (init == NULL_TREE)
6185 gcc_assert (DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl));
6186 }
6187
6188 /* We don't create any RTL for local variables. */
6189 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6190 return;
6191
6192 /* We defer emission of local statics until the corresponding
6193 DECL_EXPR is expanded. */
6194 defer_p = DECL_FUNCTION_SCOPE_P (decl) || DECL_VIRTUAL_P (decl);
6195
6196 /* Defer template instantiations. */
6197 if (DECL_LANG_SPECIFIC (decl)
6198 && DECL_IMPLICIT_INSTANTIATION (decl))
6199 defer_p = 1;
6200
6201 /* If we're not deferring, go ahead and assemble the variable. */
6202 if (!defer_p)
6203 rest_of_decl_compilation (decl, toplev, at_eof);
6204 }
6205
6206 /* walk_tree helper for wrap_temporary_cleanups, below. */
6207
6208 static tree
6209 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
6210 {
6211 /* Stop at types or full-expression boundaries. */
6212 if (TYPE_P (*stmt_p)
6213 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
6214 {
6215 *walk_subtrees = 0;
6216 return NULL_TREE;
6217 }
6218
6219 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
6220 {
6221 tree guard = (tree)data;
6222 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
6223
6224 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
6225 /* Tell honor_protect_cleanup_actions to handle this as a separate
6226 cleanup. */
6227 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
6228
6229 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
6230 }
6231
6232 return NULL_TREE;
6233 }
6234
6235 /* We're initializing a local variable which has a cleanup GUARD. If there
6236 are any temporaries used in the initializer INIT of this variable, we
6237 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6238 variable will be cleaned up properly if one of them throws.
6239
6240 Unfortunately, there's no way to express this properly in terms of
6241 nesting, as the regions for the temporaries overlap the region for the
6242 variable itself; if there are two temporaries, the variable needs to be
6243 the first thing destroyed if either of them throws. However, we only
6244 want to run the variable's cleanup if it actually got constructed. So
6245 we need to guard the temporary cleanups with the variable's cleanup if
6246 they are run on the normal path, but not if they are run on the
6247 exceptional path. We implement this by telling
6248 honor_protect_cleanup_actions to strip the variable cleanup from the
6249 exceptional path. */
6250
6251 static void
6252 wrap_temporary_cleanups (tree init, tree guard)
6253 {
6254 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
6255 }
6256
6257 /* Generate code to initialize DECL (a local variable). */
6258
6259 static void
6260 initialize_local_var (tree decl, tree init)
6261 {
6262 tree type = TREE_TYPE (decl);
6263 tree cleanup;
6264 int already_used;
6265
6266 gcc_assert (VAR_P (decl)
6267 || TREE_CODE (decl) == RESULT_DECL);
6268 gcc_assert (!TREE_STATIC (decl));
6269
6270 if (DECL_SIZE (decl) == NULL_TREE)
6271 {
6272 /* If we used it already as memory, it must stay in memory. */
6273 DECL_INITIAL (decl) = NULL_TREE;
6274 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6275 return;
6276 }
6277
6278 if (type == error_mark_node)
6279 return;
6280
6281 /* Compute and store the initial value. */
6282 already_used = TREE_USED (decl) || TREE_USED (type);
6283 if (TREE_USED (type))
6284 DECL_READ_P (decl) = 1;
6285
6286 /* Generate a cleanup, if necessary. */
6287 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6288
6289 /* Perform the initialization. */
6290 if (init)
6291 {
6292 tree rinit = (TREE_CODE (init) == INIT_EXPR
6293 ? TREE_OPERAND (init, 1) : NULL_TREE);
6294 if (rinit && !TREE_SIDE_EFFECTS (rinit))
6295 {
6296 /* Stick simple initializers in DECL_INITIAL so that
6297 -Wno-init-self works (c++/34772). */
6298 gcc_assert (TREE_OPERAND (init, 0) == decl);
6299 DECL_INITIAL (decl) = rinit;
6300
6301 if (warn_init_self && TREE_CODE (type) == REFERENCE_TYPE)
6302 {
6303 STRIP_NOPS (rinit);
6304 if (rinit == decl)
6305 warning_at (DECL_SOURCE_LOCATION (decl),
6306 OPT_Winit_self,
6307 "reference %qD is initialized with itself", decl);
6308 }
6309 }
6310 else
6311 {
6312 int saved_stmts_are_full_exprs_p;
6313
6314 /* If we're only initializing a single object, guard the
6315 destructors of any temporaries used in its initializer with
6316 its destructor. This isn't right for arrays because each
6317 element initialization is a full-expression. */
6318 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6319 wrap_temporary_cleanups (init, cleanup);
6320
6321 gcc_assert (building_stmt_list_p ());
6322 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6323 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6324 finish_expr_stmt (init);
6325 current_stmt_tree ()->stmts_are_full_exprs_p =
6326 saved_stmts_are_full_exprs_p;
6327 }
6328 }
6329
6330 /* Set this to 0 so we can tell whether an aggregate which was
6331 initialized was ever used. Don't do this if it has a
6332 destructor, so we don't complain about the 'resource
6333 allocation is initialization' idiom. Now set
6334 attribute((unused)) on types so decls of that type will be
6335 marked used. (see TREE_USED, above.) */
6336 if (TYPE_NEEDS_CONSTRUCTING (type)
6337 && ! already_used
6338 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6339 && DECL_NAME (decl))
6340 TREE_USED (decl) = 0;
6341 else if (already_used)
6342 TREE_USED (decl) = 1;
6343
6344 if (cleanup)
6345 finish_decl_cleanup (decl, cleanup);
6346 }
6347
6348 /* DECL is a VAR_DECL for a compiler-generated variable with static
6349 storage duration (like a virtual table) whose initializer is a
6350 compile-time constant. Initialize the variable and provide it to the
6351 back end. */
6352
6353 void
6354 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6355 {
6356 tree init;
6357 gcc_assert (DECL_ARTIFICIAL (decl));
6358 init = build_constructor (TREE_TYPE (decl), v);
6359 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6360 DECL_INITIAL (decl) = init;
6361 DECL_INITIALIZED_P (decl) = 1;
6362 determine_visibility (decl);
6363 layout_var_decl (decl);
6364 maybe_commonize_var (decl);
6365 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6366 }
6367
6368 /* INIT is the initializer for a variable, as represented by the
6369 parser. Returns true iff INIT is type-dependent. */
6370
6371 static bool
6372 type_dependent_init_p (tree init)
6373 {
6374 if (TREE_CODE (init) == TREE_LIST)
6375 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6376 return any_type_dependent_elements_p (init);
6377 else if (TREE_CODE (init) == CONSTRUCTOR)
6378 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6379 {
6380 vec<constructor_elt, va_gc> *elts;
6381 size_t nelts;
6382 size_t i;
6383
6384 elts = CONSTRUCTOR_ELTS (init);
6385 nelts = vec_safe_length (elts);
6386 for (i = 0; i < nelts; ++i)
6387 if (type_dependent_init_p ((*elts)[i].value))
6388 return true;
6389 }
6390 else
6391 /* It must be a simple expression, e.g., int i = 3; */
6392 return type_dependent_expression_p (init);
6393
6394 return false;
6395 }
6396
6397 /* INIT is the initializer for a variable, as represented by the
6398 parser. Returns true iff INIT is value-dependent. */
6399
6400 static bool
6401 value_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_value_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 (value_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 value_dependent_expression_p (init);
6422
6423 return false;
6424 }
6425
6426 // Returns true if a DECL is VAR_DECL with the concept specifier.
6427 static inline bool
6428 is_concept_var (tree decl)
6429 {
6430 return (VAR_P (decl)
6431 // Not all variables have DECL_LANG_SPECIFIC.
6432 && DECL_LANG_SPECIFIC (decl)
6433 && DECL_DECLARED_CONCEPT_P (decl));
6434 }
6435
6436 /* Finish processing of a declaration;
6437 install its line number and initial value.
6438 If the length of an array type is not known before,
6439 it must be determined now, from the initial value, or it is an error.
6440
6441 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6442 true, then INIT is an integral constant expression.
6443
6444 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6445 if the (init) syntax was used. */
6446
6447 void
6448 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
6449 tree asmspec_tree, int flags)
6450 {
6451 tree type;
6452 vec<tree, va_gc> *cleanups = NULL;
6453 const char *asmspec = NULL;
6454 int was_readonly = 0;
6455 bool var_definition_p = false;
6456 tree auto_node;
6457
6458 if (decl == error_mark_node)
6459 return;
6460 else if (! decl)
6461 {
6462 if (init)
6463 error ("assignment (not initialization) in declaration");
6464 return;
6465 }
6466
6467 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6468 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6469 gcc_assert (TREE_CODE (decl) != PARM_DECL);
6470
6471 type = TREE_TYPE (decl);
6472 if (type == error_mark_node)
6473 return;
6474
6475 /* If a name was specified, get the string. */
6476 if (at_namespace_scope_p ())
6477 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
6478 if (asmspec_tree && asmspec_tree != error_mark_node)
6479 asmspec = TREE_STRING_POINTER (asmspec_tree);
6480
6481 if (current_class_type
6482 && CP_DECL_CONTEXT (decl) == current_class_type
6483 && TYPE_BEING_DEFINED (current_class_type)
6484 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
6485 && (DECL_INITIAL (decl) || init))
6486 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
6487
6488 if (TREE_CODE (decl) != FUNCTION_DECL
6489 && (auto_node = type_uses_auto (type)))
6490 {
6491 tree d_init;
6492 if (init == NULL_TREE)
6493 {
6494 if (DECL_LANG_SPECIFIC (decl)
6495 && DECL_TEMPLATE_INSTANTIATION (decl)
6496 && !DECL_TEMPLATE_INSTANTIATED (decl))
6497 {
6498 /* init is null because we're deferring instantiating the
6499 initializer until we need it. Well, we need it now. */
6500 instantiate_decl (decl, /*defer_ok*/true, /*expl*/false);
6501 return;
6502 }
6503
6504 error ("declaration of %q#D has no initializer", decl);
6505 TREE_TYPE (decl) = error_mark_node;
6506 return;
6507 }
6508 d_init = init;
6509 if (TREE_CODE (d_init) == TREE_LIST)
6510 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
6511 tf_warning_or_error);
6512 d_init = resolve_nondeduced_context (d_init);
6513 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init,
6514 auto_node,
6515 tf_warning_or_error,
6516 adc_variable_type);
6517 if (type == error_mark_node)
6518 return;
6519 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
6520 }
6521
6522 if (!ensure_literal_type_for_constexpr_object (decl))
6523 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
6524
6525 if (VAR_P (decl)
6526 && DECL_CLASS_SCOPE_P (decl)
6527 && DECL_INITIALIZED_IN_CLASS_P (decl))
6528 check_static_variable_definition (decl, type);
6529
6530 if (init && TREE_CODE (decl) == FUNCTION_DECL)
6531 {
6532 tree clone;
6533 if (init == ridpointers[(int)RID_DELETE])
6534 {
6535 /* FIXME check this is 1st decl. */
6536 DECL_DELETED_FN (decl) = 1;
6537 DECL_DECLARED_INLINE_P (decl) = 1;
6538 DECL_INITIAL (decl) = error_mark_node;
6539 FOR_EACH_CLONE (clone, decl)
6540 {
6541 DECL_DELETED_FN (clone) = 1;
6542 DECL_DECLARED_INLINE_P (clone) = 1;
6543 DECL_INITIAL (clone) = error_mark_node;
6544 }
6545 init = NULL_TREE;
6546 }
6547 else if (init == ridpointers[(int)RID_DEFAULT])
6548 {
6549 if (defaultable_fn_check (decl))
6550 DECL_DEFAULTED_FN (decl) = 1;
6551 else
6552 DECL_INITIAL (decl) = NULL_TREE;
6553 }
6554 }
6555
6556 if (init && VAR_P (decl))
6557 {
6558 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
6559 /* If DECL is a reference, then we want to know whether init is a
6560 reference constant; init_const_expr_p as passed tells us whether
6561 it's an rvalue constant. */
6562 if (TREE_CODE (type) == REFERENCE_TYPE)
6563 init_const_expr_p = potential_constant_expression (init);
6564 if (init_const_expr_p)
6565 {
6566 /* Set these flags now for templates. We'll update the flags in
6567 store_init_value for instantiations. */
6568 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
6569 if (decl_maybe_constant_var_p (decl))
6570 TREE_CONSTANT (decl) = 1;
6571 }
6572 }
6573
6574 if (processing_template_decl)
6575 {
6576 bool type_dependent_p;
6577
6578 /* Add this declaration to the statement-tree. */
6579 if (at_function_scope_p ())
6580 add_decl_expr (decl);
6581
6582 type_dependent_p = dependent_type_p (type);
6583
6584 if (check_for_bare_parameter_packs (init))
6585 {
6586 init = NULL_TREE;
6587 DECL_INITIAL (decl) = NULL_TREE;
6588 }
6589
6590 /* Generally, initializers in templates are expanded when the
6591 template is instantiated. But, if DECL is a variable constant
6592 then it can be used in future constant expressions, so its value
6593 must be available. */
6594
6595 if (!VAR_P (decl) || type_dependent_p)
6596 /* We can't do anything if the decl has dependent type. */;
6597 else if (init
6598 && init_const_expr_p
6599 && TREE_CODE (type) != REFERENCE_TYPE
6600 && decl_maybe_constant_var_p (decl)
6601 && !type_dependent_init_p (init)
6602 && !value_dependent_init_p (init))
6603 {
6604 /* This variable seems to be a non-dependent constant, so process
6605 its initializer. If check_initializer returns non-null the
6606 initialization wasn't constant after all. */
6607 tree init_code;
6608 cleanups = make_tree_vector ();
6609 init_code = check_initializer (decl, init, flags, &cleanups);
6610 if (init_code == NULL_TREE)
6611 init = NULL_TREE;
6612 release_tree_vector (cleanups);
6613 }
6614 else if (!init && is_concept_var (decl))
6615 error ("variable concept has no initializer");
6616 else if (!DECL_PRETTY_FUNCTION_P (decl))
6617 {
6618 /* Deduce array size even if the initializer is dependent. */
6619 maybe_deduce_size_from_array_init (decl, init);
6620 /* And complain about multiple initializers. */
6621 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
6622 && !MAYBE_CLASS_TYPE_P (type))
6623 init = build_x_compound_expr_from_list (init, ELK_INIT,
6624 tf_warning_or_error);
6625 }
6626
6627 if (init)
6628 DECL_INITIAL (decl) = init;
6629 return;
6630 }
6631
6632 /* Just store non-static data member initializers for later. */
6633 if (init && TREE_CODE (decl) == FIELD_DECL)
6634 DECL_INITIAL (decl) = init;
6635
6636 /* Take care of TYPE_DECLs up front. */
6637 if (TREE_CODE (decl) == TYPE_DECL)
6638 {
6639 if (type != error_mark_node
6640 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
6641 {
6642 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
6643 warning (0, "shadowing previous type declaration of %q#D", decl);
6644 set_identifier_type_value (DECL_NAME (decl), decl);
6645 }
6646
6647 /* If we have installed this as the canonical typedef for this
6648 type, and that type has not been defined yet, delay emitting
6649 the debug information for it, as we will emit it later. */
6650 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
6651 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
6652 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
6653
6654 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
6655 at_eof);
6656 return;
6657 }
6658
6659 /* A reference will be modified here, as it is initialized. */
6660 if (! DECL_EXTERNAL (decl)
6661 && TREE_READONLY (decl)
6662 && TREE_CODE (type) == REFERENCE_TYPE)
6663 {
6664 was_readonly = 1;
6665 TREE_READONLY (decl) = 0;
6666 }
6667
6668 if (VAR_P (decl))
6669 {
6670 /* If this is a local variable that will need a mangled name,
6671 register it now. We must do this before processing the
6672 initializer for the variable, since the initialization might
6673 require a guard variable, and since the mangled name of the
6674 guard variable will depend on the mangled name of this
6675 variable. */
6676 if (DECL_FUNCTION_SCOPE_P (decl)
6677 && TREE_STATIC (decl)
6678 && !DECL_ARTIFICIAL (decl))
6679 {
6680 push_local_name (decl);
6681 if (DECL_CONSTRUCTOR_P (current_function_decl)
6682 || DECL_DESTRUCTOR_P (current_function_decl))
6683 /* Normally local_decls is populated during GIMPLE lowering,
6684 but [cd]tors are never actually compiled directly. We need
6685 to put statics on the list so we can deal with the label
6686 address extension. FIXME. */
6687 add_local_decl (cfun, decl);
6688 }
6689
6690 /* Convert the initializer to the type of DECL, if we have not
6691 already initialized DECL. */
6692 if (!DECL_INITIALIZED_P (decl)
6693 /* If !DECL_EXTERNAL then DECL is being defined. In the
6694 case of a static data member initialized inside the
6695 class-specifier, there can be an initializer even if DECL
6696 is *not* defined. */
6697 && (!DECL_EXTERNAL (decl) || init))
6698 {
6699 if (TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6700 {
6701 tree jclass
6702 = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jclass"));
6703 /* Allow libjava/prims.cc define primitive classes. */
6704 if (init != NULL_TREE
6705 || jclass == NULL_TREE
6706 || TREE_CODE (jclass) != TYPE_DECL
6707 || !POINTER_TYPE_P (TREE_TYPE (jclass))
6708 || !same_type_ignoring_top_level_qualifiers_p
6709 (type, TREE_TYPE (TREE_TYPE (jclass))))
6710 error ("Java object %qD not allocated with %<new%>", decl);
6711 init = NULL_TREE;
6712 }
6713 cleanups = make_tree_vector ();
6714 init = check_initializer (decl, init, flags, &cleanups);
6715
6716 /* Handle:
6717
6718 [dcl.init]
6719
6720 The memory occupied by any object of static storage
6721 duration is zero-initialized at program startup before
6722 any other initialization takes place.
6723
6724 We cannot create an appropriate initializer until after
6725 the type of DECL is finalized. If DECL_INITIAL is set,
6726 then the DECL is statically initialized, and any
6727 necessary zero-initialization has already been performed. */
6728 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
6729 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
6730 /*nelts=*/NULL_TREE,
6731 /*static_storage_p=*/true);
6732 /* Remember that the initialization for this variable has
6733 taken place. */
6734 DECL_INITIALIZED_P (decl) = 1;
6735 /* This declaration is the definition of this variable,
6736 unless we are initializing a static data member within
6737 the class specifier. */
6738 if (!DECL_EXTERNAL (decl))
6739 var_definition_p = true;
6740 }
6741 /* If the variable has an array type, lay out the type, even if
6742 there is no initializer. It is valid to index through the
6743 array, and we must get TYPE_ALIGN set correctly on the array
6744 type. */
6745 else if (TREE_CODE (type) == ARRAY_TYPE)
6746 layout_type (type);
6747
6748 if (TREE_STATIC (decl)
6749 && !at_function_scope_p ()
6750 && current_function_decl == NULL)
6751 /* So decl is a global variable or a static member of a
6752 non local class. Record the types it uses
6753 so that we can decide later to emit debug info for them. */
6754 record_types_used_by_current_var_decl (decl);
6755 }
6756 else if (TREE_CODE (decl) == FIELD_DECL
6757 && TYPE_FOR_JAVA (type) && MAYBE_CLASS_TYPE_P (type))
6758 error ("non-static data member %qD has Java class type", decl);
6759
6760 /* Add this declaration to the statement-tree. This needs to happen
6761 after the call to check_initializer so that the DECL_EXPR for a
6762 reference temp is added before the DECL_EXPR for the reference itself. */
6763 if (DECL_FUNCTION_SCOPE_P (decl))
6764 {
6765 /* If we're building a variable sized type, and we might be
6766 reachable other than via the top of the current binding
6767 level, then create a new BIND_EXPR so that we deallocate
6768 the object at the right time. */
6769 if (VAR_P (decl)
6770 && DECL_SIZE (decl)
6771 && !TREE_CONSTANT (DECL_SIZE (decl))
6772 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
6773 {
6774 tree bind;
6775 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6776 TREE_SIDE_EFFECTS (bind) = 1;
6777 add_stmt (bind);
6778 BIND_EXPR_BODY (bind) = push_stmt_list ();
6779 }
6780 add_decl_expr (decl);
6781 }
6782
6783 /* Let the middle end know about variables and functions -- but not
6784 static data members in uninstantiated class templates. */
6785 if (VAR_OR_FUNCTION_DECL_P (decl))
6786 {
6787 if (VAR_P (decl))
6788 {
6789 layout_var_decl (decl);
6790 maybe_commonize_var (decl);
6791 }
6792
6793 /* This needs to happen after the linkage is set. */
6794 determine_visibility (decl);
6795
6796 if (var_definition_p && TREE_STATIC (decl))
6797 {
6798 /* If a TREE_READONLY variable needs initialization
6799 at runtime, it is no longer readonly and we need to
6800 avoid MEM_READONLY_P being set on RTL created for it. */
6801 if (init)
6802 {
6803 if (TREE_READONLY (decl))
6804 TREE_READONLY (decl) = 0;
6805 was_readonly = 0;
6806 }
6807 else if (was_readonly)
6808 TREE_READONLY (decl) = 1;
6809
6810 /* Likewise if it needs destruction. */
6811 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
6812 TREE_READONLY (decl) = 0;
6813 }
6814
6815 make_rtl_for_nonlocal_decl (decl, init, asmspec);
6816
6817 /* Check for abstractness of the type. Notice that there is no
6818 need to strip array types here since the check for those types
6819 is already done within create_array_type_for_decl. */
6820 abstract_virtuals_error (decl, type);
6821
6822 if (TREE_TYPE (decl) == error_mark_node)
6823 /* No initialization required. */
6824 ;
6825 else if (TREE_CODE (decl) == FUNCTION_DECL)
6826 {
6827 if (init)
6828 {
6829 if (init == ridpointers[(int)RID_DEFAULT])
6830 {
6831 /* An out-of-class default definition is defined at
6832 the point where it is explicitly defaulted. */
6833 if (DECL_DELETED_FN (decl))
6834 maybe_explain_implicit_delete (decl);
6835 else if (DECL_INITIAL (decl) == error_mark_node)
6836 synthesize_method (decl);
6837 }
6838 else
6839 error ("function %q#D is initialized like a variable", decl);
6840 }
6841 /* else no initialization required. */
6842 }
6843 else if (DECL_EXTERNAL (decl)
6844 && ! (DECL_LANG_SPECIFIC (decl)
6845 && DECL_NOT_REALLY_EXTERN (decl)))
6846 {
6847 if (init)
6848 DECL_INITIAL (decl) = init;
6849 }
6850 /* A variable definition. */
6851 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6852 /* Initialize the local variable. */
6853 initialize_local_var (decl, init);
6854
6855 /* If a variable is defined, and then a subsequent
6856 definition with external linkage is encountered, we will
6857 get here twice for the same variable. We want to avoid
6858 calling expand_static_init more than once. For variables
6859 that are not static data members, we can call
6860 expand_static_init only when we actually process the
6861 initializer. It is not legal to redeclare a static data
6862 member, so this issue does not arise in that case. */
6863 else if (var_definition_p && TREE_STATIC (decl))
6864 expand_static_init (decl, init);
6865 }
6866
6867 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
6868 reference, insert it in the statement-tree now. */
6869 if (cleanups)
6870 {
6871 unsigned i; tree t;
6872 FOR_EACH_VEC_ELT (*cleanups, i, t)
6873 push_cleanup (decl, t, false);
6874 release_tree_vector (cleanups);
6875 }
6876
6877 if (was_readonly)
6878 TREE_READONLY (decl) = 1;
6879
6880 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
6881 }
6882
6883 /* Returns a declaration for a VAR_DECL as if:
6884
6885 extern "C" TYPE NAME;
6886
6887 had been seen. Used to create compiler-generated global
6888 variables. */
6889
6890 static tree
6891 declare_global_var (tree name, tree type)
6892 {
6893 tree decl;
6894
6895 push_to_top_level ();
6896 decl = build_decl (input_location, VAR_DECL, name, type);
6897 TREE_PUBLIC (decl) = 1;
6898 DECL_EXTERNAL (decl) = 1;
6899 DECL_ARTIFICIAL (decl) = 1;
6900 /* If the user has explicitly declared this variable (perhaps
6901 because the code we are compiling is part of a low-level runtime
6902 library), then it is possible that our declaration will be merged
6903 with theirs by pushdecl. */
6904 decl = pushdecl (decl);
6905 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
6906 pop_from_top_level ();
6907
6908 return decl;
6909 }
6910
6911 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
6912 if "__cxa_atexit" is not being used) corresponding to the function
6913 to be called when the program exits. */
6914
6915 static tree
6916 get_atexit_fn_ptr_type (void)
6917 {
6918 tree fn_type;
6919
6920 if (!atexit_fn_ptr_type_node)
6921 {
6922 tree arg_type;
6923 if (flag_use_cxa_atexit
6924 && !targetm.cxx.use_atexit_for_cxa_atexit ())
6925 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
6926 arg_type = ptr_type_node;
6927 else
6928 /* The parameter to "atexit" is "void (*)(void)". */
6929 arg_type = NULL_TREE;
6930
6931 fn_type = build_function_type_list (void_type_node,
6932 arg_type, NULL_TREE);
6933 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
6934 }
6935
6936 return atexit_fn_ptr_type_node;
6937 }
6938
6939 /* Returns a pointer to the `atexit' function. Note that if
6940 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
6941 `__cxa_atexit' function specified in the IA64 C++ ABI. */
6942
6943 static tree
6944 get_atexit_node (void)
6945 {
6946 tree atexit_fndecl;
6947 tree fn_type;
6948 tree fn_ptr_type;
6949 const char *name;
6950 bool use_aeabi_atexit;
6951
6952 if (atexit_node)
6953 return atexit_node;
6954
6955 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
6956 {
6957 /* The declaration for `__cxa_atexit' is:
6958
6959 int __cxa_atexit (void (*)(void *), void *, void *)
6960
6961 We build up the argument types and then the function type
6962 itself. */
6963 tree argtype0, argtype1, argtype2;
6964
6965 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
6966 /* First, build the pointer-to-function type for the first
6967 argument. */
6968 fn_ptr_type = get_atexit_fn_ptr_type ();
6969 /* Then, build the rest of the argument types. */
6970 argtype2 = ptr_type_node;
6971 if (use_aeabi_atexit)
6972 {
6973 argtype1 = fn_ptr_type;
6974 argtype0 = ptr_type_node;
6975 }
6976 else
6977 {
6978 argtype1 = ptr_type_node;
6979 argtype0 = fn_ptr_type;
6980 }
6981 /* And the final __cxa_atexit type. */
6982 fn_type = build_function_type_list (integer_type_node,
6983 argtype0, argtype1, argtype2,
6984 NULL_TREE);
6985 if (use_aeabi_atexit)
6986 name = "__aeabi_atexit";
6987 else
6988 name = "__cxa_atexit";
6989 }
6990 else
6991 {
6992 /* The declaration for `atexit' is:
6993
6994 int atexit (void (*)());
6995
6996 We build up the argument types and then the function type
6997 itself. */
6998 fn_ptr_type = get_atexit_fn_ptr_type ();
6999 /* Build the final atexit type. */
7000 fn_type = build_function_type_list (integer_type_node,
7001 fn_ptr_type, NULL_TREE);
7002 name = "atexit";
7003 }
7004
7005 /* Now, build the function declaration. */
7006 push_lang_context (lang_name_c);
7007 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
7008 mark_used (atexit_fndecl);
7009 pop_lang_context ();
7010 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
7011
7012 return atexit_node;
7013 }
7014
7015 /* Like get_atexit_node, but for thread-local cleanups. */
7016
7017 static tree
7018 get_thread_atexit_node (void)
7019 {
7020 /* The declaration for `__cxa_thread_atexit' is:
7021
7022 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
7023 tree fn_type = build_function_type_list (integer_type_node,
7024 get_atexit_fn_ptr_type (),
7025 ptr_type_node, ptr_type_node,
7026 NULL_TREE);
7027
7028 /* Now, build the function declaration. */
7029 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
7030 ECF_LEAF | ECF_NOTHROW);
7031 return decay_conversion (atexit_fndecl, tf_warning_or_error);
7032 }
7033
7034 /* Returns the __dso_handle VAR_DECL. */
7035
7036 static tree
7037 get_dso_handle_node (void)
7038 {
7039 if (dso_handle_node)
7040 return dso_handle_node;
7041
7042 /* Declare the variable. */
7043 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
7044 ptr_type_node);
7045
7046 #ifdef HAVE_GAS_HIDDEN
7047 if (dso_handle_node != error_mark_node)
7048 {
7049 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
7050 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
7051 }
7052 #endif
7053
7054 return dso_handle_node;
7055 }
7056
7057 /* Begin a new function with internal linkage whose job will be simply
7058 to destroy some particular variable. */
7059
7060 static GTY(()) int start_cleanup_cnt;
7061
7062 static tree
7063 start_cleanup_fn (void)
7064 {
7065 char name[32];
7066 tree fntype;
7067 tree fndecl;
7068 bool use_cxa_atexit = flag_use_cxa_atexit
7069 && !targetm.cxx.use_atexit_for_cxa_atexit ();
7070
7071 push_to_top_level ();
7072
7073 /* No need to mangle this. */
7074 push_lang_context (lang_name_c);
7075
7076 /* Build the name of the function. */
7077 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
7078 /* Build the function declaration. */
7079 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
7080 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
7081 /* It's a function with internal linkage, generated by the
7082 compiler. */
7083 TREE_PUBLIC (fndecl) = 0;
7084 DECL_ARTIFICIAL (fndecl) = 1;
7085 /* Make the function `inline' so that it is only emitted if it is
7086 actually needed. It is unlikely that it will be inlined, since
7087 it is only called via a function pointer, but we avoid unnecessary
7088 emissions this way. */
7089 DECL_DECLARED_INLINE_P (fndecl) = 1;
7090 DECL_INTERFACE_KNOWN (fndecl) = 1;
7091 /* Build the parameter. */
7092 if (use_cxa_atexit)
7093 {
7094 tree parmdecl;
7095
7096 parmdecl = cp_build_parm_decl (NULL_TREE, ptr_type_node);
7097 DECL_CONTEXT (parmdecl) = fndecl;
7098 TREE_USED (parmdecl) = 1;
7099 DECL_READ_P (parmdecl) = 1;
7100 DECL_ARGUMENTS (fndecl) = parmdecl;
7101 }
7102
7103 pushdecl (fndecl);
7104 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
7105
7106 pop_lang_context ();
7107
7108 return current_function_decl;
7109 }
7110
7111 /* Finish the cleanup function begun by start_cleanup_fn. */
7112
7113 static void
7114 end_cleanup_fn (void)
7115 {
7116 expand_or_defer_fn (finish_function (0));
7117
7118 pop_from_top_level ();
7119 }
7120
7121 /* Generate code to handle the destruction of DECL, an object with
7122 static storage duration. */
7123
7124 tree
7125 register_dtor_fn (tree decl)
7126 {
7127 tree cleanup;
7128 tree addr;
7129 tree compound_stmt;
7130 tree fcall;
7131 tree type;
7132 bool ob_parm, dso_parm, use_dtor;
7133 tree arg0, arg1, arg2;
7134 tree atex_node;
7135
7136 type = TREE_TYPE (decl);
7137 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
7138 return void_node;
7139
7140 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
7141 "__aeabi_atexit"), and DECL is a class object, we can just pass the
7142 destructor to "__cxa_atexit"; we don't have to build a temporary
7143 function to do the cleanup. */
7144 dso_parm = (flag_use_cxa_atexit
7145 && !targetm.cxx.use_atexit_for_cxa_atexit ());
7146 ob_parm = (CP_DECL_THREAD_LOCAL_P (decl) || dso_parm);
7147 use_dtor = ob_parm && CLASS_TYPE_P (type);
7148 if (use_dtor)
7149 {
7150 int idx;
7151
7152 /* Find the destructor. */
7153 idx = lookup_fnfields_1 (type, complete_dtor_identifier);
7154 gcc_assert (idx >= 0);
7155 cleanup = (*CLASSTYPE_METHOD_VEC (type))[idx];
7156 /* Make sure it is accessible. */
7157 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
7158 tf_warning_or_error);
7159 }
7160 else
7161 {
7162 /* Call build_cleanup before we enter the anonymous function so
7163 that any access checks will be done relative to the current
7164 scope, rather than the scope of the anonymous function. */
7165 build_cleanup (decl);
7166
7167 /* Now start the function. */
7168 cleanup = start_cleanup_fn ();
7169
7170 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
7171 to the original function, rather than the anonymous one. That
7172 will make the back end think that nested functions are in use,
7173 which causes confusion. */
7174 push_deferring_access_checks (dk_no_check);
7175 fcall = build_cleanup (decl);
7176 pop_deferring_access_checks ();
7177
7178 /* Create the body of the anonymous function. */
7179 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
7180 finish_expr_stmt (fcall);
7181 finish_compound_stmt (compound_stmt);
7182 end_cleanup_fn ();
7183 }
7184
7185 /* Call atexit with the cleanup function. */
7186 mark_used (cleanup);
7187 cleanup = build_address (cleanup);
7188
7189 if (CP_DECL_THREAD_LOCAL_P (decl))
7190 atex_node = get_thread_atexit_node ();
7191 else
7192 atex_node = get_atexit_node ();
7193
7194 if (use_dtor)
7195 {
7196 /* We must convert CLEANUP to the type that "__cxa_atexit"
7197 expects. */
7198 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
7199 /* "__cxa_atexit" will pass the address of DECL to the
7200 cleanup function. */
7201 mark_used (decl);
7202 addr = build_address (decl);
7203 /* The declared type of the parameter to "__cxa_atexit" is
7204 "void *". For plain "T*", we could just let the
7205 machinery in cp_build_function_call convert it -- but if the
7206 type is "cv-qualified T *", then we need to convert it
7207 before passing it in, to avoid spurious errors. */
7208 addr = build_nop (ptr_type_node, addr);
7209 }
7210 else
7211 /* Since the cleanup functions we build ignore the address
7212 they're given, there's no reason to pass the actual address
7213 in, and, in general, it's cheaper to pass NULL than any
7214 other value. */
7215 addr = null_pointer_node;
7216
7217 if (dso_parm)
7218 arg2 = cp_build_addr_expr (get_dso_handle_node (),
7219 tf_warning_or_error);
7220 else if (ob_parm)
7221 /* Just pass NULL to the dso handle parm if we don't actually
7222 have a DSO handle on this target. */
7223 arg2 = null_pointer_node;
7224 else
7225 arg2 = NULL_TREE;
7226
7227 if (ob_parm)
7228 {
7229 if (!CP_DECL_THREAD_LOCAL_P (decl)
7230 && targetm.cxx.use_aeabi_atexit ())
7231 {
7232 arg1 = cleanup;
7233 arg0 = addr;
7234 }
7235 else
7236 {
7237 arg1 = addr;
7238 arg0 = cleanup;
7239 }
7240 }
7241 else
7242 {
7243 arg0 = cleanup;
7244 arg1 = NULL_TREE;
7245 }
7246 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
7247 arg0, arg1, arg2, NULL_TREE);
7248 }
7249
7250 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
7251 is its initializer. Generate code to handle the construction
7252 and destruction of DECL. */
7253
7254 static void
7255 expand_static_init (tree decl, tree init)
7256 {
7257 gcc_assert (VAR_P (decl));
7258 gcc_assert (TREE_STATIC (decl));
7259
7260 /* Some variables require no dynamic initialization. */
7261 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
7262 {
7263 /* Make sure the destructor is callable. */
7264 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
7265 if (!init)
7266 return;
7267 }
7268
7269 if (CP_DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
7270 && !DECL_FUNCTION_SCOPE_P (decl))
7271 {
7272 if (init)
7273 error ("non-local variable %qD declared %<__thread%> "
7274 "needs dynamic initialization", decl);
7275 else
7276 error ("non-local variable %qD declared %<__thread%> "
7277 "has a non-trivial destructor", decl);
7278 static bool informed;
7279 if (!informed)
7280 {
7281 inform (DECL_SOURCE_LOCATION (decl),
7282 "C++11 %<thread_local%> allows dynamic initialization "
7283 "and destruction");
7284 informed = true;
7285 }
7286 return;
7287 }
7288
7289 if (DECL_FUNCTION_SCOPE_P (decl))
7290 {
7291 /* Emit code to perform this initialization but once. */
7292 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
7293 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
7294 tree guard, guard_addr;
7295 tree flag, begin;
7296 /* We don't need thread-safety code for thread-local vars. */
7297 bool thread_guard = (flag_threadsafe_statics
7298 && !CP_DECL_THREAD_LOCAL_P (decl));
7299
7300 /* Emit code to perform this initialization but once. This code
7301 looks like:
7302
7303 static <type> guard;
7304 if (!__atomic_load (guard.first_byte)) {
7305 if (__cxa_guard_acquire (&guard)) {
7306 bool flag = false;
7307 try {
7308 // Do initialization.
7309 flag = true; __cxa_guard_release (&guard);
7310 // Register variable for destruction at end of program.
7311 } catch {
7312 if (!flag) __cxa_guard_abort (&guard);
7313 }
7314 }
7315
7316 Note that the `flag' variable is only set to 1 *after* the
7317 initialization is complete. This ensures that an exception,
7318 thrown during the construction, will cause the variable to
7319 reinitialized when we pass through this code again, as per:
7320
7321 [stmt.dcl]
7322
7323 If the initialization exits by throwing an exception, the
7324 initialization is not complete, so it will be tried again
7325 the next time control enters the declaration.
7326
7327 This process should be thread-safe, too; multiple threads
7328 should not be able to initialize the variable more than
7329 once. */
7330
7331 /* Create the guard variable. */
7332 guard = get_guard (decl);
7333
7334 /* Begin the conditional initialization. */
7335 if_stmt = begin_if_stmt ();
7336
7337 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
7338 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7339
7340 if (thread_guard)
7341 {
7342 tree vfntype = NULL_TREE;
7343 tree acquire_name, release_name, abort_name;
7344 tree acquire_fn, release_fn, abort_fn;
7345 guard_addr = build_address (guard);
7346
7347 acquire_name = get_identifier ("__cxa_guard_acquire");
7348 release_name = get_identifier ("__cxa_guard_release");
7349 abort_name = get_identifier ("__cxa_guard_abort");
7350 acquire_fn = identifier_global_value (acquire_name);
7351 release_fn = identifier_global_value (release_name);
7352 abort_fn = identifier_global_value (abort_name);
7353 if (!acquire_fn)
7354 acquire_fn = push_library_fn
7355 (acquire_name, build_function_type_list (integer_type_node,
7356 TREE_TYPE (guard_addr),
7357 NULL_TREE),
7358 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
7359 if (!release_fn || !abort_fn)
7360 vfntype = build_function_type_list (void_type_node,
7361 TREE_TYPE (guard_addr),
7362 NULL_TREE);
7363 if (!release_fn)
7364 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
7365 ECF_NOTHROW | ECF_LEAF);
7366 if (!abort_fn)
7367 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
7368 ECF_NOTHROW | ECF_LEAF);
7369
7370 inner_if_stmt = begin_if_stmt ();
7371 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
7372 inner_if_stmt);
7373
7374 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
7375 begin = get_target_expr (boolean_false_node);
7376 flag = TARGET_EXPR_SLOT (begin);
7377
7378 TARGET_EXPR_CLEANUP (begin)
7379 = build3 (COND_EXPR, void_type_node, flag,
7380 void_node,
7381 build_call_n (abort_fn, 1, guard_addr));
7382 CLEANUP_EH_ONLY (begin) = 1;
7383
7384 /* Do the initialization itself. */
7385 init = add_stmt_to_compound (begin, init);
7386 init = add_stmt_to_compound
7387 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
7388 init = add_stmt_to_compound
7389 (init, build_call_n (release_fn, 1, guard_addr));
7390 }
7391 else
7392 init = add_stmt_to_compound (init, set_guard (guard));
7393
7394 /* Use atexit to register a function for destroying this static
7395 variable. */
7396 init = add_stmt_to_compound (init, register_dtor_fn (decl));
7397
7398 finish_expr_stmt (init);
7399
7400 if (thread_guard)
7401 {
7402 finish_compound_stmt (inner_then_clause);
7403 finish_then_clause (inner_if_stmt);
7404 finish_if_stmt (inner_if_stmt);
7405 }
7406
7407 finish_compound_stmt (then_clause);
7408 finish_then_clause (if_stmt);
7409 finish_if_stmt (if_stmt);
7410 }
7411 else if (CP_DECL_THREAD_LOCAL_P (decl))
7412 tls_aggregates = tree_cons (init, decl, tls_aggregates);
7413 else
7414 static_aggregates = tree_cons (init, decl, static_aggregates);
7415 }
7416
7417 \f
7418 /* Make TYPE a complete type based on INITIAL_VALUE.
7419 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
7420 2 if there was no information (in which case assume 0 if DO_DEFAULT),
7421 3 if the initializer list is empty (in pedantic mode). */
7422
7423 int
7424 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
7425 {
7426 int failure;
7427 tree type, elt_type;
7428
7429 /* Don't get confused by a CONSTRUCTOR for some other type. */
7430 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
7431 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value))
7432 return 1;
7433
7434 if (initial_value)
7435 {
7436 unsigned HOST_WIDE_INT i;
7437 tree value;
7438
7439 /* An array of character type can be initialized from a
7440 brace-enclosed string constant.
7441
7442 FIXME: this code is duplicated from reshape_init. Probably
7443 we should just call reshape_init here? */
7444 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
7445 && TREE_CODE (initial_value) == CONSTRUCTOR
7446 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
7447 {
7448 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
7449 tree value = (*v)[0].value;
7450
7451 if (TREE_CODE (value) == STRING_CST
7452 && v->length () == 1)
7453 initial_value = value;
7454 }
7455
7456 /* If any of the elements are parameter packs, we can't actually
7457 complete this type now because the array size is dependent. */
7458 if (TREE_CODE (initial_value) == CONSTRUCTOR)
7459 {
7460 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
7461 i, value)
7462 {
7463 if (PACK_EXPANSION_P (value))
7464 return 0;
7465 }
7466 }
7467 }
7468
7469 failure = complete_array_type (ptype, initial_value, do_default);
7470
7471 /* We can create the array before the element type is complete, which
7472 means that we didn't have these two bits set in the original type
7473 either. In completing the type, we are expected to propagate these
7474 bits. See also complete_type which does the same thing for arrays
7475 of fixed size. */
7476 type = *ptype;
7477 if (TYPE_DOMAIN (type))
7478 {
7479 elt_type = TREE_TYPE (type);
7480 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
7481 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
7482 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
7483 }
7484
7485 return failure;
7486 }
7487
7488 /* As above, but either give an error or reject zero-size arrays, depending
7489 on COMPLAIN. */
7490
7491 int
7492 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
7493 bool do_default, tsubst_flags_t complain)
7494 {
7495 int failure;
7496 bool sfinae = !(complain & tf_error);
7497 /* In SFINAE context we can't be lenient about zero-size arrays. */
7498 if (sfinae)
7499 ++pedantic;
7500 failure = cp_complete_array_type (ptype, initial_value, do_default);
7501 if (sfinae)
7502 --pedantic;
7503 if (failure)
7504 {
7505 if (sfinae)
7506 /* Not an error. */;
7507 else if (failure == 1)
7508 error ("initializer fails to determine size of %qT", *ptype);
7509 else if (failure == 2)
7510 {
7511 if (do_default)
7512 error ("array size missing in %qT", *ptype);
7513 }
7514 else if (failure == 3)
7515 error ("zero-size array %qT", *ptype);
7516 *ptype = error_mark_node;
7517 }
7518 return failure;
7519 }
7520 \f
7521 /* Return zero if something is declared to be a member of type
7522 CTYPE when in the context of CUR_TYPE. STRING is the error
7523 message to print in that case. Otherwise, quietly return 1. */
7524
7525 static int
7526 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
7527 {
7528 if (ctype && ctype != cur_type)
7529 {
7530 if (flags == DTOR_FLAG)
7531 error ("destructor for alien class %qT cannot be a member", ctype);
7532 else
7533 error ("constructor for alien class %qT cannot be a member", ctype);
7534 return 0;
7535 }
7536 return 1;
7537 }
7538 \f
7539 /* Subroutine of `grokdeclarator'. */
7540
7541 /* Generate errors possibly applicable for a given set of specifiers.
7542 This is for ARM $7.1.2. */
7543
7544 static void
7545 bad_specifiers (tree object,
7546 enum bad_spec_place type,
7547 int virtualp,
7548 int quals,
7549 int inlinep,
7550 int friendp,
7551 int raises)
7552 {
7553 switch (type)
7554 {
7555 case BSP_VAR:
7556 if (virtualp)
7557 error ("%qD declared as a %<virtual%> variable", object);
7558 if (inlinep)
7559 error ("%qD declared as an %<inline%> variable", object);
7560 if (quals)
7561 error ("%<const%> and %<volatile%> function specifiers on "
7562 "%qD invalid in variable declaration", object);
7563 break;
7564 case BSP_PARM:
7565 if (virtualp)
7566 error ("%qD declared as a %<virtual%> parameter", object);
7567 if (inlinep)
7568 error ("%qD declared as an %<inline%> parameter", object);
7569 if (quals)
7570 error ("%<const%> and %<volatile%> function specifiers on "
7571 "%qD invalid in parameter declaration", object);
7572 break;
7573 case BSP_TYPE:
7574 if (virtualp)
7575 error ("%qD declared as a %<virtual%> type", object);
7576 if (inlinep)
7577 error ("%qD declared as an %<inline%> type", object);
7578 if (quals)
7579 error ("%<const%> and %<volatile%> function specifiers on "
7580 "%qD invalid in type declaration", object);
7581 break;
7582 case BSP_FIELD:
7583 if (virtualp)
7584 error ("%qD declared as a %<virtual%> field", object);
7585 if (inlinep)
7586 error ("%qD declared as an %<inline%> field", object);
7587 if (quals)
7588 error ("%<const%> and %<volatile%> function specifiers on "
7589 "%qD invalid in field declaration", object);
7590 break;
7591 default:
7592 gcc_unreachable();
7593 }
7594 if (friendp)
7595 error ("%q+D declared as a friend", object);
7596 if (raises
7597 && (TREE_CODE (object) == TYPE_DECL
7598 || (!TYPE_PTRFN_P (TREE_TYPE (object))
7599 && !TYPE_REFFN_P (TREE_TYPE (object))
7600 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
7601 error ("%q+D declared with an exception specification", object);
7602 }
7603
7604 /* DECL is a member function or static data member and is presently
7605 being defined. Check that the definition is taking place in a
7606 valid namespace. */
7607
7608 static void
7609 check_class_member_definition_namespace (tree decl)
7610 {
7611 /* These checks only apply to member functions and static data
7612 members. */
7613 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
7614 /* We check for problems with specializations in pt.c in
7615 check_specialization_namespace, where we can issue better
7616 diagnostics. */
7617 if (processing_specialization)
7618 return;
7619 /* There are no restrictions on the placement of
7620 explicit instantiations. */
7621 if (processing_explicit_instantiation)
7622 return;
7623 /* [class.mfct]
7624
7625 A member function definition that appears outside of the
7626 class definition shall appear in a namespace scope enclosing
7627 the class definition.
7628
7629 [class.static.data]
7630
7631 The definition for a static data member shall appear in a
7632 namespace scope enclosing the member's class definition. */
7633 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
7634 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
7635 decl, DECL_CONTEXT (decl));
7636 }
7637
7638 /* Build a PARM_DECL for the "this" parameter. TYPE is the
7639 METHOD_TYPE for a non-static member function; QUALS are the
7640 cv-qualifiers that apply to the function. */
7641
7642 tree
7643 build_this_parm (tree type, cp_cv_quals quals)
7644 {
7645 tree this_type;
7646 tree qual_type;
7647 tree parm;
7648 cp_cv_quals this_quals;
7649
7650 if (CLASS_TYPE_P (type))
7651 {
7652 this_type
7653 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
7654 this_type = build_pointer_type (this_type);
7655 }
7656 else
7657 this_type = type_of_this_parm (type);
7658 /* The `this' parameter is implicitly `const'; it cannot be
7659 assigned to. */
7660 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
7661 qual_type = cp_build_qualified_type (this_type, this_quals);
7662 parm = build_artificial_parm (this_identifier, qual_type);
7663 cp_apply_type_quals_to_decl (this_quals, parm);
7664 return parm;
7665 }
7666
7667 /* DECL is a static member function. Complain if it was declared
7668 with function-cv-quals. */
7669
7670 static void
7671 check_static_quals (tree decl, cp_cv_quals quals)
7672 {
7673 if (quals != TYPE_UNQUALIFIED)
7674 error ("static member function %q#D declared with type qualifiers",
7675 decl);
7676 }
7677
7678 // Check that FN takes no arguments and returns bool.
7679 static void
7680 check_concept_fn (tree fn)
7681 {
7682 // A constraint is nullary.
7683 if (DECL_ARGUMENTS (fn))
7684 error ("concept %q#D declared with function parameters", fn);
7685
7686 // The declared return type of the concept shall be bool, and
7687 // it shall not be deduced from it definition.
7688 tree type = TREE_TYPE (TREE_TYPE (fn));
7689 if (is_auto (type))
7690 error ("concept %q#D declared with a deduced return type", fn);
7691 else if (type != boolean_type_node)
7692 error ("concept %q#D with non-%<bool%> return type %qT", fn, type);
7693 }
7694
7695 /* Helper function. Replace the temporary this parameter injected
7696 during cp_finish_omp_declare_simd with the real this parameter. */
7697
7698 static tree
7699 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
7700 {
7701 tree this_parm = (tree) data;
7702 if (TREE_CODE (*tp) == PARM_DECL
7703 && DECL_NAME (*tp) == this_identifier
7704 && *tp != this_parm)
7705 *tp = this_parm;
7706 else if (TYPE_P (*tp))
7707 *walk_subtrees = 0;
7708 return NULL_TREE;
7709 }
7710
7711 /* CTYPE is class type, or null if non-class.
7712 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
7713 or METHOD_TYPE.
7714 DECLARATOR is the function's name.
7715 PARMS is a chain of PARM_DECLs for the function.
7716 VIRTUALP is truthvalue of whether the function is virtual or not.
7717 FLAGS are to be passed through to `grokclassfn'.
7718 QUALS are qualifiers indicating whether the function is `const'
7719 or `volatile'.
7720 RAISES is a list of exceptions that this function can raise.
7721 CHECK is 1 if we must find this method in CTYPE, 0 if we should
7722 not look, and -1 if we should not call `grokclassfn' at all.
7723
7724 SFK is the kind of special function (if any) for the new function.
7725
7726 Returns `NULL_TREE' if something goes wrong, after issuing
7727 applicable error messages. */
7728
7729 static tree
7730 grokfndecl (tree ctype,
7731 tree type,
7732 tree declarator,
7733 tree parms,
7734 tree orig_declarator,
7735 tree decl_reqs,
7736 int virtualp,
7737 enum overload_flags flags,
7738 cp_cv_quals quals,
7739 cp_ref_qualifier rqual,
7740 tree raises,
7741 int check,
7742 int friendp,
7743 int publicp,
7744 int inlinep,
7745 bool deletedp,
7746 special_function_kind sfk,
7747 bool funcdef_flag,
7748 int template_count,
7749 tree in_namespace,
7750 tree* attrlist,
7751 location_t location)
7752 {
7753 tree decl;
7754 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
7755 tree t;
7756
7757 // Was the concept specifier present?
7758 bool concept_p = inlinep & 4;
7759
7760 // Concept declarations must have a corresponding definition.
7761 if (concept_p && !funcdef_flag)
7762 {
7763 error ("concept %qD has no definition", declarator);
7764 return NULL_TREE;
7765 }
7766
7767 if (rqual)
7768 type = build_ref_qualified_type (type, rqual);
7769 if (raises)
7770 type = build_exception_variant (type, raises);
7771
7772 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
7773
7774 /* Set the constraints on the declaration. */
7775 if (flag_concepts)
7776 {
7777 tree tmpl_reqs = NULL_TREE;
7778 if (processing_template_decl > template_class_depth (ctype))
7779 tmpl_reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
7780
7781 /* Adjust the required expression into a constraint. */
7782 if (decl_reqs)
7783 decl_reqs = make_predicate_constraint (decl_reqs);
7784
7785 tree ci = build_constraints (tmpl_reqs, decl_reqs);
7786 set_constraints (decl, ci);
7787 }
7788
7789 /* If we have an explicit location, use it, otherwise use whatever
7790 build_lang_decl used (probably input_location). */
7791 if (location != UNKNOWN_LOCATION)
7792 DECL_SOURCE_LOCATION (decl) = location;
7793
7794 if (TREE_CODE (type) == METHOD_TYPE)
7795 {
7796 tree parm;
7797 parm = build_this_parm (type, quals);
7798 DECL_CHAIN (parm) = parms;
7799 parms = parm;
7800 }
7801 DECL_ARGUMENTS (decl) = parms;
7802 for (t = parms; t; t = DECL_CHAIN (t))
7803 DECL_CONTEXT (t) = decl;
7804 /* Propagate volatile out from type to decl. */
7805 if (TYPE_VOLATILE (type))
7806 TREE_THIS_VOLATILE (decl) = 1;
7807
7808 /* Setup decl according to sfk. */
7809 switch (sfk)
7810 {
7811 case sfk_constructor:
7812 case sfk_copy_constructor:
7813 case sfk_move_constructor:
7814 DECL_CONSTRUCTOR_P (decl) = 1;
7815 break;
7816 case sfk_destructor:
7817 DECL_DESTRUCTOR_P (decl) = 1;
7818 break;
7819 default:
7820 break;
7821 }
7822
7823 /* If pointers to member functions use the least significant bit to
7824 indicate whether a function is virtual, ensure a pointer
7825 to this function will have that bit clear. */
7826 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
7827 && TREE_CODE (type) == METHOD_TYPE
7828 && DECL_ALIGN (decl) < 2 * BITS_PER_UNIT)
7829 DECL_ALIGN (decl) = 2 * BITS_PER_UNIT;
7830
7831 if (friendp
7832 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
7833 {
7834 if (funcdef_flag)
7835 error
7836 ("defining explicit specialization %qD in friend declaration",
7837 orig_declarator);
7838 else
7839 {
7840 tree fns = TREE_OPERAND (orig_declarator, 0);
7841 tree args = TREE_OPERAND (orig_declarator, 1);
7842
7843 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
7844 {
7845 /* Something like `template <class T> friend void f<T>()'. */
7846 error ("invalid use of template-id %qD in declaration "
7847 "of primary template",
7848 orig_declarator);
7849 return NULL_TREE;
7850 }
7851
7852
7853 /* A friend declaration of the form friend void f<>(). Record
7854 the information in the TEMPLATE_ID_EXPR. */
7855 SET_DECL_IMPLICIT_INSTANTIATION (decl);
7856
7857 gcc_assert (identifier_p (fns) || TREE_CODE (fns) == OVERLOAD);
7858 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
7859
7860 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
7861 if (TREE_PURPOSE (t)
7862 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
7863 {
7864 error ("default arguments are not allowed in declaration "
7865 "of friend template specialization %qD",
7866 decl);
7867 return NULL_TREE;
7868 }
7869
7870 if (inlinep & 1)
7871 {
7872 error ("%<inline%> is not allowed in declaration of friend "
7873 "template specialization %qD",
7874 decl);
7875 return NULL_TREE;
7876 }
7877 }
7878 }
7879
7880 /* If this decl has namespace scope, set that up. */
7881 if (in_namespace)
7882 set_decl_namespace (decl, in_namespace, friendp);
7883 else if (!ctype)
7884 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
7885
7886 /* `main' and builtins have implicit 'C' linkage. */
7887 if ((MAIN_NAME_P (declarator)
7888 || (IDENTIFIER_LENGTH (declarator) > 10
7889 && IDENTIFIER_POINTER (declarator)[0] == '_'
7890 && IDENTIFIER_POINTER (declarator)[1] == '_'
7891 && strncmp (IDENTIFIER_POINTER (declarator)+2, "builtin_", 8) == 0)
7892 || (targetcm.cxx_implicit_extern_c
7893 && targetcm.cxx_implicit_extern_c(IDENTIFIER_POINTER (declarator))))
7894 && current_lang_name == lang_name_cplusplus
7895 && ctype == NULL_TREE
7896 && DECL_FILE_SCOPE_P (decl))
7897 SET_DECL_LANGUAGE (decl, lang_c);
7898
7899 /* Should probably propagate const out from type to decl I bet (mrs). */
7900 if (staticp)
7901 {
7902 DECL_STATIC_FUNCTION_P (decl) = 1;
7903 DECL_CONTEXT (decl) = ctype;
7904 }
7905
7906 if (deletedp)
7907 DECL_DELETED_FN (decl) = 1;
7908
7909 if (ctype)
7910 {
7911 DECL_CONTEXT (decl) = ctype;
7912 if (funcdef_flag)
7913 check_class_member_definition_namespace (decl);
7914 }
7915
7916 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
7917 {
7918 if (PROCESSING_REAL_TEMPLATE_DECL_P())
7919 error ("cannot declare %<::main%> to be a template");
7920 if (inlinep & 1)
7921 error ("cannot declare %<::main%> to be inline");
7922 if (inlinep & 2)
7923 error ("cannot declare %<::main%> to be constexpr");
7924 if (!publicp)
7925 error ("cannot declare %<::main%> to be static");
7926 inlinep = 0;
7927 publicp = 1;
7928 }
7929
7930 /* Members of anonymous types and local classes have no linkage; make
7931 them internal. If a typedef is made later, this will be changed. */
7932 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
7933 || decl_function_context (TYPE_MAIN_DECL (ctype))))
7934 publicp = 0;
7935
7936 if (publicp && cxx_dialect == cxx98)
7937 {
7938 /* [basic.link]: A name with no linkage (notably, the name of a class
7939 or enumeration declared in a local scope) shall not be used to
7940 declare an entity with linkage.
7941
7942 DR 757 relaxes this restriction for C++0x. */
7943 no_linkage_error (decl);
7944 }
7945
7946 TREE_PUBLIC (decl) = publicp;
7947 if (! publicp)
7948 {
7949 DECL_INTERFACE_KNOWN (decl) = 1;
7950 DECL_NOT_REALLY_EXTERN (decl) = 1;
7951 }
7952
7953 /* If the declaration was declared inline, mark it as such. */
7954 if (inlinep)
7955 {
7956 DECL_DECLARED_INLINE_P (decl) = 1;
7957 if (publicp)
7958 DECL_COMDAT (decl) = 1;
7959 }
7960 if (inlinep & 2)
7961 DECL_DECLARED_CONSTEXPR_P (decl) = true;
7962
7963 // If the concept declaration specifier was found, check
7964 // that the declaration satisfies the necessary requirements.
7965 if (concept_p)
7966 {
7967 DECL_DECLARED_CONCEPT_P (decl) = true;
7968 check_concept_fn (decl);
7969 }
7970
7971 DECL_EXTERNAL (decl) = 1;
7972 if (TREE_CODE (type) == FUNCTION_TYPE)
7973 {
7974 if (quals)
7975 {
7976 error (ctype
7977 ? G_("static member function %qD cannot have cv-qualifier")
7978 : G_("non-member function %qD cannot have cv-qualifier"),
7979 decl);
7980 quals = TYPE_UNQUALIFIED;
7981 }
7982
7983 if (rqual)
7984 {
7985 error (ctype
7986 ? G_("static member function %qD cannot have ref-qualifier")
7987 : G_("non-member function %qD cannot have ref-qualifier"),
7988 decl);
7989 rqual = REF_QUAL_NONE;
7990 }
7991 }
7992
7993 if (IDENTIFIER_OPNAME_P (DECL_NAME (decl))
7994 && !grok_op_properties (decl, /*complain=*/true))
7995 return NULL_TREE;
7996 else if (UDLIT_OPER_P (DECL_NAME (decl)))
7997 {
7998 bool long_long_unsigned_p;
7999 bool long_double_p;
8000 const char *suffix = NULL;
8001 /* [over.literal]/6: Literal operators shall not have C linkage. */
8002 if (DECL_LANGUAGE (decl) == lang_c)
8003 {
8004 error ("literal operator with C linkage");
8005 return NULL_TREE;
8006 }
8007
8008 if (DECL_NAMESPACE_SCOPE_P (decl))
8009 {
8010 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
8011 &long_double_p))
8012 {
8013 error ("%qD has invalid argument list", decl);
8014 return NULL_TREE;
8015 }
8016
8017 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
8018 if (long_long_unsigned_p)
8019 {
8020 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
8021 warning (0, "integer suffix %<%s%>"
8022 " shadowed by implementation", suffix);
8023 }
8024 else if (long_double_p)
8025 {
8026 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
8027 warning (0, "floating point suffix %<%s%>"
8028 " shadowed by implementation", suffix);
8029 }
8030 }
8031 else
8032 {
8033 error ("%qD must be a non-member function", decl);
8034 return NULL_TREE;
8035 }
8036 }
8037
8038 if (funcdef_flag)
8039 /* Make the init_value nonzero so pushdecl knows this is not
8040 tentative. error_mark_node is replaced later with the BLOCK. */
8041 DECL_INITIAL (decl) = error_mark_node;
8042
8043 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
8044 TREE_NOTHROW (decl) = 1;
8045
8046 if (flag_openmp || flag_openmp_simd || flag_cilkplus)
8047 {
8048 /* Adjust "omp declare simd" attributes. */
8049 tree ods = lookup_attribute ("omp declare simd", *attrlist);
8050 if (ods)
8051 {
8052 tree attr;
8053 for (attr = ods; attr;
8054 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
8055 {
8056 if (TREE_CODE (type) == METHOD_TYPE)
8057 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
8058 DECL_ARGUMENTS (decl), NULL);
8059 if (TREE_VALUE (attr) != NULL_TREE)
8060 {
8061 tree cl = TREE_VALUE (TREE_VALUE (attr));
8062 cl = c_omp_declare_simd_clauses_to_numbers
8063 (DECL_ARGUMENTS (decl), cl);
8064 if (cl)
8065 TREE_VALUE (TREE_VALUE (attr)) = cl;
8066 else
8067 TREE_VALUE (attr) = NULL_TREE;
8068 }
8069 }
8070 }
8071 }
8072
8073 /* Caller will do the rest of this. */
8074 if (check < 0)
8075 return decl;
8076
8077 if (ctype != NULL_TREE)
8078 grokclassfn (ctype, decl, flags);
8079
8080 /* 12.4/3 */
8081 if (cxx_dialect >= cxx11
8082 && DECL_DESTRUCTOR_P (decl)
8083 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
8084 && !processing_template_decl)
8085 deduce_noexcept_on_destructor (decl);
8086
8087 decl = check_explicit_specialization (orig_declarator, decl,
8088 template_count,
8089 2 * funcdef_flag +
8090 4 * (friendp != 0) +
8091 8 * concept_p);
8092 if (decl == error_mark_node)
8093 return NULL_TREE;
8094
8095 if (DECL_STATIC_FUNCTION_P (decl))
8096 check_static_quals (decl, quals);
8097
8098 if (attrlist)
8099 {
8100 cplus_decl_attributes (&decl, *attrlist, 0);
8101 *attrlist = NULL_TREE;
8102 }
8103
8104 /* Check main's type after attributes have been applied. */
8105 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8106 {
8107 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
8108 integer_type_node))
8109 {
8110 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
8111 tree newtype;
8112 error ("%<::main%> must return %<int%>");
8113 newtype = build_function_type (integer_type_node, oldtypeargs);
8114 TREE_TYPE (decl) = newtype;
8115 }
8116 if (warn_main)
8117 check_main_parameter_types (decl);
8118 }
8119
8120 if (ctype != NULL_TREE
8121 && (! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
8122 && check)
8123 {
8124 tree old_decl = check_classfn (ctype, decl,
8125 (processing_template_decl
8126 > template_class_depth (ctype))
8127 ? current_template_parms
8128 : NULL_TREE);
8129
8130 if (old_decl == error_mark_node)
8131 return NULL_TREE;
8132
8133 if (old_decl)
8134 {
8135 tree ok;
8136 tree pushed_scope;
8137
8138 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
8139 /* Because grokfndecl is always supposed to return a
8140 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
8141 here. We depend on our callers to figure out that its
8142 really a template that's being returned. */
8143 old_decl = DECL_TEMPLATE_RESULT (old_decl);
8144
8145 if (DECL_STATIC_FUNCTION_P (old_decl)
8146 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
8147 {
8148 /* Remove the `this' parm added by grokclassfn. */
8149 revert_static_member_fn (decl);
8150 check_static_quals (decl, quals);
8151 }
8152 if (DECL_ARTIFICIAL (old_decl))
8153 {
8154 error ("definition of implicitly-declared %qD", old_decl);
8155 return NULL_TREE;
8156 }
8157 else if (DECL_DEFAULTED_FN (old_decl))
8158 {
8159 error ("definition of explicitly-defaulted %q+D", decl);
8160 error ("%q+#D explicitly defaulted here", old_decl);
8161 return NULL_TREE;
8162 }
8163
8164 /* Since we've smashed OLD_DECL to its
8165 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
8166 if (TREE_CODE (decl) == TEMPLATE_DECL)
8167 decl = DECL_TEMPLATE_RESULT (decl);
8168
8169 /* Attempt to merge the declarations. This can fail, in
8170 the case of some invalid specialization declarations. */
8171 pushed_scope = push_scope (ctype);
8172 ok = duplicate_decls (decl, old_decl, friendp);
8173 if (pushed_scope)
8174 pop_scope (pushed_scope);
8175 if (!ok)
8176 {
8177 error ("no %q#D member function declared in class %qT",
8178 decl, ctype);
8179 return NULL_TREE;
8180 }
8181 if (ok == error_mark_node)
8182 return NULL_TREE;
8183 return old_decl;
8184 }
8185 }
8186
8187 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
8188 return NULL_TREE;
8189
8190 if (ctype == NULL_TREE || check)
8191 return decl;
8192
8193 if (virtualp)
8194 DECL_VIRTUAL_P (decl) = 1;
8195
8196 return decl;
8197 }
8198
8199 /* decl is a FUNCTION_DECL.
8200 specifiers are the parsed virt-specifiers.
8201
8202 Set flags to reflect the virt-specifiers.
8203
8204 Returns decl. */
8205
8206 static tree
8207 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
8208 {
8209 if (decl == NULL_TREE)
8210 return decl;
8211 if (specifiers & VIRT_SPEC_OVERRIDE)
8212 DECL_OVERRIDE_P (decl) = 1;
8213 if (specifiers & VIRT_SPEC_FINAL)
8214 DECL_FINAL_P (decl) = 1;
8215 return decl;
8216 }
8217
8218 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
8219 the linkage that DECL will receive in the object file. */
8220
8221 static void
8222 set_linkage_for_static_data_member (tree decl)
8223 {
8224 /* A static data member always has static storage duration and
8225 external linkage. Note that static data members are forbidden in
8226 local classes -- the only situation in which a class has
8227 non-external linkage. */
8228 TREE_PUBLIC (decl) = 1;
8229 TREE_STATIC (decl) = 1;
8230 /* For non-template classes, static data members are always put
8231 out in exactly those files where they are defined, just as
8232 with ordinary namespace-scope variables. */
8233 if (!processing_template_decl)
8234 DECL_INTERFACE_KNOWN (decl) = 1;
8235 }
8236
8237 /* Create a VAR_DECL named NAME with the indicated TYPE.
8238
8239 If SCOPE is non-NULL, it is the class type or namespace containing
8240 the variable. If SCOPE is NULL, the variable should is created in
8241 the innermost enclosing scope. */
8242
8243 static tree
8244 grokvardecl (tree type,
8245 tree name,
8246 tree orig_declarator,
8247 const cp_decl_specifier_seq *declspecs,
8248 int initialized,
8249 int flags,
8250 int template_count,
8251 tree scope)
8252 {
8253 tree decl;
8254 tree explicit_scope;
8255
8256 gcc_assert (!name || identifier_p (name));
8257
8258 bool constp = flags&1;
8259 bool conceptp = flags&2;
8260
8261 /* Compute the scope in which to place the variable, but remember
8262 whether or not that scope was explicitly specified by the user. */
8263 explicit_scope = scope;
8264 if (!scope)
8265 {
8266 /* An explicit "extern" specifier indicates a namespace-scope
8267 variable. */
8268 if (declspecs->storage_class == sc_extern)
8269 scope = current_decl_namespace ();
8270 else if (!at_function_scope_p ())
8271 scope = current_scope ();
8272 }
8273
8274 if (scope
8275 && (/* If the variable is a namespace-scope variable declared in a
8276 template, we need DECL_LANG_SPECIFIC. */
8277 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
8278 /* Similarly for namespace-scope variables with language linkage
8279 other than C++. */
8280 || (TREE_CODE (scope) == NAMESPACE_DECL
8281 && current_lang_name != lang_name_cplusplus)
8282 /* Similarly for static data members. */
8283 || TYPE_P (scope)
8284 /* Similarly for explicit specializations. */
8285 || (orig_declarator
8286 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
8287 decl = build_lang_decl (VAR_DECL, name, type);
8288 else
8289 decl = build_decl (input_location, VAR_DECL, name, type);
8290
8291 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
8292 set_decl_namespace (decl, explicit_scope, 0);
8293 else
8294 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
8295
8296 if (declspecs->storage_class == sc_extern)
8297 {
8298 DECL_THIS_EXTERN (decl) = 1;
8299 DECL_EXTERNAL (decl) = !initialized;
8300 }
8301
8302 if (DECL_CLASS_SCOPE_P (decl))
8303 {
8304 set_linkage_for_static_data_member (decl);
8305 /* This function is only called with out-of-class definitions. */
8306 DECL_EXTERNAL (decl) = 0;
8307 check_class_member_definition_namespace (decl);
8308 }
8309 /* At top level, either `static' or no s.c. makes a definition
8310 (perhaps tentative), and absence of `static' makes it public. */
8311 else if (toplevel_bindings_p ())
8312 {
8313 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
8314 && (DECL_THIS_EXTERN (decl) || ! constp));
8315 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
8316 }
8317 /* Not at top level, only `static' makes a static definition. */
8318 else
8319 {
8320 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
8321 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
8322 }
8323
8324 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
8325 {
8326 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
8327 {
8328 CP_DECL_THREAD_LOCAL_P (decl) = true;
8329 if (!processing_template_decl)
8330 set_decl_tls_model (decl, decl_default_tls_model (decl));
8331 }
8332 if (declspecs->gnu_thread_keyword_p)
8333 SET_DECL_GNU_TLS_P (decl);
8334 }
8335
8336 /* If the type of the decl has no linkage, make sure that we'll
8337 notice that in mark_used. */
8338 if (cxx_dialect > cxx98
8339 && decl_linkage (decl) != lk_none
8340 && DECL_LANG_SPECIFIC (decl) == NULL
8341 && !DECL_EXTERN_C_P (decl)
8342 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
8343 retrofit_lang_decl (decl);
8344
8345 if (TREE_PUBLIC (decl))
8346 {
8347 /* [basic.link]: A name with no linkage (notably, the name of a class
8348 or enumeration declared in a local scope) shall not be used to
8349 declare an entity with linkage.
8350
8351 DR 757 relaxes this restriction for C++0x. */
8352 if (cxx_dialect < cxx11)
8353 no_linkage_error (decl);
8354 }
8355 else
8356 DECL_INTERFACE_KNOWN (decl) = 1;
8357
8358 if (DECL_NAME (decl)
8359 && MAIN_NAME_P (DECL_NAME (decl))
8360 && scope == global_namespace)
8361 error ("cannot declare %<::main%> to be a global variable");
8362
8363 /* Check that the variable can be safely declared as a concept.
8364 Note that this also forbids explicit specializations. */
8365 if (conceptp)
8366 {
8367 if (!processing_template_decl)
8368 {
8369 error ("a non-template variable cannot be %<concept%>");
8370 return NULL_TREE;
8371 }
8372 else
8373 DECL_DECLARED_CONCEPT_P (decl) = true;
8374 if (!same_type_ignoring_top_level_qualifiers_p (type, boolean_type_node))
8375 error_at (declspecs->locations[ds_type_spec],
8376 "concept must have type %<bool%>");
8377 }
8378 else if (flag_concepts
8379 && processing_template_decl > template_class_depth (scope))
8380 {
8381 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
8382 tree ci = build_constraints (reqs, NULL_TREE);
8383 set_constraints (decl, ci);
8384 }
8385
8386 // Handle explicit specializations and instantiations of variable templates.
8387 if (orig_declarator)
8388 decl = check_explicit_specialization (orig_declarator, decl,
8389 template_count, conceptp * 8);
8390
8391 return decl != error_mark_node ? decl : NULL_TREE;
8392 }
8393
8394 /* Create and return a canonical pointer to member function type, for
8395 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
8396
8397 tree
8398 build_ptrmemfunc_type (tree type)
8399 {
8400 tree field, fields;
8401 tree t;
8402
8403 if (type == error_mark_node)
8404 return type;
8405
8406 /* Make sure that we always have the unqualified pointer-to-member
8407 type first. */
8408 if (cp_cv_quals quals = cp_type_quals (type))
8409 {
8410 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
8411 return cp_build_qualified_type (unqual, quals);
8412 }
8413
8414 /* If a canonical type already exists for this type, use it. We use
8415 this method instead of type_hash_canon, because it only does a
8416 simple equality check on the list of field members. */
8417
8418 if ((t = TYPE_GET_PTRMEMFUNC_TYPE (type)))
8419 return t;
8420
8421 t = make_node (RECORD_TYPE);
8422
8423 /* Let the front end know this is a pointer to member function. */
8424 TYPE_PTRMEMFUNC_FLAG (t) = 1;
8425
8426 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
8427 fields = field;
8428
8429 field = build_decl (input_location, FIELD_DECL, delta_identifier,
8430 delta_type_node);
8431 DECL_CHAIN (field) = fields;
8432 fields = field;
8433
8434 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
8435
8436 /* Zap out the name so that the back end will give us the debugging
8437 information for this anonymous RECORD_TYPE. */
8438 TYPE_NAME (t) = NULL_TREE;
8439
8440 /* Cache this pointer-to-member type so that we can find it again
8441 later. */
8442 TYPE_SET_PTRMEMFUNC_TYPE (type, t);
8443
8444 if (TYPE_STRUCTURAL_EQUALITY_P (type))
8445 SET_TYPE_STRUCTURAL_EQUALITY (t);
8446 else if (TYPE_CANONICAL (type) != type)
8447 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
8448
8449 return t;
8450 }
8451
8452 /* Create and return a pointer to data member type. */
8453
8454 tree
8455 build_ptrmem_type (tree class_type, tree member_type)
8456 {
8457 if (TREE_CODE (member_type) == METHOD_TYPE)
8458 {
8459 cp_cv_quals quals = type_memfn_quals (member_type);
8460 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
8461 member_type = build_memfn_type (member_type, class_type, quals, rqual);
8462 return build_ptrmemfunc_type (build_pointer_type (member_type));
8463 }
8464 else
8465 {
8466 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
8467 return build_offset_type (class_type, member_type);
8468 }
8469 }
8470
8471 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
8472 Check to see that the definition is valid. Issue appropriate error
8473 messages. Return 1 if the definition is particularly bad, or 0
8474 otherwise. */
8475
8476 static int
8477 check_static_variable_definition (tree decl, tree type)
8478 {
8479 /* Can't check yet if we don't know the type. */
8480 if (dependent_type_p (type))
8481 return 0;
8482 /* If DECL is declared constexpr, we'll do the appropriate checks
8483 in check_initializer. */
8484 if (DECL_P (decl) && DECL_DECLARED_CONSTEXPR_P (decl))
8485 return 0;
8486 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8487 {
8488 if (!COMPLETE_TYPE_P (type))
8489 error ("in-class initialization of static data member %q#D of "
8490 "incomplete type", decl);
8491 else if (literal_type_p (type))
8492 permerror (input_location,
8493 "%<constexpr%> needed for in-class initialization of "
8494 "static data member %q#D of non-integral type", decl);
8495 else
8496 error ("in-class initialization of static data member %q#D of "
8497 "non-literal type", decl);
8498 return 1;
8499 }
8500
8501 /* Motion 10 at San Diego: If a static const integral data member is
8502 initialized with an integral constant expression, the initializer
8503 may appear either in the declaration (within the class), or in
8504 the definition, but not both. If it appears in the class, the
8505 member is a member constant. The file-scope definition is always
8506 required. */
8507 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
8508 {
8509 error ("invalid in-class initialization of static data member "
8510 "of non-integral type %qT",
8511 type);
8512 return 1;
8513 }
8514 else if (!CP_TYPE_CONST_P (type))
8515 error ("ISO C++ forbids in-class initialization of non-const "
8516 "static member %qD",
8517 decl);
8518 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
8519 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids initialization of member constant "
8520 "%qD of non-integral type %qT", decl, type);
8521
8522 return 0;
8523 }
8524
8525 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
8526 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
8527 expressions out into temporary variables so that walk_tree doesn't
8528 step into them (c++/15764). */
8529
8530 static tree
8531 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
8532 {
8533 hash_set<tree> *pset = (hash_set<tree> *)data;
8534 tree expr = *expr_p;
8535 if (TREE_CODE (expr) == SAVE_EXPR)
8536 {
8537 tree op = TREE_OPERAND (expr, 0);
8538 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
8539 if (TREE_SIDE_EFFECTS (op))
8540 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
8541 *walk_subtrees = 0;
8542 }
8543 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
8544 *walk_subtrees = 0;
8545 return NULL;
8546 }
8547
8548 /* Entry point for the above. */
8549
8550 static void
8551 stabilize_vla_size (tree size)
8552 {
8553 hash_set<tree> pset;
8554 /* Break out any function calls into temporary variables. */
8555 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
8556 }
8557
8558 /* Helper function for compute_array_index_type. Look for SIZEOF_EXPR
8559 not inside of SAVE_EXPR and fold them. */
8560
8561 static tree
8562 fold_sizeof_expr_r (tree *expr_p, int *walk_subtrees, void *data)
8563 {
8564 tree expr = *expr_p;
8565 if (TREE_CODE (expr) == SAVE_EXPR || TYPE_P (expr))
8566 *walk_subtrees = 0;
8567 else if (TREE_CODE (expr) == SIZEOF_EXPR)
8568 {
8569 *(bool *)data = true;
8570 if (SIZEOF_EXPR_TYPE_P (expr))
8571 expr = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (expr, 0)),
8572 SIZEOF_EXPR, false);
8573 else if (TYPE_P (TREE_OPERAND (expr, 0)))
8574 expr = cxx_sizeof_or_alignof_type (TREE_OPERAND (expr, 0), SIZEOF_EXPR,
8575 false);
8576 else
8577 expr = cxx_sizeof_or_alignof_expr (TREE_OPERAND (expr, 0), SIZEOF_EXPR,
8578 false);
8579 if (expr == error_mark_node)
8580 expr = size_one_node;
8581 *expr_p = expr;
8582 *walk_subtrees = 0;
8583 }
8584 return NULL;
8585 }
8586
8587 /* Given the SIZE (i.e., number of elements) in an array, compute an
8588 appropriate index type for the array. If non-NULL, NAME is the
8589 name of the thing being declared. */
8590
8591 tree
8592 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
8593 {
8594 tree itype;
8595 tree osize = size;
8596
8597 if (error_operand_p (size))
8598 return error_mark_node;
8599
8600 if (!type_dependent_expression_p (size))
8601 {
8602 tree type = TREE_TYPE (size);
8603
8604 mark_rvalue_use (size);
8605
8606 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
8607 && TREE_SIDE_EFFECTS (size))
8608 /* In C++98, we mark a non-constant array bound with a magic
8609 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
8610 else
8611 {
8612 size = instantiate_non_dependent_expr_sfinae (size, complain);
8613
8614 if (CLASS_TYPE_P (type)
8615 && CLASSTYPE_LITERAL_P (type))
8616 {
8617 size = build_expr_type_conversion (WANT_INT, size, true);
8618 if (!size)
8619 {
8620 if (!(complain & tf_error))
8621 return error_mark_node;
8622 if (name)
8623 error ("size of array %qD has non-integral type %qT",
8624 name, type);
8625 else
8626 error ("size of array has non-integral type %qT", type);
8627 size = integer_one_node;
8628 }
8629 if (size == error_mark_node)
8630 return error_mark_node;
8631 type = TREE_TYPE (size);
8632 }
8633
8634 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8635 size = maybe_constant_value (size);
8636
8637 if (!TREE_CONSTANT (size))
8638 size = osize;
8639 }
8640
8641 if (error_operand_p (size))
8642 return error_mark_node;
8643
8644 /* The array bound must be an integer type. */
8645 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
8646 {
8647 if (!(complain & tf_error))
8648 return error_mark_node;
8649 if (name)
8650 error ("size of array %qD has non-integral type %qT", name, type);
8651 else
8652 error ("size of array has non-integral type %qT", type);
8653 size = integer_one_node;
8654 type = TREE_TYPE (size);
8655 }
8656 }
8657
8658 /* A type is dependent if it is...an array type constructed from any
8659 dependent type or whose size is specified by a constant expression
8660 that is value-dependent. */
8661 /* We can only call value_dependent_expression_p on integral constant
8662 expressions; treat non-constant expressions as dependent, too. */
8663 if (processing_template_decl
8664 && (type_dependent_expression_p (size)
8665 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
8666 {
8667 /* We cannot do any checking for a SIZE that isn't known to be
8668 constant. Just build the index type and mark that it requires
8669 structural equality checks. */
8670 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
8671 size, size_one_node));
8672 TYPE_DEPENDENT_P (itype) = 1;
8673 TYPE_DEPENDENT_P_VALID (itype) = 1;
8674 SET_TYPE_STRUCTURAL_EQUALITY (itype);
8675 return itype;
8676 }
8677
8678 /* Normally, the array-bound will be a constant. */
8679 if (TREE_CODE (size) == INTEGER_CST)
8680 {
8681 /* Check to see if the array bound overflowed. Make that an
8682 error, no matter how generous we're being. */
8683 constant_expression_error (size);
8684
8685 /* An array must have a positive number of elements. */
8686 if (tree_int_cst_lt (size, integer_zero_node))
8687 {
8688 if (!(complain & tf_error))
8689 return error_mark_node;
8690 if (name)
8691 error ("size of array %qD is negative", name);
8692 else
8693 error ("size of array is negative");
8694 size = integer_one_node;
8695 }
8696 /* As an extension we allow zero-sized arrays. */
8697 else if (integer_zerop (size))
8698 {
8699 if (!(complain & tf_error))
8700 /* We must fail if performing argument deduction (as
8701 indicated by the state of complain), so that
8702 another substitution can be found. */
8703 return error_mark_node;
8704 else if (in_system_header_at (input_location))
8705 /* Allow them in system headers because glibc uses them. */;
8706 else if (name)
8707 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array %qD", name);
8708 else
8709 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array");
8710 }
8711 }
8712 else if (TREE_CONSTANT (size)
8713 /* We don't allow VLAs at non-function scopes, or during
8714 tentative template substitution. */
8715 || !at_function_scope_p ()
8716 || !(complain & tf_error))
8717 {
8718 if (!(complain & tf_error))
8719 return error_mark_node;
8720 /* `(int) &fn' is not a valid array bound. */
8721 if (name)
8722 error ("size of array %qD is not an integral constant-expression",
8723 name);
8724 else
8725 error ("size of array is not an integral constant-expression");
8726 size = integer_one_node;
8727 }
8728 else if (pedantic && warn_vla != 0)
8729 {
8730 if (name)
8731 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array %qD", name);
8732 else
8733 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array");
8734 }
8735 else if (warn_vla > 0)
8736 {
8737 if (name)
8738 warning (OPT_Wvla,
8739 "variable length array %qD is used", name);
8740 else
8741 warning (OPT_Wvla,
8742 "variable length array is used");
8743 }
8744
8745 if (processing_template_decl && !TREE_CONSTANT (size))
8746 /* A variable sized array. */
8747 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
8748 else
8749 {
8750 HOST_WIDE_INT saved_processing_template_decl;
8751
8752 /* Compute the index of the largest element in the array. It is
8753 one less than the number of elements in the array. We save
8754 and restore PROCESSING_TEMPLATE_DECL so that computations in
8755 cp_build_binary_op will be appropriately folded. */
8756 saved_processing_template_decl = processing_template_decl;
8757 processing_template_decl = 0;
8758 itype = cp_build_binary_op (input_location,
8759 MINUS_EXPR,
8760 cp_convert (ssizetype, size, complain),
8761 cp_convert (ssizetype, integer_one_node,
8762 complain),
8763 complain);
8764 itype = fold (itype);
8765 processing_template_decl = saved_processing_template_decl;
8766
8767 if (!TREE_CONSTANT (itype))
8768 {
8769 /* A variable sized array. */
8770 itype = variable_size (itype);
8771
8772 if (TREE_CODE (itype) != SAVE_EXPR)
8773 {
8774 /* Look for SIZEOF_EXPRs in itype and fold them, otherwise
8775 they might survive till gimplification. */
8776 tree newitype = itype;
8777 bool found = false;
8778 cp_walk_tree_without_duplicates (&newitype,
8779 fold_sizeof_expr_r, &found);
8780 if (found)
8781 itype = variable_size (fold (newitype));
8782 }
8783
8784 stabilize_vla_size (itype);
8785
8786 if (flag_sanitize & SANITIZE_VLA
8787 && do_ubsan_in_current_function ())
8788 {
8789 /* We have to add 1 -- in the ubsan routine we generate
8790 LE_EXPR rather than LT_EXPR. */
8791 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
8792 build_one_cst (TREE_TYPE (itype)));
8793 t = ubsan_instrument_vla (input_location, t);
8794 finish_expr_stmt (t);
8795 }
8796 }
8797 /* Make sure that there was no overflow when creating to a signed
8798 index type. (For example, on a 32-bit machine, an array with
8799 size 2^32 - 1 is too big.) */
8800 else if (TREE_CODE (itype) == INTEGER_CST
8801 && TREE_OVERFLOW (itype))
8802 {
8803 if (!(complain & tf_error))
8804 return error_mark_node;
8805 error ("overflow in array dimension");
8806 TREE_OVERFLOW (itype) = 0;
8807 }
8808 }
8809
8810 /* Create and return the appropriate index type. */
8811 itype = build_index_type (itype);
8812
8813 /* If the index type were dependent, we would have returned early, so
8814 remember that it isn't. */
8815 TYPE_DEPENDENT_P (itype) = 0;
8816 TYPE_DEPENDENT_P_VALID (itype) = 1;
8817 return itype;
8818 }
8819
8820 /* Returns the scope (if any) in which the entity declared by
8821 DECLARATOR will be located. If the entity was declared with an
8822 unqualified name, NULL_TREE is returned. */
8823
8824 tree
8825 get_scope_of_declarator (const cp_declarator *declarator)
8826 {
8827 while (declarator && declarator->kind != cdk_id)
8828 declarator = declarator->declarator;
8829
8830 /* If the declarator-id is a SCOPE_REF, the scope in which the
8831 declaration occurs is the first operand. */
8832 if (declarator
8833 && declarator->u.id.qualifying_scope)
8834 return declarator->u.id.qualifying_scope;
8835
8836 /* Otherwise, the declarator is not a qualified name; the entity will
8837 be declared in the current scope. */
8838 return NULL_TREE;
8839 }
8840
8841 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
8842 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
8843 with this type. */
8844
8845 static tree
8846 create_array_type_for_decl (tree name, tree type, tree size)
8847 {
8848 tree itype = NULL_TREE;
8849
8850 /* If things have already gone awry, bail now. */
8851 if (type == error_mark_node || size == error_mark_node)
8852 return error_mark_node;
8853
8854 /* 8.3.4/1: If the type of the identifier of D contains the auto
8855 type-specifier, the program is ill-formed. */
8856 if (type_uses_auto (type))
8857 {
8858 error ("%qD declared as array of %qT", name, type);
8859 return error_mark_node;
8860 }
8861
8862 /* If there are some types which cannot be array elements,
8863 issue an error-message and return. */
8864 switch (TREE_CODE (type))
8865 {
8866 case VOID_TYPE:
8867 if (name)
8868 error ("declaration of %qD as array of void", name);
8869 else
8870 error ("creating array of void");
8871 return error_mark_node;
8872
8873 case FUNCTION_TYPE:
8874 if (name)
8875 error ("declaration of %qD as array of functions", name);
8876 else
8877 error ("creating array of functions");
8878 return error_mark_node;
8879
8880 case REFERENCE_TYPE:
8881 if (name)
8882 error ("declaration of %qD as array of references", name);
8883 else
8884 error ("creating array of references");
8885 return error_mark_node;
8886
8887 case METHOD_TYPE:
8888 if (name)
8889 error ("declaration of %qD as array of function members", name);
8890 else
8891 error ("creating array of function members");
8892 return error_mark_node;
8893
8894 default:
8895 break;
8896 }
8897
8898 /* [dcl.array]
8899
8900 The constant expressions that specify the bounds of the arrays
8901 can be omitted only for the first member of the sequence. */
8902 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
8903 {
8904 if (name)
8905 error ("declaration of %qD as multidimensional array must "
8906 "have bounds for all dimensions except the first",
8907 name);
8908 else
8909 error ("multidimensional array must have bounds for all "
8910 "dimensions except the first");
8911
8912 return error_mark_node;
8913 }
8914
8915 /* Figure out the index type for the array. */
8916 if (size)
8917 itype = compute_array_index_type (name, size, tf_warning_or_error);
8918
8919 /* [dcl.array]
8920 T is called the array element type; this type shall not be [...] an
8921 abstract class type. */
8922 abstract_virtuals_error (name, type);
8923
8924 return build_cplus_array_type (type, itype);
8925 }
8926
8927 /* Check that it's OK to declare a function with the indicated TYPE.
8928 SFK indicates the kind of special function (if any) that this
8929 function is. OPTYPE is the type given in a conversion operator
8930 declaration, or the class type for a constructor/destructor.
8931 Returns the actual return type of the function; that
8932 may be different than TYPE if an error occurs, or for certain
8933 special functions. */
8934
8935 static tree
8936 check_special_function_return_type (special_function_kind sfk,
8937 tree type,
8938 tree optype)
8939 {
8940 switch (sfk)
8941 {
8942 case sfk_constructor:
8943 if (type)
8944 error ("return type specification for constructor invalid");
8945
8946 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
8947 type = build_pointer_type (optype);
8948 else
8949 type = void_type_node;
8950 break;
8951
8952 case sfk_destructor:
8953 if (type)
8954 error ("return type specification for destructor invalid");
8955 /* We can't use the proper return type here because we run into
8956 problems with ambiguous bases and covariant returns.
8957 Java classes are left unchanged because (void *) isn't a valid
8958 Java type, and we don't want to change the Java ABI. */
8959 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
8960 type = build_pointer_type (void_type_node);
8961 else
8962 type = void_type_node;
8963 break;
8964
8965 case sfk_conversion:
8966 if (type)
8967 error ("return type specified for %<operator %T%>", optype);
8968 type = optype;
8969 break;
8970
8971 default:
8972 gcc_unreachable ();
8973 }
8974
8975 return type;
8976 }
8977
8978 /* A variable or data member (whose unqualified name is IDENTIFIER)
8979 has been declared with the indicated TYPE. If the TYPE is not
8980 acceptable, issue an error message and return a type to use for
8981 error-recovery purposes. */
8982
8983 tree
8984 check_var_type (tree identifier, tree type)
8985 {
8986 if (VOID_TYPE_P (type))
8987 {
8988 if (!identifier)
8989 error ("unnamed variable or field declared void");
8990 else if (identifier_p (identifier))
8991 {
8992 gcc_assert (!IDENTIFIER_OPNAME_P (identifier));
8993 error ("variable or field %qE declared void", identifier);
8994 }
8995 else
8996 error ("variable or field declared void");
8997 type = error_mark_node;
8998 }
8999
9000 return type;
9001 }
9002
9003 /* Given declspecs and a declarator (abstract or otherwise), determine
9004 the name and type of the object declared and construct a DECL node
9005 for it.
9006
9007 DECLSPECS points to the representation of declaration-specifier
9008 sequence that precedes declarator.
9009
9010 DECL_CONTEXT says which syntactic context this declaration is in:
9011 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
9012 FUNCDEF for a function definition. Like NORMAL but a few different
9013 error messages in each case. Return value may be zero meaning
9014 this definition is too screwy to try to parse.
9015 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
9016 handle member functions (which have FIELD context).
9017 Return value may be zero meaning this definition is too screwy to
9018 try to parse.
9019 PARM for a parameter declaration (either within a function prototype
9020 or before a function body). Make a PARM_DECL, or return void_type_node.
9021 TPARM for a template parameter declaration.
9022 CATCHPARM for a parameter declaration before a catch clause.
9023 TYPENAME if for a typename (in a cast or sizeof).
9024 Don't make a DECL node; just return the ..._TYPE node.
9025 FIELD for a struct or union field; make a FIELD_DECL.
9026 BITFIELD for a field with specified width.
9027
9028 INITIALIZED is as for start_decl.
9029
9030 ATTRLIST is a pointer to the list of attributes, which may be NULL
9031 if there are none; *ATTRLIST may be modified if attributes from inside
9032 the declarator should be applied to the declaration.
9033
9034 When this function is called, scoping variables (such as
9035 CURRENT_CLASS_TYPE) should reflect the scope in which the
9036 declaration occurs, not the scope in which the new declaration will
9037 be placed. For example, on:
9038
9039 void S::f() { ... }
9040
9041 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
9042 should not be `S'.
9043
9044 Returns a DECL (if a declarator is present), a TYPE (if there is no
9045 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
9046 error occurs. */
9047
9048 tree
9049 grokdeclarator (const cp_declarator *declarator,
9050 cp_decl_specifier_seq *declspecs,
9051 enum decl_context decl_context,
9052 int initialized,
9053 tree* attrlist)
9054 {
9055 tree type = NULL_TREE;
9056 int longlong = 0;
9057 int explicit_intN = 0;
9058 int virtualp, explicitp, friendp, inlinep, staticp;
9059 int explicit_int = 0;
9060 int explicit_char = 0;
9061 int defaulted_int = 0;
9062
9063 tree typedef_decl = NULL_TREE;
9064 const char *name = NULL;
9065 tree typedef_type = NULL_TREE;
9066 /* True if this declarator is a function definition. */
9067 bool funcdef_flag = false;
9068 cp_declarator_kind innermost_code = cdk_error;
9069 int bitfield = 0;
9070 #if 0
9071 /* See the code below that used this. */
9072 tree decl_attr = NULL_TREE;
9073 #endif
9074
9075 /* Keep track of what sort of function is being processed
9076 so that we can warn about default return values, or explicit
9077 return values which do not match prescribed defaults. */
9078 special_function_kind sfk = sfk_none;
9079
9080 tree dname = NULL_TREE;
9081 tree ctor_return_type = NULL_TREE;
9082 enum overload_flags flags = NO_SPECIAL;
9083 /* cv-qualifiers that apply to the declarator, for a declaration of
9084 a member function. */
9085 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
9086 /* virt-specifiers that apply to the declarator, for a declaration of
9087 a member function. */
9088 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
9089 /* ref-qualifier that applies to the declarator, for a declaration of
9090 a member function. */
9091 cp_ref_qualifier rqual = REF_QUAL_NONE;
9092 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
9093 int type_quals;
9094 tree raises = NULL_TREE;
9095 int template_count = 0;
9096 tree returned_attrs = NULL_TREE;
9097 tree parms = NULL_TREE;
9098 const cp_declarator *id_declarator;
9099 /* The unqualified name of the declarator; either an
9100 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
9101 tree unqualified_id;
9102 /* The class type, if any, in which this entity is located,
9103 or NULL_TREE if none. Note that this value may be different from
9104 the current class type; for example if an attempt is made to declare
9105 "A::f" inside "B", this value will be "A". */
9106 tree ctype = current_class_type;
9107 /* The NAMESPACE_DECL for the namespace in which this entity is
9108 located. If an unqualified name is used to declare the entity,
9109 this value will be NULL_TREE, even if the entity is located at
9110 namespace scope. */
9111 tree in_namespace = NULL_TREE;
9112 cp_storage_class storage_class;
9113 bool unsigned_p, signed_p, short_p, long_p, thread_p;
9114 bool type_was_error_mark_node = false;
9115 bool parameter_pack_p = declarator? declarator->parameter_pack_p : false;
9116 bool template_type_arg = false;
9117 bool template_parm_flag = false;
9118 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
9119 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
9120 bool late_return_type_p = false;
9121 bool array_parameter_p = false;
9122 source_location saved_loc = input_location;
9123 const char *errmsg;
9124 tree reqs = NULL_TREE;
9125
9126 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
9127 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
9128 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
9129 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
9130 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
9131 explicit_intN = declspecs->explicit_intN_p;
9132 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
9133
9134 // Was concept_p specified? Note that ds_concept
9135 // implies ds_constexpr!
9136 bool concept_p = decl_spec_seq_has_spec_p (declspecs, ds_concept);
9137 if (concept_p)
9138 constexpr_p = true;
9139
9140 if (decl_context == FUNCDEF)
9141 funcdef_flag = true, decl_context = NORMAL;
9142 else if (decl_context == MEMFUNCDEF)
9143 funcdef_flag = true, decl_context = FIELD;
9144 else if (decl_context == BITFIELD)
9145 bitfield = 1, decl_context = FIELD;
9146 else if (decl_context == TEMPLATE_TYPE_ARG)
9147 template_type_arg = true, decl_context = TYPENAME;
9148 else if (decl_context == TPARM)
9149 template_parm_flag = true, decl_context = PARM;
9150
9151 if (initialized > 1)
9152 funcdef_flag = true;
9153
9154 /* Look inside a declarator for the name being declared
9155 and get it as a string, for an error message. */
9156 for (id_declarator = declarator;
9157 id_declarator;
9158 id_declarator = id_declarator->declarator)
9159 {
9160 if (id_declarator->kind != cdk_id)
9161 innermost_code = id_declarator->kind;
9162
9163 switch (id_declarator->kind)
9164 {
9165 case cdk_function:
9166 if (id_declarator->declarator
9167 && id_declarator->declarator->kind == cdk_id)
9168 {
9169 sfk = id_declarator->declarator->u.id.sfk;
9170 if (sfk == sfk_destructor)
9171 flags = DTOR_FLAG;
9172 }
9173 break;
9174
9175 case cdk_id:
9176 {
9177 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
9178 tree decl = id_declarator->u.id.unqualified_name;
9179 if (!decl)
9180 break;
9181 if (qualifying_scope)
9182 {
9183 if (at_function_scope_p ())
9184 {
9185 /* [dcl.meaning]
9186
9187 A declarator-id shall not be qualified except
9188 for ...
9189
9190 None of the cases are permitted in block
9191 scope. */
9192 if (qualifying_scope == global_namespace)
9193 error ("invalid use of qualified-name %<::%D%>",
9194 decl);
9195 else if (TYPE_P (qualifying_scope))
9196 error ("invalid use of qualified-name %<%T::%D%>",
9197 qualifying_scope, decl);
9198 else
9199 error ("invalid use of qualified-name %<%D::%D%>",
9200 qualifying_scope, decl);
9201 return error_mark_node;
9202 }
9203 else if (TYPE_P (qualifying_scope))
9204 {
9205 ctype = qualifying_scope;
9206 if (!MAYBE_CLASS_TYPE_P (ctype))
9207 {
9208 error ("%q#T is not a class or a namespace", ctype);
9209 ctype = NULL_TREE;
9210 }
9211 else if (innermost_code != cdk_function
9212 && current_class_type
9213 && !uniquely_derived_from_p (ctype,
9214 current_class_type))
9215 {
9216 error ("invalid use of qualified-name %<%T::%D%>",
9217 qualifying_scope, decl);
9218 return error_mark_node;
9219 }
9220 }
9221 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
9222 in_namespace = qualifying_scope;
9223 }
9224 switch (TREE_CODE (decl))
9225 {
9226 case BIT_NOT_EXPR:
9227 {
9228 tree type;
9229
9230 if (innermost_code != cdk_function)
9231 {
9232 error ("declaration of %qD as non-function", decl);
9233 return error_mark_node;
9234 }
9235 else if (!qualifying_scope
9236 && !(current_class_type && at_class_scope_p ()))
9237 {
9238 error ("declaration of %qD as non-member", decl);
9239 return error_mark_node;
9240 }
9241
9242 type = TREE_OPERAND (decl, 0);
9243 if (TYPE_P (type))
9244 type = constructor_name (type);
9245 name = identifier_to_locale (IDENTIFIER_POINTER (type));
9246 dname = decl;
9247 }
9248 break;
9249
9250 case TEMPLATE_ID_EXPR:
9251 {
9252 tree fns = TREE_OPERAND (decl, 0);
9253
9254 dname = fns;
9255 if (!identifier_p (dname))
9256 {
9257 if (variable_template_p (dname))
9258 dname = DECL_NAME (dname);
9259 else
9260 {
9261 gcc_assert (is_overloaded_fn (dname));
9262 dname = DECL_NAME (get_first_fn (dname));
9263 }
9264 }
9265 }
9266 /* Fall through. */
9267
9268 case IDENTIFIER_NODE:
9269 if (identifier_p (decl))
9270 dname = decl;
9271
9272 if (C_IS_RESERVED_WORD (dname))
9273 {
9274 error ("declarator-id missing; using reserved word %qD",
9275 dname);
9276 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9277 }
9278 else if (!IDENTIFIER_TYPENAME_P (dname))
9279 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9280 else
9281 {
9282 gcc_assert (flags == NO_SPECIAL);
9283 flags = TYPENAME_FLAG;
9284 ctor_return_type = TREE_TYPE (dname);
9285 sfk = sfk_conversion;
9286 if (is_typename_at_global_scope (dname))
9287 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
9288 else
9289 name = "<invalid operator>";
9290 }
9291 break;
9292
9293 default:
9294 gcc_unreachable ();
9295 }
9296 break;
9297 }
9298
9299 case cdk_array:
9300 case cdk_pointer:
9301 case cdk_reference:
9302 case cdk_ptrmem:
9303 break;
9304
9305 case cdk_error:
9306 return error_mark_node;
9307
9308 default:
9309 gcc_unreachable ();
9310 }
9311 if (id_declarator->kind == cdk_id)
9312 break;
9313 }
9314
9315 /* [dcl.fct.edf]
9316
9317 The declarator in a function-definition shall have the form
9318 D1 ( parameter-declaration-clause) ... */
9319 if (funcdef_flag && innermost_code != cdk_function)
9320 {
9321 error ("function definition does not declare parameters");
9322 return error_mark_node;
9323 }
9324
9325 if (flags == TYPENAME_FLAG
9326 && innermost_code != cdk_function
9327 && ! (ctype && !declspecs->any_specifiers_p))
9328 {
9329 error ("declaration of %qD as non-function", dname);
9330 return error_mark_node;
9331 }
9332
9333 if (dname
9334 && identifier_p (dname)
9335 && UDLIT_OPER_P (dname)
9336 && innermost_code != cdk_function)
9337 {
9338 error ("declaration of %qD as non-function", dname);
9339 return error_mark_node;
9340 }
9341
9342 if (dname && IDENTIFIER_OPNAME_P (dname))
9343 {
9344 if (typedef_p)
9345 {
9346 error ("declaration of %qD as %<typedef%>", dname);
9347 return error_mark_node;
9348 }
9349 else if (decl_context == PARM || decl_context == CATCHPARM)
9350 {
9351 error ("declaration of %qD as parameter", dname);
9352 return error_mark_node;
9353 }
9354 }
9355
9356 /* Anything declared one level down from the top level
9357 must be one of the parameters of a function
9358 (because the body is at least two levels down). */
9359
9360 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
9361 by not allowing C++ class definitions to specify their parameters
9362 with xdecls (must be spec.d in the parmlist).
9363
9364 Since we now wait to push a class scope until we are sure that
9365 we are in a legitimate method context, we must set oldcname
9366 explicitly (since current_class_name is not yet alive).
9367
9368 We also want to avoid calling this a PARM if it is in a namespace. */
9369
9370 if (decl_context == NORMAL && !toplevel_bindings_p ())
9371 {
9372 cp_binding_level *b = current_binding_level;
9373 current_binding_level = b->level_chain;
9374 if (current_binding_level != 0 && toplevel_bindings_p ())
9375 decl_context = PARM;
9376 current_binding_level = b;
9377 }
9378
9379 if (name == NULL)
9380 name = decl_context == PARM ? "parameter" : "type name";
9381
9382 if (concept_p && typedef_p)
9383 {
9384 error ("%<concept%> cannot appear in a typedef declaration");
9385 return error_mark_node;
9386 }
9387
9388 if (constexpr_p && typedef_p)
9389 {
9390 error ("%<constexpr%> cannot appear in a typedef declaration");
9391 return error_mark_node;
9392 }
9393
9394 /* If there were multiple types specified in the decl-specifier-seq,
9395 issue an error message. */
9396 if (declspecs->multiple_types_p)
9397 {
9398 error ("two or more data types in declaration of %qs", name);
9399 return error_mark_node;
9400 }
9401
9402 if (declspecs->conflicting_specifiers_p)
9403 {
9404 error ("conflicting specifiers in declaration of %qs", name);
9405 return error_mark_node;
9406 }
9407
9408 /* Extract the basic type from the decl-specifier-seq. */
9409 type = declspecs->type;
9410 if (type == error_mark_node)
9411 {
9412 type = NULL_TREE;
9413 type_was_error_mark_node = true;
9414 }
9415 /* If the entire declaration is itself tagged as deprecated then
9416 suppress reports of deprecated items. */
9417 if (type && TREE_DEPRECATED (type)
9418 && deprecated_state != DEPRECATED_SUPPRESS)
9419 warn_deprecated_use (type, NULL_TREE);
9420 if (type && TREE_CODE (type) == TYPE_DECL)
9421 {
9422 typedef_decl = type;
9423 type = TREE_TYPE (typedef_decl);
9424 if (TREE_DEPRECATED (type)
9425 && DECL_ARTIFICIAL (typedef_decl)
9426 && deprecated_state != DEPRECATED_SUPPRESS)
9427 warn_deprecated_use (type, NULL_TREE);
9428 }
9429 /* No type at all: default to `int', and set DEFAULTED_INT
9430 because it was not a user-defined typedef. */
9431 if (type == NULL_TREE)
9432 {
9433 if (signed_p || unsigned_p || long_p || short_p)
9434 {
9435 /* These imply 'int'. */
9436 type = integer_type_node;
9437 defaulted_int = 1;
9438 }
9439 /* If we just have "complex", it is equivalent to "complex double". */
9440 else if (!longlong && !explicit_intN
9441 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
9442 {
9443 type = double_type_node;
9444 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
9445 "ISO C++ does not support plain %<complex%> meaning "
9446 "%<double complex%>");
9447 }
9448 }
9449 /* Gather flags. */
9450 explicit_int = declspecs->explicit_int_p;
9451 explicit_char = declspecs->explicit_char_p;
9452
9453 #if 0
9454 /* See the code below that used this. */
9455 if (typedef_decl)
9456 decl_attr = DECL_ATTRIBUTES (typedef_decl);
9457 #endif
9458 typedef_type = type;
9459
9460
9461 if (sfk != sfk_conversion)
9462 ctor_return_type = ctype;
9463
9464 if (sfk != sfk_none)
9465 type = check_special_function_return_type (sfk, type,
9466 ctor_return_type);
9467 else if (type == NULL_TREE)
9468 {
9469 int is_main;
9470
9471 explicit_int = -1;
9472
9473 /* We handle `main' specially here, because 'main () { }' is so
9474 common. With no options, it is allowed. With -Wreturn-type,
9475 it is a warning. It is only an error with -pedantic-errors. */
9476 is_main = (funcdef_flag
9477 && dname && identifier_p (dname)
9478 && MAIN_NAME_P (dname)
9479 && ctype == NULL_TREE
9480 && in_namespace == NULL_TREE
9481 && current_namespace == global_namespace);
9482
9483 if (type_was_error_mark_node)
9484 /* We've already issued an error, don't complain more. */;
9485 else if (in_system_header_at (input_location) || flag_ms_extensions)
9486 /* Allow it, sigh. */;
9487 else if (! is_main)
9488 permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
9489 else if (pedantic)
9490 pedwarn (input_location, OPT_Wpedantic,
9491 "ISO C++ forbids declaration of %qs with no type", name);
9492 else
9493 warning (OPT_Wreturn_type,
9494 "ISO C++ forbids declaration of %qs with no type", name);
9495
9496 if (type_was_error_mark_node && template_parm_flag)
9497 /* FIXME we should be able to propagate the error_mark_node as is
9498 for other contexts too. */
9499 type = error_mark_node;
9500 else
9501 type = integer_type_node;
9502 }
9503
9504 ctype = NULL_TREE;
9505
9506 if (explicit_intN)
9507 {
9508 if (! int_n_enabled_p[declspecs->int_n_idx])
9509 {
9510 error ("%<__int%d%> is not supported by this target",
9511 int_n_data[declspecs->int_n_idx].bitsize);
9512 explicit_intN = false;
9513 }
9514 else if (pedantic && ! in_system_header_at (input_location))
9515 pedwarn (input_location, OPT_Wpedantic,
9516 "ISO C++ does not support %<__int%d%> for %qs",
9517 int_n_data[declspecs->int_n_idx].bitsize, name);
9518 }
9519
9520 /* Now process the modifiers that were specified
9521 and check for invalid combinations. */
9522
9523 /* Long double is a special combination. */
9524 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
9525 {
9526 long_p = false;
9527 type = cp_build_qualified_type (long_double_type_node,
9528 cp_type_quals (type));
9529 }
9530
9531 /* Check all other uses of type modifiers. */
9532
9533 if (unsigned_p || signed_p || long_p || short_p)
9534 {
9535 int ok = 0;
9536
9537 if ((signed_p || unsigned_p) && TREE_CODE (type) != INTEGER_TYPE)
9538 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9539 else if (signed_p && unsigned_p)
9540 error ("%<signed%> and %<unsigned%> specified together for %qs", name);
9541 else if (longlong && TREE_CODE (type) != INTEGER_TYPE)
9542 error ("%<long long%> invalid for %qs", name);
9543 else if (long_p && TREE_CODE (type) == REAL_TYPE)
9544 error ("%<long%> invalid for %qs", name);
9545 else if (short_p && TREE_CODE (type) == REAL_TYPE)
9546 error ("%<short%> invalid for %qs", name);
9547 else if ((long_p || short_p) && TREE_CODE (type) != INTEGER_TYPE)
9548 error ("%<long%> or %<short%> invalid for %qs", name);
9549 else if ((long_p || short_p || explicit_char || explicit_int) && explicit_intN)
9550 error ("%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs", name);
9551 else if ((long_p || short_p) && explicit_char)
9552 error ("%<long%> or %<short%> specified with char for %qs", name);
9553 else if (long_p && short_p)
9554 error ("%<long%> and %<short%> specified together for %qs", name);
9555 else if (type == char16_type_node || type == char32_type_node)
9556 {
9557 if (signed_p || unsigned_p)
9558 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
9559 else if (short_p || long_p)
9560 error ("%<short%> or %<long%> invalid for %qs", name);
9561 }
9562 else
9563 {
9564 ok = 1;
9565 if (!explicit_int && !defaulted_int && !explicit_char && !explicit_intN && pedantic)
9566 {
9567 pedwarn (input_location, OPT_Wpedantic,
9568 "long, short, signed or unsigned used invalidly for %qs",
9569 name);
9570 if (flag_pedantic_errors)
9571 ok = 0;
9572 }
9573 }
9574
9575 /* Discard the type modifiers if they are invalid. */
9576 if (! ok)
9577 {
9578 unsigned_p = false;
9579 signed_p = false;
9580 long_p = false;
9581 short_p = false;
9582 longlong = 0;
9583 }
9584 }
9585
9586 /* Decide whether an integer type is signed or not.
9587 Optionally treat bitfields as signed by default. */
9588 if (unsigned_p
9589 /* [class.bit]
9590
9591 It is implementation-defined whether a plain (neither
9592 explicitly signed or unsigned) char, short, int, or long
9593 bit-field is signed or unsigned.
9594
9595 Naturally, we extend this to long long as well. Note that
9596 this does not include wchar_t. */
9597 || (bitfield && !flag_signed_bitfields
9598 && !signed_p
9599 /* A typedef for plain `int' without `signed' can be
9600 controlled just like plain `int', but a typedef for
9601 `signed int' cannot be so controlled. */
9602 && !(typedef_decl
9603 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
9604 && TREE_CODE (type) == INTEGER_TYPE
9605 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
9606 {
9607 if (explicit_intN)
9608 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
9609 else if (longlong)
9610 type = long_long_unsigned_type_node;
9611 else if (long_p)
9612 type = long_unsigned_type_node;
9613 else if (short_p)
9614 type = short_unsigned_type_node;
9615 else if (type == char_type_node)
9616 type = unsigned_char_type_node;
9617 else if (typedef_decl)
9618 type = unsigned_type_for (type);
9619 else
9620 type = unsigned_type_node;
9621 }
9622 else if (signed_p && type == char_type_node)
9623 type = signed_char_type_node;
9624 else if (explicit_intN)
9625 type = int_n_trees[declspecs->int_n_idx].signed_type;
9626 else if (longlong)
9627 type = long_long_integer_type_node;
9628 else if (long_p)
9629 type = long_integer_type_node;
9630 else if (short_p)
9631 type = short_integer_type_node;
9632
9633 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
9634 {
9635 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
9636 error ("complex invalid for %qs", name);
9637 /* If a modifier is specified, the resulting complex is the complex
9638 form of TYPE. E.g, "complex short" is "complex short int". */
9639 else if (type == integer_type_node)
9640 type = complex_integer_type_node;
9641 else if (type == float_type_node)
9642 type = complex_float_type_node;
9643 else if (type == double_type_node)
9644 type = complex_double_type_node;
9645 else if (type == long_double_type_node)
9646 type = complex_long_double_type_node;
9647 else
9648 type = build_complex_type (type);
9649 }
9650
9651 type_quals = TYPE_UNQUALIFIED;
9652 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
9653 type_quals |= TYPE_QUAL_CONST;
9654 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
9655 type_quals |= TYPE_QUAL_VOLATILE;
9656 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
9657 type_quals |= TYPE_QUAL_RESTRICT;
9658 if (sfk == sfk_conversion && type_quals != TYPE_UNQUALIFIED)
9659 error ("qualifiers are not allowed on declaration of %<operator %T%>",
9660 ctor_return_type);
9661
9662 /* If we're using the injected-class-name to form a compound type or a
9663 declaration, replace it with the underlying class so we don't get
9664 redundant typedefs in the debug output. But if we are returning the
9665 type unchanged, leave it alone so that it's available to
9666 maybe_get_template_decl_from_type_decl. */
9667 if (CLASS_TYPE_P (type)
9668 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
9669 && type == TREE_TYPE (TYPE_NAME (type))
9670 && (declarator || type_quals))
9671 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
9672
9673 type_quals |= cp_type_quals (type);
9674 type = cp_build_qualified_type_real
9675 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
9676 || declspecs->decltype_p)
9677 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
9678 /* We might have ignored or rejected some of the qualifiers. */
9679 type_quals = cp_type_quals (type);
9680
9681 staticp = 0;
9682 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
9683 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
9684 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
9685
9686 storage_class = declspecs->storage_class;
9687 if (storage_class == sc_static)
9688 staticp = 1 + (decl_context == FIELD);
9689
9690 if (virtualp && staticp == 2)
9691 {
9692 error ("member %qD cannot be declared both virtual and static", dname);
9693 storage_class = sc_none;
9694 staticp = 0;
9695 }
9696 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
9697
9698 /* Issue errors about use of storage classes for parameters. */
9699 if (decl_context == PARM)
9700 {
9701 if (typedef_p)
9702 {
9703 error ("typedef declaration invalid in parameter declaration");
9704 return error_mark_node;
9705 }
9706 else if (template_parm_flag && storage_class != sc_none)
9707 {
9708 error ("storage class specified for template parameter %qs", name);
9709 return error_mark_node;
9710 }
9711 else if (storage_class == sc_static
9712 || storage_class == sc_extern
9713 || thread_p)
9714 error ("storage class specifiers invalid in parameter declarations");
9715
9716 /* Function parameters cannot be concept. */
9717 if (concept_p)
9718 error ("a parameter cannot be declared %<concept%>");
9719 /* Function parameters cannot be constexpr. If we saw one, moan
9720 and pretend it wasn't there. */
9721 else if (constexpr_p)
9722 {
9723 error ("a parameter cannot be declared %<constexpr%>");
9724 constexpr_p = 0;
9725 }
9726 }
9727
9728 /* Give error if `virtual' is used outside of class declaration. */
9729 if (virtualp
9730 && (current_class_name == NULL_TREE || decl_context != FIELD))
9731 {
9732 error_at (declspecs->locations[ds_virtual],
9733 "%<virtual%> outside class declaration");
9734 virtualp = 0;
9735 }
9736
9737 /* Static anonymous unions are dealt with here. */
9738 if (staticp && decl_context == TYPENAME
9739 && declspecs->type
9740 && ANON_AGGR_TYPE_P (declspecs->type))
9741 decl_context = FIELD;
9742
9743 /* Warn about storage classes that are invalid for certain
9744 kinds of declarations (parameters, typenames, etc.). */
9745 if (thread_p
9746 && ((storage_class
9747 && storage_class != sc_extern
9748 && storage_class != sc_static)
9749 || typedef_p))
9750 {
9751 error ("multiple storage classes in declaration of %qs", name);
9752 thread_p = false;
9753 }
9754 if (decl_context != NORMAL
9755 && ((storage_class != sc_none
9756 && storage_class != sc_mutable)
9757 || thread_p))
9758 {
9759 if ((decl_context == PARM || decl_context == CATCHPARM)
9760 && (storage_class == sc_register
9761 || storage_class == sc_auto))
9762 ;
9763 else if (typedef_p)
9764 ;
9765 else if (decl_context == FIELD
9766 /* C++ allows static class elements. */
9767 && storage_class == sc_static)
9768 /* C++ also allows inlines and signed and unsigned elements,
9769 but in those cases we don't come in here. */
9770 ;
9771 else
9772 {
9773 if (decl_context == FIELD)
9774 error ("storage class specified for %qs", name);
9775 else
9776 {
9777 if (decl_context == PARM || decl_context == CATCHPARM)
9778 error ("storage class specified for parameter %qs", name);
9779 else
9780 error ("storage class specified for typename");
9781 }
9782 if (storage_class == sc_register
9783 || storage_class == sc_auto
9784 || storage_class == sc_extern
9785 || thread_p)
9786 storage_class = sc_none;
9787 }
9788 }
9789 else if (storage_class == sc_extern && funcdef_flag
9790 && ! toplevel_bindings_p ())
9791 error ("nested function %qs declared %<extern%>", name);
9792 else if (toplevel_bindings_p ())
9793 {
9794 if (storage_class == sc_auto)
9795 error ("top-level declaration of %qs specifies %<auto%>", name);
9796 }
9797 else if (thread_p
9798 && storage_class != sc_extern
9799 && storage_class != sc_static)
9800 {
9801 if (declspecs->gnu_thread_keyword_p)
9802 pedwarn (input_location, 0, "function-scope %qs implicitly auto and "
9803 "declared %<__thread%>", name);
9804
9805 /* When thread_local is applied to a variable of block scope the
9806 storage-class-specifier static is implied if it does not appear
9807 explicitly. */
9808 storage_class = declspecs->storage_class = sc_static;
9809 staticp = 1;
9810 }
9811
9812 if (storage_class && friendp)
9813 {
9814 error ("storage class specifiers invalid in friend function declarations");
9815 storage_class = sc_none;
9816 staticp = 0;
9817 }
9818
9819 if (!id_declarator)
9820 unqualified_id = NULL_TREE;
9821 else
9822 {
9823 unqualified_id = id_declarator->u.id.unqualified_name;
9824 switch (TREE_CODE (unqualified_id))
9825 {
9826 case BIT_NOT_EXPR:
9827 unqualified_id = TREE_OPERAND (unqualified_id, 0);
9828 if (TYPE_P (unqualified_id))
9829 unqualified_id = constructor_name (unqualified_id);
9830 break;
9831
9832 case IDENTIFIER_NODE:
9833 case TEMPLATE_ID_EXPR:
9834 break;
9835
9836 default:
9837 gcc_unreachable ();
9838 }
9839 }
9840
9841 if (declspecs->std_attributes)
9842 {
9843 /* Apply the c++11 attributes to the type preceding them. */
9844 input_location = declspecs->locations[ds_std_attribute];
9845 decl_attributes (&type, declspecs->std_attributes, 0);
9846 input_location = saved_loc;
9847 }
9848
9849 /* Determine the type of the entity declared by recurring on the
9850 declarator. */
9851 for (; declarator; declarator = declarator->declarator)
9852 {
9853 const cp_declarator *inner_declarator;
9854 tree attrs;
9855
9856 if (type == error_mark_node)
9857 return error_mark_node;
9858
9859 attrs = declarator->attributes;
9860 if (attrs)
9861 {
9862 int attr_flags;
9863
9864 attr_flags = 0;
9865 if (declarator == NULL || declarator->kind == cdk_id)
9866 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
9867 if (declarator->kind == cdk_function)
9868 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
9869 if (declarator->kind == cdk_array)
9870 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
9871 returned_attrs = decl_attributes (&type,
9872 chainon (returned_attrs, attrs),
9873 attr_flags);
9874 }
9875
9876 if (declarator->kind == cdk_id)
9877 break;
9878
9879 inner_declarator = declarator->declarator;
9880
9881 switch (declarator->kind)
9882 {
9883 case cdk_array:
9884 type = create_array_type_for_decl (dname, type,
9885 declarator->u.array.bounds);
9886 if (declarator->std_attributes)
9887 /* [dcl.array]/1:
9888
9889 The optional attribute-specifier-seq appertains to the
9890 array. */
9891 returned_attrs = chainon (returned_attrs,
9892 declarator->std_attributes);
9893 break;
9894
9895 case cdk_function:
9896 {
9897 tree arg_types;
9898 int funcdecl_p;
9899
9900 /* Declaring a function type.
9901 Make sure we have a valid type for the function to return. */
9902
9903 if (type_quals != TYPE_UNQUALIFIED)
9904 {
9905 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
9906 warning (OPT_Wignored_qualifiers,
9907 "type qualifiers ignored on function return type");
9908 /* We now know that the TYPE_QUALS don't apply to the
9909 decl, but to its return type. */
9910 type_quals = TYPE_UNQUALIFIED;
9911 }
9912 errmsg = targetm.invalid_return_type (type);
9913 if (errmsg)
9914 {
9915 error (errmsg);
9916 type = integer_type_node;
9917 }
9918
9919 /* Error about some types functions can't return. */
9920
9921 if (TREE_CODE (type) == FUNCTION_TYPE)
9922 {
9923 error ("%qs declared as function returning a function", name);
9924 return error_mark_node;
9925 }
9926 if (TREE_CODE (type) == ARRAY_TYPE)
9927 {
9928 error ("%qs declared as function returning an array", name);
9929 return error_mark_node;
9930 }
9931
9932 input_location = declspecs->locations[ds_type_spec];
9933 abstract_virtuals_error (ACU_RETURN, type);
9934 input_location = saved_loc;
9935
9936 /* Pick up type qualifiers which should be applied to `this'. */
9937 memfn_quals = declarator->u.function.qualifiers;
9938 /* Pick up virt-specifiers. */
9939 virt_specifiers = declarator->u.function.virt_specifiers;
9940 /* And ref-qualifier, too */
9941 rqual = declarator->u.function.ref_qualifier;
9942 /* Pick up the exception specifications. */
9943 raises = declarator->u.function.exception_specification;
9944 /* If the exception-specification is ill-formed, let's pretend
9945 there wasn't one. */
9946 if (raises == error_mark_node)
9947 raises = NULL_TREE;
9948
9949 if (reqs)
9950 error_at (location_of (reqs), "requires-clause on return type");
9951 reqs = declarator->u.function.requires_clause;
9952
9953 /* Say it's a definition only for the CALL_EXPR
9954 closest to the identifier. */
9955 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
9956
9957 /* Handle a late-specified return type. */
9958 if (funcdecl_p)
9959 {
9960 if (type_uses_auto (type))
9961 {
9962 if (!declarator->u.function.late_return_type)
9963 {
9964 if (current_class_type
9965 && LAMBDA_TYPE_P (current_class_type))
9966 /* OK for C++11 lambdas. */;
9967 else if (cxx_dialect < cxx14)
9968 {
9969 error ("%qs function uses "
9970 "%<auto%> type specifier without trailing "
9971 "return type", name);
9972 inform (input_location, "deduced return type "
9973 "only available with -std=c++14 or "
9974 "-std=gnu++14");
9975 }
9976 else if (virtualp)
9977 {
9978 error ("virtual function cannot "
9979 "have deduced return type");
9980 virtualp = false;
9981 }
9982 }
9983 else if (!is_auto (type) && sfk != sfk_conversion)
9984 {
9985 error ("%qs function with trailing return type has"
9986 " %qT as its type rather than plain %<auto%>",
9987 name, type);
9988 return error_mark_node;
9989 }
9990 }
9991 else if (declarator->u.function.late_return_type
9992 && sfk != sfk_conversion)
9993 {
9994 if (cxx_dialect < cxx11)
9995 /* Not using maybe_warn_cpp0x because this should
9996 always be an error. */
9997 error ("trailing return type only available with "
9998 "-std=c++11 or -std=gnu++11");
9999 else
10000 error ("%qs function with trailing return type not "
10001 "declared with %<auto%> type specifier", name);
10002 return error_mark_node;
10003 }
10004 }
10005 type = splice_late_return_type
10006 (type, declarator->u.function.late_return_type);
10007 if (type == error_mark_node)
10008 return error_mark_node;
10009
10010 if (declarator->u.function.late_return_type)
10011 late_return_type_p = true;
10012
10013 if (ctype == NULL_TREE
10014 && decl_context == FIELD
10015 && funcdecl_p
10016 && friendp == 0)
10017 ctype = current_class_type;
10018
10019 if (ctype && (sfk == sfk_constructor
10020 || sfk == sfk_destructor))
10021 {
10022 /* We are within a class's scope. If our declarator name
10023 is the same as the class name, and we are defining
10024 a function, then it is a constructor/destructor, and
10025 therefore returns a void type. */
10026
10027 /* ISO C++ 12.4/2. A destructor may not be declared
10028 const or volatile. A destructor may not be static.
10029 A destructor may not be declared with ref-qualifier.
10030
10031 ISO C++ 12.1. A constructor may not be declared
10032 const or volatile. A constructor may not be
10033 virtual. A constructor may not be static.
10034 A constructor may not be declared with ref-qualifier. */
10035 if (staticp == 2)
10036 error ((flags == DTOR_FLAG)
10037 ? G_("destructor cannot be static member function")
10038 : G_("constructor cannot be static member function"));
10039 if (memfn_quals)
10040 {
10041 error ((flags == DTOR_FLAG)
10042 ? G_("destructors may not be cv-qualified")
10043 : G_("constructors may not be cv-qualified"));
10044 memfn_quals = TYPE_UNQUALIFIED;
10045 }
10046
10047 if (rqual)
10048 {
10049 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
10050 error ((flags == DTOR_FLAG)
10051 ? "destructors may not be ref-qualified"
10052 : "constructors may not be ref-qualified");
10053 rqual = REF_QUAL_NONE;
10054 }
10055
10056 if (decl_context == FIELD
10057 && !member_function_or_else (ctype,
10058 current_class_type,
10059 flags))
10060 return error_mark_node;
10061
10062 if (flags != DTOR_FLAG)
10063 {
10064 /* It's a constructor. */
10065 if (explicitp == 1)
10066 explicitp = 2;
10067 if (virtualp)
10068 {
10069 permerror (input_location, "constructors cannot be declared virtual");
10070 virtualp = 0;
10071 }
10072 if (decl_context == FIELD
10073 && sfk != sfk_constructor)
10074 return error_mark_node;
10075 }
10076 if (decl_context == FIELD)
10077 staticp = 0;
10078 }
10079 else if (friendp)
10080 {
10081 if (virtualp)
10082 {
10083 /* Cannot be both friend and virtual. */
10084 error ("virtual functions cannot be friends");
10085 friendp = 0;
10086 }
10087 if (decl_context == NORMAL)
10088 error ("friend declaration not in class definition");
10089 if (current_function_decl && funcdef_flag)
10090 error ("can%'t define friend function %qs in a local "
10091 "class definition",
10092 name);
10093 }
10094 else if (ctype && sfk == sfk_conversion)
10095 {
10096 if (explicitp == 1)
10097 {
10098 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
10099 explicitp = 2;
10100 }
10101 if (late_return_type_p)
10102 error ("a conversion function cannot have a trailing return type");
10103 }
10104
10105 arg_types = grokparms (declarator->u.function.parameters,
10106 &parms);
10107
10108 if (inner_declarator
10109 && inner_declarator->kind == cdk_id
10110 && inner_declarator->u.id.sfk == sfk_destructor
10111 && arg_types != void_list_node)
10112 {
10113 error ("destructors may not have parameters");
10114 arg_types = void_list_node;
10115 parms = NULL_TREE;
10116 }
10117
10118 type = build_function_type (type, arg_types);
10119 if (declarator->std_attributes)
10120 /* [dcl.fct]/2:
10121
10122 The optional attribute-specifier-seq appertains to
10123 the function type. */
10124 decl_attributes (&type, declarator->std_attributes,
10125 0);
10126 }
10127 break;
10128
10129 case cdk_pointer:
10130 case cdk_reference:
10131 case cdk_ptrmem:
10132 /* Filter out pointers-to-references and references-to-references.
10133 We can get these if a TYPE_DECL is used. */
10134
10135 if (TREE_CODE (type) == REFERENCE_TYPE)
10136 {
10137 if (declarator->kind != cdk_reference)
10138 {
10139 error ("cannot declare pointer to %q#T", type);
10140 type = TREE_TYPE (type);
10141 }
10142
10143 /* In C++0x, we allow reference to reference declarations
10144 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
10145 and template type arguments [14.3.1/4 temp.arg.type]. The
10146 check for direct reference to reference declarations, which
10147 are still forbidden, occurs below. Reasoning behind the change
10148 can be found in DR106, DR540, and the rvalue reference
10149 proposals. */
10150 else if (cxx_dialect == cxx98)
10151 {
10152 error ("cannot declare reference to %q#T", type);
10153 type = TREE_TYPE (type);
10154 }
10155 }
10156 else if (VOID_TYPE_P (type))
10157 {
10158 if (declarator->kind == cdk_reference)
10159 error ("cannot declare reference to %q#T", type);
10160 else if (declarator->kind == cdk_ptrmem)
10161 error ("cannot declare pointer to %q#T member", type);
10162 }
10163
10164 /* We now know that the TYPE_QUALS don't apply to the decl,
10165 but to the target of the pointer. */
10166 type_quals = TYPE_UNQUALIFIED;
10167
10168 /* This code used to handle METHOD_TYPE, but I don't think it's
10169 possible to get it here anymore. */
10170 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
10171 if (declarator->kind == cdk_ptrmem
10172 && TREE_CODE (type) == FUNCTION_TYPE)
10173 {
10174 memfn_quals |= type_memfn_quals (type);
10175 type = build_memfn_type (type,
10176 declarator->u.pointer.class_type,
10177 memfn_quals,
10178 rqual);
10179 if (type == error_mark_node)
10180 return error_mark_node;
10181
10182 rqual = REF_QUAL_NONE;
10183 memfn_quals = TYPE_UNQUALIFIED;
10184 }
10185
10186 if (TREE_CODE (type) == FUNCTION_TYPE
10187 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
10188 || type_memfn_rqual (type) != REF_QUAL_NONE))
10189 error (declarator->kind == cdk_reference
10190 ? G_("cannot declare reference to qualified function type %qT")
10191 : G_("cannot declare pointer to qualified function type %qT"),
10192 type);
10193
10194 /* When the pointed-to type involves components of variable size,
10195 care must be taken to ensure that the size evaluation code is
10196 emitted early enough to dominate all the possible later uses
10197 and late enough for the variables on which it depends to have
10198 been assigned.
10199
10200 This is expected to happen automatically when the pointed-to
10201 type has a name/declaration of it's own, but special attention
10202 is required if the type is anonymous.
10203
10204 We handle the NORMAL and FIELD contexts here by inserting a
10205 dummy statement that just evaluates the size at a safe point
10206 and ensures it is not deferred until e.g. within a deeper
10207 conditional context (c++/43555).
10208
10209 We expect nothing to be needed here for PARM or TYPENAME.
10210 Evaluating the size at this point for TYPENAME would
10211 actually be incorrect, as we might be in the middle of an
10212 expression with side effects on the pointed-to type size
10213 "arguments" prior to the pointer declaration point and the
10214 size evaluation could end up prior to the side effects. */
10215
10216 if (!TYPE_NAME (type)
10217 && (decl_context == NORMAL || decl_context == FIELD)
10218 && at_function_scope_p ()
10219 && variably_modified_type_p (type, NULL_TREE))
10220 /* Force evaluation of the SAVE_EXPR. */
10221 finish_expr_stmt (TYPE_SIZE (type));
10222
10223 if (declarator->kind == cdk_reference)
10224 {
10225 /* In C++0x, the type we are creating a reference to might be
10226 a typedef which is itself a reference type. In that case,
10227 we follow the reference collapsing rules in
10228 [7.1.3/8 dcl.typedef] to create the final reference type:
10229
10230 "If a typedef TD names a type that is a reference to a type
10231 T, an attempt to create the type 'lvalue reference to cv TD'
10232 creates the type 'lvalue reference to T,' while an attempt
10233 to create the type "rvalue reference to cv TD' creates the
10234 type TD."
10235 */
10236 if (VOID_TYPE_P (type))
10237 /* We already gave an error. */;
10238 else if (TREE_CODE (type) == REFERENCE_TYPE)
10239 {
10240 if (declarator->u.reference.rvalue_ref)
10241 /* Leave type alone. */;
10242 else
10243 type = cp_build_reference_type (TREE_TYPE (type), false);
10244 }
10245 else
10246 type = cp_build_reference_type
10247 (type, declarator->u.reference.rvalue_ref);
10248
10249 /* In C++0x, we need this check for direct reference to
10250 reference declarations, which are forbidden by
10251 [8.3.2/5 dcl.ref]. Reference to reference declarations
10252 are only allowed indirectly through typedefs and template
10253 type arguments. Example:
10254
10255 void foo(int & &); // invalid ref-to-ref decl
10256
10257 typedef int & int_ref;
10258 void foo(int_ref &); // valid ref-to-ref decl
10259 */
10260 if (inner_declarator && inner_declarator->kind == cdk_reference)
10261 error ("cannot declare reference to %q#T, which is not "
10262 "a typedef or a template type argument", type);
10263 }
10264 else if (TREE_CODE (type) == METHOD_TYPE)
10265 type = build_ptrmemfunc_type (build_pointer_type (type));
10266 else if (declarator->kind == cdk_ptrmem)
10267 {
10268 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
10269 != NAMESPACE_DECL);
10270 if (declarator->u.pointer.class_type == error_mark_node)
10271 /* We will already have complained. */
10272 type = error_mark_node;
10273 else
10274 type = build_ptrmem_type (declarator->u.pointer.class_type,
10275 type);
10276 }
10277 else
10278 type = build_pointer_type (type);
10279
10280 /* Process a list of type modifier keywords (such as
10281 const or volatile) that were given inside the `*' or `&'. */
10282
10283 if (declarator->u.pointer.qualifiers)
10284 {
10285 type
10286 = cp_build_qualified_type (type,
10287 declarator->u.pointer.qualifiers);
10288 type_quals = cp_type_quals (type);
10289 }
10290
10291 /* Apply C++11 attributes to the pointer, and not to the
10292 type pointed to. This is unlike what is done for GNU
10293 attributes above. It is to comply with [dcl.ptr]/1:
10294
10295 [the optional attribute-specifier-seq (7.6.1) appertains
10296 to the pointer and not to the object pointed to]. */
10297 if (declarator->std_attributes)
10298 decl_attributes (&type, declarator->std_attributes,
10299 0);
10300
10301 ctype = NULL_TREE;
10302 break;
10303
10304 case cdk_error:
10305 break;
10306
10307 default:
10308 gcc_unreachable ();
10309 }
10310 }
10311
10312 /* A `constexpr' specifier used in an object declaration declares
10313 the object as `const'. */
10314 if (constexpr_p && innermost_code != cdk_function)
10315 {
10316 /* DR1688 says that a `constexpr' specifier in combination with
10317 `volatile' is valid. */
10318
10319 if (TREE_CODE (type) != REFERENCE_TYPE)
10320 {
10321 type_quals |= TYPE_QUAL_CONST;
10322 type = cp_build_qualified_type (type, type_quals);
10323 }
10324 }
10325
10326 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
10327 && TREE_CODE (type) != FUNCTION_TYPE
10328 && TREE_CODE (type) != METHOD_TYPE
10329 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
10330 {
10331 error ("template-id %qD used as a declarator",
10332 unqualified_id);
10333 unqualified_id = dname;
10334 }
10335
10336 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
10337 qualified with a class-name, turn it into a METHOD_TYPE, unless
10338 we know that the function is static. We take advantage of this
10339 opportunity to do other processing that pertains to entities
10340 explicitly declared to be class members. Note that if DECLARATOR
10341 is non-NULL, we know it is a cdk_id declarator; otherwise, we
10342 would not have exited the loop above. */
10343 if (declarator
10344 && declarator->u.id.qualifying_scope
10345 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
10346 {
10347 ctype = declarator->u.id.qualifying_scope;
10348 ctype = TYPE_MAIN_VARIANT (ctype);
10349 template_count = num_template_headers_for_class (ctype);
10350
10351 if (ctype == current_class_type)
10352 {
10353 if (friendp)
10354 {
10355 permerror (input_location, "member functions are implicitly friends of their class");
10356 friendp = 0;
10357 }
10358 else
10359 permerror (declarator->id_loc,
10360 "extra qualification %<%T::%> on member %qs",
10361 ctype, name);
10362 }
10363 else if (/* If the qualifying type is already complete, then we
10364 can skip the following checks. */
10365 !COMPLETE_TYPE_P (ctype)
10366 && (/* If the function is being defined, then
10367 qualifying type must certainly be complete. */
10368 funcdef_flag
10369 /* A friend declaration of "T::f" is OK, even if
10370 "T" is a template parameter. But, if this
10371 function is not a friend, the qualifying type
10372 must be a class. */
10373 || (!friendp && !CLASS_TYPE_P (ctype))
10374 /* For a declaration, the type need not be
10375 complete, if either it is dependent (since there
10376 is no meaningful definition of complete in that
10377 case) or the qualifying class is currently being
10378 defined. */
10379 || !(dependent_type_p (ctype)
10380 || currently_open_class (ctype)))
10381 /* Check that the qualifying type is complete. */
10382 && !complete_type_or_else (ctype, NULL_TREE))
10383 return error_mark_node;
10384 else if (TREE_CODE (type) == FUNCTION_TYPE)
10385 {
10386 if (current_class_type
10387 && (!friendp || funcdef_flag))
10388 {
10389 error (funcdef_flag
10390 ? G_("cannot define member function %<%T::%s%> "
10391 "within %<%T%>")
10392 : G_("cannot declare member function %<%T::%s%> "
10393 "within %<%T%>"),
10394 ctype, name, current_class_type);
10395 return error_mark_node;
10396 }
10397 }
10398 else if (typedef_p && current_class_type)
10399 {
10400 error ("cannot declare member %<%T::%s%> within %qT",
10401 ctype, name, current_class_type);
10402 return error_mark_node;
10403 }
10404 }
10405
10406 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
10407 ctype = current_class_type;
10408
10409 /* Now TYPE has the actual type. */
10410
10411 if (returned_attrs)
10412 {
10413 if (attrlist)
10414 *attrlist = chainon (returned_attrs, *attrlist);
10415 else
10416 attrlist = &returned_attrs;
10417 }
10418
10419 if (declarator
10420 && declarator->kind == cdk_id
10421 && declarator->std_attributes)
10422 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
10423 a declarator-id appertains to the entity that is declared. */
10424 *attrlist = chainon (*attrlist, declarator->std_attributes);
10425
10426 /* Handle parameter packs. */
10427 if (parameter_pack_p)
10428 {
10429 if (decl_context == PARM)
10430 /* Turn the type into a pack expansion.*/
10431 type = make_pack_expansion (type);
10432 else
10433 error ("non-parameter %qs cannot be a parameter pack", name);
10434 }
10435
10436 /* Did array size calculations overflow or does the array cover more
10437 than half of the address-space? */
10438 if (TREE_CODE (type) == ARRAY_TYPE
10439 && COMPLETE_TYPE_P (type)
10440 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
10441 && ! valid_constant_size_p (TYPE_SIZE_UNIT (type)))
10442 {
10443 error ("size of array %qs is too large", name);
10444 /* If we proceed with the array type as it is, we'll eventually
10445 crash in tree_to_[su]hwi(). */
10446 type = error_mark_node;
10447 }
10448
10449 if ((decl_context == FIELD || decl_context == PARM)
10450 && !processing_template_decl
10451 && variably_modified_type_p (type, NULL_TREE))
10452 {
10453 if (decl_context == FIELD)
10454 error ("data member may not have variably modified type %qT", type);
10455 else
10456 error ("parameter may not have variably modified type %qT", type);
10457 type = error_mark_node;
10458 }
10459
10460 if (explicitp == 1 || (explicitp && friendp))
10461 {
10462 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
10463 in the declaration of a constructor or conversion function within
10464 a class definition. */
10465 if (!current_class_type)
10466 error_at (declspecs->locations[ds_explicit],
10467 "%<explicit%> outside class declaration");
10468 else if (friendp)
10469 error_at (declspecs->locations[ds_explicit],
10470 "%<explicit%> in friend declaration");
10471 else
10472 error_at (declspecs->locations[ds_explicit],
10473 "only declarations of constructors and conversion operators "
10474 "can be %<explicit%>");
10475 explicitp = 0;
10476 }
10477
10478 if (storage_class == sc_mutable)
10479 {
10480 if (decl_context != FIELD || friendp)
10481 {
10482 error ("non-member %qs cannot be declared %<mutable%>", name);
10483 storage_class = sc_none;
10484 }
10485 else if (decl_context == TYPENAME || typedef_p)
10486 {
10487 error ("non-object member %qs cannot be declared %<mutable%>", name);
10488 storage_class = sc_none;
10489 }
10490 else if (TREE_CODE (type) == FUNCTION_TYPE
10491 || TREE_CODE (type) == METHOD_TYPE)
10492 {
10493 error ("function %qs cannot be declared %<mutable%>", name);
10494 storage_class = sc_none;
10495 }
10496 else if (staticp)
10497 {
10498 error ("static %qs cannot be declared %<mutable%>", name);
10499 storage_class = sc_none;
10500 }
10501 else if (type_quals & TYPE_QUAL_CONST)
10502 {
10503 error ("const %qs cannot be declared %<mutable%>", name);
10504 storage_class = sc_none;
10505 }
10506 else if (TREE_CODE (type) == REFERENCE_TYPE)
10507 {
10508 permerror (input_location, "reference %qs cannot be declared "
10509 "%<mutable%>", name);
10510 storage_class = sc_none;
10511 }
10512 }
10513
10514 /* If this is declaring a typedef name, return a TYPE_DECL. */
10515 if (typedef_p && decl_context != TYPENAME)
10516 {
10517 tree decl;
10518
10519 /* Note that the grammar rejects storage classes
10520 in typenames, fields or parameters. */
10521 if (current_lang_name == lang_name_java)
10522 TYPE_FOR_JAVA (type) = 1;
10523
10524 /* This declaration:
10525
10526 typedef void f(int) const;
10527
10528 declares a function type which is not a member of any
10529 particular class, but which is cv-qualified; for
10530 example "f S::*" declares a pointer to a const-qualified
10531 member function of S. We record the cv-qualification in the
10532 function type. */
10533 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
10534 {
10535 type = apply_memfn_quals (type, memfn_quals, rqual);
10536
10537 /* We have now dealt with these qualifiers. */
10538 memfn_quals = TYPE_UNQUALIFIED;
10539 rqual = REF_QUAL_NONE;
10540 }
10541
10542 if (type_uses_auto (type))
10543 {
10544 error ("typedef declared %<auto%>");
10545 type = error_mark_node;
10546 }
10547
10548 if (reqs)
10549 error_at (location_of (reqs), "requires-clause on typedef");
10550
10551 if (decl_context == FIELD)
10552 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
10553 else
10554 decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
10555 if (id_declarator && declarator->u.id.qualifying_scope) {
10556 error_at (DECL_SOURCE_LOCATION (decl),
10557 "typedef name may not be a nested-name-specifier");
10558 TREE_TYPE (decl) = error_mark_node;
10559 }
10560
10561 if (decl_context != FIELD)
10562 {
10563 if (!current_function_decl)
10564 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
10565 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl)
10566 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
10567 (current_function_decl)))
10568 /* The TYPE_DECL is "abstract" because there will be
10569 clones of this constructor/destructor, and there will
10570 be copies of this TYPE_DECL generated in those
10571 clones. The decloning optimization (for space) may
10572 revert this subsequently if it determines that
10573 the clones should share a common implementation. */
10574 DECL_ABSTRACT_P (decl) = true;
10575 }
10576 else if (current_class_type
10577 && constructor_name_p (unqualified_id, current_class_type))
10578 permerror (input_location, "ISO C++ forbids nested type %qD with same name "
10579 "as enclosing class",
10580 unqualified_id);
10581
10582 /* If the user declares "typedef struct {...} foo" then the
10583 struct will have an anonymous name. Fill that name in now.
10584 Nothing can refer to it, so nothing needs know about the name
10585 change. */
10586 if (type != error_mark_node
10587 && unqualified_id
10588 && TYPE_NAME (type)
10589 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10590 && TYPE_ANONYMOUS_P (type)
10591 && declspecs->type_definition_p
10592 && attributes_naming_typedef_ok (*attrlist)
10593 && cp_type_quals (type) == TYPE_UNQUALIFIED)
10594 {
10595 tree t;
10596
10597 /* Replace the anonymous name with the real name everywhere. */
10598 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
10599 {
10600 if (anon_aggrname_p (TYPE_IDENTIFIER (t)))
10601 /* We do not rename the debug info representing the
10602 anonymous tagged type because the standard says in
10603 [dcl.typedef] that the naming applies only for
10604 linkage purposes. */
10605 /*debug_hooks->set_name (t, decl);*/
10606 TYPE_NAME (t) = decl;
10607 }
10608
10609 if (TYPE_LANG_SPECIFIC (type))
10610 TYPE_WAS_ANONYMOUS (type) = 1;
10611
10612 /* If this is a typedef within a template class, the nested
10613 type is a (non-primary) template. The name for the
10614 template needs updating as well. */
10615 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
10616 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
10617 = TYPE_IDENTIFIER (type);
10618
10619 /* Adjust linkage now that we aren't anonymous anymore. */
10620 reset_type_linkage (type);
10621
10622 /* FIXME remangle member functions; member functions of a
10623 type with external linkage have external linkage. */
10624 }
10625
10626 if (signed_p
10627 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
10628 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
10629
10630 bad_specifiers (decl, BSP_TYPE, virtualp,
10631 memfn_quals != TYPE_UNQUALIFIED,
10632 inlinep, friendp, raises != NULL_TREE);
10633
10634 if (decl_spec_seq_has_spec_p (declspecs, ds_alias))
10635 /* Acknowledge that this was written:
10636 `using analias = atype;'. */
10637 TYPE_DECL_ALIAS_P (decl) = 1;
10638
10639 return decl;
10640 }
10641
10642 /* Detect the case of an array type of unspecified size
10643 which came, as such, direct from a typedef name.
10644 We must copy the type, so that the array's domain can be
10645 individually set by the object's initializer. */
10646
10647 if (type && typedef_type
10648 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
10649 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
10650 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
10651
10652 /* Detect where we're using a typedef of function type to declare a
10653 function. PARMS will not be set, so we must create it now. */
10654
10655 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
10656 {
10657 tree decls = NULL_TREE;
10658 tree args;
10659
10660 for (args = TYPE_ARG_TYPES (type);
10661 args && args != void_list_node;
10662 args = TREE_CHAIN (args))
10663 {
10664 tree decl = cp_build_parm_decl (NULL_TREE, TREE_VALUE (args));
10665
10666 DECL_CHAIN (decl) = decls;
10667 decls = decl;
10668 }
10669
10670 parms = nreverse (decls);
10671
10672 if (decl_context != TYPENAME)
10673 {
10674 /* The qualifiers on the function type become the qualifiers on
10675 the non-static member function. */
10676 memfn_quals |= type_memfn_quals (type);
10677 rqual = type_memfn_rqual (type);
10678 type_quals = TYPE_UNQUALIFIED;
10679 }
10680 }
10681
10682 /* If this is a type name (such as, in a cast or sizeof),
10683 compute the type and return it now. */
10684
10685 if (decl_context == TYPENAME)
10686 {
10687 /* Note that here we don't care about type_quals. */
10688
10689 /* Special case: "friend class foo" looks like a TYPENAME context. */
10690 if (friendp)
10691 {
10692 if (inlinep)
10693 {
10694 error ("%<inline%> specified for friend class declaration");
10695 inlinep = 0;
10696 }
10697
10698 if (!current_aggr)
10699 {
10700 /* Don't allow friend declaration without a class-key. */
10701 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
10702 permerror (input_location, "template parameters cannot be friends");
10703 else if (TREE_CODE (type) == TYPENAME_TYPE)
10704 permerror (input_location, "friend declaration requires class-key, "
10705 "i.e. %<friend class %T::%D%>",
10706 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
10707 else
10708 permerror (input_location, "friend declaration requires class-key, "
10709 "i.e. %<friend %#T%>",
10710 type);
10711 }
10712
10713 /* Only try to do this stuff if we didn't already give up. */
10714 if (type != integer_type_node)
10715 {
10716 /* A friendly class? */
10717 if (current_class_type)
10718 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
10719 /*complain=*/true);
10720 else
10721 error ("trying to make class %qT a friend of global scope",
10722 type);
10723
10724 type = void_type_node;
10725 }
10726 }
10727 else if (memfn_quals || rqual)
10728 {
10729 if (ctype == NULL_TREE
10730 && TREE_CODE (type) == METHOD_TYPE)
10731 ctype = TYPE_METHOD_BASETYPE (type);
10732
10733 if (ctype)
10734 type = build_memfn_type (type, ctype, memfn_quals, rqual);
10735 /* Core issue #547: need to allow this in template type args.
10736 Allow it in general in C++11 for alias-declarations. */
10737 else if ((template_type_arg || cxx_dialect >= cxx11)
10738 && TREE_CODE (type) == FUNCTION_TYPE)
10739 type = apply_memfn_quals (type, memfn_quals, rqual);
10740 else
10741 error ("invalid qualifiers on non-member function type");
10742 }
10743
10744 if (reqs)
10745 error_at (location_of (reqs), "requires-clause on type-id");
10746
10747 return type;
10748 }
10749 else if (unqualified_id == NULL_TREE && decl_context != PARM
10750 && decl_context != CATCHPARM
10751 && TREE_CODE (type) != UNION_TYPE
10752 && ! bitfield)
10753 {
10754 error ("abstract declarator %qT used as declaration", type);
10755 return error_mark_node;
10756 }
10757
10758 /* Only functions may be declared using an operator-function-id. */
10759 if (unqualified_id
10760 && IDENTIFIER_OPNAME_P (unqualified_id)
10761 && TREE_CODE (type) != FUNCTION_TYPE
10762 && TREE_CODE (type) != METHOD_TYPE)
10763 {
10764 error ("declaration of %qD as non-function", unqualified_id);
10765 return error_mark_node;
10766 }
10767
10768 if (reqs
10769 && TREE_CODE (type) != FUNCTION_TYPE
10770 && TREE_CODE (type) != METHOD_TYPE)
10771 error_at (location_of (reqs),
10772 "requires-clause on declaration of non-function type %qT",
10773 type);
10774
10775 /* We don't check parameter types here because we can emit a better
10776 error message later. */
10777 if (decl_context != PARM)
10778 {
10779 type = check_var_type (unqualified_id, type);
10780 if (type == error_mark_node)
10781 return error_mark_node;
10782 }
10783
10784 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
10785 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
10786
10787 if (decl_context == PARM || decl_context == CATCHPARM)
10788 {
10789 if (ctype || in_namespace)
10790 error ("cannot use %<::%> in parameter declaration");
10791
10792 if (type_uses_auto (type))
10793 {
10794 if (cxx_dialect >= cxx14)
10795 error ("%<auto%> parameter not permitted in this context");
10796 else
10797 error ("parameter declared %<auto%>");
10798 type = error_mark_node;
10799 }
10800
10801 /* A parameter declared as an array of T is really a pointer to T.
10802 One declared as a function is really a pointer to a function.
10803 One declared as a member is really a pointer to member. */
10804
10805 if (TREE_CODE (type) == ARRAY_TYPE)
10806 {
10807 /* Transfer const-ness of array into that of type pointed to. */
10808 type = build_pointer_type (TREE_TYPE (type));
10809 type_quals = TYPE_UNQUALIFIED;
10810 array_parameter_p = true;
10811 }
10812 else if (TREE_CODE (type) == FUNCTION_TYPE)
10813 type = build_pointer_type (type);
10814 }
10815
10816 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
10817 && !NEW_DELETE_OPNAME_P (unqualified_id))
10818 {
10819 cp_cv_quals real_quals = memfn_quals;
10820 if (cxx_dialect < cxx14 && constexpr_p
10821 && sfk != sfk_constructor && sfk != sfk_destructor)
10822 real_quals |= TYPE_QUAL_CONST;
10823 type = build_memfn_type (type, ctype, real_quals, rqual);
10824 }
10825
10826 {
10827 tree decl;
10828
10829 if (decl_context == PARM)
10830 {
10831 decl = cp_build_parm_decl (unqualified_id, type);
10832 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
10833
10834 bad_specifiers (decl, BSP_PARM, virtualp,
10835 memfn_quals != TYPE_UNQUALIFIED,
10836 inlinep, friendp, raises != NULL_TREE);
10837 }
10838 else if (decl_context == FIELD)
10839 {
10840 if (!staticp && !friendp && TREE_CODE (type) != METHOD_TYPE
10841 && type_uses_auto (type))
10842 {
10843 error ("non-static data member declared %<auto%>");
10844 type = error_mark_node;
10845 }
10846
10847 /* The C99 flexible array extension. */
10848 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
10849 && TYPE_DOMAIN (type) == NULL_TREE)
10850 {
10851 tree itype = compute_array_index_type (dname, integer_zero_node,
10852 tf_warning_or_error);
10853 type = build_cplus_array_type (TREE_TYPE (type), itype);
10854 }
10855
10856 if (type == error_mark_node)
10857 {
10858 /* Happens when declaring arrays of sizes which
10859 are error_mark_node, for example. */
10860 decl = NULL_TREE;
10861 }
10862 else if (in_namespace && !friendp)
10863 {
10864 /* Something like struct S { int N::j; }; */
10865 error ("invalid use of %<::%>");
10866 return error_mark_node;
10867 }
10868 else if (TREE_CODE (type) == FUNCTION_TYPE
10869 || TREE_CODE (type) == METHOD_TYPE)
10870 {
10871 int publicp = 0;
10872 tree function_context;
10873
10874 if (friendp == 0)
10875 {
10876 /* This should never happen in pure C++ (the check
10877 could be an assert). It could happen in
10878 Objective-C++ if someone writes invalid code that
10879 uses a function declaration for an instance
10880 variable or property (instance variables and
10881 properties are parsed as FIELD_DECLs, but they are
10882 part of an Objective-C class, not a C++ class).
10883 That code is invalid and is caught by this
10884 check. */
10885 if (!ctype)
10886 {
10887 error ("declaration of function %qD in invalid context",
10888 unqualified_id);
10889 return error_mark_node;
10890 }
10891
10892 /* ``A union may [ ... ] not [ have ] virtual functions.''
10893 ARM 9.5 */
10894 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
10895 {
10896 error ("function %qD declared virtual inside a union",
10897 unqualified_id);
10898 return error_mark_node;
10899 }
10900
10901 if (NEW_DELETE_OPNAME_P (unqualified_id))
10902 {
10903 if (virtualp)
10904 {
10905 error ("%qD cannot be declared virtual, since it "
10906 "is always static",
10907 unqualified_id);
10908 virtualp = 0;
10909 }
10910 }
10911 }
10912
10913 /* Check that the name used for a destructor makes sense. */
10914 if (sfk == sfk_destructor)
10915 {
10916 tree uqname = id_declarator->u.id.unqualified_name;
10917
10918 if (!ctype)
10919 {
10920 gcc_assert (friendp);
10921 error ("expected qualified name in friend declaration "
10922 "for destructor %qD", uqname);
10923 return error_mark_node;
10924 }
10925
10926 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
10927 {
10928 error ("declaration of %qD as member of %qT",
10929 uqname, ctype);
10930 return error_mark_node;
10931 }
10932 if (concept_p)
10933 {
10934 error ("a destructor cannot be %<concept%>");
10935 return error_mark_node;
10936 }
10937 if (constexpr_p)
10938 {
10939 error ("a destructor cannot be %<constexpr%>");
10940 return error_mark_node;
10941 }
10942 }
10943 else if (sfk == sfk_constructor && friendp && !ctype)
10944 {
10945 error ("expected qualified name in friend declaration "
10946 "for constructor %qD",
10947 id_declarator->u.id.unqualified_name);
10948 return error_mark_node;
10949 }
10950 if (sfk == sfk_constructor)
10951 if (concept_p)
10952 {
10953 error ("a constructor cannot be %<concept%>");
10954 return error_mark_node;
10955 }
10956 if (concept_p)
10957 {
10958 error ("a concept cannot be a member function");
10959 concept_p = false;
10960 }
10961
10962 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
10963 {
10964 tree tmpl = TREE_OPERAND (unqualified_id, 0);
10965 if (variable_template_p (tmpl))
10966 {
10967 error ("specialization of variable template %qD "
10968 "declared as function", tmpl);
10969 inform (DECL_SOURCE_LOCATION (tmpl),
10970 "variable template declared here");
10971 return error_mark_node;
10972 }
10973 }
10974
10975 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
10976 function_context = (ctype != NULL_TREE) ?
10977 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
10978 publicp = (! friendp || ! staticp)
10979 && function_context == NULL_TREE;
10980
10981 if (late_return_type_p)
10982 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
10983
10984 decl = grokfndecl (ctype, type,
10985 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
10986 ? unqualified_id : dname,
10987 parms,
10988 unqualified_id,
10989 reqs,
10990 virtualp, flags, memfn_quals, rqual, raises,
10991 friendp ? -1 : 0, friendp, publicp,
10992 inlinep | (2 * constexpr_p) | (4 * concept_p),
10993 initialized == SD_DELETED, sfk,
10994 funcdef_flag, template_count, in_namespace,
10995 attrlist, declarator->id_loc);
10996 decl = set_virt_specifiers (decl, virt_specifiers);
10997 if (decl == NULL_TREE)
10998 return error_mark_node;
10999 #if 0
11000 /* This clobbers the attrs stored in `decl' from `attrlist'. */
11001 /* The decl and setting of decl_attr is also turned off. */
11002 decl = build_decl_attribute_variant (decl, decl_attr);
11003 #endif
11004
11005 /* [class.conv.ctor]
11006
11007 A constructor declared without the function-specifier
11008 explicit that can be called with a single parameter
11009 specifies a conversion from the type of its first
11010 parameter to the type of its class. Such a constructor
11011 is called a converting constructor. */
11012 if (explicitp == 2)
11013 DECL_NONCONVERTING_P (decl) = 1;
11014 }
11015 else if (!staticp && !dependent_type_p (type)
11016 && !COMPLETE_TYPE_P (complete_type (type))
11017 && (TREE_CODE (type) != ARRAY_TYPE
11018 || !COMPLETE_TYPE_P (TREE_TYPE (type))
11019 || initialized == 0))
11020 {
11021 if (unqualified_id)
11022 {
11023 error ("field %qD has incomplete type %qT",
11024 unqualified_id, type);
11025 cxx_incomplete_type_inform (strip_array_types (type));
11026 }
11027 else
11028 error ("name %qT has incomplete type", type);
11029
11030 type = error_mark_node;
11031 decl = NULL_TREE;
11032 }
11033 else
11034 {
11035 if (friendp)
11036 {
11037 error ("%qE is neither function nor member function; "
11038 "cannot be declared friend", unqualified_id);
11039 friendp = 0;
11040 }
11041 decl = NULL_TREE;
11042 }
11043
11044 if (friendp)
11045 {
11046 /* Friends are treated specially. */
11047 if (ctype == current_class_type)
11048 ; /* We already issued a permerror. */
11049 else if (decl && DECL_NAME (decl))
11050 {
11051 if (template_class_depth (current_class_type) == 0)
11052 {
11053 decl = check_explicit_specialization
11054 (unqualified_id, decl, template_count,
11055 2 * funcdef_flag + 4);
11056 if (decl == error_mark_node)
11057 return error_mark_node;
11058 }
11059
11060 decl = do_friend (ctype, unqualified_id, decl,
11061 *attrlist, flags,
11062 funcdef_flag);
11063 return decl;
11064 }
11065 else
11066 return error_mark_node;
11067 }
11068
11069 /* Structure field. It may not be a function, except for C++. */
11070
11071 if (decl == NULL_TREE)
11072 {
11073 if (staticp)
11074 {
11075 /* C++ allows static class members. All other work
11076 for this is done by grokfield. */
11077 decl = build_lang_decl_loc (declarator
11078 ? declarator->id_loc
11079 : input_location,
11080 VAR_DECL, unqualified_id, type);
11081 set_linkage_for_static_data_member (decl);
11082 /* Even if there is an in-class initialization, DECL
11083 is considered undefined until an out-of-class
11084 definition is provided. */
11085 DECL_EXTERNAL (decl) = 1;
11086
11087 if (thread_p)
11088 {
11089 CP_DECL_THREAD_LOCAL_P (decl) = true;
11090 if (!processing_template_decl)
11091 set_decl_tls_model (decl, decl_default_tls_model (decl));
11092 if (declspecs->gnu_thread_keyword_p)
11093 SET_DECL_GNU_TLS_P (decl);
11094 }
11095 if (concept_p)
11096 error ("static data member %qE declared %<concept%>",
11097 unqualified_id);
11098 else if (constexpr_p && !initialized)
11099 {
11100 error ("constexpr static data member %qD must have an "
11101 "initializer", decl);
11102 constexpr_p = false;
11103 }
11104 }
11105 else
11106 {
11107 if (concept_p)
11108 error ("non-static data member %qE declared %<concept%>",
11109 unqualified_id);
11110 else if (constexpr_p)
11111 {
11112 error ("non-static data member %qE declared %<constexpr%>",
11113 unqualified_id);
11114 constexpr_p = false;
11115 }
11116 decl = build_decl (input_location,
11117 FIELD_DECL, unqualified_id, type);
11118 DECL_NONADDRESSABLE_P (decl) = bitfield;
11119 if (bitfield && !unqualified_id)
11120 TREE_NO_WARNING (decl) = 1;
11121
11122 if (storage_class == sc_mutable)
11123 {
11124 DECL_MUTABLE_P (decl) = 1;
11125 storage_class = sc_none;
11126 }
11127
11128 if (initialized)
11129 {
11130 /* An attempt is being made to initialize a non-static
11131 member. This is new in C++11. */
11132 maybe_warn_cpp0x (CPP0X_NSDMI);
11133
11134 /* If this has been parsed with static storage class, but
11135 errors forced staticp to be cleared, ensure NSDMI is
11136 not present. */
11137 if (declspecs->storage_class == sc_static)
11138 DECL_INITIAL (decl) = error_mark_node;
11139 }
11140 }
11141
11142 bad_specifiers (decl, BSP_FIELD, virtualp,
11143 memfn_quals != TYPE_UNQUALIFIED,
11144 inlinep, friendp, raises != NULL_TREE);
11145 }
11146 }
11147 else if (TREE_CODE (type) == FUNCTION_TYPE
11148 || TREE_CODE (type) == METHOD_TYPE)
11149 {
11150 tree original_name;
11151 int publicp = 0;
11152
11153 if (!unqualified_id)
11154 return error_mark_node;
11155
11156 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
11157 original_name = dname;
11158 else
11159 original_name = unqualified_id;
11160
11161 if (storage_class == sc_auto)
11162 error ("storage class %<auto%> invalid for function %qs", name);
11163 else if (storage_class == sc_register)
11164 error ("storage class %<register%> invalid for function %qs", name);
11165 else if (thread_p)
11166 {
11167 if (declspecs->gnu_thread_keyword_p)
11168 error ("storage class %<__thread%> invalid for function %qs",
11169 name);
11170 else
11171 error ("storage class %<thread_local%> invalid for function %qs",
11172 name);
11173 }
11174
11175 if (virt_specifiers)
11176 error ("virt-specifiers in %qs not allowed outside a class definition", name);
11177 /* Function declaration not at top level.
11178 Storage classes other than `extern' are not allowed
11179 and `extern' makes no difference. */
11180 if (! toplevel_bindings_p ()
11181 && (storage_class == sc_static
11182 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
11183 && pedantic)
11184 {
11185 if (storage_class == sc_static)
11186 pedwarn (input_location, OPT_Wpedantic,
11187 "%<static%> specified invalid for function %qs "
11188 "declared out of global scope", name);
11189 else
11190 pedwarn (input_location, OPT_Wpedantic,
11191 "%<inline%> specifier invalid for function %qs "
11192 "declared out of global scope", name);
11193 }
11194
11195 if (ctype == NULL_TREE)
11196 {
11197 if (virtualp)
11198 {
11199 error ("virtual non-class function %qs", name);
11200 virtualp = 0;
11201 }
11202 else if (sfk == sfk_constructor
11203 || sfk == sfk_destructor)
11204 {
11205 error (funcdef_flag
11206 ? G_("%qs defined in a non-class scope")
11207 : G_("%qs declared in a non-class scope"), name);
11208 sfk = sfk_none;
11209 }
11210 }
11211
11212 /* Record whether the function is public. */
11213 publicp = (ctype != NULL_TREE
11214 || storage_class != sc_static);
11215
11216 if (late_return_type_p)
11217 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
11218
11219 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
11220 reqs, virtualp, flags, memfn_quals, rqual, raises,
11221 1, friendp,
11222 publicp,
11223 inlinep | (2 * constexpr_p) | (4 * concept_p),
11224 initialized == SD_DELETED,
11225 sfk,
11226 funcdef_flag,
11227 template_count, in_namespace, attrlist,
11228 declarator->id_loc);
11229 if (decl == NULL_TREE)
11230 return error_mark_node;
11231
11232 if (staticp == 1)
11233 {
11234 int invalid_static = 0;
11235
11236 /* Don't allow a static member function in a class, and forbid
11237 declaring main to be static. */
11238 if (TREE_CODE (type) == METHOD_TYPE)
11239 {
11240 permerror (input_location, "cannot declare member function %qD to have "
11241 "static linkage", decl);
11242 invalid_static = 1;
11243 }
11244 else if (current_function_decl)
11245 {
11246 /* FIXME need arm citation */
11247 error ("cannot declare static function inside another function");
11248 invalid_static = 1;
11249 }
11250
11251 if (invalid_static)
11252 {
11253 staticp = 0;
11254 storage_class = sc_none;
11255 }
11256 }
11257 }
11258 else
11259 {
11260 /* It's a variable. */
11261
11262 /* An uninitialized decl with `extern' is a reference. */
11263 decl = grokvardecl (type, dname, unqualified_id,
11264 declspecs,
11265 initialized,
11266 ((type_quals & TYPE_QUAL_CONST) != 0) | (2 * concept_p),
11267 template_count,
11268 ctype ? ctype : in_namespace);
11269 if (decl == NULL_TREE)
11270 return error_mark_node;
11271
11272 bad_specifiers (decl, BSP_VAR, virtualp,
11273 memfn_quals != TYPE_UNQUALIFIED,
11274 inlinep, friendp, raises != NULL_TREE);
11275
11276 if (ctype)
11277 {
11278 DECL_CONTEXT (decl) = ctype;
11279 if (staticp == 1)
11280 {
11281 permerror (input_location, "%<static%> may not be used when defining "
11282 "(as opposed to declaring) a static data member");
11283 staticp = 0;
11284 storage_class = sc_none;
11285 }
11286 if (storage_class == sc_register && TREE_STATIC (decl))
11287 {
11288 error ("static member %qD declared %<register%>", decl);
11289 storage_class = sc_none;
11290 }
11291 if (storage_class == sc_extern && pedantic)
11292 {
11293 pedwarn (input_location, OPT_Wpedantic,
11294 "cannot explicitly declare member %q#D to have "
11295 "extern linkage", decl);
11296 storage_class = sc_none;
11297 }
11298 }
11299 else if (constexpr_p && DECL_EXTERNAL (decl))
11300 {
11301 error ("declaration of constexpr variable %qD is not a definition",
11302 decl);
11303 constexpr_p = false;
11304 }
11305 }
11306
11307 if (storage_class == sc_extern && initialized && !funcdef_flag)
11308 {
11309 if (toplevel_bindings_p ())
11310 {
11311 /* It's common practice (and completely valid) to have a const
11312 be initialized and declared extern. */
11313 if (!(type_quals & TYPE_QUAL_CONST))
11314 warning (0, "%qs initialized and declared %<extern%>", name);
11315 }
11316 else
11317 {
11318 error ("%qs has both %<extern%> and initializer", name);
11319 return error_mark_node;
11320 }
11321 }
11322
11323 /* Record `register' declaration for warnings on &
11324 and in case doing stupid register allocation. */
11325
11326 if (storage_class == sc_register)
11327 DECL_REGISTER (decl) = 1;
11328 else if (storage_class == sc_extern)
11329 DECL_THIS_EXTERN (decl) = 1;
11330 else if (storage_class == sc_static)
11331 DECL_THIS_STATIC (decl) = 1;
11332
11333 /* Set constexpr flag on vars (functions got it in grokfndecl). */
11334 if (constexpr_p && VAR_P (decl))
11335 DECL_DECLARED_CONSTEXPR_P (decl) = true;
11336
11337 /* Record constancy and volatility on the DECL itself . There's
11338 no need to do this when processing a template; we'll do this
11339 for the instantiated declaration based on the type of DECL. */
11340 if (!processing_template_decl)
11341 cp_apply_type_quals_to_decl (type_quals, decl);
11342
11343 return decl;
11344 }
11345 }
11346 \f
11347 /* Subroutine of start_function. Ensure that each of the parameter
11348 types (as listed in PARMS) is complete, as is required for a
11349 function definition. */
11350
11351 static void
11352 require_complete_types_for_parms (tree parms)
11353 {
11354 for (; parms; parms = DECL_CHAIN (parms))
11355 {
11356 if (dependent_type_p (TREE_TYPE (parms)))
11357 continue;
11358 if (!VOID_TYPE_P (TREE_TYPE (parms))
11359 && complete_type_or_else (TREE_TYPE (parms), parms))
11360 {
11361 relayout_decl (parms);
11362 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
11363 }
11364 else
11365 /* grokparms or complete_type_or_else will have already issued
11366 an error. */
11367 TREE_TYPE (parms) = error_mark_node;
11368 }
11369 }
11370
11371 /* Returns nonzero if T is a local variable. */
11372
11373 int
11374 local_variable_p (const_tree t)
11375 {
11376 if ((VAR_P (t)
11377 /* A VAR_DECL with a context that is a _TYPE is a static data
11378 member. */
11379 && !TYPE_P (CP_DECL_CONTEXT (t))
11380 /* Any other non-local variable must be at namespace scope. */
11381 && !DECL_NAMESPACE_SCOPE_P (t))
11382 || (TREE_CODE (t) == PARM_DECL))
11383 return 1;
11384
11385 return 0;
11386 }
11387
11388 /* Like local_variable_p, but suitable for use as a tree-walking
11389 function. */
11390
11391 static tree
11392 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
11393 void * /*data*/)
11394 {
11395 if (local_variable_p (*tp)
11396 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
11397 return *tp;
11398 else if (TYPE_P (*tp))
11399 *walk_subtrees = 0;
11400
11401 return NULL_TREE;
11402 }
11403
11404 /* Check that ARG, which is a default-argument expression for a
11405 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
11406 something goes wrong. DECL may also be a _TYPE node, rather than a
11407 DECL, if there is no DECL available. */
11408
11409 tree
11410 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
11411 {
11412 tree var;
11413 tree decl_type;
11414
11415 if (TREE_CODE (arg) == DEFAULT_ARG)
11416 /* We get a DEFAULT_ARG when looking at an in-class declaration
11417 with a default argument. Ignore the argument for now; we'll
11418 deal with it after the class is complete. */
11419 return arg;
11420
11421 if (TYPE_P (decl))
11422 {
11423 decl_type = decl;
11424 decl = NULL_TREE;
11425 }
11426 else
11427 decl_type = TREE_TYPE (decl);
11428
11429 if (arg == error_mark_node
11430 || decl == error_mark_node
11431 || TREE_TYPE (arg) == error_mark_node
11432 || decl_type == error_mark_node)
11433 /* Something already went wrong. There's no need to check
11434 further. */
11435 return error_mark_node;
11436
11437 /* [dcl.fct.default]
11438
11439 A default argument expression is implicitly converted to the
11440 parameter type. */
11441 ++cp_unevaluated_operand;
11442 perform_implicit_conversion_flags (decl_type, arg, complain,
11443 LOOKUP_IMPLICIT);
11444 --cp_unevaluated_operand;
11445
11446 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
11447 the call sites. */
11448 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
11449 && null_ptr_cst_p (arg))
11450 return nullptr_node;
11451
11452 /* [dcl.fct.default]
11453
11454 Local variables shall not be used in default argument
11455 expressions.
11456
11457 The keyword `this' shall not be used in a default argument of a
11458 member function. */
11459 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
11460 if (var)
11461 {
11462 if (complain & tf_warning_or_error)
11463 {
11464 if (DECL_NAME (var) == this_identifier)
11465 permerror (input_location, "default argument %qE uses %qD",
11466 arg, var);
11467 else
11468 error ("default argument %qE uses local variable %qD", arg, var);
11469 }
11470 return error_mark_node;
11471 }
11472
11473 /* All is well. */
11474 return arg;
11475 }
11476
11477 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
11478
11479 static tree
11480 type_is_deprecated (tree type)
11481 {
11482 enum tree_code code;
11483 if (TREE_DEPRECATED (type))
11484 return type;
11485 if (TYPE_NAME (type)
11486 && TREE_DEPRECATED (TYPE_NAME (type)))
11487 return type;
11488
11489 /* Do warn about using typedefs to a deprecated class. */
11490 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
11491 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
11492
11493 code = TREE_CODE (type);
11494
11495 if (code == POINTER_TYPE || code == REFERENCE_TYPE
11496 || code == OFFSET_TYPE || code == FUNCTION_TYPE
11497 || code == METHOD_TYPE || code == ARRAY_TYPE)
11498 return type_is_deprecated (TREE_TYPE (type));
11499
11500 if (TYPE_PTRMEMFUNC_P (type))
11501 return type_is_deprecated
11502 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
11503
11504 return NULL_TREE;
11505 }
11506
11507 /* Decode the list of parameter types for a function type.
11508 Given the list of things declared inside the parens,
11509 return a list of types.
11510
11511 If this parameter does not end with an ellipsis, we append
11512 void_list_node.
11513
11514 *PARMS is set to the chain of PARM_DECLs created. */
11515
11516 tree
11517 grokparms (tree parmlist, tree *parms)
11518 {
11519 tree result = NULL_TREE;
11520 tree decls = NULL_TREE;
11521 tree parm;
11522 int any_error = 0;
11523
11524 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
11525 {
11526 tree type = NULL_TREE;
11527 tree init = TREE_PURPOSE (parm);
11528 tree decl = TREE_VALUE (parm);
11529 const char *errmsg;
11530
11531 if (parm == void_list_node)
11532 break;
11533
11534 if (! decl || TREE_TYPE (decl) == error_mark_node)
11535 continue;
11536
11537 type = TREE_TYPE (decl);
11538 if (VOID_TYPE_P (type))
11539 {
11540 if (same_type_p (type, void_type_node)
11541 && !init
11542 && !DECL_NAME (decl) && !result
11543 && TREE_CHAIN (parm) == void_list_node)
11544 /* DR 577: A parameter list consisting of a single
11545 unnamed parameter of non-dependent type 'void'. */
11546 break;
11547 else if (cv_qualified_p (type))
11548 error_at (DECL_SOURCE_LOCATION (decl),
11549 "invalid use of cv-qualified type %qT in "
11550 "parameter declaration", type);
11551 else
11552 error_at (DECL_SOURCE_LOCATION (decl),
11553 "invalid use of type %<void%> in parameter "
11554 "declaration");
11555 /* It's not a good idea to actually create parameters of
11556 type `void'; other parts of the compiler assume that a
11557 void type terminates the parameter list. */
11558 type = error_mark_node;
11559 TREE_TYPE (decl) = error_mark_node;
11560 }
11561
11562 if (type != error_mark_node
11563 && TYPE_FOR_JAVA (type)
11564 && MAYBE_CLASS_TYPE_P (type))
11565 {
11566 error ("parameter %qD has Java class type", decl);
11567 type = error_mark_node;
11568 TREE_TYPE (decl) = error_mark_node;
11569 init = NULL_TREE;
11570 }
11571
11572 if (type != error_mark_node
11573 && (errmsg = targetm.invalid_parameter_type (type)))
11574 {
11575 error (errmsg);
11576 type = error_mark_node;
11577 TREE_TYPE (decl) = error_mark_node;
11578 }
11579
11580 if (type != error_mark_node)
11581 {
11582 if (deprecated_state != DEPRECATED_SUPPRESS)
11583 {
11584 tree deptype = type_is_deprecated (type);
11585 if (deptype)
11586 warn_deprecated_use (deptype, NULL_TREE);
11587 }
11588
11589 /* Top-level qualifiers on the parameters are
11590 ignored for function types. */
11591 type = cp_build_qualified_type (type, 0);
11592 if (TREE_CODE (type) == METHOD_TYPE)
11593 {
11594 error ("parameter %qD invalidly declared method type", decl);
11595 type = build_pointer_type (type);
11596 TREE_TYPE (decl) = type;
11597 }
11598 else if (abstract_virtuals_error (decl, type))
11599 any_error = 1; /* Seems like a good idea. */
11600 else if (POINTER_TYPE_P (type))
11601 {
11602 /* [dcl.fct]/6, parameter types cannot contain pointers
11603 (references) to arrays of unknown bound. */
11604 tree t = TREE_TYPE (type);
11605 int ptr = TYPE_PTR_P (type);
11606
11607 while (1)
11608 {
11609 if (TYPE_PTR_P (t))
11610 ptr = 1;
11611 else if (TREE_CODE (t) != ARRAY_TYPE)
11612 break;
11613 else if (!TYPE_DOMAIN (t))
11614 break;
11615 t = TREE_TYPE (t);
11616 }
11617 if (TREE_CODE (t) == ARRAY_TYPE)
11618 error (ptr
11619 ? G_("parameter %qD includes pointer to array of "
11620 "unknown bound %qT")
11621 : G_("parameter %qD includes reference to array of "
11622 "unknown bound %qT"),
11623 decl, t);
11624 }
11625
11626 if (any_error)
11627 init = NULL_TREE;
11628 else if (init && !processing_template_decl)
11629 init = check_default_argument (decl, init, tf_warning_or_error);
11630 }
11631
11632 DECL_CHAIN (decl) = decls;
11633 decls = decl;
11634 result = tree_cons (init, type, result);
11635 }
11636 decls = nreverse (decls);
11637 result = nreverse (result);
11638 if (parm)
11639 result = chainon (result, void_list_node);
11640 *parms = decls;
11641
11642 return result;
11643 }
11644
11645 \f
11646 /* D is a constructor or overloaded `operator='.
11647
11648 Let T be the class in which D is declared. Then, this function
11649 returns:
11650
11651 -1 if D's is an ill-formed constructor or copy assignment operator
11652 whose first parameter is of type `T'.
11653 0 if D is not a copy constructor or copy assignment
11654 operator.
11655 1 if D is a copy constructor or copy assignment operator whose
11656 first parameter is a reference to non-const qualified T.
11657 2 if D is a copy constructor or copy assignment operator whose
11658 first parameter is a reference to const qualified T.
11659
11660 This function can be used as a predicate. Positive values indicate
11661 a copy constructor and nonzero values indicate a copy assignment
11662 operator. */
11663
11664 int
11665 copy_fn_p (const_tree d)
11666 {
11667 tree args;
11668 tree arg_type;
11669 int result = 1;
11670
11671 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11672
11673 if (TREE_CODE (d) == TEMPLATE_DECL
11674 || (DECL_TEMPLATE_INFO (d)
11675 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11676 /* Instantiations of template member functions are never copy
11677 functions. Note that member functions of templated classes are
11678 represented as template functions internally, and we must
11679 accept those as copy functions. */
11680 return 0;
11681
11682 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11683 if (!args)
11684 return 0;
11685
11686 arg_type = TREE_VALUE (args);
11687 if (arg_type == error_mark_node)
11688 return 0;
11689
11690 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
11691 {
11692 /* Pass by value copy assignment operator. */
11693 result = -1;
11694 }
11695 else if (TREE_CODE (arg_type) == REFERENCE_TYPE
11696 && !TYPE_REF_IS_RVALUE (arg_type)
11697 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
11698 {
11699 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
11700 result = 2;
11701 }
11702 else
11703 return 0;
11704
11705 args = TREE_CHAIN (args);
11706
11707 if (args && args != void_list_node && !TREE_PURPOSE (args))
11708 /* There are more non-optional args. */
11709 return 0;
11710
11711 return result;
11712 }
11713
11714 /* D is a constructor or overloaded `operator='.
11715
11716 Let T be the class in which D is declared. Then, this function
11717 returns true when D is a move constructor or move assignment
11718 operator, false otherwise. */
11719
11720 bool
11721 move_fn_p (const_tree d)
11722 {
11723 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
11724
11725 if (cxx_dialect == cxx98)
11726 /* There are no move constructors if we are in C++98 mode. */
11727 return false;
11728
11729 if (TREE_CODE (d) == TEMPLATE_DECL
11730 || (DECL_TEMPLATE_INFO (d)
11731 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
11732 /* Instantiations of template member functions are never move
11733 functions. Note that member functions of templated classes are
11734 represented as template functions internally, and we must
11735 accept those as move functions. */
11736 return 0;
11737
11738 return move_signature_fn_p (d);
11739 }
11740
11741 /* D is a constructor or overloaded `operator='.
11742
11743 Then, this function returns true when D has the same signature as a move
11744 constructor or move assignment operator (because either it is such a
11745 ctor/op= or it is a template specialization with the same signature),
11746 false otherwise. */
11747
11748 bool
11749 move_signature_fn_p (const_tree d)
11750 {
11751 tree args;
11752 tree arg_type;
11753 bool result = false;
11754
11755 args = FUNCTION_FIRST_USER_PARMTYPE (d);
11756 if (!args)
11757 return 0;
11758
11759 arg_type = TREE_VALUE (args);
11760 if (arg_type == error_mark_node)
11761 return 0;
11762
11763 if (TREE_CODE (arg_type) == REFERENCE_TYPE
11764 && TYPE_REF_IS_RVALUE (arg_type)
11765 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
11766 DECL_CONTEXT (d)))
11767 result = true;
11768
11769 args = TREE_CHAIN (args);
11770
11771 if (args && args != void_list_node && !TREE_PURPOSE (args))
11772 /* There are more non-optional args. */
11773 return false;
11774
11775 return result;
11776 }
11777
11778 /* Remember any special properties of member function DECL. */
11779
11780 void
11781 grok_special_member_properties (tree decl)
11782 {
11783 tree class_type;
11784
11785 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
11786 return;
11787
11788 class_type = DECL_CONTEXT (decl);
11789 if (DECL_CONSTRUCTOR_P (decl))
11790 {
11791 int ctor = copy_fn_p (decl);
11792
11793 if (!DECL_ARTIFICIAL (decl))
11794 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
11795
11796 if (ctor > 0)
11797 {
11798 /* [class.copy]
11799
11800 A non-template constructor for class X is a copy
11801 constructor if its first parameter is of type X&, const
11802 X&, volatile X& or const volatile X&, and either there
11803 are no other parameters or else all other parameters have
11804 default arguments. */
11805 TYPE_HAS_COPY_CTOR (class_type) = 1;
11806 if (user_provided_p (decl))
11807 TYPE_HAS_COMPLEX_COPY_CTOR (class_type) = 1;
11808 if (ctor > 1)
11809 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
11810 }
11811 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
11812 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
11813 else if (move_fn_p (decl) && user_provided_p (decl))
11814 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type) = 1;
11815 else if (is_list_ctor (decl))
11816 TYPE_HAS_LIST_CTOR (class_type) = 1;
11817
11818 if (DECL_DECLARED_CONSTEXPR_P (decl)
11819 && !copy_fn_p (decl) && !move_fn_p (decl))
11820 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
11821 }
11822 else if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
11823 {
11824 /* [class.copy]
11825
11826 A non-template assignment operator for class X is a copy
11827 assignment operator if its parameter is of type X, X&, const
11828 X&, volatile X& or const volatile X&. */
11829
11830 int assop = copy_fn_p (decl);
11831
11832 if (assop)
11833 {
11834 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
11835 if (user_provided_p (decl))
11836 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type) = 1;
11837 if (assop != 1)
11838 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
11839 }
11840 else if (move_fn_p (decl) && user_provided_p (decl))
11841 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type) = 1;
11842 }
11843 /* Destructors are handled in check_methods. */
11844 }
11845
11846 /* Check a constructor DECL has the correct form. Complains
11847 if the class has a constructor of the form X(X). */
11848
11849 int
11850 grok_ctor_properties (const_tree ctype, const_tree decl)
11851 {
11852 int ctor_parm = copy_fn_p (decl);
11853
11854 if (ctor_parm < 0)
11855 {
11856 /* [class.copy]
11857
11858 A declaration of a constructor for a class X is ill-formed if
11859 its first parameter is of type (optionally cv-qualified) X
11860 and either there are no other parameters or else all other
11861 parameters have default arguments.
11862
11863 We *don't* complain about member template instantiations that
11864 have this form, though; they can occur as we try to decide
11865 what constructor to use during overload resolution. Since
11866 overload resolution will never prefer such a constructor to
11867 the non-template copy constructor (which is either explicitly
11868 or implicitly defined), there's no need to worry about their
11869 existence. Theoretically, they should never even be
11870 instantiated, but that's hard to forestall. */
11871 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
11872 ctype, ctype);
11873 return 0;
11874 }
11875
11876 return 1;
11877 }
11878
11879 /* An operator with this code is unary, but can also be binary. */
11880
11881 static int
11882 ambi_op_p (enum tree_code code)
11883 {
11884 return (code == INDIRECT_REF
11885 || code == ADDR_EXPR
11886 || code == UNARY_PLUS_EXPR
11887 || code == NEGATE_EXPR
11888 || code == PREINCREMENT_EXPR
11889 || code == PREDECREMENT_EXPR);
11890 }
11891
11892 /* An operator with this name can only be unary. */
11893
11894 static int
11895 unary_op_p (enum tree_code code)
11896 {
11897 return (code == TRUTH_NOT_EXPR
11898 || code == BIT_NOT_EXPR
11899 || code == COMPONENT_REF
11900 || code == TYPE_EXPR);
11901 }
11902
11903 /* DECL is a declaration for an overloaded operator. If COMPLAIN is true,
11904 errors are issued for invalid declarations. */
11905
11906 bool
11907 grok_op_properties (tree decl, bool complain)
11908 {
11909 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
11910 tree argtype;
11911 int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
11912 tree name = DECL_NAME (decl);
11913 enum tree_code operator_code;
11914 int arity;
11915 bool ellipsis_p;
11916 tree class_type;
11917
11918 /* Count the number of arguments and check for ellipsis. */
11919 for (argtype = argtypes, arity = 0;
11920 argtype && argtype != void_list_node;
11921 argtype = TREE_CHAIN (argtype))
11922 ++arity;
11923 ellipsis_p = !argtype;
11924
11925 class_type = DECL_CONTEXT (decl);
11926 if (class_type && !CLASS_TYPE_P (class_type))
11927 class_type = NULL_TREE;
11928
11929 if (DECL_CONV_FN_P (decl))
11930 operator_code = TYPE_EXPR;
11931 else
11932 do
11933 {
11934 #define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P) \
11935 if (ansi_opname (CODE) == name) \
11936 { \
11937 operator_code = (CODE); \
11938 break; \
11939 } \
11940 else if (ansi_assopname (CODE) == name) \
11941 { \
11942 operator_code = (CODE); \
11943 DECL_ASSIGNMENT_OPERATOR_P (decl) = 1; \
11944 break; \
11945 }
11946
11947 #include "operators.def"
11948 #undef DEF_OPERATOR
11949
11950 gcc_unreachable ();
11951 }
11952 while (0);
11953 gcc_assert (operator_code != MAX_TREE_CODES);
11954 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
11955
11956 if (class_type)
11957 switch (operator_code)
11958 {
11959 case NEW_EXPR:
11960 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
11961 break;
11962
11963 case DELETE_EXPR:
11964 TYPE_GETS_DELETE (class_type) |= 1;
11965 break;
11966
11967 case VEC_NEW_EXPR:
11968 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
11969 break;
11970
11971 case VEC_DELETE_EXPR:
11972 TYPE_GETS_DELETE (class_type) |= 2;
11973 break;
11974
11975 default:
11976 break;
11977 }
11978
11979 /* [basic.std.dynamic.allocation]/1:
11980
11981 A program is ill-formed if an allocation function is declared
11982 in a namespace scope other than global scope or declared static
11983 in global scope.
11984
11985 The same also holds true for deallocation functions. */
11986 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR
11987 || operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
11988 {
11989 if (DECL_NAMESPACE_SCOPE_P (decl))
11990 {
11991 if (CP_DECL_CONTEXT (decl) != global_namespace)
11992 {
11993 error ("%qD may not be declared within a namespace", decl);
11994 return false;
11995 }
11996 else if (!TREE_PUBLIC (decl))
11997 {
11998 error ("%qD may not be declared as static", decl);
11999 return false;
12000 }
12001 }
12002 }
12003
12004 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR)
12005 {
12006 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
12007 DECL_IS_OPERATOR_NEW (decl) = 1;
12008 }
12009 else if (operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
12010 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
12011 else
12012 {
12013 /* An operator function must either be a non-static member function
12014 or have at least one parameter of a class, a reference to a class,
12015 an enumeration, or a reference to an enumeration. 13.4.0.6 */
12016 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
12017 {
12018 if (operator_code == TYPE_EXPR
12019 || operator_code == CALL_EXPR
12020 || operator_code == COMPONENT_REF
12021 || operator_code == ARRAY_REF
12022 || operator_code == NOP_EXPR)
12023 {
12024 error ("%qD must be a nonstatic member function", decl);
12025 return false;
12026 }
12027 else
12028 {
12029 tree p;
12030
12031 if (DECL_STATIC_FUNCTION_P (decl))
12032 {
12033 error ("%qD must be either a non-static member "
12034 "function or a non-member function", decl);
12035 return false;
12036 }
12037
12038 for (p = argtypes; p && p != void_list_node; p = TREE_CHAIN (p))
12039 {
12040 tree arg = non_reference (TREE_VALUE (p));
12041 if (arg == error_mark_node)
12042 return false;
12043
12044 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
12045 because these checks are performed even on
12046 template functions. */
12047 if (MAYBE_CLASS_TYPE_P (arg)
12048 || TREE_CODE (arg) == ENUMERAL_TYPE)
12049 break;
12050 }
12051
12052 if (!p || p == void_list_node)
12053 {
12054 if (complain)
12055 error ("%qD must have an argument of class or "
12056 "enumerated type", decl);
12057 return false;
12058 }
12059 }
12060 }
12061
12062 /* There are no restrictions on the arguments to an overloaded
12063 "operator ()". */
12064 if (operator_code == CALL_EXPR)
12065 return true;
12066
12067 /* Warn about conversion operators that will never be used. */
12068 if (IDENTIFIER_TYPENAME_P (name)
12069 && ! DECL_TEMPLATE_INFO (decl)
12070 && warn_conversion
12071 /* Warn only declaring the function; there is no need to
12072 warn again about out-of-class definitions. */
12073 && class_type == current_class_type)
12074 {
12075 tree t = TREE_TYPE (name);
12076 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
12077
12078 if (ref)
12079 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
12080
12081 if (VOID_TYPE_P (t))
12082 warning (OPT_Wconversion,
12083 ref
12084 ? G_("conversion to a reference to void "
12085 "will never use a type conversion operator")
12086 : G_("conversion to void "
12087 "will never use a type conversion operator"));
12088 else if (class_type)
12089 {
12090 if (t == class_type)
12091 warning (OPT_Wconversion,
12092 ref
12093 ? G_("conversion to a reference to the same type "
12094 "will never use a type conversion operator")
12095 : G_("conversion to the same type "
12096 "will never use a type conversion operator"));
12097 /* Don't force t to be complete here. */
12098 else if (MAYBE_CLASS_TYPE_P (t)
12099 && COMPLETE_TYPE_P (t)
12100 && DERIVED_FROM_P (t, class_type))
12101 warning (OPT_Wconversion,
12102 ref
12103 ? G_("conversion to a reference to a base class "
12104 "will never use a type conversion operator")
12105 : G_("conversion to a base class "
12106 "will never use a type conversion operator"));
12107 }
12108
12109 }
12110
12111 if (operator_code == COND_EXPR)
12112 {
12113 /* 13.4.0.3 */
12114 error ("ISO C++ prohibits overloading operator ?:");
12115 return false;
12116 }
12117 else if (ellipsis_p)
12118 {
12119 error ("%qD must not have variable number of arguments", decl);
12120 return false;
12121 }
12122 else if (ambi_op_p (operator_code))
12123 {
12124 if (arity == 1)
12125 /* We pick the one-argument operator codes by default, so
12126 we don't have to change anything. */
12127 ;
12128 else if (arity == 2)
12129 {
12130 /* If we thought this was a unary operator, we now know
12131 it to be a binary operator. */
12132 switch (operator_code)
12133 {
12134 case INDIRECT_REF:
12135 operator_code = MULT_EXPR;
12136 break;
12137
12138 case ADDR_EXPR:
12139 operator_code = BIT_AND_EXPR;
12140 break;
12141
12142 case UNARY_PLUS_EXPR:
12143 operator_code = PLUS_EXPR;
12144 break;
12145
12146 case NEGATE_EXPR:
12147 operator_code = MINUS_EXPR;
12148 break;
12149
12150 case PREINCREMENT_EXPR:
12151 operator_code = POSTINCREMENT_EXPR;
12152 break;
12153
12154 case PREDECREMENT_EXPR:
12155 operator_code = POSTDECREMENT_EXPR;
12156 break;
12157
12158 default:
12159 gcc_unreachable ();
12160 }
12161
12162 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
12163
12164 if ((operator_code == POSTINCREMENT_EXPR
12165 || operator_code == POSTDECREMENT_EXPR)
12166 && ! processing_template_decl
12167 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)), integer_type_node))
12168 {
12169 if (methodp)
12170 error ("postfix %qD must take %<int%> as its argument",
12171 decl);
12172 else
12173 error ("postfix %qD must take %<int%> as its second "
12174 "argument", decl);
12175 return false;
12176 }
12177 }
12178 else
12179 {
12180 if (methodp)
12181 error ("%qD must take either zero or one argument", decl);
12182 else
12183 error ("%qD must take either one or two arguments", decl);
12184 return false;
12185 }
12186
12187 /* More Effective C++ rule 6. */
12188 if (warn_ecpp
12189 && (operator_code == POSTINCREMENT_EXPR
12190 || operator_code == POSTDECREMENT_EXPR
12191 || operator_code == PREINCREMENT_EXPR
12192 || operator_code == PREDECREMENT_EXPR))
12193 {
12194 tree arg = TREE_VALUE (argtypes);
12195 tree ret = TREE_TYPE (TREE_TYPE (decl));
12196 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
12197 arg = TREE_TYPE (arg);
12198 arg = TYPE_MAIN_VARIANT (arg);
12199 if (operator_code == PREINCREMENT_EXPR
12200 || operator_code == PREDECREMENT_EXPR)
12201 {
12202 if (TREE_CODE (ret) != REFERENCE_TYPE
12203 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)),
12204 arg))
12205 warning (OPT_Weffc__, "prefix %qD should return %qT", decl,
12206 build_reference_type (arg));
12207 }
12208 else
12209 {
12210 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
12211 warning (OPT_Weffc__, "postfix %qD should return %qT", decl, arg);
12212 }
12213 }
12214 }
12215 else if (unary_op_p (operator_code))
12216 {
12217 if (arity != 1)
12218 {
12219 if (methodp)
12220 error ("%qD must take %<void%>", decl);
12221 else
12222 error ("%qD must take exactly one argument", decl);
12223 return false;
12224 }
12225 }
12226 else /* if (binary_op_p (operator_code)) */
12227 {
12228 if (arity != 2)
12229 {
12230 if (methodp)
12231 error ("%qD must take exactly one argument", decl);
12232 else
12233 error ("%qD must take exactly two arguments", decl);
12234 return false;
12235 }
12236
12237 /* More Effective C++ rule 7. */
12238 if (warn_ecpp
12239 && (operator_code == TRUTH_ANDIF_EXPR
12240 || operator_code == TRUTH_ORIF_EXPR
12241 || operator_code == COMPOUND_EXPR))
12242 warning (OPT_Weffc__, "user-defined %qD always evaluates both arguments",
12243 decl);
12244 }
12245
12246 /* Effective C++ rule 23. */
12247 if (warn_ecpp
12248 && arity == 2
12249 && !DECL_ASSIGNMENT_OPERATOR_P (decl)
12250 && (operator_code == PLUS_EXPR
12251 || operator_code == MINUS_EXPR
12252 || operator_code == TRUNC_DIV_EXPR
12253 || operator_code == MULT_EXPR
12254 || operator_code == TRUNC_MOD_EXPR)
12255 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
12256 warning (OPT_Weffc__, "%qD should return by value", decl);
12257
12258 /* [over.oper]/8 */
12259 for (; argtypes && argtypes != void_list_node;
12260 argtypes = TREE_CHAIN (argtypes))
12261 if (TREE_PURPOSE (argtypes))
12262 {
12263 TREE_PURPOSE (argtypes) = NULL_TREE;
12264 if (operator_code == POSTINCREMENT_EXPR
12265 || operator_code == POSTDECREMENT_EXPR)
12266 {
12267 pedwarn (input_location, OPT_Wpedantic, "%qD cannot have default arguments",
12268 decl);
12269 }
12270 else
12271 {
12272 error ("%qD cannot have default arguments", decl);
12273 return false;
12274 }
12275 }
12276 }
12277 return true;
12278 }
12279 \f
12280 /* Return a string giving the keyword associate with CODE. */
12281
12282 static const char *
12283 tag_name (enum tag_types code)
12284 {
12285 switch (code)
12286 {
12287 case record_type:
12288 return "struct";
12289 case class_type:
12290 return "class";
12291 case union_type:
12292 return "union";
12293 case enum_type:
12294 return "enum";
12295 case typename_type:
12296 return "typename";
12297 default:
12298 gcc_unreachable ();
12299 }
12300 }
12301
12302 /* Name lookup in an elaborated-type-specifier (after the keyword
12303 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
12304 elaborated-type-specifier is invalid, issue a diagnostic and return
12305 error_mark_node; otherwise, return the *_TYPE to which it referred.
12306 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
12307
12308 tree
12309 check_elaborated_type_specifier (enum tag_types tag_code,
12310 tree decl,
12311 bool allow_template_p)
12312 {
12313 tree type;
12314
12315 /* In the case of:
12316
12317 struct S { struct S *p; };
12318
12319 name lookup will find the TYPE_DECL for the implicit "S::S"
12320 typedef. Adjust for that here. */
12321 if (DECL_SELF_REFERENCE_P (decl))
12322 decl = TYPE_NAME (TREE_TYPE (decl));
12323
12324 type = TREE_TYPE (decl);
12325
12326 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
12327 is false for this case as well. */
12328 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
12329 {
12330 error ("using template type parameter %qT after %qs",
12331 type, tag_name (tag_code));
12332 return error_mark_node;
12333 }
12334 /* Accept template template parameters. */
12335 else if (allow_template_p
12336 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
12337 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
12338 ;
12339 /* [dcl.type.elab]
12340
12341 If the identifier resolves to a typedef-name or the
12342 simple-template-id resolves to an alias template
12343 specialization, the elaborated-type-specifier is ill-formed.
12344
12345 In other words, the only legitimate declaration to use in the
12346 elaborated type specifier is the implicit typedef created when
12347 the type is declared. */
12348 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
12349 && !DECL_SELF_REFERENCE_P (decl)
12350 && tag_code != typename_type)
12351 {
12352 if (alias_template_specialization_p (type))
12353 error ("using alias template specialization %qT after %qs",
12354 type, tag_name (tag_code));
12355 else
12356 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
12357 inform (DECL_SOURCE_LOCATION (decl),
12358 "%qD has a previous declaration here", decl);
12359 return error_mark_node;
12360 }
12361 else if (TREE_CODE (type) != RECORD_TYPE
12362 && TREE_CODE (type) != UNION_TYPE
12363 && tag_code != enum_type
12364 && tag_code != typename_type)
12365 {
12366 error ("%qT referred to as %qs", type, tag_name (tag_code));
12367 inform (input_location, "%q+T has a previous declaration here", type);
12368 return error_mark_node;
12369 }
12370 else if (TREE_CODE (type) != ENUMERAL_TYPE
12371 && tag_code == enum_type)
12372 {
12373 error ("%qT referred to as enum", type);
12374 inform (input_location, "%q+T has a previous declaration here", type);
12375 return error_mark_node;
12376 }
12377 else if (!allow_template_p
12378 && TREE_CODE (type) == RECORD_TYPE
12379 && CLASSTYPE_IS_TEMPLATE (type))
12380 {
12381 /* If a class template appears as elaborated type specifier
12382 without a template header such as:
12383
12384 template <class T> class C {};
12385 void f(class C); // No template header here
12386
12387 then the required template argument is missing. */
12388 error ("template argument required for %<%s %T%>",
12389 tag_name (tag_code),
12390 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
12391 return error_mark_node;
12392 }
12393
12394 return type;
12395 }
12396
12397 /* Lookup NAME in elaborate type specifier in scope according to
12398 SCOPE and issue diagnostics if necessary.
12399 Return *_TYPE node upon success, NULL_TREE when the NAME is not
12400 found, and ERROR_MARK_NODE for type error. */
12401
12402 static tree
12403 lookup_and_check_tag (enum tag_types tag_code, tree name,
12404 tag_scope scope, bool template_header_p)
12405 {
12406 tree t;
12407 tree decl;
12408 if (scope == ts_global)
12409 {
12410 /* First try ordinary name lookup, ignoring hidden class name
12411 injected via friend declaration. */
12412 decl = lookup_name_prefer_type (name, 2);
12413 decl = strip_using_decl (decl);
12414 /* If that fails, the name will be placed in the smallest
12415 non-class, non-function-prototype scope according to 3.3.1/5.
12416 We may already have a hidden name declared as friend in this
12417 scope. So lookup again but not ignoring hidden names.
12418 If we find one, that name will be made visible rather than
12419 creating a new tag. */
12420 if (!decl)
12421 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
12422 }
12423 else
12424 decl = lookup_type_scope (name, scope);
12425
12426 if (decl
12427 && (DECL_CLASS_TEMPLATE_P (decl)
12428 /* If scope is ts_current we're defining a class, so ignore a
12429 template template parameter. */
12430 || (scope != ts_current
12431 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
12432 decl = DECL_TEMPLATE_RESULT (decl);
12433
12434 if (decl && TREE_CODE (decl) == TYPE_DECL)
12435 {
12436 /* Look for invalid nested type:
12437 class C {
12438 class C {};
12439 }; */
12440 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
12441 {
12442 error ("%qD has the same name as the class in which it is "
12443 "declared",
12444 decl);
12445 return error_mark_node;
12446 }
12447
12448 /* Two cases we need to consider when deciding if a class
12449 template is allowed as an elaborated type specifier:
12450 1. It is a self reference to its own class.
12451 2. It comes with a template header.
12452
12453 For example:
12454
12455 template <class T> class C {
12456 class C *c1; // DECL_SELF_REFERENCE_P is true
12457 class D;
12458 };
12459 template <class U> class C; // template_header_p is true
12460 template <class T> class C<T>::D {
12461 class C *c2; // DECL_SELF_REFERENCE_P is true
12462 }; */
12463
12464 t = check_elaborated_type_specifier (tag_code,
12465 decl,
12466 template_header_p
12467 | DECL_SELF_REFERENCE_P (decl));
12468 return t;
12469 }
12470 else if (decl && TREE_CODE (decl) == TREE_LIST)
12471 {
12472 error ("reference to %qD is ambiguous", name);
12473 print_candidates (decl);
12474 return error_mark_node;
12475 }
12476 else
12477 return NULL_TREE;
12478 }
12479
12480 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
12481 Define the tag as a forward-reference if it is not defined.
12482
12483 If a declaration is given, process it here, and report an error if
12484 multiple declarations are not identical.
12485
12486 SCOPE is TS_CURRENT when this is also a definition. Only look in
12487 the current frame for the name (since C++ allows new names in any
12488 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
12489 declaration. Only look beginning from the current scope outward up
12490 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
12491
12492 TEMPLATE_HEADER_P is true when this declaration is preceded by
12493 a set of template parameters. */
12494
12495 static tree
12496 xref_tag_1 (enum tag_types tag_code, tree name,
12497 tag_scope orig_scope, bool template_header_p)
12498 {
12499 enum tree_code code;
12500 tree t;
12501 tree context = NULL_TREE;
12502 tag_scope scope;
12503
12504 gcc_assert (identifier_p (name));
12505
12506 switch (tag_code)
12507 {
12508 case record_type:
12509 case class_type:
12510 code = RECORD_TYPE;
12511 break;
12512 case union_type:
12513 code = UNION_TYPE;
12514 break;
12515 case enum_type:
12516 code = ENUMERAL_TYPE;
12517 break;
12518 default:
12519 gcc_unreachable ();
12520 }
12521
12522 if (orig_scope == ts_lambda)
12523 scope = ts_current;
12524 else
12525 scope = orig_scope;
12526
12527 /* In case of anonymous name, xref_tag is only called to
12528 make type node and push name. Name lookup is not required. */
12529 if (anon_aggrname_p (name))
12530 t = NULL_TREE;
12531 else
12532 t = lookup_and_check_tag (tag_code, name,
12533 scope, template_header_p);
12534
12535 if (t == error_mark_node)
12536 return error_mark_node;
12537
12538 if (scope != ts_current && t && current_class_type
12539 && template_class_depth (current_class_type)
12540 && template_header_p)
12541 {
12542 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
12543 return t;
12544
12545 /* Since SCOPE is not TS_CURRENT, we are not looking at a
12546 definition of this tag. Since, in addition, we are currently
12547 processing a (member) template declaration of a template
12548 class, we must be very careful; consider:
12549
12550 template <class X>
12551 struct S1
12552
12553 template <class U>
12554 struct S2
12555 { template <class V>
12556 friend struct S1; };
12557
12558 Here, the S2::S1 declaration should not be confused with the
12559 outer declaration. In particular, the inner version should
12560 have a template parameter of level 2, not level 1. This
12561 would be particularly important if the member declaration
12562 were instead:
12563
12564 template <class V = U> friend struct S1;
12565
12566 say, when we should tsubst into `U' when instantiating
12567 S2. On the other hand, when presented with:
12568
12569 template <class T>
12570 struct S1 {
12571 template <class U>
12572 struct S2 {};
12573 template <class U>
12574 friend struct S2;
12575 };
12576
12577 we must find the inner binding eventually. We
12578 accomplish this by making sure that the new type we
12579 create to represent this declaration has the right
12580 TYPE_CONTEXT. */
12581 context = TYPE_CONTEXT (t);
12582 t = NULL_TREE;
12583 }
12584
12585 if (! t)
12586 {
12587 /* If no such tag is yet defined, create a forward-reference node
12588 and record it as the "definition".
12589 When a real declaration of this type is found,
12590 the forward-reference will be altered into a real type. */
12591 if (code == ENUMERAL_TYPE)
12592 {
12593 error ("use of enum %q#D without previous declaration", name);
12594 return error_mark_node;
12595 }
12596 else
12597 {
12598 t = make_class_type (code);
12599 TYPE_CONTEXT (t) = context;
12600 if (orig_scope == ts_lambda)
12601 /* Remember that we're declaring a lambda to avoid bogus errors
12602 in push_template_decl. */
12603 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
12604 t = pushtag (name, t, scope);
12605 }
12606 }
12607 else
12608 {
12609 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
12610 {
12611 /* Check that we aren't trying to overload a class with different
12612 constraints. */
12613 tree constr = NULL_TREE;
12614 if (current_template_parms)
12615 {
12616 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
12617 constr = build_constraints (reqs, NULL_TREE);
12618 }
12619 if (!redeclare_class_template (t, current_template_parms, constr))
12620 return error_mark_node;
12621 }
12622 else if (!processing_template_decl
12623 && CLASS_TYPE_P (t)
12624 && CLASSTYPE_IS_TEMPLATE (t))
12625 {
12626 error ("redeclaration of %qT as a non-template", t);
12627 error ("previous declaration %q+D", t);
12628 return error_mark_node;
12629 }
12630
12631 /* Make injected friend class visible. */
12632 if (scope != ts_within_enclosing_non_class
12633 && hidden_name_p (TYPE_NAME (t)))
12634 {
12635 DECL_ANTICIPATED (TYPE_NAME (t)) = 0;
12636 DECL_FRIEND_P (TYPE_NAME (t)) = 0;
12637
12638 if (TYPE_TEMPLATE_INFO (t))
12639 {
12640 DECL_ANTICIPATED (TYPE_TI_TEMPLATE (t)) = 0;
12641 DECL_FRIEND_P (TYPE_TI_TEMPLATE (t)) = 0;
12642 }
12643 }
12644 }
12645
12646 return t;
12647 }
12648
12649 /* Wrapper for xref_tag_1. */
12650
12651 tree
12652 xref_tag (enum tag_types tag_code, tree name,
12653 tag_scope scope, bool template_header_p)
12654 {
12655 tree ret;
12656 bool subtime;
12657 subtime = timevar_cond_start (TV_NAME_LOOKUP);
12658 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
12659 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
12660 return ret;
12661 }
12662
12663
12664 tree
12665 xref_tag_from_type (tree old, tree id, tag_scope scope)
12666 {
12667 enum tag_types tag_kind;
12668
12669 if (TREE_CODE (old) == RECORD_TYPE)
12670 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
12671 else
12672 tag_kind = union_type;
12673
12674 if (id == NULL_TREE)
12675 id = TYPE_IDENTIFIER (old);
12676
12677 return xref_tag (tag_kind, id, scope, false);
12678 }
12679
12680 /* Create the binfo hierarchy for REF with (possibly NULL) base list
12681 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
12682 access_* node, and the TREE_VALUE is the type of the base-class.
12683 Non-NULL TREE_TYPE indicates virtual inheritance.
12684
12685 Returns true if the binfo hierarchy was successfully created,
12686 false if an error was detected. */
12687
12688 bool
12689 xref_basetypes (tree ref, tree base_list)
12690 {
12691 tree *basep;
12692 tree binfo, base_binfo;
12693 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
12694 unsigned max_bases = 0; /* Maximum direct bases. */
12695 int i;
12696 tree default_access;
12697 tree igo_prev; /* Track Inheritance Graph Order. */
12698
12699 if (ref == error_mark_node)
12700 return false;
12701
12702 /* The base of a derived class is private by default, all others are
12703 public. */
12704 default_access = (TREE_CODE (ref) == RECORD_TYPE
12705 && CLASSTYPE_DECLARED_CLASS (ref)
12706 ? access_private_node : access_public_node);
12707
12708 /* First, make sure that any templates in base-classes are
12709 instantiated. This ensures that if we call ourselves recursively
12710 we do not get confused about which classes are marked and which
12711 are not. */
12712 basep = &base_list;
12713 while (*basep)
12714 {
12715 tree basetype = TREE_VALUE (*basep);
12716
12717 /* The dependent_type_p call below should really be dependent_scope_p
12718 so that we give a hard error about using an incomplete type as a
12719 base, but we allow it with a pedwarn for backward
12720 compatibility. */
12721 if (processing_template_decl
12722 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
12723 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
12724 if (!dependent_type_p (basetype)
12725 && !complete_type_or_else (basetype, NULL))
12726 /* An incomplete type. Remove it from the list. */
12727 *basep = TREE_CHAIN (*basep);
12728 else
12729 {
12730 max_bases++;
12731 if (TREE_TYPE (*basep))
12732 max_vbases++;
12733 if (CLASS_TYPE_P (basetype))
12734 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
12735 basep = &TREE_CHAIN (*basep);
12736 }
12737 }
12738
12739 TYPE_MARKED_P (ref) = 1;
12740
12741 /* The binfo slot should be empty, unless this is an (ill-formed)
12742 redefinition. */
12743 if (TYPE_BINFO (ref) && !TYPE_SIZE (ref))
12744 {
12745 error ("redefinition of %q#T", ref);
12746 return false;
12747 }
12748
12749 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
12750
12751 binfo = make_tree_binfo (max_bases);
12752
12753 TYPE_BINFO (ref) = binfo;
12754 BINFO_OFFSET (binfo) = size_zero_node;
12755 BINFO_TYPE (binfo) = ref;
12756
12757 /* Apply base-class info set up to the variants of this type. */
12758 fixup_type_variants (ref);
12759
12760 if (max_bases)
12761 {
12762 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
12763 /* An aggregate cannot have baseclasses. */
12764 CLASSTYPE_NON_AGGREGATE (ref) = 1;
12765
12766 if (TREE_CODE (ref) == UNION_TYPE)
12767 {
12768 error ("derived union %qT invalid", ref);
12769 return false;
12770 }
12771 }
12772
12773 if (max_bases > 1)
12774 {
12775 if (TYPE_FOR_JAVA (ref))
12776 {
12777 error ("Java class %qT cannot have multiple bases", ref);
12778 return false;
12779 }
12780 }
12781
12782 if (max_vbases)
12783 {
12784 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
12785
12786 if (TYPE_FOR_JAVA (ref))
12787 {
12788 error ("Java class %qT cannot have virtual bases", ref);
12789 return false;
12790 }
12791 }
12792
12793 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
12794 {
12795 tree access = TREE_PURPOSE (base_list);
12796 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
12797 tree basetype = TREE_VALUE (base_list);
12798
12799 if (access == access_default_node)
12800 access = default_access;
12801
12802 if (PACK_EXPANSION_P (basetype))
12803 basetype = PACK_EXPANSION_PATTERN (basetype);
12804 if (TREE_CODE (basetype) == TYPE_DECL)
12805 basetype = TREE_TYPE (basetype);
12806 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
12807 {
12808 error ("base type %qT fails to be a struct or class type",
12809 basetype);
12810 return false;
12811 }
12812
12813 if (TYPE_FOR_JAVA (basetype) && (current_lang_depth () == 0))
12814 TYPE_FOR_JAVA (ref) = 1;
12815
12816 base_binfo = NULL_TREE;
12817 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
12818 {
12819 base_binfo = TYPE_BINFO (basetype);
12820 /* The original basetype could have been a typedef'd type. */
12821 basetype = BINFO_TYPE (base_binfo);
12822
12823 /* Inherit flags from the base. */
12824 TYPE_HAS_NEW_OPERATOR (ref)
12825 |= TYPE_HAS_NEW_OPERATOR (basetype);
12826 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
12827 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
12828 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
12829 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
12830 CLASSTYPE_DIAMOND_SHAPED_P (ref)
12831 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
12832 CLASSTYPE_REPEATED_BASE_P (ref)
12833 |= CLASSTYPE_REPEATED_BASE_P (basetype);
12834 }
12835
12836 /* We must do this test after we've seen through a typedef
12837 type. */
12838 if (TYPE_MARKED_P (basetype))
12839 {
12840 if (basetype == ref)
12841 error ("recursive type %qT undefined", basetype);
12842 else
12843 error ("duplicate base type %qT invalid", basetype);
12844 return false;
12845 }
12846
12847 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
12848 /* Regenerate the pack expansion for the bases. */
12849 basetype = make_pack_expansion (basetype);
12850
12851 TYPE_MARKED_P (basetype) = 1;
12852
12853 base_binfo = copy_binfo (base_binfo, basetype, ref,
12854 &igo_prev, via_virtual);
12855 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
12856 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
12857
12858 BINFO_BASE_APPEND (binfo, base_binfo);
12859 BINFO_BASE_ACCESS_APPEND (binfo, access);
12860 }
12861
12862 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
12863 /* If we didn't get max_vbases vbases, we must have shared at
12864 least one of them, and are therefore diamond shaped. */
12865 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
12866
12867 /* Unmark all the types. */
12868 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
12869 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
12870 TYPE_MARKED_P (ref) = 0;
12871
12872 /* Now see if we have a repeated base type. */
12873 if (!CLASSTYPE_REPEATED_BASE_P (ref))
12874 {
12875 for (base_binfo = binfo; base_binfo;
12876 base_binfo = TREE_CHAIN (base_binfo))
12877 {
12878 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
12879 {
12880 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
12881 break;
12882 }
12883 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
12884 }
12885 for (base_binfo = binfo; base_binfo;
12886 base_binfo = TREE_CHAIN (base_binfo))
12887 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
12888 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
12889 else
12890 break;
12891 }
12892
12893 return true;
12894 }
12895
12896 \f
12897 /* Copies the enum-related properties from type SRC to type DST.
12898 Used with the underlying type of an enum and the enum itself. */
12899 static void
12900 copy_type_enum (tree dst, tree src)
12901 {
12902 tree t;
12903 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
12904 {
12905 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
12906 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
12907 TYPE_SIZE (t) = TYPE_SIZE (src);
12908 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
12909 SET_TYPE_MODE (dst, TYPE_MODE (src));
12910 TYPE_PRECISION (t) = TYPE_PRECISION (src);
12911 TYPE_ALIGN (t) = TYPE_ALIGN (src);
12912 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
12913 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
12914 }
12915 }
12916
12917 /* Begin compiling the definition of an enumeration type.
12918 NAME is its name,
12919
12920 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
12921
12922 UNDERLYING_TYPE is the type that will be used as the storage for
12923 the enumeration type. This should be NULL_TREE if no storage type
12924 was specified.
12925
12926 SCOPED_ENUM_P is true if this is a scoped enumeration type.
12927
12928 if IS_NEW is not NULL, gets TRUE iff a new type is created.
12929
12930 Returns the type object, as yet incomplete.
12931 Also records info about it so that build_enumerator
12932 may be used to declare the individual values as they are read. */
12933
12934 tree
12935 start_enum (tree name, tree enumtype, tree underlying_type,
12936 bool scoped_enum_p, bool *is_new)
12937 {
12938 tree prevtype = NULL_TREE;
12939 gcc_assert (identifier_p (name));
12940
12941 if (is_new)
12942 *is_new = false;
12943 /* [C++0x dcl.enum]p5:
12944
12945 If not explicitly specified, the underlying type of a scoped
12946 enumeration type is int. */
12947 if (!underlying_type && scoped_enum_p)
12948 underlying_type = integer_type_node;
12949
12950 if (underlying_type)
12951 underlying_type = cv_unqualified (underlying_type);
12952
12953 /* If this is the real definition for a previous forward reference,
12954 fill in the contents in the same object that used to be the
12955 forward reference. */
12956 if (!enumtype)
12957 enumtype = lookup_and_check_tag (enum_type, name,
12958 /*tag_scope=*/ts_current,
12959 /*template_header_p=*/false);
12960
12961 /* In case of a template_decl, the only check that should be deferred
12962 to instantiation time is the comparison of underlying types. */
12963 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
12964 {
12965 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
12966 {
12967 error_at (input_location, "scoped/unscoped mismatch "
12968 "in enum %q#T", enumtype);
12969 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
12970 "previous definition here");
12971 enumtype = error_mark_node;
12972 }
12973 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
12974 {
12975 error_at (input_location, "underlying type mismatch "
12976 "in enum %q#T", enumtype);
12977 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
12978 "previous definition here");
12979 enumtype = error_mark_node;
12980 }
12981 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
12982 && !dependent_type_p (underlying_type)
12983 && !dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))
12984 && !same_type_p (underlying_type,
12985 ENUM_UNDERLYING_TYPE (enumtype)))
12986 {
12987 error_at (input_location, "different underlying type "
12988 "in enum %q#T", enumtype);
12989 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
12990 "previous definition here");
12991 underlying_type = NULL_TREE;
12992 }
12993 }
12994
12995 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
12996 || processing_template_decl)
12997 {
12998 /* In case of error, make a dummy enum to allow parsing to
12999 continue. */
13000 if (enumtype == error_mark_node)
13001 {
13002 name = make_anon_name ();
13003 enumtype = NULL_TREE;
13004 }
13005
13006 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
13007 of an opaque enum, or an opaque enum of an already defined
13008 enumeration (C++0x only).
13009 In any other case, it'll be NULL_TREE. */
13010 if (!enumtype)
13011 {
13012 if (is_new)
13013 *is_new = true;
13014 }
13015 prevtype = enumtype;
13016
13017 /* Do not push the decl more than once, unless we need to
13018 compare underlying types at instantiation time */
13019 if (!enumtype
13020 || TREE_CODE (enumtype) != ENUMERAL_TYPE
13021 || (underlying_type
13022 && dependent_type_p (underlying_type))
13023 || (ENUM_UNDERLYING_TYPE (enumtype)
13024 && dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))))
13025 {
13026 enumtype = cxx_make_type (ENUMERAL_TYPE);
13027 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
13028 }
13029 else
13030 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
13031 false);
13032
13033 if (enumtype == error_mark_node)
13034 return error_mark_node;
13035
13036 /* The enum is considered opaque until the opening '{' of the
13037 enumerator list. */
13038 SET_OPAQUE_ENUM_P (enumtype, true);
13039 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
13040 }
13041
13042 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
13043
13044 if (underlying_type)
13045 {
13046 if (CP_INTEGRAL_TYPE_P (underlying_type))
13047 {
13048 copy_type_enum (enumtype, underlying_type);
13049 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
13050 }
13051 else if (dependent_type_p (underlying_type))
13052 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
13053 else
13054 error ("underlying type %<%T%> of %<%T%> must be an integral type",
13055 underlying_type, enumtype);
13056 }
13057
13058 /* If into a template class, the returned enum is always the first
13059 declaration (opaque or not) seen. This way all the references to
13060 this type will be to the same declaration. The following ones are used
13061 only to check for definition errors. */
13062 if (prevtype && processing_template_decl)
13063 return prevtype;
13064 else
13065 return enumtype;
13066 }
13067
13068 /* After processing and defining all the values of an enumeration type,
13069 install their decls in the enumeration type.
13070 ENUMTYPE is the type object. */
13071
13072 void
13073 finish_enum_value_list (tree enumtype)
13074 {
13075 tree values;
13076 tree underlying_type;
13077 tree decl;
13078 tree value;
13079 tree minnode, maxnode;
13080 tree t;
13081
13082 bool fixed_underlying_type_p
13083 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
13084
13085 /* We built up the VALUES in reverse order. */
13086 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
13087
13088 /* For an enum defined in a template, just set the type of the values;
13089 all further processing is postponed until the template is
13090 instantiated. We need to set the type so that tsubst of a CONST_DECL
13091 works. */
13092 if (processing_template_decl)
13093 {
13094 for (values = TYPE_VALUES (enumtype);
13095 values;
13096 values = TREE_CHAIN (values))
13097 TREE_TYPE (TREE_VALUE (values)) = enumtype;
13098 return;
13099 }
13100
13101 /* Determine the minimum and maximum values of the enumerators. */
13102 if (TYPE_VALUES (enumtype))
13103 {
13104 minnode = maxnode = NULL_TREE;
13105
13106 for (values = TYPE_VALUES (enumtype);
13107 values;
13108 values = TREE_CHAIN (values))
13109 {
13110 decl = TREE_VALUE (values);
13111
13112 /* [dcl.enum]: Following the closing brace of an enum-specifier,
13113 each enumerator has the type of its enumeration. Prior to the
13114 closing brace, the type of each enumerator is the type of its
13115 initializing value. */
13116 TREE_TYPE (decl) = enumtype;
13117
13118 /* Update the minimum and maximum values, if appropriate. */
13119 value = DECL_INITIAL (decl);
13120 if (value == error_mark_node)
13121 value = integer_zero_node;
13122 /* Figure out what the minimum and maximum values of the
13123 enumerators are. */
13124 if (!minnode)
13125 minnode = maxnode = value;
13126 else if (tree_int_cst_lt (maxnode, value))
13127 maxnode = value;
13128 else if (tree_int_cst_lt (value, minnode))
13129 minnode = value;
13130 }
13131 }
13132 else
13133 /* [dcl.enum]
13134
13135 If the enumerator-list is empty, the underlying type is as if
13136 the enumeration had a single enumerator with value 0. */
13137 minnode = maxnode = integer_zero_node;
13138
13139 if (!fixed_underlying_type_p)
13140 {
13141 /* Compute the number of bits require to represent all values of the
13142 enumeration. We must do this before the type of MINNODE and
13143 MAXNODE are transformed, since tree_int_cst_min_precision relies
13144 on the TREE_TYPE of the value it is passed. */
13145 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
13146 int lowprec = tree_int_cst_min_precision (minnode, sgn);
13147 int highprec = tree_int_cst_min_precision (maxnode, sgn);
13148 int precision = MAX (lowprec, highprec);
13149 unsigned int itk;
13150 bool use_short_enum;
13151
13152 /* Determine the underlying type of the enumeration.
13153
13154 [dcl.enum]
13155
13156 The underlying type of an enumeration is an integral type that
13157 can represent all the enumerator values defined in the
13158 enumeration. It is implementation-defined which integral type is
13159 used as the underlying type for an enumeration except that the
13160 underlying type shall not be larger than int unless the value of
13161 an enumerator cannot fit in an int or unsigned int.
13162
13163 We use "int" or an "unsigned int" as the underlying type, even if
13164 a smaller integral type would work, unless the user has
13165 explicitly requested that we use the smallest possible type. The
13166 user can request that for all enumerations with a command line
13167 flag, or for just one enumeration with an attribute. */
13168
13169 use_short_enum = flag_short_enums
13170 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
13171
13172 for (itk = (use_short_enum ? itk_char : itk_int);
13173 itk != itk_none;
13174 itk++)
13175 {
13176 underlying_type = integer_types[itk];
13177 if (underlying_type != NULL_TREE
13178 && TYPE_PRECISION (underlying_type) >= precision
13179 && TYPE_SIGN (underlying_type) == sgn)
13180 break;
13181 }
13182 if (itk == itk_none)
13183 {
13184 /* DR 377
13185
13186 IF no integral type can represent all the enumerator values, the
13187 enumeration is ill-formed. */
13188 error ("no integral type can represent all of the enumerator values "
13189 "for %qT", enumtype);
13190 precision = TYPE_PRECISION (long_long_integer_type_node);
13191 underlying_type = integer_types[itk_unsigned_long_long];
13192 }
13193
13194 /* [dcl.enum]
13195
13196 The value of sizeof() applied to an enumeration type, an object
13197 of an enumeration type, or an enumerator, is the value of sizeof()
13198 applied to the underlying type. */
13199 copy_type_enum (enumtype, underlying_type);
13200
13201 /* Compute the minimum and maximum values for the type.
13202
13203 [dcl.enum]
13204
13205 For an enumeration where emin is the smallest enumerator and emax
13206 is the largest, the values of the enumeration are the values of the
13207 underlying type in the range bmin to bmax, where bmin and bmax are,
13208 respectively, the smallest and largest values of the smallest bit-
13209 field that can store emin and emax. */
13210
13211 /* The middle-end currently assumes that types with TYPE_PRECISION
13212 narrower than their underlying type are suitably zero or sign
13213 extended to fill their mode. Similarly, it assumes that the front
13214 end assures that a value of a particular type must be within
13215 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
13216
13217 We used to set these fields based on bmin and bmax, but that led
13218 to invalid assumptions like optimizing away bounds checking. So
13219 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
13220 TYPE_MAX_VALUE to the values for the mode above and only restrict
13221 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
13222 ENUM_UNDERLYING_TYPE (enumtype)
13223 = build_distinct_type_copy (underlying_type);
13224 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
13225 set_min_and_max_values_for_integral_type
13226 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
13227
13228 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
13229 if (flag_strict_enums)
13230 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
13231 }
13232 else
13233 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
13234
13235 /* Convert each of the enumerators to the type of the underlying
13236 type of the enumeration. */
13237 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
13238 {
13239 location_t saved_location;
13240
13241 decl = TREE_VALUE (values);
13242 saved_location = input_location;
13243 input_location = DECL_SOURCE_LOCATION (decl);
13244 if (fixed_underlying_type_p)
13245 /* If the enumeration type has a fixed underlying type, we
13246 already checked all of the enumerator values. */
13247 value = DECL_INITIAL (decl);
13248 else
13249 value = perform_implicit_conversion (underlying_type,
13250 DECL_INITIAL (decl),
13251 tf_warning_or_error);
13252 input_location = saved_location;
13253
13254 /* Do not clobber shared ints. */
13255 value = copy_node (value);
13256
13257 TREE_TYPE (value) = enumtype;
13258 DECL_INITIAL (decl) = value;
13259 }
13260
13261 /* Fix up all variant types of this enum type. */
13262 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
13263 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
13264
13265 if (at_class_scope_p ()
13266 && COMPLETE_TYPE_P (current_class_type)
13267 && UNSCOPED_ENUM_P (enumtype))
13268 insert_late_enum_def_into_classtype_sorted_fields (enumtype,
13269 current_class_type);
13270
13271 /* Finish debugging output for this type. */
13272 rest_of_type_compilation (enumtype, namespace_bindings_p ());
13273 }
13274
13275 /* Finishes the enum type. This is called only the first time an
13276 enumeration is seen, be it opaque or odinary.
13277 ENUMTYPE is the type object. */
13278
13279 void
13280 finish_enum (tree enumtype)
13281 {
13282 if (processing_template_decl)
13283 {
13284 if (at_function_scope_p ())
13285 add_stmt (build_min (TAG_DEFN, enumtype));
13286 return;
13287 }
13288
13289 /* If this is a forward declaration, there should not be any variants,
13290 though we can get a variant in the middle of an enum-specifier with
13291 wacky code like 'enum E { e = sizeof(const E*) };' */
13292 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
13293 && (TYPE_VALUES (enumtype)
13294 || !TYPE_NEXT_VARIANT (enumtype)));
13295 }
13296
13297 /* Build and install a CONST_DECL for an enumeration constant of the
13298 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
13299 Apply ATTRIBUTES if available. LOC is the location of NAME.
13300 Assignment of sequential values by default is handled here. */
13301
13302 void
13303 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
13304 location_t loc)
13305 {
13306 tree decl;
13307 tree context;
13308 tree type;
13309
13310 /* scalar_constant_value will pull out this expression, so make sure
13311 it's folded as appropriate. */
13312 if (processing_template_decl)
13313 value = fold_non_dependent_expr (value);
13314
13315 /* If the VALUE was erroneous, pretend it wasn't there; that will
13316 result in the enum being assigned the next value in sequence. */
13317 if (value == error_mark_node)
13318 value = NULL_TREE;
13319
13320 /* Remove no-op casts from the value. */
13321 if (value)
13322 STRIP_TYPE_NOPS (value);
13323
13324 if (! processing_template_decl)
13325 {
13326 /* Validate and default VALUE. */
13327 if (value != NULL_TREE)
13328 {
13329 if (!ENUM_UNDERLYING_TYPE (enumtype))
13330 {
13331 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
13332 value, true);
13333 if (tmp_value)
13334 value = tmp_value;
13335 }
13336 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
13337 (TREE_TYPE (value)))
13338 value = perform_implicit_conversion_flags
13339 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
13340 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
13341
13342 if (value == error_mark_node)
13343 value = NULL_TREE;
13344
13345 if (value != NULL_TREE)
13346 {
13347 value = cxx_constant_value (value);
13348
13349 if (TREE_CODE (value) != INTEGER_CST
13350 || ! INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (value)))
13351 {
13352 error ("enumerator value for %qD is not an integer constant",
13353 name);
13354 value = NULL_TREE;
13355 }
13356 }
13357 }
13358
13359 /* Default based on previous value. */
13360 if (value == NULL_TREE)
13361 {
13362 if (TYPE_VALUES (enumtype))
13363 {
13364 tree prev_value;
13365 bool overflowed;
13366
13367 /* C++03 7.2/4: If no initializer is specified for the first
13368 enumerator, the type is an unspecified integral
13369 type. Otherwise the type is the same as the type of the
13370 initializing value of the preceding enumerator unless the
13371 incremented value is not representable in that type, in
13372 which case the type is an unspecified integral type
13373 sufficient to contain the incremented value. */
13374 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
13375 if (error_operand_p (prev_value))
13376 value = error_mark_node;
13377 else
13378 {
13379 tree type = TREE_TYPE (prev_value);
13380 signop sgn = TYPE_SIGN (type);
13381 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
13382 &overflowed);
13383 if (!overflowed)
13384 {
13385 bool pos = !wi::neg_p (wi, sgn);
13386 if (!wi::fits_to_tree_p (wi, type))
13387 {
13388 unsigned int itk;
13389 for (itk = itk_int; itk != itk_none; itk++)
13390 {
13391 type = integer_types[itk];
13392 if (type != NULL_TREE
13393 && (pos || !TYPE_UNSIGNED (type))
13394 && wi::fits_to_tree_p (wi, type))
13395 break;
13396 }
13397 if (type && cxx_dialect < cxx11
13398 && itk > itk_unsigned_long)
13399 pedwarn (input_location, OPT_Wlong_long, pos ? "\
13400 incremented enumerator value is too large for %<unsigned long%>" : "\
13401 incremented enumerator value is too large for %<long%>");
13402 }
13403 if (type == NULL_TREE)
13404 overflowed = true;
13405 else
13406 value = wide_int_to_tree (type, wi);
13407 }
13408
13409 if (overflowed)
13410 {
13411 error ("overflow in enumeration values at %qD", name);
13412 value = error_mark_node;
13413 }
13414 }
13415 }
13416 else
13417 value = integer_zero_node;
13418 }
13419
13420 /* Remove no-op casts from the value. */
13421 STRIP_TYPE_NOPS (value);
13422
13423 /* If the underlying type of the enum is fixed, check whether
13424 the enumerator values fits in the underlying type. If it
13425 does not fit, the program is ill-formed [C++0x dcl.enum]. */
13426 if (ENUM_UNDERLYING_TYPE (enumtype)
13427 && value
13428 && TREE_CODE (value) == INTEGER_CST)
13429 {
13430 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
13431 error ("enumerator value %E is outside the range of underlying "
13432 "type %<%T%>", value, ENUM_UNDERLYING_TYPE (enumtype));
13433
13434 /* Convert the value to the appropriate type. */
13435 value = convert (ENUM_UNDERLYING_TYPE (enumtype), value);
13436 }
13437 }
13438
13439 /* C++ associates enums with global, function, or class declarations. */
13440 context = current_scope ();
13441
13442 /* Build the actual enumeration constant. Note that the enumeration
13443 constants have the underlying type of the enum (if it is fixed)
13444 or the type of their initializer (if the underlying type of the
13445 enum is not fixed):
13446
13447 [ C++0x dcl.enum ]
13448
13449 If the underlying type is fixed, the type of each enumerator
13450 prior to the closing brace is the underlying type; if the
13451 initializing value of an enumerator cannot be represented by
13452 the underlying type, the program is ill-formed. If the
13453 underlying type is not fixed, the type of each enumerator is
13454 the type of its initializing value.
13455
13456 If the underlying type is not fixed, it will be computed by
13457 finish_enum and we will reset the type of this enumerator. Of
13458 course, if we're processing a template, there may be no value. */
13459 type = value ? TREE_TYPE (value) : NULL_TREE;
13460
13461 decl = build_decl (loc, CONST_DECL, name, type);
13462
13463 DECL_CONTEXT (decl) = enumtype;
13464 TREE_CONSTANT (decl) = 1;
13465 TREE_READONLY (decl) = 1;
13466 DECL_INITIAL (decl) = value;
13467
13468 if (attributes)
13469 cplus_decl_attributes (&decl, attributes, 0);
13470
13471 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
13472 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
13473 on the TYPE_FIELDS list for `S'. (That's so that you can say
13474 things like `S::i' later.) */
13475 finish_member_declaration (decl);
13476 else
13477 pushdecl (decl);
13478
13479 /* Add this enumeration constant to the list for this type. */
13480 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
13481 }
13482
13483 /* Look for an enumerator with the given NAME within the enumeration
13484 type ENUMTYPE. This routine is used primarily for qualified name
13485 lookup into an enumerator in C++0x, e.g.,
13486
13487 enum class Color { Red, Green, Blue };
13488
13489 Color color = Color::Red;
13490
13491 Returns the value corresponding to the enumerator, or
13492 NULL_TREE if no such enumerator was found. */
13493 tree
13494 lookup_enumerator (tree enumtype, tree name)
13495 {
13496 tree e;
13497 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
13498
13499 e = purpose_member (name, TYPE_VALUES (enumtype));
13500 return e? TREE_VALUE (e) : NULL_TREE;
13501 }
13502
13503 \f
13504 /* We're defining DECL. Make sure that its type is OK. */
13505
13506 static void
13507 check_function_type (tree decl, tree current_function_parms)
13508 {
13509 tree fntype = TREE_TYPE (decl);
13510 tree return_type = complete_type (TREE_TYPE (fntype));
13511
13512 /* In a function definition, arg types must be complete. */
13513 require_complete_types_for_parms (current_function_parms);
13514
13515 if (dependent_type_p (return_type)
13516 || type_uses_auto (return_type))
13517 return;
13518 if (!COMPLETE_OR_VOID_TYPE_P (return_type)
13519 || (TYPE_FOR_JAVA (return_type) && MAYBE_CLASS_TYPE_P (return_type)))
13520 {
13521 tree args = TYPE_ARG_TYPES (fntype);
13522
13523 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
13524 error ("return type %q#T is incomplete", return_type);
13525 else
13526 error ("return type has Java class type %q#T", return_type);
13527
13528 /* Make it return void instead. */
13529 if (TREE_CODE (fntype) == METHOD_TYPE)
13530 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
13531 void_type_node,
13532 TREE_CHAIN (args));
13533 else
13534 fntype = build_function_type (void_type_node, args);
13535 fntype
13536 = build_exception_variant (fntype,
13537 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)));
13538 fntype = (cp_build_type_attribute_variant
13539 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
13540 TREE_TYPE (decl) = fntype;
13541 }
13542 else
13543 abstract_virtuals_error (decl, TREE_TYPE (fntype));
13544 }
13545
13546 /* Create the FUNCTION_DECL for a function definition.
13547 DECLSPECS and DECLARATOR are the parts of the declaration;
13548 they describe the function's name and the type it returns,
13549 but twisted together in a fashion that parallels the syntax of C.
13550
13551 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
13552 DECLARATOR is really the DECL for the function we are about to
13553 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
13554 indicating that the function is an inline defined in-class.
13555
13556 This function creates a binding context for the function body
13557 as well as setting up the FUNCTION_DECL in current_function_decl.
13558
13559 For C++, we must first check whether that datum makes any sense.
13560 For example, "class A local_a(1,2);" means that variable local_a
13561 is an aggregate of type A, which should have a constructor
13562 applied to it with the argument list [1, 2].
13563
13564 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
13565 or may be a BLOCK if the function has been defined previously
13566 in this translation unit. On exit, DECL_INITIAL (decl1) will be
13567 error_mark_node if the function has never been defined, or
13568 a BLOCK if the function has been defined somewhere. */
13569
13570 bool
13571 start_preparsed_function (tree decl1, tree attrs, int flags)
13572 {
13573 tree ctype = NULL_TREE;
13574 tree fntype;
13575 tree restype;
13576 int doing_friend = 0;
13577 cp_binding_level *bl;
13578 tree current_function_parms;
13579 struct c_fileinfo *finfo
13580 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
13581 bool honor_interface;
13582
13583 /* Sanity check. */
13584 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
13585 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
13586
13587 fntype = TREE_TYPE (decl1);
13588 if (TREE_CODE (fntype) == METHOD_TYPE)
13589 ctype = TYPE_METHOD_BASETYPE (fntype);
13590
13591 /* ISO C++ 11.4/5. A friend function defined in a class is in
13592 the (lexical) scope of the class in which it is defined. */
13593 if (!ctype && DECL_FRIEND_P (decl1))
13594 {
13595 ctype = DECL_FRIEND_CONTEXT (decl1);
13596
13597 /* CTYPE could be null here if we're dealing with a template;
13598 for example, `inline friend float foo()' inside a template
13599 will have no CTYPE set. */
13600 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
13601 ctype = NULL_TREE;
13602 else
13603 doing_friend = 1;
13604 }
13605
13606 if (DECL_DECLARED_INLINE_P (decl1)
13607 && lookup_attribute ("noinline", attrs))
13608 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
13609 "inline function %qD given attribute noinline", decl1);
13610
13611 /* Handle gnu_inline attribute. */
13612 if (GNU_INLINE_P (decl1))
13613 {
13614 DECL_EXTERNAL (decl1) = 1;
13615 DECL_NOT_REALLY_EXTERN (decl1) = 0;
13616 DECL_INTERFACE_KNOWN (decl1) = 1;
13617 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
13618 }
13619
13620 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
13621 /* This is a constructor, we must ensure that any default args
13622 introduced by this definition are propagated to the clones
13623 now. The clones are used directly in overload resolution. */
13624 adjust_clone_args (decl1);
13625
13626 /* Sometimes we don't notice that a function is a static member, and
13627 build a METHOD_TYPE for it. Fix that up now. */
13628 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
13629 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
13630
13631 /* Set up current_class_type, and enter the scope of the class, if
13632 appropriate. */
13633 if (ctype)
13634 push_nested_class (ctype);
13635 else if (DECL_STATIC_FUNCTION_P (decl1))
13636 push_nested_class (DECL_CONTEXT (decl1));
13637
13638 /* Now that we have entered the scope of the class, we must restore
13639 the bindings for any template parameters surrounding DECL1, if it
13640 is an inline member template. (Order is important; consider the
13641 case where a template parameter has the same name as a field of
13642 the class.) It is not until after this point that
13643 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
13644 if (flags & SF_INCLASS_INLINE)
13645 maybe_begin_member_template_processing (decl1);
13646
13647 /* Effective C++ rule 15. */
13648 if (warn_ecpp
13649 && DECL_OVERLOADED_OPERATOR_P (decl1) == NOP_EXPR
13650 && VOID_TYPE_P (TREE_TYPE (fntype)))
13651 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
13652
13653 /* Make the init_value nonzero so pushdecl knows this is not tentative.
13654 error_mark_node is replaced below (in poplevel) with the BLOCK. */
13655 if (!DECL_INITIAL (decl1))
13656 DECL_INITIAL (decl1) = error_mark_node;
13657
13658 /* This function exists in static storage.
13659 (This does not mean `static' in the C sense!) */
13660 TREE_STATIC (decl1) = 1;
13661
13662 /* We must call push_template_decl after current_class_type is set
13663 up. (If we are processing inline definitions after exiting a
13664 class scope, current_class_type will be NULL_TREE until set above
13665 by push_nested_class.) */
13666 if (processing_template_decl)
13667 {
13668 tree newdecl1 = push_template_decl (decl1);
13669 if (newdecl1 == error_mark_node)
13670 {
13671 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
13672 pop_nested_class ();
13673 return false;
13674 }
13675 decl1 = newdecl1;
13676 }
13677
13678 /* We are now in the scope of the function being defined. */
13679 current_function_decl = decl1;
13680
13681 /* Save the parm names or decls from this function's declarator
13682 where store_parm_decls will find them. */
13683 current_function_parms = DECL_ARGUMENTS (decl1);
13684
13685 /* Make sure the parameter and return types are reasonable. When
13686 you declare a function, these types can be incomplete, but they
13687 must be complete when you define the function. */
13688 check_function_type (decl1, current_function_parms);
13689
13690 /* Build the return declaration for the function. */
13691 restype = TREE_TYPE (fntype);
13692
13693 if (DECL_RESULT (decl1) == NULL_TREE)
13694 {
13695 tree resdecl;
13696
13697 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
13698 DECL_ARTIFICIAL (resdecl) = 1;
13699 DECL_IGNORED_P (resdecl) = 1;
13700 DECL_RESULT (decl1) = resdecl;
13701
13702 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
13703 }
13704
13705 /* Let the user know we're compiling this function. */
13706 announce_function (decl1);
13707
13708 /* Record the decl so that the function name is defined.
13709 If we already have a decl for this name, and it is a FUNCTION_DECL,
13710 use the old decl. */
13711 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
13712 {
13713 /* A specialization is not used to guide overload resolution. */
13714 if (!DECL_FUNCTION_MEMBER_P (decl1)
13715 && !(DECL_USE_TEMPLATE (decl1) &&
13716 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
13717 {
13718 tree olddecl = pushdecl (decl1);
13719
13720 if (olddecl == error_mark_node)
13721 /* If something went wrong when registering the declaration,
13722 use DECL1; we have to have a FUNCTION_DECL to use when
13723 parsing the body of the function. */
13724 ;
13725 else
13726 {
13727 /* Otherwise, OLDDECL is either a previous declaration
13728 of the same function or DECL1 itself. */
13729
13730 if (warn_missing_declarations
13731 && olddecl == decl1
13732 && !DECL_MAIN_P (decl1)
13733 && TREE_PUBLIC (decl1)
13734 && !DECL_DECLARED_INLINE_P (decl1))
13735 {
13736 tree context;
13737
13738 /* Check whether DECL1 is in an anonymous
13739 namespace. */
13740 for (context = DECL_CONTEXT (decl1);
13741 context;
13742 context = DECL_CONTEXT (context))
13743 {
13744 if (TREE_CODE (context) == NAMESPACE_DECL
13745 && DECL_NAME (context) == NULL_TREE)
13746 break;
13747 }
13748
13749 if (context == NULL)
13750 warning_at (DECL_SOURCE_LOCATION (decl1),
13751 OPT_Wmissing_declarations,
13752 "no previous declaration for %qD", decl1);
13753 }
13754
13755 decl1 = olddecl;
13756 }
13757 }
13758 else
13759 {
13760 /* We need to set the DECL_CONTEXT. */
13761 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
13762 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
13763 }
13764 fntype = TREE_TYPE (decl1);
13765 restype = TREE_TYPE (fntype);
13766
13767 /* If #pragma weak applies, mark the decl appropriately now.
13768 The pragma only applies to global functions. Because
13769 determining whether or not the #pragma applies involves
13770 computing the mangled name for the declaration, we cannot
13771 apply the pragma until after we have merged this declaration
13772 with any previous declarations; if the original declaration
13773 has a linkage specification, that specification applies to
13774 the definition as well, and may affect the mangled name. */
13775 if (DECL_FILE_SCOPE_P (decl1))
13776 maybe_apply_pragma_weak (decl1);
13777 }
13778
13779 /* Reset this in case the call to pushdecl changed it. */
13780 current_function_decl = decl1;
13781
13782 gcc_assert (DECL_INITIAL (decl1));
13783
13784 /* This function may already have been parsed, in which case just
13785 return; our caller will skip over the body without parsing. */
13786 if (DECL_INITIAL (decl1) != error_mark_node)
13787 return true;
13788
13789 /* Initialize RTL machinery. We cannot do this until
13790 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
13791 even when processing a template; this is how we get
13792 CFUN set up, and our per-function variables initialized.
13793 FIXME factor out the non-RTL stuff. */
13794 bl = current_binding_level;
13795 allocate_struct_function (decl1, processing_template_decl);
13796
13797 /* Initialize the language data structures. Whenever we start
13798 a new function, we destroy temporaries in the usual way. */
13799 cfun->language = ggc_cleared_alloc<language_function> ();
13800 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
13801 current_binding_level = bl;
13802
13803 if (!processing_template_decl && type_uses_auto (restype))
13804 {
13805 FNDECL_USED_AUTO (decl1) = true;
13806 current_function_auto_return_pattern = restype;
13807 }
13808
13809 /* Start the statement-tree, start the tree now. */
13810 DECL_SAVED_TREE (decl1) = push_stmt_list ();
13811
13812 /* If we are (erroneously) defining a function that we have already
13813 defined before, wipe out what we knew before. */
13814 if (!DECL_PENDING_INLINE_P (decl1))
13815 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
13816
13817 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
13818 {
13819 /* We know that this was set up by `grokclassfn'. We do not
13820 wait until `store_parm_decls', since evil parse errors may
13821 never get us to that point. Here we keep the consistency
13822 between `current_class_type' and `current_class_ptr'. */
13823 tree t = DECL_ARGUMENTS (decl1);
13824
13825 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
13826 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
13827
13828 cp_function_chain->x_current_class_ref
13829 = cp_build_indirect_ref (t, RO_NULL, tf_warning_or_error);
13830 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
13831 cp_function_chain->x_current_class_ptr = t;
13832
13833 /* Constructors and destructors need to know whether they're "in
13834 charge" of initializing virtual base classes. */
13835 t = DECL_CHAIN (t);
13836 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
13837 {
13838 current_in_charge_parm = t;
13839 t = DECL_CHAIN (t);
13840 }
13841 if (DECL_HAS_VTT_PARM_P (decl1))
13842 {
13843 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
13844 current_vtt_parm = t;
13845 }
13846 }
13847
13848 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
13849 /* Implicitly-defined methods (like the
13850 destructor for a class in which no destructor
13851 is explicitly declared) must not be defined
13852 until their definition is needed. So, we
13853 ignore interface specifications for
13854 compiler-generated functions. */
13855 && !DECL_ARTIFICIAL (decl1));
13856
13857 if (processing_template_decl)
13858 /* Don't mess with interface flags. */;
13859 else if (DECL_INTERFACE_KNOWN (decl1))
13860 {
13861 tree ctx = decl_function_context (decl1);
13862
13863 if (DECL_NOT_REALLY_EXTERN (decl1))
13864 DECL_EXTERNAL (decl1) = 0;
13865
13866 if (ctx != NULL_TREE && vague_linkage_p (ctx))
13867 /* This is a function in a local class in an extern inline
13868 or template function. */
13869 comdat_linkage (decl1);
13870 }
13871 /* If this function belongs to an interface, it is public.
13872 If it belongs to someone else's interface, it is also external.
13873 This only affects inlines and template instantiations. */
13874 else if (!finfo->interface_unknown && honor_interface)
13875 {
13876 if (DECL_DECLARED_INLINE_P (decl1)
13877 || DECL_TEMPLATE_INSTANTIATION (decl1))
13878 {
13879 DECL_EXTERNAL (decl1)
13880 = (finfo->interface_only
13881 || (DECL_DECLARED_INLINE_P (decl1)
13882 && ! flag_implement_inlines
13883 && !DECL_VINDEX (decl1)));
13884
13885 /* For WIN32 we also want to put these in linkonce sections. */
13886 maybe_make_one_only (decl1);
13887 }
13888 else
13889 DECL_EXTERNAL (decl1) = 0;
13890 DECL_INTERFACE_KNOWN (decl1) = 1;
13891 /* If this function is in an interface implemented in this file,
13892 make sure that the back end knows to emit this function
13893 here. */
13894 if (!DECL_EXTERNAL (decl1))
13895 mark_needed (decl1);
13896 }
13897 else if (finfo->interface_unknown && finfo->interface_only
13898 && honor_interface)
13899 {
13900 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
13901 interface, we will have both finfo->interface_unknown and
13902 finfo->interface_only set. In that case, we don't want to
13903 use the normal heuristics because someone will supply a
13904 #pragma implementation elsewhere, and deducing it here would
13905 produce a conflict. */
13906 comdat_linkage (decl1);
13907 DECL_EXTERNAL (decl1) = 0;
13908 DECL_INTERFACE_KNOWN (decl1) = 1;
13909 DECL_DEFER_OUTPUT (decl1) = 1;
13910 }
13911 else
13912 {
13913 /* This is a definition, not a reference.
13914 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
13915 if (!GNU_INLINE_P (decl1))
13916 DECL_EXTERNAL (decl1) = 0;
13917
13918 if ((DECL_DECLARED_INLINE_P (decl1)
13919 || DECL_TEMPLATE_INSTANTIATION (decl1))
13920 && ! DECL_INTERFACE_KNOWN (decl1))
13921 DECL_DEFER_OUTPUT (decl1) = 1;
13922 else
13923 DECL_INTERFACE_KNOWN (decl1) = 1;
13924 }
13925
13926 /* Determine the ELF visibility attribute for the function. We must not
13927 do this before calling "pushdecl", as we must allow "duplicate_decls"
13928 to merge any attributes appropriately. We also need to wait until
13929 linkage is set. */
13930 if (!DECL_CLONED_FUNCTION_P (decl1))
13931 determine_visibility (decl1);
13932
13933 if (!processing_template_decl)
13934 maybe_instantiate_noexcept (decl1);
13935
13936 begin_scope (sk_function_parms, decl1);
13937
13938 ++function_depth;
13939
13940 if (DECL_DESTRUCTOR_P (decl1)
13941 || (DECL_CONSTRUCTOR_P (decl1)
13942 && targetm.cxx.cdtor_returns_this ()))
13943 {
13944 cdtor_label = create_artificial_label (input_location);
13945 }
13946
13947 start_fname_decls ();
13948
13949 store_parm_decls (current_function_parms);
13950
13951 if (!processing_template_decl
13952 && flag_lifetime_dse && DECL_CONSTRUCTOR_P (decl1))
13953 {
13954 /* Insert a clobber to let the back end know that the object storage
13955 is dead when we enter the constructor. */
13956 tree btype = CLASSTYPE_AS_BASE (current_class_type);
13957 tree clobber = build_constructor (btype, NULL);
13958 TREE_THIS_VOLATILE (clobber) = true;
13959 tree bref = build_nop (build_reference_type (btype), current_class_ptr);
13960 bref = convert_from_reference (bref);
13961 tree exprstmt = build2 (MODIFY_EXPR, btype, bref, clobber);
13962 finish_expr_stmt (exprstmt);
13963 }
13964
13965 return true;
13966 }
13967
13968
13969 /* Like start_preparsed_function, except that instead of a
13970 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
13971
13972 Returns true on success. If the DECLARATOR is not suitable
13973 for a function, we return false, which tells the parser to
13974 skip the entire function. */
13975
13976 bool
13977 start_function (cp_decl_specifier_seq *declspecs,
13978 const cp_declarator *declarator,
13979 tree attrs)
13980 {
13981 tree decl1;
13982
13983 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
13984 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
13985 if (decl1 == error_mark_node)
13986 return false;
13987 /* If the declarator is not suitable for a function definition,
13988 cause a syntax error. */
13989 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
13990 {
13991 error ("invalid function declaration");
13992 return false;
13993 }
13994
13995 if (DECL_MAIN_P (decl1))
13996 /* main must return int. grokfndecl should have corrected it
13997 (and issued a diagnostic) if the user got it wrong. */
13998 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
13999 integer_type_node));
14000
14001 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
14002 }
14003 \f
14004 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
14005 FN. */
14006
14007 static bool
14008 use_eh_spec_block (tree fn)
14009 {
14010 return (flag_exceptions && flag_enforce_eh_specs
14011 && !processing_template_decl
14012 && !type_throw_all_p (TREE_TYPE (fn))
14013 /* We insert the EH_SPEC_BLOCK only in the original
14014 function; then, it is copied automatically to the
14015 clones. */
14016 && !DECL_CLONED_FUNCTION_P (fn)
14017 /* Implicitly-generated constructors and destructors have
14018 exception specifications. However, those specifications
14019 are the union of the possible exceptions specified by the
14020 constructors/destructors for bases and members, so no
14021 unallowed exception will ever reach this function. By
14022 not creating the EH_SPEC_BLOCK we save a little memory,
14023 and we avoid spurious warnings about unreachable
14024 code. */
14025 && !DECL_DEFAULTED_FN (fn));
14026 }
14027
14028 /* Store the parameter declarations into the current function declaration.
14029 This is called after parsing the parameter declarations, before
14030 digesting the body of the function.
14031
14032 Also install to binding contour return value identifier, if any. */
14033
14034 static void
14035 store_parm_decls (tree current_function_parms)
14036 {
14037 tree fndecl = current_function_decl;
14038 tree parm;
14039
14040 /* This is a chain of any other decls that came in among the parm
14041 declarations. If a parm is declared with enum {foo, bar} x;
14042 then CONST_DECLs for foo and bar are put here. */
14043 tree nonparms = NULL_TREE;
14044
14045 if (current_function_parms)
14046 {
14047 /* This case is when the function was defined with an ANSI prototype.
14048 The parms already have decls, so we need not do anything here
14049 except record them as in effect
14050 and complain if any redundant old-style parm decls were written. */
14051
14052 tree specparms = current_function_parms;
14053 tree next;
14054
14055 /* Must clear this because it might contain TYPE_DECLs declared
14056 at class level. */
14057 current_binding_level->names = NULL;
14058
14059 /* If we're doing semantic analysis, then we'll call pushdecl
14060 for each of these. We must do them in reverse order so that
14061 they end in the correct forward order. */
14062 specparms = nreverse (specparms);
14063
14064 for (parm = specparms; parm; parm = next)
14065 {
14066 next = DECL_CHAIN (parm);
14067 if (TREE_CODE (parm) == PARM_DECL)
14068 {
14069 if (DECL_NAME (parm) == NULL_TREE
14070 || !VOID_TYPE_P (parm))
14071 pushdecl (parm);
14072 else
14073 error ("parameter %qD declared void", parm);
14074 }
14075 else
14076 {
14077 /* If we find an enum constant or a type tag,
14078 put it aside for the moment. */
14079 TREE_CHAIN (parm) = NULL_TREE;
14080 nonparms = chainon (nonparms, parm);
14081 }
14082 }
14083
14084 /* Get the decls in their original chain order and record in the
14085 function. This is all and only the PARM_DECLs that were
14086 pushed into scope by the loop above. */
14087 DECL_ARGUMENTS (fndecl) = getdecls ();
14088 }
14089 else
14090 DECL_ARGUMENTS (fndecl) = NULL_TREE;
14091
14092 /* Now store the final chain of decls for the arguments
14093 as the decl-chain of the current lexical scope.
14094 Put the enumerators in as well, at the front so that
14095 DECL_ARGUMENTS is not modified. */
14096 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
14097
14098 if (use_eh_spec_block (current_function_decl))
14099 current_eh_spec_block = begin_eh_spec_block ();
14100 }
14101
14102 \f
14103 /* We have finished doing semantic analysis on DECL, but have not yet
14104 generated RTL for its body. Save away our current state, so that
14105 when we want to generate RTL later we know what to do. */
14106
14107 static void
14108 save_function_data (tree decl)
14109 {
14110 struct language_function *f;
14111
14112 /* Save the language-specific per-function data so that we can
14113 get it back when we really expand this function. */
14114 gcc_assert (!DECL_PENDING_INLINE_P (decl));
14115
14116 /* Make a copy. */
14117 f = ggc_alloc<language_function> ();
14118 memcpy (f, cp_function_chain, sizeof (struct language_function));
14119 DECL_SAVED_FUNCTION_DATA (decl) = f;
14120
14121 /* Clear out the bits we don't need. */
14122 f->base.x_stmt_tree.x_cur_stmt_list = NULL;
14123 f->bindings = NULL;
14124 f->x_local_names = NULL;
14125 f->base.local_typedefs = NULL;
14126 }
14127
14128
14129 /* Set the return value of the constructor (if present). */
14130
14131 static void
14132 finish_constructor_body (void)
14133 {
14134 tree val;
14135 tree exprstmt;
14136
14137 if (targetm.cxx.cdtor_returns_this ()
14138 && (! TYPE_FOR_JAVA (current_class_type)))
14139 {
14140 /* Any return from a constructor will end up here. */
14141 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
14142
14143 val = DECL_ARGUMENTS (current_function_decl);
14144 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
14145 DECL_RESULT (current_function_decl), val);
14146 /* Return the address of the object. */
14147 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
14148 add_stmt (exprstmt);
14149 }
14150 }
14151
14152 /* Do all the processing for the beginning of a destructor; set up the
14153 vtable pointers and cleanups for bases and members. */
14154
14155 static void
14156 begin_destructor_body (void)
14157 {
14158 tree compound_stmt;
14159
14160 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
14161 issued an error message. We still want to try to process the
14162 body of the function, but initialize_vtbl_ptrs will crash if
14163 TYPE_BINFO is NULL. */
14164 if (COMPLETE_TYPE_P (current_class_type))
14165 {
14166 compound_stmt = begin_compound_stmt (0);
14167 /* Make all virtual function table pointers in non-virtual base
14168 classes point to CURRENT_CLASS_TYPE's virtual function
14169 tables. */
14170 initialize_vtbl_ptrs (current_class_ptr);
14171 finish_compound_stmt (compound_stmt);
14172
14173 if (flag_lifetime_dse)
14174 {
14175 /* Insert a cleanup to let the back end know that the object is dead
14176 when we exit the destructor, either normally or via exception. */
14177 tree btype = CLASSTYPE_AS_BASE (current_class_type);
14178 tree clobber = build_constructor (btype, NULL);
14179 TREE_THIS_VOLATILE (clobber) = true;
14180 tree bref = build_nop (build_reference_type (btype),
14181 current_class_ptr);
14182 bref = convert_from_reference (bref);
14183 tree exprstmt = build2 (MODIFY_EXPR, btype, bref, clobber);
14184 finish_decl_cleanup (NULL_TREE, exprstmt);
14185 }
14186
14187 /* And insert cleanups for our bases and members so that they
14188 will be properly destroyed if we throw. */
14189 push_base_cleanups ();
14190 }
14191 }
14192
14193 /* At the end of every destructor we generate code to delete the object if
14194 necessary. Do that now. */
14195
14196 static void
14197 finish_destructor_body (void)
14198 {
14199 tree exprstmt;
14200
14201 /* Any return from a destructor will end up here; that way all base
14202 and member cleanups will be run when the function returns. */
14203 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
14204
14205 /* In a virtual destructor, we must call delete. */
14206 if (DECL_VIRTUAL_P (current_function_decl))
14207 {
14208 tree if_stmt;
14209 tree virtual_size = cxx_sizeof (current_class_type);
14210
14211 /* [class.dtor]
14212
14213 At the point of definition of a virtual destructor (including
14214 an implicit definition), non-placement operator delete shall
14215 be looked up in the scope of the destructor's class and if
14216 found shall be accessible and unambiguous. */
14217 exprstmt = build_op_delete_call (DELETE_EXPR, current_class_ptr,
14218 virtual_size,
14219 /*global_p=*/false,
14220 /*placement=*/NULL_TREE,
14221 /*alloc_fn=*/NULL_TREE,
14222 tf_warning_or_error);
14223
14224 if_stmt = begin_if_stmt ();
14225 finish_if_stmt_cond (build2 (BIT_AND_EXPR, integer_type_node,
14226 current_in_charge_parm,
14227 integer_one_node),
14228 if_stmt);
14229 finish_expr_stmt (exprstmt);
14230 finish_then_clause (if_stmt);
14231 finish_if_stmt (if_stmt);
14232 }
14233
14234 if (targetm.cxx.cdtor_returns_this ())
14235 {
14236 tree val;
14237
14238 val = DECL_ARGUMENTS (current_function_decl);
14239 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
14240 DECL_RESULT (current_function_decl), val);
14241 /* Return the address of the object. */
14242 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
14243 add_stmt (exprstmt);
14244 }
14245 }
14246
14247 /* Do the necessary processing for the beginning of a function body, which
14248 in this case includes member-initializers, but not the catch clauses of
14249 a function-try-block. Currently, this means opening a binding level
14250 for the member-initializers (in a ctor), member cleanups (in a dtor),
14251 and capture proxies (in a lambda operator()). */
14252
14253 tree
14254 begin_function_body (void)
14255 {
14256 tree stmt;
14257
14258 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
14259 return NULL_TREE;
14260
14261 if (processing_template_decl)
14262 /* Do nothing now. */;
14263 else
14264 /* Always keep the BLOCK node associated with the outermost pair of
14265 curly braces of a function. These are needed for correct
14266 operation of dwarfout.c. */
14267 keep_next_level (true);
14268
14269 stmt = begin_compound_stmt (BCS_FN_BODY);
14270
14271 if (processing_template_decl)
14272 /* Do nothing now. */;
14273 else if (DECL_DESTRUCTOR_P (current_function_decl))
14274 begin_destructor_body ();
14275
14276 return stmt;
14277 }
14278
14279 /* Do the processing for the end of a function body. Currently, this means
14280 closing out the cleanups for fully-constructed bases and members, and in
14281 the case of the destructor, deleting the object if desired. Again, this
14282 is only meaningful for [cd]tors, since they are the only functions where
14283 there is a significant distinction between the main body and any
14284 function catch clauses. Handling, say, main() return semantics here
14285 would be wrong, as flowing off the end of a function catch clause for
14286 main() would also need to return 0. */
14287
14288 void
14289 finish_function_body (tree compstmt)
14290 {
14291 if (compstmt == NULL_TREE)
14292 return;
14293
14294 /* Close the block. */
14295 finish_compound_stmt (compstmt);
14296
14297 if (processing_template_decl)
14298 /* Do nothing now. */;
14299 else if (DECL_CONSTRUCTOR_P (current_function_decl))
14300 finish_constructor_body ();
14301 else if (DECL_DESTRUCTOR_P (current_function_decl))
14302 finish_destructor_body ();
14303 }
14304
14305 /* Given a function, returns the BLOCK corresponding to the outermost level
14306 of curly braces, skipping the artificial block created for constructor
14307 initializers. */
14308
14309 tree
14310 outer_curly_brace_block (tree fndecl)
14311 {
14312 tree block = DECL_INITIAL (fndecl);
14313 if (BLOCK_OUTER_CURLY_BRACE_P (block))
14314 return block;
14315 block = BLOCK_SUBBLOCKS (block);
14316 if (BLOCK_OUTER_CURLY_BRACE_P (block))
14317 return block;
14318 block = BLOCK_SUBBLOCKS (block);
14319 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
14320 return block;
14321 }
14322
14323 /* If FNDECL is a class's key method, add the class to the list of
14324 keyed classes that should be emitted. */
14325
14326 static void
14327 record_key_method_defined (tree fndecl)
14328 {
14329 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
14330 && DECL_VIRTUAL_P (fndecl)
14331 && !processing_template_decl)
14332 {
14333 tree fnclass = DECL_CONTEXT (fndecl);
14334 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
14335 keyed_classes = tree_cons (NULL_TREE, fnclass, keyed_classes);
14336 }
14337 }
14338
14339 /* Subroutine of finish_function.
14340 Save the body of constexpr functions for possible
14341 future compile time evaluation. */
14342
14343 static void
14344 maybe_save_function_definition (tree fun)
14345 {
14346 if (!processing_template_decl
14347 && DECL_DECLARED_CONSTEXPR_P (fun)
14348 && !cp_function_chain->invalid_constexpr
14349 && !DECL_CLONED_FUNCTION_P (fun))
14350 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
14351 }
14352
14353 /* Finish up a function declaration and compile that function
14354 all the way to assembler language output. The free the storage
14355 for the function definition.
14356
14357 FLAGS is a bitwise or of the following values:
14358 2 - INCLASS_INLINE
14359 We just finished processing the body of an in-class inline
14360 function definition. (This processing will have taken place
14361 after the class definition is complete.) */
14362
14363 tree
14364 finish_function (int flags)
14365 {
14366 tree fndecl = current_function_decl;
14367 tree fntype, ctype = NULL_TREE;
14368 int inclass_inline = (flags & 2) != 0;
14369
14370 /* When we get some parse errors, we can end up without a
14371 current_function_decl, so cope. */
14372 if (fndecl == NULL_TREE)
14373 return error_mark_node;
14374
14375 if (c_dialect_objc ())
14376 objc_finish_function ();
14377
14378 gcc_assert (!defer_mark_used_calls);
14379 defer_mark_used_calls = true;
14380
14381 record_key_method_defined (fndecl);
14382
14383 fntype = TREE_TYPE (fndecl);
14384
14385 /* TREE_READONLY (fndecl) = 1;
14386 This caused &foo to be of type ptr-to-const-function
14387 which then got a warning when stored in a ptr-to-function variable. */
14388
14389 gcc_assert (building_stmt_list_p ());
14390 /* The current function is being defined, so its DECL_INITIAL should
14391 be set, and unless there's a multiple definition, it should be
14392 error_mark_node. */
14393 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
14394
14395 /* For a cloned function, we've already got all the code we need;
14396 there's no need to add any extra bits. */
14397 if (!DECL_CLONED_FUNCTION_P (fndecl))
14398 {
14399 /* Make it so that `main' always returns 0 by default. */
14400 if (DECL_MAIN_P (current_function_decl))
14401 finish_return_stmt (integer_zero_node);
14402
14403 if (use_eh_spec_block (current_function_decl))
14404 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
14405 (TREE_TYPE (current_function_decl)),
14406 current_eh_spec_block);
14407 }
14408
14409 /* If we're saving up tree structure, tie off the function now. */
14410 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
14411
14412 if (fn_contains_cilk_spawn_p (cfun) && !processing_template_decl)
14413 cfun->cilk_frame_decl = insert_cilk_frame (fndecl);
14414
14415 finish_fname_decls ();
14416
14417 /* If this function can't throw any exceptions, remember that. */
14418 if (!processing_template_decl
14419 && !cp_function_chain->can_throw
14420 && !flag_non_call_exceptions
14421 && !decl_replaceable_p (fndecl))
14422 TREE_NOTHROW (fndecl) = 1;
14423
14424 /* This must come after expand_function_end because cleanups might
14425 have declarations (from inline functions) that need to go into
14426 this function's blocks. */
14427
14428 /* If the current binding level isn't the outermost binding level
14429 for this function, either there is a bug, or we have experienced
14430 syntax errors and the statement tree is malformed. */
14431 if (current_binding_level->kind != sk_function_parms)
14432 {
14433 /* Make sure we have already experienced errors. */
14434 gcc_assert (errorcount);
14435
14436 /* Throw away the broken statement tree and extra binding
14437 levels. */
14438 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
14439
14440 while (current_binding_level->kind != sk_function_parms)
14441 {
14442 if (current_binding_level->kind == sk_class)
14443 pop_nested_class ();
14444 else
14445 poplevel (0, 0, 0);
14446 }
14447 }
14448 poplevel (1, 0, 1);
14449
14450 /* Statements should always be full-expressions at the outermost set
14451 of curly braces for a function. */
14452 gcc_assert (stmts_are_full_exprs_p ());
14453
14454 /* If there are no return statements in a function with auto return type,
14455 the return type is void. But if the declared type is something like
14456 auto*, this is an error. */
14457 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
14458 && TREE_TYPE (fntype) == current_function_auto_return_pattern)
14459 {
14460 if (!is_auto (current_function_auto_return_pattern)
14461 && !current_function_returns_value && !current_function_returns_null)
14462 {
14463 error ("no return statements in function returning %qT",
14464 current_function_auto_return_pattern);
14465 inform (input_location, "only plain %<auto%> return type can be "
14466 "deduced to %<void%>");
14467 }
14468 apply_deduced_return_type (fndecl, void_type_node);
14469 fntype = TREE_TYPE (fndecl);
14470 }
14471
14472 // If this is a concept, check that the definition is reasonable.
14473 if (DECL_DECLARED_CONCEPT_P (fndecl))
14474 check_function_concept (fndecl);
14475
14476 /* Save constexpr function body before it gets munged by
14477 the NRV transformation. */
14478 maybe_save_function_definition (fndecl);
14479
14480 /* Set up the named return value optimization, if we can. Candidate
14481 variables are selected in check_return_expr. */
14482 if (current_function_return_value)
14483 {
14484 tree r = current_function_return_value;
14485 tree outer;
14486
14487 if (r != error_mark_node
14488 /* This is only worth doing for fns that return in memory--and
14489 simpler, since we don't have to worry about promoted modes. */
14490 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
14491 /* Only allow this for variables declared in the outer scope of
14492 the function so we know that their lifetime always ends with a
14493 return; see g++.dg/opt/nrv6.C. We could be more flexible if
14494 we were to do this optimization in tree-ssa. */
14495 && (outer = outer_curly_brace_block (fndecl))
14496 && chain_member (r, BLOCK_VARS (outer)))
14497 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
14498
14499 current_function_return_value = NULL_TREE;
14500 }
14501
14502 /* Remember that we were in class scope. */
14503 if (current_class_name)
14504 ctype = current_class_type;
14505
14506 /* Must mark the RESULT_DECL as being in this function. */
14507 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
14508
14509 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
14510 to the FUNCTION_DECL node itself. */
14511 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
14512
14513 /* Save away current state, if appropriate. */
14514 if (!processing_template_decl)
14515 save_function_data (fndecl);
14516
14517 /* Complain if there's just no return statement. */
14518 if (warn_return_type
14519 && !VOID_TYPE_P (TREE_TYPE (fntype))
14520 && !dependent_type_p (TREE_TYPE (fntype))
14521 && !current_function_returns_value && !current_function_returns_null
14522 /* Don't complain if we abort or throw. */
14523 && !current_function_returns_abnormally
14524 /* Don't complain if there's an infinite loop. */
14525 && !current_function_infinite_loop
14526 /* Don't complain if we are declared noreturn. */
14527 && !TREE_THIS_VOLATILE (fndecl)
14528 && !DECL_NAME (DECL_RESULT (fndecl))
14529 && !TREE_NO_WARNING (fndecl)
14530 /* Structor return values (if any) are set by the compiler. */
14531 && !DECL_CONSTRUCTOR_P (fndecl)
14532 && !DECL_DESTRUCTOR_P (fndecl)
14533 && targetm.warn_func_return (fndecl))
14534 {
14535 warning (OPT_Wreturn_type,
14536 "no return statement in function returning non-void");
14537 TREE_NO_WARNING (fndecl) = 1;
14538 }
14539
14540 /* Store the end of the function, so that we get good line number
14541 info for the epilogue. */
14542 cfun->function_end_locus = input_location;
14543
14544 /* Complain about parameters that are only set, but never otherwise used. */
14545 if (warn_unused_but_set_parameter
14546 && !processing_template_decl
14547 && errorcount == unused_but_set_errorcount
14548 && !DECL_CLONED_FUNCTION_P (fndecl))
14549 {
14550 tree decl;
14551
14552 for (decl = DECL_ARGUMENTS (fndecl);
14553 decl;
14554 decl = DECL_CHAIN (decl))
14555 if (TREE_USED (decl)
14556 && TREE_CODE (decl) == PARM_DECL
14557 && !DECL_READ_P (decl)
14558 && DECL_NAME (decl)
14559 && !DECL_ARTIFICIAL (decl)
14560 && !TREE_NO_WARNING (decl)
14561 && !DECL_IN_SYSTEM_HEADER (decl)
14562 && TREE_TYPE (decl) != error_mark_node
14563 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
14564 && (!CLASS_TYPE_P (TREE_TYPE (decl))
14565 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
14566 warning_at (DECL_SOURCE_LOCATION (decl),
14567 OPT_Wunused_but_set_parameter,
14568 "parameter %qD set but not used", decl);
14569 unused_but_set_errorcount = errorcount;
14570 }
14571
14572 /* Complain about locally defined typedefs that are not used in this
14573 function. */
14574 maybe_warn_unused_local_typedefs ();
14575
14576 /* Possibly warn about unused parameters. */
14577 if (warn_unused_parameter
14578 && !processing_template_decl
14579 && !DECL_CLONED_FUNCTION_P (fndecl))
14580 do_warn_unused_parameter (fndecl);
14581
14582 /* Genericize before inlining. */
14583 if (!processing_template_decl)
14584 {
14585 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
14586 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
14587 cp_genericize (fndecl);
14588 /* Clear out the bits we don't need. */
14589 f->x_current_class_ptr = NULL;
14590 f->x_current_class_ref = NULL;
14591 f->x_eh_spec_block = NULL;
14592 f->x_in_charge_parm = NULL;
14593 f->x_vtt_parm = NULL;
14594 f->x_return_value = NULL;
14595 f->bindings = NULL;
14596 f->extern_decl_map = NULL;
14597 f->infinite_loops = NULL;
14598 }
14599 /* Clear out the bits we don't need. */
14600 local_names = NULL;
14601
14602 /* We're leaving the context of this function, so zap cfun. It's still in
14603 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
14604 set_cfun (NULL);
14605 current_function_decl = NULL;
14606
14607 /* If this is an in-class inline definition, we may have to pop the
14608 bindings for the template parameters that we added in
14609 maybe_begin_member_template_processing when start_function was
14610 called. */
14611 if (inclass_inline)
14612 maybe_end_member_template_processing ();
14613
14614 /* Leave the scope of the class. */
14615 if (ctype)
14616 pop_nested_class ();
14617
14618 --function_depth;
14619
14620 /* Clean up. */
14621 current_function_decl = NULL_TREE;
14622
14623 defer_mark_used_calls = false;
14624 if (deferred_mark_used_calls)
14625 {
14626 unsigned int i;
14627 tree decl;
14628
14629 FOR_EACH_VEC_SAFE_ELT (deferred_mark_used_calls, i, decl)
14630 mark_used (decl);
14631 vec_free (deferred_mark_used_calls);
14632 }
14633
14634 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
14635 return fndecl;
14636 }
14637 \f
14638 /* Create the FUNCTION_DECL for a function definition.
14639 DECLSPECS and DECLARATOR are the parts of the declaration;
14640 they describe the return type and the name of the function,
14641 but twisted together in a fashion that parallels the syntax of C.
14642
14643 This function creates a binding context for the function body
14644 as well as setting up the FUNCTION_DECL in current_function_decl.
14645
14646 Returns a FUNCTION_DECL on success.
14647
14648 If the DECLARATOR is not suitable for a function (it defines a datum
14649 instead), we return 0, which tells yyparse to report a parse error.
14650
14651 May return void_type_node indicating that this method is actually
14652 a friend. See grokfield for more details.
14653
14654 Came here with a `.pushlevel' .
14655
14656 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
14657 CHANGES TO CODE IN `grokfield'. */
14658
14659 tree
14660 grokmethod (cp_decl_specifier_seq *declspecs,
14661 const cp_declarator *declarator, tree attrlist)
14662 {
14663 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
14664 &attrlist);
14665
14666 if (fndecl == error_mark_node)
14667 return error_mark_node;
14668
14669 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
14670 {
14671 error ("invalid member function declaration");
14672 return error_mark_node;
14673 }
14674
14675 if (attrlist)
14676 cplus_decl_attributes (&fndecl, attrlist, 0);
14677
14678 /* Pass friends other than inline friend functions back. */
14679 if (fndecl == void_type_node)
14680 return fndecl;
14681
14682 if (DECL_IN_AGGR_P (fndecl))
14683 {
14684 if (DECL_CLASS_SCOPE_P (fndecl))
14685 error ("%qD is already defined in class %qT", fndecl,
14686 DECL_CONTEXT (fndecl));
14687 return error_mark_node;
14688 }
14689
14690 check_template_shadow (fndecl);
14691
14692 if (TREE_PUBLIC (fndecl))
14693 DECL_COMDAT (fndecl) = 1;
14694 DECL_DECLARED_INLINE_P (fndecl) = 1;
14695 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
14696
14697 /* We process method specializations in finish_struct_1. */
14698 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
14699 {
14700 fndecl = push_template_decl (fndecl);
14701 if (fndecl == error_mark_node)
14702 return fndecl;
14703 }
14704
14705 if (! DECL_FRIEND_P (fndecl))
14706 {
14707 if (DECL_CHAIN (fndecl))
14708 {
14709 fndecl = copy_node (fndecl);
14710 TREE_CHAIN (fndecl) = NULL_TREE;
14711 }
14712 }
14713
14714 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
14715
14716 DECL_IN_AGGR_P (fndecl) = 1;
14717 return fndecl;
14718 }
14719 \f
14720
14721 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
14722 we can lay it out later, when and if its type becomes complete.
14723
14724 Also handle constexpr variables where the initializer involves
14725 an unlowered PTRMEM_CST because the class isn't complete yet. */
14726
14727 void
14728 maybe_register_incomplete_var (tree var)
14729 {
14730 gcc_assert (VAR_P (var));
14731
14732 /* Keep track of variables with incomplete types. */
14733 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
14734 && DECL_EXTERNAL (var))
14735 {
14736 tree inner_type = TREE_TYPE (var);
14737
14738 while (TREE_CODE (inner_type) == ARRAY_TYPE)
14739 inner_type = TREE_TYPE (inner_type);
14740 inner_type = TYPE_MAIN_VARIANT (inner_type);
14741
14742 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
14743 /* RTTI TD entries are created while defining the type_info. */
14744 || (TYPE_LANG_SPECIFIC (inner_type)
14745 && TYPE_BEING_DEFINED (inner_type)))
14746 {
14747 incomplete_var iv = {var, inner_type};
14748 vec_safe_push (incomplete_vars, iv);
14749 }
14750 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
14751 && decl_constant_var_p (var)
14752 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
14753 {
14754 /* When the outermost open class is complete we can resolve any
14755 pointers-to-members. */
14756 tree context = outermost_open_class ();
14757 incomplete_var iv = {var, context};
14758 vec_safe_push (incomplete_vars, iv);
14759 }
14760 }
14761 }
14762
14763 /* Called when a class type (given by TYPE) is defined. If there are
14764 any existing VAR_DECLs whose type has been completed by this
14765 declaration, update them now. */
14766
14767 void
14768 complete_vars (tree type)
14769 {
14770 unsigned ix;
14771 incomplete_var *iv;
14772
14773 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
14774 {
14775 if (same_type_p (type, iv->incomplete_type))
14776 {
14777 tree var = iv->decl;
14778 tree type = TREE_TYPE (var);
14779
14780 if (TYPE_MAIN_VARIANT (strip_array_types (type))
14781 == iv->incomplete_type)
14782 {
14783 /* Complete the type of the variable. The VAR_DECL itself
14784 will be laid out in expand_expr. */
14785 complete_type (type);
14786 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
14787 }
14788
14789 if (DECL_INITIAL (var)
14790 && decl_constant_var_p (var))
14791 DECL_INITIAL (var) = cplus_expand_constant (DECL_INITIAL (var));
14792
14793 /* Remove this entry from the list. */
14794 incomplete_vars->unordered_remove (ix);
14795 }
14796 else
14797 ix++;
14798 }
14799
14800 /* Check for pending declarations which may have abstract type. */
14801 complete_type_check_abstract (type);
14802 }
14803
14804 /* If DECL is of a type which needs a cleanup, build and return an
14805 expression to perform that cleanup here. Return NULL_TREE if no
14806 cleanup need be done. */
14807
14808 tree
14809 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
14810 {
14811 tree type;
14812 tree attr;
14813 tree cleanup;
14814
14815 /* Assume no cleanup is required. */
14816 cleanup = NULL_TREE;
14817
14818 if (error_operand_p (decl))
14819 return cleanup;
14820
14821 /* Handle "__attribute__((cleanup))". We run the cleanup function
14822 before the destructor since the destructor is what actually
14823 terminates the lifetime of the object. */
14824 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
14825 if (attr)
14826 {
14827 tree id;
14828 tree fn;
14829 tree arg;
14830
14831 /* Get the name specified by the user for the cleanup function. */
14832 id = TREE_VALUE (TREE_VALUE (attr));
14833 /* Look up the name to find the cleanup function to call. It is
14834 important to use lookup_name here because that is what is
14835 used in c-common.c:handle_cleanup_attribute when performing
14836 initial checks on the attribute. Note that those checks
14837 include ensuring that the function found is not an overloaded
14838 function, or an object with an overloaded call operator,
14839 etc.; we can rely on the fact that the function found is an
14840 ordinary FUNCTION_DECL. */
14841 fn = lookup_name (id);
14842 arg = build_address (decl);
14843 if (!mark_used (decl, complain) && !(complain & tf_error))
14844 return error_mark_node;
14845 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
14846 if (cleanup == error_mark_node)
14847 return error_mark_node;
14848 }
14849 /* Handle ordinary C++ destructors. */
14850 type = TREE_TYPE (decl);
14851 if (type_build_dtor_call (type))
14852 {
14853 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
14854 tree addr;
14855 tree call;
14856
14857 if (TREE_CODE (type) == ARRAY_TYPE)
14858 addr = decl;
14859 else
14860 addr = build_address (decl);
14861
14862 call = build_delete (TREE_TYPE (addr), addr,
14863 sfk_complete_destructor, flags, 0, complain);
14864 if (call == error_mark_node)
14865 cleanup = error_mark_node;
14866 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
14867 /* Discard the call. */;
14868 else if (cleanup)
14869 cleanup = cp_build_compound_expr (cleanup, call, complain);
14870 else
14871 cleanup = call;
14872 }
14873
14874 /* build_delete sets the location of the destructor call to the
14875 current location, even though the destructor is going to be
14876 called later, at the end of the current scope. This can lead to
14877 a "jumpy" behaviour for users of debuggers when they step around
14878 the end of the block. So let's unset the location of the
14879 destructor call instead. */
14880 if (cleanup != NULL && EXPR_P (cleanup))
14881 SET_EXPR_LOCATION (cleanup, UNKNOWN_LOCATION);
14882
14883 if (cleanup
14884 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
14885 /* Treat objects with destructors as used; the destructor may do
14886 something substantive. */
14887 && !mark_used (decl, complain) && !(complain & tf_error))
14888 return error_mark_node;
14889
14890 return cleanup;
14891 }
14892
14893 \f
14894 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
14895 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
14896 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
14897
14898 tree
14899 static_fn_type (tree memfntype)
14900 {
14901 tree fntype;
14902 tree args;
14903
14904 if (TYPE_PTRMEMFUNC_P (memfntype))
14905 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
14906 if (POINTER_TYPE_P (memfntype)
14907 || TREE_CODE (memfntype) == FUNCTION_DECL)
14908 memfntype = TREE_TYPE (memfntype);
14909 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
14910 return memfntype;
14911 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
14912 args = TYPE_ARG_TYPES (memfntype);
14913 cp_ref_qualifier rqual = type_memfn_rqual (memfntype);
14914 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
14915 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype), rqual);
14916 fntype = (cp_build_type_attribute_variant
14917 (fntype, TYPE_ATTRIBUTES (memfntype)));
14918 fntype = (build_exception_variant
14919 (fntype, TYPE_RAISES_EXCEPTIONS (memfntype)));
14920 if (TYPE_HAS_LATE_RETURN_TYPE (memfntype))
14921 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
14922 return fntype;
14923 }
14924
14925 /* DECL was originally constructed as a non-static member function,
14926 but turned out to be static. Update it accordingly. */
14927
14928 void
14929 revert_static_member_fn (tree decl)
14930 {
14931 tree stype = static_fn_type (decl);
14932 cp_cv_quals quals = type_memfn_quals (stype);
14933 cp_ref_qualifier rqual = type_memfn_rqual (stype);
14934
14935 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
14936 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
14937
14938 TREE_TYPE (decl) = stype;
14939
14940 if (DECL_ARGUMENTS (decl))
14941 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
14942 DECL_STATIC_FUNCTION_P (decl) = 1;
14943 }
14944
14945 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
14946 one of the language-independent trees. */
14947
14948 enum cp_tree_node_structure_enum
14949 cp_tree_node_structure (union lang_tree_node * t)
14950 {
14951 switch (TREE_CODE (&t->generic))
14952 {
14953 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
14954 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
14955 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
14956 case OVERLOAD: return TS_CP_OVERLOAD;
14957 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
14958 case PTRMEM_CST: return TS_CP_PTRMEM;
14959 case BASELINK: return TS_CP_BASELINK;
14960 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
14961 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
14962 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
14963 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
14964 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
14965 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
14966 case CONSTRAINT_INFO: return TS_CP_CONSTRAINT_INFO;
14967 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
14968 default: return TS_CP_GENERIC;
14969 }
14970 }
14971
14972 /* Build the void_list_node (void_type_node having been created). */
14973 tree
14974 build_void_list_node (void)
14975 {
14976 tree t = build_tree_list (NULL_TREE, void_type_node);
14977 return t;
14978 }
14979
14980 bool
14981 cp_missing_noreturn_ok_p (tree decl)
14982 {
14983 /* A missing noreturn is ok for the `main' function. */
14984 return DECL_MAIN_P (decl);
14985 }
14986
14987 /* Return the decl used to identify the COMDAT group into which DECL should
14988 be placed. */
14989
14990 tree
14991 cxx_comdat_group (tree decl)
14992 {
14993 /* Virtual tables, construction virtual tables, and virtual table
14994 tables all go in a single COMDAT group, named after the primary
14995 virtual table. */
14996 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
14997 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
14998 /* For all other DECLs, the COMDAT group is the mangled name of the
14999 declaration itself. */
15000 else
15001 {
15002 while (DECL_THUNK_P (decl))
15003 {
15004 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
15005 into the same section as the target function. In that case
15006 we must return target's name. */
15007 tree target = THUNK_TARGET (decl);
15008 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
15009 && DECL_SECTION_NAME (target) != NULL
15010 && DECL_ONE_ONLY (target))
15011 decl = target;
15012 else
15013 break;
15014 }
15015 }
15016
15017 return decl;
15018 }
15019
15020 /* Returns the return type for FN as written by the user, which may include
15021 a placeholder for a deduced return type. */
15022
15023 tree
15024 fndecl_declared_return_type (tree fn)
15025 {
15026 fn = STRIP_TEMPLATE (fn);
15027 if (FNDECL_USED_AUTO (fn))
15028 {
15029 struct language_function *f = NULL;
15030 if (DECL_STRUCT_FUNCTION (fn))
15031 f = DECL_STRUCT_FUNCTION (fn)->language;
15032 if (f == NULL)
15033 f = DECL_SAVED_FUNCTION_DATA (fn);
15034 return f->x_auto_return_pattern;
15035 }
15036 return TREE_TYPE (TREE_TYPE (fn));
15037 }
15038
15039 /* Returns true iff DECL was declared with an auto return type and it has
15040 not yet been deduced to a real type. */
15041
15042 bool
15043 undeduced_auto_decl (tree decl)
15044 {
15045 if (cxx_dialect < cxx14)
15046 return false;
15047 return type_uses_auto (TREE_TYPE (decl));
15048 }
15049
15050 /* Complain if DECL has an undeduced return type. */
15051
15052 void
15053 require_deduced_type (tree decl)
15054 {
15055 if (undeduced_auto_decl (decl))
15056 error ("use of %qD before deduction of %<auto%>", decl);
15057 }
15058
15059 #include "gt-cp-decl.h"