1 /* Definitions for C++ name lookup routines.
2 Copyright (C) 2003-2024 Free Software Foundation, Inc.
3 Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 #define INCLUDE_MEMORY
24 #include "coretypes.h"
27 #include "stringpool.h"
28 #include "print-tree.h"
31 #include "c-family/c-pragma.h"
32 #include "gcc-rich-location.h"
33 #include "spellcheck-tree.h"
35 #include "c-family/name-hint.h"
36 #include "c-family/known-headers.h"
37 #include "c-family/c-spellcheck.h"
40 static cxx_binding
*cxx_binding_make (tree value
, tree type
);
41 static cp_binding_level
*innermost_nonclass_level (void);
42 static void set_identifier_type_value_with_scope (tree id
, tree decl
,
44 static name_hint
maybe_suggest_missing_std_header (location_t location
,
46 static name_hint
suggest_alternatives_for_1 (location_t location
, tree name
,
47 bool suggest_misspellings
);
49 /* Slots in BINDING_VECTOR. */
52 BINDING_SLOT_CURRENT
, /* Slot for current TU. */
53 BINDING_SLOT_GLOBAL
, /* Slot for merged global module. */
54 BINDING_SLOT_PARTITION
, /* Slot for merged partition entities
57 /* Number of always-allocated slots. */
58 BINDING_SLOTS_FIXED
= BINDING_SLOT_GLOBAL
+ 1
61 /* Create an overload suitable for recording an artificial TYPE_DECL
62 and another decl. We use this machanism to implement the struct
65 #define STAT_HACK_P(N) ((N) && TREE_CODE (N) == OVERLOAD && OVL_LOOKUP_P (N))
66 #define STAT_TYPE_VISIBLE_P(N) TREE_USED (OVERLOAD_CHECK (N))
67 #define STAT_TYPE(N) TREE_TYPE (N)
68 #define STAT_DECL(N) OVL_FUNCTION (N)
69 #define STAT_VISIBLE(N) OVL_CHAIN (N)
70 #define MAYBE_STAT_DECL(N) (STAT_HACK_P (N) ? STAT_DECL (N) : N)
71 #define MAYBE_STAT_TYPE(N) (STAT_HACK_P (N) ? STAT_TYPE (N) : NULL_TREE)
73 /* When a STAT_HACK_P is true, OVL_USING_P and OVL_EXPORT_P are valid
74 and apply to the hacked type. */
76 /* For regular (maybe) overloaded functions, we have OVL_HIDDEN_P.
77 But we also need to indicate hiddenness on implicit type decls
78 (injected friend classes), and (coming soon) decls injected from
79 block-scope externs. It is too awkward to press the existing
80 overload marking for that. If we have a hidden non-function, we
81 always create a STAT_HACK, and use these two markers as needed. */
82 #define STAT_TYPE_HIDDEN_P(N) OVL_HIDDEN_P (N)
83 #define STAT_DECL_HIDDEN_P(N) OVL_DEDUP_P (N)
85 /* Create a STAT_HACK node with DECL as the value binding and TYPE as
89 stat_hack (tree decl
= NULL_TREE
, tree type
= NULL_TREE
)
91 tree result
= make_node (OVERLOAD
);
93 /* Mark this as a lookup, so we can tell this is a stat hack. */
94 OVL_LOOKUP_P (result
) = true;
95 STAT_DECL (result
) = decl
;
96 STAT_TYPE (result
) = type
;
100 /* Create a local binding level for NAME. */
103 create_local_binding (cp_binding_level
*level
, tree name
)
105 cxx_binding
*binding
= cxx_binding_make (NULL
, NULL
);
107 LOCAL_BINDING_P (binding
) = true;
108 binding
->scope
= level
;
109 binding
->previous
= IDENTIFIER_BINDING (name
);
111 IDENTIFIER_BINDING (name
) = binding
;
116 /* Find the binding for NAME in namespace NS. If CREATE_P is true,
117 make an empty binding if there wasn't one. */
120 find_namespace_slot (tree ns
, tree name
, bool create_p
= false)
122 tree
*slot
= DECL_NAMESPACE_BINDINGS (ns
)
123 ->find_slot_with_hash (name
, name
? IDENTIFIER_HASH_VALUE (name
) : 0,
124 create_p
? INSERT
: NO_INSERT
);
129 find_namespace_value (tree ns
, tree name
)
131 tree
*b
= find_namespace_slot (ns
, name
);
133 return b
? MAYBE_STAT_DECL (*b
) : NULL_TREE
;
136 /* Look in *SLOT for a the binding of NAME in imported module IX.
137 Returns pointer to binding's slot, or NULL if not found. Does a
138 binary search, as this is mainly used for random access during
139 importing. Do not use for the fixed slots. */
141 static binding_slot
*
142 search_imported_binding_slot (tree
*slot
, unsigned ix
)
149 if (TREE_CODE (*slot
) != BINDING_VECTOR
)
152 unsigned clusters
= BINDING_VECTOR_NUM_CLUSTERS (*slot
);
153 binding_cluster
*cluster
= BINDING_VECTOR_CLUSTER_BASE (*slot
);
155 if (BINDING_VECTOR_SLOTS_PER_CLUSTER
== BINDING_SLOTS_FIXED
)
163 unsigned half
= clusters
/ 2;
164 gcc_checking_assert (cluster
[half
].indices
[0].span
);
165 if (cluster
[half
].indices
[0].base
> ix
)
175 /* Is it in this cluster? */
176 for (unsigned off
= 0; off
!= BINDING_VECTOR_SLOTS_PER_CLUSTER
; off
++)
178 if (!cluster
->indices
[off
].span
)
180 if (cluster
->indices
[off
].base
> ix
)
183 if (cluster
->indices
[off
].base
+ cluster
->indices
[off
].span
> ix
)
184 return &cluster
->slots
[off
];
191 init_global_partition (binding_cluster
*cluster
, tree decl
)
195 if (header_module_p ())
197 else if (TREE_PUBLIC (decl
)
198 && TREE_CODE (decl
) == NAMESPACE_DECL
199 && !DECL_NAMESPACE_ALIAS (decl
))
201 else if (!get_originating_module (decl
))
206 mslot
= &cluster
[BINDING_SLOT_PARTITION
207 / BINDING_VECTOR_SLOTS_PER_CLUSTER
]
208 .slots
[BINDING_SLOT_PARTITION
209 % BINDING_VECTOR_SLOTS_PER_CLUSTER
];
211 mslot
= &cluster
[0].slots
[BINDING_SLOT_GLOBAL
];
214 decl
= ovl_make (decl
, *mslot
);
217 if (TREE_CODE (decl
) == CONST_DECL
)
219 tree type
= TREE_TYPE (decl
);
220 if (TREE_CODE (type
) == ENUMERAL_TYPE
221 && IDENTIFIER_ANON_P (DECL_NAME (TYPE_NAME (type
)))
222 && decl
== TREE_VALUE (TYPE_VALUES (type
)))
223 /* Anonymous enums are keyed by their first enumerator, put
224 the TYPE_DECL here too. */
225 *mslot
= ovl_make (TYPE_NAME (type
), *mslot
);
229 /* Get the fixed binding slot IX. Creating the vector if CREATE is
230 non-zero. If CREATE is < 0, make sure there is at least 1 spare
231 slot for an import. (It is an error for CREATE < 0 and the slot to
235 get_fixed_binding_slot (tree
*slot
, tree name
, unsigned ix
, int create
)
237 gcc_checking_assert (ix
<= BINDING_SLOT_PARTITION
);
239 /* An assumption is that the fixed slots all reside in one cluster. */
240 gcc_checking_assert (BINDING_VECTOR_SLOTS_PER_CLUSTER
>= BINDING_SLOTS_FIXED
);
242 if (!*slot
|| TREE_CODE (*slot
) != BINDING_VECTOR
)
244 if (ix
== BINDING_SLOT_CURRENT
)
245 /* The current TU can just use slot directly. */
251 /* The partition slot is only needed when we're a named
253 bool partition_slot
= named_module_p ();
254 unsigned want
= ((BINDING_SLOTS_FIXED
+ partition_slot
+ (create
< 0)
255 + BINDING_VECTOR_SLOTS_PER_CLUSTER
- 1)
256 / BINDING_VECTOR_SLOTS_PER_CLUSTER
);
257 tree new_vec
= make_binding_vec (name
, want
);
258 BINDING_VECTOR_NUM_CLUSTERS (new_vec
) = want
;
259 binding_cluster
*cluster
= BINDING_VECTOR_CLUSTER_BASE (new_vec
);
261 /* Initialize the fixed slots. */
262 for (unsigned jx
= BINDING_SLOTS_FIXED
; jx
--;)
264 cluster
[0].indices
[jx
].base
= 0;
265 cluster
[0].indices
[jx
].span
= 1;
266 cluster
[0].slots
[jx
] = NULL_TREE
;
271 unsigned off
= BINDING_SLOT_PARTITION
% BINDING_VECTOR_SLOTS_PER_CLUSTER
;
272 unsigned ind
= BINDING_SLOT_PARTITION
/ BINDING_VECTOR_SLOTS_PER_CLUSTER
;
273 cluster
[ind
].indices
[off
].base
= 0;
274 cluster
[ind
].indices
[off
].span
= 1;
275 cluster
[ind
].slots
[off
] = NULL_TREE
;
278 if (tree orig
= *slot
)
280 /* Propagate existing value to current slot. */
282 /* Propagate global & module entities to the global and
284 if (tree type
= MAYBE_STAT_TYPE (orig
))
285 init_global_partition (cluster
, type
);
287 for (ovl_iterator
iter (MAYBE_STAT_DECL (orig
)); iter
; ++iter
)
291 /* Internal linkage entities are in deduplicateable. */
292 init_global_partition (cluster
, decl
);
295 if (cluster
[0].slots
[BINDING_SLOT_GLOBAL
]
296 && !(TREE_CODE (orig
) == NAMESPACE_DECL
297 && !DECL_NAMESPACE_ALIAS (orig
)))
299 /* Note that we had some GMF entries. */
300 if (!STAT_HACK_P (orig
))
301 orig
= stat_hack (orig
);
303 MODULE_BINDING_GLOBAL_P (orig
) = true;
306 cluster
[0].slots
[BINDING_SLOT_CURRENT
] = orig
;
312 gcc_checking_assert (create
>= 0);
314 unsigned off
= ix
% BINDING_VECTOR_SLOTS_PER_CLUSTER
;
315 binding_cluster
&cluster
316 = BINDING_VECTOR_CLUSTER (*slot
, ix
/ BINDING_VECTOR_SLOTS_PER_CLUSTER
);
318 /* There must always be slots for these indices */
319 gcc_checking_assert (cluster
.indices
[off
].span
== 1
320 && !cluster
.indices
[off
].base
321 && !cluster
.slots
[off
].is_lazy ());
323 return reinterpret_cast<tree
*> (&cluster
.slots
[off
]);
326 /* *SLOT is a namespace binding slot. Append a slot for imported
329 static binding_slot
*
330 append_imported_binding_slot (tree
*slot
, tree name
, unsigned ix
)
332 gcc_checking_assert (ix
);
334 if (!*slot
|| TREE_CODE (*slot
) != BINDING_VECTOR
)
335 /* Make an initial module vector. */
336 get_fixed_binding_slot (slot
, name
, BINDING_SLOT_GLOBAL
, -1);
337 else if (!BINDING_VECTOR_CLUSTER_LAST (*slot
)
338 ->indices
[BINDING_VECTOR_SLOTS_PER_CLUSTER
- 1].span
)
339 /* There is space in the last cluster. */;
340 else if (BINDING_VECTOR_NUM_CLUSTERS (*slot
)
341 != BINDING_VECTOR_ALLOC_CLUSTERS (*slot
))
342 /* There is space in the vector. */
343 BINDING_VECTOR_NUM_CLUSTERS (*slot
)++;
346 /* Extend the vector. */
347 unsigned have
= BINDING_VECTOR_NUM_CLUSTERS (*slot
);
348 unsigned want
= (have
* 3 + 1) / 2;
350 if (want
> (unsigned short)~0)
351 want
= (unsigned short)~0;
353 tree new_vec
= make_binding_vec (name
, want
);
354 BINDING_VECTOR_NUM_CLUSTERS (new_vec
) = have
+ 1;
355 memcpy (BINDING_VECTOR_CLUSTER_BASE (new_vec
),
356 BINDING_VECTOR_CLUSTER_BASE (*slot
),
357 have
* sizeof (binding_cluster
));
361 binding_cluster
*last
= BINDING_VECTOR_CLUSTER_LAST (*slot
);
362 for (unsigned off
= 0; off
!= BINDING_VECTOR_SLOTS_PER_CLUSTER
; off
++)
363 if (!last
->indices
[off
].span
)
365 /* Fill the free slot of the cluster. */
366 last
->indices
[off
].base
= ix
;
367 last
->indices
[off
].span
= 1;
368 last
->slots
[off
] = NULL_TREE
;
369 /* Check monotonicity. */
370 gcc_checking_assert (last
[off
? 0 : -1]
371 .indices
[off
? off
- 1
372 : BINDING_VECTOR_SLOTS_PER_CLUSTER
- 1]
374 return &last
->slots
[off
];
380 /* Add DECL to the list of things declared in binding level B. */
383 add_decl_to_level (cp_binding_level
*b
, tree decl
)
385 gcc_assert (b
->kind
!= sk_class
);
387 /* Make sure we don't create a circular list. xref_tag can end
388 up pushing the same artificial decl more than once. We
389 should have already detected that in update_binding. (This isn't a
390 complete verification of non-circularity.) */
391 gcc_assert (b
->names
!= decl
);
393 /* We build up the list in reverse order, and reverse it later if
395 TREE_CHAIN (decl
) = b
->names
;
398 /* If appropriate, add decl to separate list of statics. We include
399 extern variables because they might turn out to be static later.
400 It's OK for this list to contain a few false positives. */
401 if (b
->kind
== sk_namespace
402 && ((VAR_P (decl
) && (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
)))
403 || (TREE_CODE (decl
) == FUNCTION_DECL
404 && (!TREE_PUBLIC (decl
)
405 || decl_internal_context_p (decl
)
406 || DECL_DECLARED_INLINE_P (decl
)))))
407 vec_safe_push (static_decls
, decl
);
410 /* Find the binding for NAME in the local binding level B. */
413 find_local_binding (cp_binding_level
*b
, tree name
)
415 if (cxx_binding
*binding
= IDENTIFIER_BINDING (name
))
416 for (;; b
= b
->level_chain
)
418 if (binding
->scope
== b
)
421 /* Cleanup contours are transparent to the language. */
422 if (b
->kind
!= sk_cleanup
)
431 typedef std::pair
<tree
, tree
> using_pair
;
432 typedef auto_vec
<using_pair
, 16> using_queue
;
435 tree name
; /* The identifier being looked for. */
437 /* Usually we just add things to the VALUE binding, but we record
438 (hidden) IMPLICIT_TYPEDEFs on the type binding, which is used for
439 using-decl resolution. */
440 tree value
; /* A (possibly ambiguous) set of things found. */
441 tree type
; /* A type that has been found. */
443 LOOK_want want
; /* What kind of entity we want. */
445 bool deduping
; /* Full deduping is needed because using declarations
447 vec
<tree
, va_heap
, vl_embed
> *scopes
;
448 name_lookup
*previous
; /* Previously active lookup. */
451 /* Marked scope stack for outermost name lookup. */
452 static vec
<tree
, va_heap
, vl_embed
> *shared_scopes
;
453 /* Currently active lookup. */
454 static name_lookup
*active
;
457 name_lookup (tree n
, LOOK_want w
= LOOK_want::NORMAL
)
458 : name (n
), value (NULL_TREE
), type (NULL_TREE
),
460 deduping (false), scopes (NULL
), previous (NULL
)
466 gcc_checking_assert (!deduping
);
470 private: /* Uncopyable, unmovable, unassignable. I am a rock. */
471 name_lookup (const name_lookup
&);
472 name_lookup
&operator= (const name_lookup
&);
475 /* Turn on or off deduping mode. */
476 void dedup (bool state
)
478 if (deduping
!= state
)
481 lookup_mark (value
, state
);
486 static bool seen_p (tree scope
)
488 return LOOKUP_SEEN_P (scope
);
490 static bool found_p (tree scope
)
492 return LOOKUP_FOUND_P (scope
);
495 void mark_seen (tree scope
); /* Mark and add to scope vector. */
496 static void mark_found (tree scope
)
498 gcc_checking_assert (seen_p (scope
));
499 LOOKUP_FOUND_P (scope
) = true;
501 bool see_and_mark (tree scope
)
503 bool ret
= seen_p (scope
);
508 bool find_and_mark (tree scope
);
511 void preserve_state ();
512 void restore_state ();
515 static tree
ambiguous (tree thing
, tree current
);
516 void add_value (tree new_val
);
518 void add_overload (tree fns
);
519 void add_type (tree new_type
);
520 bool process_binding (tree val_bind
, tree type_bind
);
521 unsigned process_module_binding (tree val_bind
, tree type_bind
, unsigned);
522 /* Look in only namespace. */
523 bool search_namespace_only (tree scope
);
524 /* Look in namespace and its (recursive) inlines. Ignore using
525 directives. Return true if something found (inc dups). */
526 bool search_namespace (tree scope
);
527 /* Look in the using directives of namespace + inlines using
528 qualified lookup rules. */
529 bool search_usings (tree scope
);
532 void queue_namespace (using_queue
& queue
, int depth
, tree scope
);
533 void queue_usings (using_queue
& queue
, int depth
, vec
<tree
, va_gc
> *usings
);
539 void adl_expr (tree
);
540 void adl_type (tree
);
541 void adl_template_arg (tree
);
542 void adl_class (tree
);
543 void adl_enum (tree
);
544 void adl_bases (tree
);
545 void adl_class_only (tree
);
546 void adl_namespace (tree
);
547 void adl_class_fns (tree
);
548 void adl_namespace_fns (tree
, bitmap
);
551 /* Search namespace + inlines + maybe usings as qualified lookup. */
552 bool search_qualified (tree scope
, bool usings
= true);
554 /* Search namespace + inlines + usings as unqualified lookup. */
555 bool search_unqualified (tree scope
, cp_binding_level
*);
557 /* ADL lookup of ARGS. */
558 tree
search_adl (tree fns
, vec
<tree
, va_gc
> *args
);
561 /* Scope stack shared by all outermost lookups. This avoids us
562 allocating and freeing on every single lookup. */
563 vec
<tree
, va_heap
, vl_embed
> *name_lookup::shared_scopes
;
565 /* Currently active lookup. */
566 name_lookup
*name_lookup::active
;
568 /* Name lookup is recursive, becase ADL can cause template
569 instatiation. This is of course a rare event, so we optimize for
570 it not happening. When we discover an active name-lookup, which
571 must be an ADL lookup, we need to unmark the marked scopes and also
572 unmark the lookup we might have been accumulating. */
575 name_lookup::preserve_state ()
580 unsigned length
= vec_safe_length (previous
->scopes
);
581 vec_safe_reserve (previous
->scopes
, length
* 2);
582 for (unsigned ix
= length
; ix
--;)
584 tree decl
= (*previous
->scopes
)[ix
];
586 gcc_checking_assert (LOOKUP_SEEN_P (decl
));
587 LOOKUP_SEEN_P (decl
) = false;
589 /* Preserve the FOUND_P state on the interrupted lookup's
591 if (LOOKUP_FOUND_P (decl
))
593 LOOKUP_FOUND_P (decl
) = false;
594 previous
->scopes
->quick_push (decl
);
598 /* Unmark the outer partial lookup. */
599 if (previous
->deduping
)
600 lookup_mark (previous
->value
, false);
603 scopes
= shared_scopes
;
607 /* Restore the marking state of a lookup we interrupted. */
610 name_lookup::restore_state ()
612 gcc_checking_assert (!deduping
);
614 /* Unmark and empty this lookup's scope stack. */
615 for (unsigned ix
= vec_safe_length (scopes
); ix
--;)
617 tree decl
= scopes
->pop ();
618 gcc_checking_assert (LOOKUP_SEEN_P (decl
));
619 LOOKUP_SEEN_P (decl
) = false;
620 LOOKUP_FOUND_P (decl
) = false;
628 unsigned length
= vec_safe_length (previous
->scopes
);
629 for (unsigned ix
= 0; ix
!= length
; ix
++)
631 tree decl
= (*previous
->scopes
)[ix
];
632 if (LOOKUP_SEEN_P (decl
))
634 /* The remainder of the scope stack must be recording
635 FOUND_P decls, which we want to pop off. */
638 tree decl
= previous
->scopes
->pop ();
639 gcc_checking_assert (LOOKUP_SEEN_P (decl
)
640 && !LOOKUP_FOUND_P (decl
));
641 LOOKUP_FOUND_P (decl
) = true;
643 while (++ix
!= length
);
647 gcc_checking_assert (!LOOKUP_FOUND_P (decl
));
648 LOOKUP_SEEN_P (decl
) = true;
651 /* Remark the outer partial lookup. */
652 if (previous
->deduping
)
653 lookup_mark (previous
->value
, true);
656 shared_scopes
= scopes
;
660 name_lookup::mark_seen (tree scope
)
662 gcc_checking_assert (!seen_p (scope
));
663 LOOKUP_SEEN_P (scope
) = true;
664 vec_safe_push (scopes
, scope
);
668 name_lookup::find_and_mark (tree scope
)
670 bool result
= LOOKUP_FOUND_P (scope
);
673 LOOKUP_FOUND_P (scope
) = true;
674 if (!LOOKUP_SEEN_P (scope
))
675 vec_safe_push (scopes
, scope
);
681 /* THING and CURRENT are ambiguous, concatenate them. */
684 name_lookup::ambiguous (tree thing
, tree current
)
686 if (TREE_CODE (current
) != TREE_LIST
)
688 current
= build_tree_list (NULL_TREE
, current
);
689 TREE_TYPE (current
) = error_mark_node
;
691 current
= tree_cons (NULL_TREE
, thing
, current
);
692 TREE_TYPE (current
) = error_mark_node
;
697 /* FNS is a new overload set to add to the exising set. */
700 name_lookup::add_overload (tree fns
)
702 if (!deduping
&& TREE_CODE (fns
) == OVERLOAD
)
705 if (!bool (want
& LOOK_want::HIDDEN_FRIEND
))
706 probe
= ovl_skip_hidden (probe
);
707 if (probe
&& TREE_CODE (probe
) == OVERLOAD
708 && OVL_DEDUP_P (probe
))
709 /* We're about to add something found by multiple paths, so need to
710 engage deduping mode. */
714 value
= lookup_maybe_add (fns
, value
, deduping
);
717 /* Add a NEW_VAL, a found value binding into the current value binding. */
720 name_lookup::add_value (tree new_val
)
722 if (OVL_P (new_val
) && (!value
|| OVL_P (value
)))
723 add_overload (new_val
);
726 else if (value
== new_val
)
728 else if ((TREE_CODE (value
) == TYPE_DECL
729 && TREE_CODE (new_val
) == TYPE_DECL
730 && same_type_p (TREE_TYPE (value
), TREE_TYPE (new_val
))))
731 /* Typedefs to the same type. */;
732 else if (TREE_CODE (value
) == NAMESPACE_DECL
733 && TREE_CODE (new_val
) == NAMESPACE_DECL
734 && ORIGINAL_NAMESPACE (value
) == ORIGINAL_NAMESPACE (new_val
))
735 /* Namespace (possibly aliased) to the same namespace. Locate
737 value
= ORIGINAL_NAMESPACE (value
);
740 /* Disengage deduping mode. */
742 value
= ambiguous (new_val
, value
);
746 /* Add a NEW_TYPE, a found type binding into the current type binding. */
749 name_lookup::add_type (tree new_type
)
753 else if (TREE_CODE (type
) == TREE_LIST
754 || !same_type_p (TREE_TYPE (type
), TREE_TYPE (new_type
)))
755 type
= ambiguous (new_type
, type
);
758 /* Process a found binding containing NEW_VAL and NEW_TYPE. Returns
759 true if we actually found something noteworthy. Hiddenness has
760 already been handled in the caller. */
763 name_lookup::process_binding (tree new_val
, tree new_type
)
765 /* Did we really see a type? */
767 && (want
& LOOK_want::TYPE_NAMESPACE
) == LOOK_want::NAMESPACE
)
768 new_type
= NULL_TREE
;
770 /* Do we really see a value? */
772 switch (TREE_CODE (new_val
))
775 /* If we expect types or namespaces, and not templates,
776 or this is not a template class. */
777 if (bool (want
& LOOK_want::TYPE_NAMESPACE
)
778 && !DECL_TYPE_TEMPLATE_P (new_val
))
782 if ((want
& LOOK_want::TYPE_NAMESPACE
) == LOOK_want::NAMESPACE
783 || (new_type
&& bool (want
& LOOK_want::TYPE
)))
787 if ((want
& LOOK_want::TYPE_NAMESPACE
) == LOOK_want::TYPE
)
791 if (bool (want
& LOOK_want::TYPE_NAMESPACE
))
798 new_type
= NULL_TREE
;
801 /* Merge into the lookup */
807 return new_val
!= NULL_TREE
;
810 /* If we're importing a module containing this binding, add it to the
811 lookup set. The trickiness is with namespaces, we only want to
815 name_lookup::process_module_binding (tree new_val
, tree new_type
,
818 /* Optimize for (re-)finding a public namespace. We only need to
820 if (new_val
&& !new_type
821 && TREE_CODE (new_val
) == NAMESPACE_DECL
822 && TREE_PUBLIC (new_val
)
823 && !DECL_NAMESPACE_ALIAS (new_val
))
830 if (new_type
|| new_val
)
831 marker
|= process_binding (new_val
, new_type
);
836 /* Look in exactly namespace SCOPE. */
839 name_lookup::search_namespace_only (tree scope
)
842 if (tree
*binding
= find_namespace_slot (scope
, name
))
845 if (TREE_CODE (val
) == BINDING_VECTOR
)
847 /* I presume the binding list is going to be sparser than
848 the import bitmap. Hence iterate over the former
849 checking for bits set in the bitmap. */
850 bitmap imports
= get_import_bitmap ();
851 binding_cluster
*cluster
= BINDING_VECTOR_CLUSTER_BASE (val
);
855 if (tree bind
= cluster
->slots
[BINDING_SLOT_CURRENT
])
859 if (named_module_purview_p ())
863 if (STAT_HACK_P (bind
) && MODULE_BINDING_GLOBAL_P (bind
))
869 tree type
= NULL_TREE
;
872 if (STAT_HACK_P (bind
))
874 type
= STAT_TYPE (bind
);
875 value
= STAT_DECL (bind
);
877 if (!bool (want
& LOOK_want::HIDDEN_FRIEND
))
879 if (STAT_TYPE_HIDDEN_P (bind
))
881 if (STAT_DECL_HIDDEN_P (bind
))
884 value
= ovl_skip_hidden (value
);
887 else if (!bool (want
& LOOK_want::HIDDEN_FRIEND
))
888 value
= ovl_skip_hidden (value
);
890 marker
= process_module_binding (value
, type
, marker
);
893 /* Scan the imported bindings. */
894 unsigned ix
= BINDING_VECTOR_NUM_CLUSTERS (val
);
895 if (BINDING_VECTOR_SLOTS_PER_CLUSTER
== BINDING_SLOTS_FIXED
)
901 /* Do this in forward order, so we load modules in an order
903 for (; ix
--; cluster
++)
904 for (unsigned jx
= 0; jx
!= BINDING_VECTOR_SLOTS_PER_CLUSTER
; jx
++)
906 /* Are we importing this module? */
907 if (unsigned base
= cluster
->indices
[jx
].base
)
908 if (unsigned span
= cluster
->indices
[jx
].span
)
910 if (bitmap_bit_p (imports
, base
))
912 while (++base
, --span
);
917 if (cluster
->slots
[jx
].is_lazy ())
919 gcc_assert (cluster
->indices
[jx
].span
== 1);
920 lazy_load_binding (cluster
->indices
[jx
].base
,
921 scope
, name
, &cluster
->slots
[jx
]);
923 tree bind
= cluster
->slots
[jx
];
925 /* Load errors could mean there's nothing here. */
928 /* Extract what we can see from here. If there's no
929 stat_hack, then everything was exported. */
930 tree type
= NULL_TREE
;
933 /* If STAT_HACK_P is false, everything is visible, and
934 there's no duplication possibilities. */
935 if (STAT_HACK_P (bind
))
939 /* Do we need to engage deduplication? */
941 if (MODULE_BINDING_GLOBAL_P (bind
))
943 else if (MODULE_BINDING_PARTITION_P (bind
))
945 if (unsigned hit
= dup_detect
& dup
)
947 if ((hit
& 1 && BINDING_VECTOR_GLOBAL_DUPS_P (val
))
949 && BINDING_VECTOR_PARTITION_DUPS_P (val
)))
955 if (STAT_TYPE_VISIBLE_P (bind
))
956 type
= STAT_TYPE (bind
);
957 bind
= STAT_VISIBLE (bind
);
960 /* And process it. */
961 marker
= process_module_binding (bind
, type
, marker
);
967 /* Only a current module binding, visible from the current module. */
968 tree bind
= *binding
;
969 tree value
= bind
, type
= NULL_TREE
;
971 if (STAT_HACK_P (bind
))
973 type
= STAT_TYPE (bind
);
974 value
= STAT_DECL (bind
);
976 if (!bool (want
& LOOK_want::HIDDEN_FRIEND
))
978 if (STAT_TYPE_HIDDEN_P (bind
))
980 if (STAT_DECL_HIDDEN_P (bind
))
983 value
= ovl_skip_hidden (value
);
986 else if (!bool (want
& LOOK_want::HIDDEN_FRIEND
))
987 value
= ovl_skip_hidden (value
);
989 found
|= process_binding (value
, type
);
996 /* Conditionally look in namespace SCOPE and inline children. */
999 name_lookup::search_namespace (tree scope
)
1001 if (see_and_mark (scope
))
1002 /* We've visited this scope before. Return what we found then. */
1003 return found_p (scope
);
1005 /* Look in exactly namespace. */
1006 bool found
= search_namespace_only (scope
);
1008 /* Don't look into inline children, if we're looking for an
1009 anonymous name -- it must be in the current scope, if anywhere. */
1011 /* Recursively look in its inline children. */
1012 if (vec
<tree
, va_gc
> *inlinees
= DECL_NAMESPACE_INLINEES (scope
))
1013 for (unsigned ix
= inlinees
->length (); ix
--;)
1014 found
|= search_namespace ((*inlinees
)[ix
]);
1022 /* Recursively follow using directives of SCOPE & its inline children.
1023 Such following is essentially a flood-fill algorithm. */
1026 name_lookup::search_usings (tree scope
)
1028 /* We do not check seen_p here, as that was already set during the
1029 namespace_only walk. */
1030 if (found_p (scope
))
1034 if (vec
<tree
, va_gc
> *usings
= NAMESPACE_LEVEL (scope
)->using_directives
)
1035 for (unsigned ix
= usings
->length (); ix
--;)
1036 found
|= search_qualified ((*usings
)[ix
], true);
1038 /* Look in its inline children. */
1039 if (vec
<tree
, va_gc
> *inlinees
= DECL_NAMESPACE_INLINEES (scope
))
1040 for (unsigned ix
= inlinees
->length (); ix
--;)
1041 found
|= search_usings ((*inlinees
)[ix
]);
1049 /* Qualified namespace lookup in SCOPE.
1050 1) Look in SCOPE (+inlines). If found, we're done.
1051 2) Otherwise, if USINGS is true,
1052 recurse for every using directive of SCOPE (+inlines).
1054 Trickiness is (a) loops and (b) multiple paths to same namespace.
1055 In both cases we want to not repeat any lookups, and know whether
1056 to stop the caller's step #2. Do this via the FOUND_P marker. */
1059 name_lookup::search_qualified (tree scope
, bool usings
)
1064 found
= found_p (scope
);
1067 found
= search_namespace (scope
);
1068 if (!found
&& usings
)
1069 found
= search_usings (scope
);
1077 /* Add SCOPE to the unqualified search queue, recursively add its
1078 inlines and those via using directives. */
1081 name_lookup::queue_namespace (using_queue
& queue
, int depth
, tree scope
)
1083 if (see_and_mark (scope
))
1087 tree common
= scope
;
1088 while (SCOPE_DEPTH (common
) > depth
)
1089 common
= CP_DECL_CONTEXT (common
);
1090 queue
.safe_push (using_pair (common
, scope
));
1092 /* Queue its inline children. */
1093 if (vec
<tree
, va_gc
> *inlinees
= DECL_NAMESPACE_INLINEES (scope
))
1094 for (unsigned ix
= inlinees
->length (); ix
--;)
1095 queue_namespace (queue
, depth
, (*inlinees
)[ix
]);
1097 /* Queue its using targets. */
1098 queue_usings (queue
, depth
, NAMESPACE_LEVEL (scope
)->using_directives
);
1101 /* Add the namespaces in USINGS to the unqualified search queue. */
1104 name_lookup::queue_usings (using_queue
& queue
, int depth
, vec
<tree
, va_gc
> *usings
)
1107 for (unsigned ix
= usings
->length (); ix
--;)
1108 queue_namespace (queue
, depth
, (*usings
)[ix
]);
1111 /* Unqualified namespace lookup in SCOPE.
1112 1) add scope+inlins to worklist.
1113 2) recursively add target of every using directive
1114 3) for each worklist item where SCOPE is common ancestor, search it
1115 4) if nothing find, scope=parent, goto 1. */
1118 name_lookup::search_unqualified (tree scope
, cp_binding_level
*level
)
1123 /* Queue local using-directives. */
1124 for (; level
->kind
!= sk_namespace
; level
= level
->level_chain
)
1125 queue_usings (queue
, SCOPE_DEPTH (scope
), level
->using_directives
);
1127 for (; !found
; scope
= CP_DECL_CONTEXT (scope
))
1129 gcc_assert (!DECL_NAMESPACE_ALIAS (scope
));
1130 int depth
= SCOPE_DEPTH (scope
);
1132 /* Queue namespaces reachable from SCOPE. */
1133 queue_namespace (queue
, depth
, scope
);
1135 /* Search every queued namespace where SCOPE is the common
1136 ancestor. Adjust the others. */
1140 using_pair
&pair
= queue
[ix
];
1141 while (pair
.first
== scope
)
1143 found
|= search_namespace_only (pair
.second
);
1144 pair
= queue
.pop ();
1145 if (ix
== queue
.length ())
1148 /* The depth is the same as SCOPE, find the parent scope. */
1149 if (SCOPE_DEPTH (pair
.first
) == depth
)
1150 pair
.first
= CP_DECL_CONTEXT (pair
.first
);
1153 while (ix
< queue
.length ());
1155 if (scope
== global_namespace
)
1158 /* If looking for hidden friends, we only look in the innermost
1159 namespace scope. [namespace.memdef]/3 If a friend
1160 declaration in a non-local class first declares a class,
1161 function, class template or function template the friend is a
1162 member of the innermost enclosing namespace. See also
1163 [basic.lookup.unqual]/7 */
1164 if (bool (want
& LOOK_want::HIDDEN_FRIEND
))
1173 /* FNS is a value binding. If it is a (set of overloaded) functions,
1174 add them into the current value. */
1177 name_lookup::add_fns (tree fns
)
1181 else if (TREE_CODE (fns
) == OVERLOAD
)
1183 if (TREE_TYPE (fns
) != unknown_type_node
)
1184 fns
= OVL_FUNCTION (fns
);
1186 else if (!DECL_DECLARES_FUNCTION_P (fns
))
1192 /* Add the overloaded fns of SCOPE. */
1195 name_lookup::adl_namespace_fns (tree scope
, bitmap imports
)
1197 if (tree
*binding
= find_namespace_slot (scope
, name
))
1199 tree val
= *binding
;
1200 if (TREE_CODE (val
) != BINDING_VECTOR
)
1201 add_fns (ovl_skip_hidden (MAYBE_STAT_DECL (val
)));
1204 /* I presume the binding list is going to be sparser than
1205 the import bitmap. Hence iterate over the former
1206 checking for bits set in the bitmap. */
1207 binding_cluster
*cluster
= BINDING_VECTOR_CLUSTER_BASE (val
);
1210 if (tree bind
= cluster
->slots
[BINDING_SLOT_CURRENT
])
1212 /* The current TU's bindings must be visible, we don't
1213 need to check the bitmaps. */
1217 if (named_module_purview_p ())
1221 if (STAT_HACK_P (bind
) && MODULE_BINDING_GLOBAL_P (bind
))
1228 add_fns (ovl_skip_hidden (MAYBE_STAT_DECL (bind
)));
1231 /* Scan the imported bindings. */
1232 unsigned ix
= BINDING_VECTOR_NUM_CLUSTERS (val
);
1233 if (BINDING_VECTOR_SLOTS_PER_CLUSTER
== BINDING_SLOTS_FIXED
)
1239 /* Do this in forward order, so we load modules in an order
1240 the user expects. */
1241 for (; ix
--; cluster
++)
1242 for (unsigned jx
= 0; jx
!= BINDING_VECTOR_SLOTS_PER_CLUSTER
; jx
++)
1244 /* Functions are never on merged slots. */
1245 if (!cluster
->indices
[jx
].base
1246 || cluster
->indices
[jx
].span
!= 1)
1249 /* Is this slot visible? */
1250 if (!bitmap_bit_p (imports
, cluster
->indices
[jx
].base
))
1254 if (cluster
->slots
[jx
].is_lazy ())
1255 lazy_load_binding (cluster
->indices
[jx
].base
,
1256 scope
, name
, &cluster
->slots
[jx
]);
1258 tree bind
= cluster
->slots
[jx
];
1260 /* Load errors could mean there's nothing here. */
1263 if (STAT_HACK_P (bind
))
1267 /* Do we need to engage deduplication? */
1269 if (MODULE_BINDING_GLOBAL_P (bind
))
1271 else if (MODULE_BINDING_PARTITION_P (bind
))
1273 if (unsigned hit
= dup_detect
& dup
)
1274 if ((hit
& 1 && BINDING_VECTOR_GLOBAL_DUPS_P (val
))
1276 && BINDING_VECTOR_PARTITION_DUPS_P (val
)))
1281 bind
= STAT_VISIBLE (bind
);
1290 /* Add the hidden friends of SCOPE. */
1293 name_lookup::adl_class_fns (tree type
)
1296 for (tree list
= DECL_FRIENDLIST (TYPE_MAIN_DECL (type
));
1297 list
; list
= TREE_CHAIN (list
))
1298 if (name
== FRIEND_NAME (list
))
1300 tree context
= NULL_TREE
; /* Lazily computed. */
1301 for (tree friends
= FRIEND_DECLS (list
); friends
;
1302 friends
= TREE_CHAIN (friends
))
1304 tree fn
= TREE_VALUE (friends
);
1306 /* Only interested in global functions with potentially hidden
1307 (i.e. unqualified) declarations. */
1309 context
= decl_namespace_context (type
);
1310 if (CP_DECL_CONTEXT (fn
) != context
)
1315 /* Template specializations are never found by name lookup.
1316 (Templates themselves can be found, but not template
1317 specializations.) */
1318 if (TREE_CODE (fn
) == FUNCTION_DECL
&& DECL_USE_TEMPLATE (fn
))
1326 /* Find the containing non-inlined namespace, add it and all its
1330 name_lookup::adl_namespace (tree scope
)
1332 if (see_and_mark (scope
))
1335 /* Look down into inline namespaces. */
1336 if (vec
<tree
, va_gc
> *inlinees
= DECL_NAMESPACE_INLINEES (scope
))
1337 for (unsigned ix
= inlinees
->length (); ix
--;)
1338 adl_namespace ((*inlinees
)[ix
]);
1340 if (DECL_NAMESPACE_INLINE_P (scope
))
1342 adl_namespace (CP_DECL_CONTEXT (scope
));
1345 /* Adds the class and its friends to the lookup structure. */
1348 name_lookup::adl_class_only (tree type
)
1350 /* Backend-built structures, such as __builtin_va_list, aren't
1351 affected by all this. */
1352 if (!CLASS_TYPE_P (type
))
1355 type
= TYPE_MAIN_VARIANT (type
);
1357 if (see_and_mark (type
))
1360 tree context
= decl_namespace_context (type
);
1361 adl_namespace (context
);
1364 /* Adds the class and its bases to the lookup structure.
1365 Returns true on error. */
1368 name_lookup::adl_bases (tree type
)
1370 adl_class_only (type
);
1372 /* Process baseclasses. */
1373 if (tree binfo
= TYPE_BINFO (type
))
1378 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
1379 adl_bases (BINFO_TYPE (base_binfo
));
1383 /* Adds everything associated with a class argument type to the lookup
1386 If T is a class type (including unions), its associated classes are: the
1387 class itself; the class of which it is a member, if any; and its direct
1388 and indirect base classes. Its associated namespaces are the namespaces
1389 of which its associated classes are members. Furthermore, if T is a
1390 class template specialization, its associated namespaces and classes
1391 also include: the namespaces and classes associated with the types of
1392 the template arguments provided for template type parameters (excluding
1393 template template parameters); the namespaces of which any template
1394 template arguments are members; and the classes of which any member
1395 templates used as template template arguments are members. [ Note:
1396 non-type template arguments do not contribute to the set of associated
1397 namespaces. --end note] */
1400 name_lookup::adl_class (tree type
)
1402 /* Backend build structures, such as __builtin_va_list, aren't
1403 affected by all this. */
1404 if (!CLASS_TYPE_P (type
))
1407 type
= TYPE_MAIN_VARIANT (type
);
1409 /* We don't set found here because we have to have set seen first,
1410 which is done in the adl_bases walk. */
1414 complete_type (type
);
1418 if (TYPE_CLASS_SCOPE_P (type
))
1419 adl_class_only (TYPE_CONTEXT (type
));
1421 /* Process template arguments. */
1422 if (CLASSTYPE_TEMPLATE_INFO (type
)
1423 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type
)))
1425 tree list
= INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type
));
1426 for (int i
= 0; i
< TREE_VEC_LENGTH (list
); ++i
)
1427 adl_template_arg (TREE_VEC_ELT (list
, i
));
1432 name_lookup::adl_enum (tree type
)
1434 type
= TYPE_MAIN_VARIANT (type
);
1435 if (see_and_mark (type
))
1438 if (TYPE_CLASS_SCOPE_P (type
))
1439 adl_class_only (TYPE_CONTEXT (type
));
1441 adl_namespace (decl_namespace_context (type
));
1445 name_lookup::adl_expr (tree expr
)
1450 gcc_assert (!TYPE_P (expr
));
1452 if (TREE_TYPE (expr
) != unknown_type_node
)
1454 adl_type (unlowered_expr_type (expr
));
1458 if (TREE_CODE (expr
) == ADDR_EXPR
)
1459 expr
= TREE_OPERAND (expr
, 0);
1460 if (TREE_CODE (expr
) == COMPONENT_REF
1461 || TREE_CODE (expr
) == OFFSET_REF
)
1462 expr
= TREE_OPERAND (expr
, 1);
1463 expr
= MAYBE_BASELINK_FUNCTIONS (expr
);
1466 for (lkp_iterator
iter (expr
); iter
; ++iter
)
1467 adl_type (TREE_TYPE (*iter
));
1468 else if (TREE_CODE (expr
) == TEMPLATE_ID_EXPR
)
1470 /* The working paper doesn't currently say how to handle
1471 template-id arguments. The sensible thing would seem to be
1472 to handle the list of template candidates like a normal
1473 overload set, and handle the template arguments like we do
1474 for class template specializations. */
1476 /* First the templates. */
1477 adl_expr (TREE_OPERAND (expr
, 0));
1479 /* Now the arguments. */
1480 if (tree args
= TREE_OPERAND (expr
, 1))
1481 for (int ix
= TREE_VEC_LENGTH (args
); ix
--;)
1482 adl_template_arg (TREE_VEC_ELT (args
, ix
));
1487 name_lookup::adl_type (tree type
)
1492 if (TYPE_PTRDATAMEM_P (type
))
1494 /* Pointer to member: associate class type and value type. */
1495 adl_type (TYPE_PTRMEM_CLASS_TYPE (type
));
1496 adl_type (TYPE_PTRMEM_POINTED_TO_TYPE (type
));
1500 switch (TREE_CODE (type
))
1503 if (TYPE_PTRMEMFUNC_P (type
))
1505 adl_type (TYPE_PTRMEMFUNC_FN_TYPE (type
));
1514 /* The basetype is referenced in the first arg type, so just
1517 /* Associate the parameter types. */
1518 for (tree args
= TYPE_ARG_TYPES (type
); args
; args
= TREE_CHAIN (args
))
1519 adl_type (TREE_VALUE (args
));
1523 case REFERENCE_TYPE
:
1525 adl_type (TREE_TYPE (type
));
1533 gcc_assert (type
== unknown_type_node
1534 || type
== init_list_type_node
);
1537 case TYPE_PACK_EXPANSION
:
1538 adl_type (PACK_EXPANSION_PATTERN (type
));
1546 /* Adds everything associated with a template argument to the lookup
1550 name_lookup::adl_template_arg (tree arg
)
1552 /* [basic.lookup.koenig]
1554 If T is a template-id, its associated namespaces and classes are
1555 ... the namespaces and classes associated with the types of the
1556 template arguments provided for template type parameters
1557 (excluding template template parameters); the namespaces in which
1558 any template template arguments are defined; and the classes in
1559 which any member templates used as template template arguments
1560 are defined. [Note: non-type template arguments do not
1561 contribute to the set of associated namespaces. ] */
1563 /* Consider first template template arguments. */
1564 if (TREE_CODE (arg
) == TEMPLATE_TEMPLATE_PARM
1565 || TREE_CODE (arg
) == UNBOUND_CLASS_TEMPLATE
)
1567 else if (TREE_CODE (arg
) == TEMPLATE_DECL
)
1569 tree ctx
= CP_DECL_CONTEXT (arg
);
1571 /* It's not a member template. */
1572 if (TREE_CODE (ctx
) == NAMESPACE_DECL
)
1573 adl_namespace (ctx
);
1574 /* Otherwise, it must be member template. */
1576 adl_class_only (ctx
);
1578 /* It's an argument pack; handle it recursively. */
1579 else if (ARGUMENT_PACK_P (arg
))
1581 tree args
= ARGUMENT_PACK_ARGS (arg
);
1582 int i
, len
= TREE_VEC_LENGTH (args
);
1583 for (i
= 0; i
< len
; ++i
)
1584 adl_template_arg (TREE_VEC_ELT (args
, i
));
1586 /* It's not a template template argument, but it is a type template
1588 else if (TYPE_P (arg
))
1592 /* Perform ADL lookup. FNS is the existing lookup result and ARGS are
1593 the call arguments. */
1596 name_lookup::search_adl (tree fns
, vec
<tree
, va_gc
> *args
)
1598 gcc_checking_assert (!vec_safe_length (scopes
));
1600 /* Gather each associated entity onto the lookup's scope list. */
1604 FOR_EACH_VEC_ELT_REVERSE (*args
, ix
, arg
)
1605 /* OMP reduction operators put an ADL-significant type as the
1612 if (vec_safe_length (scopes
))
1614 /* Now do the lookups. */
1619 /* INST_PATH will be NULL, if this is /not/ 2nd-phase ADL. */
1620 bitmap inst_path
= NULL
;
1621 /* VISIBLE is the regular import bitmap. */
1622 bitmap visible
= visible_instantiation_path (&inst_path
);
1624 for (unsigned ix
= scopes
->length (); ix
--;)
1626 tree scope
= (*scopes
)[ix
];
1627 if (TREE_CODE (scope
) == NAMESPACE_DECL
)
1628 adl_namespace_fns (scope
, visible
);
1631 if (RECORD_OR_UNION_TYPE_P (scope
))
1632 adl_class_fns (scope
);
1634 /* During 2nd phase ADL: Any exported declaration D in N
1635 declared within the purview of a named module M
1636 (10.2) is visible if there is an associated entity
1637 attached to M with the same innermost enclosing
1638 non-inline namespace as D.
1639 [basic.lookup.argdep]/4.4 */
1642 /* Not 2nd phase. */
1645 tree ctx
= CP_DECL_CONTEXT (TYPE_NAME (scope
));
1646 if (TREE_CODE (ctx
) != NAMESPACE_DECL
)
1647 /* Not namespace-scope class. */
1650 tree origin
= get_originating_module_decl (TYPE_NAME (scope
));
1651 tree not_tmpl
= STRIP_TEMPLATE (origin
);
1652 if (!DECL_LANG_SPECIFIC (not_tmpl
)
1653 || !DECL_MODULE_IMPORT_P (not_tmpl
))
1657 unsigned module
= get_importing_module (origin
);
1659 if (!bitmap_bit_p (inst_path
, module
))
1660 /* Not on path of instantiation. */
1663 if (bitmap_bit_p (visible
, module
))
1664 /* If the module was in the visible set, we'll look at
1665 its namespace partition anyway. */
1668 if (tree
*slot
= find_namespace_slot (ctx
, name
, false))
1669 if (binding_slot
*mslot
= search_imported_binding_slot (slot
, module
))
1671 if (mslot
->is_lazy ())
1672 lazy_load_binding (module
, ctx
, name
, mslot
);
1674 if (tree bind
= *mslot
)
1676 /* We must turn on deduping, because some other class
1677 from this module might also be in this namespace. */
1680 /* Add the exported fns */
1681 if (STAT_HACK_P (bind
))
1682 add_fns (STAT_VISIBLE (bind
));
1695 static bool qualified_namespace_lookup (tree
, name_lookup
*);
1696 static void consider_binding_level (tree name
,
1697 best_match
<tree
, const char *> &bm
,
1698 cp_binding_level
*lvl
,
1699 bool look_within_fields
,
1700 enum lookup_name_fuzzy_kind kind
);
1702 /* ADL lookup of NAME. FNS is the result of regular lookup, and we
1703 don't add duplicates to it. ARGS is the vector of call
1704 arguments (which will not be empty). */
1707 lookup_arg_dependent (tree name
, tree fns
, vec
<tree
, va_gc
> *args
)
1709 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
1710 name_lookup
lookup (name
);
1711 return lookup
.search_adl (fns
, args
);
1714 /* FNS is an overload set of conversion functions. Return the
1715 overloads converting to TYPE. */
1718 extract_conversion_operator (tree fns
, tree type
)
1720 tree convs
= NULL_TREE
;
1721 tree tpls
= NULL_TREE
;
1723 for (ovl_iterator
iter (fns
); iter
; ++iter
)
1725 if (same_type_p (DECL_CONV_FN_TYPE (*iter
), type
))
1726 convs
= lookup_add (*iter
, convs
);
1728 if (TREE_CODE (*iter
) == TEMPLATE_DECL
)
1729 tpls
= lookup_add (*iter
, tpls
);
1738 /* Binary search of (ordered) MEMBER_VEC for NAME. */
1741 member_vec_binary_search (vec
<tree
, va_gc
> *member_vec
, tree name
)
1743 for (unsigned lo
= 0, hi
= member_vec
->length (); lo
< hi
;)
1745 unsigned mid
= (lo
+ hi
) / 2;
1746 tree binding
= (*member_vec
)[mid
];
1747 tree binding_name
= OVL_NAME (binding
);
1749 if (binding_name
> name
)
1751 else if (binding_name
< name
)
1760 /* Linear search of (unordered) MEMBER_VEC for NAME. */
1763 member_vec_linear_search (vec
<tree
, va_gc
> *member_vec
, tree name
)
1765 for (int ix
= member_vec
->length (); ix
--;)
1766 if (tree binding
= (*member_vec
)[ix
])
1767 if (OVL_NAME (binding
) == name
)
1773 /* Linear search of (partially ordered) fields of KLASS for NAME. */
1776 fields_linear_search (tree klass
, tree name
, bool want_type
)
1778 for (tree fields
= TYPE_FIELDS (klass
); fields
; fields
= DECL_CHAIN (fields
))
1782 if (TREE_CODE (decl
) == FIELD_DECL
1783 && ANON_AGGR_TYPE_P (TREE_TYPE (decl
)))
1785 if (tree temp
= search_anon_aggr (TREE_TYPE (decl
), name
, want_type
))
1789 if (DECL_NAME (decl
) != name
)
1792 if (TREE_CODE (decl
) == USING_DECL
)
1794 decl
= strip_using_decl (decl
);
1795 if (is_overloaded_fn (decl
))
1799 if (DECL_DECLARES_FUNCTION_P (decl
))
1800 /* Functions are found separately. */
1803 if (!want_type
|| DECL_DECLARES_TYPE_P (decl
))
1810 /* Like fields_linear_search, but specific for "_" name. There can be multiple
1811 name-independent non-static data members and in that case a TREE_LIST with the
1812 ambiguous decls should be returned. */
1815 name_independent_linear_search (tree val
, tree klass
, tree name
)
1817 for (tree fields
= TYPE_FIELDS (klass
); fields
; fields
= DECL_CHAIN (fields
))
1821 if (TREE_CODE (decl
) == FIELD_DECL
1822 && ANON_AGGR_TYPE_P (TREE_TYPE (decl
)))
1824 if (tree temp
= search_anon_aggr (TREE_TYPE (decl
), name
, false))
1831 if (DECL_NAME (decl
) != name
)
1834 if (TREE_CODE (decl
) == USING_DECL
)
1836 decl
= strip_using_decl (decl
);
1837 if (is_overloaded_fn (decl
))
1841 if (DECL_DECLARES_FUNCTION_P (decl
))
1842 /* Functions are found separately. */
1846 if (val
== NULL_TREE
)
1850 if (TREE_CODE (val
) != TREE_LIST
)
1852 if (TREE_CODE (val
) == OVERLOAD
1853 && OVL_DEDUP_P (val
)
1854 && TREE_CODE (decl
) == USING_DECL
)
1856 val
= ovl_make (decl
, val
);
1859 val
= tree_cons (NULL_TREE
, val
, NULL_TREE
);
1860 TREE_TYPE (val
) = error_mark_node
;
1862 if (TREE_CODE (decl
) == TREE_LIST
)
1863 val
= chainon (decl
, val
);
1866 val
= tree_cons (NULL_TREE
, decl
, val
);
1867 TREE_TYPE (val
) = error_mark_node
;
1875 /* Look for NAME member inside of anonymous aggregate ANON. Although
1876 such things should only contain FIELD_DECLs, we check that too
1877 late, and would give very confusing errors if we weren't
1881 search_anon_aggr (tree anon
, tree name
, bool want_type
)
1883 gcc_assert (COMPLETE_TYPE_P (anon
));
1884 tree ret
= get_class_binding_direct (anon
, name
, want_type
);
1888 /* Look for NAME as an immediate member of KLASS (including
1889 anon-members or unscoped enum member). TYPE_OR_FNS is zero for
1890 regular search. >0 to get a type binding (if there is one) and <0
1891 if you want (just) the member function binding.
1893 Use this if you do not want lazy member creation. */
1896 get_class_binding_direct (tree klass
, tree name
, bool want_type
)
1898 gcc_checking_assert (RECORD_OR_UNION_TYPE_P (klass
));
1900 /* Conversion operators can only be found by the marker conversion
1902 bool conv_op
= IDENTIFIER_CONV_OP_P (name
);
1903 tree lookup
= conv_op
? conv_op_identifier
: name
;
1904 tree val
= NULL_TREE
;
1905 vec
<tree
, va_gc
> *member_vec
= CLASSTYPE_MEMBER_VEC (klass
);
1907 if (COMPLETE_TYPE_P (klass
) && member_vec
)
1909 val
= member_vec_binary_search (member_vec
, lookup
);
1912 else if (TREE_CODE (val
) == OVERLOAD
1913 && OVL_NAME_INDEPENDENT_DECL_P (val
))
1917 while (TREE_CODE (val
) == OVERLOAD
1918 && OVL_NAME_INDEPENDENT_DECL_P (val
))
1919 val
= OVL_CHAIN (val
);
1920 if (STAT_HACK_P (val
))
1921 val
= STAT_TYPE (val
);
1922 else if (!DECL_DECLARES_TYPE_P (val
))
1927 /* OVERLOAD with a special OVL_NAME_INDEPENDENT_DECL_P
1928 flag is used under the hood to represent lookup
1929 results which include name-independent declarations,
1930 and get_class_binding_direct is turning that into
1931 TREE_LIST representation (which the callers expect for
1932 ambiguous lookups) instead.
1933 There are 2 reasons for that:
1934 1) in order to keep the member_vec binary search fast, I
1935 think it is better to keep OVL_NAME usable on all elements
1936 because having to special case TREE_LIST would slow
1938 2) the callers need to be able to chain the results anyway
1939 and so need an unshared TREE_LIST they can tweak/destroy. */
1942 while (TREE_CODE (ovl
) == OVERLOAD
1943 && OVL_NAME_INDEPENDENT_DECL_P (ovl
))
1945 val
= tree_cons (NULL_TREE
, OVL_FUNCTION (ovl
), val
);
1946 TREE_TYPE (val
) = error_mark_node
;
1947 ovl
= OVL_CHAIN (ovl
);
1949 if (STAT_HACK_P (ovl
))
1950 val
= tree_cons (NULL_TREE
, STAT_DECL (ovl
), val
);
1952 val
= tree_cons (NULL_TREE
, ovl
, val
);
1953 TREE_TYPE (val
) = error_mark_node
;
1956 else if (STAT_HACK_P (val
))
1957 val
= want_type
? STAT_TYPE (val
) : STAT_DECL (val
);
1958 else if (want_type
&& !DECL_DECLARES_TYPE_P (val
))
1963 if (member_vec
&& !want_type
)
1964 val
= member_vec_linear_search (member_vec
, lookup
);
1966 if (id_equal (lookup
, "_") && !want_type
)
1967 val
= name_independent_linear_search (val
, klass
, lookup
);
1968 else if (!val
|| (TREE_CODE (val
) == OVERLOAD
&& OVL_DEDUP_P (val
)))
1969 /* Dependent using declarations are a 'field', make sure we
1970 return that even if we saw an overload already. */
1971 if (tree field_val
= fields_linear_search (klass
, lookup
, want_type
))
1975 else if (TREE_CODE (field_val
) == USING_DECL
)
1976 val
= ovl_make (field_val
, val
);
1980 /* Extract the conversion operators asked for, unless the general
1981 conversion operator was requested. */
1984 gcc_checking_assert (OVL_FUNCTION (val
) == conv_op_marker
);
1985 val
= OVL_CHAIN (val
);
1986 if (tree type
= TREE_TYPE (name
))
1987 val
= extract_conversion_operator (val
, type
);
1993 /* We're about to lookup NAME in KLASS. Make sure any lazily declared
1994 members are now declared. */
1997 maybe_lazily_declare (tree klass
, tree name
)
1999 /* See big comment anout module_state::write_pendings regarding adding a check
2002 lazy_load_pendings (TYPE_NAME (klass
));
2004 /* Lazily declare functions, if we're going to search these. */
2005 if (IDENTIFIER_CTOR_P (name
))
2007 if (CLASSTYPE_LAZY_DEFAULT_CTOR (klass
))
2008 lazily_declare_fn (sfk_constructor
, klass
);
2009 if (CLASSTYPE_LAZY_COPY_CTOR (klass
))
2010 lazily_declare_fn (sfk_copy_constructor
, klass
);
2011 if (CLASSTYPE_LAZY_MOVE_CTOR (klass
))
2012 lazily_declare_fn (sfk_move_constructor
, klass
);
2014 else if (IDENTIFIER_DTOR_P (name
))
2016 if (CLASSTYPE_LAZY_DESTRUCTOR (klass
))
2017 lazily_declare_fn (sfk_destructor
, klass
);
2019 else if (name
== assign_op_identifier
)
2021 if (CLASSTYPE_LAZY_COPY_ASSIGN (klass
))
2022 lazily_declare_fn (sfk_copy_assignment
, klass
);
2023 if (CLASSTYPE_LAZY_MOVE_ASSIGN (klass
))
2024 lazily_declare_fn (sfk_move_assignment
, klass
);
2028 /* Look for NAME's binding in exactly KLASS. See
2029 get_class_binding_direct for argument description. Does lazy
2030 special function creation as necessary. */
2033 get_class_binding (tree klass
, tree name
, bool want_type
/*=false*/)
2035 klass
= complete_type (klass
);
2037 if (COMPLETE_TYPE_P (klass
))
2038 maybe_lazily_declare (klass
, name
);
2040 return get_class_binding_direct (klass
, name
, want_type
);
2043 /* Find the slot containing overloads called 'NAME'. If there is no
2044 such slot and the class is complete, create an empty one, at the
2045 correct point in the sorted member vector. Otherwise return NULL.
2046 Deals with conv_op marker handling. */
2049 find_member_slot (tree klass
, tree name
)
2051 bool complete_p
= COMPLETE_TYPE_P (klass
);
2053 vec
<tree
, va_gc
> *member_vec
= CLASSTYPE_MEMBER_VEC (klass
);
2056 vec_alloc (member_vec
, 8);
2057 CLASSTYPE_MEMBER_VEC (klass
) = member_vec
;
2059 /* If the class is complete but had no member_vec, we need to
2060 add the TYPE_FIELDS into it. We're also most likely to be
2061 adding ctors & dtors, so ask for 6 spare slots (the
2062 abstract cdtors and their clones). */
2063 member_vec
= set_class_bindings (klass
, 6);
2066 if (IDENTIFIER_CONV_OP_P (name
))
2067 name
= conv_op_identifier
;
2069 unsigned ix
, length
= member_vec
->length ();
2070 for (ix
= 0; ix
< length
; ix
++)
2072 tree
*slot
= &(*member_vec
)[ix
];
2073 tree fn_name
= OVL_NAME (*slot
);
2075 if (fn_name
== name
)
2077 /* If we found an existing slot, it must be a function set.
2078 Even with insertion after completion, because those only
2079 happen with artificial fns that have unspellable names.
2080 This means we do not have to deal with the stat hack
2082 gcc_checking_assert (OVL_P (*slot
));
2083 if (name
== conv_op_identifier
)
2085 gcc_checking_assert (OVL_FUNCTION (*slot
) == conv_op_marker
);
2086 /* Skip the conv-op marker. */
2087 slot
= &OVL_CHAIN (*slot
);
2092 if (complete_p
&& fn_name
> name
)
2096 /* No slot found, add one if the class is complete. */
2099 /* Do exact allocation, as we don't expect to add many. */
2100 gcc_assert (name
!= conv_op_identifier
);
2101 vec_safe_reserve_exact (member_vec
, 1);
2102 CLASSTYPE_MEMBER_VEC (klass
) = member_vec
;
2103 member_vec
->quick_insert (ix
, NULL_TREE
);
2104 return &(*member_vec
)[ix
];
2110 /* KLASS is an incomplete class to which we're adding a method NAME.
2111 Add a slot and deal with conv_op marker handling. */
2114 add_member_slot (tree klass
, tree name
)
2116 gcc_assert (!COMPLETE_TYPE_P (klass
));
2118 vec
<tree
, va_gc
> *member_vec
= CLASSTYPE_MEMBER_VEC (klass
);
2119 vec_safe_push (member_vec
, NULL_TREE
);
2120 CLASSTYPE_MEMBER_VEC (klass
) = member_vec
;
2122 tree
*slot
= &member_vec
->last ();
2123 if (IDENTIFIER_CONV_OP_P (name
))
2125 /* Install the marker prefix. */
2126 *slot
= ovl_make (conv_op_marker
, NULL_TREE
);
2127 slot
= &OVL_CHAIN (*slot
);
2133 /* Comparison function to compare two MEMBER_VEC entries by name.
2134 Because we can have duplicates during insertion of TYPE_FIELDS, we
2135 do extra checking so deduping doesn't have to deal with so many
2139 member_name_cmp (const void *a_p
, const void *b_p
)
2141 tree a
= *(const tree
*)a_p
;
2142 tree b
= *(const tree
*)b_p
;
2143 tree name_a
= DECL_NAME (TREE_CODE (a
) == OVERLOAD
? OVL_FUNCTION (a
) : a
);
2144 tree name_b
= DECL_NAME (TREE_CODE (b
) == OVERLOAD
? OVL_FUNCTION (b
) : b
);
2146 gcc_checking_assert (name_a
&& name_b
);
2147 if (name_a
!= name_b
)
2148 return name_a
< name_b
? -1 : +1;
2150 if (name_a
== conv_op_identifier
)
2152 /* Strip the conv-op markers. */
2153 gcc_checking_assert (OVL_FUNCTION (a
) == conv_op_marker
2154 && OVL_FUNCTION (b
) == conv_op_marker
);
2159 if (TREE_CODE (a
) == OVERLOAD
)
2160 a
= OVL_FUNCTION (a
);
2161 if (TREE_CODE (b
) == OVERLOAD
)
2162 b
= OVL_FUNCTION (b
);
2164 if (id_equal (name_a
, "_"))
2166 /* Sort name-independent members first. */
2167 if (name_independent_decl_p (a
))
2169 if (name_independent_decl_p (b
))
2171 if (DECL_UID (a
) != DECL_UID (b
))
2172 return DECL_UID (a
) < DECL_UID (b
) ? -1 : +1;
2173 gcc_assert (a
== b
);
2179 else if (name_independent_decl_p (b
))
2183 /* We're in STAT_HACK or USING_DECL territory (or possibly error-land). */
2184 if (TREE_CODE (a
) != TREE_CODE (b
))
2186 /* If one of them is a TYPE_DECL, it loses. */
2187 if (TREE_CODE (a
) == TYPE_DECL
)
2189 else if (TREE_CODE (b
) == TYPE_DECL
)
2192 /* If one of them is a USING_DECL, it loses. */
2193 if (TREE_CODE (a
) == USING_DECL
)
2195 else if (TREE_CODE (b
) == USING_DECL
)
2198 /* There are no other cases with different kinds of decls, as
2199 duplicate detection should have kicked in earlier. However,
2200 some erroneous cases get though. */
2201 gcc_assert (errorcount
);
2204 /* Using source location would be the best thing here, but we can
2205 get identically-located decls in the following circumstances:
2207 1) duplicate artificial type-decls for the same type.
2209 2) pack expansions of using-decls.
2211 We should not be doing #1, but in either case it doesn't matter
2212 how we order these. Use UID as a proxy for source ordering, so
2213 that identically-located decls still have a well-defined stable
2215 if (DECL_UID (a
) != DECL_UID (b
))
2216 return DECL_UID (a
) < DECL_UID (b
) ? -1 : +1;
2217 gcc_assert (a
== b
);
2222 gt_pointer_operator new_value
;
2226 /* This routine compares two fields like member_name_cmp but using the
2227 pointer operator in resort_field_decl_data. We don't have to deal
2228 with duplicates here. */
2231 resort_member_name_cmp (const void *a_p
, const void *b_p
)
2233 tree a
= *(const tree
*)a_p
;
2234 tree b
= *(const tree
*)b_p
;
2235 tree name_a
= OVL_NAME (a
);
2236 tree name_b
= OVL_NAME (b
);
2238 resort_data
.new_value (&name_a
, &name_a
, resort_data
.cookie
);
2239 resort_data
.new_value (&name_b
, &name_b
, resort_data
.cookie
);
2241 gcc_checking_assert (name_a
!= name_b
);
2243 return name_a
< name_b
? -1 : +1;
2246 /* Resort CLASSTYPE_MEMBER_VEC because pointers have been reordered. */
2249 resort_type_member_vec (void *obj
, void */
*orig_obj*/
,
2250 gt_pointer_operator new_value
, void* cookie
)
2252 if (vec
<tree
, va_gc
> *member_vec
= (vec
<tree
, va_gc
> *) obj
)
2254 resort_data
.new_value
= new_value
;
2255 resort_data
.cookie
= cookie
;
2256 member_vec
->qsort (resort_member_name_cmp
);
2260 /* Recursively count the number of fields in KLASS, including anonymous
2264 count_class_fields (tree klass
)
2266 unsigned n_fields
= 0;
2268 for (tree fields
= TYPE_FIELDS (klass
); fields
; fields
= DECL_CHAIN (fields
))
2269 if (DECL_DECLARES_FUNCTION_P (fields
))
2270 /* Functions are dealt with separately. */;
2271 else if (TREE_CODE (fields
) == FIELD_DECL
2272 && ANON_AGGR_TYPE_P (TREE_TYPE (fields
)))
2273 n_fields
+= count_class_fields (TREE_TYPE (fields
));
2274 else if (DECL_NAME (fields
))
2280 /* Append all the nonfunction members fields of KLASS to MEMBER_VEC.
2281 Recurse for anonymous members. MEMBER_VEC must have space. */
2284 member_vec_append_class_fields (vec
<tree
, va_gc
> *member_vec
, tree klass
)
2286 for (tree fields
= TYPE_FIELDS (klass
); fields
; fields
= DECL_CHAIN (fields
))
2287 if (DECL_DECLARES_FUNCTION_P (fields
))
2288 /* Functions are handled separately. */;
2289 else if (TREE_CODE (fields
) == FIELD_DECL
2290 && ANON_AGGR_TYPE_P (TREE_TYPE (fields
)))
2291 member_vec_append_class_fields (member_vec
, TREE_TYPE (fields
));
2292 else if (DECL_NAME (fields
))
2294 tree field
= fields
;
2295 /* Mark a conv-op USING_DECL with the conv-op-marker. */
2296 if (TREE_CODE (field
) == USING_DECL
2297 && IDENTIFIER_CONV_OP_P (DECL_NAME (field
)))
2298 field
= ovl_make (conv_op_marker
, field
);
2299 member_vec
->quick_push (field
);
2303 /* Append all of the enum values of ENUMTYPE to MEMBER_VEC.
2304 MEMBER_VEC must have space. */
2307 member_vec_append_enum_values (vec
<tree
, va_gc
> *member_vec
, tree enumtype
)
2309 for (tree values
= TYPE_VALUES (enumtype
);
2310 values
; values
= TREE_CHAIN (values
))
2311 member_vec
->quick_push (TREE_VALUE (values
));
2314 /* MEMBER_VEC has just had new DECLs added to it, but is sorted.
2315 DeDup adjacent DECLS of the same name. We already dealt with
2316 conflict resolution when adding the fields or methods themselves.
2317 There are four cases (which could all be combined):
2318 1) a TYPE_DECL and non TYPE_DECL. Deploy STAT_HACK as appropriate.
2319 2) a USING_DECL and an overload. If the USING_DECL is dependent,
2320 it wins. Otherwise the OVERLOAD does.
2322 4) name-independent members plus others. ...
2324 member_name_cmp will have ordered duplicates as
2325 <name_independent><fns><using><type> */
2328 member_vec_dedup (vec
<tree
, va_gc
> *member_vec
)
2330 unsigned len
= member_vec
->length ();
2336 tree name
= OVL_NAME ((*member_vec
)[0]);
2337 for (unsigned jx
, ix
= 0; ix
< len
; ix
= jx
)
2339 tree current
= NULL_TREE
;
2340 tree to_type
= NULL_TREE
;
2341 tree to_using
= NULL_TREE
;
2342 tree marker
= NULL_TREE
;
2343 unsigned name_independent
= ix
;
2345 for (jx
= ix
; jx
< len
; jx
++)
2347 tree next
= (*member_vec
)[jx
];
2350 tree next_name
= OVL_NAME (next
);
2351 if (next_name
!= name
)
2358 if (IDENTIFIER_CONV_OP_P (name
))
2361 next
= OVL_CHAIN (next
);
2364 if (TREE_CODE (next
) == USING_DECL
)
2366 if (IDENTIFIER_CTOR_P (name
))
2367 /* Dependent inherited ctor. */
2370 next
= strip_using_decl (next
);
2371 if (TREE_CODE (next
) == USING_DECL
)
2377 if (is_overloaded_fn (next
))
2381 if (DECL_DECLARES_TYPE_P (next
))
2387 if (name_independent_decl_p (next
))
2388 name_independent
= jx
+ 1;
2398 current
= ovl_make (to_using
, current
);
2406 current
= stat_hack (current
, to_type
);
2409 for (unsigned kx
= name_independent
; kx
> ix
; --kx
)
2411 current
= (*member_vec
)[kx
- 1];
2412 else if (current
== to_type
)
2413 current
= stat_hack ((*member_vec
)[kx
- 1], to_type
);
2416 current
= ovl_make ((*member_vec
)[kx
- 1], current
);
2417 OVL_NAME_INDEPENDENT_DECL_P (current
) = 1;
2424 OVL_CHAIN (marker
) = current
;
2427 (*member_vec
)[store
++] = current
;
2431 while (store
++ < len
)
2435 /* Add the non-function members to CLASSTYPE_MEMBER_VEC. If there is
2436 no existing MEMBER_VEC and fewer than 8 fields, do nothing. We
2437 know there must be at least 1 field -- the self-reference
2438 TYPE_DECL, except for anon aggregates, which will have at least
2439 one field anyway. If EXTRA < 0, always create the vector. */
2442 set_class_bindings (tree klass
, int extra
)
2444 unsigned n_fields
= count_class_fields (klass
);
2445 vec
<tree
, va_gc
> *member_vec
= CLASSTYPE_MEMBER_VEC (klass
);
2447 if (member_vec
|| n_fields
>= 8 || extra
< 0)
2449 /* Append the new fields. */
2450 vec_safe_reserve_exact (member_vec
, n_fields
+ (extra
>= 0 ? extra
: 0));
2451 member_vec_append_class_fields (member_vec
, klass
);
2456 CLASSTYPE_MEMBER_VEC (klass
) = member_vec
;
2457 member_vec
->qsort (member_name_cmp
);
2458 member_vec_dedup (member_vec
);
2464 /* Insert lately defined enum ENUMTYPE into KLASS for the sorted case. */
2467 insert_late_enum_def_bindings (tree klass
, tree enumtype
)
2470 vec
<tree
, va_gc
> *member_vec
= CLASSTYPE_MEMBER_VEC (klass
);
2472 /* The enum bindings will already be on the TYPE_FIELDS, so don't
2473 count them twice. */
2475 n_fields
= count_class_fields (klass
);
2477 n_fields
= list_length (TYPE_VALUES (enumtype
));
2479 if (member_vec
|| n_fields
>= 8)
2481 vec_safe_reserve_exact (member_vec
, n_fields
);
2482 if (CLASSTYPE_MEMBER_VEC (klass
))
2483 member_vec_append_enum_values (member_vec
, enumtype
);
2485 member_vec_append_class_fields (member_vec
, klass
);
2486 CLASSTYPE_MEMBER_VEC (klass
) = member_vec
;
2487 member_vec
->qsort (member_name_cmp
);
2488 member_vec_dedup (member_vec
);
2492 /* The binding oracle; see cp-tree.h. */
2494 cp_binding_oracle_function
*cp_binding_oracle
;
2496 /* If we have a binding oracle, ask it for all namespace-scoped
2497 definitions of NAME. */
2500 query_oracle (tree name
)
2502 if (!cp_binding_oracle
)
2505 /* LOOKED_UP holds the set of identifiers that we have already
2506 looked up with the oracle. */
2507 static hash_set
<tree
> looked_up
;
2508 if (looked_up
.add (name
))
2511 cp_binding_oracle (CP_ORACLE_IDENTIFIER
, name
);
2514 #ifndef ENABLE_SCOPE_CHECKING
2515 # define ENABLE_SCOPE_CHECKING 0
2517 # define ENABLE_SCOPE_CHECKING 1
2520 /* A free list of "cxx_binding"s, connected by their PREVIOUS. */
2522 static GTY((deletable
)) cxx_binding
*free_bindings
;
2524 /* Initialize VALUE and TYPE field for BINDING, and set the PREVIOUS
2528 cxx_binding_init (cxx_binding
*binding
, tree value
, tree type
)
2530 binding
->value
= value
;
2531 binding
->type
= type
;
2532 binding
->previous
= NULL
;
2535 /* (GC)-allocate a binding object with VALUE and TYPE member initialized. */
2537 static cxx_binding
*
2538 cxx_binding_make (tree value
, tree type
)
2540 cxx_binding
*binding
= free_bindings
;
2543 free_bindings
= binding
->previous
;
2545 binding
= ggc_alloc
<cxx_binding
> ();
2547 /* Clear flags by default. */
2548 LOCAL_BINDING_P (binding
) = false;
2549 INHERITED_VALUE_BINDING_P (binding
) = false;
2550 HIDDEN_TYPE_BINDING_P (binding
) = false;
2552 cxx_binding_init (binding
, value
, type
);
2557 /* Put BINDING back on the free list. */
2560 cxx_binding_free (cxx_binding
*binding
)
2562 binding
->scope
= NULL
;
2563 binding
->previous
= free_bindings
;
2564 free_bindings
= binding
;
2567 /* Create a new binding for NAME (with the indicated VALUE and TYPE
2568 bindings) in the class scope indicated by SCOPE. */
2570 static cxx_binding
*
2571 new_class_binding (tree name
, tree value
, tree type
, cp_binding_level
*scope
)
2573 cp_class_binding cb
= {cxx_binding_make (value
, type
), name
};
2574 cxx_binding
*binding
= cb
.base
;
2575 vec_safe_push (scope
->class_shadowed
, cb
);
2576 binding
->scope
= scope
;
2580 /* Make DECL the innermost binding for ID. The LEVEL is the binding
2581 level at which this declaration is being bound. */
2584 push_binding (tree id
, tree decl
, cp_binding_level
* level
)
2586 cxx_binding
*binding
;
2588 if (level
!= class_binding_level
)
2590 binding
= cxx_binding_make (decl
, NULL_TREE
);
2591 binding
->scope
= level
;
2594 binding
= new_class_binding (id
, decl
, /*type=*/NULL_TREE
, level
);
2596 /* Now, fill in the binding information. */
2597 binding
->previous
= IDENTIFIER_BINDING (id
);
2598 LOCAL_BINDING_P (binding
) = (level
!= class_binding_level
);
2600 /* And put it on the front of the list of bindings for ID. */
2601 IDENTIFIER_BINDING (id
) = binding
;
2604 /* Remove the binding for DECL which should be the innermost binding
2608 pop_local_binding (tree id
, tree decl
)
2610 if (!id
|| IDENTIFIER_ANON_P (id
))
2611 /* It's easiest to write the loops that call this function without
2612 checking whether or not the entities involved have names. We
2613 get here for such an entity. */
2616 /* Get the innermost binding for ID. */
2617 cxx_binding
*binding
= IDENTIFIER_BINDING (id
);
2619 /* The name should be bound. */
2620 gcc_assert (binding
!= NULL
);
2622 /* The DECL will be either the ordinary binding or the type binding
2623 for this identifier. Remove that binding. We don't have to
2624 clear HIDDEN_TYPE_BINDING_P, as the whole binding will be going
2626 if (binding
->value
== decl
)
2627 binding
->value
= NULL_TREE
;
2628 else if (binding
->type
== decl
)
2629 binding
->type
= NULL_TREE
;
2632 /* Name-independent variable was found after at least one declaration
2633 with the same name. */
2634 gcc_assert (TREE_CODE (binding
->value
) == TREE_LIST
);
2635 if (TREE_VALUE (binding
->value
) != decl
)
2637 binding
->value
= nreverse (binding
->value
);
2638 /* Skip over TREE_LISTs added in pushdecl for check_local_shadow
2639 detected declarations, formerly at the tail, now at the start
2641 while (TREE_PURPOSE (binding
->value
) == error_mark_node
)
2642 binding
->value
= TREE_CHAIN (binding
->value
);
2644 gcc_assert (TREE_VALUE (binding
->value
) == decl
);
2645 binding
->value
= TREE_CHAIN (binding
->value
);
2646 while (binding
->value
2647 && TREE_PURPOSE (binding
->value
) == error_mark_node
)
2648 binding
->value
= TREE_CHAIN (binding
->value
);
2651 if (!binding
->value
&& !binding
->type
)
2653 /* We're completely done with the innermost binding for this
2654 identifier. Unhook it from the list of bindings. */
2655 IDENTIFIER_BINDING (id
) = binding
->previous
;
2657 /* Add it to the free list. */
2658 cxx_binding_free (binding
);
2662 /* Remove the bindings for the decls of the current level and leave
2663 the current scope. */
2666 pop_bindings_and_leave_scope (void)
2668 for (tree t
= get_local_decls (); t
; t
= DECL_CHAIN (t
))
2670 tree decl
= TREE_CODE (t
) == TREE_LIST
? TREE_VALUE (t
) : t
;
2671 tree name
= OVL_NAME (decl
);
2673 pop_local_binding (name
, decl
);
2679 /* Strip non dependent using declarations. If DECL is dependent,
2680 surreptitiously create a typename_type and return it. */
2683 strip_using_decl (tree decl
)
2685 if (decl
== NULL_TREE
)
2688 while (TREE_CODE (decl
) == USING_DECL
&& !DECL_DEPENDENT_P (decl
))
2689 decl
= USING_DECL_DECLS (decl
);
2691 if (TREE_CODE (decl
) == USING_DECL
&& DECL_DEPENDENT_P (decl
)
2692 && USING_DECL_TYPENAME_P (decl
))
2694 /* We have found a type introduced by a using
2695 declaration at class scope that refers to a dependent
2698 using typename :: [opt] nested-name-specifier unqualified-id ;
2700 decl
= make_typename_type (USING_DECL_SCOPE (decl
),
2702 typename_type
, tf_error
);
2703 if (decl
!= error_mark_node
)
2704 decl
= TYPE_NAME (decl
);
2710 /* Return true if OVL is an overload for an anticipated builtin. */
2713 anticipated_builtin_p (tree ovl
)
2715 return (TREE_CODE (ovl
) == OVERLOAD
2716 && OVL_HIDDEN_P (ovl
)
2717 && DECL_IS_UNDECLARED_BUILTIN (OVL_FUNCTION (ovl
)));
2720 /* BINDING records an existing declaration for a name in the current scope.
2721 But, DECL is another declaration for that same identifier in the
2722 same scope. This is the `struct stat' hack whereby a non-typedef
2723 class name or enum-name can be bound at the same level as some other
2727 A class name (9.1) or enumeration name (7.2) can be hidden by the
2728 name of an object, function, or enumerator declared in the same scope.
2729 If a class or enumeration name and an object, function, or enumerator
2730 are declared in the same scope (in any order) with the same name, the
2731 class or enumeration name is hidden wherever the object, function, or
2732 enumerator name is visible.
2734 It's the responsibility of the caller to check that
2735 inserting this name is valid here. Returns nonzero if the new binding
2739 supplement_binding (cxx_binding
*binding
, tree decl
)
2741 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
2743 tree bval
= binding
->value
;
2746 && TREE_CODE (bval
) == TREE_LIST
2747 && name_independent_decl_p (TREE_VALUE (bval
)))
2748 bval
= TREE_VALUE (bval
);
2749 tree target_bval
= strip_using_decl (bval
);
2750 tree target_decl
= strip_using_decl (decl
);
2752 if (TREE_CODE (target_decl
) == TYPE_DECL
&& DECL_ARTIFICIAL (target_decl
)
2753 && target_decl
!= target_bval
2754 && (TREE_CODE (target_bval
) != TYPE_DECL
2755 /* We allow pushing an enum multiple times in a class
2756 template in order to handle late matching of underlying
2757 type on an opaque-enum-declaration followed by an
2759 || (processing_template_decl
2760 && TREE_CODE (TREE_TYPE (target_decl
)) == ENUMERAL_TYPE
2761 && TREE_CODE (TREE_TYPE (target_bval
)) == ENUMERAL_TYPE
2762 && (dependent_type_p (ENUM_UNDERLYING_TYPE
2763 (TREE_TYPE (target_decl
)))
2764 || dependent_type_p (ENUM_UNDERLYING_TYPE
2765 (TREE_TYPE (target_bval
)))))))
2766 /* The new name is the type name. */
2767 binding
->type
= decl
;
2768 else if (/* TARGET_BVAL is null when push_class_level_binding moves
2769 an inherited type-binding out of the way to make room
2770 for a new value binding. */
2772 /* TARGET_BVAL is error_mark_node when TARGET_DECL's name
2773 has been used in a non-class scope prior declaration.
2774 In that case, we should have already issued a
2775 diagnostic; for graceful error recovery purpose, pretend
2776 this was the intended declaration for that name. */
2777 || target_bval
== error_mark_node
2778 /* If TARGET_BVAL is anticipated but has not yet been
2779 declared, pretend it is not there at all. */
2780 || anticipated_builtin_p (target_bval
))
2781 binding
->value
= decl
;
2782 else if (TREE_CODE (target_bval
) == TYPE_DECL
2783 && DECL_ARTIFICIAL (target_bval
)
2784 && target_decl
!= target_bval
2785 && (TREE_CODE (target_decl
) != TYPE_DECL
2786 || same_type_p (TREE_TYPE (target_decl
),
2787 TREE_TYPE (target_bval
))))
2789 /* The old binding was a type name. It was placed in
2790 VALUE field because it was thought, at the point it was
2791 declared, to be the only entity with such a name. Move the
2792 type name into the type slot; it is now hidden by the new
2794 binding
->type
= bval
;
2795 binding
->value
= decl
;
2796 binding
->value_is_inherited
= false;
2798 else if (TREE_CODE (target_bval
) == TYPE_DECL
2799 && TREE_CODE (target_decl
) == TYPE_DECL
2800 && DECL_NAME (target_decl
) == DECL_NAME (target_bval
)
2801 && binding
->scope
->kind
!= sk_class
2802 && (same_type_p (TREE_TYPE (target_decl
), TREE_TYPE (target_bval
))
2803 /* If either type involves template parameters, we must
2804 wait until instantiation. */
2805 || uses_template_parms (TREE_TYPE (target_decl
))
2806 || uses_template_parms (TREE_TYPE (target_bval
))))
2807 /* We have two typedef-names, both naming the same type to have
2808 the same name. In general, this is OK because of:
2812 In a given scope, a typedef specifier can be used to redefine
2813 the name of any type declared in that scope to refer to the
2814 type to which it already refers.
2816 However, in class scopes, this rule does not apply due to the
2817 stricter language in [class.mem] prohibiting redeclarations of
2820 /* There can be two block-scope declarations of the same variable,
2821 so long as they are `extern' declarations. However, there cannot
2822 be two declarations of the same static data member:
2826 A member shall not be declared twice in the
2827 member-specification. */
2828 else if (VAR_P (target_decl
)
2829 && VAR_P (target_bval
)
2830 && DECL_EXTERNAL (target_decl
) && DECL_EXTERNAL (target_bval
)
2831 && !DECL_CLASS_SCOPE_P (target_decl
))
2833 duplicate_decls (decl
, binding
->value
);
2836 else if (TREE_CODE (decl
) == NAMESPACE_DECL
2837 && TREE_CODE (bval
) == NAMESPACE_DECL
2838 && DECL_NAMESPACE_ALIAS (decl
)
2839 && DECL_NAMESPACE_ALIAS (bval
)
2840 && ORIGINAL_NAMESPACE (bval
) == ORIGINAL_NAMESPACE (decl
))
2841 /* [namespace.alias]
2843 In a declarative region, a namespace-alias-definition can be
2844 used to redefine a namespace-alias declared in that declarative
2845 region to refer only to the namespace to which it already
2848 else if (TREE_CODE (bval
) == USING_DECL
2849 && CONST_DECL_USING_P (decl
))
2850 /* Let the clone hide the using-decl that introduced it. */
2851 binding
->value
= decl
;
2852 else if (name_independent_decl_p (decl
))
2854 if (cxx_dialect
< cxx26
)
2855 pedwarn (DECL_SOURCE_LOCATION (decl
), OPT_Wc__26_extensions
,
2856 "name-independent declarations only available with "
2857 "%<-std=c++2c%> or %<-std=gnu++2c%>");
2858 binding
->value
= name_lookup::ambiguous (decl
, binding
->value
);
2862 if (!error_operand_p (bval
))
2863 diagnose_name_conflict (decl
, bval
);
2870 /* Diagnose a name conflict between DECL and BVAL.
2872 This is non-static so maybe_push_used_methods can use it and avoid changing
2873 the diagnostic for inherit/using4.C; otherwise it should not be used from
2874 outside this file. */
2877 diagnose_name_conflict (tree decl
, tree bval
)
2879 if (TREE_CODE (decl
) == TREE_CODE (bval
)
2880 && TREE_CODE (decl
) != NAMESPACE_DECL
2881 && !DECL_DECLARES_FUNCTION_P (decl
)
2882 && (TREE_CODE (decl
) != TYPE_DECL
2883 || DECL_ARTIFICIAL (decl
) == DECL_ARTIFICIAL (bval
))
2884 && CP_DECL_CONTEXT (decl
) == CP_DECL_CONTEXT (bval
))
2886 if (concept_definition_p (decl
))
2887 error ("redeclaration of %q#D with different template parameters",
2890 error ("redeclaration of %q#D", decl
);
2893 error ("%q#D conflicts with a previous declaration", decl
);
2895 inform (location_of (bval
), "previous declaration %q#D", bval
);
2898 /* Replace BINDING's current value on its scope's name list with
2902 update_local_overload (cxx_binding
*binding
, tree newval
)
2906 for (d
= &binding
->scope
->names
; ; d
= &TREE_CHAIN (*d
))
2907 if (*d
== binding
->value
)
2909 /* Stitch new list node in. */
2910 *d
= tree_cons (DECL_NAME (*d
), NULL_TREE
, TREE_CHAIN (*d
));
2913 else if (TREE_CODE (*d
) == TREE_LIST
&& TREE_VALUE (*d
) == binding
->value
)
2916 TREE_VALUE (*d
) = newval
;
2919 /* Compares the parameter-type-lists of ONE and TWO and
2920 returns false if they are different. If the DECLs are template
2921 functions, the return types and the template parameter lists are
2922 compared too (DR 565). */
2925 matching_fn_p (tree one
, tree two
)
2927 if (TREE_CODE (one
) != TREE_CODE (two
))
2930 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (one
)),
2931 TYPE_ARG_TYPES (TREE_TYPE (two
))))
2934 if (TREE_CODE (one
) == TEMPLATE_DECL
)
2936 /* Compare template parms. */
2937 if (!comp_template_parms (DECL_TEMPLATE_PARMS (one
),
2938 DECL_TEMPLATE_PARMS (two
)))
2941 /* And return type. */
2942 if (!same_type_p (TREE_TYPE (TREE_TYPE (one
)),
2943 TREE_TYPE (TREE_TYPE (two
))))
2947 if (!equivalently_constrained (one
, two
))
2953 /* Push DECL into nonclass LEVEL BINDING or SLOT. OLD is the current
2954 binding value (possibly with anticipated builtins stripped).
2955 Diagnose conflicts and return updated decl. */
2958 update_binding (cp_binding_level
*level
, cxx_binding
*binding
, tree
*slot
,
2959 tree old
, tree decl
, bool hiding
= false)
2961 tree old_type
= NULL_TREE
;
2962 bool hide_type
= false;
2963 bool hide_value
= false;
2964 bool name_independent_p
= false;
2968 old_type
= binding
->type
;
2969 hide_type
= HIDDEN_TYPE_BINDING_P (binding
);
2971 hide_value
= hide_type
, hide_type
= false;
2972 name_independent_p
= name_independent_decl_p (decl
);
2974 else if (STAT_HACK_P (*slot
))
2976 old_type
= STAT_TYPE (*slot
);
2977 hide_type
= STAT_TYPE_HIDDEN_P (*slot
);
2978 hide_value
= STAT_DECL_HIDDEN_P (*slot
);
2982 tree to_type
= old_type
;
2983 bool local_overload
= false;
2985 gcc_assert (!level
|| level
->kind
== sk_namespace
? !binding
2986 : level
->kind
!= sk_class
&& !slot
);
2988 if (old
== error_mark_node
)
2991 if (DECL_IMPLICIT_TYPEDEF_P (decl
))
2993 /* Pushing an artificial decl. We should not find another
2994 artificial decl here already -- lookup_elaborated_type will
2995 have already found it. */
2996 gcc_checking_assert (!to_type
2997 && !(old
&& DECL_IMPLICIT_TYPEDEF_P (old
)));
3001 /* Put DECL into the type slot. */
3002 gcc_checking_assert (!to_type
);
3008 hide_value
= hiding
;
3013 if (old
&& DECL_IMPLICIT_TYPEDEF_P (old
))
3015 /* OLD is an implicit typedef. Move it to to_type. */
3016 gcc_checking_assert (!to_type
);
3019 hide_type
= hide_value
;
3024 if (DECL_DECLARES_FUNCTION_P (decl
))
3028 else if (OVL_P (old
))
3030 for (ovl_iterator
iter (old
); iter
; ++iter
)
3034 if (iter
.using_p () && matching_fn_p (fn
, decl
))
3036 gcc_checking_assert (!iter
.hidden_p ());
3037 /* If a function declaration in namespace scope or
3038 block scope has the same name and the same
3039 parameter-type- list (8.3.5) as a function
3040 introduced by a using-declaration, and the
3041 declarations do not declare the same function,
3042 the program is ill-formed. [namespace.udecl]/14 */
3043 if (tree match
= duplicate_decls (decl
, fn
, hiding
))
3046 /* FIXME: To preserve existing error behavior, we
3047 still push the decl. This might change. */
3048 diagnose_name_conflict (decl
, fn
);
3055 if (to_type
!= old_type
3057 && MAYBE_CLASS_TYPE_P (TREE_TYPE (to_type
))
3058 && !(DECL_IN_SYSTEM_HEADER (decl
)
3059 && DECL_IN_SYSTEM_HEADER (to_type
)))
3060 warning (OPT_Wshadow
, "%q#D hides constructor for %q#D",
3063 local_overload
= old
&& level
&& level
->kind
!= sk_namespace
;
3064 to_val
= ovl_insert (decl
, old
, -int (hiding
));
3068 if (name_independent_p
)
3069 to_val
= name_lookup::ambiguous (decl
, old
);
3070 else if (TREE_CODE (old
) != TREE_CODE (decl
))
3071 /* Different kinds of decls conflict. */
3073 else if (TREE_CODE (old
) == TYPE_DECL
)
3075 if (same_type_p (TREE_TYPE (old
), TREE_TYPE (decl
)))
3076 /* Two type decls to the same type. Do nothing. */
3081 else if (TREE_CODE (old
) == NAMESPACE_DECL
)
3083 /* Two maybe-aliased namespaces. If they're to the same target
3084 namespace, that's ok. */
3085 if (ORIGINAL_NAMESPACE (old
) != ORIGINAL_NAMESPACE (decl
))
3088 /* The new one must be an alias at this point. */
3089 gcc_assert (DECL_NAMESPACE_ALIAS (decl
));
3092 else if (TREE_CODE (old
) == VAR_DECL
)
3094 /* There can be two block-scope declarations of the same
3095 variable, so long as they are `extern' declarations. */
3096 if (!DECL_EXTERNAL (old
) || !DECL_EXTERNAL (decl
))
3098 else if (tree match
= duplicate_decls (decl
, old
))
3100 gcc_checking_assert (!hide_value
&& !hiding
);
3109 diagnose_name_conflict (decl
, old
);
3121 gcc_checking_assert (binding
->value
&& OVL_P (binding
->value
));
3122 update_local_overload (binding
, to_val
);
3125 && !(TREE_CODE (decl
) == NAMESPACE_DECL
3126 && !DECL_NAMESPACE_ALIAS (decl
)))
3127 /* Don't add namespaces here. They're done in
3129 add_decl_to_level (level
, decl
);
3133 if (STAT_HACK_P (*slot
))
3135 STAT_TYPE (*slot
) = to_type
;
3136 STAT_DECL (*slot
) = to_val
;
3137 STAT_TYPE_HIDDEN_P (*slot
) = hide_type
;
3138 STAT_DECL_HIDDEN_P (*slot
) = hide_value
;
3140 else if (to_type
|| hide_value
)
3142 *slot
= stat_hack (to_val
, to_type
);
3143 STAT_TYPE_HIDDEN_P (*slot
) = hide_type
;
3144 STAT_DECL_HIDDEN_P (*slot
) = hide_value
;
3148 gcc_checking_assert (!hide_type
);
3154 binding
->type
= to_type
;
3155 binding
->value
= to_val
;
3156 HIDDEN_TYPE_BINDING_P (binding
) = hide_type
|| hide_value
;
3163 /* Table of identifiers to extern C declarations (or LISTS thereof). */
3165 static GTY(()) hash_table
<named_decl_hash
> *extern_c_decls
;
3167 /* DECL has C linkage. If we have an existing instance, make sure the
3168 new one is compatible. Make sure it has the same exception
3169 specification [7.5, 7.6]. Add DECL to the map. */
3172 check_extern_c_conflict (tree decl
)
3174 /* Ignore artificial or system header decls. */
3175 if (DECL_ARTIFICIAL (decl
) || DECL_IN_SYSTEM_HEADER (decl
))
3178 /* This only applies to decls at namespace scope. */
3179 if (!DECL_NAMESPACE_SCOPE_P (decl
))
3182 if (!extern_c_decls
)
3183 extern_c_decls
= hash_table
<named_decl_hash
>::create_ggc (127);
3185 tree
*slot
= extern_c_decls
3186 ->find_slot_with_hash (DECL_NAME (decl
),
3187 IDENTIFIER_HASH_VALUE (DECL_NAME (decl
)), INSERT
);
3188 if (tree old
= *slot
)
3190 if (TREE_CODE (old
) == OVERLOAD
)
3191 old
= OVL_FUNCTION (old
);
3194 if (DECL_CONTEXT (old
) == DECL_CONTEXT (decl
))
3195 ; /* If they're in the same context, we'll have already complained
3196 about a (possible) mismatch, when inserting the decl. */
3197 else if (!decls_match (decl
, old
))
3199 else if (TREE_CODE (decl
) == FUNCTION_DECL
3200 && !comp_except_specs (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old
)),
3201 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl
)),
3204 else if (DECL_ASSEMBLER_NAME_SET_P (old
))
3205 SET_DECL_ASSEMBLER_NAME (decl
, DECL_ASSEMBLER_NAME (old
));
3209 auto_diagnostic_group d
;
3210 pedwarn (DECL_SOURCE_LOCATION (decl
), 0,
3211 "conflicting C language linkage declaration %q#D", decl
);
3212 inform (DECL_SOURCE_LOCATION (old
),
3213 "previous declaration %q#D", old
);
3215 inform (DECL_SOURCE_LOCATION (decl
),
3216 "due to different exception specifications");
3221 /* The hash table expects OVERLOADS, so construct one with
3222 OLD as both the function and the chain. This allocate
3223 an excess OVERLOAD node, but it's rare to have multiple
3224 extern "C" decls of the same name. And we save
3225 complicating the hash table logic (which is used
3227 *slot
= ovl_make (old
, old
);
3229 slot
= &OVL_CHAIN (*slot
);
3231 /* Chain it on for c_linkage_binding's use. */
3232 *slot
= tree_cons (NULL_TREE
, decl
, *slot
);
3239 /* Returns a list of C-linkage decls with the name NAME. Used in
3240 c-family/c-pragma.cc to implement redefine_extname pragma. */
3243 c_linkage_bindings (tree name
)
3246 if (tree
*slot
= extern_c_decls
3247 ->find_slot_with_hash (name
, IDENTIFIER_HASH_VALUE (name
), NO_INSERT
))
3249 tree result
= *slot
;
3250 if (TREE_CODE (result
) == OVERLOAD
)
3251 result
= OVL_CHAIN (result
);
3258 /* Subroutine of check_local_shadow. */
3261 inform_shadowed (tree shadowed
)
3263 inform (DECL_SOURCE_LOCATION (shadowed
),
3264 "shadowed declaration is here");
3267 /* DECL is being declared at a local scope. Emit suitable shadow
3271 check_local_shadow (tree decl
)
3273 /* Don't complain about the parms we push and then pop
3274 while tentatively parsing a function declarator. */
3275 if (TREE_CODE (decl
) == PARM_DECL
&& !DECL_CONTEXT (decl
))
3278 if (DECL_FUNCTION_SCOPE_P (decl
))
3280 tree ctx
= DECL_CONTEXT (decl
);
3281 if (DECL_CLONED_FUNCTION_P (ctx
)
3282 || DECL_TEMPLATE_INSTANTIATED (ctx
)
3283 || (DECL_LANG_SPECIFIC (ctx
)
3284 && DECL_DEFAULTED_FN (ctx
))
3285 || (LAMBDA_FUNCTION_P (ctx
)
3286 && LAMBDA_EXPR_REGEN_INFO (CLASSTYPE_LAMBDA_EXPR
3287 (DECL_CONTEXT (ctx
)))))
3288 /* It suffices to check shadowing only when actually parsing.
3289 So punt for clones, instantiations, defaulted functions and
3290 regenerated lambdas. This optimization helps reduce lazy
3291 loading cascades with modules. */
3295 tree old
= NULL_TREE
;
3296 cp_binding_level
*old_scope
= NULL
;
3297 if (cxx_binding
*binding
= outer_binding (DECL_NAME (decl
), NULL
, true))
3299 old
= binding
->value
;
3300 old_scope
= binding
->scope
;
3304 && (TREE_CODE (old
) == PARM_DECL
3306 || (TREE_CODE (old
) == TYPE_DECL
3307 && (!DECL_ARTIFICIAL (old
)
3308 || TREE_CODE (decl
) == TYPE_DECL
)))
3309 && DECL_FUNCTION_SCOPE_P (old
)
3310 && (!DECL_ARTIFICIAL (decl
)
3311 || is_capture_proxy (decl
)
3312 || DECL_IMPLICIT_TYPEDEF_P (decl
)
3313 || (VAR_P (decl
) && DECL_ANON_UNION_VAR_P (decl
))))
3315 /* DECL shadows a local thing possibly of interest. */
3317 /* DR 2211: check that captures and parameters
3318 do not have the same name. */
3319 if (is_capture_proxy (decl
))
3321 if (current_lambda_expr ()
3322 && DECL_CONTEXT (old
) == lambda_function (current_lambda_expr ())
3323 && TREE_CODE (old
) == PARM_DECL
3324 && DECL_NAME (decl
) != this_identifier
)
3325 error_at (DECL_SOURCE_LOCATION (old
),
3326 "lambda parameter %qD "
3327 "previously declared as a capture", old
);
3330 /* Don't complain if it's from an enclosing function. */
3331 else if (DECL_CONTEXT (old
) == current_function_decl
3332 && TREE_CODE (decl
) != PARM_DECL
3333 && TREE_CODE (old
) == PARM_DECL
)
3335 /* Go to where the parms should be and see if we find
3337 cp_binding_level
*b
= current_binding_level
->level_chain
;
3339 if (in_function_try_handler
&& b
->kind
== sk_catch
)
3342 /* Skip artificially added scopes which aren't present
3343 in the C++ standard, e.g. for function-try-block or
3344 ctor/dtor cleanups. */
3345 while (b
->artificial
)
3348 /* [basic.scope.param] A parameter name shall not be redeclared
3349 in the outermost block of the function definition. */
3350 if (b
->kind
== sk_function_parms
)
3352 if (name_independent_decl_p (decl
))
3355 auto_diagnostic_group d
;
3357 if (DECL_EXTERNAL (decl
))
3358 emit
= pedwarn (DECL_SOURCE_LOCATION (decl
), OPT_Wpedantic
,
3359 "declaration of %q#D shadows a parameter",
3362 error_at (DECL_SOURCE_LOCATION (decl
),
3363 "declaration of %q#D shadows a parameter", decl
);
3365 inform (DECL_SOURCE_LOCATION (old
),
3366 "%q#D previously declared here", old
);
3371 /* The local structure or class can't use parameters of
3372 the containing function anyway. */
3373 if (DECL_CONTEXT (old
) != current_function_decl
)
3375 for (cp_binding_level
*scope
= current_binding_level
;
3376 scope
!= old_scope
; scope
= scope
->level_chain
)
3377 if (scope
->kind
== sk_class
3378 && !LAMBDA_TYPE_P (scope
->this_entity
))
3381 /* Error if redeclaring a local declared in a
3382 init-statement or in the condition of an if or
3383 switch statement when the new declaration is in the
3384 outermost block of the controlled statement.
3385 Redeclaring a variable from a for or while condition is
3386 detected elsewhere. */
3387 else if (VAR_P (old
)
3388 && old_scope
== current_binding_level
->level_chain
3389 && (old_scope
->kind
== sk_cond
|| old_scope
->kind
== sk_for
))
3391 if (name_independent_decl_p (decl
))
3394 auto_diagnostic_group d
;
3396 if (DECL_EXTERNAL (decl
))
3397 emit
= pedwarn (DECL_SOURCE_LOCATION (decl
), OPT_Wpedantic
,
3398 "redeclaration of %q#D", decl
);
3400 error_at (DECL_SOURCE_LOCATION (decl
),
3401 "redeclaration of %q#D", decl
);
3403 inform (DECL_SOURCE_LOCATION (old
),
3404 "%q#D previously declared here", old
);
3408 3.3.3/3: The name declared in an exception-declaration (...)
3409 shall not be redeclared in the outermost block of the handler.
3410 3.3.3/2: A parameter name shall not be redeclared (...) in
3411 the outermost block of any handler associated with a
3412 function-try-block. */
3413 else if (TREE_CODE (old
) == VAR_DECL
3414 && old_scope
== current_binding_level
->level_chain
3415 && old_scope
->kind
== sk_catch
)
3417 if (name_independent_decl_p (decl
))
3420 auto_diagnostic_group d
;
3422 if (DECL_EXTERNAL (decl
))
3423 emit
= pedwarn (DECL_SOURCE_LOCATION (decl
), OPT_Wpedantic
,
3424 "redeclaration of %q#D", decl
);
3426 emit
= permerror (DECL_SOURCE_LOCATION (decl
),
3427 "redeclaration of %q#D", decl
);
3429 inform (DECL_SOURCE_LOCATION (old
),
3430 "%q#D previously declared here", old
);
3434 /* Don't emit -Wshadow* warnings for name-independent decls. */
3435 if (name_independent_decl_p (decl
) || name_independent_decl_p (old
))
3438 /* If '-Wshadow=compatible-local' is specified without other
3439 -Wshadow= flags, we will warn only when the type of the
3440 shadowing variable (DECL) can be converted to that of the
3441 shadowed parameter (OLD_LOCAL). The reason why we only check
3442 if DECL's type can be converted to OLD_LOCAL's type (but not the
3443 other way around) is because when users accidentally shadow a
3444 parameter, more than often they would use the variable
3445 thinking (mistakenly) it's still the parameter. It would be
3446 rare that users would use the variable in the place that
3447 expects the parameter but thinking it's a new decl.
3448 If either object is a TYPE_DECL, '-Wshadow=compatible-local'
3449 warns regardless of whether one of the types involved
3450 is a subclass of the other, since that is never okay. */
3452 enum opt_code warning_code
;
3454 warning_code
= OPT_Wshadow
;
3455 else if ((TREE_CODE (decl
) == TYPE_DECL
)
3456 ^ (TREE_CODE (old
) == TYPE_DECL
))
3457 /* If exactly one is a type, they aren't compatible. */
3458 warning_code
= OPT_Wshadow_local
;
3459 else if ((TREE_TYPE (old
)
3461 && same_type_p (TREE_TYPE (old
), TREE_TYPE (decl
)))
3462 || TREE_CODE (decl
) == TYPE_DECL
3463 || TREE_CODE (old
) == TYPE_DECL
3464 || (!dependent_type_p (TREE_TYPE (decl
))
3465 && !dependent_type_p (TREE_TYPE (old
))
3466 /* If the new decl uses auto, we don't yet know
3467 its type (the old type cannot be using auto
3468 at this point, without also being
3469 dependent). This is an indication we're
3470 (now) doing the shadow checking too
3472 && !type_uses_auto (TREE_TYPE (decl
))
3473 && can_convert_arg (TREE_TYPE (old
), TREE_TYPE (decl
),
3474 decl
, LOOKUP_IMPLICIT
, tf_none
)))
3475 warning_code
= OPT_Wshadow_compatible_local
;
3477 warning_code
= OPT_Wshadow_local
;
3480 if (TREE_CODE (old
) == PARM_DECL
)
3481 msg
= "declaration of %q#D shadows a parameter";
3482 else if (is_capture_proxy (old
))
3483 msg
= "declaration of %qD shadows a lambda capture";
3485 msg
= "declaration of %qD shadows a previous local";
3487 auto_diagnostic_group d
;
3488 if (warning_at (DECL_SOURCE_LOCATION (decl
), warning_code
, msg
, decl
))
3489 inform_shadowed (old
);
3496 /* Don't emit -Wshadow for name-independent decls. */
3497 if (name_independent_decl_p (decl
))
3500 /* Don't warn for artificial things that are not implicit typedefs. */
3501 if (DECL_ARTIFICIAL (decl
) && !DECL_IMPLICIT_TYPEDEF_P (decl
))
3504 if (nonlambda_method_basetype ())
3505 if (tree member
= lookup_member (current_nonlambda_class_type (),
3506 DECL_NAME (decl
), /*protect=*/0,
3507 /*want_type=*/false, tf_warning_or_error
))
3509 member
= MAYBE_BASELINK_FUNCTIONS (member
);
3511 /* Warn if a variable shadows a non-function, or the variable
3512 is a function or a pointer-to-function. */
3513 if ((!OVL_P (member
)
3514 || TREE_CODE (decl
) == FUNCTION_DECL
3515 || (TREE_TYPE (decl
)
3516 && (TYPE_PTRFN_P (TREE_TYPE (decl
))
3517 || TYPE_PTRMEMFUNC_P (TREE_TYPE (decl
)))))
3518 && !warning_suppressed_p (decl
, OPT_Wshadow
))
3520 auto_diagnostic_group d
;
3521 if (warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wshadow
,
3522 "declaration of %qD shadows a member of %qT",
3523 decl
, current_nonlambda_class_type ())
3526 inform_shadowed (member
);
3527 suppress_warning (decl
, OPT_Wshadow
);
3533 /* Now look for a namespace shadow. */
3534 old
= find_namespace_value (current_namespace
, DECL_NAME (decl
));
3537 || (TREE_CODE (old
) == TYPE_DECL
3538 && (!DECL_ARTIFICIAL (old
)
3539 || TREE_CODE (decl
) == TYPE_DECL
)))
3540 && !DECL_EXTERNAL (decl
)
3541 && !instantiating_current_function_p ()
3542 && !warning_suppressed_p (decl
, OPT_Wshadow
))
3543 /* XXX shadow warnings in outer-more namespaces */
3545 auto_diagnostic_group d
;
3546 if (warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wshadow
,
3547 "declaration of %qD shadows a global declaration",
3550 inform_shadowed (old
);
3551 suppress_warning (decl
, OPT_Wshadow
);
3559 /* DECL is being pushed inside function CTX. Set its context, if
3563 set_decl_context_in_fn (tree ctx
, tree decl
)
3565 if (TREE_CODE (decl
) == FUNCTION_DECL
3566 || (VAR_P (decl
) && DECL_EXTERNAL (decl
)))
3567 /* Make sure local externs are marked as such. OMP UDRs really
3568 are nested functions. */
3569 gcc_checking_assert (DECL_LOCAL_DECL_P (decl
)
3570 && (DECL_NAMESPACE_SCOPE_P (decl
)
3571 || (TREE_CODE (decl
) == FUNCTION_DECL
3572 && DECL_OMP_DECLARE_REDUCTION_P (decl
))));
3574 if (!DECL_CONTEXT (decl
)
3575 /* When parsing the parameter list of a function declarator,
3576 don't set DECL_CONTEXT to an enclosing function. */
3577 && !(TREE_CODE (decl
) == PARM_DECL
3578 && parsing_function_declarator ()))
3579 DECL_CONTEXT (decl
) = ctx
;
3582 /* DECL is a local extern decl. Find or create the namespace-scope
3583 decl that it aliases. Also, determines the linkage of DECL. */
3586 push_local_extern_decl_alias (tree decl
)
3588 if (dependent_type_p (TREE_TYPE (decl
))
3589 || (processing_template_decl
3591 && CP_DECL_THREAD_LOCAL_P (decl
)))
3593 /* EH specs were not part of the function type prior to c++17, but
3594 we still can't go pushing dependent eh specs into the namespace. */
3595 if (cxx_dialect
< cxx17
3596 && TREE_CODE (decl
) == FUNCTION_DECL
3597 && (value_dependent_expression_p
3598 (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl
)))))
3601 gcc_checking_assert (!DECL_LANG_SPECIFIC (decl
)
3602 || !DECL_TEMPLATE_INFO (decl
));
3603 if (DECL_LANG_SPECIFIC (decl
) && DECL_LOCAL_DECL_ALIAS (decl
))
3604 /* We're instantiating a non-dependent local decl, it already
3608 tree alias
= NULL_TREE
;
3610 if (DECL_SIZE (decl
) && !TREE_CONSTANT (DECL_SIZE (decl
)))
3611 /* Do not let a VLA creep into a namespace. Diagnostic will be
3612 emitted in layout_var_decl later. */
3613 alias
= error_mark_node
;
3616 /* First look for a decl that matches. */
3617 tree ns
= CP_DECL_CONTEXT (decl
);
3618 tree binding
= find_namespace_value (ns
, DECL_NAME (decl
));
3620 if (binding
&& TREE_CODE (binding
) != TREE_LIST
)
3621 for (ovl_iterator
iter (binding
); iter
; ++iter
)
3622 if (decls_match (decl
, *iter
, /*record_versions*/false))
3630 /* No existing namespace-scope decl. Make one. */
3631 alias
= copy_decl (decl
);
3632 if (TREE_CODE (alias
) == FUNCTION_DECL
)
3634 /* Recontextualize the parms. */
3635 for (tree
*chain
= &DECL_ARGUMENTS (alias
);
3636 *chain
; chain
= &DECL_CHAIN (*chain
))
3638 *chain
= copy_decl (*chain
);
3639 DECL_CONTEXT (*chain
) = alias
;
3642 tree type
= TREE_TYPE (alias
);
3643 for (tree args
= TYPE_ARG_TYPES (type
);
3644 args
; args
= TREE_CHAIN (args
))
3645 if (TREE_PURPOSE (args
))
3647 /* There are default args. Lose them. */
3648 tree nargs
= NULL_TREE
;
3649 tree
*chain
= &nargs
;
3650 for (args
= TYPE_ARG_TYPES (type
);
3651 args
; args
= TREE_CHAIN (args
))
3652 if (args
== void_list_node
)
3660 = build_tree_list (NULL_TREE
, TREE_VALUE (args
));
3661 chain
= &TREE_CHAIN (*chain
);
3664 tree fn_type
= build_function_type (TREE_TYPE (type
), nargs
);
3666 fn_type
= apply_memfn_quals
3667 (fn_type
, type_memfn_quals (type
));
3669 fn_type
= build_cp_fntype_variant
3670 (fn_type
, type_memfn_rqual (type
),
3671 TYPE_RAISES_EXCEPTIONS (type
),
3672 TYPE_HAS_LATE_RETURN_TYPE (type
));
3674 TREE_TYPE (alias
) = fn_type
;
3679 /* This is the real thing. */
3680 DECL_LOCAL_DECL_P (alias
) = false;
3682 /* Expected default linkage is from the namespace. */
3683 TREE_PUBLIC (alias
) = TREE_PUBLIC (ns
);
3684 push_nested_namespace (ns
);
3685 alias
= pushdecl (alias
, /* hiding= */true);
3686 pop_nested_namespace (ns
);
3688 && CP_DECL_THREAD_LOCAL_P (decl
)
3689 && alias
!= error_mark_node
)
3690 set_decl_tls_model (alias
, DECL_TLS_MODEL (decl
));
3692 /* Adjust visibility. */
3693 determine_visibility (alias
);
3697 retrofit_lang_decl (decl
);
3698 DECL_LOCAL_DECL_ALIAS (decl
) = alias
;
3701 /* If DECL has non-internal linkage, and we have a module vector,
3702 record it in the appropriate slot. We have already checked for
3706 maybe_record_mergeable_decl (tree
*slot
, tree name
, tree decl
)
3708 if (TREE_CODE (*slot
) != BINDING_VECTOR
)
3711 if (!TREE_PUBLIC (CP_DECL_CONTEXT (decl
)))
3712 /* Member of internal namespace. */
3715 tree not_tmpl
= STRIP_TEMPLATE (decl
);
3716 if ((TREE_CODE (not_tmpl
) == FUNCTION_DECL
3717 || VAR_P (not_tmpl
))
3718 && DECL_THIS_STATIC (not_tmpl
))
3719 /* Internal linkage. */
3722 bool is_attached
= (DECL_LANG_SPECIFIC (not_tmpl
)
3723 && DECL_MODULE_ATTACH_P (not_tmpl
));
3724 tree
*gslot
= get_fixed_binding_slot
3725 (slot
, name
, is_attached
? BINDING_SLOT_PARTITION
: BINDING_SLOT_GLOBAL
,
3731 = BINDING_VECTOR_CLUSTER (*slot
, 0).slots
[BINDING_SLOT_CURRENT
];
3733 if (!STAT_HACK_P (tree (orig
)))
3734 orig
= stat_hack (tree (orig
));
3736 MODULE_BINDING_GLOBAL_P (tree (orig
)) = true;
3739 add_mergeable_namespace_entity (gslot
, decl
);
3742 /* DECL is being pushed. Check whether it hides or ambiguates
3743 something seen as an import. This include decls seen in our own
3744 interface, which is OK. Also, check for merging a
3745 global/partition decl. */
3748 check_module_override (tree decl
, tree mvec
, bool hiding
,
3749 tree scope
, tree name
)
3751 tree match
= NULL_TREE
;
3752 bitmap imports
= get_import_bitmap ();
3753 binding_cluster
*cluster
= BINDING_VECTOR_CLUSTER_BASE (mvec
);
3754 unsigned ix
= BINDING_VECTOR_NUM_CLUSTERS (mvec
);
3756 if (BINDING_VECTOR_SLOTS_PER_CLUSTER
== BINDING_SLOTS_FIXED
)
3762 for (; ix
--; cluster
++)
3763 for (unsigned jx
= 0; jx
!= BINDING_VECTOR_SLOTS_PER_CLUSTER
; jx
++)
3765 /* Are we importing this module? */
3766 if (cluster
->indices
[jx
].span
!= 1)
3768 if (!cluster
->indices
[jx
].base
)
3770 if (!bitmap_bit_p (imports
, cluster
->indices
[jx
].base
))
3773 if (cluster
->slots
[jx
].is_lazy ())
3775 gcc_assert (cluster
->indices
[jx
].span
== 1);
3776 lazy_load_binding (cluster
->indices
[jx
].base
,
3777 scope
, name
, &cluster
->slots
[jx
]);
3779 tree bind
= cluster
->slots
[jx
];
3781 /* Errors could cause there to be nothing. */
3784 if (STAT_HACK_P (bind
))
3785 /* We do not have to check STAT_TYPE here, the xref_tag
3786 machinery deals with that problem. */
3787 bind
= STAT_VISIBLE (bind
);
3789 for (ovl_iterator
iter (bind
); iter
; ++iter
)
3790 if (!iter
.using_p ())
3792 match
= duplicate_decls (decl
, *iter
, hiding
);
3798 if (TREE_PUBLIC (scope
) && TREE_PUBLIC (STRIP_TEMPLATE (decl
))
3799 /* Namespaces are dealt with specially in
3800 make_namespace_finish. */
3801 && !(TREE_CODE (decl
) == NAMESPACE_DECL
&& !DECL_NAMESPACE_ALIAS (decl
)))
3803 /* Look in the appropriate mergeable decl slot. */
3804 tree mergeable
= NULL_TREE
;
3805 if (named_module_p ())
3806 mergeable
= BINDING_VECTOR_CLUSTER (mvec
, BINDING_SLOT_PARTITION
3807 / BINDING_VECTOR_SLOTS_PER_CLUSTER
)
3808 .slots
[BINDING_SLOT_PARTITION
% BINDING_VECTOR_SLOTS_PER_CLUSTER
];
3810 mergeable
= BINDING_VECTOR_CLUSTER (mvec
, 0).slots
[BINDING_SLOT_GLOBAL
];
3812 for (ovl_iterator
iter (mergeable
); iter
; ++iter
)
3814 match
= duplicate_decls (decl
, *iter
, hiding
);
3823 if (match
!= error_mark_node
)
3825 if (named_module_p ())
3826 BINDING_VECTOR_PARTITION_DUPS_P (mvec
) = true;
3828 BINDING_VECTOR_GLOBAL_DUPS_P (mvec
) = true;
3836 /* Record DECL as belonging to the current lexical scope. Check for
3837 errors (such as an incompatible declaration for the same name
3838 already seen in the same scope).
3840 The new binding is hidden if HIDING is true (an anticipated builtin
3843 Returns either DECL or an old decl for the same name. If an old
3844 decl is returned, it may have been smashed to agree with what DECL
3848 pushdecl (tree decl
, bool hiding
)
3850 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
3852 if (decl
== error_mark_node
)
3853 return error_mark_node
;
3855 if (!DECL_TEMPLATE_PARM_P (decl
) && current_function_decl
&& !hiding
)
3856 set_decl_context_in_fn (current_function_decl
, decl
);
3858 /* The binding level we will be pushing into. During local class
3859 pushing, we want to push to the containing scope. */
3860 cp_binding_level
*level
= current_binding_level
;
3861 while (level
->kind
== sk_class
3862 || level
->kind
== sk_cleanup
)
3863 level
= level
->level_chain
;
3865 /* An anonymous namespace has a NULL DECL_NAME, but we still want to
3866 insert it. Other NULL-named decls, not so much. */
3867 tree name
= DECL_NAME (decl
);
3868 if (name
? !IDENTIFIER_ANON_P (name
) : TREE_CODE (decl
) == NAMESPACE_DECL
)
3870 cxx_binding
*binding
= NULL
; /* Local scope binding. */
3871 tree ns
= NULL_TREE
; /* Searched namespace. */
3872 tree
*slot
= NULL
; /* Binding slot in namespace. */
3873 tree
*mslot
= NULL
; /* Current module slot in namespace. */
3874 tree old
= NULL_TREE
;
3875 bool name_independent_p
= false;
3876 bool name_independent_diagnosed_p
= false;
3878 if (level
->kind
== sk_namespace
)
3880 /* We look in the decl's namespace for an existing
3881 declaration, even though we push into the current
3883 ns
= (DECL_NAMESPACE_SCOPE_P (decl
)
3884 ? CP_DECL_CONTEXT (decl
) : current_namespace
);
3885 /* Create the binding, if this is current namespace, because
3886 that's where we'll be pushing anyway. */
3887 slot
= find_namespace_slot (ns
, name
, ns
== current_namespace
);
3890 mslot
= get_fixed_binding_slot (slot
, name
, BINDING_SLOT_CURRENT
,
3891 ns
== current_namespace
);
3892 old
= MAYBE_STAT_DECL (*mslot
);
3897 binding
= find_local_binding (level
, name
);
3899 old
= binding
->value
;
3900 name_independent_p
= name_independent_decl_p (decl
);
3903 if (old
== error_mark_node
)
3907 for (oldi
= old
; oldi
; oldi
= oldn
)
3909 if (TREE_CODE (oldi
) == TREE_LIST
)
3911 gcc_checking_assert (level
->kind
!= sk_namespace
3912 && name_independent_decl_p
3913 (TREE_VALUE (old
)));
3914 oldn
= TREE_CHAIN (oldi
);
3915 oldi
= TREE_VALUE (oldi
);
3919 for (ovl_iterator
iter (oldi
); iter
; ++iter
)
3920 if (iter
.using_p ())
3921 ; /* Ignore using decls here. */
3922 else if (iter
.hidden_p ()
3923 && TREE_CODE (*iter
) == FUNCTION_DECL
3924 && DECL_LANG_SPECIFIC (*iter
)
3925 && DECL_MODULE_IMPORT_P (*iter
))
3926 ; /* An undeclared builtin imported from elsewhere. */
3927 else if (name_independent_p
)
3929 /* Ignore name-independent declarations. */
3930 if (cxx_dialect
< cxx26
&& !name_independent_diagnosed_p
)
3931 pedwarn (DECL_SOURCE_LOCATION (decl
), OPT_Wc__26_extensions
,
3932 "name-independent declarations only available with "
3933 "%<-std=c++2c%> or %<-std=gnu++2c%>");
3934 name_independent_diagnosed_p
= true;
3937 = duplicate_decls (decl
, *iter
, hiding
, iter
.hidden_p ()))
3939 if (match
== error_mark_node
)
3941 else if (TREE_CODE (match
) == TYPE_DECL
)
3942 gcc_checking_assert (REAL_IDENTIFIER_TYPE_VALUE (name
)
3943 == (level
->kind
== sk_namespace
3944 ? NULL_TREE
: TREE_TYPE (match
)));
3945 else if (iter
.hidden_p () && !hiding
)
3947 /* Unhiding a previously hidden decl. */
3948 tree head
= iter
.reveal_node (oldi
);
3951 gcc_checking_assert (ns
);
3952 if (STAT_HACK_P (*slot
))
3953 STAT_DECL (*slot
) = head
;
3957 if (DECL_EXTERN_C_P (match
))
3958 /* We need to check and register the decl now. */
3959 check_extern_c_conflict (match
);
3963 && STAT_HACK_P (*slot
)
3964 && STAT_DECL_HIDDEN_P (*slot
))
3966 /* Unhide the non-function. */
3967 gcc_checking_assert (oldi
== match
);
3968 if (!STAT_TYPE (*slot
))
3971 STAT_DECL (*slot
) = match
;
3977 /* Check for redeclaring an import. */
3978 if (slot
&& *slot
&& TREE_CODE (*slot
) == BINDING_VECTOR
)
3980 = check_module_override (decl
, *slot
, hiding
, ns
, name
))
3982 if (match
== error_mark_node
)
3985 /* We found a decl in an interface, push it into this
3987 decl
= update_binding (NULL
, binding
, mslot
, old
,
3993 /* We are pushing a new decl. */
3995 /* Skip a hidden builtin we failed to match already. There can
3997 if (old
&& anticipated_builtin_p (old
))
3998 old
= OVL_CHAIN (old
);
4000 check_template_shadow (decl
);
4002 if (DECL_DECLARES_FUNCTION_P (decl
))
4004 check_default_args (decl
);
4008 if (level
->kind
!= sk_namespace
)
4010 /* In a local class, a friend function declaration must
4011 find a matching decl in the innermost non-class scope.
4012 [class.friend/11] */
4013 error_at (DECL_SOURCE_LOCATION (decl
),
4014 "friend declaration %qD in local class without "
4015 "prior local declaration", decl
);
4016 /* Don't attempt to push it. */
4017 return error_mark_node
;
4022 if (level
->kind
!= sk_namespace
)
4024 tree local_shadow
= check_local_shadow (decl
);
4025 if (name_independent_p
&& local_shadow
)
4027 if (cxx_dialect
< cxx26
&& !name_independent_diagnosed_p
)
4028 pedwarn (DECL_SOURCE_LOCATION (decl
), OPT_Wc__26_extensions
,
4029 "name-independent declarations only available with "
4030 "%<-std=c++2c%> or %<-std=gnu++2c%>");
4031 name_independent_diagnosed_p
= true;
4032 /* When a name-independent declaration is pushed into a scope
4033 which itself does not contain a _ named declaration yet (so
4034 _ name lookups wouldn't be normally ambiguous), but it
4035 shadows a _ declaration in some outer scope in cases
4036 described in [basic.scope.block]/2 where if the names of
4037 the shadowed and shadowing declarations were different it
4038 would be ill-formed program, arrange for _ name lookups
4039 in this scope to be ambiguous. */
4040 if (old
== NULL_TREE
)
4042 old
= build_tree_list (error_mark_node
, local_shadow
);
4043 TREE_TYPE (old
) = error_mark_node
;
4047 if (TREE_CODE (decl
) == NAMESPACE_DECL
)
4048 /* A local namespace alias. */
4049 set_identifier_type_value_with_scope (name
, NULL_TREE
, level
);
4052 binding
= create_local_binding (level
, name
);
4056 ns
= current_namespace
;
4057 slot
= find_namespace_slot (ns
, name
, true);
4058 mslot
= get_fixed_binding_slot (slot
, name
, BINDING_SLOT_CURRENT
, true);
4059 /* Update OLD to reflect the namespace we're going to be
4061 old
= MAYBE_STAT_DECL (*mslot
);
4064 old
= update_binding (level
, binding
, mslot
, old
, decl
, hiding
);
4067 /* An existing decl matched, use it. */
4071 if (TREE_CODE (decl
) == TYPE_DECL
)
4073 tree type
= TREE_TYPE (decl
);
4075 if (type
!= error_mark_node
)
4077 if (TYPE_NAME (type
) != decl
)
4078 set_underlying_type (decl
);
4080 set_identifier_type_value_with_scope (name
, decl
, level
);
4082 if (level
->kind
!= sk_namespace
4083 && !instantiating_current_function_p ())
4084 /* This is a locally defined typedef in a function that
4085 is not a template instantation, record it to implement
4086 -Wunused-local-typedefs. */
4087 record_locally_defined_typedef (decl
);
4090 else if (VAR_OR_FUNCTION_DECL_P (decl
))
4092 if (DECL_EXTERN_C_P (decl
))
4093 check_extern_c_conflict (decl
);
4095 if (!DECL_LOCAL_DECL_P (decl
)
4097 maybe_register_incomplete_var (decl
);
4099 if (DECL_LOCAL_DECL_P (decl
)
4100 && NAMESPACE_SCOPE_P (decl
))
4101 push_local_extern_decl_alias (decl
);
4104 if (level
->kind
== sk_namespace
4105 && TREE_PUBLIC (level
->this_entity
)
4107 maybe_record_mergeable_decl (slot
, name
, decl
);
4111 add_decl_to_level (level
, decl
);
4116 /* A mergeable entity is being loaded into namespace NS slot NAME.
4117 Create and return the appropriate vector slot for that. Either a
4118 GMF slot or a module-specific one. */
4121 mergeable_namespace_slots (tree ns
, tree name
, bool is_attached
, tree
*vec
)
4123 tree
*mslot
= find_namespace_slot (ns
, name
, true);
4124 tree
*vslot
= get_fixed_binding_slot
4125 (mslot
, name
, is_attached
? BINDING_SLOT_PARTITION
: BINDING_SLOT_GLOBAL
,
4128 gcc_checking_assert (TREE_CODE (*mslot
) == BINDING_VECTOR
);
4134 /* DECL is a new mergeable namespace-scope decl. Add it to the
4135 mergeable entities on GSLOT. */
4138 add_mergeable_namespace_entity (tree
*gslot
, tree decl
)
4140 *gslot
= ovl_make (decl
, *gslot
);
4143 /* A mergeable entity of KLASS called NAME is being loaded. Return
4144 the set of things it could be. All such non-as_base classes have
4145 been given a member vec. */
4148 lookup_class_binding (tree klass
, tree name
)
4150 tree found
= NULL_TREE
;
4152 if (!COMPLETE_TYPE_P (klass
))
4154 else if (TYPE_LANG_SPECIFIC (klass
))
4156 vec
<tree
, va_gc
> *member_vec
= CLASSTYPE_MEMBER_VEC (klass
);
4158 found
= member_vec_binary_search (member_vec
, name
);
4161 else if (STAT_HACK_P (found
))
4162 /* Rearrange the stat hack so that we don't need to expose that
4164 found
= ovl_make (STAT_TYPE (found
), STAT_DECL (found
));
4165 else if (IDENTIFIER_CONV_OP_P (name
))
4167 gcc_checking_assert (name
== conv_op_identifier
);
4168 found
= OVL_CHAIN (found
);
4173 gcc_checking_assert (IS_FAKE_BASE_TYPE (klass
)
4174 || TYPE_PTRMEMFUNC_P (klass
));
4175 found
= fields_linear_search (klass
, name
, false);
4181 /* Given a namespace-level binding BINDING, walk it, calling CALLBACK
4182 for all decls of the current module. When partitions are involved,
4183 decls might be mentioned more than once. Return the accumulation of
4184 CALLBACK results. */
4187 walk_module_binding (tree binding
, bitmap partitions
,
4188 bool (*callback
) (tree decl
, WMB_Flags
, void *data
),
4191 // FIXME: We don't quite deal with using decls naming stat hack
4193 tree current
= binding
;
4196 if (TREE_CODE (binding
) == BINDING_VECTOR
)
4197 current
= BINDING_VECTOR_CLUSTER (binding
, 0).slots
[BINDING_SLOT_CURRENT
];
4199 bool decl_hidden
= false;
4200 if (tree type
= MAYBE_STAT_TYPE (current
))
4202 WMB_Flags flags
= WMB_None
;
4203 if (STAT_TYPE_HIDDEN_P (current
))
4204 flags
= WMB_Flags (flags
| WMB_Hidden
);
4205 count
+= callback (type
, flags
, data
);
4206 decl_hidden
= STAT_DECL_HIDDEN_P (current
);
4209 for (ovl_iterator
iter (MAYBE_STAT_DECL (current
)); iter
; ++iter
)
4211 if (iter
.hidden_p ())
4213 if (!(decl_hidden
&& DECL_IS_UNDECLARED_BUILTIN (*iter
)))
4215 WMB_Flags flags
= WMB_None
;
4217 flags
= WMB_Flags (flags
| WMB_Hidden
);
4218 if (iter
.using_p ())
4220 flags
= WMB_Flags (flags
| WMB_Using
);
4221 if (iter
.exporting_p ())
4222 flags
= WMB_Flags (flags
| WMB_Export
);
4224 count
+= callback (*iter
, flags
, data
);
4226 decl_hidden
= false;
4229 if (partitions
&& TREE_CODE (binding
) == BINDING_VECTOR
)
4231 /* Process partition slots. */
4232 binding_cluster
*cluster
= BINDING_VECTOR_CLUSTER_BASE (binding
);
4233 unsigned ix
= BINDING_VECTOR_NUM_CLUSTERS (binding
);
4234 if (BINDING_VECTOR_SLOTS_PER_CLUSTER
== BINDING_SLOTS_FIXED
)
4240 bool maybe_dups
= BINDING_VECTOR_PARTITION_DUPS_P (binding
);
4242 for (; ix
--; cluster
++)
4243 for (unsigned jx
= 0; jx
!= BINDING_VECTOR_SLOTS_PER_CLUSTER
; jx
++)
4244 if (!cluster
->slots
[jx
].is_lazy ())
4245 if (tree bind
= cluster
->slots
[jx
])
4247 if (TREE_CODE (bind
) == NAMESPACE_DECL
4248 && !DECL_NAMESPACE_ALIAS (bind
))
4250 if (unsigned base
= cluster
->indices
[jx
].base
)
4251 if (unsigned span
= cluster
->indices
[jx
].span
)
4253 if (bitmap_bit_p (partitions
, base
))
4255 while (++base
, --span
);
4256 /* Not a partition's namespace. */
4260 WMB_Flags flags
= WMB_None
;
4262 flags
= WMB_Flags (flags
| WMB_Dups
);
4263 count
+= callback (bind
, flags
, data
);
4265 else if (STAT_HACK_P (bind
) && MODULE_BINDING_PARTITION_P (bind
))
4267 if (tree btype
= STAT_TYPE (bind
))
4269 WMB_Flags flags
= WMB_None
;
4271 flags
= WMB_Flags (flags
| WMB_Dups
);
4272 if (STAT_TYPE_HIDDEN_P (bind
))
4273 flags
= WMB_Flags (flags
| WMB_Hidden
);
4275 count
+= callback (btype
, flags
, data
);
4277 bool hidden
= STAT_DECL_HIDDEN_P (bind
);
4278 for (ovl_iterator
iter (MAYBE_STAT_DECL (STAT_DECL (bind
)));
4281 if (iter
.hidden_p ())
4284 (!(hidden
&& DECL_IS_UNDECLARED_BUILTIN (*iter
)));
4286 WMB_Flags flags
= WMB_None
;
4288 flags
= WMB_Flags (flags
| WMB_Dups
);
4290 flags
= WMB_Flags (flags
| WMB_Hidden
);
4291 if (iter
.using_p ())
4293 flags
= WMB_Flags (flags
| WMB_Using
);
4294 if (iter
.exporting_p ())
4295 flags
= WMB_Flags (flags
| WMB_Export
);
4297 count
+= callback (*iter
, flags
, data
);
4307 /* Imported module MOD has a binding to NS::NAME, stored in section
4311 import_module_binding (tree ns
, tree name
, unsigned mod
, unsigned snum
)
4313 tree
*slot
= find_namespace_slot (ns
, name
, true);
4314 binding_slot
*mslot
= append_imported_binding_slot (slot
, name
, mod
);
4316 if (mslot
->is_lazy () || *mslot
)
4317 /* Oops, something was already there. */
4320 mslot
->set_lazy (snum
);
4324 /* An import of MODULE is binding NS::NAME. There should be no
4325 existing binding for >= MODULE. MOD_GLOB indicates whether MODULE
4326 is a header_unit (-1) or part of the current module (+1). VALUE
4327 and TYPE are the value and type bindings. VISIBLE are the value
4328 bindings being exported. */
4331 set_module_binding (tree ns
, tree name
, unsigned mod
, int mod_glob
,
4332 tree value
, tree type
, tree visible
)
4335 /* Bogus BMIs could give rise to nothing to bind. */
4338 gcc_assert (TREE_CODE (value
) != NAMESPACE_DECL
4339 || DECL_NAMESPACE_ALIAS (value
));
4340 gcc_checking_assert (mod
);
4342 tree
*slot
= find_namespace_slot (ns
, name
, true);
4343 binding_slot
*mslot
= search_imported_binding_slot (slot
, mod
);
4345 if (!mslot
|| !mslot
->is_lazy ())
4346 /* Again, bogus BMI could give find to missing or already loaded slot. */
4350 if (type
|| visible
!= bind
|| mod_glob
)
4352 bind
= stat_hack (bind
, type
);
4353 STAT_VISIBLE (bind
) = visible
;
4354 if ((mod_glob
> 0 && TREE_PUBLIC (ns
))
4355 || (type
&& DECL_MODULE_EXPORT_P (type
)))
4356 STAT_TYPE_VISIBLE_P (bind
) = true;
4359 /* Note if this is this-module or global binding. */
4361 MODULE_BINDING_PARTITION_P (bind
) = true;
4362 else if (mod_glob
< 0)
4363 MODULE_BINDING_GLOBAL_P (bind
) = true;
4371 add_module_namespace_decl (tree ns
, tree decl
)
4373 gcc_assert (!DECL_CHAIN (decl
));
4374 gcc_checking_assert (!(VAR_OR_FUNCTION_DECL_P (decl
)
4375 && DECL_LOCAL_DECL_P (decl
)));
4377 /* Expensive already-there? check. */
4378 for (auto probe
= NAMESPACE_LEVEL (ns
)->names
; probe
;
4379 probe
= DECL_CHAIN (probe
))
4380 gcc_assert (decl
!= probe
);
4382 add_decl_to_level (NAMESPACE_LEVEL (ns
), decl
);
4385 maybe_register_incomplete_var (decl
);
4387 if (VAR_OR_FUNCTION_DECL_P (decl
)
4388 && DECL_EXTERN_C_P (decl
))
4389 check_extern_c_conflict (decl
);
4392 /* Enter DECL into the symbol table, if that's appropriate. Returns
4393 DECL, or a modified version thereof. */
4396 maybe_push_decl (tree decl
)
4398 tree type
= TREE_TYPE (decl
);
4400 /* Add this decl to the current binding level, but not if it comes
4401 from another scope, e.g. a static member variable. TEM may equal
4402 DECL or it may be a previous decl of the same name. */
4403 if (decl
== error_mark_node
4404 || (TREE_CODE (decl
) != PARM_DECL
4405 && DECL_CONTEXT (decl
) != NULL_TREE
4406 /* Definitions of namespace members outside their namespace are
4408 && !DECL_NAMESPACE_SCOPE_P (decl
))
4409 || (TREE_CODE (decl
) == TEMPLATE_DECL
&& !namespace_bindings_p ())
4410 || type
== unknown_type_node
4411 /* The declaration of a template specialization does not affect
4412 the functions available for overload resolution, so we do not
4414 || (TREE_CODE (decl
) == FUNCTION_DECL
4415 && DECL_TEMPLATE_SPECIALIZATION (decl
)))
4418 return pushdecl (decl
);
4421 /* Bind DECL to ID in the current_binding_level, assumed to be a local
4422 binding level. If IS_USING is true, DECL got here through a
4423 using-declaration. */
4426 push_local_binding (tree id
, tree decl
, bool is_using
)
4428 /* Skip over any local classes. This makes sense if we call
4429 push_local_binding with a friend decl of a local class. */
4430 cp_binding_level
*b
= innermost_nonclass_level ();
4432 gcc_assert (b
->kind
!= sk_namespace
);
4433 if (find_local_binding (b
, id
))
4435 /* Supplement the existing binding. */
4436 if (!supplement_binding (IDENTIFIER_BINDING (id
), decl
))
4437 /* It didn't work. Something else must be bound at this
4438 level. Do not add DECL to the list of things to pop
4443 /* Create a new binding. */
4444 push_binding (id
, decl
, b
);
4446 if (TREE_CODE (decl
) == OVERLOAD
|| is_using
)
4447 /* We must put the OVERLOAD or using into a TREE_LIST since we
4448 cannot use the decl's chain itself. */
4449 decl
= build_tree_list (id
, decl
);
4451 /* And put DECL on the list of things declared by the current
4453 add_decl_to_level (b
, decl
);
4457 /* true means unconditionally make a BLOCK for the next level pushed. */
4459 static bool keep_next_level_flag
;
4461 static int binding_depth
= 0;
4468 for (i
= 0; i
< depth
* 2; i
++)
4472 /* Return a string describing the kind of SCOPE we have. */
4474 cp_binding_level_descriptor (cp_binding_level
*scope
)
4476 /* The order of this table must match the "scope_kind"
4478 static const char* scope_kind_names
[] = {
4486 "function-parameter-scope",
4490 "template-parameter-scope",
4491 "template-explicit-spec-scope",
4492 "transaction-scope",
4495 static_assert (ARRAY_SIZE (scope_kind_names
) == sk_count
,
4496 "must keep names aligned with scope_kind enum");
4498 scope_kind kind
= scope
->kind
;
4499 if (kind
== sk_template_parms
&& scope
->explicit_spec_p
)
4500 kind
= sk_template_spec
;
4502 return scope_kind_names
[kind
];
4505 /* Output a debugging information about SCOPE when performing
4508 cp_binding_level_debug (cp_binding_level
*scope
, int line
, const char *action
)
4510 const char *desc
= cp_binding_level_descriptor (scope
);
4511 if (scope
->this_entity
)
4512 verbatim ("%s %<%s(%E)%> %p %d", action
, desc
,
4513 scope
->this_entity
, (void *) scope
, line
);
4515 verbatim ("%s %s %p %d", action
, desc
, (void *) scope
, line
);
4518 /* A chain of binding_level structures awaiting reuse. */
4520 static GTY((deletable
)) cp_binding_level
*free_binding_level
;
4522 /* Insert SCOPE as the innermost binding level. */
4525 push_binding_level (cp_binding_level
*scope
)
4527 /* Add it to the front of currently active scopes stack. */
4528 scope
->level_chain
= current_binding_level
;
4529 current_binding_level
= scope
;
4530 keep_next_level_flag
= false;
4532 if (ENABLE_SCOPE_CHECKING
)
4534 scope
->binding_depth
= binding_depth
;
4535 indent (binding_depth
);
4536 cp_binding_level_debug (scope
, LOCATION_LINE (input_location
),
4542 /* Create a new KIND scope and make it the top of the active scopes stack.
4543 ENTITY is the scope of the associated C++ entity (namespace, class,
4544 function, C++0x enumeration); it is NULL otherwise. */
4547 begin_scope (scope_kind kind
, tree entity
)
4549 cp_binding_level
*scope
;
4551 /* Reuse or create a struct for this binding level. */
4552 if (!ENABLE_SCOPE_CHECKING
&& free_binding_level
)
4554 scope
= free_binding_level
;
4555 free_binding_level
= scope
->level_chain
;
4556 memset (scope
, 0, sizeof (cp_binding_level
));
4559 scope
= ggc_cleared_alloc
<cp_binding_level
> ();
4561 scope
->this_entity
= entity
;
4562 scope
->more_cleanups_ok
= true;
4569 case sk_template_spec
:
4570 scope
->explicit_spec_p
= true;
4571 kind
= sk_template_parms
;
4573 case sk_template_parms
:
4580 case sk_scoped_enum
:
4581 case sk_transaction
:
4584 scope
->keep
= keep_next_level_flag
;
4587 case sk_function_parms
:
4588 scope
->keep
= keep_next_level_flag
;
4592 NAMESPACE_LEVEL (entity
) = scope
;
4596 /* Should not happen. */
4602 push_binding_level (scope
);
4607 /* We're about to leave current scope. Pop the top of the stack of
4608 currently active scopes. Return the enclosing scope, now active. */
4613 cp_binding_level
*scope
= current_binding_level
;
4615 if (scope
->kind
== sk_namespace
&& class_binding_level
)
4616 current_binding_level
= class_binding_level
;
4618 /* We cannot leave a scope, if there are none left. */
4619 if (NAMESPACE_LEVEL (global_namespace
))
4620 gcc_assert (!global_scope_p (scope
));
4622 if (ENABLE_SCOPE_CHECKING
)
4624 indent (--binding_depth
);
4625 cp_binding_level_debug (scope
, LOCATION_LINE (input_location
),
4629 /* Move one nesting level up. */
4630 current_binding_level
= scope
->level_chain
;
4632 /* Namespace-scopes are left most probably temporarily, not
4633 completely; they can be reopened later, e.g. in namespace-extension
4634 or any name binding activity that requires us to resume a
4635 namespace. For classes, we cache some binding levels. For other
4636 scopes, we just make the structure available for reuse. */
4637 if (scope
->kind
!= sk_namespace
4638 && scope
!= previous_class_level
)
4640 scope
->level_chain
= free_binding_level
;
4641 gcc_assert (!ENABLE_SCOPE_CHECKING
4642 || scope
->binding_depth
== binding_depth
);
4643 free_binding_level
= scope
;
4646 if (scope
->kind
== sk_class
)
4648 /* Reset DEFINING_CLASS_P to allow for reuse of a
4649 class-defining scope in a non-defining context. */
4650 scope
->defining_class_p
= 0;
4652 /* Find the innermost enclosing class scope, and reset
4653 CLASS_BINDING_LEVEL appropriately. */
4654 class_binding_level
= NULL
;
4655 for (scope
= current_binding_level
; scope
; scope
= scope
->level_chain
)
4656 if (scope
->kind
== sk_class
)
4658 class_binding_level
= scope
;
4663 return current_binding_level
;
4666 /* When we exit a toplevel class scope, we save its binding level so
4667 that we can restore it quickly. Here, we've entered some other
4668 class, so we must invalidate our cache. */
4671 invalidate_class_lookup_cache (void)
4673 previous_class_level
->level_chain
= free_binding_level
;
4674 free_binding_level
= previous_class_level
;
4675 previous_class_level
= NULL
;
4679 resume_scope (cp_binding_level
* b
)
4681 /* Resuming binding levels is meant only for namespaces,
4682 and those cannot nest into classes. */
4683 gcc_assert (!class_binding_level
);
4684 /* Also, resuming a non-directly nested namespace is a no-no. */
4685 gcc_assert (b
->level_chain
== current_binding_level
);
4686 current_binding_level
= b
;
4687 if (ENABLE_SCOPE_CHECKING
)
4689 b
->binding_depth
= binding_depth
;
4690 indent (binding_depth
);
4691 cp_binding_level_debug (b
, LOCATION_LINE (input_location
), "resume");
4696 /* Return the innermost binding level that is not for a class scope. */
4698 static cp_binding_level
*
4699 innermost_nonclass_level (void)
4701 cp_binding_level
*b
;
4703 b
= current_binding_level
;
4704 while (b
->kind
== sk_class
)
4710 /* We're defining an object of type TYPE. If it needs a cleanup, but
4711 we're not allowed to add any more objects with cleanups to the current
4712 scope, create a new binding level. */
4715 maybe_push_cleanup_level (tree type
)
4717 if (type
!= error_mark_node
4718 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
)
4719 && current_binding_level
->more_cleanups_ok
== 0)
4721 begin_scope (sk_cleanup
, NULL
);
4722 current_binding_level
->statement_list
= push_stmt_list ();
4726 /* Return true if we are in the global binding level. */
4729 global_bindings_p (void)
4731 return global_scope_p (current_binding_level
);
4734 /* True if we are currently in a toplevel binding level. This
4735 means either the global binding level or a namespace in a toplevel
4736 binding level. Since there are no non-toplevel namespace levels,
4737 this really means any namespace or template parameter level. We
4738 also include a class whose context is toplevel. */
4741 toplevel_bindings_p (void)
4743 cp_binding_level
*b
= innermost_nonclass_level ();
4745 return b
->kind
== sk_namespace
|| b
->kind
== sk_template_parms
;
4748 /* True if this is a namespace scope, or if we are defining a class
4749 which is itself at namespace scope, or whose enclosing class is
4750 such a class, etc. */
4753 namespace_bindings_p (void)
4755 cp_binding_level
*b
= innermost_nonclass_level ();
4757 return b
->kind
== sk_namespace
;
4760 /* True if the innermost non-class scope is a block scope. */
4763 local_bindings_p (void)
4765 cp_binding_level
*b
= innermost_nonclass_level ();
4766 return b
->kind
< sk_function_parms
|| b
->kind
== sk_omp
;
4769 /* True if the current level needs to have a BLOCK made. */
4774 return (current_binding_level
->blocks
!= NULL_TREE
4775 || current_binding_level
->keep
4776 || current_binding_level
->kind
== sk_cleanup
4777 || current_binding_level
->names
!= NULL_TREE
4778 || current_binding_level
->using_directives
);
4781 /* Returns the kind of the innermost scope. */
4784 innermost_scope_kind (void)
4786 return current_binding_level
->kind
;
4789 /* Returns true if this scope was created to store template parameters. */
4792 template_parm_scope_p (void)
4794 return innermost_scope_kind () == sk_template_parms
;
4797 /* If KEEP is true, make a BLOCK node for the next binding level,
4798 unconditionally. Otherwise, use the normal logic to decide whether
4799 or not to create a BLOCK. */
4802 keep_next_level (bool keep
)
4804 keep_next_level_flag
= keep
;
4807 /* Return the list of declarations of the current local scope. */
4810 get_local_decls (void)
4812 gcc_assert (current_binding_level
->kind
!= sk_namespace
4813 && current_binding_level
->kind
!= sk_class
);
4814 return current_binding_level
->names
;
4817 /* Return how many function prototypes we are currently nested inside. */
4820 function_parm_depth (void)
4823 cp_binding_level
*b
;
4825 for (b
= current_binding_level
;
4826 b
->kind
== sk_function_parms
;
4833 /* For debugging. */
4834 static int no_print_functions
= 0;
4835 static int no_print_builtins
= 0;
4838 print_binding_level (cp_binding_level
* lvl
)
4842 if (lvl
->this_entity
)
4843 print_node_brief (stderr
, "entity=", lvl
->this_entity
, 1);
4844 fprintf (stderr
, " blocks=%p", (void *) lvl
->blocks
);
4845 if (lvl
->more_cleanups_ok
)
4846 fprintf (stderr
, " more-cleanups-ok");
4847 if (lvl
->have_cleanups
)
4848 fprintf (stderr
, " have-cleanups");
4849 fprintf (stderr
, "\n");
4852 fprintf (stderr
, " names:\t");
4853 /* We can probably fit 3 names to a line? */
4854 for (t
= lvl
->names
; t
; t
= TREE_CHAIN (t
))
4856 if (no_print_functions
&& (TREE_CODE (t
) == FUNCTION_DECL
))
4858 if (no_print_builtins
4859 && (TREE_CODE (t
) == TYPE_DECL
)
4860 && DECL_IS_UNDECLARED_BUILTIN (t
))
4863 /* Function decls tend to have longer names. */
4864 if (TREE_CODE (t
) == FUNCTION_DECL
)
4871 fprintf (stderr
, "\n\t");
4874 print_node_brief (stderr
, "", t
, 0);
4875 if (t
== error_mark_node
)
4879 fprintf (stderr
, "\n");
4881 if (vec_safe_length (lvl
->class_shadowed
))
4884 cp_class_binding
*b
;
4885 fprintf (stderr
, " class-shadowed:");
4886 FOR_EACH_VEC_ELT (*lvl
->class_shadowed
, i
, b
)
4887 fprintf (stderr
, " %s ", IDENTIFIER_POINTER (b
->identifier
));
4888 fprintf (stderr
, "\n");
4890 if (lvl
->type_shadowed
)
4892 fprintf (stderr
, " type-shadowed:");
4893 for (t
= lvl
->type_shadowed
; t
; t
= TREE_CHAIN (t
))
4895 fprintf (stderr
, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t
)));
4897 fprintf (stderr
, "\n");
4902 debug (cp_binding_level
&ref
)
4904 print_binding_level (&ref
);
4908 debug (cp_binding_level
*ptr
)
4913 fprintf (stderr
, "<nil>\n");
4917 print_other_binding_stack (cp_binding_level
*stack
)
4919 cp_binding_level
*level
;
4920 for (level
= stack
; !global_scope_p (level
); level
= level
->level_chain
)
4922 fprintf (stderr
, "binding level %p\n", (void *) level
);
4923 print_binding_level (level
);
4928 print_binding_stack (void)
4930 cp_binding_level
*b
;
4931 fprintf (stderr
, "current_binding_level=%p\n"
4932 "class_binding_level=%p\n"
4933 "NAMESPACE_LEVEL (global_namespace)=%p\n",
4934 (void *) current_binding_level
, (void *) class_binding_level
,
4935 (void *) NAMESPACE_LEVEL (global_namespace
));
4936 if (class_binding_level
)
4938 for (b
= class_binding_level
; b
; b
= b
->level_chain
)
4939 if (b
== current_binding_level
)
4942 b
= class_binding_level
;
4944 b
= current_binding_level
;
4947 b
= current_binding_level
;
4948 print_other_binding_stack (b
);
4949 fprintf (stderr
, "global:\n");
4950 print_binding_level (NAMESPACE_LEVEL (global_namespace
));
4953 /* Push a definition of struct, union or enum tag named ID. into
4954 binding_level B. DECL is a TYPE_DECL for the type. DECL has
4955 already been pushed into its binding level. This is bookkeeping to
4959 set_identifier_type_value_with_scope (tree id
, tree decl
, cp_binding_level
*b
)
4961 if (b
->kind
== sk_namespace
)
4962 /* At namespace scope we should not see an identifier type value. */
4963 gcc_checking_assert (!REAL_IDENTIFIER_TYPE_VALUE (id
)
4964 /* We could be pushing a friend underneath a template
4965 parm (ill-formed). */
4967 (TYPE_NAME (REAL_IDENTIFIER_TYPE_VALUE (id
)))));
4970 /* Push the current type value, so we can restore it later */
4971 tree old
= REAL_IDENTIFIER_TYPE_VALUE (id
);
4972 b
->type_shadowed
= tree_cons (id
, old
, b
->type_shadowed
);
4973 tree type
= decl
? TREE_TYPE (decl
) : NULL_TREE
;
4974 TREE_TYPE (b
->type_shadowed
) = type
;
4975 SET_IDENTIFIER_TYPE_VALUE (id
, type
);
4979 /* As set_identifier_type_value_with_scope, but using
4980 current_binding_level. */
4983 set_identifier_type_value (tree id
, tree decl
)
4985 set_identifier_type_value_with_scope (id
, decl
, current_binding_level
);
4988 /* Return the name for the constructor (or destructor) for the
4992 constructor_name (tree type
)
4994 tree decl
= TYPE_NAME (TYPE_MAIN_VARIANT (type
));
4996 return decl
? DECL_NAME (decl
) : NULL_TREE
;
4999 /* Returns TRUE if NAME is the name for the constructor for TYPE,
5000 which must be a class type. */
5003 constructor_name_p (tree name
, tree type
)
5005 gcc_assert (MAYBE_CLASS_TYPE_P (type
));
5007 /* These don't have names. */
5008 if (TREE_CODE (type
) == DECLTYPE_TYPE
5009 || TREE_CODE (type
) == TYPEOF_TYPE
)
5012 if (name
&& name
== constructor_name (type
))
5018 /* Same as pushdecl, but define X in binding-level LEVEL. We rely on the
5019 caller to set DECL_CONTEXT properly.
5021 Warning: For class and block-scope this must only be used when X
5022 will be the new innermost binding for its name, as we tack it onto
5023 the front of IDENTIFIER_BINDING without checking to see if the
5024 current IDENTIFIER_BINDING comes from a closer binding level than
5027 Warning: For namespace scope, this will look in LEVEL for an
5028 existing binding to match, but if not found will push the decl into
5029 CURRENT_NAMESPACE. Use push_nested_namespace/pushdecl/
5030 pop_nested_namespace if you really need to push it into a foreign
5034 do_pushdecl_with_scope (tree x
, cp_binding_level
*level
, bool hiding
= false)
5036 cp_binding_level
*b
;
5038 if (level
->kind
== sk_class
)
5040 gcc_checking_assert (!hiding
);
5041 b
= class_binding_level
;
5042 class_binding_level
= level
;
5043 pushdecl_class_level (x
);
5044 class_binding_level
= b
;
5048 tree function_decl
= current_function_decl
;
5049 if (level
->kind
== sk_namespace
)
5050 current_function_decl
= NULL_TREE
;
5051 b
= current_binding_level
;
5052 current_binding_level
= level
;
5053 x
= pushdecl (x
, hiding
);
5054 current_binding_level
= b
;
5055 current_function_decl
= function_decl
;
5060 /* Inject X into the local scope just before the function parms. */
5063 pushdecl_outermost_localscope (tree x
)
5065 cp_binding_level
*b
= NULL
;
5066 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
5068 /* Find the scope just inside the function parms. */
5069 for (cp_binding_level
*n
= current_binding_level
;
5070 n
->kind
!= sk_function_parms
; n
= b
->level_chain
)
5073 return b
? do_pushdecl_with_scope (x
, b
) : error_mark_node
;
5076 /* Checks if BINDING is a binding that we can export. */
5079 check_can_export_using_decl (tree binding
)
5081 tree decl
= STRIP_TEMPLATE (binding
);
5083 /* Linkage is determined by the owner of an enumerator. */
5084 if (TREE_CODE (decl
) == CONST_DECL
)
5085 decl
= TYPE_NAME (DECL_CONTEXT (decl
));
5087 /* If the using decl is exported, the things it refers
5088 to must also be exported (or not have module attachment). */
5089 if (!DECL_MODULE_EXPORT_P (decl
)
5090 && (DECL_LANG_SPECIFIC (decl
)
5091 && DECL_MODULE_ATTACH_P (decl
)))
5093 bool internal_p
= !TREE_PUBLIC (decl
);
5095 /* A template in an anonymous namespace doesn't constrain TREE_PUBLIC
5096 until it's instantiated, so double-check its context. */
5097 if (!internal_p
&& TREE_CODE (binding
) == TEMPLATE_DECL
)
5098 internal_p
= decl_internal_context_p (decl
);
5100 auto_diagnostic_group d
;
5101 error ("exporting %q#D that does not have external linkage",
5103 if (TREE_CODE (decl
) == TYPE_DECL
&& !DECL_IMPLICIT_TYPEDEF_P (decl
))
5104 /* An un-exported explicit type alias has no linkage. */
5105 inform (DECL_SOURCE_LOCATION (binding
),
5106 "%q#D declared here with no linkage", binding
);
5107 else if (internal_p
)
5108 inform (DECL_SOURCE_LOCATION (binding
),
5109 "%q#D declared here with internal linkage", binding
);
5111 inform (DECL_SOURCE_LOCATION (binding
),
5112 "%q#D declared here with module linkage", binding
);
5119 /* Process a local-scope or namespace-scope using declaration. LOOKUP
5120 is the result of qualified lookup (both value & type are
5121 significant). FN_SCOPE_P indicates if we're at function-scope (as
5122 opposed to namespace-scope). *VALUE_P and *TYPE_P are the current
5123 bindings, which are altered to reflect the newly brought in
5127 do_nonmember_using_decl (name_lookup
&lookup
, bool fn_scope_p
,
5128 bool insert_p
, tree
*value_p
, tree
*type_p
)
5130 tree value
= *value_p
;
5131 tree type
= *type_p
;
5132 bool failed
= false;
5134 /* Shift the old and new bindings around so we're comparing class and
5135 enumeration names to each other. */
5136 if (value
&& DECL_IMPLICIT_TYPEDEF_P (value
))
5142 if (lookup
.value
&& DECL_IMPLICIT_TYPEDEF_P (lookup
.value
))
5144 lookup
.type
= lookup
.value
;
5145 lookup
.value
= NULL_TREE
;
5148 /* Only process exporting if we're going to be inserting. */
5149 bool revealing_p
= insert_p
&& !fn_scope_p
&& module_has_cmi_p ();
5151 /* First do the value binding. */
5153 /* Nothing (only implicit typedef found). */
5154 gcc_checking_assert (lookup
.type
);
5155 else if (OVL_P (lookup
.value
) && (!value
|| OVL_P (value
)))
5157 for (lkp_iterator
usings (lookup
.value
); usings
; ++usings
)
5159 tree new_fn
= *usings
;
5160 bool exporting
= revealing_p
&& module_exporting_p ();
5162 exporting
= check_can_export_using_decl (new_fn
);
5164 /* [namespace.udecl]
5166 If a function declaration in namespace scope or block
5167 scope has the same name and the same parameter types as a
5168 function introduced by a using declaration the program is
5170 /* This seems overreaching, asking core -- why do we care
5171 about decls in the namespace that we cannot name (because
5172 they are not transitively imported. We just check the
5173 decls that are in this TU. */
5175 for (ovl_iterator
old (value
); !found
&& old
; ++old
)
5179 if (new_fn
== old_fn
)
5181 /* The function already exists in the current
5182 namespace. We will still want to insert it if
5183 it is revealing a not-revealed thing. */
5187 else if (old
.using_p ())
5190 /* Update in place. 'tis ok. */
5191 OVL_EXPORT_P (old
.get_using ()) = true;
5194 else if (DECL_MODULE_EXPORT_P (new_fn
))
5198 value
= old
.remove_node (value
);
5203 else if (old
.using_p ())
5204 continue; /* This is a using decl. */
5205 else if (old
.hidden_p () && DECL_IS_UNDECLARED_BUILTIN (old_fn
))
5206 continue; /* This is an anticipated builtin. */
5207 else if (!matching_fn_p (new_fn
, old_fn
))
5208 continue; /* Parameters do not match. */
5209 else if (decls_match (new_fn
, old_fn
))
5211 /* Extern "C" in different namespaces. */
5217 diagnose_name_conflict (new_fn
, old_fn
);
5224 if (!found
&& insert_p
)
5225 /* Unlike the decl-pushing case we don't drop anticipated
5226 builtins here. They don't cause a problem, and we'd
5227 like to match them with a future declaration. */
5228 value
= ovl_insert (new_fn
, value
, 1 + exporting
);
5232 /* Ignore anticipated builtins. */
5233 && !anticipated_builtin_p (value
)
5234 && (fn_scope_p
|| !decls_match (lookup
.value
, value
)))
5236 diagnose_name_conflict (lookup
.value
, value
);
5242 && module_exporting_p ()
5243 && check_can_export_using_decl (lookup
.value
)
5244 && lookup
.value
== value
5245 && !DECL_MODULE_EXPORT_P (value
))
5247 /* We're redeclaring the same value, but this time as
5248 newly exported: make sure to mark it as such. */
5249 if (TREE_CODE (value
) == TEMPLATE_DECL
)
5251 DECL_MODULE_EXPORT_P (value
) = true;
5253 tree result
= DECL_TEMPLATE_RESULT (value
);
5254 retrofit_lang_decl (result
);
5255 DECL_MODULE_PURVIEW_P (result
) = true;
5256 DECL_MODULE_EXPORT_P (result
) = true;
5260 retrofit_lang_decl (value
);
5261 DECL_MODULE_PURVIEW_P (value
) = true;
5262 DECL_MODULE_EXPORT_P (value
) = true;
5266 value
= lookup
.value
;
5269 /* Now the type binding. */
5272 if (type
&& !decls_match (lookup
.type
, type
))
5274 diagnose_name_conflict (lookup
.type
, type
);
5280 && module_exporting_p ()
5281 && check_can_export_using_decl (lookup
.type
)
5282 && lookup
.type
== type
5283 && !DECL_MODULE_EXPORT_P (type
))
5285 /* We're redeclaring the same type, but this time as
5286 newly exported: make sure to mark it as such. */
5287 retrofit_lang_decl (type
);
5288 DECL_MODULE_PURVIEW_P (type
) = true;
5289 DECL_MODULE_EXPORT_P (type
) = true;
5298 /* If value is empty, shift any class or enumeration name back. */
5311 /* Returns true if ANCESTOR encloses DESCENDANT, including matching.
5312 Both are namespaces. */
5315 is_nested_namespace (tree ancestor
, tree descendant
, bool inline_only
)
5317 int depth
= SCOPE_DEPTH (ancestor
);
5319 if (!depth
&& !inline_only
)
5320 /* The global namespace encloses everything. */
5323 while (SCOPE_DEPTH (descendant
) > depth
5324 && (!inline_only
|| DECL_NAMESPACE_INLINE_P (descendant
)))
5325 descendant
= CP_DECL_CONTEXT (descendant
);
5327 return ancestor
== descendant
;
5330 /* Returns true if ROOT (a non-alias namespace, class, or function)
5331 encloses CHILD. CHILD may be either a class type or a namespace
5335 is_ancestor (tree root
, tree child
)
5337 gcc_checking_assert ((TREE_CODE (root
) == NAMESPACE_DECL
5338 && !DECL_NAMESPACE_ALIAS (root
))
5339 || TREE_CODE (root
) == FUNCTION_DECL
5340 || CLASS_TYPE_P (root
));
5341 gcc_checking_assert (TREE_CODE (child
) == NAMESPACE_DECL
5342 || CLASS_TYPE_P (child
));
5344 /* The global namespace encloses everything. Early-out for the
5346 if (root
== global_namespace
)
5349 /* Search CHILD until we reach namespace scope. */
5350 while (TREE_CODE (child
) != NAMESPACE_DECL
)
5352 /* If we've reached the ROOT, it encloses CHILD. */
5356 /* Go out one level. */
5358 child
= TYPE_NAME (child
);
5359 child
= CP_DECL_CONTEXT (child
);
5362 if (TREE_CODE (root
) != NAMESPACE_DECL
)
5363 /* Failed to meet the non-namespace we were looking for. */
5366 if (tree alias
= DECL_NAMESPACE_ALIAS (child
))
5369 return is_nested_namespace (root
, child
);
5372 /* Enter the class or namespace scope indicated by T suitable for name
5373 lookup. T can be arbitrary scope, not necessary nested inside the
5374 current scope. Returns a non-null scope to pop iff pop_scope
5375 should be called later to exit this scope. */
5380 if (TREE_CODE (t
) == NAMESPACE_DECL
)
5381 push_decl_namespace (t
);
5382 else if (CLASS_TYPE_P (t
))
5384 if (!at_class_scope_p ()
5385 || !same_type_p (current_class_type
, t
))
5386 push_nested_class (t
);
5388 /* T is the same as the current scope. There is therefore no
5389 need to re-enter the scope. Since we are not actually
5390 pushing a new scope, our caller should not call
5398 /* Leave scope pushed by push_scope. */
5405 if (TREE_CODE (t
) == NAMESPACE_DECL
)
5406 pop_decl_namespace ();
5407 else if CLASS_TYPE_P (t
)
5408 pop_nested_class ();
5411 /* Subroutine of push_inner_scope. */
5414 push_inner_scope_r (tree outer
, tree inner
)
5419 || (TREE_CODE (inner
) != NAMESPACE_DECL
&& !CLASS_TYPE_P (inner
)))
5422 prev
= CP_DECL_CONTEXT (TREE_CODE (inner
) == NAMESPACE_DECL
? inner
: TYPE_NAME (inner
));
5424 push_inner_scope_r (outer
, prev
);
5425 if (TREE_CODE (inner
) == NAMESPACE_DECL
)
5427 cp_binding_level
*save_template_parm
= 0;
5428 /* Temporary take out template parameter scopes. They are saved
5429 in reversed order in save_template_parm. */
5430 while (current_binding_level
->kind
== sk_template_parms
)
5432 cp_binding_level
*b
= current_binding_level
;
5433 current_binding_level
= b
->level_chain
;
5434 b
->level_chain
= save_template_parm
;
5435 save_template_parm
= b
;
5438 resume_scope (NAMESPACE_LEVEL (inner
));
5439 current_namespace
= inner
;
5441 /* Restore template parameter scopes. */
5442 while (save_template_parm
)
5444 cp_binding_level
*b
= save_template_parm
;
5445 save_template_parm
= b
->level_chain
;
5446 b
->level_chain
= current_binding_level
;
5447 current_binding_level
= b
;
5454 /* Enter the scope INNER from current scope. INNER must be a scope
5455 nested inside current scope. This works with both name lookup and
5456 pushing name into scope. In case a template parameter scope is present,
5457 namespace is pushed under the template parameter scope according to
5458 name lookup rule in 14.6.1/6.
5460 Return the former current scope suitable for pop_inner_scope. */
5463 push_inner_scope (tree inner
)
5465 tree outer
= current_scope ();
5467 outer
= current_namespace
;
5469 push_inner_scope_r (outer
, inner
);
5473 /* Exit the current scope INNER back to scope OUTER. */
5476 pop_inner_scope (tree outer
, tree inner
)
5479 || (TREE_CODE (inner
) != NAMESPACE_DECL
&& !CLASS_TYPE_P (inner
)))
5482 while (outer
!= inner
)
5484 if (TREE_CODE (inner
) == NAMESPACE_DECL
)
5486 cp_binding_level
*save_template_parm
= 0;
5487 /* Temporary take out template parameter scopes. They are saved
5488 in reversed order in save_template_parm. */
5489 while (current_binding_level
->kind
== sk_template_parms
)
5491 cp_binding_level
*b
= current_binding_level
;
5492 current_binding_level
= b
->level_chain
;
5493 b
->level_chain
= save_template_parm
;
5494 save_template_parm
= b
;
5499 /* Restore template parameter scopes. */
5500 while (save_template_parm
)
5502 cp_binding_level
*b
= save_template_parm
;
5503 save_template_parm
= b
->level_chain
;
5504 b
->level_chain
= current_binding_level
;
5505 current_binding_level
= b
;
5511 inner
= CP_DECL_CONTEXT (TREE_CODE (inner
) == NAMESPACE_DECL
? inner
: TYPE_NAME (inner
));
5515 /* Do a pushlevel for class declarations. */
5518 pushlevel_class (void)
5520 class_binding_level
= begin_scope (sk_class
, current_class_type
);
5523 /* ...and a poplevel for class declarations. */
5526 poplevel_class (void)
5528 cp_binding_level
*level
= class_binding_level
;
5529 cp_class_binding
*cb
;
5533 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
5534 gcc_assert (level
!= 0);
5536 /* If we're leaving a toplevel class, cache its binding level. */
5537 if (current_class_depth
== 1)
5538 previous_class_level
= level
;
5539 for (shadowed
= level
->type_shadowed
;
5541 shadowed
= TREE_CHAIN (shadowed
))
5542 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (shadowed
), TREE_VALUE (shadowed
));
5544 /* Remove the bindings for all of the class-level declarations. */
5545 if (level
->class_shadowed
)
5547 FOR_EACH_VEC_ELT (*level
->class_shadowed
, i
, cb
)
5549 IDENTIFIER_BINDING (cb
->identifier
) = cb
->base
->previous
;
5550 cxx_binding_free (cb
->base
);
5552 ggc_free (level
->class_shadowed
);
5553 level
->class_shadowed
= NULL
;
5556 /* Now, pop out of the binding level which we created up in the
5557 `pushlevel_class' routine. */
5558 gcc_assert (current_binding_level
== level
);
5562 /* Set INHERITED_VALUE_BINDING_P on BINDING to true or false, as
5563 appropriate. DECL is the value to which a name has just been
5564 bound. CLASS_TYPE is the class in which the lookup occurred. */
5567 set_inherited_value_binding_p (cxx_binding
*binding
, tree decl
,
5570 if (binding
->value
== decl
&& TREE_CODE (decl
) != TREE_LIST
)
5574 if (is_overloaded_fn (decl
))
5575 context
= ovl_scope (decl
);
5578 gcc_assert (DECL_P (decl
));
5579 context
= context_for_name_lookup (decl
);
5582 if (is_properly_derived_from (class_type
, context
))
5583 INHERITED_VALUE_BINDING_P (binding
) = 1;
5585 INHERITED_VALUE_BINDING_P (binding
) = 0;
5587 else if (binding
->value
== decl
)
5588 /* We only encounter a TREE_LIST when there is an ambiguity in the
5589 base classes. Such an ambiguity can be overridden by a
5590 definition in this class. */
5591 INHERITED_VALUE_BINDING_P (binding
) = 1;
5593 INHERITED_VALUE_BINDING_P (binding
) = 0;
5596 /* Make the declaration of X appear in CLASS scope. */
5599 pushdecl_class_level (tree x
)
5601 bool is_valid
= true;
5603 /* Do nothing if we're adding to an outer lambda closure type,
5604 outer_binding will add it later if it's needed. */
5605 if (current_class_type
!= class_binding_level
->this_entity
)
5608 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
5609 /* Get the name of X. */
5610 tree name
= OVL_NAME (x
);
5614 is_valid
= push_class_level_binding (name
, x
);
5615 if (TREE_CODE (x
) == TYPE_DECL
)
5616 set_identifier_type_value (name
, x
);
5618 else if (ANON_AGGR_TYPE_P (TREE_TYPE (x
)))
5620 /* If X is an anonymous aggregate, all of its members are
5621 treated as if they were members of the class containing the
5622 aggregate, for naming purposes. */
5623 location_t save_location
= input_location
;
5624 tree anon
= TREE_TYPE (x
);
5625 if (vec
<tree
, va_gc
> *member_vec
= CLASSTYPE_MEMBER_VEC (anon
))
5626 for (unsigned ix
= member_vec
->length (); ix
--;)
5628 tree binding
= (*member_vec
)[ix
];
5629 if (STAT_HACK_P (binding
))
5631 if (!pushdecl_class_level (STAT_TYPE (binding
)))
5633 binding
= STAT_DECL (binding
);
5635 if (!pushdecl_class_level (binding
))
5639 for (tree f
= TYPE_FIELDS (anon
); f
; f
= DECL_CHAIN (f
))
5640 if (TREE_CODE (f
) == FIELD_DECL
)
5642 input_location
= DECL_SOURCE_LOCATION (f
);
5643 if (!pushdecl_class_level (f
))
5646 input_location
= save_location
;
5651 /* Return the BINDING (if any) for NAME in SCOPE, which is a class
5652 scope. If the value returned is non-NULL, and the PREVIOUS field
5653 is not set, callers must set the PREVIOUS field explicitly. */
5655 static cxx_binding
*
5656 get_class_binding (tree name
, cp_binding_level
*scope
)
5661 cxx_binding
*binding
;
5663 class_type
= scope
->this_entity
;
5665 /* Get the type binding. */
5666 type_binding
= lookup_member (class_type
, name
,
5667 /*protect=*/2, /*want_type=*/true,
5668 tf_warning_or_error
);
5669 /* Get the value binding. */
5670 value_binding
= lookup_member (class_type
, name
,
5671 /*protect=*/2, /*want_type=*/false,
5672 tf_warning_or_error
);
5674 /* If we found either a type binding or a value binding, create a
5675 new binding object. */
5676 if (type_binding
|| value_binding
)
5678 binding
= new_class_binding (name
,
5682 set_inherited_value_binding_p (binding
, value_binding
, class_type
);
5690 /* Make the declaration(s) of X appear in CLASS scope under the name
5691 NAME. Returns true if the binding is valid. */
5694 push_class_level_binding (tree name
, tree x
)
5696 cxx_binding
*binding
;
5700 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
5702 /* The class_binding_level will be NULL if x is a template
5703 parameter name in a member template. */
5704 if (!class_binding_level
)
5707 if (name
== error_mark_node
)
5710 /* Can happen for an erroneous declaration (c++/60384). */
5711 if (!identifier_p (name
))
5713 gcc_assert (errorcount
|| sorrycount
);
5717 /* Check for invalid member names. But don't worry about a default
5718 argument-scope lambda being pushed after the class is complete. */
5719 gcc_assert (TYPE_BEING_DEFINED (current_class_type
)
5720 || LAMBDA_TYPE_P (TREE_TYPE (decl
)));
5721 /* Check that we're pushing into the right binding level. */
5722 gcc_assert (current_class_type
== class_binding_level
->this_entity
);
5724 /* We could have been passed a tree list if this is an ambiguous
5725 declaration. If so, pull the declaration out because
5726 check_template_shadow will not handle a TREE_LIST. */
5727 if (TREE_CODE (decl
) == TREE_LIST
5728 && TREE_TYPE (decl
) == error_mark_node
)
5729 decl
= TREE_VALUE (decl
);
5731 if (!check_template_shadow (decl
))
5736 If T is the name of a class, then each of the following shall
5737 have a name different from T:
5739 -- every static data member of class T;
5741 -- every member of class T that is itself a type;
5743 -- every enumerator of every member of class T that is an
5746 -- every member of every anonymous union that is a member of
5749 (Non-static data members were also forbidden to have the same
5750 name as T until TC1.) */
5752 || TREE_CODE (x
) == CONST_DECL
5753 || (TREE_CODE (x
) == TYPE_DECL
5754 && !DECL_SELF_REFERENCE_P (x
))
5755 /* A data member of an anonymous union. */
5756 || (TREE_CODE (x
) == FIELD_DECL
5757 && DECL_CONTEXT (x
) != current_class_type
))
5758 && DECL_NAME (x
) == DECL_NAME (TYPE_NAME (current_class_type
)))
5760 tree scope
= context_for_name_lookup (x
);
5761 if (TYPE_P (scope
) && same_type_p (scope
, current_class_type
))
5763 error_at (DECL_SOURCE_LOCATION (x
),
5764 "%qD has the same name as the class in which it is "
5770 /* Get the current binding for NAME in this class, if any. */
5771 binding
= IDENTIFIER_BINDING (name
);
5772 if (!binding
|| binding
->scope
!= class_binding_level
)
5774 binding
= get_class_binding (name
, class_binding_level
);
5775 /* If a new binding was created, put it at the front of the
5776 IDENTIFIER_BINDING list. */
5779 binding
->previous
= IDENTIFIER_BINDING (name
);
5780 IDENTIFIER_BINDING (name
) = binding
;
5784 /* If there is already a binding, then we may need to update the
5786 if (binding
&& binding
->value
)
5788 tree bval
= binding
->value
;
5789 tree old_decl
= NULL_TREE
;
5790 tree target_decl
= strip_using_decl (decl
);
5791 tree target_bval
= strip_using_decl (bval
);
5793 if (INHERITED_VALUE_BINDING_P (binding
))
5795 /* If the old binding was from a base class, and was for a
5796 tag name, slide it over to make room for the new binding.
5797 The old binding is still visible if explicitly qualified
5798 with a class-key. */
5799 if (TREE_CODE (target_bval
) == TYPE_DECL
5800 && DECL_ARTIFICIAL (target_bval
)
5801 && !(TREE_CODE (target_decl
) == TYPE_DECL
5802 && DECL_ARTIFICIAL (target_decl
)))
5804 old_decl
= binding
->type
;
5805 binding
->type
= bval
;
5806 binding
->value
= NULL_TREE
;
5807 INHERITED_VALUE_BINDING_P (binding
) = 0;
5812 /* Any inherited type declaration is hidden by the type
5813 declaration in the derived class. */
5814 if (TREE_CODE (target_decl
) == TYPE_DECL
5815 && DECL_ARTIFICIAL (target_decl
))
5816 binding
->type
= NULL_TREE
;
5819 else if (TREE_CODE (decl
) == USING_DECL
5820 && TREE_CODE (bval
) == USING_DECL
5821 && same_type_p (USING_DECL_SCOPE (decl
),
5822 USING_DECL_SCOPE (bval
)))
5823 /* This is a using redeclaration that will be diagnosed later
5824 in supplement_binding */
5826 else if (TREE_CODE (decl
) == USING_DECL
5827 && TREE_CODE (bval
) == USING_DECL
5828 && DECL_DEPENDENT_P (decl
)
5829 && DECL_DEPENDENT_P (bval
))
5831 else if (TREE_CODE (decl
) == USING_DECL
5832 && DECL_DEPENDENT_P (decl
)
5833 && OVL_P (target_bval
))
5834 /* The new dependent using beats an old overload. */
5836 else if (TREE_CODE (bval
) == USING_DECL
5837 && DECL_DEPENDENT_P (bval
)
5838 && OVL_P (target_decl
))
5839 /* The old dependent using beats a new overload. */
5841 else if (OVL_P (target_decl
)
5842 && OVL_P (target_bval
))
5843 /* The new overload set contains the old one. */
5846 if (old_decl
&& binding
->scope
== class_binding_level
)
5849 /* It is always safe to clear INHERITED_VALUE_BINDING_P
5850 here. This function is only used to register bindings
5851 from with the class definition itself. */
5852 INHERITED_VALUE_BINDING_P (binding
) = 0;
5857 /* Note that we declared this value so that we can issue an error if
5858 this is an invalid redeclaration of a name already used for some
5860 note_name_declared_in_class (name
, decl
);
5862 /* If we didn't replace an existing binding, put the binding on the
5863 stack of bindings for the identifier, and update the shadowed
5865 if (binding
&& binding
->scope
== class_binding_level
)
5866 /* Supplement the existing binding. */
5867 ok
= supplement_binding (binding
, decl
);
5870 /* Create a new binding. */
5871 push_binding (name
, decl
, class_binding_level
);
5878 /* Process and lookup a using decl SCOPE::lookup.name, filling in
5879 lookup.values & lookup.type. Return a USING_DECL, or NULL_TREE on
5883 lookup_using_decl (tree scope
, name_lookup
&lookup
)
5885 tree current
= current_scope ();
5886 bool dependent_p
= false;
5887 tree binfo
= NULL_TREE
;
5888 base_kind b_kind
= bk_not_base
;
5890 /* Because C++20 breaks the invariant that only member using-decls
5891 refer to members and only non-member using-decls refer to
5892 non-members, we first do the lookups, and then do validation that
5893 what we found is ok. */
5895 if (TREE_CODE (scope
) == ENUMERAL_TYPE
5896 && cxx_dialect
< cxx20
5897 && UNSCOPED_ENUM_P (scope
)
5898 && !TYPE_FUNCTION_SCOPE_P (scope
))
5900 /* PR c++/60265 argued that since C++11 added explicit enum scope, we
5901 should allow it as meaning the enclosing scope. I don't see any
5902 justification for this in C++11, but let's keep allowing it. */
5903 tree ctx
= CP_TYPE_CONTEXT (scope
);
5904 if (CLASS_TYPE_P (ctx
) == CLASS_TYPE_P (current
))
5908 /* You cannot using-decl a destructor. */
5909 if (TREE_CODE (lookup
.name
) == BIT_NOT_EXPR
)
5911 error ("%<%T%s%D%> names destructor", scope
,
5912 &"::"[scope
== global_namespace
? 2 : 0], lookup
.name
);
5916 if (TREE_CODE (scope
) == NAMESPACE_DECL
)
5918 /* Naming a namespace member. */
5919 qualified_namespace_lookup (scope
, &lookup
);
5921 if (TYPE_P (current
)
5924 || cxx_dialect
< cxx20
5925 || TREE_CODE (lookup
.value
) != CONST_DECL
))
5927 error ("using-declaration for non-member at class scope");
5931 else if (TREE_CODE (scope
) == ENUMERAL_TYPE
)
5933 /* Naming an enumeration member. */
5934 if (cxx_dialect
< cxx20
)
5935 error ("%<using%> with enumeration scope %q#T "
5936 "only available with %<-std=c++20%> or %<-std=gnu++20%>",
5938 lookup
.value
= lookup_enumerator (scope
, lookup
.name
);
5942 /* Naming a class member. This is awkward in C++20, because we
5943 might be naming an enumerator of an unrelated class. */
5945 tree npscope
= scope
;
5946 if (PACK_EXPANSION_P (scope
))
5947 npscope
= PACK_EXPANSION_PATTERN (scope
);
5949 if (!MAYBE_CLASS_TYPE_P (npscope
))
5951 error ("%qT is not a class, namespace, or enumeration", npscope
);
5955 /* Using T::T declares inheriting ctors, even if T is a typedef. */
5956 if (lookup
.name
== TYPE_IDENTIFIER (npscope
)
5957 || constructor_name_p (lookup
.name
, npscope
))
5959 if (!TYPE_P (current
))
5961 error ("non-member using-declaration names constructor of %qT",
5965 maybe_warn_cpp0x (CPP0X_INHERITING_CTORS
);
5966 lookup
.name
= ctor_identifier
;
5967 CLASSTYPE_NON_AGGREGATE (current
) = true;
5970 if (!TYPE_P (current
) && cxx_dialect
< cxx20
)
5972 error ("using-declaration for member at non-class scope");
5976 bool depscope
= dependent_scope_p (scope
);
5979 /* Leave binfo null. */;
5980 else if (TYPE_P (current
))
5982 binfo
= lookup_base (current
, scope
, ba_any
, &b_kind
, tf_none
);
5983 gcc_checking_assert (b_kind
>= bk_not_base
);
5985 if (b_kind
== bk_not_base
&& any_dependent_bases_p ())
5986 /* Treat as-if dependent. */
5988 else if (lookup
.name
== ctor_identifier
5989 && (b_kind
< bk_proper_base
|| !binfo_direct_p (binfo
)))
5991 if (any_dependent_bases_p ())
5995 error ("%qT is not a direct base of %qT", scope
, current
);
6000 if (b_kind
< bk_proper_base
)
6001 binfo
= TYPE_BINFO (scope
);
6004 binfo
= TYPE_BINFO (scope
);
6006 dependent_p
= (depscope
6007 || (IDENTIFIER_CONV_OP_P (lookup
.name
)
6008 && dependent_type_p (TREE_TYPE (lookup
.name
))));
6011 lookup
.value
= lookup_member (binfo
, lookup
.name
, /*protect=*/2,
6012 /*want_type=*/false, tf_none
);
6014 /* If the lookup in the base contains a dependent using, this
6015 using is also dependent. */
6016 if (!dependent_p
&& lookup
.value
&& dependent_type_p (scope
))
6018 tree val
= lookup
.value
;
6019 if (tree fns
= maybe_get_fns (val
))
6021 for (tree f
: lkp_range (val
))
6022 if (TREE_CODE (f
) == USING_DECL
&& DECL_DEPENDENT_P (f
))
6029 if (!depscope
&& b_kind
< bk_proper_base
)
6031 if (cxx_dialect
>= cxx20
&& lookup
.value
6032 && TREE_CODE (lookup
.value
) == CONST_DECL
)
6034 /* Using an unrelated enum; check access here rather
6035 than separately for class and non-class using. */
6036 perform_or_defer_access_check
6037 (binfo
, lookup
.value
, lookup
.value
, tf_warning_or_error
);
6038 /* And then if this is a copy from handle_using_decl, look
6039 through to the original enumerator. */
6040 if (CONST_DECL_USING_P (lookup
.value
))
6041 lookup
.value
= DECL_ABSTRACT_ORIGIN (lookup
.value
);
6043 else if (!TYPE_P (current
))
6045 error ("using-declaration for member at non-class scope");
6050 auto_diagnostic_group g
;
6051 error_not_base_type (scope
, current
);
6052 if (lookup
.value
&& DECL_IMPLICIT_TYPEDEF_P (lookup
.value
)
6053 && TREE_CODE (TREE_TYPE (lookup
.value
)) == ENUMERAL_TYPE
)
6054 inform (input_location
,
6055 "did you mean %<using enum %T::%D%>?",
6056 scope
, lookup
.name
);
6062 /* Did we find anything sane? */
6065 else if (!lookup
.value
)
6067 error ("%qD has not been declared in %qD", lookup
.name
, scope
);
6070 else if (TREE_CODE (lookup
.value
) == TREE_LIST
6071 /* We can (independently) have ambiguous implicit typedefs. */
6072 || (lookup
.type
&& TREE_CODE (lookup
.type
) == TREE_LIST
))
6074 error ("reference to %qD is ambiguous", lookup
.name
);
6075 print_candidates (TREE_CODE (lookup
.value
) == TREE_LIST
6076 ? lookup
.value
: lookup
.type
);
6079 else if (TREE_CODE (lookup
.value
) == NAMESPACE_DECL
)
6081 error ("using-declaration may not name namespace %qD", lookup
.value
);
6085 if (TYPE_P (current
))
6087 /* In class scope. */
6089 /* Cannot introduce a constructor name. */
6090 if (constructor_name_p (lookup
.name
, current
))
6092 error ("%<%T::%D%> names constructor in %qT",
6093 scope
, lookup
.name
, current
);
6097 if (lookup
.value
&& BASELINK_P (lookup
.value
))
6098 /* The binfo from which the functions came does not matter. */
6099 lookup
.value
= BASELINK_FUNCTIONS (lookup
.value
);
6102 tree using_decl
= build_lang_decl (USING_DECL
, lookup
.name
, NULL_TREE
);
6103 USING_DECL_SCOPE (using_decl
) = scope
;
6104 USING_DECL_DECLS (using_decl
) = lookup
.value
;
6105 DECL_DEPENDENT_P (using_decl
) = dependent_p
;
6106 DECL_CONTEXT (using_decl
) = current
;
6107 if (TYPE_P (current
) && b_kind
== bk_not_base
)
6108 USING_DECL_UNRELATED_P (using_decl
) = true;
6113 /* Process "using SCOPE::NAME" in a class scope. Return the
6114 USING_DECL created. */
6117 do_class_using_decl (tree scope
, tree name
)
6119 if (name
== error_mark_node
6120 || scope
== error_mark_node
)
6123 name_lookup
lookup (name
);
6124 return lookup_using_decl (scope
, lookup
);
6128 /* Return the binding for NAME in NS in the current TU. If NS is
6129 NULL, look in global_namespace. We will not find declarations
6130 from imports. Users of this who, having found nothing, push a new
6131 decl must be prepared for that pushing to match an existing decl. */
6134 get_namespace_binding (tree ns
, tree name
)
6136 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
6138 ns
= global_namespace
;
6139 gcc_checking_assert (!DECL_NAMESPACE_ALIAS (ns
));
6140 tree ret
= NULL_TREE
;
6142 if (tree
*b
= find_namespace_slot (ns
, name
))
6146 if (TREE_CODE (ret
) == BINDING_VECTOR
)
6147 ret
= BINDING_VECTOR_CLUSTER (ret
, 0).slots
[0];
6149 ret
= MAYBE_STAT_DECL (ret
);
6155 /* Push internal DECL into the global namespace. Does not do the
6156 full overload fn handling and does not add it to the list of things
6157 in the namespace. */
6160 set_global_binding (tree decl
)
6162 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
6164 tree
*slot
= find_namespace_slot (global_namespace
, DECL_NAME (decl
), true);
6167 /* The user's placed something in the implementor's namespace. */
6168 diagnose_name_conflict (decl
, MAYBE_STAT_DECL (*slot
));
6170 /* Force the binding, so compiler internals continue to work. */
6174 /* Set the context of a declaration to scope. Complain if we are not
6178 set_decl_namespace (tree decl
, tree scope
, bool friendp
)
6180 /* Get rid of namespace aliases. */
6181 scope
= ORIGINAL_NAMESPACE (scope
);
6183 /* It is ok for friends to be qualified in parallel space. */
6184 if (!friendp
&& !is_nested_namespace (current_namespace
, scope
))
6185 error ("declaration of %qD not in a namespace surrounding %qD",
6187 DECL_CONTEXT (decl
) = FROB_CONTEXT (scope
);
6189 /* See whether this has been declared in the namespace or inline
6191 tree old
= NULL_TREE
;
6193 name_lookup
lookup (DECL_NAME (decl
),
6194 LOOK_want::NORMAL
| LOOK_want::HIDDEN_FRIEND
);
6195 if (!lookup
.search_qualified (scope
, /*usings=*/false))
6196 /* No old declaration at all. */
6201 /* If it's a TREE_LIST, the result of the lookup was ambiguous. */
6202 if (TREE_CODE (old
) == TREE_LIST
)
6205 DECL_CONTEXT (decl
) = FROB_CONTEXT (scope
);
6206 error ("reference to %qD is ambiguous", decl
);
6207 print_candidates (old
);
6211 if (!DECL_DECLARES_FUNCTION_P (decl
))
6213 /* Don't compare non-function decls with decls_match here, since
6214 it can't check for the correct constness at this
6215 point. pushdecl will find those errors later. */
6217 /* We might have found it in an inline namespace child of SCOPE. */
6218 if (TREE_CODE (decl
) == TREE_CODE (old
))
6219 DECL_CONTEXT (decl
) = DECL_CONTEXT (old
);
6222 /* Writing "N::i" to declare something directly in "N" is invalid. */
6223 if (CP_DECL_CONTEXT (decl
) == current_namespace
6224 && at_namespace_scope_p ())
6225 error_at (DECL_SOURCE_LOCATION (decl
),
6226 "explicit qualification in declaration of %qD", decl
);
6230 /* Since decl is a function, old should contain a function decl. */
6234 /* It didn't work, go back to the explicit scope. */
6235 DECL_CONTEXT (decl
) = FROB_CONTEXT (scope
);
6236 error ("%qD should have been declared inside %qD", decl
, scope
);
6241 /* We handle these in check_explicit_instantiation_namespace. */
6242 if (processing_explicit_instantiation
)
6244 if (processing_template_decl
|| processing_specialization
)
6245 /* We have not yet called push_template_decl to turn a
6246 FUNCTION_DECL into a TEMPLATE_DECL, so the declarations won't
6247 match. But, we'll check later, when we construct the
6251 /* Instantiations or specializations of templates may be declared as
6252 friends in any namespace. */
6253 if (friendp
&& DECL_USE_TEMPLATE (decl
))
6256 tree found
= NULL_TREE
;
6257 bool hidden_p
= false;
6258 bool saw_template
= false;
6260 for (lkp_iterator
iter (old
); iter
; ++iter
)
6262 if (iter
.using_p ())
6267 /* Adjust DECL_CONTEXT first so decls_match will return true
6268 if DECL will match a declaration in an inline namespace. */
6269 DECL_CONTEXT (decl
) = DECL_CONTEXT (ofn
);
6270 if (decls_match (decl
, ofn
))
6274 /* We found more than one matching declaration. This
6275 can happen if we have two inline namespace children,
6276 each containing a suitable declaration. */
6277 DECL_CONTEXT (decl
) = FROB_CONTEXT (scope
);
6281 hidden_p
= iter
.hidden_p ();
6283 else if (TREE_CODE (decl
) == FUNCTION_DECL
6284 && TREE_CODE (ofn
) == TEMPLATE_DECL
)
6285 saw_template
= true;
6288 if (!found
&& friendp
&& saw_template
)
6290 /* "[if no non-template match is found,] each remaining function template
6291 is replaced with the specialization chosen by deduction from the
6292 friend declaration or discarded if deduction fails."
6294 So tell check_explicit_specialization to look for a match. */
6295 SET_DECL_IMPLICIT_INSTANTIATION (decl
);
6296 DECL_TEMPLATE_INFO (decl
) = build_template_info (old
, NULL_TREE
);
6304 pedwarn (DECL_SOURCE_LOCATION (decl
), 0,
6305 "%qD has not been declared within %qD", decl
, scope
);
6306 inform (DECL_SOURCE_LOCATION (found
),
6307 "only here as a %<friend%>");
6309 DECL_CONTEXT (decl
) = DECL_CONTEXT (found
);
6316 /* Return the namespace where the current declaration is declared. */
6319 current_decl_namespace (void)
6322 /* If we have been pushed into a different namespace, use it. */
6323 if (!vec_safe_is_empty (decl_namespace_list
))
6324 return decl_namespace_list
->last ();
6326 if (current_class_type
)
6327 result
= decl_namespace_context (current_class_type
);
6328 else if (current_function_decl
)
6329 result
= decl_namespace_context (current_function_decl
);
6331 result
= current_namespace
;
6335 /* Process any ATTRIBUTES on a namespace definition. Returns true if
6336 attribute visibility is seen. */
6339 handle_namespace_attrs (tree ns
, tree attributes
)
6342 bool saw_vis
= false;
6344 if (attributes
== error_mark_node
)
6347 for (d
= attributes
; d
; d
= TREE_CHAIN (d
))
6349 tree name
= get_attribute_name (d
);
6350 tree args
= TREE_VALUE (d
);
6352 if (is_attribute_p ("visibility", name
))
6354 /* attribute visibility is a property of the syntactic block
6355 rather than the namespace as a whole, so we don't touch the
6356 NAMESPACE_DECL at all. */
6357 tree x
= args
? TREE_VALUE (args
) : NULL_TREE
;
6358 if (x
== NULL_TREE
|| TREE_CODE (x
) != STRING_CST
|| TREE_CHAIN (args
))
6360 warning (OPT_Wattributes
,
6361 "%qD attribute requires a single NTBS argument",
6366 if (!TREE_PUBLIC (ns
))
6367 warning (OPT_Wattributes
,
6368 "%qD attribute is meaningless since members of the "
6369 "anonymous namespace get local symbols", name
);
6371 push_visibility (TREE_STRING_POINTER (x
), 1);
6374 else if (is_attribute_p ("abi_tag", name
))
6376 if (!DECL_NAME (ns
))
6378 warning (OPT_Wattributes
, "ignoring %qD attribute on anonymous "
6382 if (!DECL_NAMESPACE_INLINE_P (ns
))
6384 warning (OPT_Wattributes
, "ignoring %qD attribute on non-inline "
6390 tree dn
= DECL_NAME (ns
);
6391 args
= build_string (IDENTIFIER_LENGTH (dn
) + 1,
6392 IDENTIFIER_POINTER (dn
));
6393 TREE_TYPE (args
) = char_array_type_node
;
6394 args
= fix_string_type (args
);
6395 args
= build_tree_list (NULL_TREE
, args
);
6397 if (check_abi_tag_args (args
, name
))
6398 DECL_ATTRIBUTES (ns
) = tree_cons (name
, args
,
6399 DECL_ATTRIBUTES (ns
));
6401 else if (is_attribute_p ("deprecated", name
))
6403 if (!DECL_NAME (ns
))
6405 warning (OPT_Wattributes
, "ignoring %qD attribute on anonymous "
6409 if (args
&& TREE_CODE (TREE_VALUE (args
)) != STRING_CST
)
6411 error ("deprecated message is not a string");
6414 TREE_DEPRECATED (ns
) = 1;
6416 DECL_ATTRIBUTES (ns
) = tree_cons (name
, args
,
6417 DECL_ATTRIBUTES (ns
));
6419 else if (!attribute_ignored_p (d
))
6421 warning (OPT_Wattributes
, "%qD attribute directive ignored",
6430 /* Temporarily set the namespace for the current declaration. */
6433 push_decl_namespace (tree decl
)
6435 if (TREE_CODE (decl
) != NAMESPACE_DECL
)
6436 decl
= decl_namespace_context (decl
);
6437 vec_safe_push (decl_namespace_list
, ORIGINAL_NAMESPACE (decl
));
6440 /* [namespace.memdef]/2 */
6443 pop_decl_namespace (void)
6445 decl_namespace_list
->pop ();
6448 /* Process a namespace-alias declaration. */
6451 do_namespace_alias (tree alias
, tree name_space
)
6453 if (name_space
== error_mark_node
)
6456 gcc_assert (TREE_CODE (name_space
) == NAMESPACE_DECL
);
6458 name_space
= ORIGINAL_NAMESPACE (name_space
);
6460 /* Build the alias. */
6461 alias
= build_lang_decl (NAMESPACE_DECL
, alias
, void_type_node
);
6462 DECL_NAMESPACE_ALIAS (alias
) = name_space
;
6463 DECL_EXTERNAL (alias
) = 1;
6464 DECL_CONTEXT (alias
) = FROB_CONTEXT (current_scope ());
6465 set_originating_module (alias
);
6469 /* Emit debug info for namespace alias. */
6470 if (!building_stmt_list_p ())
6471 (*debug_hooks
->early_global_decl
) (alias
);
6474 /* Like pushdecl, only it places DECL in the current namespace,
6478 pushdecl_namespace_level (tree decl
, bool hiding
)
6480 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
6481 return do_pushdecl_with_scope (decl
, NAMESPACE_LEVEL (current_namespace
),
6485 /* Wrapper around push_local_binding to push the bindings for
6486 a non-member USING_DECL with NAME and VALUE. LOOKUP, if non-null,
6487 is the result of name lookup during template parsing. */
6490 push_using_decl_bindings (name_lookup
*lookup
, tree name
, tree value
)
6492 tree type
= NULL_TREE
;
6494 cxx_binding
*binding
= find_local_binding (current_binding_level
, name
);
6497 value
= binding
->value
;
6498 type
= binding
->type
;
6501 /* DR 36 questions why using-decls at function scope may not be
6502 duplicates. Disallow it, as C++11 claimed and PR 20420
6505 do_nonmember_using_decl (*lookup
, true, true, &value
, &type
);
6509 else if (binding
&& value
== binding
->value
)
6510 /* Redeclaration of this USING_DECL. */;
6511 else if (binding
&& binding
->value
&& TREE_CODE (value
) == OVERLOAD
)
6513 /* We already have this binding, so replace it. */
6514 update_local_overload (IDENTIFIER_BINDING (name
), value
);
6515 IDENTIFIER_BINDING (name
)->value
= value
;
6518 /* Install the new binding. */
6519 push_local_binding (name
, value
, /*using=*/true);
6523 else if (binding
&& type
== binding
->type
)
6527 push_local_binding (name
, type
, /*using=*/true);
6528 set_identifier_type_value (name
, type
);
6532 /* Overload for push_using_decl_bindings that doesn't take a name_lookup. */
6535 push_using_decl_bindings (tree name
, tree value
)
6537 push_using_decl_bindings (nullptr, name
, value
);
6540 /* Process a using declaration in non-class scope. */
6543 finish_nonmember_using_decl (tree scope
, tree name
)
6545 gcc_checking_assert (current_binding_level
->kind
!= sk_class
);
6547 if (scope
== error_mark_node
|| name
== error_mark_node
)
6550 name_lookup
lookup (name
);
6552 tree using_decl
= lookup_using_decl (scope
, lookup
);
6556 /* Emit debug info. */
6557 if (!processing_template_decl
)
6558 cp_emit_debug_info_for_using (lookup
.value
,
6559 current_binding_level
->this_entity
);
6561 if (current_binding_level
->kind
== sk_namespace
)
6563 tree
*slot
= find_namespace_slot (current_namespace
, name
, true);
6564 tree
*mslot
= get_fixed_binding_slot (slot
, name
,
6565 BINDING_SLOT_CURRENT
, true);
6566 bool failed
= false;
6570 /* A module vector. I presume the binding list is going to
6571 be sparser than the import bitmap. Hence iterate over
6572 the former checking for bits set in the bitmap. */
6573 bitmap imports
= get_import_bitmap ();
6574 binding_cluster
*cluster
= BINDING_VECTOR_CLUSTER_BASE (*slot
);
6576 /* Scan the imported bindings. */
6577 unsigned ix
= BINDING_VECTOR_NUM_CLUSTERS (*slot
);
6578 if (BINDING_VECTOR_SLOTS_PER_CLUSTER
== BINDING_SLOTS_FIXED
)
6584 /* Do this in forward order, so we load modules in an order
6585 the user expects. */
6586 for (; ix
--; cluster
++)
6587 for (unsigned jx
= 0; jx
!= BINDING_VECTOR_SLOTS_PER_CLUSTER
; jx
++)
6589 /* Are we importing this module? */
6590 if (unsigned base
= cluster
->indices
[jx
].base
)
6591 if (unsigned span
= cluster
->indices
[jx
].span
)
6593 if (bitmap_bit_p (imports
, base
))
6595 while (++base
, --span
);
6600 if (cluster
->slots
[jx
].is_lazy ())
6602 gcc_assert (cluster
->indices
[jx
].span
== 1);
6603 lazy_load_binding (cluster
->indices
[jx
].base
,
6604 scope
, name
, &cluster
->slots
[jx
]);
6607 tree value
= cluster
->slots
[jx
];
6609 /* Load errors could mean there's nothing here. */
6612 /* Extract what we can see from here. If there's no
6613 stat_hack, then everything was exported. */
6614 tree type
= NULL_TREE
;
6616 /* If no stat hack, everything is visible. */
6617 if (STAT_HACK_P (value
))
6619 if (STAT_TYPE_VISIBLE_P (value
))
6620 type
= STAT_TYPE (value
);
6621 value
= STAT_VISIBLE (value
);
6624 if (do_nonmember_using_decl (lookup
, false, false,
6635 /* Now do the current slot. */
6636 tree value
= MAYBE_STAT_DECL (*mslot
);
6637 tree type
= MAYBE_STAT_TYPE (*mslot
);
6639 do_nonmember_using_decl (lookup
, false, true, &value
, &type
);
6641 // FIXME: Partition mergeableness?
6642 if (STAT_HACK_P (*mslot
))
6644 STAT_DECL (*mslot
) = value
;
6645 STAT_TYPE (*mslot
) = type
;
6648 *mslot
= stat_hack (value
, type
);
6655 add_decl_expr (using_decl
);
6656 if (DECL_DEPENDENT_P (using_decl
))
6657 lookup
.value
= using_decl
;
6658 push_using_decl_bindings (&lookup
, name
, NULL_TREE
);
6662 /* Return the declarations that are members of the namespace NS. */
6665 cp_namespace_decls (tree ns
)
6667 return NAMESPACE_LEVEL (ns
)->names
;
6670 /* Given a lookup that returned VAL, use FLAGS to decide if we want to
6671 ignore it or not. Subroutine of lookup_name_1 and lookup_type_scope. */
6674 qualify_lookup (tree val
, LOOK_want want
)
6676 if (val
== NULL_TREE
)
6679 if (bool (want
& LOOK_want::TYPE
))
6681 tree target_val
= strip_using_decl (val
);
6683 if (TREE_CODE (STRIP_TEMPLATE (target_val
)) == TYPE_DECL
)
6687 if (bool (want
& LOOK_want::TYPE_NAMESPACE
))
6688 return TREE_CODE (val
) == NAMESPACE_DECL
;
6693 /* Is there a "using namespace std;" directive within USINGS? */
6696 using_directives_contain_std_p (vec
<tree
, va_gc
> *usings
)
6701 for (unsigned ix
= usings
->length (); ix
--;)
6702 if ((*usings
)[ix
] == std_node
)
6708 /* Is there a "using namespace std;" directive within the current
6709 namespace (or its ancestors)?
6710 Compare with name_lookup::search_unqualified. */
6713 has_using_namespace_std_directive_p ()
6715 for (cp_binding_level
*level
= current_binding_level
;
6717 level
= level
->level_chain
)
6718 if (using_directives_contain_std_p (level
->using_directives
))
6724 /* Subclass of deferred_diagnostic, for issuing a note when
6725 --param cxx-max-namespaces-for-diagnostic-help is reached.
6727 The note should be issued after the error, but before any other
6728 deferred diagnostics. This is handled by decorating a wrapped
6729 deferred_diagnostic, and emitting a note before that wrapped note is
6732 class namespace_limit_reached
: public deferred_diagnostic
6735 namespace_limit_reached (location_t loc
, unsigned limit
, tree name
,
6736 std::unique_ptr
<deferred_diagnostic
> wrapped
)
6737 : deferred_diagnostic (loc
),
6738 m_limit (limit
), m_name (name
),
6739 m_wrapped (std::move (wrapped
))
6743 ~namespace_limit_reached ()
6745 /* Unconditionally warn that the search was truncated. */
6746 inform (get_location (),
6747 "maximum limit of %d namespaces searched for %qE",
6749 /* m_wrapped will be implicitly deleted after this, emitting any followup
6750 diagnostic after the above note. */
6756 std::unique_ptr
<deferred_diagnostic
> m_wrapped
;
6759 /* Subclass of deferred_diagnostic, for use when issuing a single suggestion.
6760 Emit a note showing the location of the declaration of the suggestion. */
6762 class show_candidate_location
: public deferred_diagnostic
6765 show_candidate_location (location_t loc
, tree candidate
)
6766 : deferred_diagnostic (loc
),
6767 m_candidate (candidate
)
6771 ~show_candidate_location ()
6773 inform (location_of (m_candidate
), "%qE declared here", m_candidate
);
6780 /* Subclass of deferred_diagnostic, for use when there are multiple candidates
6781 to be suggested by suggest_alternatives_for.
6783 Emit a series of notes showing the various suggestions. */
6785 class suggest_alternatives
: public deferred_diagnostic
6788 suggest_alternatives (location_t loc
, vec
<tree
> candidates
)
6789 : deferred_diagnostic (loc
),
6790 m_candidates (candidates
)
6794 ~suggest_alternatives ()
6796 if (m_candidates
.length ())
6798 inform_n (get_location (), m_candidates
.length (),
6799 "suggested alternative:",
6800 "suggested alternatives:");
6801 for (unsigned ix
= 0; ix
!= m_candidates
.length (); ix
++)
6803 tree val
= m_candidates
[ix
];
6805 inform (location_of (val
), " %qE", val
);
6808 m_candidates
.release ();
6812 vec
<tree
> m_candidates
;
6815 /* A class for encapsulating the result of a search across
6816 multiple namespaces (and scoped enums within them) for an
6817 unrecognized name seen at a given source location. */
6819 class namespace_hints
6822 namespace_hints (location_t loc
, tree name
);
6824 name_hint
convert_candidates_to_name_hint ();
6825 name_hint
maybe_decorate_with_limit (name_hint
);
6828 void maybe_add_candidate_for_scoped_enum (tree scoped_enum
, tree name
);
6832 vec
<tree
> m_candidates
;
6834 /* Value of "--param cxx-max-namespaces-for-diagnostic-help". */
6837 /* Was the limit reached? */
6841 /* Constructor for namespace_hints. Search namespaces and scoped enums,
6842 looking for an exact match for unrecognized NAME seen at LOC. */
6844 namespace_hints::namespace_hints (location_t loc
, tree name
)
6845 : m_loc(loc
), m_name (name
)
6847 auto_vec
<tree
> worklist
;
6849 m_candidates
= vNULL
;
6851 m_limit
= param_cxx_max_namespaces_for_diagnostic_help
;
6853 /* Breadth-first search of namespaces. Up to limit namespaces
6854 searched (limit zero == unlimited). */
6855 worklist
.safe_push (global_namespace
);
6856 for (unsigned ix
= 0; ix
!= worklist
.length (); ix
++)
6858 tree ns
= worklist
[ix
];
6859 name_lookup
lookup (name
);
6861 if (lookup
.search_qualified (ns
, false))
6862 m_candidates
.safe_push (lookup
.value
);
6866 /* Look for child namespaces. We have to do this
6867 indirectly because they are chained in reverse order,
6868 which is confusing to the user. */
6869 auto_vec
<tree
> children
;
6871 for (tree decl
= NAMESPACE_LEVEL (ns
)->names
;
6872 decl
; decl
= TREE_CHAIN (decl
))
6874 if (TREE_CODE (decl
) == NAMESPACE_DECL
6875 && !DECL_NAMESPACE_ALIAS (decl
)
6876 && !DECL_NAMESPACE_INLINE_P (decl
))
6877 children
.safe_push (decl
);
6879 /* Look for exact matches for NAME within scoped enums.
6880 These aren't added to the worklist, and so don't count
6881 against the search limit. */
6882 if (TREE_CODE (decl
) == TYPE_DECL
)
6884 tree type
= TREE_TYPE (decl
);
6885 if (SCOPED_ENUM_P (type
))
6886 maybe_add_candidate_for_scoped_enum (type
, name
);
6890 while (!m_limited
&& !children
.is_empty ())
6892 if (worklist
.length () == m_limit
)
6895 worklist
.safe_push (children
.pop ());
6901 /* Drop ownership of m_candidates, using it to generate a name_hint at m_loc
6902 for m_name, an IDENTIFIER_NODE for which name lookup failed.
6904 If m_candidates is non-empty, use it to generate a suggestion and/or
6905 a deferred diagnostic that lists the possible candidate(s).
6909 namespace_hints::convert_candidates_to_name_hint ()
6911 /* How many candidates do we have? */
6913 /* If we have just one candidate, issue a name_hint with it as a suggestion
6914 (so that consumers are able to suggest it within the error message and emit
6915 it as a fix-it hint), and with a note showing the candidate's location. */
6916 if (m_candidates
.length () == 1)
6918 tree candidate
= m_candidates
[0];
6919 /* Clean up CANDIDATES. */
6920 m_candidates
.release ();
6921 return name_hint (expr_to_string (candidate
),
6922 new show_candidate_location (m_loc
, candidate
));
6924 else if (m_candidates
.length () > 1)
6925 /* If we have more than one candidate, issue a name_hint without a single
6926 "suggestion", but with a deferred diagnostic that lists the
6927 various candidates. This takes ownership of m_candidates. */
6928 return name_hint (NULL
, new suggest_alternatives (m_loc
, m_candidates
));
6930 /* Otherwise, m_candidates ought to be empty, so no cleanup is necessary. */
6931 gcc_assert (m_candidates
.length () == 0);
6932 gcc_assert (m_candidates
== vNULL
);
6934 return name_hint ();
6937 /* If --param cxx-max-namespaces-for-diagnostic-help was reached,
6938 then we want to emit a note about after the error, but before
6939 any other deferred diagnostics.
6941 Handle this by figuring out what hint is needed, then optionally
6942 decorating HINT with a namespace_limit_reached wrapper. */
6945 namespace_hints::maybe_decorate_with_limit (name_hint hint
)
6948 return name_hint (hint
.suggestion (),
6949 new namespace_limit_reached (m_loc
, m_limit
,
6951 hint
.take_deferred ()));
6956 /* Look inside SCOPED_ENUM for exact matches for NAME.
6957 If one is found, add its CONST_DECL to m_candidates. */
6960 namespace_hints::maybe_add_candidate_for_scoped_enum (tree scoped_enum
,
6963 gcc_assert (SCOPED_ENUM_P (scoped_enum
));
6965 for (tree iter
= TYPE_VALUES (scoped_enum
); iter
; iter
= TREE_CHAIN (iter
))
6967 tree id
= TREE_PURPOSE (iter
);
6970 m_candidates
.safe_push (TREE_VALUE (iter
));
6976 /* Generate a name_hint at LOCATION for NAME, an IDENTIFIER_NODE for which
6979 Search through all available namespaces and any scoped enums within them
6980 and generate a suggestion and/or a deferred diagnostic that lists possible
6983 If no exact matches are found, and SUGGEST_MISSPELLINGS is true, then also
6984 look for near-matches and suggest the best near-match, if there is one.
6986 If nothing is found, then an empty name_hint is returned. */
6989 suggest_alternatives_for (location_t location
, tree name
,
6990 bool suggest_misspellings
)
6992 /* First, search for exact matches in other namespaces. */
6993 namespace_hints
ns_hints (location
, name
);
6994 name_hint result
= ns_hints
.convert_candidates_to_name_hint ();
6996 /* Otherwise, try other approaches. */
6998 result
= suggest_alternatives_for_1 (location
, name
, suggest_misspellings
);
7000 return ns_hints
.maybe_decorate_with_limit (std::move (result
));
7003 /* The second half of suggest_alternatives_for, for when no exact matches
7004 were found in other namespaces. */
7007 suggest_alternatives_for_1 (location_t location
, tree name
,
7008 bool suggest_misspellings
)
7010 /* No candidates were found in the available namespaces. */
7012 /* If there's a "using namespace std;" active, and this
7013 is one of the most common "std::" names, then it's probably a
7014 missing #include. */
7015 if (has_using_namespace_std_directive_p ())
7017 name_hint hint
= maybe_suggest_missing_std_header (location
, name
);
7022 /* Otherwise, consider misspellings. */
7023 if (!suggest_misspellings
)
7024 return name_hint ();
7026 return lookup_name_fuzzy (name
, FUZZY_LOOKUP_NAME
, location
);
7029 /* Generate a name_hint at LOCATION for NAME, an IDENTIFIER_NODE for which
7032 Search through all available namespaces and generate a suggestion and/or
7033 a deferred diagnostic that lists possible candidate(s).
7035 This is similiar to suggest_alternatives_for, but doesn't fallback to
7036 the other approaches used by that function. */
7039 suggest_alternatives_in_other_namespaces (location_t location
, tree name
)
7041 namespace_hints
ns_hints (location
, name
);
7043 name_hint result
= ns_hints
.convert_candidates_to_name_hint ();
7045 return ns_hints
.maybe_decorate_with_limit (std::move (result
));
7048 /* A well-known name within the C++ standard library, returned by
7051 The gperf-generated file contains the definition of the class
7052 "std_name_hint_lookup" with a static member function which
7053 returns the pointer to a structure "std_name_hint" which
7054 is also defined in that file. */
7056 #include "std-name-hint.h"
7058 /* Subroutine of maybe_suggest_missing_header for handling unrecognized names
7059 for some of the most common names within "std::".
7060 Given non-NULL NAME, return the std_name_hint for it, or NULL. */
7062 static const std_name_hint
*
7063 get_std_name_hint (const char *name
)
7065 return std_name_hint_lookup::find(name
, strlen(name
));
7068 /* Describe DIALECT. */
7071 get_cxx_dialect_name (enum cxx_dialect dialect
)
7094 /* Subclass of deferred_diagnostic for use for names in the "std" namespace
7095 that weren't recognized, but for which we know which header it ought to be
7098 Emit a note either suggesting the header to be included, or noting that
7099 the current dialect is too early for the given name. */
7101 class missing_std_header
: public deferred_diagnostic
7104 missing_std_header (location_t loc
,
7105 const char *name_str
,
7106 const std_name_hint
*header_hint
)
7107 : deferred_diagnostic (loc
),
7108 m_name_str (name_str
),
7109 m_header_hint (header_hint
)
7111 ~missing_std_header ()
7113 gcc_rich_location
richloc (get_location ());
7114 if (cxx_dialect
>= m_header_hint
->min_dialect
)
7116 const char *header
= m_header_hint
->header
;
7117 maybe_add_include_fixit (&richloc
, header
, true);
7119 "%<std::%s%> is defined in header %qs;"
7120 " this is probably fixable by adding %<#include %s%>",
7121 m_name_str
, header
, header
);
7125 "%<std::%s%> is only available from %s onwards",
7126 m_name_str
, get_cxx_dialect_name (m_header_hint
->min_dialect
));
7130 const char *m_name_str
;
7131 const std_name_hint
*m_header_hint
;
7134 /* Attempt to generate a name_hint that suggests pertinent header files
7135 for NAME at LOCATION, for common names within the "std" namespace,
7136 or an empty name_hint if this isn't applicable. */
7139 maybe_suggest_missing_std_header (location_t location
, tree name
)
7141 gcc_assert (TREE_CODE (name
) == IDENTIFIER_NODE
);
7143 const char *name_str
= IDENTIFIER_POINTER (name
);
7144 const std_name_hint
*header_hint
= get_std_name_hint (name_str
);
7146 return name_hint ();
7148 return name_hint (NULL
, new missing_std_header (location
, name_str
,
7152 /* Attempt to generate a name_hint that suggests a missing header file
7153 for NAME within SCOPE at LOCATION, or an empty name_hint if this isn't
7157 maybe_suggest_missing_header (location_t location
, tree name
, tree scope
)
7159 if (scope
== NULL_TREE
)
7160 return name_hint ();
7161 if (TREE_CODE (scope
) != NAMESPACE_DECL
)
7162 return name_hint ();
7163 /* We only offer suggestions for the "std" namespace. */
7164 if (scope
!= std_node
)
7165 return name_hint ();
7166 return maybe_suggest_missing_std_header (location
, name
);
7169 /* Generate a name_hint at LOCATION for NAME, an IDENTIFIER_NODE for which name
7170 lookup failed within the explicitly provided SCOPE.
7172 Suggest the best meaningful candidates (if any), otherwise
7173 an empty name_hint is returned. */
7176 suggest_alternative_in_explicit_scope (location_t location
, tree name
,
7179 /* Something went very wrong; don't suggest anything. */
7180 if (name
== error_mark_node
)
7181 return name_hint ();
7183 /* Resolve any namespace aliases. */
7184 scope
= ORIGINAL_NAMESPACE (scope
);
7186 name_hint hint
= maybe_suggest_missing_header (location
, name
, scope
);
7190 cp_binding_level
*level
= NAMESPACE_LEVEL (scope
);
7192 best_match
<tree
, const char *> bm (name
);
7193 consider_binding_level (name
, bm
, level
, false, FUZZY_LOOKUP_NAME
);
7195 /* See if we have a good suggesion for the user. */
7196 const char *fuzzy_name
= bm
.get_best_meaningful_candidate ();
7198 return name_hint (fuzzy_name
, NULL
);
7200 return name_hint ();
7203 /* Given NAME, look within SCOPED_ENUM for possible spell-correction
7207 suggest_alternative_in_scoped_enum (tree name
, tree scoped_enum
)
7209 gcc_assert (SCOPED_ENUM_P (scoped_enum
));
7211 best_match
<tree
, const char *> bm (name
);
7212 for (tree iter
= TYPE_VALUES (scoped_enum
); iter
; iter
= TREE_CHAIN (iter
))
7214 tree id
= TREE_PURPOSE (iter
);
7215 bm
.consider (IDENTIFIER_POINTER (id
));
7217 return name_hint (bm
.get_best_meaningful_candidate (), NULL
);
7220 /* Look up NAME (an IDENTIFIER_NODE) in SCOPE (either a NAMESPACE_DECL
7223 WANT as for lookup_name_1.
7225 Returns a DECL (or OVERLOAD, or BASELINK) representing the
7226 declaration found. If no suitable declaration can be found,
7227 ERROR_MARK_NODE is returned. If COMPLAIN is true and SCOPE is
7228 neither a class-type nor a namespace a diagnostic is issued. */
7231 lookup_qualified_name (tree scope
, tree name
, LOOK_want want
, bool complain
)
7235 if (TREE_CODE (scope
) == NAMESPACE_DECL
)
7237 name_lookup
lookup (name
, want
);
7239 if (qualified_namespace_lookup (scope
, &lookup
))
7243 /* If we have a known type overload, pull it out. This can happen
7245 if (TREE_CODE (t
) == OVERLOAD
&& TREE_TYPE (t
) != unknown_type_node
)
7246 t
= OVL_FUNCTION (t
);
7249 else if (cxx_dialect
!= cxx98
&& TREE_CODE (scope
) == ENUMERAL_TYPE
)
7250 t
= lookup_enumerator (scope
, name
);
7251 else if (is_class_type (scope
, complain
))
7252 t
= lookup_member (scope
, name
, 2, bool (want
& LOOK_want::TYPE
),
7253 tf_warning_or_error
);
7256 return error_mark_node
;
7260 /* Wrapper for the above that takes a string argument. The function name is
7261 not at the beginning of the line to keep this wrapper out of etags. */
7263 tree
lookup_qualified_name (tree t
, const char *p
, LOOK_want w
, bool c
)
7265 return lookup_qualified_name (t
, get_identifier (p
), w
, c
);
7269 Accepts the NAME to lookup and its qualifying SCOPE.
7270 Returns the name/type pair found into the cxx_binding *RESULT,
7271 or false on error. */
7274 qualified_namespace_lookup (tree scope
, name_lookup
*lookup
)
7276 timevar_start (TV_NAME_LOOKUP
);
7277 query_oracle (lookup
->name
);
7278 bool found
= lookup
->search_qualified (ORIGINAL_NAMESPACE (scope
));
7279 timevar_stop (TV_NAME_LOOKUP
);
7283 /* If DECL is suitably visible to the user, consider its name for
7284 spelling correction. */
7287 consider_decl (tree decl
, best_match
<tree
, const char *> &bm
,
7288 bool consider_impl_names
)
7290 /* Skip compiler-generated variables (e.g. __for_begin/__for_end
7291 within range for). */
7292 if (VAR_P (decl
) && DECL_ARTIFICIAL (decl
))
7295 tree suggestion
= DECL_NAME (decl
);
7299 /* Don't suggest names that are for anonymous aggregate types, as
7300 they are an implementation detail generated by the compiler. */
7301 if (IDENTIFIER_ANON_P (suggestion
))
7304 const char *suggestion_str
= IDENTIFIER_POINTER (suggestion
);
7306 /* Ignore internal names with spaces in them. */
7307 if (strchr (suggestion_str
, ' '))
7310 /* Don't suggest names that are reserved for use by the
7311 implementation, unless NAME began with an underscore. */
7312 if (!consider_impl_names
7313 && name_reserved_for_implementation_p (suggestion_str
))
7316 bm
.consider (suggestion_str
);
7319 /* If DECL is suitably visible to the user, add its name to VEC and
7320 return true. Otherwise return false. */
7323 maybe_add_fuzzy_decl (auto_vec
<tree
> &vec
, tree decl
)
7325 /* Skip compiler-generated variables (e.g. __for_begin/__for_end
7326 within range for). */
7327 if (VAR_P (decl
) && DECL_ARTIFICIAL (decl
))
7330 tree suggestion
= DECL_NAME (decl
);
7334 /* Don't suggest names that are for anonymous aggregate types, as
7335 they are an implementation detail generated by the compiler. */
7336 if (IDENTIFIER_ANON_P (suggestion
))
7339 vec
.safe_push (suggestion
);
7344 /* Examing the namespace binding BINDING, and add at most one instance
7345 of the name, if it contains a visible entity of interest. Return
7346 true if we added something. */
7349 maybe_add_fuzzy_binding (auto_vec
<tree
> &vec
, tree binding
,
7350 lookup_name_fuzzy_kind kind
)
7352 tree value
= NULL_TREE
;
7354 if (STAT_HACK_P (binding
))
7356 if (!STAT_TYPE_HIDDEN_P (binding
)
7357 && STAT_TYPE (binding
))
7359 if (maybe_add_fuzzy_decl (vec
, STAT_TYPE (binding
)))
7362 else if (!STAT_DECL_HIDDEN_P (binding
))
7363 value
= STAT_DECL (binding
);
7368 value
= ovl_skip_hidden (value
);
7371 value
= OVL_FIRST (value
);
7372 if (kind
!= FUZZY_LOOKUP_TYPENAME
7373 || TREE_CODE (STRIP_TEMPLATE (value
)) == TYPE_DECL
)
7374 if (maybe_add_fuzzy_decl (vec
, value
))
7378 /* Nothing found. */
7382 /* Helper function for lookup_name_fuzzy.
7383 Traverse binding level LVL, looking for good name matches for NAME
7386 consider_binding_level (tree name
, best_match
<tree
, const char *> &bm
,
7387 cp_binding_level
*lvl
, bool look_within_fields
,
7388 enum lookup_name_fuzzy_kind kind
)
7390 if (look_within_fields
)
7391 if (lvl
->this_entity
&& TREE_CODE (lvl
->this_entity
) == RECORD_TYPE
)
7393 tree type
= lvl
->this_entity
;
7394 bool want_type_p
= (kind
== FUZZY_LOOKUP_TYPENAME
);
7395 tree best_matching_field
7396 = lookup_member_fuzzy (type
, name
, want_type_p
);
7397 if (best_matching_field
)
7398 bm
.consider (IDENTIFIER_POINTER (best_matching_field
));
7401 /* Only suggest names reserved for the implementation if NAME begins
7402 with an underscore. */
7403 bool consider_implementation_names
= (IDENTIFIER_POINTER (name
)[0] == '_');
7405 if (lvl
->kind
!= sk_namespace
)
7406 for (tree t
= lvl
->names
; t
; t
= TREE_CHAIN (t
))
7410 /* OVERLOADs or decls from using declaration are wrapped into
7412 if (TREE_CODE (d
) == TREE_LIST
)
7413 d
= OVL_FIRST (TREE_VALUE (d
));
7415 /* Don't use bindings from implicitly declared functions,
7416 as they were likely misspellings themselves. */
7417 if (TREE_TYPE (d
) == error_mark_node
)
7420 /* If we want a typename, ignore non-types. */
7421 if (kind
== FUZZY_LOOKUP_TYPENAME
7422 && TREE_CODE (STRIP_TEMPLATE (d
)) != TYPE_DECL
)
7425 consider_decl (d
, bm
, consider_implementation_names
);
7429 /* We need to iterate over the namespace hash table, in order to
7430 not mention hidden entities. But hash table iteration is
7431 (essentially) unpredictable, our correction-distance measure
7432 is very granular, and we pick the first of equal distances.
7433 Hence, we need to call the distance-measurer in a predictable
7434 order. So, iterate over the namespace hash, inserting
7435 visible names into a vector. Then sort the vector. Then
7436 determine spelling distance. */
7438 tree ns
= lvl
->this_entity
;
7441 hash_table
<named_decl_hash
>::iterator end
7442 (DECL_NAMESPACE_BINDINGS (ns
)->end ());
7443 for (hash_table
<named_decl_hash
>::iterator iter
7444 (DECL_NAMESPACE_BINDINGS (ns
)->begin ()); iter
!= end
; ++iter
)
7446 tree binding
= *iter
;
7448 if (TREE_CODE (binding
) == BINDING_VECTOR
)
7450 bitmap imports
= get_import_bitmap ();
7451 binding_cluster
*cluster
= BINDING_VECTOR_CLUSTER_BASE (binding
);
7453 if (tree bind
= cluster
->slots
[BINDING_SLOT_CURRENT
])
7454 if (maybe_add_fuzzy_binding (vec
, bind
, kind
))
7457 /* Scan the imported bindings. */
7458 unsigned ix
= BINDING_VECTOR_NUM_CLUSTERS (binding
);
7459 if (BINDING_VECTOR_SLOTS_PER_CLUSTER
== BINDING_SLOTS_FIXED
)
7465 for (; ix
--; cluster
++)
7466 for (unsigned jx
= 0; jx
!= BINDING_VECTOR_SLOTS_PER_CLUSTER
;
7469 /* Are we importing this module? */
7470 if (unsigned base
= cluster
->indices
[jx
].base
)
7471 if (unsigned span
= cluster
->indices
[jx
].span
)
7473 if (bitmap_bit_p (imports
, base
))
7475 while (++base
, --span
);
7480 if (cluster
->slots
[jx
].is_lazy ())
7481 /* Let's not read in everything on the first
7484 if (tree bind
= cluster
->slots
[jx
])
7485 if (maybe_add_fuzzy_binding (vec
, bind
, kind
))
7490 maybe_add_fuzzy_binding (vec
, binding
, kind
);
7493 vec
.qsort ([] (const void *a_
, const void *b_
)
7495 return strcmp (IDENTIFIER_POINTER (*(const tree
*)a_
),
7496 IDENTIFIER_POINTER (*(const tree
*)b_
));
7499 /* Examine longest to shortest. */
7500 for (unsigned ix
= vec
.length (); ix
--;)
7502 const char *str
= IDENTIFIER_POINTER (vec
[ix
]);
7504 /* Ignore internal names with spaces in them. */
7505 if (strchr (str
, ' '))
7508 /* Don't suggest names that are reserved for use by the
7509 implementation, unless NAME began with an underscore. */
7510 if (!consider_implementation_names
7511 && name_reserved_for_implementation_p (str
))
7519 /* Subclass of deferred_diagnostic. Notify the user that the
7520 given macro was used before it was defined.
7521 This can be done in the C++ frontend since tokenization happens
7524 class macro_use_before_def
: public deferred_diagnostic
7527 /* Factory function. Return a new macro_use_before_def instance if
7528 appropriate, or return NULL. */
7529 static macro_use_before_def
*
7530 maybe_make (location_t use_loc
, cpp_hashnode
*macro
)
7532 location_t def_loc
= cpp_macro_definition_location (macro
);
7533 if (def_loc
== UNKNOWN_LOCATION
)
7536 /* We only want to issue a note if the macro was used *before* it was
7538 We don't want to issue a note for cases where a macro was incorrectly
7539 used, leaving it unexpanded (e.g. by using the wrong argument
7541 if (!linemap_location_before_p (line_table
, use_loc
, def_loc
))
7544 return new macro_use_before_def (use_loc
, macro
);
7548 /* Ctor. LOC is the location of the usage. MACRO is the
7549 macro that was used. */
7550 macro_use_before_def (location_t loc
, cpp_hashnode
*macro
)
7551 : deferred_diagnostic (loc
), m_macro (macro
)
7556 ~macro_use_before_def ()
7558 if (is_suppressed_p ())
7561 inform (get_location (), "the macro %qs had not yet been defined",
7562 (const char *)m_macro
->ident
.str
);
7563 inform (cpp_macro_definition_location (m_macro
),
7564 "it was later defined here");
7568 cpp_hashnode
*m_macro
;
7571 /* Determine if it can ever make sense to offer RID as a suggestion for
7574 Subroutine of lookup_name_fuzzy. */
7577 suggest_rid_p (enum rid rid
)
7581 /* Support suggesting function-like keywords. */
7582 case RID_STATIC_ASSERT
:
7586 /* Support suggesting the various decl-specifier words, to handle
7587 e.g. "singed" vs "signed" typos. */
7588 if (cp_keyword_starts_decl_specifier_p (rid
))
7591 /* Otherwise, don't offer it. This avoids suggesting e.g. "if"
7592 and "do" for short misspellings, which are likely to lead to
7593 nonsensical results. */
7598 /* Search for near-matches for NAME within the current bindings, and within
7599 macro names, returning the best match as a const char *, or NULL if
7600 no reasonable match is found.
7602 Use LOC for any deferred diagnostics. */
7605 lookup_name_fuzzy (tree name
, enum lookup_name_fuzzy_kind kind
, location_t loc
)
7607 gcc_assert (TREE_CODE (name
) == IDENTIFIER_NODE
);
7609 /* First, try some well-known names in the C++ standard library, in case
7610 the user forgot a #include. */
7611 const char *header_hint
7612 = get_cp_stdlib_header_for_name (IDENTIFIER_POINTER (name
));
7614 return name_hint (NULL
,
7615 new suggest_missing_header (loc
,
7616 IDENTIFIER_POINTER (name
),
7619 best_match
<tree
, const char *> bm (name
);
7621 cp_binding_level
*lvl
;
7622 for (lvl
= scope_chain
->class_bindings
; lvl
; lvl
= lvl
->level_chain
)
7623 consider_binding_level (name
, bm
, lvl
, true, kind
);
7625 for (lvl
= current_binding_level
; lvl
; lvl
= lvl
->level_chain
)
7626 consider_binding_level (name
, bm
, lvl
, false, kind
);
7628 /* Consider macros: if the user misspelled a macro name e.g. "SOME_MACRO"
7630 x = SOME_OTHER_MACRO (y);
7631 then "SOME_OTHER_MACRO" will survive to the frontend and show up
7632 as a misspelled identifier.
7634 Use the best distance so far so that a candidate is only set if
7635 a macro is better than anything so far. This allows early rejection
7636 (without calculating the edit distance) of macro names that must have
7637 distance >= bm.get_best_distance (), and means that we only get a
7638 non-NULL result for best_macro_match if it's better than any of
7639 the identifiers already checked. */
7640 best_macro_match
bmm (name
, bm
.get_best_distance (), parse_in
);
7641 cpp_hashnode
*best_macro
= bmm
.get_best_meaningful_candidate ();
7642 /* If a macro is the closest so far to NAME, consider it. */
7644 bm
.consider ((const char *)best_macro
->ident
.str
);
7645 else if (bmm
.get_best_distance () == 0)
7647 /* If we have an exact match for a macro name, then either the
7648 macro was used with the wrong argument count, or the macro
7649 has been used before it was defined. */
7650 if (cpp_hashnode
*macro
= bmm
.blithely_get_best_candidate ())
7651 if (cpp_user_macro_p (macro
))
7652 return name_hint (NULL
,
7653 macro_use_before_def::maybe_make (loc
, macro
));
7656 /* Try the "starts_decl_specifier_p" keywords to detect
7657 "singed" vs "signed" typos. */
7658 for (unsigned i
= 0; i
< num_c_common_reswords
; i
++)
7660 const c_common_resword
*resword
= &c_common_reswords
[i
];
7662 if (!suggest_rid_p (resword
->rid
))
7665 tree resword_identifier
= ridpointers
[resword
->rid
];
7666 if (!resword_identifier
)
7668 gcc_assert (TREE_CODE (resword_identifier
) == IDENTIFIER_NODE
);
7670 /* Only consider reserved words that survived the
7671 filtering in init_reswords (e.g. for -std). */
7672 if (!IDENTIFIER_KEYWORD_P (resword_identifier
))
7675 bm
.consider (IDENTIFIER_POINTER (resword_identifier
));
7678 return name_hint (bm
.get_best_meaningful_candidate (), NULL
);
7681 /* Subroutine of outer_binding.
7683 Returns TRUE if BINDING is a binding to a template parameter of
7684 SCOPE. In that case SCOPE is the scope of a primary template
7685 parameter -- in the sense of G++, i.e, a template that has its own
7688 Returns FALSE otherwise. */
7691 binding_to_template_parms_of_scope_p (cxx_binding
*binding
,
7692 cp_binding_level
*scope
)
7694 tree binding_value
, tmpl
, tinfo
;
7697 if (!binding
|| !scope
|| !scope
->this_entity
)
7700 binding_value
= binding
->value
? binding
->value
: binding
->type
;
7701 tinfo
= get_template_info (scope
->this_entity
);
7703 /* BINDING_VALUE must be a template parm. */
7704 if (binding_value
== NULL_TREE
7705 || (!DECL_P (binding_value
)
7706 || !DECL_TEMPLATE_PARM_P (binding_value
)))
7709 /* The level of BINDING_VALUE. */
7711 template_type_parameter_p (binding_value
)
7712 ? TEMPLATE_PARM_LEVEL (TEMPLATE_TYPE_PARM_INDEX
7713 (TREE_TYPE (binding_value
)))
7714 : TEMPLATE_PARM_LEVEL (DECL_INITIAL (binding_value
));
7716 /* The template of the current scope, iff said scope is a primary
7719 && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo
))
7720 ? TI_TEMPLATE (tinfo
)
7723 /* If the level of the parm BINDING_VALUE equals the depth of TMPL,
7724 then BINDING_VALUE is a parameter of TMPL. */
7725 return (tmpl
&& level
== TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl
)));
7728 /* Return the innermost non-namespace binding for NAME from a scope
7729 containing BINDING, or, if BINDING is NULL, the current scope.
7730 Please note that for a given template, the template parameters are
7731 considered to be in the scope containing the current scope.
7732 If CLASS_P is false, then class bindings are ignored. */
7735 outer_binding (tree name
,
7736 cxx_binding
*binding
,
7740 cp_binding_level
*scope
;
7741 cp_binding_level
*outer_scope
;
7745 scope
= binding
->scope
->level_chain
;
7746 outer
= binding
->previous
;
7750 scope
= current_binding_level
;
7751 outer
= IDENTIFIER_BINDING (name
);
7753 outer_scope
= outer
? outer
->scope
: NULL
;
7755 /* Because we create class bindings lazily, we might be missing a
7756 class binding for NAME. If there are any class binding levels
7757 between the LAST_BINDING_LEVEL and the scope in which OUTER was
7758 declared, we must lookup NAME in those class scopes. */
7760 while (scope
&& scope
!= outer_scope
&& scope
->kind
!= sk_namespace
)
7762 if (scope
->kind
== sk_class
)
7764 cxx_binding
*class_binding
;
7766 class_binding
= get_class_binding (name
, scope
);
7769 /* Thread this new class-scope binding onto the
7770 IDENTIFIER_BINDING list so that future lookups
7772 if (BASELINK_P (class_binding
->value
))
7773 /* Don't put a BASELINK in IDENTIFIER_BINDING. */
7774 class_binding
->value
7775 = BASELINK_FUNCTIONS (class_binding
->value
);
7776 class_binding
->previous
= outer
;
7778 binding
->previous
= class_binding
;
7780 IDENTIFIER_BINDING (name
) = class_binding
;
7781 return class_binding
;
7784 /* If we are in a member template, the template parms of the member
7785 template are considered to be inside the scope of the containing
7786 class, but within G++ the class bindings are all pushed between the
7787 template parms and the function body. So if the outer binding is
7788 a template parm for the current scope, return it now rather than
7789 look for a class binding. */
7790 if (outer_scope
&& outer_scope
->kind
== sk_template_parms
7791 && binding_to_template_parms_of_scope_p (outer
, scope
))
7794 scope
= scope
->level_chain
;
7800 /* Return the innermost block-scope or class-scope value binding for
7801 NAME, or NULL_TREE if there is no such binding. */
7804 innermost_non_namespace_value (tree name
)
7806 cxx_binding
*binding
;
7807 binding
= outer_binding (name
, /*binding=*/NULL
, /*class_p=*/true);
7808 return binding
? binding
->value
: NULL_TREE
;
7811 /* True iff current_binding_level is within the potential scope of local
7815 decl_in_scope_p (tree decl
)
7817 gcc_checking_assert (DECL_FUNCTION_SCOPE_P (decl
));
7819 tree name
= DECL_NAME (decl
);
7821 for (cxx_binding
*iter
= NULL
;
7822 (iter
= outer_binding (name
, iter
, /*class_p=*/false)); )
7824 if (!LOCAL_BINDING_P (iter
))
7826 if (iter
->value
== decl
)
7833 /* Look up NAME in the current binding level and its superiors in the
7834 namespace of variables, functions and typedefs. Return a ..._DECL
7835 node of some kind representing its definition if there is only one
7836 such declaration, or return a TREE_LIST with all the overloaded
7837 definitions if there are many, or return NULL_TREE if it is undefined.
7838 Hidden name, either friend declaration or built-in function, are
7841 WHERE controls which scopes are considered. It is a bit mask of
7842 LOOK_where::BLOCK (look in block scope), LOOK_where::CLASS
7843 (look in class scopes) & LOOK_where::NAMESPACE (look in namespace
7844 scopes). It is an error for no bits to be set. These scopes are
7845 searched from innermost to outermost.
7847 WANT controls what kind of entity we'd happy with.
7848 LOOK_want::NORMAL for normal lookup (implicit typedefs can be
7849 hidden). LOOK_want::TYPE for only TYPE_DECLS, LOOK_want::NAMESPACE
7850 for only NAMESPACE_DECLS. These two can be bit-ored to find
7853 WANT can also have LOOK_want::HIDDEN_FRIEND or
7854 LOOK_want::HIDDEN_LAMBDa added to it. */
7857 lookup_name (tree name
, LOOK_where where
, LOOK_want want
)
7859 tree val
= NULL_TREE
;
7861 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
7863 gcc_checking_assert (unsigned (where
) != 0);
7864 /* If we're looking for hidden lambda things, we shouldn't be
7865 looking in namespace scope. */
7866 gcc_checking_assert (!bool (want
& LOOK_want::HIDDEN_LAMBDA
)
7867 || !bool (where
& LOOK_where::NAMESPACE
));
7868 query_oracle (name
);
7870 /* Conversion operators are handled specially because ordinary
7871 unqualified name lookup will not find template conversion
7873 if (IDENTIFIER_CONV_OP_P (name
))
7875 cp_binding_level
*level
;
7877 for (level
= current_binding_level
;
7878 level
&& level
->kind
!= sk_namespace
;
7879 level
= level
->level_chain
)
7884 /* A conversion operator can only be declared in a class
7886 if (level
->kind
!= sk_class
)
7889 /* Lookup the conversion operator in the class. */
7890 class_type
= level
->this_entity
;
7891 operators
= lookup_fnfields (class_type
, name
, /*protect=*/0,
7892 tf_warning_or_error
);
7900 /* First, look in non-namespace scopes. */
7902 if (current_class_type
== NULL_TREE
)
7903 /* Maybe avoid searching the binding stack at all. */
7904 where
= LOOK_where (unsigned (where
) & ~unsigned (LOOK_where::CLASS
));
7906 if (bool (where
& (LOOK_where::BLOCK
| LOOK_where::CLASS
)))
7907 for (cxx_binding
*iter
= nullptr;
7908 (iter
= outer_binding (name
, iter
, bool (where
& LOOK_where::CLASS
)));)
7910 /* Skip entities we don't want. */
7911 if (!bool (where
& (LOCAL_BINDING_P (iter
)
7912 ? LOOK_where::BLOCK
: LOOK_where::CLASS
)))
7915 /* If this is the kind of thing we're looking for, we're done. */
7918 tree binding
= NULL_TREE
;
7920 if (!(!iter
->type
&& HIDDEN_TYPE_BINDING_P (iter
))
7921 && (bool (want
& LOOK_want::HIDDEN_LAMBDA
)
7922 || !is_lambda_ignored_entity (iter
->value
))
7923 && qualify_lookup (iter
->value
, want
))
7924 binding
= iter
->value
;
7925 else if (bool (want
& LOOK_want::TYPE
)
7926 && !HIDDEN_TYPE_BINDING_P (iter
)
7928 binding
= iter
->type
;
7938 /* Now lookup in namespace scopes. */
7939 if (!val
&& bool (where
& LOOK_where::NAMESPACE
))
7941 name_lookup
lookup (name
, want
);
7942 if (lookup
.search_unqualified
7943 (current_decl_namespace (), current_binding_level
))
7947 /* If we have a known type overload, pull it out. This can happen
7948 for both using decls and unhidden functions. */
7949 if (val
&& TREE_CODE (val
) == OVERLOAD
&& TREE_TYPE (val
) != unknown_type_node
)
7950 val
= OVL_FUNCTION (val
);
7956 lookup_name (tree name
)
7958 return lookup_name (name
, LOOK_where::ALL
, LOOK_want::NORMAL
);
7961 /* Look up NAME for type used in elaborated name specifier in
7962 the scopes given by HOW.
7964 Unlike lookup_name_1, we make sure that NAME is actually
7965 declared in the desired scope, not from inheritance, nor using
7966 directive. For using declaration, there is DR138 still waiting
7967 to be resolved. Hidden name coming from an earlier friend
7968 declaration is also returned, and will be made visible unless HOW
7969 is TAG_how::HIDDEN_FRIEND.
7971 A TYPE_DECL best matching the NAME is returned. Catching error
7972 and issuing diagnostics are caller's responsibility. */
7975 lookup_elaborated_type (tree name
, TAG_how how
)
7977 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
7979 cp_binding_level
*b
= current_binding_level
;
7981 if (b
->kind
!= sk_namespace
)
7982 /* Look in non-namespace scopes. */
7983 for (cxx_binding
*iter
= NULL
;
7984 (iter
= outer_binding (name
, iter
, /*class_p=*/ true)); )
7986 /* First check we're supposed to be looking in this scope --
7987 if we're not, we're done. */
7988 for (; b
!= iter
->scope
; b
= b
->level_chain
)
7989 if (!(b
->kind
== sk_cleanup
7990 || b
->kind
== sk_template_parms
7991 || b
->kind
== sk_function_parms
7992 || (b
->kind
== sk_class
&& how
!= TAG_how::CURRENT_ONLY
)))
7995 /* Check if this is the kind of thing we're looking for. If
7996 HOW is TAG_how::CURRENT_ONLY, also make sure it doesn't
7997 come from base class. For ITER->VALUE, we can simply use
7998 INHERITED_VALUE_BINDING_P. For ITER->TYPE, we have to use
8001 We check ITER->TYPE before ITER->VALUE in order to handle
8002 typedef struct C {} C;
8005 if (tree type
= iter
->type
)
8007 if (qualify_lookup (type
, LOOK_want::TYPE
)
8008 && (how
!= TAG_how::CURRENT_ONLY
8009 || LOCAL_BINDING_P (iter
)
8010 || DECL_CONTEXT (type
) == iter
->scope
->this_entity
))
8012 if (how
!= TAG_how::HIDDEN_FRIEND
)
8013 /* It is no longer a hidden binding. */
8014 HIDDEN_TYPE_BINDING_P (iter
) = false;
8021 if (qualify_lookup (iter
->value
, LOOK_want::TYPE
)
8022 && (how
!= TAG_how::CURRENT_ONLY
8023 || !INHERITED_VALUE_BINDING_P (iter
)))
8025 if (how
!= TAG_how::HIDDEN_FRIEND
&& !iter
->type
)
8026 /* It is no longer a hidden binding. */
8027 HIDDEN_TYPE_BINDING_P (iter
) = false;
8034 /* Now check if we can look in namespace scope. */
8035 for (; b
->kind
!= sk_namespace
; b
= b
->level_chain
)
8036 if (!(b
->kind
== sk_cleanup
8037 || b
->kind
== sk_template_parms
8038 || b
->kind
== sk_function_parms
8039 || (b
->kind
== sk_class
&& how
!= TAG_how::CURRENT_ONLY
)))
8042 /* Look in the innermost namespace. */
8043 tree ns
= b
->this_entity
;
8044 if (tree
*slot
= find_namespace_slot (ns
, name
))
8047 if (TREE_CODE (bind
) == BINDING_VECTOR
)
8048 bind
= BINDING_VECTOR_CLUSTER (bind
, 0).slots
[BINDING_SLOT_CURRENT
];
8052 /* If this is the kind of thing we're looking for, we're done. */
8053 if (tree type
= MAYBE_STAT_TYPE (bind
))
8055 if (how
!= TAG_how::HIDDEN_FRIEND
)
8056 /* No longer hidden. */
8057 STAT_TYPE_HIDDEN_P (*slot
) = false;
8061 else if (tree decl
= MAYBE_STAT_DECL (bind
))
8063 if (qualify_lookup (decl
, LOOK_want::TYPE
))
8065 if (how
!= TAG_how::HIDDEN_FRIEND
&& STAT_HACK_P (bind
)
8066 && STAT_DECL_HIDDEN_P (bind
))
8068 if (STAT_TYPE (bind
))
8069 STAT_DECL_HIDDEN_P (bind
) = false;
8072 /* There is no type, just remove the stat
8077 BINDING_VECTOR_CLUSTER (*slot
, 0)
8078 .slots
[BINDING_SLOT_CURRENT
] = decl
;
8086 if (TREE_CODE (*slot
) == BINDING_VECTOR
)
8088 /* We could be redeclaring a global module entity, (from GMF
8089 or header unit), or from another partition, or
8090 specializing an imported template. */
8091 bitmap imports
= get_import_bitmap ();
8092 binding_cluster
*cluster
= BINDING_VECTOR_CLUSTER_BASE (*slot
);
8094 /* Scan the imported bindings. */
8095 unsigned ix
= BINDING_VECTOR_NUM_CLUSTERS (*slot
);
8096 if (BINDING_VECTOR_SLOTS_PER_CLUSTER
== BINDING_SLOTS_FIXED
)
8102 /* Do this in forward order, so we load modules in an order
8103 the user expects. */
8104 for (; ix
--; cluster
++)
8105 for (unsigned jx
= 0; jx
!= BINDING_VECTOR_SLOTS_PER_CLUSTER
; jx
++)
8107 /* Are we importing this module? */
8108 if (unsigned base
= cluster
->indices
[jx
].base
)
8109 if (unsigned span
= cluster
->indices
[jx
].span
)
8111 if (bitmap_bit_p (imports
, base
))
8113 while (++base
, --span
);
8118 if (cluster
->slots
[jx
].is_lazy ())
8120 gcc_assert (cluster
->indices
[jx
].span
== 1);
8121 lazy_load_binding (cluster
->indices
[jx
].base
,
8122 ns
, name
, &cluster
->slots
[jx
]);
8124 tree bind
= cluster
->slots
[jx
];
8126 /* Load errors could mean there's nothing here. */
8129 /* Extract what we can see from here. If there's no
8130 stat_hack, then everything was exported. */
8131 tree type
= NULL_TREE
;
8133 /* If no stat hack, everything is visible. */
8134 if (STAT_HACK_P (bind
))
8136 if (STAT_TYPE_VISIBLE_P (bind
))
8137 type
= STAT_TYPE (bind
);
8138 bind
= STAT_VISIBLE (bind
);
8141 if (type
&& qualify_lookup (type
, LOOK_want::TYPE
))
8144 if (bind
&& qualify_lookup (bind
, LOOK_want::TYPE
))
8148 if (!module_purview_p ())
8150 /* We're in the global module, perhaps there's a tag
8153 /* FIXME: In general we should probably merge global module
8154 classes in check_module_override rather than here, but for
8155 GCC14 let's just fix lazy declarations of __class_type_info in
8156 build_dynamic_cast_1. */
8157 if (current_namespace
== abi_node
)
8159 tree g
= (BINDING_VECTOR_CLUSTER (*slot
, 0)
8160 .slots
[BINDING_SLOT_GLOBAL
]);
8161 for (ovl_iterator
iter (g
); iter
; ++iter
)
8162 if (qualify_lookup (*iter
, LOOK_want::TYPE
))
8172 /* The type TYPE is being declared. If it is a class template, or a
8173 specialization of a class template, do any processing required and
8174 perform error-checking. If IS_FRIEND is nonzero, this TYPE is
8175 being declared a friend. B is the binding level at which this TYPE
8178 Returns the TYPE_DECL for TYPE, which may have been altered by this
8182 maybe_process_template_type_declaration (tree type
, int is_friend
,
8183 cp_binding_level
*b
)
8185 tree decl
= TYPE_NAME (type
);
8187 if (processing_template_parmlist
)
8188 /* You can't declare a new template type in a template parameter
8189 list. But, you can declare a non-template type:
8191 template <class A*> struct S;
8193 is a forward-declaration of `A'. */
8195 else if (b
->kind
== sk_namespace
8196 && current_binding_level
->kind
!= sk_namespace
)
8197 /* If this new type is being injected into a containing scope,
8198 then it's not a template type. */
8202 gcc_assert (MAYBE_CLASS_TYPE_P (type
)
8203 || TREE_CODE (type
) == ENUMERAL_TYPE
);
8205 if (processing_template_decl
)
8207 decl
= push_template_decl (decl
, is_friend
);
8208 if (decl
== error_mark_node
)
8209 return error_mark_node
;
8211 /* If the current binding level is the binding level for the
8212 template parameters (see the comment in
8213 begin_template_parm_list) and the enclosing level is a class
8214 scope, and we're not looking at a friend, push the
8215 declaration of the member class into the class scope. In the
8216 friend case, push_template_decl will already have put the
8217 friend into global scope, if appropriate. */
8218 if (TREE_CODE (type
) != ENUMERAL_TYPE
8219 && !is_friend
&& b
->kind
== sk_template_parms
8220 && b
->level_chain
->kind
== sk_class
)
8222 finish_member_declaration (CLASSTYPE_TI_TEMPLATE (type
));
8224 if (!COMPLETE_TYPE_P (current_class_type
))
8225 maybe_add_class_template_decl_list (current_class_type
,
8226 type
, /*friend_p=*/0);
8234 /* Push a tag name NAME for struct/class/union/enum type TYPE. In case
8235 that the NAME is a class template, the tag is processed but not pushed.
8237 The pushed scope depend on the SCOPE parameter:
8238 - When SCOPE is TS_CURRENT, put it into the inner-most non-sk_cleanup
8240 - When SCOPE is TS_GLOBAL, put it in the inner-most non-class and
8241 non-template-parameter scope. This case is needed for forward
8243 - When SCOPE is TS_WITHIN_ENCLOSING_NON_CLASS, this is similar to
8244 TS_GLOBAL case except that names within template-parameter scopes
8245 are not pushed at all.
8247 Returns TYPE upon success and ERROR_MARK_NODE otherwise. */
8250 pushtag (tree name
, tree type
, TAG_how how
)
8254 gcc_assert (identifier_p (name
));
8256 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
8258 cp_binding_level
*b
= current_binding_level
;
8261 if (/* Cleanup scopes are not scopes from the point of view of
8263 b
->kind
== sk_cleanup
8264 /* Neither are function parameter scopes. */
8265 || b
->kind
== sk_function_parms
8266 /* Neither are the scopes used to hold template parameters
8267 for an explicit specialization. For an ordinary template
8268 declaration, these scopes are not scopes from the point of
8269 view of the language. */
8270 || (b
->kind
== sk_template_parms
8271 && (b
->explicit_spec_p
|| how
== TAG_how::GLOBAL
)))
8273 else if (b
->kind
== sk_class
&& how
!= TAG_how::CURRENT_ONLY
)
8276 if (b
->kind
== sk_template_parms
)
8283 /* Do C++ gratuitous typedefing. */
8284 if (REAL_IDENTIFIER_TYPE_VALUE (name
) != type
)
8287 tree context
= TYPE_CONTEXT (type
);
8291 cp_binding_level
*cb
= b
;
8292 while (cb
->kind
!= sk_namespace
8293 && cb
->kind
!= sk_class
8294 && (cb
->kind
!= sk_function_parms
8295 || !cb
->this_entity
))
8296 cb
= cb
->level_chain
;
8297 tree cs
= cb
->this_entity
;
8299 gcc_checking_assert (TREE_CODE (cs
) == FUNCTION_DECL
8300 ? cs
== current_function_decl
8301 : TYPE_P (cs
) ? cs
== current_class_type
8302 : cs
== current_namespace
);
8304 if (how
== TAG_how::CURRENT_ONLY
8305 || (cs
&& TREE_CODE (cs
) == FUNCTION_DECL
))
8307 else if (cs
&& TYPE_P (cs
))
8308 /* When declaring a friend class of a local class, we want
8309 to inject the newly named class into the scope
8310 containing the local class, not the namespace
8312 context
= decl_function_context (get_type_decl (cs
));
8315 context
= current_namespace
;
8317 tdef
= create_implicit_typedef (name
, type
);
8318 DECL_CONTEXT (tdef
) = FROB_CONTEXT (context
);
8319 set_originating_module (tdef
);
8321 decl
= maybe_process_template_type_declaration
8322 (type
, how
== TAG_how::HIDDEN_FRIEND
, b
);
8323 if (decl
== error_mark_node
)
8326 if (b
->kind
== sk_class
)
8328 if (!TYPE_BEING_DEFINED (current_class_type
))
8329 /* Don't push anywhere if the class is complete; a lambda in an
8330 NSDMI is not a member of the class. */
8332 else if (!PROCESSING_REAL_TEMPLATE_DECL_P ())
8333 /* Put this TYPE_DECL on the TYPE_FIELDS list for the
8334 class. But if it's a member template class, we want
8335 the TEMPLATE_DECL, not the TYPE_DECL, so this is done
8337 finish_member_declaration (decl
);
8339 pushdecl_class_level (decl
);
8341 else if (b
->kind
== sk_template_parms
)
8343 /* Do not push the tag here -- we'll want to push the
8345 if (b
->level_chain
->kind
!= sk_class
)
8346 set_identifier_type_value_with_scope (name
, tdef
, b
->level_chain
);
8350 decl
= do_pushdecl_with_scope
8351 (decl
, b
, /*hiding=*/(how
== TAG_how::HIDDEN_FRIEND
));
8352 if (decl
== error_mark_node
)
8355 if (DECL_CONTEXT (decl
) == std_node
8356 && init_list_identifier
== DECL_NAME (TYPE_NAME (type
))
8357 && !CLASSTYPE_TEMPLATE_INFO (type
))
8359 error ("declaration of %<std::initializer_list%> does not match "
8360 "%<#include <initializer_list>%>, isn%'t a template");
8361 return error_mark_node
;
8365 TYPE_CONTEXT (type
) = DECL_CONTEXT (decl
);
8367 /* If this is a local class, keep track of it. We need this
8368 information for name-mangling, and so that it is possible to
8369 find all function definitions in a translation unit in a
8370 convenient way. (It's otherwise tricky to find a member
8371 function definition it's only pointed to from within a local
8373 if (TYPE_FUNCTION_SCOPE_P (type
))
8375 if (processing_template_decl
)
8377 /* Push a DECL_EXPR so we call pushtag at the right time in
8378 template instantiation rather than in some nested context. */
8379 add_decl_expr (decl
);
8381 /* Lambdas use LAMBDA_EXPR_DISCRIMINATOR instead. */
8382 else if (!LAMBDA_TYPE_P (type
))
8383 determine_local_discriminator (TYPE_NAME (type
));
8387 if (b
->kind
== sk_class
8388 && !COMPLETE_TYPE_P (current_class_type
))
8389 maybe_add_class_template_decl_list (current_class_type
,
8390 type
, /*friend_p=*/0);
8392 decl
= TYPE_NAME (type
);
8393 gcc_assert (TREE_CODE (decl
) == TYPE_DECL
);
8395 /* Set type visibility now if this is a forward declaration. */
8396 TREE_PUBLIC (decl
) = 1;
8397 determine_visibility (decl
);
8402 /* Subroutines for reverting temporarily to top-level for instantiation
8403 of templates and such. We actually need to clear out the class- and
8404 local-value slots of all identifiers, so that only the global values
8405 are at all visible. Simply setting current_binding_level to the global
8406 scope isn't enough, because more binding levels may be pushed. */
8407 struct saved_scope
*scope_chain
;
8409 /* Return true if ID has not already been marked. */
8412 store_binding_p (tree id
)
8414 if (!id
|| !IDENTIFIER_BINDING (id
))
8417 if (IDENTIFIER_MARKED (id
))
8423 /* Add an appropriate binding to *OLD_BINDINGS which needs to already
8424 have enough space reserved. */
8427 store_binding (tree id
, vec
<cxx_saved_binding
, va_gc
> **old_bindings
)
8429 cxx_saved_binding saved
;
8431 gcc_checking_assert (store_binding_p (id
));
8433 IDENTIFIER_MARKED (id
) = 1;
8435 saved
.identifier
= id
;
8436 saved
.binding
= IDENTIFIER_BINDING (id
);
8437 saved
.real_type_value
= REAL_IDENTIFIER_TYPE_VALUE (id
);
8438 (*old_bindings
)->quick_push (saved
);
8439 IDENTIFIER_BINDING (id
) = NULL
;
8443 store_bindings (tree names
, vec
<cxx_saved_binding
, va_gc
> **old_bindings
)
8445 static vec
<tree
> bindings_need_stored
;
8449 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
8450 for (t
= names
; t
; t
= TREE_CHAIN (t
))
8452 if (TREE_CODE (t
) == TREE_LIST
)
8453 id
= TREE_PURPOSE (t
);
8457 if (store_binding_p (id
))
8458 bindings_need_stored
.safe_push (id
);
8460 if (!bindings_need_stored
.is_empty ())
8462 vec_safe_reserve_exact (*old_bindings
, bindings_need_stored
.length ());
8463 for (i
= 0; bindings_need_stored
.iterate (i
, &id
); ++i
)
8465 /* We can apparently have duplicates in NAMES. */
8466 if (store_binding_p (id
))
8467 store_binding (id
, old_bindings
);
8469 bindings_need_stored
.truncate (0);
8473 /* Like store_bindings, but NAMES is a vector of cp_class_binding
8474 objects, rather than a TREE_LIST. */
8477 store_class_bindings (vec
<cp_class_binding
, va_gc
> *names
,
8478 vec
<cxx_saved_binding
, va_gc
> **old_bindings
)
8480 static vec
<tree
> bindings_need_stored
;
8482 cp_class_binding
*cb
;
8484 for (i
= 0; vec_safe_iterate (names
, i
, &cb
); ++i
)
8485 if (store_binding_p (cb
->identifier
))
8486 bindings_need_stored
.safe_push (cb
->identifier
);
8487 if (!bindings_need_stored
.is_empty ())
8490 vec_safe_reserve_exact (*old_bindings
, bindings_need_stored
.length ());
8491 for (i
= 0; bindings_need_stored
.iterate (i
, &id
); ++i
)
8492 store_binding (id
, old_bindings
);
8493 bindings_need_stored
.truncate (0);
8497 /* A chain of saved_scope structures awaiting reuse. */
8499 static GTY((deletable
)) struct saved_scope
*free_saved_scope
;
8502 push_to_top_level (void)
8504 struct saved_scope
*s
;
8505 cp_binding_level
*b
;
8506 cxx_saved_binding
*sb
;
8510 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
8512 /* Reuse or create a new structure for this saved scope. */
8513 if (free_saved_scope
!= NULL
)
8515 s
= free_saved_scope
;
8516 free_saved_scope
= s
->prev
;
8518 vec
<cxx_saved_binding
, va_gc
> *old_bindings
= s
->old_bindings
;
8519 memset (s
, 0, sizeof (*s
));
8520 /* Also reuse the structure's old_bindings vector. */
8521 vec_safe_truncate (old_bindings
, 0);
8522 s
->old_bindings
= old_bindings
;
8525 s
= ggc_cleared_alloc
<saved_scope
> ();
8527 b
= scope_chain
? current_binding_level
: 0;
8529 /* If we're in the middle of some function, save our state. */
8533 push_function_context ();
8538 if (scope_chain
&& previous_class_level
)
8539 store_class_bindings (previous_class_level
->class_shadowed
,
8542 /* Have to include the global scope, because class-scope decls
8543 aren't listed anywhere useful. */
8544 for (; b
; b
= b
->level_chain
)
8548 /* Template IDs are inserted into the global level. If they were
8549 inserted into namespace level, finish_file wouldn't find them
8550 when doing pending instantiations. Therefore, don't stop at
8551 namespace level, but continue until :: . */
8552 if (global_scope_p (b
))
8555 store_bindings (b
->names
, &s
->old_bindings
);
8556 /* We also need to check class_shadowed to save class-level type
8557 bindings, since pushclass doesn't fill in b->names. */
8558 if (b
->kind
== sk_class
)
8559 store_class_bindings (b
->class_shadowed
, &s
->old_bindings
);
8561 /* Unwind type-value slots back to top level. */
8562 for (t
= b
->type_shadowed
; t
; t
= TREE_CHAIN (t
))
8563 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (t
), TREE_VALUE (t
));
8566 FOR_EACH_VEC_SAFE_ELT (s
->old_bindings
, i
, sb
)
8567 IDENTIFIER_MARKED (sb
->identifier
) = 0;
8569 s
->prev
= scope_chain
;
8571 s
->need_pop_function_context
= need_pop
;
8572 s
->function_decl
= current_function_decl
;
8573 s
->unevaluated_operand
= cp_unevaluated_operand
;
8574 s
->inhibit_evaluation_warnings
= c_inhibit_evaluation_warnings
;
8575 s
->suppress_location_wrappers
= suppress_location_wrappers
;
8576 s
->x_stmt_tree
.stmts_are_full_exprs_p
= true;
8579 current_function_decl
= NULL_TREE
;
8580 current_lang_base
= NULL
;
8581 current_lang_name
= lang_name_cplusplus
;
8582 current_namespace
= global_namespace
;
8583 push_class_stack ();
8584 cp_unevaluated_operand
= 0;
8585 c_inhibit_evaluation_warnings
= 0;
8586 suppress_location_wrappers
= 0;
8590 pop_from_top_level (void)
8592 struct saved_scope
*s
= scope_chain
;
8593 cxx_saved_binding
*saved
;
8596 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
8600 release_tree_vector (current_lang_base
);
8602 scope_chain
= s
->prev
;
8603 FOR_EACH_VEC_SAFE_ELT (s
->old_bindings
, i
, saved
)
8605 tree id
= saved
->identifier
;
8607 IDENTIFIER_BINDING (id
) = saved
->binding
;
8608 SET_IDENTIFIER_TYPE_VALUE (id
, saved
->real_type_value
);
8611 /* If we were in the middle of compiling a function, restore our
8613 if (s
->need_pop_function_context
)
8614 pop_function_context ();
8615 current_function_decl
= s
->function_decl
;
8616 cp_unevaluated_operand
= s
->unevaluated_operand
;
8617 c_inhibit_evaluation_warnings
= s
->inhibit_evaluation_warnings
;
8618 suppress_location_wrappers
= s
->suppress_location_wrappers
;
8620 /* Make this saved_scope structure available for reuse by
8621 push_to_top_level. */
8622 s
->prev
= free_saved_scope
;
8623 free_saved_scope
= s
;
8628 /* Helper class for saving/restoring relevant global flags for the
8629 function-local case of maybe_push_to_top_level. */
8631 struct local_state_t
8633 int cp_unevaluated_operand
;
8634 int c_inhibit_evaluation_warnings
;
8636 static local_state_t
8640 s
.cp_unevaluated_operand
= ::cp_unevaluated_operand
;
8641 ::cp_unevaluated_operand
= 0;
8642 s
.c_inhibit_evaluation_warnings
= ::c_inhibit_evaluation_warnings
;
8643 ::c_inhibit_evaluation_warnings
= 0;
8650 ::cp_unevaluated_operand
= this->cp_unevaluated_operand
;
8651 ::c_inhibit_evaluation_warnings
= this->c_inhibit_evaluation_warnings
;
8655 vec
<local_state_t
> local_state_stack
;
8659 /* Like push_to_top_level, but not if D is function-local. Returns whether we
8663 maybe_push_to_top_level (tree d
)
8665 /* Push if D isn't function-local, or is a lambda function, for which name
8666 resolution is already done. */
8667 const bool push_to_top
8668 = (LAMBDA_FUNCTION_P (d
)
8669 || (TREE_CODE (d
) == TYPE_DECL
8671 && LAMBDA_TYPE_P (TREE_TYPE (d
)))
8672 || !current_function_decl
8673 || !decl_function_context (d
));
8676 push_to_top_level ();
8679 gcc_assert (!processing_template_decl
);
8680 push_function_context ();
8681 local_state_stack
.safe_push (local_state_t::save_and_clear ());
8687 /* Return from whatever maybe_push_to_top_level did. */
8690 maybe_pop_from_top_level (bool push_to_top
)
8693 pop_from_top_level ();
8696 local_state_stack
.pop ().restore ();
8697 pop_function_context ();
8701 /* Push into the scope of the namespace NS, even if it is deeply
8702 nested within another namespace. */
8705 push_nested_namespace (tree ns
)
8707 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
8708 if (ns
== global_namespace
)
8709 push_to_top_level ();
8712 push_nested_namespace (CP_DECL_CONTEXT (ns
));
8713 resume_scope (NAMESPACE_LEVEL (ns
));
8714 current_namespace
= ns
;
8718 /* Pop back from the scope of the namespace NS, which was previously
8719 entered with push_nested_namespace. */
8722 pop_nested_namespace (tree ns
)
8724 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
8725 while (ns
!= global_namespace
)
8727 ns
= CP_DECL_CONTEXT (ns
);
8728 current_namespace
= ns
;
8732 pop_from_top_level ();
8735 /* Add TARGET to USINGS, if it does not already exist there. We used
8736 to build the complete graph of usings at this point, from the POV
8737 of the source namespaces. Now we build that as we perform the
8738 unqualified search. */
8741 add_using_namespace (vec
<tree
, va_gc
> *&usings
, tree target
)
8744 for (unsigned ix
= usings
->length (); ix
--;)
8745 if ((*usings
)[ix
] == target
)
8748 vec_safe_push (usings
, target
);
8751 /* Tell the debug system of a using directive. */
8754 emit_debug_info_using_namespace (tree from
, tree target
, bool implicit
)
8756 /* Emit debugging info. */
8757 tree context
= from
!= global_namespace
? from
: NULL_TREE
;
8758 debug_hooks
->imported_module_or_decl (target
, NULL_TREE
, context
, false,
8762 /* Process a using directive. */
8765 finish_using_directive (tree target
, tree attribs
)
8767 if (target
== error_mark_node
)
8770 if (current_binding_level
->kind
!= sk_namespace
)
8771 add_stmt (build_stmt (input_location
, USING_STMT
, target
));
8773 emit_debug_info_using_namespace (current_binding_level
->this_entity
,
8774 ORIGINAL_NAMESPACE (target
), false);
8776 add_using_namespace (current_binding_level
->using_directives
,
8777 ORIGINAL_NAMESPACE (target
));
8779 bool diagnosed
= false;
8780 if (attribs
!= error_mark_node
)
8781 for (tree a
= attribs
; a
; a
= TREE_CHAIN (a
))
8783 tree name
= get_attribute_name (a
);
8784 if (current_binding_level
->kind
== sk_namespace
8785 && is_attribute_p ("strong", name
))
8787 if (warning (0, "%<strong%> using directive no longer supported")
8788 && CP_DECL_CONTEXT (target
) == current_namespace
)
8789 inform (DECL_SOURCE_LOCATION (target
),
8790 "you can use an inline namespace instead");
8792 else if ((flag_openmp
|| flag_openmp_simd
)
8793 && get_attribute_namespace (a
) == omp_identifier
8794 && (is_attribute_p ("directive", name
)
8795 || is_attribute_p ("sequence", name
)
8796 || is_attribute_p ("decl", name
)))
8800 if (tree ar
= TREE_VALUE (a
))
8802 tree d
= TREE_VALUE (ar
);
8803 gcc_assert (TREE_CODE (d
) == DEFERRED_PARSE
);
8804 error ("%<omp::%s%> not allowed to be specified in "
8806 TREE_PUBLIC (d
) ? "decl" : "directive");
8809 error ("%<omp::%E%> not allowed to be specified in this "
8814 else if (!attribute_ignored_p (a
))
8815 warning (OPT_Wattributes
, "%qD attribute directive ignored", name
);
8819 /* Pushes X into the global namespace. */
8822 pushdecl_top_level (tree x
)
8824 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
8825 push_to_top_level ();
8826 gcc_checking_assert (!DECL_CONTEXT (x
));
8827 DECL_CONTEXT (x
) = FROB_CONTEXT (global_namespace
);
8828 x
= pushdecl_namespace_level (x
);
8829 pop_from_top_level ();
8833 /* Pushes X into the global namespace and calls cp_finish_decl to
8834 register the variable, initializing it with INIT. */
8837 pushdecl_top_level_and_finish (tree x
, tree init
)
8839 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
8840 push_to_top_level ();
8841 gcc_checking_assert (!DECL_CONTEXT (x
));
8842 DECL_CONTEXT (x
) = FROB_CONTEXT (global_namespace
);
8843 x
= pushdecl_namespace_level (x
);
8844 cp_finish_decl (x
, init
, false, NULL_TREE
, 0);
8845 pop_from_top_level ();
8849 /* Enter the namespaces from current_namerspace to NS. */
8852 push_inline_namespaces (tree ns
)
8855 if (ns
!= current_namespace
)
8857 gcc_assert (ns
!= global_namespace
);
8858 count
+= push_inline_namespaces (CP_DECL_CONTEXT (ns
));
8859 resume_scope (NAMESPACE_LEVEL (ns
));
8860 current_namespace
= ns
;
8866 /* SLOT is the (possibly empty) binding slot for NAME in CTX.
8867 Reuse or create a namespace NAME. NAME is null for the anonymous
8871 reuse_namespace (tree
*slot
, tree ctx
, tree name
)
8873 if (modules_p () && *slot
&& TREE_PUBLIC (ctx
) && name
)
8875 /* Public namespace. Shared. */
8876 tree
*global_slot
= slot
;
8877 if (TREE_CODE (*slot
) == BINDING_VECTOR
)
8878 global_slot
= get_fixed_binding_slot (slot
, name
,
8879 BINDING_SLOT_GLOBAL
, false);
8881 for (ovl_iterator
iter (*global_slot
); iter
; ++iter
)
8885 if (TREE_CODE (decl
) == NAMESPACE_DECL
&& !DECL_NAMESPACE_ALIAS (decl
))
8893 make_namespace (tree ctx
, tree name
, location_t loc
, bool inline_p
)
8895 /* Create the namespace. */
8896 tree ns
= build_lang_decl (NAMESPACE_DECL
, name
, void_type_node
);
8897 DECL_SOURCE_LOCATION (ns
) = loc
;
8898 SCOPE_DEPTH (ns
) = SCOPE_DEPTH (ctx
) + 1;
8899 if (!SCOPE_DEPTH (ns
))
8900 /* We only allow depth 255. */
8901 sorry ("cannot nest more than %d namespaces", SCOPE_DEPTH (ctx
));
8902 DECL_CONTEXT (ns
) = FROB_CONTEXT (ctx
);
8905 /* Anon-namespaces in different header-unit imports are distinct.
8906 But that's ok as their contents all have internal linkage.
8907 (This is different to how they'd behave as textual includes,
8908 but doing this at all is really odd source.) */
8909 SET_DECL_ASSEMBLER_NAME (ns
, anon_identifier
);
8910 else if (TREE_PUBLIC (ctx
))
8911 TREE_PUBLIC (ns
) = true;
8914 DECL_NAMESPACE_INLINE_P (ns
) = true;
8919 /* NS was newly created, finish off making it. */
8922 make_namespace_finish (tree ns
, tree
*slot
, bool from_import
= false)
8924 if (modules_p () && TREE_PUBLIC (ns
) && (from_import
|| *slot
!= ns
))
8926 /* Merge into global slot. */
8927 tree
*gslot
= get_fixed_binding_slot (slot
, DECL_NAME (ns
),
8928 BINDING_SLOT_GLOBAL
, true);
8932 tree ctx
= CP_DECL_CONTEXT (ns
);
8933 cp_binding_level
*scope
= ggc_cleared_alloc
<cp_binding_level
> ();
8934 scope
->this_entity
= ns
;
8935 scope
->more_cleanups_ok
= true;
8936 scope
->kind
= sk_namespace
;
8937 scope
->level_chain
= NAMESPACE_LEVEL (ctx
);
8938 NAMESPACE_LEVEL (ns
) = scope
;
8940 if (DECL_NAMESPACE_INLINE_P (ns
))
8941 vec_safe_push (DECL_NAMESPACE_INLINEES (ctx
), ns
);
8943 if (DECL_NAMESPACE_INLINE_P (ns
) || !DECL_NAME (ns
))
8944 emit_debug_info_using_namespace (ctx
, ns
, true);
8947 /* Push into the scope of the NAME namespace. If NAME is NULL_TREE,
8948 then we enter an anonymous namespace. If MAKE_INLINE is true, then
8949 we create an inline namespace (it is up to the caller to check upon
8950 redefinition). Return the number of namespaces entered. */
8953 push_namespace (tree name
, bool make_inline
)
8955 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
8958 /* We should not get here if the global_namespace is not yet constructed
8959 nor if NAME designates the global namespace: The global scope is
8960 constructed elsewhere. */
8961 gcc_checking_assert (global_namespace
!= NULL
&& name
!= global_identifier
);
8963 tree ns
= NULL_TREE
;
8965 name_lookup
lookup (name
);
8966 if (!lookup
.search_qualified (current_namespace
, /*usings=*/false))
8968 else if (TREE_CODE (lookup
.value
) == TREE_LIST
)
8970 /* An ambiguous lookup. If exactly one is a namespace, we
8971 want that. If more than one is a namespace, error, but
8972 pick one of them. */
8973 /* DR2061 can cause us to find multiple namespaces of the same
8974 name. We must treat that carefully and avoid thinking we
8975 need to push a new (possibly) duplicate namespace. Hey,
8976 if you want to use the same identifier within an inline
8977 nest, knock yourself out. */
8978 for (tree
*chain
= &lookup
.value
, next
; (next
= *chain
);)
8980 tree decl
= TREE_VALUE (next
);
8981 if (TREE_CODE (decl
) == NAMESPACE_DECL
)
8985 else if (SCOPE_DEPTH (ns
) >= SCOPE_DEPTH (decl
))
8989 chain
= &TREE_CHAIN (next
);
8993 *chain
= TREE_CHAIN (next
);
8996 if (TREE_CHAIN (lookup
.value
))
8998 error ("%<namespace %E%> is ambiguous", name
);
8999 print_candidates (lookup
.value
);
9002 else if (TREE_CODE (lookup
.value
) == NAMESPACE_DECL
)
9006 if (tree dna
= DECL_NAMESPACE_ALIAS (ns
))
9008 /* A namespace alias is not allowed here, but if the alias
9009 is for a namespace also inside the current scope,
9010 accept it with a diagnostic. That's better than dying
9012 if (is_nested_namespace (current_namespace
, CP_DECL_CONTEXT (dna
)))
9014 error ("namespace alias %qD not allowed here, "
9015 "assuming %qD", ns
, dna
);
9025 /* DR2061. NS might be a member of an inline namespace. We
9026 need to push into those namespaces. */
9029 for (tree parent
, ctx
= ns
; ctx
!= current_namespace
;
9032 parent
= CP_DECL_CONTEXT (ctx
);
9034 tree bind
= *find_namespace_slot (parent
, DECL_NAME (ctx
), false);
9037 auto &cluster
= BINDING_VECTOR_CLUSTER (bind
, 0);
9038 binding_slot
&slot
= cluster
.slots
[BINDING_SLOT_CURRENT
];
9039 gcc_checking_assert (!(tree
)slot
|| (tree
)slot
== ctx
);
9045 count
+= push_inline_namespaces (CP_DECL_CONTEXT (ns
));
9046 if (DECL_SOURCE_LOCATION (ns
) == BUILTINS_LOCATION
)
9047 /* It's not builtin now. */
9048 DECL_SOURCE_LOCATION (ns
) = input_location
;
9052 /* Before making a new namespace, see if we already have one in
9053 the existing partitions of the current namespace. */
9054 tree
*slot
= find_namespace_slot (current_namespace
, name
, false);
9056 ns
= reuse_namespace (slot
, current_namespace
, name
);
9058 ns
= make_namespace (current_namespace
, name
,
9059 input_location
, make_inline
);
9061 if (pushdecl (ns
) == error_mark_node
)
9065 /* Finish up making the namespace. */
9066 add_decl_to_level (NAMESPACE_LEVEL (current_namespace
), ns
);
9069 slot
= find_namespace_slot (current_namespace
, name
);
9070 /* This should find the slot created by pushdecl. */
9071 gcc_checking_assert (slot
&& *slot
== ns
);
9075 /* pushdecl could have expanded the hash table, so
9076 slot might be invalid. */
9077 slot
= find_namespace_slot (current_namespace
, name
);
9078 gcc_checking_assert (slot
);
9080 make_namespace_finish (ns
, slot
);
9082 /* Add the anon using-directive here, we don't do it in
9083 make_namespace_finish. */
9084 if (!DECL_NAMESPACE_INLINE_P (ns
) && !name
)
9085 add_using_namespace (current_binding_level
->using_directives
, ns
);
9091 /* A public namespace is exported only if explicitly marked, or
9092 it contains exported entities. */
9093 if (TREE_PUBLIC (ns
) && module_exporting_p ())
9094 DECL_MODULE_EXPORT_P (ns
) = true;
9095 if (module_purview_p ())
9096 DECL_MODULE_PURVIEW_P (ns
) = true;
9098 if (make_inline
&& !DECL_NAMESPACE_INLINE_P (ns
))
9100 error_at (input_location
,
9101 "inline namespace must be specified at initial definition");
9102 inform (DECL_SOURCE_LOCATION (ns
), "%qD defined here", ns
);
9104 resume_scope (NAMESPACE_LEVEL (ns
));
9105 current_namespace
= ns
;
9112 /* Pop from the scope of the current namespace. */
9115 pop_namespace (void)
9117 auto_cond_timevar
tv (TV_NAME_LOOKUP
);
9119 gcc_assert (current_namespace
!= global_namespace
);
9120 current_namespace
= CP_DECL_CONTEXT (current_namespace
);
9121 /* The binding level is not popped, as it might be re-opened later. */
9125 /* An IMPORT is an import that is defining namespace NAME inside CTX. Find or
9126 create that namespace and add it to the container's binding-vector. */
9129 add_imported_namespace (tree ctx
, tree name
, location_t loc
, unsigned import
,
9130 bool inline_p
, bool visible_p
)
9132 // FIXME: Something is not correct about the VISIBLE_P handling. We
9133 // need to insert this namespace into
9134 // (a) the GLOBAL or PARTITION slot, if it is TREE_PUBLIC
9135 // (b) The importing module's slot (always)
9136 // (c) Do we need to put it in the CURRENT slot? This is the
9139 tree
*slot
= find_namespace_slot (ctx
, name
, true);
9140 tree decl
= reuse_namespace (slot
, ctx
, name
);
9142 /* Creating and binding. */
9145 decl
= make_namespace (ctx
, name
, loc
, inline_p
);
9146 make_namespace_finish (decl
, slot
, true);
9148 else if (DECL_NAMESPACE_INLINE_P (decl
) != inline_p
)
9150 error_at (loc
, "%s namespace %qD conflicts with reachable definition",
9151 inline_p
? "inline" : "non-inline", decl
);
9152 inform (DECL_SOURCE_LOCATION (decl
), "reachable %s definition here",
9153 inline_p
? "non-inline" : "inline");
9156 if (TREE_PUBLIC (decl
) && TREE_CODE (*slot
) == BINDING_VECTOR
)
9158 /* See if we can extend the final slot. */
9159 binding_cluster
*last
= BINDING_VECTOR_CLUSTER_LAST (*slot
);
9160 gcc_checking_assert (last
->indices
[0].span
);
9161 unsigned jx
= BINDING_VECTOR_SLOTS_PER_CLUSTER
;
9164 if (last
->indices
[jx
].span
)
9166 tree final
= last
->slots
[jx
];
9167 if (visible_p
== !STAT_HACK_P (final
)
9168 && MAYBE_STAT_DECL (final
) == decl
9169 && last
->indices
[jx
].base
+ last
->indices
[jx
].span
== import
9170 && (BINDING_VECTOR_NUM_CLUSTERS (*slot
) > 1
9171 || (BINDING_VECTOR_SLOTS_PER_CLUSTER
> BINDING_SLOTS_FIXED
9172 && jx
>= BINDING_SLOTS_FIXED
)))
9174 last
->indices
[jx
].span
++;
9179 /* Append a new slot. */
9180 tree
*mslot
= &(tree
&)*append_imported_binding_slot (slot
, name
, import
);
9182 gcc_assert (!*mslot
);
9183 *mslot
= visible_p
? decl
: stat_hack (decl
, NULL_TREE
);
9188 /* Pop off extraneous binding levels left over due to syntax errors.
9189 We don't pop past namespaces, as they might be valid. */
9192 pop_everything (void)
9194 if (ENABLE_SCOPE_CHECKING
)
9195 verbatim ("XXX entering %<pop_everything ()%>");
9196 while (!namespace_bindings_p ())
9198 if (current_binding_level
->kind
== sk_class
)
9199 pop_nested_class ();
9203 if (ENABLE_SCOPE_CHECKING
)
9204 verbatim ("XXX leaving %<pop_everything ()%>");
9207 /* Emit debugging information for using declarations and directives.
9208 If input tree is overloaded fn then emit debug info for all
9212 cp_emit_debug_info_for_using (tree t
, tree context
)
9214 /* Don't try to emit any debug information if we have errors. */
9218 /* Do not supply context to imported_module_or_decl, if
9219 it is a global namespace. */
9220 if (context
== global_namespace
)
9221 context
= NULL_TREE
;
9223 t
= MAYBE_BASELINK_FUNCTIONS (t
);
9225 for (lkp_iterator
iter (t
); iter
; ++iter
)
9229 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
9230 /* FIXME: Handle TEMPLATE_DECLs. */
9233 /* Ignore this FUNCTION_DECL if it refers to a builtin declaration
9234 of a builtin function. */
9235 if (TREE_CODE (fn
) == FUNCTION_DECL
9236 && DECL_EXTERNAL (fn
)
9237 && fndecl_built_in_p (fn
))
9240 if (building_stmt_list_p ())
9241 add_stmt (build_stmt (input_location
, USING_STMT
, fn
));
9243 debug_hooks
->imported_module_or_decl (fn
, NULL_TREE
, context
,
9248 /* True if D is a local declaration in dependent scope. Assumes that it is
9249 (part of) the current lookup result for its name. */
9252 dependent_local_decl_p (tree d
)
9254 if (!DECL_LOCAL_DECL_P (d
))
9257 cxx_binding
*b
= IDENTIFIER_BINDING (DECL_NAME (d
));
9258 cp_binding_level
*l
= b
->scope
;
9259 while (!l
->this_entity
)
9261 return uses_template_parms (l
->this_entity
);
9266 #include "gt-cp-name-lookup.h"