Branch data Line data Source code
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>
4 : :
5 : : This file is part of GCC.
6 : :
7 : : GCC is free software; you can redistribute it and/or modify
8 : : it under the terms of the GNU General Public License as published by
9 : : the Free Software Foundation; either version 3, or (at your option)
10 : : any later version.
11 : :
12 : : GCC is distributed in the hope that it will be useful,
13 : : but WITHOUT ANY WARRANTY; without even the implied warranty of
14 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 : : GNU General Public License for more details.
16 : :
17 : : You should have received a copy of the GNU General Public License
18 : : along with GCC; see the file COPYING3. If not see
19 : : <http://www.gnu.org/licenses/>. */
20 : :
21 : : #include "config.h"
22 : : #include "system.h"
23 : : #include "coretypes.h"
24 : : #include "cp-tree.h"
25 : : #include "timevar.h"
26 : : #include "stringpool.h"
27 : : #include "print-tree.h"
28 : : #include "attribs.h"
29 : : #include "debug.h"
30 : : #include "c-family/c-pragma.h"
31 : : #include "gcc-rich-location.h"
32 : : #include "spellcheck-tree.h"
33 : : #include "parser.h"
34 : : #include "c-family/name-hint.h"
35 : : #include "c-family/known-headers.h"
36 : : #include "c-family/c-spellcheck.h"
37 : : #include "bitmap.h"
38 : :
39 : : static cxx_binding *cxx_binding_make (tree value, tree type);
40 : : static cp_binding_level *innermost_nonclass_level (void);
41 : : static void set_identifier_type_value_with_scope (tree id, tree decl,
42 : : cp_binding_level *b);
43 : : static name_hint maybe_suggest_missing_std_header (location_t location,
44 : : tree name);
45 : : static name_hint suggest_alternatives_for_1 (location_t location, tree name,
46 : : bool suggest_misspellings);
47 : :
48 : : /* Slots in BINDING_VECTOR. */
49 : : enum binding_slots
50 : : {
51 : : BINDING_SLOT_CURRENT, /* Slot for current TU. */
52 : : BINDING_SLOT_GLOBAL, /* Slot for merged global module. */
53 : : BINDING_SLOT_PARTITION, /* Slot for merged partition entities or
54 : : imported friends. */
55 : :
56 : : /* Number of always-allocated slots. */
57 : : BINDING_SLOTS_FIXED = BINDING_SLOT_GLOBAL + 1
58 : : };
59 : :
60 : : /* Create an overload suitable for recording an artificial TYPE_DECL
61 : : and another decl. We use this machanism to implement the struct
62 : : stat hack. */
63 : :
64 : : #define STAT_HACK_P(N) ((N) && TREE_CODE (N) == OVERLOAD && OVL_LOOKUP_P (N))
65 : : #define STAT_TYPE_VISIBLE_P(N) TREE_USED (OVERLOAD_CHECK (N))
66 : : #define STAT_TYPE(N) TREE_TYPE (N)
67 : : #define STAT_DECL(N) OVL_FUNCTION (N)
68 : : #define STAT_VISIBLE(N) OVL_CHAIN (N)
69 : : #define MAYBE_STAT_DECL(N) (STAT_HACK_P (N) ? STAT_DECL (N) : N)
70 : : #define MAYBE_STAT_TYPE(N) (STAT_HACK_P (N) ? STAT_TYPE (N) : NULL_TREE)
71 : :
72 : : /* When a STAT_HACK_P is true, OVL_USING_P and OVL_EXPORT_P are valid
73 : : and apply to the hacked type. */
74 : :
75 : : /* For regular (maybe) overloaded functions, we have OVL_HIDDEN_P.
76 : : But we also need to indicate hiddenness on implicit type decls
77 : : (injected friend classes), and (coming soon) decls injected from
78 : : block-scope externs. It is too awkward to press the existing
79 : : overload marking for that. If we have a hidden non-function, we
80 : : always create a STAT_HACK, and use these two markers as needed. */
81 : : #define STAT_TYPE_HIDDEN_P(N) OVL_HIDDEN_P (N)
82 : : #define STAT_DECL_HIDDEN_P(N) OVL_DEDUP_P (N)
83 : :
84 : : /* Create a STAT_HACK node with DECL as the value binding and TYPE as
85 : : the type binding. */
86 : :
87 : : static tree
88 : 505581 : stat_hack (tree decl = NULL_TREE, tree type = NULL_TREE)
89 : : {
90 : 505581 : tree result = make_node (OVERLOAD);
91 : :
92 : : /* Mark this as a lookup, so we can tell this is a stat hack. */
93 : 505581 : OVL_LOOKUP_P (result) = true;
94 : 505581 : STAT_DECL (result) = decl;
95 : 505581 : STAT_TYPE (result) = type;
96 : 505581 : return result;
97 : : }
98 : :
99 : : /* Create a local binding level for NAME. */
100 : :
101 : : static cxx_binding *
102 : 764751512 : create_local_binding (cp_binding_level *level, tree name)
103 : : {
104 : 764751512 : cxx_binding *binding = cxx_binding_make (NULL, NULL);
105 : :
106 : 764751512 : LOCAL_BINDING_P (binding) = true;
107 : 764751512 : binding->scope = level;
108 : 764751512 : binding->previous = IDENTIFIER_BINDING (name);
109 : :
110 : 764751512 : IDENTIFIER_BINDING (name) = binding;
111 : :
112 : 764751512 : return binding;
113 : : }
114 : :
115 : : /* Find the binding for NAME in namespace NS. If CREATE_P is true,
116 : : make an empty binding if there wasn't one. */
117 : :
118 : : static tree *
119 : 8036517594 : find_namespace_slot (tree ns, tree name, bool create_p = false)
120 : : {
121 : 8036517594 : tree *slot = DECL_NAMESPACE_BINDINGS (ns)
122 : 15718048680 : ->find_slot_with_hash (name, name ? IDENTIFIER_HASH_VALUE (name) : 0,
123 : : create_p ? INSERT : NO_INSERT);
124 : 8036517594 : return slot;
125 : : }
126 : :
127 : : static tree
128 : 35623 : find_namespace_value (tree ns, tree name)
129 : : {
130 : 35623 : tree *b = find_namespace_slot (ns, name);
131 : :
132 : 35623 : return b ? MAYBE_STAT_DECL (*b) : NULL_TREE;
133 : : }
134 : :
135 : : /* Look in *SLOT for a the binding of NAME in imported module IX.
136 : : Returns pointer to binding's slot, or NULL if not found. Does a
137 : : binary search, as this is mainly used for random access during
138 : : importing. Do not use for the fixed slots. */
139 : :
140 : : static binding_slot *
141 : 207987 : search_imported_binding_slot (tree *slot, unsigned ix)
142 : : {
143 : 207987 : gcc_assert (ix);
144 : :
145 : 207987 : if (!*slot)
146 : : return NULL;
147 : :
148 : 207987 : if (TREE_CODE (*slot) != BINDING_VECTOR)
149 : : return NULL;
150 : :
151 : 207987 : unsigned clusters = BINDING_VECTOR_NUM_CLUSTERS (*slot);
152 : 207987 : binding_cluster *cluster = BINDING_VECTOR_CLUSTER_BASE (*slot);
153 : :
154 : 207987 : if (BINDING_VECTOR_SLOTS_PER_CLUSTER == BINDING_SLOTS_FIXED)
155 : : {
156 : 207987 : clusters--;
157 : 207987 : cluster++;
158 : : }
159 : :
160 : 416424 : while (clusters > 1)
161 : : {
162 : 450 : unsigned half = clusters / 2;
163 : 450 : gcc_checking_assert (cluster[half].indices[0].span);
164 : 450 : if (cluster[half].indices[0].base > ix)
165 : : clusters = half;
166 : : else
167 : : {
168 : 282 : clusters -= half;
169 : 282 : cluster += half;
170 : : }
171 : : }
172 : :
173 : 207987 : if (clusters)
174 : : /* Is it in this cluster? */
175 : 415707 : for (unsigned off = 0; off != BINDING_VECTOR_SLOTS_PER_CLUSTER; off++)
176 : : {
177 : 415707 : if (!cluster->indices[off].span)
178 : : break;
179 : 415707 : if (cluster->indices[off].base > ix)
180 : : break;
181 : :
182 : 415707 : if (cluster->indices[off].base + cluster->indices[off].span > ix)
183 : 207987 : return &cluster->slots[off];
184 : : }
185 : :
186 : : return NULL;
187 : : }
188 : :
189 : : static void
190 : 208396 : init_global_partition (binding_cluster *cluster, tree decl)
191 : : {
192 : 208396 : bool named = true;
193 : :
194 : 208396 : if (header_module_p ())
195 : : named = false;
196 : 208321 : else if (TREE_PUBLIC (decl)
197 : 208321 : && TREE_CODE (decl) == NAMESPACE_DECL
198 : 209764 : && !DECL_NAMESPACE_ALIAS (decl))
199 : : named = false;
200 : 206893 : else if (!get_originating_module (decl))
201 : : named = false;
202 : :
203 : 0 : binding_slot *mslot;
204 : 0 : if (named)
205 : 0 : mslot = &cluster[BINDING_SLOT_PARTITION
206 : : / BINDING_VECTOR_SLOTS_PER_CLUSTER]
207 : : .slots[BINDING_SLOT_PARTITION
208 : : % BINDING_VECTOR_SLOTS_PER_CLUSTER];
209 : : else
210 : 208396 : mslot = &cluster[0].slots[BINDING_SLOT_GLOBAL];
211 : :
212 : 208396 : if (*mslot)
213 : 43690 : decl = ovl_make (decl, *mslot);
214 : 208396 : *mslot = decl;
215 : :
216 : 208396 : if (TREE_CODE (decl) == CONST_DECL)
217 : : {
218 : 8168 : tree type = TREE_TYPE (decl);
219 : 8168 : if (TREE_CODE (type) == ENUMERAL_TYPE
220 : 8168 : && IDENTIFIER_ANON_P (DECL_NAME (TYPE_NAME (type)))
221 : 13643 : && decl == TREE_VALUE (TYPE_VALUES (type)))
222 : : /* Anonymous enums are keyed by their first enumerator, put
223 : : the TYPE_DECL here too. */
224 : 419 : *mslot = ovl_make (TYPE_NAME (type), *mslot);
225 : : }
226 : 208396 : }
227 : :
228 : : /* Get the fixed binding slot IX. Creating the vector if CREATE is
229 : : non-zero. If CREATE is < 0, make sure there is at least 1 spare
230 : : slot for an import. (It is an error for CREATE < 0 and the slot to
231 : : already exist.) */
232 : :
233 : : static tree *
234 : 351259456 : get_fixed_binding_slot (tree *slot, tree name, unsigned ix, int create)
235 : : {
236 : 351259456 : gcc_checking_assert (ix <= BINDING_SLOT_PARTITION);
237 : :
238 : : /* An assumption is that the fixed slots all reside in one cluster. */
239 : 351259456 : gcc_checking_assert (BINDING_VECTOR_SLOTS_PER_CLUSTER >= BINDING_SLOTS_FIXED);
240 : :
241 : 351259456 : if (!*slot || TREE_CODE (*slot) != BINDING_VECTOR)
242 : : {
243 : 351023808 : if (ix == BINDING_SLOT_CURRENT)
244 : : /* The current TU can just use slot directly. */
245 : : return slot;
246 : :
247 : 282994 : if (!create)
248 : : return NULL;
249 : :
250 : : /* The partition slot is always needed, in case we have imported
251 : : temploid friends with attachment different from the module we
252 : : imported them from. */
253 : 282994 : bool partition_slot = true;
254 : 282994 : unsigned want = ((BINDING_SLOTS_FIXED + partition_slot + (create < 0)
255 : : + BINDING_VECTOR_SLOTS_PER_CLUSTER - 1)
256 : : / BINDING_VECTOR_SLOTS_PER_CLUSTER);
257 : 282994 : tree new_vec = make_binding_vec (name, want);
258 : 282994 : BINDING_VECTOR_NUM_CLUSTERS (new_vec) = want;
259 : 282994 : binding_cluster *cluster = BINDING_VECTOR_CLUSTER_BASE (new_vec);
260 : :
261 : : /* Initialize the fixed slots. */
262 : 848982 : for (unsigned jx = BINDING_SLOTS_FIXED; jx--;)
263 : : {
264 : 565988 : cluster[0].indices[jx].base = 0;
265 : 565988 : cluster[0].indices[jx].span = 1;
266 : 565988 : cluster[0].slots[jx] = NULL_TREE;
267 : : }
268 : :
269 : 282994 : if (partition_slot)
270 : : {
271 : 282994 : unsigned off = BINDING_SLOT_PARTITION % BINDING_VECTOR_SLOTS_PER_CLUSTER;
272 : 282994 : unsigned ind = BINDING_SLOT_PARTITION / BINDING_VECTOR_SLOTS_PER_CLUSTER;
273 : 282994 : cluster[ind].indices[off].base = 0;
274 : 282994 : cluster[ind].indices[off].span = 1;
275 : 282994 : cluster[ind].slots[off] = NULL_TREE;
276 : : }
277 : :
278 : 282994 : if (tree orig = *slot)
279 : : {
280 : : /* Propagate existing value to current slot. */
281 : :
282 : : /* Propagate global & module entities to the global and
283 : : partition slots. */
284 : 164706 : if (tree type = strip_using_decl (MAYBE_STAT_TYPE (orig)))
285 : 39 : init_global_partition (cluster, type);
286 : :
287 : 373063 : for (ovl_iterator iter (strip_using_decl (MAYBE_STAT_DECL (orig)));
288 : 373063 : iter; ++iter)
289 : : {
290 : 208357 : tree decl = *iter;
291 : :
292 : : /* Internal linkage entities are in deduplicateable. */
293 : 208357 : init_global_partition (cluster, decl);
294 : : }
295 : :
296 : 164706 : if (cluster[0].slots[BINDING_SLOT_GLOBAL]
297 : 164706 : && !(TREE_CODE (orig) == NAMESPACE_DECL
298 : 166159 : && !DECL_NAMESPACE_ALIAS (orig)))
299 : : {
300 : : /* Note that we had some GMF entries. */
301 : 163268 : if (!STAT_HACK_P (orig))
302 : 163219 : orig = stat_hack (orig);
303 : :
304 : 163268 : MODULE_BINDING_GLOBAL_P (orig) = true;
305 : : }
306 : :
307 : 164706 : cluster[0].slots[BINDING_SLOT_CURRENT] = orig;
308 : : }
309 : :
310 : 282994 : *slot = new_vec;
311 : 282994 : }
312 : : else
313 : 235648 : gcc_checking_assert (create >= 0);
314 : :
315 : 518642 : unsigned off = ix % BINDING_VECTOR_SLOTS_PER_CLUSTER;
316 : 518642 : binding_cluster &cluster
317 : 518642 : = BINDING_VECTOR_CLUSTER (*slot, ix / BINDING_VECTOR_SLOTS_PER_CLUSTER);
318 : :
319 : : /* There must always be slots for these indices */
320 : 518642 : gcc_checking_assert (cluster.indices[off].span == 1
321 : : && !cluster.indices[off].base
322 : : && !cluster.slots[off].is_lazy ());
323 : :
324 : 518642 : return reinterpret_cast<tree *> (&cluster.slots[off]);
325 : : }
326 : :
327 : : /* *SLOT is a namespace binding slot. Append a slot for imported
328 : : module IX. */
329 : :
330 : : static binding_slot *
331 : 272333 : append_imported_binding_slot (tree *slot, tree name, unsigned ix)
332 : : {
333 : 272333 : gcc_checking_assert (ix);
334 : :
335 : 272333 : if (!*slot || TREE_CODE (*slot) != BINDING_VECTOR)
336 : : /* Make an initial module vector. */
337 : 264373 : get_fixed_binding_slot (slot, name, BINDING_SLOT_GLOBAL, -1);
338 : 7960 : else if (!BINDING_VECTOR_CLUSTER_LAST (*slot)
339 : 7960 : ->indices[BINDING_VECTOR_SLOTS_PER_CLUSTER - 1].span)
340 : : /* There is space in the last cluster. */;
341 : 6358 : else if (BINDING_VECTOR_NUM_CLUSTERS (*slot)
342 : 6358 : != BINDING_VECTOR_ALLOC_CLUSTERS (*slot))
343 : : /* There is space in the vector. */
344 : 0 : BINDING_VECTOR_NUM_CLUSTERS (*slot)++;
345 : : else
346 : : {
347 : : /* Extend the vector. */
348 : 6358 : unsigned have = BINDING_VECTOR_NUM_CLUSTERS (*slot);
349 : 6358 : unsigned want = (have * 3 + 1) / 2;
350 : :
351 : 6358 : if (want > (unsigned short)~0)
352 : 0 : want = (unsigned short)~0;
353 : :
354 : 6358 : tree new_vec = make_binding_vec (name, want);
355 : 6358 : BINDING_VECTOR_NUM_CLUSTERS (new_vec) = have + 1;
356 : 12716 : BINDING_VECTOR_GLOBAL_DUPS_P (new_vec)
357 : 6358 : = BINDING_VECTOR_GLOBAL_DUPS_P (*slot);
358 : 12716 : BINDING_VECTOR_PARTITION_DUPS_P (new_vec)
359 : 6358 : = BINDING_VECTOR_PARTITION_DUPS_P (*slot);
360 : 12716 : memcpy (BINDING_VECTOR_CLUSTER_BASE (new_vec),
361 : 12716 : BINDING_VECTOR_CLUSTER_BASE (*slot),
362 : 6358 : have * sizeof (binding_cluster));
363 : 6358 : *slot = new_vec;
364 : : }
365 : :
366 : 272333 : binding_cluster *last = BINDING_VECTOR_CLUSTER_LAST (*slot);
367 : 538308 : for (unsigned off = 0; off != BINDING_VECTOR_SLOTS_PER_CLUSTER; off++)
368 : 538308 : if (!last->indices[off].span)
369 : : {
370 : : /* Fill the free slot of the cluster. */
371 : 272333 : last->indices[off].base = ix;
372 : 272333 : last->indices[off].span = 1;
373 : 272333 : last->slots[off] = NULL_TREE;
374 : : /* Check monotonicity. */
375 : 272333 : gcc_checking_assert (last[off ? 0 : -1]
376 : : .indices[off ? off - 1
377 : : : BINDING_VECTOR_SLOTS_PER_CLUSTER - 1]
378 : : .base < ix);
379 : 272333 : return &last->slots[off];
380 : : }
381 : :
382 : 0 : gcc_unreachable ();
383 : : }
384 : :
385 : : /* Add DECL to the list of things declared in binding level B. */
386 : :
387 : : static void
388 : 1127017762 : add_decl_to_level (cp_binding_level *b, tree decl)
389 : : {
390 : 1127017762 : gcc_assert (b->kind != sk_class);
391 : :
392 : : /* Make sure we don't create a circular list. xref_tag can end
393 : : up pushing the same artificial decl more than once. We
394 : : should have already detected that in update_binding. (This isn't a
395 : : complete verification of non-circularity.) */
396 : 1127017762 : gcc_assert (b->names != decl);
397 : :
398 : : /* We build up the list in reverse order, and reverse it later if
399 : : necessary. */
400 : 1127017762 : TREE_CHAIN (decl) = b->names;
401 : 1127017762 : b->names = decl;
402 : :
403 : : /* If appropriate, add decl to separate list of statics. We include
404 : : extern variables because they might turn out to be static later.
405 : : It's OK for this list to contain a few false positives. */
406 : 1127017762 : if (b->kind == sk_namespace
407 : 1127017762 : && ((VAR_P (decl) && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
408 : 333995940 : || (TREE_CODE (decl) == FUNCTION_DECL
409 : 277660423 : && (!TREE_PUBLIC (decl)
410 : 277549252 : || decl_internal_context_p (decl)
411 : 277548138 : || DECL_DECLARED_INLINE_P (decl)))))
412 : 13584843 : vec_safe_push (static_decls, decl);
413 : 1127017762 : }
414 : :
415 : : /* Find the binding for NAME in the local binding level B. */
416 : :
417 : : static cxx_binding *
418 : 766150998 : find_local_binding (cp_binding_level *b, tree name)
419 : : {
420 : 766150998 : if (cxx_binding *binding = IDENTIFIER_BINDING (name))
421 : 0 : for (;; b = b->level_chain)
422 : : {
423 : 2197873 : if (binding->scope == b)
424 : : return binding;
425 : :
426 : : /* Cleanup contours are transparent to the language. */
427 : 2195059 : if (b->kind != sk_cleanup)
428 : : break;
429 : : }
430 : : return NULL;
431 : : }
432 : :
433 : : class name_lookup
434 : : {
435 : : public:
436 : : typedef std::pair<tree, tree> using_pair;
437 : : typedef auto_vec<using_pair, 16> using_queue;
438 : :
439 : : public:
440 : : tree name; /* The identifier being looked for. */
441 : :
442 : : /* Usually we just add things to the VALUE binding, but we record
443 : : (hidden) IMPLICIT_TYPEDEFs on the type binding, which is used for
444 : : using-decl resolution. */
445 : : tree value; /* A (possibly ambiguous) set of things found. */
446 : : tree type; /* A type that has been found. */
447 : :
448 : : LOOK_want want; /* What kind of entity we want. */
449 : :
450 : : bool deduping; /* Full deduping is needed because using declarations
451 : : are in play. */
452 : : vec<tree, va_heap, vl_embed> *scopes;
453 : : name_lookup *previous; /* Previously active lookup. */
454 : :
455 : : protected:
456 : : /* Marked scope stack for outermost name lookup. */
457 : : static vec<tree, va_heap, vl_embed> *shared_scopes;
458 : : /* Currently active lookup. */
459 : : static name_lookup *active;
460 : :
461 : : public:
462 : 1388084174 : name_lookup (tree n, LOOK_want w = LOOK_want::NORMAL)
463 : 1388084174 : : name (n), value (NULL_TREE), type (NULL_TREE),
464 : 1388084174 : want (w),
465 : 1388084174 : deduping (false), scopes (NULL), previous (NULL)
466 : : {
467 : 1388084174 : preserve_state ();
468 : : }
469 : 1388084174 : ~name_lookup ()
470 : : {
471 : 1388084174 : gcc_checking_assert (!deduping);
472 : 1388084174 : restore_state ();
473 : 1388084174 : }
474 : :
475 : : private: /* Uncopyable, unmovable, unassignable. I am a rock. */
476 : : name_lookup (const name_lookup &);
477 : : name_lookup &operator= (const name_lookup &);
478 : :
479 : : public:
480 : : /* Turn on or off deduping mode. */
481 : 1422638442 : void dedup (bool state)
482 : : {
483 : 1422638442 : if (deduping != state)
484 : : {
485 : 88796524 : deduping = state;
486 : 88796524 : lookup_mark (value, state);
487 : : }
488 : 1422638442 : }
489 : :
490 : : protected:
491 : 16134412471 : static bool seen_p (tree scope)
492 : : {
493 : 16134412471 : return LOOKUP_SEEN_P (scope);
494 : : }
495 : 21285019 : static bool found_p (tree scope)
496 : : {
497 : 21285019 : return LOOKUP_FOUND_P (scope);
498 : : }
499 : :
500 : : void mark_seen (tree scope); /* Mark and add to scope vector. */
501 : 312781301 : static void mark_found (tree scope)
502 : : {
503 : 312781301 : gcc_checking_assert (seen_p (scope));
504 : 312781301 : LOOKUP_FOUND_P (scope) = true;
505 : 312781301 : }
506 : 7842102998 : bool see_and_mark (tree scope)
507 : : {
508 : 7842102998 : bool ret = seen_p (scope);
509 : 7842102998 : if (!ret)
510 : 1570872887 : mark_seen (scope);
511 : 7690572552 : return ret;
512 : : }
513 : : bool find_and_mark (tree scope);
514 : :
515 : : private:
516 : : void preserve_state ();
517 : : void restore_state ();
518 : :
519 : : public:
520 : : static tree ambiguous (tree thing, tree current);
521 : : void add_value (tree new_val);
522 : : private:
523 : : void add_overload (tree fns);
524 : : void add_type (tree new_type);
525 : : bool process_binding (tree val_bind, tree type_bind);
526 : : unsigned process_module_binding (tree val_bind, tree type_bind, unsigned);
527 : : /* Look in only namespace. */
528 : : bool search_namespace_only (tree scope);
529 : : /* Look in namespace and its (recursive) inlines. Ignore using
530 : : directives. Return true if something found (inc dups). */
531 : : bool search_namespace (tree scope);
532 : : /* Look in the using directives of namespace + inlines using
533 : : qualified lookup rules. */
534 : : bool search_usings (tree scope);
535 : :
536 : : private:
537 : : void queue_namespace (using_queue& queue, int depth, tree scope);
538 : : void queue_usings (using_queue& queue, int depth, vec<tree, va_gc> *usings);
539 : :
540 : : private:
541 : : void add_fns (tree);
542 : :
543 : : private:
544 : : void adl_expr (tree);
545 : : void adl_type (tree);
546 : : void adl_template_arg (tree);
547 : : void adl_class (tree);
548 : : void adl_enum (tree);
549 : : void adl_bases (tree);
550 : : void adl_class_only (tree);
551 : : void adl_namespace (tree);
552 : : void adl_class_fns (tree);
553 : : void adl_namespace_fns (tree, bitmap);
554 : :
555 : : public:
556 : : /* Search namespace + inlines + maybe usings as qualified lookup. */
557 : : bool search_qualified (tree scope, bool usings = true);
558 : :
559 : : /* Search namespace + inlines + usings as unqualified lookup. */
560 : : bool search_unqualified (tree scope, cp_binding_level *);
561 : :
562 : : /* ADL lookup of ARGS. */
563 : : tree search_adl (tree fns, vec<tree, va_gc> *args);
564 : : };
565 : :
566 : : /* Scope stack shared by all outermost lookups. This avoids us
567 : : allocating and freeing on every single lookup. */
568 : : vec<tree, va_heap, vl_embed> *name_lookup::shared_scopes;
569 : :
570 : : /* Currently active lookup. */
571 : : name_lookup *name_lookup::active;
572 : :
573 : : /* Name lookup is recursive, becase ADL can cause template
574 : : instatiation. This is of course a rare event, so we optimize for
575 : : it not happening. When we discover an active name-lookup, which
576 : : must be an ADL lookup, we need to unmark the marked scopes and also
577 : : unmark the lookup we might have been accumulating. */
578 : :
579 : : void
580 : 1388084174 : name_lookup::preserve_state ()
581 : : {
582 : 1388084174 : previous = active;
583 : 1388084174 : if (previous)
584 : : {
585 : 8885 : unsigned length = vec_safe_length (previous->scopes);
586 : 8885 : vec_safe_reserve (previous->scopes, length * 2);
587 : 82267 : for (unsigned ix = length; ix--;)
588 : : {
589 : 73382 : tree decl = (*previous->scopes)[ix];
590 : :
591 : 73382 : gcc_checking_assert (LOOKUP_SEEN_P (decl));
592 : 73382 : LOOKUP_SEEN_P (decl) = false;
593 : :
594 : : /* Preserve the FOUND_P state on the interrupted lookup's
595 : : stack. */
596 : 73382 : if (LOOKUP_FOUND_P (decl))
597 : : {
598 : 8793 : LOOKUP_FOUND_P (decl) = false;
599 : 8793 : previous->scopes->quick_push (decl);
600 : : }
601 : : }
602 : :
603 : : /* Unmark the outer partial lookup. */
604 : 8885 : if (previous->deduping)
605 : 0 : lookup_mark (previous->value, false);
606 : : }
607 : : else
608 : 1388075289 : scopes = shared_scopes;
609 : 1388084174 : active = this;
610 : 1388084174 : }
611 : :
612 : : /* Restore the marking state of a lookup we interrupted. */
613 : :
614 : : void
615 : 1388084174 : name_lookup::restore_state ()
616 : : {
617 : 1388084174 : gcc_checking_assert (!deduping);
618 : :
619 : : /* Unmark and empty this lookup's scope stack. */
620 : 10466740900 : for (unsigned ix = vec_safe_length (scopes); ix--;)
621 : : {
622 : 7690572552 : tree decl = scopes->pop ();
623 : 7690572552 : gcc_checking_assert (LOOKUP_SEEN_P (decl));
624 : 7690572552 : LOOKUP_SEEN_P (decl) = false;
625 : 7690572552 : LOOKUP_FOUND_P (decl) = false;
626 : : }
627 : :
628 : 1388084174 : active = previous;
629 : 1388084174 : if (previous)
630 : : {
631 : 8885 : free (scopes);
632 : :
633 : 8885 : unsigned length = vec_safe_length (previous->scopes);
634 : 82267 : for (unsigned ix = 0; ix != length; ix++)
635 : : {
636 : 81504 : tree decl = (*previous->scopes)[ix];
637 : 81504 : if (LOOKUP_SEEN_P (decl))
638 : : {
639 : : /* The remainder of the scope stack must be recording
640 : : FOUND_P decls, which we want to pop off. */
641 : 8793 : do
642 : : {
643 : 8793 : tree decl = previous->scopes->pop ();
644 : 8793 : gcc_checking_assert (LOOKUP_SEEN_P (decl)
645 : : && !LOOKUP_FOUND_P (decl));
646 : 8793 : LOOKUP_FOUND_P (decl) = true;
647 : : }
648 : 8793 : while (++ix != length);
649 : : break;
650 : : }
651 : :
652 : 73382 : gcc_checking_assert (!LOOKUP_FOUND_P (decl));
653 : 73382 : LOOKUP_SEEN_P (decl) = true;
654 : : }
655 : :
656 : : /* Remark the outer partial lookup. */
657 : 8885 : if (previous->deduping)
658 : 0 : lookup_mark (previous->value, true);
659 : : }
660 : : else
661 : 1388075289 : shared_scopes = scopes;
662 : 1388084174 : }
663 : :
664 : : void
665 : 7690572552 : name_lookup::mark_seen (tree scope)
666 : : {
667 : 7690572552 : gcc_checking_assert (!seen_p (scope));
668 : 7690572552 : LOOKUP_SEEN_P (scope) = true;
669 : 7690572552 : vec_safe_push (scopes, scope);
670 : 7690572552 : }
671 : :
672 : : bool
673 : 0 : name_lookup::find_and_mark (tree scope)
674 : : {
675 : 0 : bool result = LOOKUP_FOUND_P (scope);
676 : 0 : if (!result)
677 : : {
678 : 0 : LOOKUP_FOUND_P (scope) = true;
679 : 0 : if (!LOOKUP_SEEN_P (scope))
680 : 0 : vec_safe_push (scopes, scope);
681 : : }
682 : :
683 : 0 : return result;
684 : : }
685 : :
686 : : /* THING and CURRENT are ambiguous, concatenate them. */
687 : :
688 : : tree
689 : 451 : name_lookup::ambiguous (tree thing, tree current)
690 : : {
691 : 451 : if (TREE_CODE (current) != TREE_LIST)
692 : : {
693 : 340 : current = build_tree_list (NULL_TREE, current);
694 : 340 : TREE_TYPE (current) = error_mark_node;
695 : : }
696 : 451 : current = tree_cons (NULL_TREE, thing, current);
697 : 451 : TREE_TYPE (current) = error_mark_node;
698 : :
699 : 451 : return current;
700 : : }
701 : :
702 : : /* FNS is a new overload set to add to the exising set. */
703 : :
704 : : void
705 : 471347371 : name_lookup::add_overload (tree fns)
706 : : {
707 : 471347371 : if (!deduping && TREE_CODE (fns) == OVERLOAD)
708 : : {
709 : 344254697 : tree probe = fns;
710 : 344254697 : if (!bool (want & LOOK_want::HIDDEN_FRIEND))
711 : 344186398 : probe = ovl_skip_hidden (probe);
712 : 344254697 : if (probe && TREE_CODE (probe) == OVERLOAD
713 : 688509394 : && OVL_DEDUP_P (probe))
714 : : /* We're about to add something found by multiple paths, so need to
715 : : engage deduping mode. */
716 : 30007819 : dedup (true);
717 : : }
718 : :
719 : 471347371 : value = lookup_maybe_add (fns, value, deduping);
720 : 471347371 : }
721 : :
722 : : /* Add a NEW_VAL, a found value binding into the current value binding. */
723 : :
724 : : void
725 : 1113118987 : name_lookup::add_value (tree new_val)
726 : : {
727 : 1113118987 : if (OVL_P (new_val) && (!value || OVL_P (value)))
728 : 450283845 : add_overload (new_val);
729 : 662835142 : else if (!value)
730 : 662608134 : value = new_val;
731 : 227008 : else if (value == new_val)
732 : : ;
733 : 11592 : else if ((TREE_CODE (value) == TYPE_DECL
734 : 11446 : && TREE_CODE (new_val) == TYPE_DECL
735 : 23038 : && same_type_p (TREE_TYPE (value), TREE_TYPE (new_val))))
736 : : /* Typedefs to the same type. */;
737 : 232 : else if (TREE_CODE (value) == NAMESPACE_DECL
738 : 59 : && TREE_CODE (new_val) == NAMESPACE_DECL
739 : 291 : && ORIGINAL_NAMESPACE (value) == ORIGINAL_NAMESPACE (new_val))
740 : : /* Namespace (possibly aliased) to the same namespace. Locate
741 : : the namespace*/
742 : 30 : value = ORIGINAL_NAMESPACE (value);
743 : : else
744 : : {
745 : : /* Disengage deduping mode. */
746 : 202 : dedup (false);
747 : 202 : value = ambiguous (new_val, value);
748 : : }
749 : 1113118987 : }
750 : :
751 : : /* Add a NEW_TYPE, a found type binding into the current type binding. */
752 : :
753 : : void
754 : 398297 : name_lookup::add_type (tree new_type)
755 : : {
756 : 398297 : if (!type)
757 : 398294 : type = new_type;
758 : 3 : else if (TREE_CODE (type) == TREE_LIST
759 : 3 : || !same_type_p (TREE_TYPE (type), TREE_TYPE (new_type)))
760 : 3 : type = ambiguous (new_type, type);
761 : 398297 : }
762 : :
763 : : /* Process a found binding containing NEW_VAL and NEW_TYPE. Returns
764 : : true if we actually found something noteworthy. Hiddenness has
765 : : already been handled in the caller. */
766 : :
767 : : bool
768 : 1123318856 : name_lookup::process_binding (tree new_val, tree new_type)
769 : : {
770 : : /* Did we really see a type? */
771 : 1123318856 : if (new_type
772 : 1123318856 : && (want & LOOK_want::TYPE_NAMESPACE) == LOOK_want::NAMESPACE)
773 : : new_type = NULL_TREE;
774 : :
775 : 1123318856 : new_val = strip_using_decl (new_val);
776 : 1123318856 : new_type = strip_using_decl (new_type);
777 : :
778 : : /* Do we really see a value? */
779 : 1123318856 : if (new_val)
780 : 1113209887 : switch (TREE_CODE (new_val))
781 : : {
782 : 195955875 : case TEMPLATE_DECL:
783 : : /* If we expect types or namespaces, and not templates,
784 : : or this is not a template class. */
785 : 195955875 : if (bool (want & LOOK_want::TYPE_NAMESPACE)
786 : 195955875 : && !DECL_TYPE_TEMPLATE_P (new_val))
787 : : new_val = NULL_TREE;
788 : : break;
789 : 219934561 : case TYPE_DECL:
790 : 219934561 : if ((want & LOOK_want::TYPE_NAMESPACE) == LOOK_want::NAMESPACE
791 : 219934561 : || (new_type && bool (want & LOOK_want::TYPE)))
792 : : new_val = NULL_TREE;
793 : : break;
794 : 191664067 : case NAMESPACE_DECL:
795 : 191664067 : if ((want & LOOK_want::TYPE_NAMESPACE) == LOOK_want::TYPE)
796 : : new_val = NULL_TREE;
797 : : break;
798 : 505655384 : default:
799 : 505655384 : if (bool (want & LOOK_want::TYPE_NAMESPACE))
800 : : new_val = NULL_TREE;
801 : : }
802 : :
803 : : if (!new_val)
804 : : {
805 : 10241527 : new_val = new_type;
806 : 10241527 : new_type = NULL_TREE;
807 : : }
808 : :
809 : : /* Merge into the lookup */
810 : 10241527 : if (new_val)
811 : 1113118987 : add_value (new_val);
812 : 1123318856 : if (new_type)
813 : 398297 : add_type (new_type);
814 : :
815 : 1123318856 : return new_val != NULL_TREE;
816 : : }
817 : :
818 : : /* If we're importing a module containing this binding, add it to the
819 : : lookup set. The trickiness is with namespaces, we only want to
820 : : find it once. */
821 : :
822 : : unsigned
823 : 33202 : name_lookup::process_module_binding (tree new_val, tree new_type,
824 : : unsigned marker)
825 : : {
826 : : /* Optimize for (re-)finding a public namespace. We only need to
827 : : look once. */
828 : 33202 : if (new_val && !new_type
829 : : && TREE_CODE (new_val) == NAMESPACE_DECL
830 : 30775 : && TREE_PUBLIC (new_val)
831 : 36687 : && !DECL_NAMESPACE_ALIAS (new_val))
832 : : {
833 : 3455 : if (marker & 2)
834 : : return marker;
835 : 2047 : marker |= 2;
836 : : }
837 : :
838 : 31794 : if (new_type || new_val)
839 : 29442 : marker |= process_binding (new_val, new_type);
840 : :
841 : : return marker;
842 : : }
843 : :
844 : : /* Look in exactly namespace SCOPE. */
845 : :
846 : : bool
847 : 7560185709 : name_lookup::search_namespace_only (tree scope)
848 : : {
849 : 7560185709 : bool found = false;
850 : 7560185709 : if (tree *binding = find_namespace_slot (scope, name))
851 : : {
852 : 1123312209 : tree val = *binding;
853 : 1123312209 : if (TREE_CODE (val) == BINDING_VECTOR)
854 : : {
855 : : /* I presume the binding list is going to be sparser than
856 : : the import bitmap. Hence iterate over the former
857 : : checking for bits set in the bitmap. */
858 : 22795 : bitmap imports = get_import_bitmap ();
859 : 22795 : binding_cluster *cluster = BINDING_VECTOR_CLUSTER_BASE (val);
860 : 22795 : int marker = 0;
861 : 22795 : int dup_detect = 0;
862 : :
863 : 22795 : if (tree bind = cluster->slots[BINDING_SLOT_CURRENT])
864 : : {
865 : 10816 : if (!deduping)
866 : : {
867 : 9364 : if (named_module_purview_p ())
868 : : {
869 : 255 : dup_detect |= 2;
870 : :
871 : 255 : if (STAT_HACK_P (bind) && MODULE_BINDING_GLOBAL_P (bind))
872 : : dup_detect |= 1;
873 : : }
874 : : else
875 : : dup_detect |= 1;
876 : : }
877 : 10816 : tree type = NULL_TREE;
878 : 10816 : tree value = bind;
879 : :
880 : 10816 : if (STAT_HACK_P (bind))
881 : : {
882 : 8714 : type = STAT_TYPE (bind);
883 : 8714 : value = STAT_DECL (bind);
884 : :
885 : 8714 : if (!bool (want & LOOK_want::HIDDEN_FRIEND))
886 : : {
887 : 8683 : if (STAT_TYPE_HIDDEN_P (bind))
888 : 0 : type = NULL_TREE;
889 : 8683 : if (STAT_DECL_HIDDEN_P (bind))
890 : : value = NULL_TREE;
891 : : else
892 : 8683 : value = ovl_skip_hidden (value);
893 : : }
894 : : }
895 : 2102 : else if (!bool (want & LOOK_want::HIDDEN_FRIEND))
896 : 2102 : value = ovl_skip_hidden (value);
897 : :
898 : 10816 : marker = process_module_binding (value, type, marker);
899 : : }
900 : :
901 : : /* Scan the imported bindings. */
902 : 22795 : unsigned ix = BINDING_VECTOR_NUM_CLUSTERS (val);
903 : 22795 : if (BINDING_VECTOR_SLOTS_PER_CLUSTER == BINDING_SLOTS_FIXED)
904 : : {
905 : 22795 : ix--;
906 : 22795 : cluster++;
907 : : }
908 : :
909 : : /* Do this in forward order, so we load modules in an order
910 : : the user expects. */
911 : 46259 : for (; ix--; cluster++)
912 : 70392 : for (unsigned jx = 0; jx != BINDING_VECTOR_SLOTS_PER_CLUSTER; jx++)
913 : : {
914 : : /* Are we importing this module? */
915 : 46928 : if (unsigned base = cluster->indices[jx].base)
916 : 22832 : if (unsigned span = cluster->indices[jx].span)
917 : 22835 : do
918 : 22835 : if (bool (want & LOOK_want::ANY_REACHABLE)
919 : 22835 : || bitmap_bit_p (imports, base))
920 : 22386 : goto found;
921 : 449 : while (++base, --span);
922 : 24542 : continue;
923 : :
924 : 22386 : found:;
925 : : /* Is it loaded? */
926 : 22386 : if (cluster->slots[jx].is_lazy ())
927 : : {
928 : 2215 : gcc_assert (cluster->indices[jx].span == 1);
929 : 2215 : lazy_load_binding (cluster->indices[jx].base,
930 : : scope, name, &cluster->slots[jx]);
931 : : }
932 : 22386 : tree bind = cluster->slots[jx];
933 : 22386 : if (!bind)
934 : : /* Load errors could mean there's nothing here. */
935 : 0 : continue;
936 : :
937 : : /* Extract what we can see from here. If there's no
938 : : stat_hack, then everything was exported. */
939 : 22386 : tree type = NULL_TREE;
940 : :
941 : : /* If STAT_HACK_P is false, everything is visible, and
942 : : there's no duplication possibilities. */
943 : 22386 : if (STAT_HACK_P (bind))
944 : : {
945 : 14917 : if (!deduping)
946 : : {
947 : : /* Do we need to engage deduplication? */
948 : 13336 : int dup = 0;
949 : 13336 : if (MODULE_BINDING_GLOBAL_P (bind))
950 : 11572 : dup |= 1;
951 : 13336 : if (MODULE_BINDING_PARTITION_P (bind))
952 : 1332 : dup |= 2;
953 : 13336 : if (unsigned hit = dup_detect & dup)
954 : : {
955 : 6991 : if ((hit & 1 && BINDING_VECTOR_GLOBAL_DUPS_P (val))
956 : 7547 : || (hit & 2
957 : 210 : && BINDING_VECTOR_PARTITION_DUPS_P (val)))
958 : 6765 : dedup (true);
959 : : }
960 : 13336 : dup_detect |= dup;
961 : : }
962 : :
963 : 14917 : if (bool (want & LOOK_want::ANY_REACHABLE))
964 : : {
965 : 84 : type = STAT_TYPE (bind);
966 : 84 : bind = STAT_DECL (bind);
967 : : }
968 : : else
969 : : {
970 : 14833 : if (STAT_TYPE_VISIBLE_P (bind))
971 : 1389 : type = STAT_TYPE (bind);
972 : 14833 : bind = STAT_VISIBLE (bind);
973 : : }
974 : : }
975 : :
976 : : /* And process it. */
977 : 22386 : marker = process_module_binding (bind, type, marker);
978 : 24542 : }
979 : 22795 : found |= marker & 1;
980 : : }
981 : : else
982 : : {
983 : : /* Only a current module binding, visible from the current module. */
984 : 1123289414 : tree bind = *binding;
985 : 1123289414 : tree value = bind, type = NULL_TREE;
986 : :
987 : 1123289414 : if (STAT_HACK_P (bind))
988 : : {
989 : 440481 : type = STAT_TYPE (bind);
990 : 440481 : value = STAT_DECL (bind);
991 : :
992 : 440481 : if (!bool (want & LOOK_want::HIDDEN_FRIEND))
993 : : {
994 : 440303 : if (STAT_TYPE_HIDDEN_P (bind))
995 : 3 : type = NULL_TREE;
996 : 440303 : if (STAT_DECL_HIDDEN_P (bind))
997 : : value = NULL_TREE;
998 : : else
999 : 439883 : value = ovl_skip_hidden (value);
1000 : : }
1001 : : }
1002 : 1122848933 : else if (!bool (want & LOOK_want::HIDDEN_FRIEND))
1003 : 1122399059 : value = ovl_skip_hidden (value);
1004 : :
1005 : 1123289414 : found |= process_binding (value, type);
1006 : : }
1007 : : }
1008 : :
1009 : 7560185709 : return found;
1010 : : }
1011 : :
1012 : : /* Conditionally look in namespace SCOPE and inline children. */
1013 : :
1014 : : bool
1015 : 1446069939 : name_lookup::search_namespace (tree scope)
1016 : : {
1017 : 1446069939 : if (see_and_mark (scope))
1018 : : /* We've visited this scope before. Return what we found then. */
1019 : 0 : return found_p (scope);
1020 : :
1021 : : /* Look in exactly namespace. */
1022 : 1446069939 : bool found = search_namespace_only (scope);
1023 : :
1024 : : /* Don't look into inline children, if we're looking for an
1025 : : anonymous name -- it must be in the current scope, if anywhere. */
1026 : 1446069939 : if (name)
1027 : : /* Recursively look in its inline children. */
1028 : 1446068267 : if (vec<tree, va_gc> *inlinees = DECL_NAMESPACE_INLINEES (scope))
1029 : 1568453191 : for (unsigned ix = inlinees->length (); ix--;)
1030 : 1157114319 : found |= search_namespace ((*inlinees)[ix]);
1031 : :
1032 : 1446069939 : if (found)
1033 : 297080513 : mark_found (scope);
1034 : :
1035 : : return found;
1036 : : }
1037 : :
1038 : : /* Recursively follow using directives of SCOPE & its inline children.
1039 : : Such following is essentially a flood-fill algorithm. */
1040 : :
1041 : : bool
1042 : 2242817 : name_lookup::search_usings (tree scope)
1043 : : {
1044 : : /* We do not check seen_p here, as that was already set during the
1045 : : namespace_only walk. */
1046 : 2242817 : if (found_p (scope))
1047 : : return true;
1048 : :
1049 : 2242817 : bool found = false;
1050 : 2242817 : if (vec<tree, va_gc> *usings = NAMESPACE_LEVEL (scope)->using_directives)
1051 : 447002 : for (unsigned ix = usings->length (); ix--;)
1052 : 223681 : found |= search_qualified ((*usings)[ix], true);
1053 : :
1054 : : /* Look in its inline children. */
1055 : 2242817 : if (vec<tree, va_gc> *inlinees = DECL_NAMESPACE_INLINEES (scope))
1056 : 1113334 : for (unsigned ix = inlinees->length (); ix--;)
1057 : 641252 : found |= search_usings ((*inlinees)[ix]);
1058 : :
1059 : 2242817 : if (found)
1060 : 20449 : mark_found (scope);
1061 : :
1062 : : return found;
1063 : : }
1064 : :
1065 : : /* Qualified namespace lookup in SCOPE.
1066 : : 1) Look in SCOPE (+inlines). If found, we're done.
1067 : : 2) Otherwise, if USINGS is true,
1068 : : recurse for every using directive of SCOPE (+inlines).
1069 : :
1070 : : Trickiness is (a) loops and (b) multiple paths to same namespace.
1071 : : In both cases we want to not repeat any lookups, and know whether
1072 : : to stop the caller's step #2. Do this via the FOUND_P marker. */
1073 : :
1074 : : bool
1075 : 288955620 : name_lookup::search_qualified (tree scope, bool usings)
1076 : : {
1077 : 288955620 : bool found = false;
1078 : :
1079 : 288955620 : if (seen_p (scope))
1080 : 0 : found = found_p (scope);
1081 : : else
1082 : : {
1083 : 288955620 : found = search_namespace (scope);
1084 : 288955620 : if (!found && usings)
1085 : 1601565 : found = search_usings (scope);
1086 : : }
1087 : :
1088 : 288955620 : dedup (false);
1089 : :
1090 : 288955620 : return found;
1091 : : }
1092 : :
1093 : : /* Add SCOPE to the unqualified search queue, recursively add its
1094 : : inlines and those via using directives. */
1095 : :
1096 : : void
1097 : 6181794510 : name_lookup::queue_namespace (using_queue& queue, int depth, tree scope)
1098 : : {
1099 : 6181794510 : if (see_and_mark (scope))
1100 : 6181794510 : return;
1101 : :
1102 : : /* Record it. */
1103 : : tree common = scope;
1104 : 12397209283 : while (SCOPE_DEPTH (common) > depth)
1105 : 6277509618 : common = CP_DECL_CONTEXT (common);
1106 : 6119699665 : queue.safe_push (using_pair (common, scope));
1107 : :
1108 : : /* Queue its inline children. */
1109 : 6119699665 : if (vec<tree, va_gc> *inlinees = DECL_NAMESPACE_INLINEES (scope))
1110 : 6104775141 : for (unsigned ix = inlinees->length (); ix--;)
1111 : 4507187536 : queue_namespace (queue, depth, (*inlinees)[ix]);
1112 : :
1113 : : /* Queue its using targets. */
1114 : 6119699665 : queue_usings (queue, depth, NAMESPACE_LEVEL (scope)->using_directives);
1115 : : }
1116 : :
1117 : : /* Add the namespaces in USINGS to the unqualified search queue. */
1118 : :
1119 : : void
1120 : 9442752999 : name_lookup::queue_usings (using_queue& queue, int depth, vec<tree, va_gc> *usings)
1121 : : {
1122 : 9442752999 : if (usings)
1123 : 34149670 : for (unsigned ix = usings->length (); ix--;)
1124 : 17301433 : queue_namespace (queue, depth, (*usings)[ix]);
1125 : 9442752999 : }
1126 : :
1127 : : /* Unqualified namespace lookup in SCOPE.
1128 : : 1) add scope+inlins to worklist.
1129 : : 2) recursively add target of every using directive
1130 : : 3) for each worklist item where SCOPE is common ancestor, search it
1131 : : 4) if nothing find, scope=parent, goto 1. */
1132 : :
1133 : : bool
1134 : 1066826485 : name_lookup::search_unqualified (tree scope, cp_binding_level *level)
1135 : : {
1136 : 1066826485 : using_queue queue;
1137 : 1066826485 : bool found = false;
1138 : :
1139 : : /* Queue local using-directives. */
1140 : 4389879819 : for (; level->kind != sk_namespace; level = level->level_chain)
1141 : 3323053334 : queue_usings (queue, SCOPE_DEPTH (scope), level->using_directives);
1142 : :
1143 : 3332204453 : for (; !found; scope = CP_DECL_CONTEXT (scope))
1144 : : {
1145 : 1657305541 : gcc_assert (!DECL_NAMESPACE_ALIAS (scope));
1146 : 1657305541 : int depth = SCOPE_DEPTH (scope);
1147 : :
1148 : : /* Queue namespaces reachable from SCOPE. */
1149 : 1657305541 : queue_namespace (queue, depth, scope);
1150 : :
1151 : : /* Search every queued namespace where SCOPE is the common
1152 : : ancestor. Adjust the others. */
1153 : 1657305541 : unsigned ix = 0;
1154 : 1669278398 : do
1155 : : {
1156 : 1669278398 : using_pair &pair = queue[ix];
1157 : 7796717839 : while (pair.first == scope)
1158 : : {
1159 : 6114115770 : found |= search_namespace_only (pair.second);
1160 : 6114115770 : pair = queue.pop ();
1161 : 6114115770 : if (ix == queue.length ())
1162 : 1655954727 : goto done;
1163 : : }
1164 : : /* The depth is the same as SCOPE, find the parent scope. */
1165 : 13323671 : if (SCOPE_DEPTH (pair.first) == depth)
1166 : 13319666 : pair.first = CP_DECL_CONTEXT (pair.first);
1167 : 13323671 : ix++;
1168 : : }
1169 : 26647342 : while (ix < queue.length ());
1170 : 1350814 : done:;
1171 : 1657305541 : if (scope == global_namespace)
1172 : : break;
1173 : :
1174 : : /* If looking for hidden friends, we only look in the innermost
1175 : : namespace scope. [namespace.memdef]/3 If a friend
1176 : : declaration in a non-local class first declares a class,
1177 : : function, class template or function template the friend is a
1178 : : member of the innermost enclosing namespace. See also
1179 : : [basic.lookup.unqual]/7 */
1180 : 1133045106 : if (bool (want & LOOK_want::HIDDEN_FRIEND))
1181 : : break;
1182 : : }
1183 : :
1184 : 1066826485 : dedup (false);
1185 : :
1186 : 1066826485 : return found;
1187 : 1066826485 : }
1188 : :
1189 : : /* FNS is a value binding. If it is a (set of overloaded) functions,
1190 : : add them into the current value. */
1191 : :
1192 : : void
1193 : 22809072 : name_lookup::add_fns (tree fns)
1194 : : {
1195 : 22809072 : if (!fns)
1196 : : return;
1197 : 21069210 : else if (TREE_CODE (fns) == OVERLOAD)
1198 : : {
1199 : 12962789 : if (TREE_TYPE (fns) != unknown_type_node)
1200 : 85433 : fns = OVL_FUNCTION (fns);
1201 : : }
1202 : 8106421 : else if (!DECL_DECLARES_FUNCTION_P (fns))
1203 : : return;
1204 : :
1205 : 21063526 : add_overload (fns);
1206 : : }
1207 : :
1208 : : /* Add the overloaded fns of SCOPE. */
1209 : :
1210 : : void
1211 : 94208263 : name_lookup::adl_namespace_fns (tree scope, bitmap imports)
1212 : : {
1213 : 94208263 : if (tree *binding = find_namespace_slot (scope, name))
1214 : : {
1215 : 17564003 : tree val = *binding;
1216 : 17564003 : if (TREE_CODE (val) != BINDING_VECTOR)
1217 : 17554069 : add_fns (ovl_skip_hidden (MAYBE_STAT_DECL (val)));
1218 : : else
1219 : : {
1220 : : /* I presume the binding list is going to be sparser than
1221 : : the import bitmap. Hence iterate over the former
1222 : : checking for bits set in the bitmap. */
1223 : 9934 : binding_cluster *cluster = BINDING_VECTOR_CLUSTER_BASE (val);
1224 : 9934 : int dup_detect = 0;
1225 : :
1226 : 9934 : if (tree bind = cluster->slots[BINDING_SLOT_CURRENT])
1227 : : {
1228 : : /* The current TU's bindings must be visible, we don't
1229 : : need to check the bitmaps. */
1230 : :
1231 : 7324 : if (!deduping)
1232 : : {
1233 : 2461 : if (named_module_purview_p ())
1234 : : {
1235 : 6 : dup_detect |= 2;
1236 : :
1237 : 6 : if (STAT_HACK_P (bind) && MODULE_BINDING_GLOBAL_P (bind))
1238 : : dup_detect |= 1;
1239 : : }
1240 : : else
1241 : : dup_detect |= 1;
1242 : : }
1243 : :
1244 : 7324 : add_fns (ovl_skip_hidden (MAYBE_STAT_DECL (bind)));
1245 : : }
1246 : :
1247 : : /* Scan the imported bindings. */
1248 : 9934 : unsigned ix = BINDING_VECTOR_NUM_CLUSTERS (val);
1249 : 9934 : if (BINDING_VECTOR_SLOTS_PER_CLUSTER == BINDING_SLOTS_FIXED)
1250 : : {
1251 : 9934 : ix--;
1252 : 9934 : cluster++;
1253 : : }
1254 : :
1255 : : /* Do this in forward order, so we load modules in an order
1256 : : the user expects. */
1257 : 19877 : for (; ix--; cluster++)
1258 : 29829 : for (unsigned jx = 0; jx != BINDING_VECTOR_SLOTS_PER_CLUSTER; jx++)
1259 : : {
1260 : : /* Functions are never on merged slots. */
1261 : 19886 : if (!cluster->indices[jx].base
1262 : 9475 : || cluster->indices[jx].span != 1)
1263 : 10411 : continue;
1264 : :
1265 : : /* Is this slot visible? */
1266 : 9475 : if (!bitmap_bit_p (imports, cluster->indices[jx].base))
1267 : 0 : continue;
1268 : :
1269 : : /* Is it loaded. */
1270 : 9475 : if (cluster->slots[jx].is_lazy ())
1271 : 12 : lazy_load_binding (cluster->indices[jx].base,
1272 : : scope, name, &cluster->slots[jx]);
1273 : :
1274 : 9475 : tree bind = cluster->slots[jx];
1275 : 9475 : if (!bind)
1276 : : /* Load errors could mean there's nothing here. */
1277 : 0 : continue;
1278 : :
1279 : 9475 : if (STAT_HACK_P (bind))
1280 : : {
1281 : 9421 : if (!deduping)
1282 : : {
1283 : : /* Do we need to engage deduplication? */
1284 : 3740 : int dup = 0;
1285 : 3740 : if (MODULE_BINDING_GLOBAL_P (bind))
1286 : 3719 : dup |= 1;
1287 : 3740 : if (MODULE_BINDING_PARTITION_P (bind))
1288 : 12 : dup |= 2;
1289 : 3740 : if (unsigned hit = dup_detect & dup)
1290 : 2177 : if ((hit & 1 && BINDING_VECTOR_GLOBAL_DUPS_P (val))
1291 : 2247 : || (hit & 2
1292 : 6 : && BINDING_VECTOR_PARTITION_DUPS_P (val)))
1293 : 2113 : dedup (true);
1294 : 3740 : dup_detect |= dup;
1295 : : }
1296 : :
1297 : 9421 : bind = STAT_VISIBLE (bind);
1298 : : }
1299 : :
1300 : 9475 : add_fns (bind);
1301 : : }
1302 : : }
1303 : : }
1304 : 94208263 : }
1305 : :
1306 : : /* Add the hidden friends of SCOPE. */
1307 : :
1308 : : void
1309 : 21847441 : name_lookup::adl_class_fns (tree type)
1310 : : {
1311 : : /* Add friends. */
1312 : 21847441 : for (tree list = DECL_FRIENDLIST (TYPE_MAIN_DECL (type));
1313 : 51884264 : list; list = TREE_CHAIN (list))
1314 : 30036823 : if (name == FRIEND_NAME (list))
1315 : : {
1316 : 2867881 : tree context = NULL_TREE; /* Lazily computed. */
1317 : 8129772 : for (tree friends = FRIEND_DECLS (list); friends;
1318 : 5261891 : friends = TREE_CHAIN (friends))
1319 : : {
1320 : 5261891 : tree fn = TREE_VALUE (friends);
1321 : :
1322 : : /* Only interested in global functions with potentially hidden
1323 : : (i.e. unqualified) declarations. */
1324 : 5261891 : if (!context)
1325 : 2867881 : context = decl_namespace_context (type);
1326 : 5261891 : if (CP_DECL_CONTEXT (fn) != context)
1327 : 20722 : continue;
1328 : :
1329 : 5241169 : dedup (true);
1330 : :
1331 : : /* Template specializations are never found by name lookup.
1332 : : (Templates themselves can be found, but not template
1333 : : specializations.) */
1334 : 5241169 : if (TREE_CODE (fn) == FUNCTION_DECL && DECL_USE_TEMPLATE (fn))
1335 : 2965 : continue;
1336 : :
1337 : 5238204 : add_fns (fn);
1338 : : }
1339 : : }
1340 : 21847441 : }
1341 : :
1342 : : /* Find the containing non-inlined namespace, add it and all its
1343 : : inlinees. */
1344 : :
1345 : : void
1346 : 103264902 : name_lookup::adl_namespace (tree scope)
1347 : : {
1348 : 177009538 : if (see_and_mark (scope))
1349 : : return;
1350 : :
1351 : : /* Look down into inline namespaces. */
1352 : 94208263 : if (vec<tree, va_gc> *inlinees = DECL_NAMESPACE_INLINEES (scope))
1353 : 99098500 : for (unsigned ix = inlinees->length (); ix--;)
1354 : 73744636 : adl_namespace ((*inlinees)[ix]);
1355 : :
1356 : 94208263 : if (DECL_NAMESPACE_INLINE_P (scope))
1357 : : /* Mark parent. */
1358 : 73744636 : adl_namespace (CP_DECL_CONTEXT (scope));
1359 : : }
1360 : :
1361 : : /* Adds the class and its friends to the lookup structure. */
1362 : :
1363 : : void
1364 : 21961286 : name_lookup::adl_class_only (tree type)
1365 : : {
1366 : : /* Backend-built structures, such as __builtin_va_list, aren't
1367 : : affected by all this. */
1368 : 21961286 : if (!CLASS_TYPE_P (type))
1369 : : return;
1370 : :
1371 : 21961286 : type = TYPE_MAIN_VARIANT (type);
1372 : :
1373 : 21961286 : if (see_and_mark (type))
1374 : : return;
1375 : :
1376 : 21847441 : tree context = decl_namespace_context (type);
1377 : 21847441 : adl_namespace (context);
1378 : : }
1379 : :
1380 : : /* Adds the class and its bases to the lookup structure.
1381 : : Returns true on error. */
1382 : :
1383 : : void
1384 : 19581007 : name_lookup::adl_bases (tree type)
1385 : : {
1386 : 19581007 : adl_class_only (type);
1387 : :
1388 : : /* Process baseclasses. */
1389 : 19581007 : if (tree binfo = TYPE_BINFO (type))
1390 : : {
1391 : : tree base_binfo;
1392 : : int i;
1393 : :
1394 : 22936822 : for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
1395 : 3900668 : adl_bases (BINFO_TYPE (base_binfo));
1396 : : }
1397 : 19581007 : }
1398 : :
1399 : : /* Adds everything associated with a class argument type to the lookup
1400 : : structure.
1401 : :
1402 : : If T is a class type (including unions), its associated classes are: the
1403 : : class itself; the class of which it is a member, if any; and its direct
1404 : : and indirect base classes. Its associated namespaces are the namespaces
1405 : : of which its associated classes are members. Furthermore, if T is a
1406 : : class template specialization, its associated namespaces and classes
1407 : : also include: the namespaces and classes associated with the types of
1408 : : the template arguments provided for template type parameters (excluding
1409 : : template template parameters); the namespaces of which any template
1410 : : template arguments are members; and the classes of which any member
1411 : : templates used as template template arguments are members. [ Note:
1412 : : non-type template arguments do not contribute to the set of associated
1413 : : namespaces. --end note] */
1414 : :
1415 : : void
1416 : 19122071 : name_lookup::adl_class (tree type)
1417 : : {
1418 : : /* Backend build structures, such as __builtin_va_list, aren't
1419 : : affected by all this. */
1420 : 19122071 : if (!CLASS_TYPE_P (type))
1421 : : return;
1422 : :
1423 : 19042202 : type = TYPE_MAIN_VARIANT (type);
1424 : :
1425 : : /* We don't set found here because we have to have set seen first,
1426 : : which is done in the adl_bases walk. */
1427 : 19042202 : if (found_p (type))
1428 : : return;
1429 : :
1430 : 15680339 : complete_type (type);
1431 : 15680339 : adl_bases (type);
1432 : 15680339 : mark_found (type);
1433 : :
1434 : 15680339 : if (TYPE_CLASS_SCOPE_P (type))
1435 : 1303002 : adl_class_only (TYPE_CONTEXT (type));
1436 : :
1437 : : /* Process template arguments. */
1438 : 15680339 : if (CLASSTYPE_TEMPLATE_INFO (type)
1439 : 15680339 : && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
1440 : : {
1441 : 8059787 : tree list = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
1442 : 22758102 : for (int i = 0; i < TREE_VEC_LENGTH (list); ++i)
1443 : 14698315 : adl_template_arg (TREE_VEC_ELT (list, i));
1444 : : }
1445 : : }
1446 : :
1447 : : void
1448 : 15267725 : name_lookup::adl_enum (tree type)
1449 : : {
1450 : 15267725 : type = TYPE_MAIN_VARIANT (type);
1451 : 15267725 : if (see_and_mark (type))
1452 : : return;
1453 : :
1454 : 8747244 : if (TYPE_CLASS_SCOPE_P (type))
1455 : 1077271 : adl_class_only (TYPE_CONTEXT (type));
1456 : : else
1457 : 7669973 : adl_namespace (decl_namespace_context (type));
1458 : : }
1459 : :
1460 : : void
1461 : 54549361 : name_lookup::adl_expr (tree expr)
1462 : : {
1463 : 54549361 : if (!expr)
1464 : : return;
1465 : :
1466 : 54549361 : gcc_assert (!TYPE_P (expr));
1467 : :
1468 : 54549361 : if (TREE_TYPE (expr) != unknown_type_node)
1469 : : {
1470 : 54543725 : adl_type (unlowered_expr_type (expr));
1471 : 54543725 : return;
1472 : : }
1473 : :
1474 : 5636 : if (TREE_CODE (expr) == ADDR_EXPR)
1475 : 440 : expr = TREE_OPERAND (expr, 0);
1476 : 5636 : if (TREE_CODE (expr) == COMPONENT_REF
1477 : 5636 : || TREE_CODE (expr) == OFFSET_REF)
1478 : 402 : expr = TREE_OPERAND (expr, 1);
1479 : 5636 : expr = MAYBE_BASELINK_FUNCTIONS (expr);
1480 : :
1481 : 5636 : if (OVL_P (expr))
1482 : 10886 : for (lkp_iterator iter (expr); iter; ++iter)
1483 : 5597 : adl_type (TREE_TYPE (*iter));
1484 : 347 : else if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
1485 : : {
1486 : : /* The working paper doesn't currently say how to handle
1487 : : template-id arguments. The sensible thing would seem to be
1488 : : to handle the list of template candidates like a normal
1489 : : overload set, and handle the template arguments like we do
1490 : : for class template specializations. */
1491 : :
1492 : : /* First the templates. */
1493 : 347 : adl_expr (TREE_OPERAND (expr, 0));
1494 : :
1495 : : /* Now the arguments. */
1496 : 347 : if (tree args = TREE_OPERAND (expr, 1))
1497 : 700 : for (int ix = TREE_VEC_LENGTH (args); ix--;)
1498 : 353 : adl_template_arg (TREE_VEC_ELT (args, ix));
1499 : : }
1500 : : }
1501 : :
1502 : : void
1503 : 67352100 : name_lookup::adl_type (tree type)
1504 : : {
1505 : 75419637 : if (!type)
1506 : : return;
1507 : :
1508 : 75419637 : if (TYPE_PTRDATAMEM_P (type))
1509 : : {
1510 : : /* Pointer to member: associate class type and value type. */
1511 : 1097 : adl_type (TYPE_PTRMEM_CLASS_TYPE (type));
1512 : 1097 : adl_type (TYPE_PTRMEM_POINTED_TO_TYPE (type));
1513 : 1097 : return;
1514 : : }
1515 : :
1516 : 75418540 : switch (TREE_CODE (type))
1517 : : {
1518 : 17902871 : case RECORD_TYPE:
1519 : 17902871 : if (TYPE_PTRMEMFUNC_P (type))
1520 : : {
1521 : 47511 : adl_type (TYPE_PTRMEMFUNC_FN_TYPE (type));
1522 : 47511 : return;
1523 : : }
1524 : : /* FALLTHRU */
1525 : 19122071 : case UNION_TYPE:
1526 : 19122071 : adl_class (type);
1527 : 19122071 : return;
1528 : :
1529 : 119924 : case METHOD_TYPE:
1530 : : /* The basetype is referenced in the first arg type, so just
1531 : : fall through. */
1532 : 119924 : case FUNCTION_TYPE:
1533 : : /* Associate the parameter types. */
1534 : 556174 : for (tree args = TYPE_ARG_TYPES (type); args; args = TREE_CHAIN (args))
1535 : 436250 : adl_type (TREE_VALUE (args));
1536 : : /* FALLTHROUGH */
1537 : :
1538 : 8018920 : case POINTER_TYPE:
1539 : 8018920 : case REFERENCE_TYPE:
1540 : 8018920 : case ARRAY_TYPE:
1541 : 8018920 : adl_type (TREE_TYPE (type));
1542 : 8018920 : return;
1543 : :
1544 : 15267725 : case ENUMERAL_TYPE:
1545 : 15267725 : adl_enum (type);
1546 : 15267725 : return;
1547 : :
1548 : 654 : case LANG_TYPE:
1549 : 654 : gcc_assert (type == unknown_type_node
1550 : : || type == init_list_type_node);
1551 : : return;
1552 : :
1553 : 9 : case TYPE_PACK_EXPANSION:
1554 : 9 : adl_type (PACK_EXPANSION_PATTERN (type));
1555 : 9 : return;
1556 : :
1557 : : default:
1558 : : break;
1559 : : }
1560 : : }
1561 : :
1562 : : /* Adds everything associated with a template argument to the lookup
1563 : : structure. */
1564 : :
1565 : : void
1566 : 14748192 : name_lookup::adl_template_arg (tree arg)
1567 : : {
1568 : : /* [basic.lookup.koenig]
1569 : :
1570 : : If T is a template-id, its associated namespaces and classes are
1571 : : ... the namespaces and classes associated with the types of the
1572 : : template arguments provided for template type parameters
1573 : : (excluding template template parameters); the namespaces in which
1574 : : any template template arguments are defined; and the classes in
1575 : : which any member templates used as template template arguments
1576 : : are defined. [Note: non-type template arguments do not
1577 : : contribute to the set of associated namespaces. ] */
1578 : :
1579 : : /* Consider first template template arguments. */
1580 : 14748192 : if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
1581 : 14748192 : || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
1582 : : ;
1583 : 14748192 : else if (TREE_CODE (arg) == TEMPLATE_DECL)
1584 : : {
1585 : 2858 : tree ctx = CP_DECL_CONTEXT (arg);
1586 : :
1587 : : /* It's not a member template. */
1588 : 2858 : if (TREE_CODE (ctx) == NAMESPACE_DECL)
1589 : 2852 : adl_namespace (ctx);
1590 : : /* Otherwise, it must be member template. */
1591 : : else
1592 : 6 : adl_class_only (ctx);
1593 : : }
1594 : : /* It's an argument pack; handle it recursively. */
1595 : 14745334 : else if (ARGUMENT_PACK_P (arg))
1596 : : {
1597 : 14167 : tree args = ARGUMENT_PACK_ARGS (arg);
1598 : 14167 : int i, len = TREE_VEC_LENGTH (args);
1599 : 63691 : for (i = 0; i < len; ++i)
1600 : 49524 : adl_template_arg (TREE_VEC_ELT (args, i));
1601 : : }
1602 : : /* It's not a template template argument, but it is a type template
1603 : : argument. */
1604 : 14731167 : else if (TYPE_P (arg))
1605 : 12365351 : adl_type (arg);
1606 : 14748192 : }
1607 : :
1608 : : /* Perform ADL lookup. FNS is the existing lookup result and ARGS are
1609 : : the call arguments. */
1610 : :
1611 : : tree
1612 : 29709841 : name_lookup::search_adl (tree fns, vec<tree, va_gc> *args)
1613 : : {
1614 : 29709841 : gcc_checking_assert (!vec_safe_length (scopes));
1615 : :
1616 : : /* Gather each associated entity onto the lookup's scope list. */
1617 : 29709841 : unsigned ix;
1618 : 29709841 : tree arg;
1619 : :
1620 : 84258935 : FOR_EACH_VEC_ELT_REVERSE (*args, ix, arg)
1621 : : /* OMP reduction operators put an ADL-significant type as the
1622 : : first arg. */
1623 : 54549094 : if (TYPE_P (arg))
1624 : 80 : adl_type (arg);
1625 : : else
1626 : 54549014 : adl_expr (arg);
1627 : :
1628 : 29709841 : if (vec_safe_length (scopes))
1629 : : {
1630 : : /* Now do the lookups. */
1631 : 17918015 : value = fns;
1632 : 17918015 : if (fns)
1633 : 13680254 : dedup (true);
1634 : :
1635 : : /* INST_PATH will be NULL, if this is /not/ 2nd-phase ADL. */
1636 : 17918015 : bitmap inst_path = NULL;
1637 : : /* VISIBLE is the regular import bitmap. */
1638 : 17918015 : bitmap visible = visible_instantiation_path (&inst_path);
1639 : :
1640 : 142720963 : for (unsigned ix = scopes->length (); ix--;)
1641 : : {
1642 : 124802948 : tree scope = (*scopes)[ix];
1643 : 124802948 : if (TREE_CODE (scope) == NAMESPACE_DECL)
1644 : 94208263 : adl_namespace_fns (scope, visible);
1645 : : else
1646 : : {
1647 : 30594685 : if (RECORD_OR_UNION_TYPE_P (scope))
1648 : 21847441 : adl_class_fns (scope);
1649 : :
1650 : : /* During 2nd phase ADL: Any exported declaration D in N
1651 : : declared within the purview of a named module M
1652 : : (10.2) is visible if there is an associated entity
1653 : : attached to M with the same innermost enclosing
1654 : : non-inline namespace as D.
1655 : : [basic.lookup.argdep]/4.4 */
1656 : :
1657 : 30594685 : if (!inst_path)
1658 : : /* Not 2nd phase. */
1659 : 30508975 : continue;
1660 : :
1661 : 85710 : tree ctx = CP_DECL_CONTEXT (TYPE_NAME (scope));
1662 : 85710 : if (TREE_CODE (ctx) != NAMESPACE_DECL)
1663 : : /* Not namespace-scope class. */
1664 : 10122 : continue;
1665 : :
1666 : 75588 : tree origin = get_originating_module_decl (TYPE_NAME (scope));
1667 : 75588 : tree not_tmpl = STRIP_TEMPLATE (origin);
1668 : 75588 : if (!DECL_LANG_SPECIFIC (not_tmpl)
1669 : 130803 : || !DECL_MODULE_IMPORT_P (not_tmpl))
1670 : : /* Not imported. */
1671 : 67530 : continue;
1672 : :
1673 : 8058 : unsigned module = get_importing_module (origin);
1674 : :
1675 : 8058 : if (!bitmap_bit_p (inst_path, module))
1676 : : /* Not on path of instantiation. */
1677 : 3 : continue;
1678 : :
1679 : 8055 : if (bitmap_bit_p (visible, module))
1680 : : /* If the module was in the visible set, we'll look at
1681 : : its namespace partition anyway. */
1682 : 8055 : continue;
1683 : :
1684 : 0 : if (tree *slot = find_namespace_slot (ctx, name, false))
1685 : 0 : if (binding_slot *mslot = search_imported_binding_slot (slot, module))
1686 : : {
1687 : 0 : if (mslot->is_lazy ())
1688 : 0 : lazy_load_binding (module, ctx, name, mslot);
1689 : :
1690 : 0 : if (tree bind = *mslot)
1691 : : {
1692 : : /* We must turn on deduping, because some other class
1693 : : from this module might also be in this namespace. */
1694 : 0 : dedup (true);
1695 : :
1696 : : /* Add the exported fns */
1697 : 0 : if (STAT_HACK_P (bind))
1698 : 0 : add_fns (STAT_VISIBLE (bind));
1699 : : }
1700 : : }
1701 : : }
1702 : : }
1703 : :
1704 : 17918015 : fns = value;
1705 : 17918015 : dedup (false);
1706 : : }
1707 : :
1708 : 29709841 : return fns;
1709 : : }
1710 : :
1711 : : static bool qualified_namespace_lookup (tree, name_lookup *);
1712 : : static void consider_binding_level (tree name,
1713 : : best_match <tree, const char *> &bm,
1714 : : cp_binding_level *lvl,
1715 : : bool look_within_fields,
1716 : : enum lookup_name_fuzzy_kind kind);
1717 : :
1718 : : /* ADL lookup of NAME. FNS is the result of regular lookup, and we
1719 : : don't add duplicates to it. ARGS is the vector of call
1720 : : arguments (which will not be empty). */
1721 : :
1722 : : tree
1723 : 29709841 : lookup_arg_dependent (tree name, tree fns, vec<tree, va_gc> *args)
1724 : : {
1725 : 29709841 : auto_cond_timevar tv (TV_NAME_LOOKUP);
1726 : 29709841 : name_lookup lookup (name);
1727 : 29709841 : return lookup.search_adl (fns, args);
1728 : 29709841 : }
1729 : :
1730 : : /* FNS is an overload set of conversion functions. Return the
1731 : : overloads converting to TYPE. */
1732 : :
1733 : : static tree
1734 : 383128 : extract_conversion_operator (tree fns, tree type)
1735 : : {
1736 : 383128 : tree convs = NULL_TREE;
1737 : 383128 : tree tpls = NULL_TREE;
1738 : :
1739 : 1206804 : for (ovl_iterator iter (fns); iter; ++iter)
1740 : : {
1741 : 571391 : if (same_type_p (DECL_CONV_FN_TYPE (*iter), type))
1742 : 407694 : convs = lookup_add (*iter, convs);
1743 : :
1744 : 571391 : if (TREE_CODE (*iter) == TEMPLATE_DECL)
1745 : 64106 : tpls = lookup_add (*iter, tpls);
1746 : : }
1747 : :
1748 : 383128 : if (!convs)
1749 : 110604 : convs = tpls;
1750 : :
1751 : 383128 : return convs;
1752 : : }
1753 : :
1754 : : /* Binary search of (ordered) MEMBER_VEC for NAME. */
1755 : :
1756 : : static tree
1757 : 2467769271 : member_vec_binary_search (vec<tree, va_gc> *member_vec, tree name)
1758 : : {
1759 : 15008724403 : for (unsigned lo = 0, hi = member_vec->length (); lo < hi;)
1760 : : {
1761 : 10720850300 : unsigned mid = (lo + hi) / 2;
1762 : 10720850300 : tree binding = (*member_vec)[mid];
1763 : 21441700600 : tree binding_name = OVL_NAME (binding);
1764 : :
1765 : 10720850300 : if (binding_name > name)
1766 : : hi = mid;
1767 : 5250498905 : else if (binding_name < name)
1768 : 4602834466 : lo = mid + 1;
1769 : : else
1770 : : return binding;
1771 : : }
1772 : :
1773 : : return NULL_TREE;
1774 : : }
1775 : :
1776 : : /* Linear search of (unordered) MEMBER_VEC for NAME. */
1777 : :
1778 : : static tree
1779 : 641379766 : member_vec_linear_search (vec<tree, va_gc> *member_vec, tree name)
1780 : : {
1781 : 6124621599 : for (int ix = member_vec->length (); ix--;)
1782 : 5531432403 : if (tree binding = (*member_vec)[ix])
1783 : 5531432403 : if (OVL_NAME (binding) == name)
1784 : : return binding;
1785 : :
1786 : : return NULL_TREE;
1787 : : }
1788 : :
1789 : : /* Linear search of (partially ordered) fields of KLASS for NAME. */
1790 : :
1791 : : static tree
1792 : 2285459362 : fields_linear_search (tree klass, tree name, bool want_type)
1793 : : {
1794 : 34071346912 : for (tree fields = TYPE_FIELDS (klass); fields; fields = DECL_CHAIN (fields))
1795 : : {
1796 : 31868446050 : tree decl = fields;
1797 : :
1798 : 31868446050 : if (TREE_CODE (decl) == FIELD_DECL
1799 : 31868446050 : && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
1800 : : {
1801 : 29421507 : if (tree temp = search_anon_aggr (TREE_TYPE (decl), name, want_type))
1802 : : return temp;
1803 : : }
1804 : :
1805 : 31868434235 : if (DECL_NAME (decl) != name)
1806 : 31744675837 : continue;
1807 : :
1808 : 123758398 : if (TREE_CODE (decl) == USING_DECL)
1809 : : {
1810 : 855935 : decl = strip_using_decl (decl);
1811 : 855935 : if (is_overloaded_fn (decl))
1812 : 211952 : continue;
1813 : : }
1814 : :
1815 : 123546446 : if (DECL_DECLARES_FUNCTION_P (decl))
1816 : : /* Functions are found separately. */
1817 : 40576191 : continue;
1818 : :
1819 : 82970255 : if (!want_type || DECL_DECLARES_TYPE_P (decl))
1820 : : return decl;
1821 : : }
1822 : :
1823 : : return NULL_TREE;
1824 : : }
1825 : :
1826 : : /* Like fields_linear_search, but specific for "_" name. There can be multiple
1827 : : name-independent non-static data members and in that case a TREE_LIST with the
1828 : : ambiguous decls should be returned. */
1829 : :
1830 : : static tree
1831 : 615 : name_independent_linear_search (tree val, tree klass, tree name)
1832 : : {
1833 : 3058 : for (tree fields = TYPE_FIELDS (klass); fields; fields = DECL_CHAIN (fields))
1834 : : {
1835 : 2443 : tree decl = fields;
1836 : :
1837 : 2443 : if (TREE_CODE (decl) == FIELD_DECL
1838 : 2443 : && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
1839 : : {
1840 : 0 : if (tree temp = search_anon_aggr (TREE_TYPE (decl), name, false))
1841 : : {
1842 : 0 : decl = temp;
1843 : 0 : goto add;
1844 : : }
1845 : : }
1846 : :
1847 : 2443 : if (DECL_NAME (decl) != name)
1848 : 2431 : continue;
1849 : :
1850 : 12 : if (TREE_CODE (decl) == USING_DECL)
1851 : : {
1852 : 0 : decl = strip_using_decl (decl);
1853 : 0 : if (is_overloaded_fn (decl))
1854 : 0 : continue;
1855 : : }
1856 : :
1857 : 12 : if (DECL_DECLARES_FUNCTION_P (decl))
1858 : : /* Functions are found separately. */
1859 : 0 : continue;
1860 : :
1861 : 12 : add:
1862 : 12 : if (val == NULL_TREE)
1863 : : val = decl;
1864 : : else
1865 : : {
1866 : 3 : if (TREE_CODE (val) != TREE_LIST)
1867 : : {
1868 : 3 : if (TREE_CODE (val) == OVERLOAD
1869 : 0 : && OVL_DEDUP_P (val)
1870 : 3 : && TREE_CODE (decl) == USING_DECL)
1871 : : {
1872 : 0 : val = ovl_make (decl, val);
1873 : 0 : continue;
1874 : : }
1875 : 3 : val = tree_cons (NULL_TREE, val, NULL_TREE);
1876 : 3 : TREE_TYPE (val) = error_mark_node;
1877 : : }
1878 : 3 : if (TREE_CODE (decl) == TREE_LIST)
1879 : 0 : val = chainon (decl, val);
1880 : : else
1881 : : {
1882 : 3 : val = tree_cons (NULL_TREE, decl, val);
1883 : 3 : TREE_TYPE (val) = error_mark_node;
1884 : : }
1885 : : }
1886 : : }
1887 : :
1888 : 615 : return val;
1889 : : }
1890 : :
1891 : : /* Look for NAME member inside of anonymous aggregate ANON. Although
1892 : : such things should only contain FIELD_DECLs, we check that too
1893 : : late, and would give very confusing errors if we weren't
1894 : : permissive here. */
1895 : :
1896 : : tree
1897 : 29421507 : search_anon_aggr (tree anon, tree name, bool want_type)
1898 : : {
1899 : 29421507 : gcc_assert (COMPLETE_TYPE_P (anon));
1900 : 29421507 : tree ret = get_class_binding_direct (anon, name, want_type);
1901 : 29421507 : return ret;
1902 : : }
1903 : :
1904 : : /* Look for NAME as an immediate member of KLASS (including
1905 : : anon-members or unscoped enum member). TYPE_OR_FNS is zero for
1906 : : regular search. >0 to get a type binding (if there is one) and <0
1907 : : if you want (just) the member function binding.
1908 : :
1909 : : Use this if you do not want lazy member creation. */
1910 : :
1911 : : tree
1912 : 4800896019 : get_class_binding_direct (tree klass, tree name, bool want_type)
1913 : : {
1914 : 4800896019 : gcc_checking_assert (RECORD_OR_UNION_TYPE_P (klass));
1915 : :
1916 : : /* Conversion operators can only be found by the marker conversion
1917 : : operator name. */
1918 : 4800896019 : bool conv_op = IDENTIFIER_CONV_OP_P (name);
1919 : 4800896019 : tree lookup = conv_op ? conv_op_identifier : name;
1920 : 4800896019 : tree val = NULL_TREE;
1921 : 4800896019 : vec<tree, va_gc> *member_vec = CLASSTYPE_MEMBER_VEC (klass);
1922 : :
1923 : 4800896019 : if (COMPLETE_TYPE_P (klass) && member_vec)
1924 : : {
1925 : 2467446308 : val = member_vec_binary_search (member_vec, lookup);
1926 : 2467446308 : if (!val)
1927 : : ;
1928 : 647342058 : else if (TREE_CODE (val) == OVERLOAD
1929 : 647342058 : && OVL_NAME_INDEPENDENT_DECL_P (val))
1930 : : {
1931 : 160 : if (want_type)
1932 : : {
1933 : 120 : while (TREE_CODE (val) == OVERLOAD
1934 : 120 : && OVL_NAME_INDEPENDENT_DECL_P (val))
1935 : 63 : val = OVL_CHAIN (val);
1936 : 57 : if (STAT_HACK_P (val))
1937 : 12 : val = STAT_TYPE (val);
1938 : 45 : else if (!DECL_DECLARES_TYPE_P (val))
1939 : : val = NULL_TREE;
1940 : : }
1941 : : else
1942 : : {
1943 : : /* OVERLOAD with a special OVL_NAME_INDEPENDENT_DECL_P
1944 : : flag is used under the hood to represent lookup
1945 : : results which include name-independent declarations,
1946 : : and get_class_binding_direct is turning that into
1947 : : TREE_LIST representation (which the callers expect for
1948 : : ambiguous lookups) instead.
1949 : : There are 2 reasons for that:
1950 : : 1) in order to keep the member_vec binary search fast, I
1951 : : think it is better to keep OVL_NAME usable on all elements
1952 : : because having to special case TREE_LIST would slow
1953 : : everything down;
1954 : : 2) the callers need to be able to chain the results anyway
1955 : : and so need an unshared TREE_LIST they can tweak/destroy. */
1956 : : tree ovl = val;
1957 : : val = NULL_TREE;
1958 : 218 : while (TREE_CODE (ovl) == OVERLOAD
1959 : 218 : && OVL_NAME_INDEPENDENT_DECL_P (ovl))
1960 : : {
1961 : 115 : val = tree_cons (NULL_TREE, OVL_FUNCTION (ovl), val);
1962 : 115 : TREE_TYPE (val) = error_mark_node;
1963 : 115 : ovl = OVL_CHAIN (ovl);
1964 : : }
1965 : 103 : if (STAT_HACK_P (ovl))
1966 : 6 : val = tree_cons (NULL_TREE, STAT_DECL (ovl), val);
1967 : : else
1968 : 97 : val = tree_cons (NULL_TREE, ovl, val);
1969 : 103 : TREE_TYPE (val) = error_mark_node;
1970 : : }
1971 : : }
1972 : 647341898 : else if (STAT_HACK_P (val))
1973 : 201 : val = want_type ? STAT_TYPE (val) : STAT_DECL (val);
1974 : 647341697 : else if (want_type && !DECL_DECLARES_TYPE_P (val))
1975 : : val = NULL_TREE;
1976 : : }
1977 : : else
1978 : : {
1979 : 2333449711 : if (member_vec && !want_type)
1980 : 641379766 : val = member_vec_linear_search (member_vec, lookup);
1981 : :
1982 : 2333449711 : if (id_equal (lookup, "_") && !want_type)
1983 : 615 : val = name_independent_linear_search (val, klass, lookup);
1984 : 2333449096 : else if (!val || (TREE_CODE (val) == OVERLOAD && OVL_DEDUP_P (val)))
1985 : : /* Dependent using declarations are a 'field', make sure we
1986 : : return that even if we saw an overload already. */
1987 : 2285456220 : if (tree field_val = fields_linear_search (klass, lookup, want_type))
1988 : : {
1989 : 82555358 : if (!val)
1990 : : val = field_val;
1991 : 0 : else if (TREE_CODE (field_val) == USING_DECL)
1992 : 0 : val = ovl_make (field_val, val);
1993 : : }
1994 : : }
1995 : :
1996 : : /* Extract the conversion operators asked for, unless the general
1997 : : conversion operator was requested. */
1998 : 4800896019 : if (val && conv_op)
1999 : : {
2000 : 14390586 : gcc_checking_assert (OVL_FUNCTION (val) == conv_op_marker);
2001 : 14390586 : val = OVL_CHAIN (val);
2002 : 14390586 : if (tree type = TREE_TYPE (name))
2003 : 383128 : val = extract_conversion_operator (val, type);
2004 : : }
2005 : :
2006 : 4800896019 : return val;
2007 : : }
2008 : :
2009 : : /* We're about to lookup NAME in KLASS. Make sure any lazily declared
2010 : : members are now declared. */
2011 : :
2012 : : static void
2013 : 2640098035 : maybe_lazily_declare (tree klass, tree name)
2014 : : {
2015 : : /* See big comment anout module_state::write_pendings regarding adding a check
2016 : : bit. */
2017 : 2640098035 : if (modules_p ())
2018 : 12446744 : lazy_load_pendings (TYPE_NAME (klass));
2019 : :
2020 : : /* Lazily declare functions, if we're going to search these. */
2021 : 2640098035 : if (IDENTIFIER_CTOR_P (name))
2022 : : {
2023 : 54483618 : if (CLASSTYPE_LAZY_DEFAULT_CTOR (klass))
2024 : 2152292 : lazily_declare_fn (sfk_constructor, klass);
2025 : 54483618 : if (CLASSTYPE_LAZY_COPY_CTOR (klass))
2026 : 3835439 : lazily_declare_fn (sfk_copy_constructor, klass);
2027 : 54483618 : if (CLASSTYPE_LAZY_MOVE_CTOR (klass))
2028 : 2960791 : lazily_declare_fn (sfk_move_constructor, klass);
2029 : : }
2030 : 2585614417 : else if (IDENTIFIER_DTOR_P (name))
2031 : : {
2032 : 55628881 : if (CLASSTYPE_LAZY_DESTRUCTOR (klass))
2033 : 4347990 : lazily_declare_fn (sfk_destructor, klass);
2034 : : }
2035 : 2529985536 : else if (name == assign_op_identifier)
2036 : : {
2037 : 10652892 : if (CLASSTYPE_LAZY_COPY_ASSIGN (klass))
2038 : 1138381 : lazily_declare_fn (sfk_copy_assignment, klass);
2039 : 10652892 : if (CLASSTYPE_LAZY_MOVE_ASSIGN (klass))
2040 : 741111 : lazily_declare_fn (sfk_move_assignment, klass);
2041 : : }
2042 : 2640098035 : }
2043 : :
2044 : : /* Look for NAME's binding in exactly KLASS. See
2045 : : get_class_binding_direct for argument description. Does lazy
2046 : : special function creation as necessary. */
2047 : :
2048 : : tree
2049 : 4421559486 : get_class_binding (tree klass, tree name, bool want_type /*=false*/)
2050 : : {
2051 : 4421559486 : klass = complete_type (klass);
2052 : :
2053 : 4421559486 : if (COMPLETE_TYPE_P (klass))
2054 : 2640098035 : maybe_lazily_declare (klass, name);
2055 : :
2056 : 4421559486 : return get_class_binding_direct (klass, name, want_type);
2057 : : }
2058 : :
2059 : : /* Find the slot containing overloads called 'NAME'. If there is no
2060 : : such slot and the class is complete, create an empty one, at the
2061 : : correct point in the sorted member vector. Otherwise return NULL.
2062 : : Deals with conv_op marker handling. */
2063 : :
2064 : : tree *
2065 : 271948750 : find_member_slot (tree klass, tree name)
2066 : : {
2067 : 271948750 : bool complete_p = COMPLETE_TYPE_P (klass);
2068 : :
2069 : 271948750 : vec<tree, va_gc> *member_vec = CLASSTYPE_MEMBER_VEC (klass);
2070 : 271948750 : if (!member_vec)
2071 : : {
2072 : 19141625 : vec_alloc (member_vec, 8);
2073 : 19141625 : CLASSTYPE_MEMBER_VEC (klass) = member_vec;
2074 : 19141625 : if (complete_p)
2075 : : /* If the class is complete but had no member_vec, we need to
2076 : : add the TYPE_FIELDS into it. We're also most likely to be
2077 : : adding ctors & dtors, so ask for 6 spare slots (the
2078 : : abstract cdtors and their clones). */
2079 : 1836288 : member_vec = set_class_bindings (klass, 6);
2080 : : }
2081 : :
2082 : 271948750 : if (IDENTIFIER_CONV_OP_P (name))
2083 : 1781591 : name = conv_op_identifier;
2084 : :
2085 : 271948750 : unsigned ix, length = member_vec->length ();
2086 : 3302258466 : for (ix = 0; ix < length; ix++)
2087 : : {
2088 : 3163947891 : tree *slot = &(*member_vec)[ix];
2089 : 6327895782 : tree fn_name = OVL_NAME (*slot);
2090 : :
2091 : 3163947891 : if (fn_name == name)
2092 : : {
2093 : : /* If we found an existing slot, it must be a function set.
2094 : : Even with insertion after completion, because those only
2095 : : happen with artificial fns that have unspellable names.
2096 : : This means we do not have to deal with the stat hack
2097 : : either. */
2098 : 127420405 : gcc_checking_assert (OVL_P (*slot));
2099 : 127420405 : if (name == conv_op_identifier)
2100 : : {
2101 : 451772 : gcc_checking_assert (OVL_FUNCTION (*slot) == conv_op_marker);
2102 : : /* Skip the conv-op marker. */
2103 : 451772 : slot = &OVL_CHAIN (*slot);
2104 : : }
2105 : 127420405 : return slot;
2106 : : }
2107 : :
2108 : 3036527486 : if (complete_p && fn_name > name)
2109 : : break;
2110 : : }
2111 : :
2112 : : /* No slot found, add one if the class is complete. */
2113 : 144528345 : if (complete_p)
2114 : : {
2115 : : /* Do exact allocation, as we don't expect to add many. */
2116 : 20602919 : gcc_assert (name != conv_op_identifier);
2117 : 20602919 : vec_safe_reserve_exact (member_vec, 1);
2118 : 20602919 : CLASSTYPE_MEMBER_VEC (klass) = member_vec;
2119 : 20602919 : member_vec->quick_insert (ix, NULL_TREE);
2120 : 20602919 : return &(*member_vec)[ix];
2121 : : }
2122 : :
2123 : : return NULL;
2124 : : }
2125 : :
2126 : : /* KLASS is an incomplete class to which we're adding a method NAME.
2127 : : Add a slot and deal with conv_op marker handling. */
2128 : :
2129 : : tree *
2130 : 123925411 : add_member_slot (tree klass, tree name)
2131 : : {
2132 : 123925411 : gcc_assert (!COMPLETE_TYPE_P (klass));
2133 : :
2134 : 123925411 : vec<tree, va_gc> *member_vec = CLASSTYPE_MEMBER_VEC (klass);
2135 : 123925411 : vec_safe_push (member_vec, NULL_TREE);
2136 : 123925411 : CLASSTYPE_MEMBER_VEC (klass) = member_vec;
2137 : :
2138 : 123925411 : tree *slot = &member_vec->last ();
2139 : 123925411 : if (IDENTIFIER_CONV_OP_P (name))
2140 : : {
2141 : : /* Install the marker prefix. */
2142 : 1329819 : *slot = ovl_make (conv_op_marker, NULL_TREE);
2143 : 1329819 : slot = &OVL_CHAIN (*slot);
2144 : : }
2145 : :
2146 : 123925411 : return slot;
2147 : : }
2148 : :
2149 : : /* Comparison function to compare two MEMBER_VEC entries by name.
2150 : : Because we can have duplicates during insertion of TYPE_FIELDS, we
2151 : : do extra checking so deduping doesn't have to deal with so many
2152 : : cases. */
2153 : :
2154 : : static int
2155 : 5019781585 : member_name_cmp (const void *a_p, const void *b_p)
2156 : : {
2157 : 5019781585 : tree a = *(const tree *)a_p;
2158 : 5019781585 : tree b = *(const tree *)b_p;
2159 : 5019781585 : tree name_a = DECL_NAME (TREE_CODE (a) == OVERLOAD ? OVL_FUNCTION (a) : a);
2160 : 5019781585 : tree name_b = DECL_NAME (TREE_CODE (b) == OVERLOAD ? OVL_FUNCTION (b) : b);
2161 : :
2162 : 5019781585 : gcc_checking_assert (name_a && name_b);
2163 : 5019781585 : if (name_a != name_b)
2164 : 7373227575 : return name_a < name_b ? -1 : +1;
2165 : :
2166 : 15615289 : if (name_a == conv_op_identifier)
2167 : : {
2168 : : /* Strip the conv-op markers. */
2169 : 1082002 : gcc_checking_assert (OVL_FUNCTION (a) == conv_op_marker
2170 : : && OVL_FUNCTION (b) == conv_op_marker);
2171 : 541001 : a = OVL_CHAIN (a);
2172 : 541001 : b = OVL_CHAIN (b);
2173 : : }
2174 : :
2175 : 15615289 : if (TREE_CODE (a) == OVERLOAD)
2176 : 5592209 : a = OVL_FUNCTION (a);
2177 : 15615289 : if (TREE_CODE (b) == OVERLOAD)
2178 : 5139251 : b = OVL_FUNCTION (b);
2179 : :
2180 : 15615289 : if (id_equal (name_a, "_"))
2181 : : {
2182 : : /* Sort name-independent members first. */
2183 : 264 : if (name_independent_decl_p (a))
2184 : : {
2185 : 234 : if (name_independent_decl_p (b))
2186 : : {
2187 : 183 : if (DECL_UID (a) != DECL_UID (b))
2188 : 183 : return DECL_UID (a) < DECL_UID (b) ? -1 : +1;
2189 : 0 : gcc_assert (a == b);
2190 : : return 0;
2191 : : }
2192 : : else
2193 : : return -1;
2194 : : }
2195 : 30 : else if (name_independent_decl_p (b))
2196 : : return +1;
2197 : : }
2198 : :
2199 : : /* We're in STAT_HACK or USING_DECL territory (or possibly error-land). */
2200 : 15615025 : if (TREE_CODE (a) != TREE_CODE (b))
2201 : : {
2202 : : /* If one of them is a TYPE_DECL, it loses. */
2203 : 14834023 : if (TREE_CODE (a) == TYPE_DECL)
2204 : : return +1;
2205 : 14833690 : else if (TREE_CODE (b) == TYPE_DECL)
2206 : : return -1;
2207 : :
2208 : : /* If one of them is a USING_DECL, it loses. */
2209 : 14833347 : if (TREE_CODE (a) == USING_DECL)
2210 : : return +1;
2211 : 7691419 : else if (TREE_CODE (b) == USING_DECL)
2212 : : return -1;
2213 : :
2214 : : /* There are no other cases with different kinds of decls, as
2215 : : duplicate detection should have kicked in earlier. However,
2216 : : some erroneous cases get though. */
2217 : 0 : gcc_assert (errorcount);
2218 : : }
2219 : :
2220 : : /* Using source location would be the best thing here, but we can
2221 : : get identically-located decls in the following circumstances:
2222 : :
2223 : : 1) duplicate artificial type-decls for the same type.
2224 : :
2225 : : 2) pack expansions of using-decls.
2226 : :
2227 : : We should not be doing #1, but in either case it doesn't matter
2228 : : how we order these. Use UID as a proxy for source ordering, so
2229 : : that identically-located decls still have a well-defined stable
2230 : : ordering. */
2231 : 781002 : if (DECL_UID (a) != DECL_UID (b))
2232 : 780984 : return DECL_UID (a) < DECL_UID (b) ? -1 : +1;
2233 : 18 : gcc_assert (a == b);
2234 : : return 0;
2235 : : }
2236 : :
2237 : : static struct {
2238 : : gt_pointer_operator new_value;
2239 : : void *cookie;
2240 : : } resort_data;
2241 : :
2242 : : /* This routine compares two fields like member_name_cmp but using the
2243 : : pointer operator in resort_field_decl_data. We don't have to deal
2244 : : with duplicates here. */
2245 : :
2246 : : static int
2247 : 9734308 : resort_member_name_cmp (const void *a_p, const void *b_p)
2248 : : {
2249 : 9734308 : tree a = *(const tree *)a_p;
2250 : 9734308 : tree b = *(const tree *)b_p;
2251 : 19468616 : tree name_a = OVL_NAME (a);
2252 : 19468616 : tree name_b = OVL_NAME (b);
2253 : :
2254 : 9734308 : resort_data.new_value (&name_a, &name_a, resort_data.cookie);
2255 : 9734308 : resort_data.new_value (&name_b, &name_b, resort_data.cookie);
2256 : :
2257 : 9734308 : gcc_checking_assert (name_a != name_b);
2258 : :
2259 : 9734308 : return name_a < name_b ? -1 : +1;
2260 : : }
2261 : :
2262 : : /* Resort CLASSTYPE_MEMBER_VEC because pointers have been reordered. */
2263 : :
2264 : : void
2265 : 59430 : resort_type_member_vec (void *obj, void */*orig_obj*/,
2266 : : gt_pointer_operator new_value, void* cookie)
2267 : : {
2268 : 59430 : if (vec<tree, va_gc> *member_vec = (vec<tree, va_gc> *) obj)
2269 : : {
2270 : 59430 : resort_data.new_value = new_value;
2271 : 59430 : resort_data.cookie = cookie;
2272 : 59430 : member_vec->qsort (resort_member_name_cmp);
2273 : : }
2274 : 59430 : }
2275 : :
2276 : : /* Recursively count the number of fields in KLASS, including anonymous
2277 : : union members. */
2278 : :
2279 : : static unsigned
2280 : 53125317 : count_class_fields (tree klass)
2281 : : {
2282 : 53125317 : unsigned n_fields = 0;
2283 : :
2284 : 471442655 : for (tree fields = TYPE_FIELDS (klass); fields; fields = DECL_CHAIN (fields))
2285 : 418317338 : if (DECL_DECLARES_FUNCTION_P (fields))
2286 : : /* Functions are dealt with separately. */;
2287 : 191380068 : else if (TREE_CODE (fields) == FIELD_DECL
2288 : 191380068 : && ANON_AGGR_TYPE_P (TREE_TYPE (fields)))
2289 : 166040 : n_fields += count_class_fields (TREE_TYPE (fields));
2290 : 191214028 : else if (DECL_NAME (fields))
2291 : 172245104 : n_fields += 1;
2292 : :
2293 : 53125317 : return n_fields;
2294 : : }
2295 : :
2296 : : /* Append all the nonfunction members fields of KLASS to MEMBER_VEC.
2297 : : Recurse for anonymous members. MEMBER_VEC must have space. */
2298 : :
2299 : : static void
2300 : 19770549 : member_vec_append_class_fields (vec<tree, va_gc> *member_vec, tree klass)
2301 : : {
2302 : 358583157 : for (tree fields = TYPE_FIELDS (klass); fields; fields = DECL_CHAIN (fields))
2303 : 338812608 : if (DECL_DECLARES_FUNCTION_P (fields))
2304 : : /* Functions are handled separately. */;
2305 : 111875350 : else if (TREE_CODE (fields) == FIELD_DECL
2306 : 111875350 : && ANON_AGGR_TYPE_P (TREE_TYPE (fields)))
2307 : 155667 : member_vec_append_class_fields (member_vec, TREE_TYPE (fields));
2308 : 111719683 : else if (DECL_NAME (fields))
2309 : : {
2310 : 107395055 : tree field = fields;
2311 : : /* Mark a conv-op USING_DECL with the conv-op-marker. */
2312 : 107395055 : if (TREE_CODE (field) == USING_DECL
2313 : 107395055 : && IDENTIFIER_CONV_OP_P (DECL_NAME (field)))
2314 : 135227 : field = ovl_make (conv_op_marker, field);
2315 : 107395055 : member_vec->quick_push (field);
2316 : : }
2317 : 19770549 : }
2318 : :
2319 : : /* Append all of the enum values of ENUMTYPE to MEMBER_VEC.
2320 : : MEMBER_VEC must have space. */
2321 : :
2322 : : static void
2323 : 21 : member_vec_append_enum_values (vec<tree, va_gc> *member_vec, tree enumtype)
2324 : : {
2325 : 21 : for (tree values = TYPE_VALUES (enumtype);
2326 : 51 : values; values = TREE_CHAIN (values))
2327 : 30 : member_vec->quick_push (TREE_VALUE (values));
2328 : 21 : }
2329 : :
2330 : : /* MEMBER_VEC has just had new DECLs added to it, but is sorted.
2331 : : DeDup adjacent DECLS of the same name. We already dealt with
2332 : : conflict resolution when adding the fields or methods themselves.
2333 : : There are four cases (which could all be combined):
2334 : : 1) a TYPE_DECL and non TYPE_DECL. Deploy STAT_HACK as appropriate.
2335 : : 2) a USING_DECL and an overload. If the USING_DECL is dependent,
2336 : : it wins. Otherwise the OVERLOAD does.
2337 : : 3) two USING_DECLS.
2338 : : 4) name-independent members plus others. ...
2339 : :
2340 : : member_name_cmp will have ordered duplicates as
2341 : : <name_independent><fns><using><type> */
2342 : :
2343 : : static void
2344 : 19614903 : member_vec_dedup (vec<tree, va_gc> *member_vec)
2345 : : {
2346 : 19614903 : unsigned len = member_vec->length ();
2347 : 19614903 : unsigned store = 0;
2348 : :
2349 : 19614903 : if (!len)
2350 : : return;
2351 : :
2352 : 39229802 : tree name = OVL_NAME ((*member_vec)[0]);
2353 : 247061264 : for (unsigned jx, ix = 0; ix < len; ix = jx)
2354 : : {
2355 : : tree current = NULL_TREE;
2356 : : tree to_type = NULL_TREE;
2357 : : tree to_using = NULL_TREE;
2358 : : tree marker = NULL_TREE;
2359 : : unsigned name_independent = ix;
2360 : :
2361 : 458766973 : for (jx = ix; jx < len; jx++)
2362 : : {
2363 : 439152072 : tree next = (*member_vec)[jx];
2364 : 439152072 : if (jx != ix)
2365 : : {
2366 : 211705709 : tree next_name = OVL_NAME (next);
2367 : 211705709 : if (next_name != name)
2368 : : {
2369 : : name = next_name;
2370 : : break;
2371 : : }
2372 : : }
2373 : :
2374 : 231320610 : if (IDENTIFIER_CONV_OP_P (name))
2375 : : {
2376 : 1465046 : marker = next;
2377 : 1465046 : next = OVL_CHAIN (next);
2378 : : }
2379 : :
2380 : 231320610 : if (TREE_CODE (next) == USING_DECL)
2381 : : {
2382 : 9834993 : if (IDENTIFIER_CTOR_P (name))
2383 : : /* Dependent inherited ctor. */
2384 : 204640 : continue;
2385 : :
2386 : 9630353 : next = strip_using_decl (next);
2387 : 9630353 : if (TREE_CODE (next) == USING_DECL)
2388 : : {
2389 : 7762616 : to_using = next;
2390 : 7762616 : continue;
2391 : : }
2392 : :
2393 : 1867737 : if (is_overloaded_fn (next))
2394 : 1402816 : continue;
2395 : : }
2396 : :
2397 : 221950538 : if (DECL_DECLARES_TYPE_P (next))
2398 : : {
2399 : 64934114 : to_type = next;
2400 : 64934114 : continue;
2401 : : }
2402 : :
2403 : 157016424 : if (name_independent_decl_p (next))
2404 : 138 : name_independent = jx + 1;
2405 : 157016286 : else if (!current)
2406 : 156704842 : current = next;
2407 : : }
2408 : :
2409 : 227446363 : if (to_using)
2410 : : {
2411 : 7725181 : if (!current)
2412 : : current = to_using;
2413 : : else
2414 : 1788583 : current = ovl_make (to_using, current);
2415 : : }
2416 : :
2417 : 227446363 : if (to_type)
2418 : : {
2419 : 64778324 : if (!current)
2420 : : current = to_type;
2421 : : else
2422 : 159 : current = stat_hack (current, to_type);
2423 : : }
2424 : :
2425 : 227446501 : for (unsigned kx = name_independent; kx > ix; --kx)
2426 : 138 : if (!current)
2427 : 84 : current = (*member_vec)[kx - 1];
2428 : 54 : else if (current == to_type)
2429 : 6 : current = stat_hack ((*member_vec)[kx - 1], to_type);
2430 : : else
2431 : : {
2432 : 48 : current = ovl_make ((*member_vec)[kx - 1], current);
2433 : 48 : OVL_NAME_INDEPENDENT_DECL_P (current) = 1;
2434 : : }
2435 : :
2436 : 227446363 : if (current)
2437 : : {
2438 : 227419689 : if (marker)
2439 : : {
2440 : 1329819 : OVL_CHAIN (marker) = current;
2441 : 1329819 : current = marker;
2442 : : }
2443 : 227419689 : (*member_vec)[store++] = current;
2444 : : }
2445 : : }
2446 : :
2447 : 23515822 : while (store++ < len)
2448 : 3900921 : member_vec->pop ();
2449 : : }
2450 : :
2451 : : /* Add the non-function members to CLASSTYPE_MEMBER_VEC. If there is
2452 : : no existing MEMBER_VEC and fewer than 8 fields, do nothing. We
2453 : : know there must be at least 1 field -- the self-reference
2454 : : TYPE_DECL, except for anon aggregates, which will have at least
2455 : : one field anyway. If EXTRA < 0, always create the vector. */
2456 : :
2457 : : vec<tree, va_gc> *
2458 : 52959256 : set_class_bindings (tree klass, int extra)
2459 : : {
2460 : 52959256 : unsigned n_fields = count_class_fields (klass);
2461 : 52959256 : vec<tree, va_gc> *member_vec = CLASSTYPE_MEMBER_VEC (klass);
2462 : :
2463 : 52959256 : if (member_vec || n_fields >= 8 || extra < 0)
2464 : : {
2465 : : /* Append the new fields. */
2466 : 19614876 : vec_safe_reserve_exact (member_vec, n_fields + (extra >= 0 ? extra : 0));
2467 : 19614876 : member_vec_append_class_fields (member_vec, klass);
2468 : : }
2469 : :
2470 : 52959256 : if (member_vec)
2471 : : {
2472 : 19614876 : CLASSTYPE_MEMBER_VEC (klass) = member_vec;
2473 : 19614876 : member_vec->qsort (member_name_cmp);
2474 : 19614876 : member_vec_dedup (member_vec);
2475 : : }
2476 : :
2477 : 52959256 : return member_vec;
2478 : : }
2479 : :
2480 : : /* Insert lately defined enum ENUMTYPE into KLASS for the sorted case. */
2481 : :
2482 : : void
2483 : 42 : insert_late_enum_def_bindings (tree klass, tree enumtype)
2484 : : {
2485 : 42 : int n_fields;
2486 : 42 : vec<tree, va_gc> *member_vec = CLASSTYPE_MEMBER_VEC (klass);
2487 : :
2488 : : /* The enum bindings will already be on the TYPE_FIELDS, so don't
2489 : : count them twice. */
2490 : 42 : if (!member_vec)
2491 : 21 : n_fields = count_class_fields (klass);
2492 : : else
2493 : 21 : n_fields = list_length (TYPE_VALUES (enumtype));
2494 : :
2495 : 42 : if (member_vec || n_fields >= 8)
2496 : : {
2497 : 27 : vec_safe_reserve_exact (member_vec, n_fields);
2498 : 27 : if (CLASSTYPE_MEMBER_VEC (klass))
2499 : 21 : member_vec_append_enum_values (member_vec, enumtype);
2500 : : else
2501 : 6 : member_vec_append_class_fields (member_vec, klass);
2502 : 27 : CLASSTYPE_MEMBER_VEC (klass) = member_vec;
2503 : 27 : member_vec->qsort (member_name_cmp);
2504 : 27 : member_vec_dedup (member_vec);
2505 : : }
2506 : 42 : }
2507 : :
2508 : : /* The binding oracle; see cp-tree.h. */
2509 : :
2510 : : cp_binding_oracle_function *cp_binding_oracle;
2511 : :
2512 : : /* If we have a binding oracle, ask it for all namespace-scoped
2513 : : definitions of NAME. */
2514 : :
2515 : : static inline void
2516 : 4251336336 : query_oracle (tree name)
2517 : : {
2518 : 4251336336 : if (!cp_binding_oracle)
2519 : : return;
2520 : :
2521 : : /* LOOKED_UP holds the set of identifiers that we have already
2522 : : looked up with the oracle. */
2523 : 0 : static hash_set<tree> looked_up;
2524 : 0 : if (looked_up.add (name))
2525 : : return;
2526 : :
2527 : 0 : cp_binding_oracle (CP_ORACLE_IDENTIFIER, name);
2528 : : }
2529 : :
2530 : : #ifndef ENABLE_SCOPE_CHECKING
2531 : : # define ENABLE_SCOPE_CHECKING 0
2532 : : #else
2533 : : # define ENABLE_SCOPE_CHECKING 1
2534 : : #endif
2535 : :
2536 : : /* A free list of "cxx_binding"s, connected by their PREVIOUS. */
2537 : :
2538 : : static GTY((deletable)) cxx_binding *free_bindings;
2539 : :
2540 : : /* Initialize VALUE and TYPE field for BINDING, and set the PREVIOUS
2541 : : field to NULL. */
2542 : :
2543 : : static inline void
2544 : 1156540590 : cxx_binding_init (cxx_binding *binding, tree value, tree type)
2545 : : {
2546 : 1156540590 : binding->value = value;
2547 : 1156540590 : binding->type = type;
2548 : 1156540590 : binding->previous = NULL;
2549 : : }
2550 : :
2551 : : /* (GC)-allocate a binding object with VALUE and TYPE member initialized. */
2552 : :
2553 : : static cxx_binding *
2554 : 1156540590 : cxx_binding_make (tree value, tree type)
2555 : : {
2556 : 1156540590 : cxx_binding *binding = free_bindings;
2557 : :
2558 : 1156540590 : if (binding)
2559 : 1147836393 : free_bindings = binding->previous;
2560 : : else
2561 : 8704197 : binding = ggc_alloc<cxx_binding> ();
2562 : :
2563 : : /* Clear flags by default. */
2564 : 1156540590 : LOCAL_BINDING_P (binding) = false;
2565 : 1156540590 : INHERITED_VALUE_BINDING_P (binding) = false;
2566 : 1156540590 : HIDDEN_TYPE_BINDING_P (binding) = false;
2567 : :
2568 : 1156540590 : cxx_binding_init (binding, value, type);
2569 : :
2570 : 1156540590 : return binding;
2571 : : }
2572 : :
2573 : : /* Put BINDING back on the free list. */
2574 : :
2575 : : static inline void
2576 : 1156537728 : cxx_binding_free (cxx_binding *binding)
2577 : : {
2578 : 1156537728 : binding->scope = NULL;
2579 : 1156537728 : binding->previous = free_bindings;
2580 : 1156537728 : free_bindings = binding;
2581 : 765449821 : }
2582 : :
2583 : : /* Create a new binding for NAME (with the indicated VALUE and TYPE
2584 : : bindings) in the class scope indicated by SCOPE. */
2585 : :
2586 : : static cxx_binding *
2587 : 391090745 : new_class_binding (tree name, tree value, tree type, cp_binding_level *scope)
2588 : : {
2589 : 391090745 : cp_class_binding cb = {cxx_binding_make (value, type), name};
2590 : 391090745 : cxx_binding *binding = cb.base;
2591 : 391090745 : vec_safe_push (scope->class_shadowed, cb);
2592 : 391090745 : binding->scope = scope;
2593 : 391090745 : return binding;
2594 : : }
2595 : :
2596 : : /* Make DECL the innermost binding for ID. The LEVEL is the binding
2597 : : level at which this declaration is being bound. */
2598 : :
2599 : : void
2600 : 259022771 : push_binding (tree id, tree decl, cp_binding_level* level)
2601 : : {
2602 : 259022771 : cxx_binding *binding;
2603 : :
2604 : 259022771 : if (level != class_binding_level)
2605 : : {
2606 : 698333 : binding = cxx_binding_make (decl, NULL_TREE);
2607 : 698333 : binding->scope = level;
2608 : : }
2609 : : else
2610 : 258324438 : binding = new_class_binding (id, decl, /*type=*/NULL_TREE, level);
2611 : :
2612 : : /* Now, fill in the binding information. */
2613 : 259022771 : binding->previous = IDENTIFIER_BINDING (id);
2614 : 259022771 : LOCAL_BINDING_P (binding) = (level != class_binding_level);
2615 : :
2616 : : /* And put it on the front of the list of bindings for ID. */
2617 : 259022771 : IDENTIFIER_BINDING (id) = binding;
2618 : 259022771 : }
2619 : :
2620 : : /* Remove the binding for DECL which should be the innermost binding
2621 : : for ID. */
2622 : :
2623 : : void
2624 : 788967572 : pop_local_binding (tree id, tree decl)
2625 : : {
2626 : 1555169105 : if (!id || IDENTIFIER_ANON_P (id))
2627 : : /* It's easiest to write the loops that call this function without
2628 : : checking whether or not the entities involved have names. We
2629 : : get here for such an entity. */
2630 : : return;
2631 : :
2632 : : /* Get the innermost binding for ID. */
2633 : 765450094 : cxx_binding *binding = IDENTIFIER_BINDING (id);
2634 : :
2635 : : /* The name should be bound. */
2636 : 765450094 : gcc_assert (binding != NULL);
2637 : :
2638 : : /* The DECL will be either the ordinary binding or the type binding
2639 : : for this identifier. Remove that binding. We don't have to
2640 : : clear HIDDEN_TYPE_BINDING_P, as the whole binding will be going
2641 : : away. */
2642 : 765450094 : if (binding->value == decl)
2643 : 765449656 : binding->value = NULL_TREE;
2644 : 438 : else if (binding->type == decl)
2645 : 147 : binding->type = NULL_TREE;
2646 : : else
2647 : : {
2648 : : /* Name-independent variable was found after at least one declaration
2649 : : with the same name. */
2650 : 291 : gcc_assert (TREE_CODE (binding->value) == TREE_LIST);
2651 : 291 : if (TREE_VALUE (binding->value) != decl)
2652 : : {
2653 : 108 : binding->value = nreverse (binding->value);
2654 : : /* Skip over TREE_LISTs added in pushdecl for check_local_shadow
2655 : : detected declarations, formerly at the tail, now at the start
2656 : : of the list. */
2657 : 108 : while (TREE_PURPOSE (binding->value) == error_mark_node)
2658 : 0 : binding->value = TREE_CHAIN (binding->value);
2659 : : }
2660 : 291 : gcc_assert (TREE_VALUE (binding->value) == decl);
2661 : 291 : binding->value = TREE_CHAIN (binding->value);
2662 : 291 : while (binding->value
2663 : 348 : && TREE_PURPOSE (binding->value) == error_mark_node)
2664 : 57 : binding->value = TREE_CHAIN (binding->value);
2665 : : }
2666 : :
2667 : 765450094 : if (!binding->value && !binding->type)
2668 : : {
2669 : : /* We're completely done with the innermost binding for this
2670 : : identifier. Unhook it from the list of bindings. */
2671 : 765449821 : IDENTIFIER_BINDING (id) = binding->previous;
2672 : :
2673 : : /* Add it to the free list. */
2674 : 765449821 : cxx_binding_free (binding);
2675 : : }
2676 : : }
2677 : :
2678 : : /* Remove the bindings for the decls of the current level and leave
2679 : : the current scope. */
2680 : :
2681 : : void
2682 : 180091195 : pop_bindings_and_leave_scope (void)
2683 : : {
2684 : 412549996 : for (tree t = get_local_decls (); t; t = DECL_CHAIN (t))
2685 : : {
2686 : 232458801 : tree decl = TREE_CODE (t) == TREE_LIST ? TREE_VALUE (t) : t;
2687 : 464917602 : tree name = OVL_NAME (decl);
2688 : :
2689 : 232458801 : pop_local_binding (name, decl);
2690 : : }
2691 : :
2692 : 180091195 : leave_scope ();
2693 : 180091195 : }
2694 : :
2695 : : /* Strip non dependent using declarations. If DECL is dependent,
2696 : : surreptitiously create a typename_type and return it. */
2697 : :
2698 : : tree
2699 : 7282415038 : strip_using_decl (tree decl)
2700 : : {
2701 : 7282415038 : if (decl == NULL_TREE)
2702 : : return NULL_TREE;
2703 : :
2704 : 5091835902 : while (TREE_CODE (decl) == USING_DECL && !DECL_DEPENDENT_P (decl))
2705 : 24069201 : decl = USING_DECL_DECLS (decl);
2706 : :
2707 : 23094767 : if (TREE_CODE (decl) == USING_DECL && DECL_DEPENDENT_P (decl)
2708 : 5090861468 : && USING_DECL_TYPENAME_P (decl))
2709 : : {
2710 : : /* We have found a type introduced by a using
2711 : : declaration at class scope that refers to a dependent
2712 : : type.
2713 : :
2714 : : using typename :: [opt] nested-name-specifier unqualified-id ;
2715 : : */
2716 : 355855 : decl = make_typename_type (USING_DECL_SCOPE (decl),
2717 : 355855 : DECL_NAME (decl),
2718 : : typename_type, tf_error);
2719 : 355855 : if (decl != error_mark_node)
2720 : 355855 : decl = TYPE_NAME (decl);
2721 : : }
2722 : :
2723 : : return decl;
2724 : : }
2725 : :
2726 : : /* Return true if OVL is an overload for an anticipated builtin. */
2727 : :
2728 : : static bool
2729 : 23103058 : anticipated_builtin_p (tree ovl)
2730 : : {
2731 : 23103058 : return (TREE_CODE (ovl) == OVERLOAD
2732 : 21027594 : && OVL_HIDDEN_P (ovl)
2733 : 29070165 : && DECL_IS_UNDECLARED_BUILTIN (OVL_FUNCTION (ovl)));
2734 : : }
2735 : :
2736 : : /* BINDING records an existing declaration for a name in the current scope.
2737 : : But, DECL is another declaration for that same identifier in the
2738 : : same scope. This is the `struct stat' hack whereby a non-typedef
2739 : : class name or enum-name can be bound at the same level as some other
2740 : : kind of entity.
2741 : : 3.3.7/1
2742 : :
2743 : : A class name (9.1) or enumeration name (7.2) can be hidden by the
2744 : : name of an object, function, or enumerator declared in the same scope.
2745 : : If a class or enumeration name and an object, function, or enumerator
2746 : : are declared in the same scope (in any order) with the same name, the
2747 : : class or enumeration name is hidden wherever the object, function, or
2748 : : enumerator name is visible.
2749 : :
2750 : : It's the responsibility of the caller to check that
2751 : : inserting this name is valid here. Returns nonzero if the new binding
2752 : : was successful. */
2753 : :
2754 : : static bool
2755 : 328236 : supplement_binding (cxx_binding *binding, tree decl)
2756 : : {
2757 : 328236 : auto_cond_timevar tv (TV_NAME_LOOKUP);
2758 : :
2759 : 328236 : tree bval = binding->value;
2760 : 328236 : bool ok = true;
2761 : 328236 : if (bval
2762 : 328236 : && TREE_CODE (bval) == TREE_LIST
2763 : 328242 : && name_independent_decl_p (TREE_VALUE (bval)))
2764 : : bval = TREE_VALUE (bval);
2765 : 328236 : tree target_bval = strip_using_decl (bval);
2766 : 328236 : tree target_decl = strip_using_decl (decl);
2767 : :
2768 : 16435 : if (TREE_CODE (target_decl) == TYPE_DECL && DECL_ARTIFICIAL (target_decl)
2769 : 16261 : && target_decl != target_bval
2770 : 344488 : && (TREE_CODE (target_bval) != TYPE_DECL
2771 : : /* We allow pushing an enum multiple times in a class
2772 : : template in order to handle late matching of underlying
2773 : : type on an opaque-enum-declaration followed by an
2774 : : enum-specifier. */
2775 : 16150 : || (processing_template_decl
2776 : 2244 : && TREE_CODE (TREE_TYPE (target_decl)) == ENUMERAL_TYPE
2777 : 0 : && TREE_CODE (TREE_TYPE (target_bval)) == ENUMERAL_TYPE
2778 : 0 : && (dependent_type_p (ENUM_UNDERLYING_TYPE
2779 : : (TREE_TYPE (target_decl)))
2780 : 0 : || dependent_type_p (ENUM_UNDERLYING_TYPE
2781 : : (TREE_TYPE (target_bval)))))))
2782 : : /* The new name is the type name. */
2783 : 102 : binding->type = decl;
2784 : 328134 : else if (/* TARGET_BVAL is null when push_class_level_binding moves
2785 : : an inherited type-binding out of the way to make room
2786 : : for a new value binding. */
2787 : : !target_bval
2788 : : /* TARGET_BVAL is error_mark_node when TARGET_DECL's name
2789 : : has been used in a non-class scope prior declaration.
2790 : : In that case, we should have already issued a
2791 : : diagnostic; for graceful error recovery purpose, pretend
2792 : : this was the intended declaration for that name. */
2793 : 328134 : || target_bval == error_mark_node
2794 : : /* If TARGET_BVAL is anticipated but has not yet been
2795 : : declared, pretend it is not there at all. */
2796 : 656268 : || anticipated_builtin_p (target_bval))
2797 : 0 : binding->value = decl;
2798 : 328134 : else if (TREE_CODE (target_bval) == TYPE_DECL
2799 : 16513 : && DECL_ARTIFICIAL (target_bval)
2800 : 16480 : && target_decl != target_bval
2801 : 344605 : && (TREE_CODE (target_decl) != TYPE_DECL
2802 : 16291 : || same_type_p (TREE_TYPE (target_decl),
2803 : : TREE_TYPE (target_bval))))
2804 : : {
2805 : : /* The old binding was a type name. It was placed in
2806 : : VALUE field because it was thought, at the point it was
2807 : : declared, to be the only entity with such a name. Move the
2808 : : type name into the type slot; it is now hidden by the new
2809 : : binding. */
2810 : 16459 : binding->type = bval;
2811 : 16459 : binding->value = decl;
2812 : 16459 : binding->value_is_inherited = false;
2813 : : }
2814 : 311675 : else if (TREE_CODE (target_bval) == TYPE_DECL
2815 : 54 : && TREE_CODE (target_decl) == TYPE_DECL
2816 : 54 : && DECL_NAME (target_decl) == DECL_NAME (target_bval)
2817 : 54 : && binding->scope->kind != sk_class
2818 : 311675 : && (same_type_p (TREE_TYPE (target_decl), TREE_TYPE (target_bval))
2819 : : /* If either type involves template parameters, we must
2820 : : wait until instantiation. */
2821 : 0 : || uses_template_parms (TREE_TYPE (target_decl))
2822 : 0 : || uses_template_parms (TREE_TYPE (target_bval))))
2823 : : /* We have two typedef-names, both naming the same type to have
2824 : : the same name. In general, this is OK because of:
2825 : :
2826 : : [dcl.typedef]
2827 : :
2828 : : In a given scope, a typedef specifier can be used to redefine
2829 : : the name of any type declared in that scope to refer to the
2830 : : type to which it already refers.
2831 : :
2832 : : However, in class scopes, this rule does not apply due to the
2833 : : stricter language in [class.mem] prohibiting redeclarations of
2834 : : members. */
2835 : : ok = false;
2836 : : /* There can be two block-scope declarations of the same variable,
2837 : : so long as they are `extern' declarations. However, there cannot
2838 : : be two declarations of the same static data member:
2839 : :
2840 : : [class.mem]
2841 : :
2842 : : A member shall not be declared twice in the
2843 : : member-specification. */
2844 : 311675 : else if (VAR_P (target_decl)
2845 : 9 : && VAR_P (target_bval)
2846 : 9 : && DECL_EXTERNAL (target_decl) && DECL_EXTERNAL (target_bval)
2847 : 311681 : && !DECL_CLASS_SCOPE_P (target_decl))
2848 : : {
2849 : 0 : duplicate_decls (decl, binding->value);
2850 : 0 : ok = false;
2851 : : }
2852 : 311675 : else if (TREE_CODE (decl) == NAMESPACE_DECL
2853 : 0 : && TREE_CODE (bval) == NAMESPACE_DECL
2854 : 0 : && DECL_NAMESPACE_ALIAS (decl)
2855 : 0 : && DECL_NAMESPACE_ALIAS (bval)
2856 : 311675 : && ORIGINAL_NAMESPACE (bval) == ORIGINAL_NAMESPACE (decl))
2857 : : /* [namespace.alias]
2858 : :
2859 : : In a declarative region, a namespace-alias-definition can be
2860 : : used to redefine a namespace-alias declared in that declarative
2861 : : region to refer only to the namespace to which it already
2862 : : refers. */
2863 : : ok = false;
2864 : 311675 : else if (TREE_CODE (bval) == USING_DECL
2865 : 311675 : && CONST_DECL_USING_P (decl))
2866 : : /* Let the clone hide the using-decl that introduced it. */
2867 : 311482 : binding->value = decl;
2868 : 193 : else if (name_independent_decl_p (decl))
2869 : : {
2870 : 63 : if (cxx_dialect < cxx26)
2871 : 48 : pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wc__26_extensions,
2872 : : "name-independent declarations only available with "
2873 : : "%<-std=c++2c%> or %<-std=gnu++2c%>");
2874 : 63 : binding->value = name_lookup::ambiguous (decl, binding->value);
2875 : : }
2876 : 130 : else if (binding->scope->kind != sk_class
2877 : 9 : && TREE_CODE (decl) == USING_DECL
2878 : 139 : && decls_match (target_bval, target_decl))
2879 : : /* Since P1787 (DR 36) it is OK to redeclare entities via using-decl,
2880 : : except in class scopes. */
2881 : : ok = false;
2882 : : else
2883 : : {
2884 : 121 : if (!error_operand_p (bval))
2885 : 121 : diagnose_name_conflict (decl, bval);
2886 : : ok = false;
2887 : : }
2888 : :
2889 : 656472 : return ok;
2890 : 328236 : }
2891 : :
2892 : : /* Diagnose a name conflict between DECL and BVAL.
2893 : :
2894 : : This is non-static so maybe_push_used_methods can use it and avoid changing
2895 : : the diagnostic for inherit/using4.C; otherwise it should not be used from
2896 : : outside this file. */
2897 : :
2898 : : void
2899 : 223 : diagnose_name_conflict (tree decl, tree bval)
2900 : : {
2901 : 223 : auto_diagnostic_group d;
2902 : 223 : if (TREE_CODE (decl) == TREE_CODE (bval)
2903 : 168 : && TREE_CODE (decl) != NAMESPACE_DECL
2904 : 162 : && !DECL_DECLARES_FUNCTION_P (decl)
2905 : 114 : && (TREE_CODE (decl) != TYPE_DECL
2906 : 21 : || DECL_ARTIFICIAL (decl) == DECL_ARTIFICIAL (bval))
2907 : 334 : && CP_DECL_CONTEXT (decl) == CP_DECL_CONTEXT (bval))
2908 : : {
2909 : 87 : if (concept_definition_p (decl))
2910 : 6 : error ("redeclaration of %q#D with different template parameters",
2911 : : decl);
2912 : : else
2913 : 72 : error ("redeclaration of %q#D", decl);
2914 : : }
2915 : : else
2916 : 145 : error ("%q#D conflicts with a previous declaration", decl);
2917 : :
2918 : 223 : inform (location_of (bval), "previous declaration %q#D", bval);
2919 : 223 : }
2920 : :
2921 : : /* Replace BINDING's current value on its scope's name list with
2922 : : NEWVAL. */
2923 : :
2924 : : static void
2925 : 109 : update_local_overload (cxx_binding *binding, tree newval)
2926 : : {
2927 : 109 : tree *d;
2928 : :
2929 : 124 : for (d = &binding->scope->names; ; d = &TREE_CHAIN (*d))
2930 : 124 : if (*d == binding->value)
2931 : : {
2932 : : /* Stitch new list node in. */
2933 : 66 : *d = tree_cons (DECL_NAME (*d), NULL_TREE, TREE_CHAIN (*d));
2934 : 66 : break;
2935 : : }
2936 : 58 : else if (TREE_CODE (*d) == TREE_LIST && TREE_VALUE (*d) == binding->value)
2937 : : break;
2938 : :
2939 : 109 : TREE_VALUE (*d) = newval;
2940 : 109 : }
2941 : :
2942 : : /* Compares the parameter-type-lists of ONE and TWO and
2943 : : returns false if they are different. If the DECLs are template
2944 : : functions, the return types and the template parameter lists are
2945 : : compared too (DR 565). */
2946 : :
2947 : : static bool
2948 : 3707579 : matching_fn_p (tree one, tree two)
2949 : : {
2950 : 3707579 : if (TREE_CODE (one) != TREE_CODE (two))
2951 : : return false;
2952 : :
2953 : 1895443 : if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (one)),
2954 : 1895443 : TYPE_ARG_TYPES (TREE_TYPE (two))))
2955 : : return false;
2956 : :
2957 : 99 : if (TREE_CODE (one) == TEMPLATE_DECL)
2958 : : {
2959 : : /* Compare template parms. */
2960 : 72 : if (!comp_template_parms (DECL_TEMPLATE_PARMS (one),
2961 : 36 : DECL_TEMPLATE_PARMS (two)))
2962 : : return false;
2963 : :
2964 : : /* And return type. */
2965 : 18 : if (!same_type_p (TREE_TYPE (TREE_TYPE (one)),
2966 : : TREE_TYPE (TREE_TYPE (two))))
2967 : : return false;
2968 : : }
2969 : :
2970 : 72 : if (!equivalently_constrained (one, two))
2971 : : return false;
2972 : :
2973 : : return true;
2974 : : }
2975 : :
2976 : : /* Push DECL into nonclass LEVEL BINDING or SLOT. OLD is the current
2977 : : binding value (possibly with anticipated builtins stripped).
2978 : : Diagnose conflicts and return updated decl. */
2979 : :
2980 : : static tree
2981 : 1101256558 : update_binding (cp_binding_level *level, cxx_binding *binding, tree *slot,
2982 : : tree old, tree decl, bool hiding = false)
2983 : : {
2984 : 1101256558 : tree old_type = NULL_TREE;
2985 : 1101256558 : bool hide_type = false;
2986 : 1101256558 : bool hide_value = false;
2987 : 1101256558 : bool name_independent_p = false;
2988 : :
2989 : 1101256558 : if (!slot)
2990 : : {
2991 : 764751858 : old_type = binding->type;
2992 : 764751858 : hide_type = HIDDEN_TYPE_BINDING_P (binding);
2993 : 764751858 : if (!old_type)
2994 : 764751855 : hide_value = hide_type, hide_type = false;
2995 : 764751858 : name_independent_p = name_independent_decl_p (decl);
2996 : : }
2997 : 336504700 : else if (STAT_HACK_P (*slot))
2998 : : {
2999 : 59 : old_type = STAT_TYPE (*slot);
3000 : 59 : hide_type = STAT_TYPE_HIDDEN_P (*slot);
3001 : 59 : hide_value = STAT_DECL_HIDDEN_P (*slot);
3002 : : }
3003 : :
3004 : 1101256558 : tree to_val = decl;
3005 : 1101256558 : tree to_type = old_type;
3006 : 1101256558 : bool local_overload = false;
3007 : :
3008 : 1101256558 : gcc_assert (!level || level->kind == sk_namespace ? !binding
3009 : : : level->kind != sk_class && !slot);
3010 : :
3011 : 1101256558 : if (old == error_mark_node)
3012 : 92703 : old = NULL_TREE;
3013 : :
3014 : 1101256558 : tree old_bval = old;
3015 : 1101256558 : old = strip_using_decl (old);
3016 : :
3017 : 1101256558 : if (DECL_IMPLICIT_TYPEDEF_P (decl))
3018 : : {
3019 : : /* Pushing an artificial decl. We should not find another
3020 : : artificial decl here already -- lookup_elaborated_type will
3021 : : have already found it. */
3022 : 4952280 : gcc_checking_assert (!to_type
3023 : : && !(old && DECL_IMPLICIT_TYPEDEF_P (old)));
3024 : :
3025 : : if (old)
3026 : : {
3027 : : /* Put DECL into the type slot. */
3028 : : gcc_checking_assert (!to_type);
3029 : : hide_type = hiding;
3030 : : to_type = decl;
3031 : : to_val = old_bval;
3032 : : }
3033 : : else
3034 : : hide_value = hiding;
3035 : :
3036 : 4952280 : goto done;
3037 : : }
3038 : :
3039 : 1096304278 : if (old && DECL_IMPLICIT_TYPEDEF_P (old))
3040 : : {
3041 : : /* OLD is an implicit typedef. Move it to to_type. */
3042 : 67825 : gcc_checking_assert (!to_type);
3043 : :
3044 : : to_type = old_bval;
3045 : : hide_type = hide_value;
3046 : : old = NULL_TREE;
3047 : : hide_value = false;
3048 : : }
3049 : :
3050 : 1096304278 : if (DECL_DECLARES_FUNCTION_P (decl))
3051 : : {
3052 : 306396610 : if (!old)
3053 : : ;
3054 : 22549584 : else if (OVL_P (old))
3055 : : {
3056 : 602700231 : for (ovl_iterator iter (old); iter; ++iter)
3057 : : {
3058 : 292147674 : tree fn = *iter;
3059 : :
3060 : 292147674 : if (iter.using_p () && matching_fn_p (fn, decl))
3061 : : {
3062 : 33 : gcc_checking_assert (!iter.hidden_p ());
3063 : : /* If a function declaration in namespace scope or
3064 : : block scope has the same name and the same
3065 : : parameter-type- list (8.3.5) as a function
3066 : : introduced by a using-declaration, and the
3067 : : declarations do not declare the same function,
3068 : : the program is ill-formed. [namespace.udecl]/14 */
3069 : 33 : if (tree match = duplicate_decls (decl, fn, hiding))
3070 : 6 : return match;
3071 : : else
3072 : : /* FIXME: To preserve existing error behavior, we
3073 : : still push the decl. This might change. */
3074 : 27 : diagnose_name_conflict (decl, fn);
3075 : : }
3076 : : }
3077 : 22549578 : }
3078 : : else
3079 : 0 : goto conflict;
3080 : :
3081 : 306396604 : if (to_type != old_type
3082 : 38471 : && warn_shadow
3083 : 6 : && MAYBE_CLASS_TYPE_P (TREE_TYPE (to_type))
3084 : 306396610 : && !(DECL_IN_SYSTEM_HEADER (decl)
3085 : 0 : && DECL_IN_SYSTEM_HEADER (to_type)))
3086 : 6 : warning (OPT_Wshadow, "%q#D hides constructor for %q#D",
3087 : : decl, to_type);
3088 : :
3089 : 306396604 : local_overload = old && level && level->kind != sk_namespace;
3090 : 306396604 : to_val = ovl_insert (decl, old, -int (hiding));
3091 : : }
3092 : 789907668 : else if (old)
3093 : : {
3094 : 231 : if (name_independent_p)
3095 : 183 : to_val = name_lookup::ambiguous (decl, old);
3096 : 48 : else if (TREE_CODE (old) != TREE_CODE (decl))
3097 : : /* Different kinds of decls conflict. */
3098 : 0 : goto conflict;
3099 : 48 : else if (TREE_CODE (old) == TYPE_DECL)
3100 : : {
3101 : 6 : if (same_type_p (TREE_TYPE (old), TREE_TYPE (decl)))
3102 : : /* Two type decls to the same type. Do nothing. */
3103 : : return old;
3104 : : else
3105 : 0 : goto conflict;
3106 : : }
3107 : 42 : else if (TREE_CODE (old) == NAMESPACE_DECL)
3108 : : {
3109 : : /* Two maybe-aliased namespaces. If they're to the same target
3110 : : namespace, that's ok. */
3111 : 9 : if (ORIGINAL_NAMESPACE (old) != ORIGINAL_NAMESPACE (decl))
3112 : 6 : goto conflict;
3113 : :
3114 : : /* The new one must be an alias at this point. */
3115 : 3 : gcc_assert (DECL_NAMESPACE_ALIAS (decl));
3116 : : return old;
3117 : : }
3118 : 33 : else if (TREE_CODE (old) == VAR_DECL)
3119 : : {
3120 : 24 : if (tree match = duplicate_decls (decl, old))
3121 : : {
3122 : 9 : gcc_checking_assert (!hide_value && !hiding);
3123 : : return match;
3124 : : }
3125 : : else
3126 : 15 : goto conflict;
3127 : : }
3128 : : else
3129 : : {
3130 : 9 : conflict:
3131 : 30 : diagnose_name_conflict (decl, old_bval);
3132 : 30 : to_val = NULL_TREE;
3133 : : }
3134 : : }
3135 : 789907437 : else if (hiding)
3136 : 24939 : hide_value = true;
3137 : :
3138 : 1101256534 : done:
3139 : 1101256534 : if (to_val)
3140 : : {
3141 : 1101256504 : if (local_overload)
3142 : : {
3143 : 73 : gcc_checking_assert (binding->value && OVL_P (binding->value));
3144 : 73 : update_local_overload (binding, to_val);
3145 : : }
3146 : 1101256431 : else if (level
3147 : 1101256431 : && !(TREE_CODE (decl) == NAMESPACE_DECL
3148 : 818341 : && !DECL_NAMESPACE_ALIAS (decl)))
3149 : : /* Don't add namespaces here. They're done in
3150 : : push_namespace. */
3151 : 1100544880 : add_decl_to_level (level, decl);
3152 : :
3153 : 1101256504 : if (slot)
3154 : : {
3155 : 336504664 : if (STAT_HACK_P (*slot))
3156 : : {
3157 : 59 : STAT_TYPE (*slot) = to_type;
3158 : 59 : STAT_DECL (*slot) = to_val;
3159 : 59 : STAT_TYPE_HIDDEN_P (*slot) = hide_type;
3160 : 59 : STAT_DECL_HIDDEN_P (*slot) = hide_value;
3161 : : }
3162 : 336504605 : else if (to_type || hide_value)
3163 : : {
3164 : 135007 : *slot = stat_hack (to_val, to_type);
3165 : 135007 : STAT_TYPE_HIDDEN_P (*slot) = hide_type;
3166 : 135007 : STAT_DECL_HIDDEN_P (*slot) = hide_value;
3167 : : }
3168 : : else
3169 : : {
3170 : 336369598 : gcc_checking_assert (!hide_type);
3171 : 336369598 : *slot = to_val;
3172 : : }
3173 : : }
3174 : : else
3175 : : {
3176 : 764751840 : binding->type = to_type;
3177 : 764751840 : binding->value = to_val;
3178 : 764751840 : HIDDEN_TYPE_BINDING_P (binding) = hide_type || hide_value;
3179 : : }
3180 : : }
3181 : :
3182 : : return decl;
3183 : : }
3184 : :
3185 : : /* Table of identifiers to extern C declarations (or LISTS thereof). */
3186 : :
3187 : : static GTY(()) hash_table<named_decl_hash> *extern_c_decls;
3188 : :
3189 : : /* DECL has C linkage. If we have an existing instance, make sure the
3190 : : new one is compatible. Make sure it has the same exception
3191 : : specification [7.5, 7.6]. Add DECL to the map. */
3192 : :
3193 : : static void
3194 : 268186950 : check_extern_c_conflict (tree decl)
3195 : : {
3196 : : /* Ignore artificial or system header decls. */
3197 : 268186950 : if (DECL_ARTIFICIAL (decl) || DECL_IN_SYSTEM_HEADER (decl))
3198 : 268012769 : return;
3199 : :
3200 : : /* This only applies to decls at namespace scope. */
3201 : 174181 : if (!DECL_NAMESPACE_SCOPE_P (decl))
3202 : : return;
3203 : :
3204 : 174169 : if (!extern_c_decls)
3205 : 38149 : extern_c_decls = hash_table<named_decl_hash>::create_ggc (127);
3206 : :
3207 : 174169 : tree *slot = extern_c_decls
3208 : 174169 : ->find_slot_with_hash (DECL_NAME (decl),
3209 : 174169 : IDENTIFIER_HASH_VALUE (DECL_NAME (decl)), INSERT);
3210 : 174169 : if (tree old = *slot)
3211 : : {
3212 : 390 : if (TREE_CODE (old) == OVERLOAD)
3213 : 18 : old = OVL_FUNCTION (old);
3214 : :
3215 : 390 : int mismatch = 0;
3216 : 390 : if (DECL_CONTEXT (old) == DECL_CONTEXT (decl))
3217 : : ; /* If they're in the same context, we'll have already complained
3218 : : about a (possible) mismatch, when inserting the decl. */
3219 : 372 : else if (!decls_match (decl, old))
3220 : : mismatch = 1;
3221 : 351 : else if (TREE_CODE (decl) == FUNCTION_DECL
3222 : 690 : && !comp_except_specs (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old)),
3223 : 339 : TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)),
3224 : : ce_normal))
3225 : : mismatch = -1;
3226 : 348 : else if (DECL_ASSEMBLER_NAME_SET_P (old))
3227 : 9 : SET_DECL_ASSEMBLER_NAME (decl, DECL_ASSEMBLER_NAME (old));
3228 : :
3229 : 9 : if (mismatch)
3230 : : {
3231 : 24 : auto_diagnostic_group d;
3232 : 24 : pedwarn (DECL_SOURCE_LOCATION (decl), 0,
3233 : : "conflicting C language linkage declaration %q#D", decl);
3234 : 24 : inform (DECL_SOURCE_LOCATION (old),
3235 : : "previous declaration %q#D", old);
3236 : 24 : if (mismatch < 0)
3237 : 3 : inform (DECL_SOURCE_LOCATION (decl),
3238 : : "due to different exception specifications");
3239 : 24 : }
3240 : : else
3241 : : {
3242 : 366 : if (old == *slot)
3243 : : /* The hash table expects OVERLOADS, so construct one with
3244 : : OLD as both the function and the chain. This allocate
3245 : : an excess OVERLOAD node, but it's rare to have multiple
3246 : : extern "C" decls of the same name. And we save
3247 : : complicating the hash table logic (which is used
3248 : : elsewhere). */
3249 : 360 : *slot = ovl_make (old, old);
3250 : :
3251 : 366 : slot = &OVL_CHAIN (*slot);
3252 : :
3253 : : /* Chain it on for c_linkage_binding's use. */
3254 : 366 : *slot = tree_cons (NULL_TREE, decl, *slot);
3255 : : }
3256 : : }
3257 : : else
3258 : 173779 : *slot = decl;
3259 : : }
3260 : :
3261 : : /* Returns a list of C-linkage decls with the name NAME. Used in
3262 : : c-family/c-pragma.cc to implement redefine_extname pragma. */
3263 : :
3264 : : tree
3265 : 18 : c_linkage_bindings (tree name)
3266 : : {
3267 : 18 : if (extern_c_decls)
3268 : 24 : if (tree *slot = extern_c_decls
3269 : 12 : ->find_slot_with_hash (name, IDENTIFIER_HASH_VALUE (name), NO_INSERT))
3270 : : {
3271 : 6 : tree result = *slot;
3272 : 6 : if (TREE_CODE (result) == OVERLOAD)
3273 : 3 : result = OVL_CHAIN (result);
3274 : 6 : return result;
3275 : : }
3276 : :
3277 : : return NULL_TREE;
3278 : : }
3279 : :
3280 : : /* Subroutine of check_local_shadow. */
3281 : :
3282 : : static void
3283 : 167 : inform_shadowed (tree shadowed)
3284 : : {
3285 : 167 : inform (DECL_SOURCE_LOCATION (shadowed),
3286 : : "shadowed declaration is here");
3287 : 167 : }
3288 : :
3289 : : /* DECL is being declared at a local scope. Emit suitable shadow
3290 : : warnings. */
3291 : :
3292 : : static tree
3293 : 764751858 : check_local_shadow (tree decl)
3294 : : {
3295 : : /* Don't complain about the parms we push and then pop
3296 : : while tentatively parsing a function declarator. */
3297 : 764751858 : if (TREE_CODE (decl) == PARM_DECL && !DECL_CONTEXT (decl))
3298 : : return NULL_TREE;
3299 : :
3300 : 553757845 : if (DECL_FUNCTION_SCOPE_P (decl))
3301 : : {
3302 : 354430307 : tree ctx = DECL_CONTEXT (decl);
3303 : 708860614 : if (DECL_CLONED_FUNCTION_P (ctx)
3304 : 333090925 : || DECL_TEMPLATE_INSTANTIATED (ctx)
3305 : 285016924 : || (DECL_LANG_SPECIFIC (ctx)
3306 : 285016924 : && DECL_DEFAULTED_FN (ctx))
3307 : 656371407 : || (LAMBDA_FUNCTION_P (ctx)
3308 : 2923193 : && LAMBDA_EXPR_REGEN_INFO (CLASSTYPE_LAMBDA_EXPR
3309 : : (DECL_CONTEXT (ctx)))))
3310 : : /* It suffices to check shadowing only when actually parsing.
3311 : : So punt for clones, instantiations, defaulted functions and
3312 : : regenerated lambdas. This optimization helps reduce lazy
3313 : : loading cascades with modules. */
3314 : : return NULL_TREE;
3315 : : }
3316 : :
3317 : 482605977 : tree old = NULL_TREE;
3318 : 482605977 : cp_binding_level *old_scope = NULL;
3319 : 482605977 : if (cxx_binding *binding = outer_binding (DECL_NAME (decl), NULL, true))
3320 : : {
3321 : 1351253 : old = binding->value;
3322 : 1351253 : old_scope = binding->scope;
3323 : : }
3324 : :
3325 : 1351253 : if (old
3326 : 1351253 : && (TREE_CODE (old) == PARM_DECL
3327 : 590935 : || VAR_P (old)
3328 : 158627 : || (TREE_CODE (old) == TYPE_DECL
3329 : 97848 : && (!DECL_ARTIFICIAL (old)
3330 : 57284 : || TREE_CODE (decl) == TYPE_DECL)))
3331 : 1290385 : && DECL_FUNCTION_SCOPE_P (old)
3332 : 2554626 : && (!DECL_ARTIFICIAL (decl)
3333 : 1017404 : || is_capture_proxy (decl)
3334 : 256237 : || DECL_IMPLICIT_TYPEDEF_P (decl)
3335 : 256207 : || (VAR_P (decl) && DECL_ANON_UNION_VAR_P (decl))))
3336 : : {
3337 : : /* DECL shadows a local thing possibly of interest. */
3338 : :
3339 : : /* DR 2211: check that captures and parameters
3340 : : do not have the same name. */
3341 : 947172 : if (is_capture_proxy (decl))
3342 : : {
3343 : 761167 : if (current_lambda_expr ()
3344 : 761167 : && DECL_CONTEXT (old) == lambda_function (current_lambda_expr ())
3345 : 39 : && TREE_CODE (old) == PARM_DECL
3346 : 761188 : && DECL_NAME (decl) != this_identifier)
3347 : 21 : error_at (DECL_SOURCE_LOCATION (old),
3348 : : "lambda parameter %qD "
3349 : : "previously declared as a capture", old);
3350 : 761167 : return NULL_TREE;
3351 : : }
3352 : : /* Don't complain if it's from an enclosing function. */
3353 : 186005 : else if (DECL_CONTEXT (old) == current_function_decl
3354 : 170921 : && TREE_CODE (decl) != PARM_DECL
3355 : 356926 : && TREE_CODE (old) == PARM_DECL)
3356 : : {
3357 : : /* Go to where the parms should be and see if we find
3358 : : them there. */
3359 : 10143 : cp_binding_level *b = current_binding_level->level_chain;
3360 : :
3361 : 10143 : if (in_function_try_handler && b->kind == sk_catch)
3362 : 39 : b = b->level_chain;
3363 : :
3364 : : /* Skip artificially added scopes which aren't present
3365 : : in the C++ standard, e.g. for function-try-block or
3366 : : ctor/dtor cleanups. */
3367 : 10224 : while (b->artificial)
3368 : 81 : b = b->level_chain;
3369 : :
3370 : : /* [basic.scope.param] A parameter name shall not be redeclared
3371 : : in the outermost block of the function definition. */
3372 : 10143 : if (b->kind == sk_function_parms)
3373 : : {
3374 : 114 : if (name_independent_decl_p (decl))
3375 : : return old;
3376 : :
3377 : 96 : auto_diagnostic_group d;
3378 : 96 : bool emit = true;
3379 : 96 : if (DECL_EXTERNAL (decl))
3380 : 40 : emit = pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
3381 : : "declaration of %q#D shadows a parameter",
3382 : : decl);
3383 : : else
3384 : 56 : error_at (DECL_SOURCE_LOCATION (decl),
3385 : : "declaration of %q#D shadows a parameter", decl);
3386 : 96 : if (emit)
3387 : 96 : inform (DECL_SOURCE_LOCATION (old),
3388 : : "%q#D previously declared here", old);
3389 : 96 : return NULL_TREE;
3390 : 96 : }
3391 : : }
3392 : :
3393 : : /* The local structure or class can't use parameters of
3394 : : the containing function anyway. */
3395 : 185891 : if (DECL_CONTEXT (old) != current_function_decl)
3396 : : {
3397 : 15084 : for (cp_binding_level *scope = current_binding_level;
3398 : 39313 : scope != old_scope; scope = scope->level_chain)
3399 : 36687 : if (scope->kind == sk_class
3400 : 54475 : && !LAMBDA_TYPE_P (scope->this_entity))
3401 : : return NULL_TREE;
3402 : : }
3403 : : /* Error if redeclaring a local declared in a
3404 : : init-statement or in the condition of an if or
3405 : : switch statement when the new declaration is in the
3406 : : outermost block of the controlled statement.
3407 : : Redeclaring a variable from a for or while condition is
3408 : : detected elsewhere. */
3409 : 170807 : else if (VAR_P (old)
3410 : 150009 : && old_scope == current_binding_level->level_chain
3411 : 1825 : && (old_scope->kind == sk_cond || old_scope->kind == sk_for))
3412 : : {
3413 : 145 : if (name_independent_decl_p (decl))
3414 : : return old;
3415 : :
3416 : 109 : auto_diagnostic_group d;
3417 : 109 : bool emit = true;
3418 : 109 : if (DECL_EXTERNAL (decl))
3419 : 48 : emit = pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
3420 : : "redeclaration of %q#D", decl);
3421 : : else
3422 : 61 : error_at (DECL_SOURCE_LOCATION (decl),
3423 : : "redeclaration of %q#D", decl);
3424 : 109 : if (emit)
3425 : 109 : inform (DECL_SOURCE_LOCATION (old),
3426 : : "%q#D previously declared here", old);
3427 : 109 : return NULL_TREE;
3428 : 109 : }
3429 : : /* C++11:
3430 : : 3.3.3/3: The name declared in an exception-declaration (...)
3431 : : shall not be redeclared in the outermost block of the handler.
3432 : : 3.3.3/2: A parameter name shall not be redeclared (...) in
3433 : : the outermost block of any handler associated with a
3434 : : function-try-block. */
3435 : 170662 : else if (TREE_CODE (old) == VAR_DECL
3436 : 149864 : && old_scope == current_binding_level->level_chain
3437 : 1680 : && old_scope->kind == sk_catch)
3438 : : {
3439 : 18 : if (name_independent_decl_p (decl))
3440 : : return old;
3441 : :
3442 : 15 : auto_diagnostic_group d;
3443 : 15 : bool emit;
3444 : 15 : if (DECL_EXTERNAL (decl))
3445 : 6 : emit = pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
3446 : : "redeclaration of %q#D", decl);
3447 : : else
3448 : 9 : emit = permerror (DECL_SOURCE_LOCATION (decl),
3449 : : "redeclaration of %q#D", decl);
3450 : 15 : if (emit)
3451 : 15 : inform (DECL_SOURCE_LOCATION (old),
3452 : : "%q#D previously declared here", old);
3453 : 15 : return NULL_TREE;
3454 : 15 : }
3455 : :
3456 : : /* Don't emit -Wshadow* warnings for name-independent decls. */
3457 : 173270 : if (name_independent_decl_p (decl) || name_independent_decl_p (old))
3458 : : return NULL_TREE;
3459 : :
3460 : : /* If '-Wshadow=compatible-local' is specified without other
3461 : : -Wshadow= flags, we will warn only when the type of the
3462 : : shadowing variable (DECL) can be converted to that of the
3463 : : shadowed parameter (OLD_LOCAL). The reason why we only check
3464 : : if DECL's type can be converted to OLD_LOCAL's type (but not the
3465 : : other way around) is because when users accidentally shadow a
3466 : : parameter, more than often they would use the variable
3467 : : thinking (mistakenly) it's still the parameter. It would be
3468 : : rare that users would use the variable in the place that
3469 : : expects the parameter but thinking it's a new decl.
3470 : : If either object is a TYPE_DECL, '-Wshadow=compatible-local'
3471 : : warns regardless of whether one of the types involved
3472 : : is a subclass of the other, since that is never okay. */
3473 : :
3474 : 173195 : enum opt_code warning_code;
3475 : 173195 : if (warn_shadow)
3476 : : warning_code = OPT_Wshadow;
3477 : 173133 : else if ((TREE_CODE (decl) == TYPE_DECL)
3478 : 173133 : ^ (TREE_CODE (old) == TYPE_DECL))
3479 : : /* If exactly one is a type, they aren't compatible. */
3480 : : warning_code = OPT_Wshadow_local;
3481 : 173112 : else if ((TREE_TYPE (old)
3482 : 173112 : && TREE_TYPE (decl)
3483 : 173109 : && same_type_p (TREE_TYPE (old), TREE_TYPE (decl)))
3484 : 41666 : || TREE_CODE (decl) == TYPE_DECL
3485 : 31398 : || TREE_CODE (old) == TYPE_DECL
3486 : 204510 : || (!dependent_type_p (TREE_TYPE (decl))
3487 : 11884 : && !dependent_type_p (TREE_TYPE (old))
3488 : : /* If the new decl uses auto, we don't yet know
3489 : : its type (the old type cannot be using auto
3490 : : at this point, without also being
3491 : : dependent). This is an indication we're
3492 : : (now) doing the shadow checking too
3493 : : early. */
3494 : 11869 : && !type_uses_auto (TREE_TYPE (decl))
3495 : 11636 : && can_convert_arg (TREE_TYPE (old), TREE_TYPE (decl),
3496 : : decl, LOOKUP_IMPLICIT, tf_none)))
3497 : : warning_code = OPT_Wshadow_compatible_local;
3498 : : else
3499 : : warning_code = OPT_Wshadow_local;
3500 : :
3501 : 173195 : const char *msg;
3502 : 173195 : if (TREE_CODE (old) == PARM_DECL)
3503 : : msg = "declaration of %q#D shadows a parameter";
3504 : 161019 : else if (is_capture_proxy (old))
3505 : : msg = "declaration of %qD shadows a lambda capture";
3506 : : else
3507 : 160689 : msg = "declaration of %qD shadows a previous local";
3508 : :
3509 : 173195 : auto_diagnostic_group d;
3510 : 173195 : if (warning_at (DECL_SOURCE_LOCATION (decl), warning_code, msg, decl))
3511 : 110 : inform_shadowed (old);
3512 : 173195 : return NULL_TREE;
3513 : 173195 : }
3514 : :
3515 : 481658805 : if (!warn_shadow)
3516 : : return NULL_TREE;
3517 : :
3518 : : /* Don't emit -Wshadow for name-independent decls. */
3519 : 622 : if (name_independent_decl_p (decl))
3520 : : return NULL_TREE;
3521 : :
3522 : : /* Don't warn for artificial things that are not implicit typedefs. */
3523 : 544 : if (DECL_ARTIFICIAL (decl) && !DECL_IMPLICIT_TYPEDEF_P (decl))
3524 : : return NULL_TREE;
3525 : :
3526 : 338 : if (nonlambda_method_basetype ())
3527 : 93 : if (tree member = lookup_member (current_nonlambda_class_type (),
3528 : 93 : DECL_NAME (decl), /*protect=*/0,
3529 : : /*want_type=*/false, tf_warning_or_error))
3530 : : {
3531 : 33 : member = MAYBE_BASELINK_FUNCTIONS (member);
3532 : :
3533 : : /* Warn if a variable shadows a non-function, or the variable
3534 : : is a function or a pointer-to-function. */
3535 : 24 : if ((!OVL_P (member)
3536 : 9 : || TREE_CODE (decl) == FUNCTION_DECL
3537 : 9 : || (TREE_TYPE (decl)
3538 : 6 : && (TYPE_PTRFN_P (TREE_TYPE (decl))
3539 : 6 : || TYPE_PTRMEMFUNC_P (TREE_TYPE (decl)))))
3540 : 60 : && !warning_suppressed_p (decl, OPT_Wshadow))
3541 : : {
3542 : 27 : auto_diagnostic_group d;
3543 : 27 : if (warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wshadow,
3544 : : "declaration of %qD shadows a member of %qT",
3545 : : decl, current_nonlambda_class_type ())
3546 : 27 : && DECL_P (member))
3547 : : {
3548 : 27 : inform_shadowed (member);
3549 : 27 : suppress_warning (decl, OPT_Wshadow);
3550 : : }
3551 : 27 : }
3552 : 33 : return NULL_TREE;
3553 : : }
3554 : :
3555 : : /* Now look for a namespace shadow. */
3556 : 305 : old = find_namespace_value (current_namespace, DECL_NAME (decl));
3557 : 305 : if (old
3558 : 75 : && (VAR_P (old)
3559 : 51 : || (TREE_CODE (old) == TYPE_DECL
3560 : 15 : && (!DECL_ARTIFICIAL (old)
3561 : 9 : || TREE_CODE (decl) == TYPE_DECL)))
3562 : 33 : && !DECL_EXTERNAL (decl)
3563 : 30 : && !instantiating_current_function_p ()
3564 : 335 : && !warning_suppressed_p (decl, OPT_Wshadow))
3565 : : /* XXX shadow warnings in outer-more namespaces */
3566 : : {
3567 : 30 : auto_diagnostic_group d;
3568 : 30 : if (warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wshadow,
3569 : : "declaration of %qD shadows a global declaration",
3570 : : decl))
3571 : : {
3572 : 30 : inform_shadowed (old);
3573 : 30 : suppress_warning (decl, OPT_Wshadow);
3574 : : }
3575 : 30 : return NULL_TREE;
3576 : 30 : }
3577 : :
3578 : : return NULL_TREE;
3579 : : }
3580 : :
3581 : : /* DECL is being pushed inside function CTX. Set its context, if
3582 : : needed. */
3583 : :
3584 : : static void
3585 : 345716063 : set_decl_context_in_fn (tree ctx, tree decl)
3586 : : {
3587 : 345716063 : if (TREE_CODE (decl) == FUNCTION_DECL
3588 : 345716063 : || (VAR_P (decl) && DECL_EXTERNAL (decl)))
3589 : : /* Make sure local externs are marked as such. OMP UDRs really
3590 : : are nested functions. */
3591 : 36199 : gcc_checking_assert (DECL_LOCAL_DECL_P (decl)
3592 : : && (DECL_NAMESPACE_SCOPE_P (decl)
3593 : : || (TREE_CODE (decl) == FUNCTION_DECL
3594 : : && DECL_OMP_DECLARE_REDUCTION_P (decl))));
3595 : :
3596 : 345716063 : if (!DECL_CONTEXT (decl)
3597 : : /* When parsing the parameter list of a function declarator,
3598 : : don't set DECL_CONTEXT to an enclosing function. */
3599 : 346543640 : && !(TREE_CODE (decl) == PARM_DECL
3600 : 827577 : && parsing_function_declarator ()))
3601 : 79753366 : DECL_CONTEXT (decl) = ctx;
3602 : 345716063 : }
3603 : :
3604 : : /* DECL is a local extern decl. Find or create the namespace-scope
3605 : : decl that it aliases. Also, determines the linkage of DECL. */
3606 : :
3607 : : void
3608 : 35891 : push_local_extern_decl_alias (tree decl)
3609 : : {
3610 : 35891 : if (dependent_type_p (TREE_TYPE (decl))
3611 : 35891 : || (processing_template_decl
3612 : 15613 : && VAR_P (decl)
3613 : 50 : && CP_DECL_THREAD_LOCAL_P (decl)))
3614 : : return;
3615 : : /* EH specs were not part of the function type prior to c++17, but
3616 : : we still can't go pushing dependent eh specs into the namespace. */
3617 : 35811 : if (cxx_dialect < cxx17
3618 : 2300 : && TREE_CODE (decl) == FUNCTION_DECL
3619 : 37738 : && (value_dependent_expression_p
3620 : 1927 : (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)))))
3621 : : return;
3622 : :
3623 : 35810 : gcc_checking_assert (!DECL_LANG_SPECIFIC (decl)
3624 : : || !DECL_TEMPLATE_INFO (decl));
3625 : 35810 : if (DECL_LANG_SPECIFIC (decl) && DECL_LOCAL_DECL_ALIAS (decl))
3626 : : /* We're instantiating a non-dependent local decl, it already
3627 : : knows the alias. */
3628 : : return;
3629 : :
3630 : 35321 : tree alias = NULL_TREE;
3631 : :
3632 : 35321 : if (DECL_SIZE (decl) && !TREE_CONSTANT (DECL_SIZE (decl)))
3633 : : /* Do not let a VLA creep into a namespace. Diagnostic will be
3634 : : emitted in layout_var_decl later. */
3635 : 3 : alias = error_mark_node;
3636 : : else
3637 : : {
3638 : : /* First look for a decl that matches. */
3639 : 35318 : tree ns = CP_DECL_CONTEXT (decl);
3640 : 35318 : tree binding = find_namespace_value (ns, DECL_NAME (decl));
3641 : :
3642 : 35318 : if (binding && TREE_CODE (binding) != TREE_LIST)
3643 : 888 : for (ovl_iterator iter (binding); iter; ++iter)
3644 : 620 : if (decls_match (decl, *iter, /*record_versions*/false))
3645 : : {
3646 : 427 : alias = *iter;
3647 : 427 : if (!validate_constexpr_redeclaration (alias, decl))
3648 : 12 : return;
3649 : : break;
3650 : : }
3651 : :
3652 : 520 : if (!alias)
3653 : : {
3654 : : /* No existing namespace-scope decl. Make one. */
3655 : 34891 : alias = copy_decl (decl);
3656 : 34891 : if (TREE_CODE (alias) == FUNCTION_DECL)
3657 : : {
3658 : : /* Recontextualize the parms. */
3659 : 34075 : for (tree *chain = &DECL_ARGUMENTS (alias);
3660 : 38674 : *chain; chain = &DECL_CHAIN (*chain))
3661 : : {
3662 : 4599 : *chain = copy_decl (*chain);
3663 : 4599 : DECL_CONTEXT (*chain) = alias;
3664 : : }
3665 : :
3666 : 34075 : tree type = TREE_TYPE (alias);
3667 : 34075 : for (tree args = TYPE_ARG_TYPES (type);
3668 : 77044 : args; args = TREE_CHAIN (args))
3669 : 43008 : if (TREE_PURPOSE (args))
3670 : : {
3671 : : /* There are default args. Lose them. */
3672 : 39 : tree nargs = NULL_TREE;
3673 : 39 : tree *chain = &nargs;
3674 : 39 : for (args = TYPE_ARG_TYPES (type);
3675 : 99 : args; args = TREE_CHAIN (args))
3676 : 99 : if (args == void_list_node)
3677 : : {
3678 : 39 : *chain = args;
3679 : 39 : break;
3680 : : }
3681 : : else
3682 : : {
3683 : 60 : *chain
3684 : 60 : = build_tree_list (NULL_TREE, TREE_VALUE (args));
3685 : 60 : chain = &TREE_CHAIN (*chain);
3686 : : }
3687 : :
3688 : 39 : tree fn_type = build_function_type (TREE_TYPE (type), nargs);
3689 : :
3690 : 39 : fn_type = apply_memfn_quals
3691 : 39 : (fn_type, type_memfn_quals (type));
3692 : :
3693 : 39 : fn_type = build_cp_fntype_variant
3694 : 39 : (fn_type, type_memfn_rqual (type),
3695 : 39 : TYPE_RAISES_EXCEPTIONS (type),
3696 : 39 : TYPE_HAS_LATE_RETURN_TYPE (type));
3697 : :
3698 : 39 : TREE_TYPE (alias) = fn_type;
3699 : 39 : break;
3700 : : }
3701 : : }
3702 : :
3703 : : /* This is the real thing. */
3704 : 34891 : DECL_LOCAL_DECL_P (alias) = false;
3705 : :
3706 : : /* Expected default linkage is from the namespace. */
3707 : 34891 : TREE_PUBLIC (alias) = TREE_PUBLIC (ns);
3708 : 34891 : push_nested_namespace (ns);
3709 : 34891 : alias = pushdecl (alias, /* hiding= */true);
3710 : 34891 : pop_nested_namespace (ns);
3711 : 34891 : if (VAR_P (decl)
3712 : 816 : && CP_DECL_THREAD_LOCAL_P (decl)
3713 : 34912 : && alias != error_mark_node)
3714 : 18 : set_decl_tls_model (alias, DECL_TLS_MODEL (decl));
3715 : :
3716 : : /* Adjust visibility. */
3717 : 34891 : determine_visibility (alias);
3718 : : }
3719 : : }
3720 : :
3721 : 35309 : retrofit_lang_decl (decl);
3722 : 35309 : DECL_LOCAL_DECL_ALIAS (decl) = alias;
3723 : : }
3724 : :
3725 : : /* If DECL has non-internal linkage, and we have a module vector,
3726 : : record it in the appropriate slot. We have already checked for
3727 : : duplicates. */
3728 : :
3729 : : static void
3730 : 300394 : maybe_record_mergeable_decl (tree *slot, tree name, tree decl)
3731 : : {
3732 : 300394 : if (TREE_CODE (*slot) != BINDING_VECTOR)
3733 : : return;
3734 : :
3735 : 13 : if (decl_linkage (decl) == lk_internal)
3736 : : return;
3737 : :
3738 : 13 : tree not_tmpl = STRIP_TEMPLATE (decl);
3739 : 13 : bool is_attached = (DECL_LANG_SPECIFIC (not_tmpl)
3740 : 26 : && DECL_MODULE_ATTACH_P (not_tmpl));
3741 : : tree *gslot = get_fixed_binding_slot
3742 : 13 : (slot, name, is_attached ? BINDING_SLOT_PARTITION : BINDING_SLOT_GLOBAL,
3743 : : true);
3744 : :
3745 : 13 : if (!is_attached)
3746 : : {
3747 : 13 : binding_slot &orig
3748 : 13 : = BINDING_VECTOR_CLUSTER (*slot, 0).slots[BINDING_SLOT_CURRENT];
3749 : :
3750 : 13 : if (!STAT_HACK_P (tree (orig)))
3751 : 5 : orig = stat_hack (tree (orig));
3752 : :
3753 : 13 : MODULE_BINDING_GLOBAL_P (tree (orig)) = true;
3754 : : }
3755 : :
3756 : 13 : add_mergeable_namespace_entity (gslot, decl);
3757 : : }
3758 : :
3759 : : /* DECL is being pushed. Check whether it hides or ambiguates
3760 : : something seen as an import. This include decls seen in our own
3761 : : interface, which is OK. Also, check for merging a
3762 : : global/partition decl. */
3763 : :
3764 : : static tree
3765 : 398 : check_module_override (tree decl, tree mvec, bool hiding,
3766 : : tree scope, tree name)
3767 : : {
3768 : 398 : tree match = NULL_TREE;
3769 : 398 : bitmap imports = get_import_bitmap ();
3770 : 398 : binding_cluster *cluster = BINDING_VECTOR_CLUSTER_BASE (mvec);
3771 : 398 : unsigned ix = BINDING_VECTOR_NUM_CLUSTERS (mvec);
3772 : :
3773 : 398 : tree nontmpl = STRIP_TEMPLATE (decl);
3774 : 772 : bool attached = DECL_LANG_SPECIFIC (nontmpl) && DECL_MODULE_ATTACH_P (nontmpl);
3775 : :
3776 : : /* For deduction guides we don't do normal name lookup, but rather consider
3777 : : any reachable declaration, so we should check for overriding here too. */
3778 : 398 : bool any_reachable = deduction_guide_p (decl);
3779 : :
3780 : 398 : if (BINDING_VECTOR_SLOTS_PER_CLUSTER == BINDING_SLOTS_FIXED)
3781 : : {
3782 : 398 : cluster++;
3783 : 398 : ix--;
3784 : : }
3785 : :
3786 : 585 : for (; ix--; cluster++)
3787 : 1007 : for (unsigned jx = 0; jx != BINDING_VECTOR_SLOTS_PER_CLUSTER; jx++)
3788 : : {
3789 : : /* Are we importing this module? */
3790 : 820 : if (cluster->indices[jx].span != 1)
3791 : 34 : continue;
3792 : 786 : if (!cluster->indices[jx].base)
3793 : 398 : continue;
3794 : 397 : if (!any_reachable
3795 : 388 : && !bitmap_bit_p (imports, cluster->indices[jx].base))
3796 : 9 : continue;
3797 : : /* Is it loaded? */
3798 : 379 : if (cluster->slots[jx].is_lazy ())
3799 : : {
3800 : 1 : gcc_assert (cluster->indices[jx].span == 1);
3801 : 1 : lazy_load_binding (cluster->indices[jx].base,
3802 : : scope, name, &cluster->slots[jx]);
3803 : : }
3804 : 379 : tree bind = cluster->slots[jx];
3805 : 379 : if (!bind)
3806 : : /* Errors could cause there to be nothing. */
3807 : 0 : continue;
3808 : :
3809 : 379 : tree type = NULL_TREE;
3810 : 379 : if (STAT_HACK_P (bind))
3811 : : {
3812 : : /* If there was a matching STAT_TYPE here then xref_tag
3813 : : should have found it, but we need to check anyway because
3814 : : a conflicting using-declaration may exist. */
3815 : 364 : if (any_reachable)
3816 : : {
3817 : 12 : type = STAT_TYPE (bind);
3818 : 12 : bind = STAT_DECL (bind);
3819 : : }
3820 : : else
3821 : : {
3822 : 352 : if (STAT_TYPE_VISIBLE_P (bind))
3823 : 123 : type = STAT_TYPE (bind);
3824 : 352 : bind = STAT_VISIBLE (bind);
3825 : : }
3826 : : }
3827 : :
3828 : 364 : if (type)
3829 : : {
3830 : 3 : match = duplicate_decls (decl, strip_using_decl (type), hiding);
3831 : 3 : if (match)
3832 : 0 : goto matched;
3833 : : }
3834 : :
3835 : 480 : for (ovl_iterator iter (strip_using_decl (bind)); iter; ++iter)
3836 : : {
3837 : 287 : match = duplicate_decls (decl, *iter, hiding);
3838 : 287 : if (match)
3839 : 226 : goto matched;
3840 : : }
3841 : : }
3842 : :
3843 : 172 : if (TREE_PUBLIC (scope) && TREE_PUBLIC (STRIP_TEMPLATE (decl))
3844 : : /* Namespaces are dealt with specially in
3845 : : make_namespace_finish. */
3846 : 332 : && !(TREE_CODE (decl) == NAMESPACE_DECL && !DECL_NAMESPACE_ALIAS (decl)))
3847 : : {
3848 : : /* Look in the appropriate mergeable decl slot. */
3849 : 148 : tree mergeable = NULL_TREE;
3850 : 148 : if (attached)
3851 : 24 : mergeable = BINDING_VECTOR_CLUSTER (mvec, BINDING_SLOT_PARTITION
3852 : : / BINDING_VECTOR_SLOTS_PER_CLUSTER)
3853 : 12 : .slots[BINDING_SLOT_PARTITION % BINDING_VECTOR_SLOTS_PER_CLUSTER];
3854 : : else
3855 : 136 : mergeable = BINDING_VECTOR_CLUSTER (mvec, 0).slots[BINDING_SLOT_GLOBAL];
3856 : :
3857 : 327 : for (ovl_iterator iter (mergeable); iter; ++iter)
3858 : : {
3859 : 155 : match = duplicate_decls (decl, *iter, hiding);
3860 : 155 : if (match)
3861 : 46 : goto matched;
3862 : : }
3863 : : }
3864 : :
3865 : : return NULL_TREE;
3866 : :
3867 : 272 : matched:
3868 : 272 : if (match != error_mark_node)
3869 : : {
3870 : 230 : if (attached)
3871 : 117 : BINDING_VECTOR_PARTITION_DUPS_P (mvec) = true;
3872 : : else
3873 : 113 : BINDING_VECTOR_GLOBAL_DUPS_P (mvec) = true;
3874 : : }
3875 : :
3876 : : return match;
3877 : : }
3878 : :
3879 : : /* Record DECL as belonging to the current lexical scope. Check for
3880 : : errors (such as an incompatible declaration for the same name
3881 : : already seen in the same scope).
3882 : :
3883 : : The new binding is hidden if HIDING is true (an anticipated builtin
3884 : : or hidden friend).
3885 : :
3886 : : Returns either DECL or an old decl for the same name. If an old
3887 : : decl is returned, it may have been smashed to agree with what DECL
3888 : : says. */
3889 : :
3890 : : tree
3891 : 1134708624 : pushdecl (tree decl, bool hiding)
3892 : : {
3893 : 1134708624 : auto_cond_timevar tv (TV_NAME_LOOKUP);
3894 : :
3895 : 1134708624 : if (decl == error_mark_node)
3896 : : return error_mark_node;
3897 : :
3898 : 1134708618 : if (!DECL_TEMPLATE_PARM_P (decl) && current_function_decl && !hiding)
3899 : 345716063 : set_decl_context_in_fn (current_function_decl, decl);
3900 : :
3901 : : /* The binding level we will be pushing into. During local class
3902 : : pushing, we want to push to the containing scope. */
3903 : 1134708618 : cp_binding_level *level = current_binding_level;
3904 : 1134708751 : while (level->kind == sk_class
3905 : 1134708751 : || level->kind == sk_cleanup)
3906 : 133 : level = level->level_chain;
3907 : :
3908 : : /* An anonymous namespace has a NULL DECL_NAME, but we still want to
3909 : : insert it. Other NULL-named decls, not so much. */
3910 : 1134708618 : tree name = DECL_NAME (decl);
3911 : 2245908059 : if (name ? !IDENTIFIER_ANON_P (name) : TREE_CODE (decl) == NAMESPACE_DECL)
3912 : : {
3913 : 1109736090 : cxx_binding *binding = NULL; /* Local scope binding. */
3914 : 1109736090 : tree ns = NULL_TREE; /* Searched namespace. */
3915 : 1109736090 : tree *slot = NULL; /* Binding slot in namespace. */
3916 : 1109736090 : tree *mslot = NULL; /* Current module slot in namespace. */
3917 : 1109736090 : tree old = NULL_TREE;
3918 : 1109736090 : bool name_independent_p = false;
3919 : 1109736090 : bool name_independent_diagnosed_p = false;
3920 : :
3921 : 1109736090 : if (level->kind == sk_namespace)
3922 : : {
3923 : : /* We look in the decl's namespace for an existing
3924 : : declaration, even though we push into the current
3925 : : namespace. */
3926 : 689963738 : ns = (DECL_NAMESPACE_SCOPE_P (decl)
3927 : 689963738 : ? CP_DECL_CONTEXT (decl) : current_namespace);
3928 : : /* Create the binding, if this is current namespace, because
3929 : : that's where we'll be pushing anyway. */
3930 : 344981869 : slot = find_namespace_slot (ns, name, ns == current_namespace);
3931 : 344981869 : if (slot)
3932 : : {
3933 : 689963672 : mslot = get_fixed_binding_slot (slot, name, BINDING_SLOT_CURRENT,
3934 : 344981836 : ns == current_namespace);
3935 : 344981836 : old = MAYBE_STAT_DECL (*mslot);
3936 : : }
3937 : : }
3938 : : else
3939 : : {
3940 : 764754221 : binding = find_local_binding (level, name);
3941 : 764754221 : if (binding)
3942 : 2703 : old = binding->value;
3943 : 764754221 : name_independent_p = name_independent_decl_p (decl);
3944 : : }
3945 : :
3946 : 1109736090 : if (old == error_mark_node)
3947 : 92703 : old = NULL_TREE;
3948 : :
3949 : 1109736090 : tree oldi, oldn;
3950 : 1132477320 : for (oldi = old; oldi; oldi = oldn)
3951 : : {
3952 : 31220711 : if (TREE_CODE (oldi) == TREE_LIST)
3953 : : {
3954 : 84 : gcc_checking_assert (level->kind != sk_namespace
3955 : : && name_independent_decl_p
3956 : : (TREE_VALUE (old)));
3957 : 42 : oldn = TREE_CHAIN (oldi);
3958 : 42 : oldi = TREE_VALUE (oldi);
3959 : : }
3960 : : else
3961 : : oldn = NULL_TREE;
3962 : 635854123 : for (ovl_iterator iter (oldi); iter; ++iter)
3963 : 312903641 : if (iter.using_p ())
3964 : : ; /* Ignore using decls here. */
3965 : 309538757 : else if (iter.hidden_p ()
3966 : 60339820 : && TREE_CODE (*iter) == FUNCTION_DECL
3967 : 41405241 : && DECL_LANG_SPECIFIC (*iter)
3968 : 350943998 : && DECL_MODULE_IMPORT_P (*iter))
3969 : : ; /* An undeclared builtin imported from elsewhere. */
3970 : 309538754 : else if (name_independent_p)
3971 : : {
3972 : : /* Ignore name-independent declarations. */
3973 : 180 : if (cxx_dialect < cxx26 && !name_independent_diagnosed_p)
3974 : 112 : pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wc__26_extensions,
3975 : : "name-independent declarations only available with "
3976 : : "%<-std=c++2c%> or %<-std=gnu++2c%>");
3977 : : name_independent_diagnosed_p = true;
3978 : : }
3979 : 619077148 : else if (tree match
3980 : 309538574 : = duplicate_decls (decl, *iter, hiding, iter.hidden_p ()))
3981 : : {
3982 : 8479481 : if (match == error_mark_node)
3983 : : ;
3984 : 8478598 : else if (TREE_CODE (match) == TYPE_DECL)
3985 : 22121 : gcc_checking_assert (REAL_IDENTIFIER_TYPE_VALUE (name)
3986 : : == (level->kind == sk_namespace
3987 : : ? NULL_TREE : TREE_TYPE (match)));
3988 : 8456477 : else if (iter.hidden_p () && !hiding)
3989 : : {
3990 : : /* Unhiding a previously hidden decl. */
3991 : 3712259 : tree head = iter.reveal_node (oldi);
3992 : 3712259 : if (head != oldi)
3993 : : {
3994 : 18965 : gcc_checking_assert (ns);
3995 : 18965 : if (STAT_HACK_P (*slot))
3996 : 0 : STAT_DECL (*slot) = head;
3997 : : else
3998 : 18965 : *slot = head;
3999 : : }
4000 : 3712259 : if (DECL_EXTERN_C_P (match))
4001 : : /* We need to check and register the decl now. */
4002 : 3477560 : check_extern_c_conflict (match);
4003 : : }
4004 : 4744218 : else if (slot
4005 : 4744218 : && !hiding
4006 : 3985921 : && STAT_HACK_P (*slot)
4007 : 4744243 : && STAT_DECL_HIDDEN_P (*slot))
4008 : : {
4009 : : /* Unhide the non-function. */
4010 : 25 : gcc_checking_assert (oldi == match);
4011 : 25 : if (!STAT_TYPE (*slot))
4012 : 25 : *slot = match;
4013 : : else
4014 : 0 : STAT_DECL (*slot) = match;
4015 : : }
4016 : 8479481 : return match;
4017 : : }
4018 : : }
4019 : :
4020 : : /* Check for redeclaring an import. */
4021 : 1101256609 : if (slot && *slot && TREE_CODE (*slot) == BINDING_VECTOR)
4022 : 796 : if (tree match
4023 : 398 : = check_module_override (decl, *slot, hiding, ns, name))
4024 : : {
4025 : 272 : if (match == error_mark_node)
4026 : : return match;
4027 : :
4028 : : /* We found a decl in an interface, push it into this
4029 : : binding. */
4030 : 230 : decl = update_binding (NULL, binding, mslot, old,
4031 : : match, hiding);
4032 : :
4033 : 230 : return decl;
4034 : : }
4035 : :
4036 : : /* We are pushing a new decl. */
4037 : :
4038 : : /* Skip a hidden builtin we failed to match already. There can
4039 : : only be one. */
4040 : 1101256337 : if (old && anticipated_builtin_p (old))
4041 : 838960 : old = OVL_CHAIN (old);
4042 : :
4043 : 1101256337 : check_template_shadow (decl);
4044 : :
4045 : 1101256337 : if (DECL_DECLARES_FUNCTION_P (decl))
4046 : : {
4047 : 306396437 : check_default_args (decl);
4048 : :
4049 : 306396437 : if (hiding)
4050 : : {
4051 : 70172448 : if (level->kind != sk_namespace)
4052 : : {
4053 : : /* In a local class, a friend function declaration must
4054 : : find a matching decl in the innermost non-class scope.
4055 : : [class.friend/11] */
4056 : 9 : error_at (DECL_SOURCE_LOCATION (decl),
4057 : : "friend declaration %qD in local class without "
4058 : : "prior local declaration", decl);
4059 : : /* Don't attempt to push it. */
4060 : 9 : return error_mark_node;
4061 : : }
4062 : : }
4063 : : }
4064 : :
4065 : 1101256328 : if (level->kind != sk_namespace)
4066 : : {
4067 : 764751858 : tree local_shadow = check_local_shadow (decl);
4068 : 764751858 : if (name_independent_p && local_shadow)
4069 : : {
4070 : 57 : if (cxx_dialect < cxx26 && !name_independent_diagnosed_p)
4071 : 53 : pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wc__26_extensions,
4072 : : "name-independent declarations only available with "
4073 : : "%<-std=c++2c%> or %<-std=gnu++2c%>");
4074 : 57 : name_independent_diagnosed_p = true;
4075 : : /* When a name-independent declaration is pushed into a scope
4076 : : which itself does not contain a _ named declaration yet (so
4077 : : _ name lookups wouldn't be normally ambiguous), but it
4078 : : shadows a _ declaration in some outer scope in cases
4079 : : described in [basic.scope.block]/2 where if the names of
4080 : : the shadowed and shadowing declarations were different it
4081 : : would be ill-formed program, arrange for _ name lookups
4082 : : in this scope to be ambiguous. */
4083 : 57 : if (old == NULL_TREE)
4084 : : {
4085 : 57 : old = build_tree_list (error_mark_node, local_shadow);
4086 : 57 : TREE_TYPE (old) = error_mark_node;
4087 : : }
4088 : : }
4089 : :
4090 : 764751858 : if (TREE_CODE (decl) == NAMESPACE_DECL)
4091 : : /* A local namespace alias. */
4092 : 102073 : set_identifier_type_value_with_scope (name, NULL_TREE, level);
4093 : :
4094 : 764751858 : if (!binding)
4095 : 764751512 : binding = create_local_binding (level, name);
4096 : : }
4097 : 336504470 : else if (!slot)
4098 : : {
4099 : 33 : ns = current_namespace;
4100 : 33 : slot = find_namespace_slot (ns, name, true);
4101 : 33 : mslot = get_fixed_binding_slot (slot, name, BINDING_SLOT_CURRENT, true);
4102 : : /* Update OLD to reflect the namespace we're going to be
4103 : : pushing into. */
4104 : 33 : old = MAYBE_STAT_DECL (*mslot);
4105 : : }
4106 : :
4107 : 1101256328 : old = update_binding (level, binding, mslot, old, decl, hiding);
4108 : :
4109 : 1101256328 : if (old != decl)
4110 : : /* An existing decl matched, use it. */
4111 : : decl = old;
4112 : : else
4113 : : {
4114 : 1101256304 : if (TREE_CODE (decl) == TYPE_DECL)
4115 : : {
4116 : 203362100 : tree type = TREE_TYPE (decl);
4117 : :
4118 : 203362100 : if (type != error_mark_node)
4119 : : {
4120 : 203362033 : if (TYPE_NAME (type) != decl)
4121 : 19408590 : set_underlying_type (decl);
4122 : :
4123 : 203362033 : set_identifier_type_value_with_scope (name, decl, level);
4124 : :
4125 : 203362033 : if (level->kind != sk_namespace
4126 : 203362033 : && !instantiating_current_function_p ())
4127 : : /* This is a locally defined typedef in a function that
4128 : : is not a template instantation, record it to implement
4129 : : -Wunused-local-typedefs. */
4130 : 190335593 : record_locally_defined_typedef (decl);
4131 : : }
4132 : : }
4133 : 897894204 : else if (VAR_OR_FUNCTION_DECL_P (decl))
4134 : : {
4135 : 355311320 : if (DECL_EXTERN_C_P (decl))
4136 : 264686090 : check_extern_c_conflict (decl);
4137 : :
4138 : 355311320 : if (!DECL_LOCAL_DECL_P (decl)
4139 : 355311320 : && VAR_P (decl))
4140 : 72261575 : maybe_register_incomplete_var (decl);
4141 : :
4142 : 355311320 : if (DECL_LOCAL_DECL_P (decl)
4143 : 355311320 : && NAMESPACE_SCOPE_P (decl))
4144 : 35885 : push_local_extern_decl_alias (decl);
4145 : : }
4146 : :
4147 : 1101256304 : if (level->kind == sk_namespace
4148 : 336504452 : && TREE_PUBLIC (level->this_entity)
4149 : 1437756426 : && module_maybe_has_cmi_p ())
4150 : 300394 : maybe_record_mergeable_decl (slot, name, decl);
4151 : : }
4152 : : }
4153 : : else
4154 : 24972528 : add_decl_to_level (level, decl);
4155 : :
4156 : : return decl;
4157 : 1134708624 : }
4158 : :
4159 : : /* A mergeable entity is being loaded into namespace NS slot NAME.
4160 : : Create and return the appropriate vector slot for that. Either a
4161 : : GMF slot or a module-specific one. */
4162 : :
4163 : : tree *
4164 : 252052 : mergeable_namespace_slots (tree ns, tree name, bool is_attached, tree *vec)
4165 : : {
4166 : 252052 : tree *mslot = find_namespace_slot (ns, name, true);
4167 : 252052 : tree *vslot = get_fixed_binding_slot
4168 : 503524 : (mslot, name, is_attached ? BINDING_SLOT_PARTITION : BINDING_SLOT_GLOBAL,
4169 : : true);
4170 : :
4171 : 252052 : gcc_checking_assert (TREE_CODE (*mslot) == BINDING_VECTOR);
4172 : 252052 : *vec = *mslot;
4173 : :
4174 : 252052 : return vslot;
4175 : : }
4176 : :
4177 : : /* Retrieve the bindings for an existing mergeable entity in namespace
4178 : : NS slot NAME. Returns NULL if no such bindings exists. */
4179 : :
4180 : : static tree
4181 : 27 : get_mergeable_namespace_binding (tree ns, tree name, bool is_attached)
4182 : : {
4183 : 27 : tree *mslot = find_namespace_slot (ns, name, false);
4184 : 27 : if (!mslot || !*mslot || TREE_CODE (*mslot) != BINDING_VECTOR)
4185 : : return NULL_TREE;
4186 : :
4187 : 12 : tree *vslot = get_fixed_binding_slot
4188 : 24 : (mslot, name, is_attached ? BINDING_SLOT_PARTITION : BINDING_SLOT_GLOBAL,
4189 : : false);
4190 : 12 : return vslot ? *vslot : NULL_TREE;
4191 : : }
4192 : :
4193 : : /* DECL is a new mergeable namespace-scope decl. Add it to the
4194 : : mergeable entities on GSLOT. */
4195 : :
4196 : : void
4197 : 89160 : add_mergeable_namespace_entity (tree *gslot, tree decl)
4198 : : {
4199 : 89160 : *gslot = ovl_make (decl, *gslot);
4200 : 89160 : }
4201 : :
4202 : : /* A mergeable entity of KLASS called NAME is being loaded. Return
4203 : : the set of things it could be. All such non-as_base classes have
4204 : : been given a member vec. */
4205 : :
4206 : : tree
4207 : 326105 : lookup_class_binding (tree klass, tree name)
4208 : : {
4209 : 326105 : tree found = NULL_TREE;
4210 : :
4211 : 326105 : if (!COMPLETE_TYPE_P (klass))
4212 : : ;
4213 : 326105 : else if (TYPE_LANG_SPECIFIC (klass))
4214 : : {
4215 : 322963 : vec<tree, va_gc> *member_vec = CLASSTYPE_MEMBER_VEC (klass);
4216 : :
4217 : 322963 : found = member_vec_binary_search (member_vec, name);
4218 : 322963 : if (!found)
4219 : : ;
4220 : 322381 : else if (STAT_HACK_P (found))
4221 : : /* Rearrange the stat hack so that we don't need to expose that
4222 : : internal detail. */
4223 : 6 : found = ovl_make (STAT_TYPE (found), STAT_DECL (found));
4224 : 322375 : else if (IDENTIFIER_CONV_OP_P (name))
4225 : : {
4226 : 1426 : gcc_checking_assert (name == conv_op_identifier);
4227 : 1426 : found = OVL_CHAIN (found);
4228 : : }
4229 : : }
4230 : : else
4231 : : {
4232 : 3142 : gcc_checking_assert (IS_FAKE_BASE_TYPE (klass)
4233 : : || TYPE_PTRMEMFUNC_P (klass));
4234 : 3142 : found = fields_linear_search (klass, name, false);
4235 : : }
4236 : :
4237 : 326105 : return found;
4238 : : }
4239 : :
4240 : : /* Whether this using is declared in the module purview. */
4241 : :
4242 : : bool
4243 : 22583 : ovl_iterator::purview_p () const
4244 : : {
4245 : 22583 : gcc_checking_assert (using_p ());
4246 : 22583 : if (TREE_CODE (ovl) == USING_DECL)
4247 : 3012 : return DECL_MODULE_PURVIEW_P (ovl);
4248 : 19571 : return OVL_PURVIEW_P (ovl);
4249 : : }
4250 : :
4251 : : /* Whether this using is exported from this module. */
4252 : :
4253 : : bool
4254 : 22583 : ovl_iterator::exporting_p () const
4255 : : {
4256 : 22583 : gcc_checking_assert (using_p ());
4257 : 22583 : if (TREE_CODE (ovl) == USING_DECL)
4258 : 3012 : return DECL_MODULE_EXPORT_P (ovl);
4259 : 19571 : return OVL_EXPORT_P (ovl);
4260 : : }
4261 : :
4262 : : /* Given a namespace-level binding BINDING, walk it, calling CALLBACK
4263 : : for all decls of the current module. When partitions are involved,
4264 : : decls might be mentioned more than once. Return the accumulation of
4265 : : CALLBACK results. */
4266 : :
4267 : : unsigned
4268 : 5812996 : walk_module_binding (tree binding, bitmap partitions,
4269 : : bool (*callback) (tree decl, WMB_Flags, void *data),
4270 : : void *data)
4271 : : {
4272 : 5812996 : tree current = binding;
4273 : 5812996 : unsigned count = 0;
4274 : :
4275 : 5812996 : if (TREE_CODE (binding) == BINDING_VECTOR)
4276 : 15361 : current = BINDING_VECTOR_CLUSTER (binding, 0).slots[BINDING_SLOT_CURRENT];
4277 : :
4278 : 5814006 : bool decl_hidden = false;
4279 : 5812996 : if (tree type = MAYBE_STAT_TYPE (current))
4280 : : {
4281 : 90 : WMB_Flags flags = WMB_None;
4282 : 90 : if (STAT_TYPE_HIDDEN_P (current))
4283 : 0 : flags = WMB_Flags (flags | WMB_Hidden);
4284 : 90 : if (TREE_CODE (type) == USING_DECL)
4285 : : {
4286 : 3 : flags = WMB_Flags (flags | WMB_Using);
4287 : 3 : if (DECL_MODULE_PURVIEW_P (type))
4288 : 3 : flags = WMB_Flags (flags | WMB_Purview);
4289 : 3 : if (DECL_MODULE_EXPORT_P (type))
4290 : 3 : flags = WMB_Flags (flags | WMB_Export);
4291 : : }
4292 : 90 : count += callback (type, flags, data);
4293 : 90 : decl_hidden = STAT_DECL_HIDDEN_P (current);
4294 : : }
4295 : :
4296 : 11696435 : for (ovl_iterator iter (MAYBE_STAT_DECL (current)); iter; ++iter)
4297 : : {
4298 : 5883439 : if (iter.hidden_p ())
4299 : : decl_hidden = true;
4300 : 5883439 : if (!(decl_hidden && DECL_IS_UNDECLARED_BUILTIN (*iter)))
4301 : : {
4302 : 4467301 : WMB_Flags flags = WMB_None;
4303 : 4467301 : if (decl_hidden)
4304 : 7577 : flags = WMB_Flags (flags | WMB_Hidden);
4305 : 4467301 : if (iter.using_p ())
4306 : : {
4307 : 22574 : flags = WMB_Flags (flags | WMB_Using);
4308 : 22574 : if (iter.purview_p ())
4309 : 18143 : flags = WMB_Flags (flags | WMB_Purview);
4310 : 22574 : if (iter.exporting_p ())
4311 : 16508 : flags = WMB_Flags (flags | WMB_Export);
4312 : : }
4313 : 4467301 : count += callback (*iter, flags, data);
4314 : : }
4315 : 5883439 : decl_hidden = false;
4316 : : }
4317 : :
4318 : 5812996 : if (partitions && TREE_CODE (binding) == BINDING_VECTOR)
4319 : : {
4320 : : /* Process partition slots. */
4321 : 202 : binding_cluster *cluster = BINDING_VECTOR_CLUSTER_BASE (binding);
4322 : 202 : unsigned ix = BINDING_VECTOR_NUM_CLUSTERS (binding);
4323 : 202 : if (BINDING_VECTOR_SLOTS_PER_CLUSTER == BINDING_SLOTS_FIXED)
4324 : : {
4325 : 202 : ix--;
4326 : 202 : cluster++;
4327 : : }
4328 : :
4329 : : /* There could be duplicate module or GMF entries. */
4330 : 202 : bool maybe_dups = (BINDING_VECTOR_PARTITION_DUPS_P (binding)
4331 : 202 : || BINDING_VECTOR_GLOBAL_DUPS_P (binding));
4332 : :
4333 : 434 : for (; ix--; cluster++)
4334 : 696 : for (unsigned jx = 0; jx != BINDING_VECTOR_SLOTS_PER_CLUSTER; jx++)
4335 : 464 : if (!cluster->slots[jx].is_lazy ())
4336 : 461 : if (tree bind = cluster->slots[jx])
4337 : : {
4338 : 274 : if (TREE_CODE (bind) == NAMESPACE_DECL
4339 : 274 : && !DECL_NAMESPACE_ALIAS (bind))
4340 : : {
4341 : 17 : if (unsigned base = cluster->indices[jx].base)
4342 : 17 : if (unsigned span = cluster->indices[jx].span)
4343 : 17 : do
4344 : 17 : if (bitmap_bit_p (partitions, base))
4345 : 17 : goto found;
4346 : 0 : while (++base, --span);
4347 : : /* Not a partition's namespace. */
4348 : 0 : continue;
4349 : 17 : found:
4350 : :
4351 : 17 : WMB_Flags flags = WMB_None;
4352 : 17 : if (maybe_dups)
4353 : 0 : flags = WMB_Flags (flags | WMB_Dups);
4354 : 17 : count += callback (bind, flags, data);
4355 : 0 : }
4356 : 257 : else if (STAT_HACK_P (bind) && MODULE_BINDING_PARTITION_P (bind))
4357 : : {
4358 : 147 : if (tree btype = STAT_TYPE (bind))
4359 : : {
4360 : 0 : WMB_Flags flags = WMB_None;
4361 : 0 : if (maybe_dups)
4362 : 0 : flags = WMB_Flags (flags | WMB_Dups);
4363 : 0 : if (STAT_TYPE_HIDDEN_P (bind))
4364 : 0 : flags = WMB_Flags (flags | WMB_Hidden);
4365 : 0 : if (TREE_CODE (btype) == USING_DECL)
4366 : : {
4367 : 0 : flags = WMB_Flags (flags | WMB_Using);
4368 : 0 : if (DECL_MODULE_PURVIEW_P (btype))
4369 : 0 : flags = WMB_Flags (flags | WMB_Purview);
4370 : 0 : if (DECL_MODULE_EXPORT_P (btype))
4371 : 0 : flags = WMB_Flags (flags | WMB_Export);
4372 : : }
4373 : 0 : count += callback (btype, flags, data);
4374 : : }
4375 : 147 : bool part_hidden = STAT_DECL_HIDDEN_P (bind);
4376 : 147 : for (ovl_iterator iter (MAYBE_STAT_DECL (STAT_DECL (bind)));
4377 : 300 : iter; ++iter)
4378 : : {
4379 : 153 : if (iter.hidden_p ())
4380 : : part_hidden = true;
4381 : 153 : gcc_checking_assert
4382 : : (!(part_hidden && DECL_IS_UNDECLARED_BUILTIN (*iter)));
4383 : :
4384 : 153 : WMB_Flags flags = WMB_None;
4385 : 153 : if (maybe_dups)
4386 : 66 : flags = WMB_Flags (flags | WMB_Dups);
4387 : 153 : if (part_hidden)
4388 : 9 : flags = WMB_Flags (flags | WMB_Hidden);
4389 : 153 : if (iter.using_p ())
4390 : : {
4391 : 9 : flags = WMB_Flags (flags | WMB_Using);
4392 : 9 : if (iter.purview_p ())
4393 : 9 : flags = WMB_Flags (flags | WMB_Purview);
4394 : 9 : if (iter.exporting_p ())
4395 : 9 : flags = WMB_Flags (flags | WMB_Export);
4396 : : }
4397 : 153 : count += callback (*iter, flags, data);
4398 : 153 : part_hidden = false;
4399 : : }
4400 : : }
4401 : : }
4402 : : }
4403 : :
4404 : 5812996 : return count;
4405 : : }
4406 : :
4407 : : /* Imported module MOD has a binding to NS::NAME, stored in section
4408 : : SNUM. */
4409 : :
4410 : : bool
4411 : 269290 : import_module_binding (tree ns, tree name, unsigned mod, unsigned snum)
4412 : : {
4413 : 269290 : tree *slot = find_namespace_slot (ns, name, true);
4414 : 269290 : binding_slot *mslot = append_imported_binding_slot (slot, name, mod);
4415 : :
4416 : 269290 : if (mslot->is_lazy () || *mslot)
4417 : : /* Oops, something was already there. */
4418 : : return false;
4419 : :
4420 : 269290 : mslot->set_lazy (snum);
4421 : 269290 : return true;
4422 : : }
4423 : :
4424 : : /* An import of MODULE is binding NS::NAME. There should be no
4425 : : existing binding for >= MODULE. GLOBAL_P indicates whether the
4426 : : bindings include global module entities. PARTITION_P is true if
4427 : : it is part of the current module. VALUE and TYPE are the value
4428 : : and type bindings. VISIBLE are the value bindings being exported. */
4429 : :
4430 : : bool
4431 : 207987 : set_module_binding (tree ns, tree name, unsigned mod, bool global_p,
4432 : : bool partition_p, tree value, tree type, tree visible)
4433 : : {
4434 : 207987 : if (!value)
4435 : : /* Bogus BMIs could give rise to nothing to bind. */
4436 : : return false;
4437 : :
4438 : 207987 : gcc_assert (TREE_CODE (value) != NAMESPACE_DECL
4439 : : || DECL_NAMESPACE_ALIAS (value));
4440 : 207987 : gcc_checking_assert (mod);
4441 : :
4442 : 207987 : tree *slot = find_namespace_slot (ns, name, true);
4443 : 207987 : binding_slot *mslot = search_imported_binding_slot (slot, mod);
4444 : :
4445 : 207987 : if (!mslot || !mslot->is_lazy ())
4446 : : /* Again, bogus BMI could give find to missing or already loaded slot. */
4447 : : return false;
4448 : :
4449 : 207987 : tree bind = value;
4450 : 207987 : if (type || visible != bind || partition_p || global_p)
4451 : : {
4452 : 206688 : bind = stat_hack (bind, type);
4453 : 206688 : STAT_VISIBLE (bind) = visible;
4454 : 598 : if ((partition_p && TREE_PUBLIC (ns))
4455 : 206688 : || (type && DECL_MODULE_EXPORT_P (type)))
4456 : 633 : STAT_TYPE_VISIBLE_P (bind) = true;
4457 : : }
4458 : :
4459 : : /* Note if this is this-module and/or global binding. */
4460 : 206688 : if (partition_p)
4461 : 598 : MODULE_BINDING_PARTITION_P (bind) = true;
4462 : 207987 : if (global_p)
4463 : 205960 : MODULE_BINDING_GLOBAL_P (bind) = true;
4464 : :
4465 : 207987 : *mslot = bind;
4466 : :
4467 : 207987 : return true;
4468 : : }
4469 : :
4470 : : void
4471 : 90679 : add_module_namespace_decl (tree ns, tree decl)
4472 : : {
4473 : 90679 : gcc_assert (!DECL_CHAIN (decl));
4474 : 90679 : gcc_checking_assert (!(VAR_OR_FUNCTION_DECL_P (decl)
4475 : : && DECL_LOCAL_DECL_P (decl)));
4476 : 90679 : if (CHECKING_P)
4477 : : /* Expensive already-there? check. */
4478 : 161708028 : for (auto probe = NAMESPACE_LEVEL (ns)->names; probe;
4479 : 161617349 : probe = DECL_CHAIN (probe))
4480 : 161617349 : gcc_assert (decl != probe);
4481 : :
4482 : 90679 : add_decl_to_level (NAMESPACE_LEVEL (ns), decl);
4483 : :
4484 : 90679 : if (VAR_P (decl))
4485 : 1956 : maybe_register_incomplete_var (decl);
4486 : :
4487 : 88723 : if (VAR_OR_FUNCTION_DECL_P (decl)
4488 : 126191 : && DECL_EXTERN_C_P (decl))
4489 : 23300 : check_extern_c_conflict (decl);
4490 : 90679 : }
4491 : :
4492 : : /* Enter DECL into the symbol table, if that's appropriate. Returns
4493 : : DECL, or a modified version thereof. */
4494 : :
4495 : : tree
4496 : 125287088 : maybe_push_decl (tree decl)
4497 : : {
4498 : 125287088 : tree type = TREE_TYPE (decl);
4499 : :
4500 : : /* Add this decl to the current binding level, but not if it comes
4501 : : from another scope, e.g. a static member variable. TEM may equal
4502 : : DECL or it may be a previous decl of the same name. */
4503 : 125287088 : if (decl == error_mark_node
4504 : 125287083 : || (TREE_CODE (decl) != PARM_DECL
4505 : 125287083 : && DECL_CONTEXT (decl) != NULL_TREE
4506 : : /* Definitions of namespace members outside their namespace are
4507 : : possible. */
4508 : 46166249 : && !DECL_NAMESPACE_SCOPE_P (decl))
4509 : 124034259 : || (TREE_CODE (decl) == TEMPLATE_DECL && !namespace_bindings_p ())
4510 : 124034259 : || type == unknown_type_node
4511 : : /* The declaration of a template specialization does not affect
4512 : : the functions available for overload resolution, so we do not
4513 : : call pushdecl. */
4514 : 249321347 : || (TREE_CODE (decl) == FUNCTION_DECL
4515 : 35230983 : && DECL_TEMPLATE_SPECIALIZATION (decl)))
4516 : 1341779 : return decl;
4517 : : else
4518 : 123945309 : return pushdecl (decl);
4519 : : }
4520 : :
4521 : : /* Bind DECL to ID in the current_binding_level, assumed to be a local
4522 : : binding level. If IS_USING is true, DECL got here through a
4523 : : using-declaration. */
4524 : :
4525 : : static void
4526 : 698360 : push_local_binding (tree id, tree decl, bool is_using)
4527 : : {
4528 : : /* Skip over any local classes. This makes sense if we call
4529 : : push_local_binding with a friend decl of a local class. */
4530 : 698360 : cp_binding_level *b = innermost_nonclass_level ();
4531 : :
4532 : 698360 : gcc_assert (b->kind != sk_namespace);
4533 : 698360 : if (find_local_binding (b, id))
4534 : : {
4535 : : /* Supplement the existing binding. */
4536 : 27 : if (!supplement_binding (IDENTIFIER_BINDING (id), decl))
4537 : : /* It didn't work. Something else must be bound at this
4538 : : level. Do not add DECL to the list of things to pop
4539 : : later. */
4540 : : return;
4541 : : }
4542 : : else
4543 : : /* Create a new binding. */
4544 : 698333 : push_binding (id, decl, b);
4545 : :
4546 : 698351 : if (TREE_CODE (decl) == OVERLOAD || is_using)
4547 : : /* We must put the OVERLOAD or using into a TREE_LIST since we
4548 : : cannot use the decl's chain itself. */
4549 : 698351 : decl = build_tree_list (id, decl);
4550 : :
4551 : : /* And put DECL on the list of things declared by the current
4552 : : binding level. */
4553 : 698351 : add_decl_to_level (b, decl);
4554 : : }
4555 : :
4556 : : /* Lookup the FRIEND_TMPL within all merged module imports. Used to dedup
4557 : : instantiations of temploid hidden friends from imported modules. */
4558 : :
4559 : : tree
4560 : 214 : lookup_imported_hidden_friend (tree friend_tmpl)
4561 : : {
4562 : : /* For a class-scope friend class it should have been found by regular
4563 : : name lookup. Otherwise we're looking in the current namespace. */
4564 : 214 : gcc_checking_assert (CP_DECL_CONTEXT (friend_tmpl) == current_namespace);
4565 : :
4566 : 214 : tree inner = DECL_TEMPLATE_RESULT (friend_tmpl);
4567 : 214 : if (!DECL_LANG_SPECIFIC (inner)
4568 : 254 : || !DECL_MODULE_IMPORT_P (inner))
4569 : : return NULL_TREE;
4570 : :
4571 : 27 : lazy_load_pendings (friend_tmpl);
4572 : :
4573 : 27 : tree bind = get_mergeable_namespace_binding
4574 : 27 : (current_namespace, DECL_NAME (inner), DECL_MODULE_ATTACH_P (inner));
4575 : 27 : if (!bind)
4576 : : return NULL_TREE;
4577 : :
4578 : : /* We're only interested in declarations coming from the same module
4579 : : of the friend class we're attempting to instantiate. */
4580 : 12 : int m = get_originating_module (friend_tmpl);
4581 : 12 : gcc_assert (m != 0);
4582 : :
4583 : : /* There should be at most one class template from the module we're
4584 : : looking for, return it. */
4585 : 12 : for (ovl_iterator iter (bind); iter; ++iter)
4586 : 24 : if (DECL_CLASS_TEMPLATE_P (*iter)
4587 : 24 : && get_originating_module (*iter) == m)
4588 : 12 : return *iter;
4589 : :
4590 : 0 : return NULL_TREE;
4591 : : }
4592 : :
4593 : :
4594 : : /* true means unconditionally make a BLOCK for the next level pushed. */
4595 : :
4596 : : static bool keep_next_level_flag;
4597 : :
4598 : : static int binding_depth = 0;
4599 : :
4600 : : static void
4601 : 0 : indent (int depth)
4602 : : {
4603 : 0 : int i;
4604 : :
4605 : 0 : for (i = 0; i < depth * 2; i++)
4606 : 0 : putc (' ', stderr);
4607 : 0 : }
4608 : :
4609 : : /* Return a string describing the kind of SCOPE we have. */
4610 : : static const char *
4611 : 0 : cp_binding_level_descriptor (cp_binding_level *scope)
4612 : : {
4613 : : /* The order of this table must match the "scope_kind"
4614 : : enumerators. */
4615 : 0 : static const char* scope_kind_names[] = {
4616 : : "block-scope",
4617 : : "cleanup-scope",
4618 : : "try-scope",
4619 : : "catch-scope",
4620 : : "for-scope",
4621 : : "cond-init-scope",
4622 : : "stmt-expr-scope",
4623 : : "function-parameter-scope",
4624 : : "class-scope",
4625 : : "enum-scope",
4626 : : "namespace-scope",
4627 : : "template-parameter-scope",
4628 : : "template-explicit-spec-scope",
4629 : : "transaction-scope",
4630 : : "openmp-scope"
4631 : : };
4632 : 0 : static_assert (ARRAY_SIZE (scope_kind_names) == sk_count,
4633 : : "must keep names aligned with scope_kind enum");
4634 : :
4635 : 0 : scope_kind kind = scope->kind;
4636 : 0 : if (kind == sk_template_parms && scope->explicit_spec_p)
4637 : 0 : kind = sk_template_spec;
4638 : :
4639 : 0 : return scope_kind_names[kind];
4640 : : }
4641 : :
4642 : : /* Output a debugging information about SCOPE when performing
4643 : : ACTION at LINE. */
4644 : : static void
4645 : 0 : cp_binding_level_debug (cp_binding_level *scope, int line, const char *action)
4646 : : {
4647 : 0 : const char *desc = cp_binding_level_descriptor (scope);
4648 : 0 : if (scope->this_entity)
4649 : 0 : verbatim ("%s %<%s(%E)%> %p %d", action, desc,
4650 : : scope->this_entity, (void *) scope, line);
4651 : : else
4652 : 0 : verbatim ("%s %s %p %d", action, desc, (void *) scope, line);
4653 : 0 : }
4654 : :
4655 : : /* A chain of binding_level structures awaiting reuse. */
4656 : :
4657 : : static GTY((deletable)) cp_binding_level *free_binding_level;
4658 : :
4659 : : /* Insert SCOPE as the innermost binding level. */
4660 : :
4661 : : void
4662 : 1053194221 : push_binding_level (cp_binding_level *scope)
4663 : : {
4664 : : /* Add it to the front of currently active scopes stack. */
4665 : 1053194221 : scope->level_chain = current_binding_level;
4666 : 1053194221 : current_binding_level = scope;
4667 : 1053194221 : keep_next_level_flag = false;
4668 : :
4669 : 1053194221 : if (ENABLE_SCOPE_CHECKING)
4670 : : {
4671 : : scope->binding_depth = binding_depth;
4672 : : indent (binding_depth);
4673 : : cp_binding_level_debug (scope, LOCATION_LINE (input_location),
4674 : : "push");
4675 : : binding_depth++;
4676 : : }
4677 : 1053194221 : }
4678 : :
4679 : : /* Create a new KIND scope and make it the top of the active scopes stack.
4680 : : ENTITY is the scope of the associated C++ entity (namespace, class,
4681 : : function, C++0x enumeration); it is NULL otherwise. */
4682 : :
4683 : : cp_binding_level *
4684 : 885291928 : begin_scope (scope_kind kind, tree entity)
4685 : : {
4686 : 885291928 : cp_binding_level *scope;
4687 : :
4688 : : /* Reuse or create a struct for this binding level. */
4689 : 885291928 : if (!ENABLE_SCOPE_CHECKING && free_binding_level)
4690 : : {
4691 : 857844868 : scope = free_binding_level;
4692 : 857844868 : free_binding_level = scope->level_chain;
4693 : 857844868 : memset (scope, 0, sizeof (cp_binding_level));
4694 : : }
4695 : : else
4696 : 27447060 : scope = ggc_cleared_alloc<cp_binding_level> ();
4697 : :
4698 : 885291928 : scope->this_entity = entity;
4699 : 885291928 : scope->more_cleanups_ok = true;
4700 : 885291928 : switch (kind)
4701 : : {
4702 : 270 : case sk_cleanup:
4703 : 270 : scope->keep = true;
4704 : 270 : break;
4705 : :
4706 : 4809530 : case sk_template_spec:
4707 : 4809530 : scope->explicit_spec_p = true;
4708 : 4809530 : kind = sk_template_parms;
4709 : : /* Fall through. */
4710 : 572028958 : case sk_template_parms:
4711 : 572028958 : case sk_block:
4712 : 572028958 : case sk_try:
4713 : 572028958 : case sk_catch:
4714 : 572028958 : case sk_for:
4715 : 572028958 : case sk_cond:
4716 : 572028958 : case sk_class:
4717 : 572028958 : case sk_scoped_enum:
4718 : 572028958 : case sk_transaction:
4719 : 572028958 : case sk_omp:
4720 : 572028958 : case sk_stmt_expr:
4721 : 572028958 : scope->keep = keep_next_level_flag;
4722 : 572028958 : break;
4723 : :
4724 : 313169997 : case sk_function_parms:
4725 : 313169997 : scope->keep = keep_next_level_flag;
4726 : 313169997 : break;
4727 : :
4728 : 92703 : case sk_namespace:
4729 : 92703 : NAMESPACE_LEVEL (entity) = scope;
4730 : 92703 : break;
4731 : :
4732 : 0 : default:
4733 : : /* Should not happen. */
4734 : 0 : gcc_unreachable ();
4735 : 885291928 : break;
4736 : : }
4737 : 885291928 : scope->kind = kind;
4738 : :
4739 : 885291928 : push_binding_level (scope);
4740 : :
4741 : 885291928 : return scope;
4742 : : }
4743 : :
4744 : : /* We're about to leave current scope. Pop the top of the stack of
4745 : : currently active scopes. Return the enclosing scope, now active. */
4746 : :
4747 : : cp_binding_level *
4748 : 1096633881 : leave_scope (void)
4749 : : {
4750 : 1096633881 : cp_binding_level *scope = current_binding_level;
4751 : :
4752 : 1096633881 : if (scope->kind == sk_namespace && class_binding_level)
4753 : 0 : current_binding_level = class_binding_level;
4754 : :
4755 : : /* We cannot leave a scope, if there are none left. */
4756 : 1096633881 : if (NAMESPACE_LEVEL (global_namespace))
4757 : 1096633881 : gcc_assert (!global_scope_p (scope));
4758 : :
4759 : 1096633881 : if (ENABLE_SCOPE_CHECKING)
4760 : : {
4761 : : indent (--binding_depth);
4762 : : cp_binding_level_debug (scope, LOCATION_LINE (input_location),
4763 : : "leave");
4764 : : }
4765 : :
4766 : : /* Move one nesting level up. */
4767 : 1096633881 : current_binding_level = scope->level_chain;
4768 : :
4769 : : /* Namespace-scopes are left most probably temporarily, not
4770 : : completely; they can be reopened later, e.g. in namespace-extension
4771 : : or any name binding activity that requires us to resume a
4772 : : namespace. For classes, we cache some binding levels. For other
4773 : : scopes, we just make the structure available for reuse. */
4774 : 1096633881 : if (scope->kind != sk_namespace
4775 : 1053085171 : && scope != previous_class_level)
4776 : : {
4777 : 835077587 : scope->level_chain = free_binding_level;
4778 : 835077587 : gcc_assert (!ENABLE_SCOPE_CHECKING
4779 : : || scope->binding_depth == binding_depth);
4780 : 835077587 : free_binding_level = scope;
4781 : : }
4782 : :
4783 : 1096633881 : if (scope->kind == sk_class)
4784 : : {
4785 : : /* Reset DEFINING_CLASS_P to allow for reuse of a
4786 : : class-defining scope in a non-defining context. */
4787 : 339408447 : scope->defining_class_p = 0;
4788 : :
4789 : : /* Find the innermost enclosing class scope, and reset
4790 : : CLASS_BINDING_LEVEL appropriately. */
4791 : 339408447 : class_binding_level = NULL;
4792 : 1411814236 : for (scope = current_binding_level; scope; scope = scope->level_chain)
4793 : 777950613 : if (scope->kind == sk_class)
4794 : : {
4795 : 44953271 : class_binding_level = scope;
4796 : 44953271 : break;
4797 : : }
4798 : : }
4799 : :
4800 : 1096633881 : return current_binding_level;
4801 : : }
4802 : :
4803 : : /* When we exit a toplevel class scope, we save its binding level so
4804 : : that we can restore it quickly. Here, we've entered some other
4805 : : class, so we must invalidate our cache. */
4806 : :
4807 : : void
4808 : 23898448 : invalidate_class_lookup_cache (void)
4809 : : {
4810 : 23898448 : previous_class_level->level_chain = free_binding_level;
4811 : 23898448 : free_binding_level = previous_class_level;
4812 : 23898448 : previous_class_level = NULL;
4813 : 23898448 : }
4814 : :
4815 : : static void
4816 : 43548719 : resume_scope (cp_binding_level* b)
4817 : : {
4818 : : /* Resuming binding levels is meant only for namespaces,
4819 : : and those cannot nest into classes. */
4820 : 43548719 : gcc_assert (!class_binding_level);
4821 : : /* Also, resuming a non-directly nested namespace is a no-no. */
4822 : 43548719 : gcc_assert (b->level_chain == current_binding_level);
4823 : 43548719 : current_binding_level = b;
4824 : 43548719 : if (ENABLE_SCOPE_CHECKING)
4825 : : {
4826 : : b->binding_depth = binding_depth;
4827 : : indent (binding_depth);
4828 : : cp_binding_level_debug (b, LOCATION_LINE (input_location), "resume");
4829 : : binding_depth++;
4830 : : }
4831 : 43548719 : }
4832 : :
4833 : : /* Return the innermost binding level that is not for a class scope. */
4834 : :
4835 : : static cp_binding_level *
4836 : 1395852540 : innermost_nonclass_level (void)
4837 : : {
4838 : 1395852540 : cp_binding_level *b;
4839 : :
4840 : 1395852540 : b = current_binding_level;
4841 : 1604980309 : while (b->kind == sk_class)
4842 : 209127769 : b = b->level_chain;
4843 : :
4844 : 1395852540 : return b;
4845 : : }
4846 : :
4847 : : /* We're defining an object of type TYPE. If it needs a cleanup, but
4848 : : we're not allowed to add any more objects with cleanups to the current
4849 : : scope, create a new binding level. */
4850 : :
4851 : : void
4852 : 5115249 : maybe_push_cleanup_level (tree type)
4853 : : {
4854 : 5115249 : if (type != error_mark_node
4855 : 5115065 : && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
4856 : 5431977 : && current_binding_level->more_cleanups_ok == 0)
4857 : : {
4858 : 270 : begin_scope (sk_cleanup, NULL);
4859 : 270 : current_binding_level->statement_list = push_stmt_list ();
4860 : : }
4861 : 5115249 : }
4862 : :
4863 : : /* Return true if we are in the global binding level. */
4864 : :
4865 : : bool
4866 : 316808 : global_bindings_p (void)
4867 : : {
4868 : 316808 : return global_scope_p (current_binding_level);
4869 : : }
4870 : :
4871 : : /* True if we are currently in a toplevel binding level. This
4872 : : means either the global binding level or a namespace in a toplevel
4873 : : binding level. Since there are no non-toplevel namespace levels,
4874 : : this really means any namespace or template parameter level. We
4875 : : also include a class whose context is toplevel. */
4876 : :
4877 : : bool
4878 : 1372367963 : toplevel_bindings_p (void)
4879 : : {
4880 : 1372367963 : cp_binding_level *b = innermost_nonclass_level ();
4881 : :
4882 : 1372367963 : return b->kind == sk_namespace || b->kind == sk_template_parms;
4883 : : }
4884 : :
4885 : : /* True if this is a namespace scope, or if we are defining a class
4886 : : which is itself at namespace scope, or whose enclosing class is
4887 : : such a class, etc. */
4888 : :
4889 : : bool
4890 : 22784491 : namespace_bindings_p (void)
4891 : : {
4892 : 22784491 : cp_binding_level *b = innermost_nonclass_level ();
4893 : :
4894 : 22784491 : return b->kind == sk_namespace;
4895 : : }
4896 : :
4897 : : /* True if the innermost non-class scope is a block scope. */
4898 : :
4899 : : bool
4900 : 1726 : local_bindings_p (void)
4901 : : {
4902 : 1726 : cp_binding_level *b = innermost_nonclass_level ();
4903 : 1726 : return b->kind < sk_function_parms || b->kind == sk_omp;
4904 : : }
4905 : :
4906 : : /* True if the current level needs to have a BLOCK made. */
4907 : :
4908 : : bool
4909 : 285171710 : kept_level_p (void)
4910 : : {
4911 : 285171710 : return (current_binding_level->blocks != NULL_TREE
4912 : 255352549 : || current_binding_level->keep
4913 : 248897341 : || current_binding_level->kind == sk_cleanup
4914 : 248897341 : || current_binding_level->names != NULL_TREE
4915 : 505165354 : || current_binding_level->using_directives);
4916 : : }
4917 : :
4918 : : /* Returns the kind of the innermost scope. */
4919 : :
4920 : : scope_kind
4921 : 2374273972 : innermost_scope_kind (void)
4922 : : {
4923 : 2374273972 : return current_binding_level->kind;
4924 : : }
4925 : :
4926 : : /* Returns true if this scope was created to store template parameters. */
4927 : :
4928 : : bool
4929 : 539623069 : template_parm_scope_p (void)
4930 : : {
4931 : 539623069 : return innermost_scope_kind () == sk_template_parms;
4932 : : }
4933 : :
4934 : : /* If KEEP is true, make a BLOCK node for the next binding level,
4935 : : unconditionally. Otherwise, use the normal logic to decide whether
4936 : : or not to create a BLOCK. */
4937 : :
4938 : : void
4939 : 10338767 : keep_next_level (bool keep)
4940 : : {
4941 : 10338767 : keep_next_level_flag = keep;
4942 : 10338767 : }
4943 : :
4944 : : /* Return the list of declarations of the current local scope. */
4945 : :
4946 : : tree
4947 : 313106471 : get_local_decls (void)
4948 : : {
4949 : 313106471 : gcc_assert (current_binding_level->kind != sk_namespace
4950 : : && current_binding_level->kind != sk_class);
4951 : 313106471 : return current_binding_level->names;
4952 : : }
4953 : :
4954 : : /* Return how many function prototypes we are currently nested inside. */
4955 : :
4956 : : int
4957 : 250557122 : function_parm_depth (void)
4958 : : {
4959 : 250557122 : int level = 0;
4960 : 250557122 : cp_binding_level *b;
4961 : :
4962 : 250557122 : for (b = current_binding_level;
4963 : 501803168 : b->kind == sk_function_parms;
4964 : 251246046 : b = b->level_chain)
4965 : 251246046 : ++level;
4966 : :
4967 : 250557122 : return level;
4968 : : }
4969 : :
4970 : : /* For debugging. */
4971 : : static int no_print_functions = 0;
4972 : : static int no_print_builtins = 0;
4973 : :
4974 : : static void
4975 : 0 : print_binding_level (cp_binding_level* lvl)
4976 : : {
4977 : 0 : tree t;
4978 : 0 : int i = 0, len;
4979 : 0 : if (lvl->this_entity)
4980 : 0 : print_node_brief (stderr, "entity=", lvl->this_entity, 1);
4981 : 0 : fprintf (stderr, " blocks=%p", (void *) lvl->blocks);
4982 : 0 : if (lvl->more_cleanups_ok)
4983 : 0 : fprintf (stderr, " more-cleanups-ok");
4984 : 0 : if (lvl->have_cleanups)
4985 : 0 : fprintf (stderr, " have-cleanups");
4986 : 0 : fprintf (stderr, "\n");
4987 : 0 : if (lvl->names)
4988 : : {
4989 : 0 : fprintf (stderr, " names:\t");
4990 : : /* We can probably fit 3 names to a line? */
4991 : 0 : for (t = lvl->names; t; t = TREE_CHAIN (t))
4992 : : {
4993 : 0 : if (no_print_functions && (TREE_CODE (t) == FUNCTION_DECL))
4994 : 0 : continue;
4995 : 0 : if (no_print_builtins
4996 : 0 : && (TREE_CODE (t) == TYPE_DECL)
4997 : 0 : && DECL_IS_UNDECLARED_BUILTIN (t))
4998 : 0 : continue;
4999 : :
5000 : : /* Function decls tend to have longer names. */
5001 : 0 : if (TREE_CODE (t) == FUNCTION_DECL)
5002 : : len = 3;
5003 : : else
5004 : 0 : len = 2;
5005 : 0 : i += len;
5006 : 0 : if (i > 6)
5007 : : {
5008 : 0 : fprintf (stderr, "\n\t");
5009 : 0 : i = len;
5010 : : }
5011 : 0 : print_node_brief (stderr, "", t, 0);
5012 : 0 : if (t == error_mark_node)
5013 : : break;
5014 : : }
5015 : 0 : if (i)
5016 : 0 : fprintf (stderr, "\n");
5017 : : }
5018 : 0 : if (vec_safe_length (lvl->class_shadowed))
5019 : : {
5020 : 0 : size_t i;
5021 : 0 : cp_class_binding *b;
5022 : 0 : fprintf (stderr, " class-shadowed:");
5023 : 0 : FOR_EACH_VEC_ELT (*lvl->class_shadowed, i, b)
5024 : 0 : fprintf (stderr, " %s ", IDENTIFIER_POINTER (b->identifier));
5025 : 0 : fprintf (stderr, "\n");
5026 : : }
5027 : 0 : if (lvl->type_shadowed)
5028 : : {
5029 : 0 : fprintf (stderr, " type-shadowed:");
5030 : 0 : for (t = lvl->type_shadowed; t; t = TREE_CHAIN (t))
5031 : : {
5032 : 0 : fprintf (stderr, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t)));
5033 : : }
5034 : 0 : fprintf (stderr, "\n");
5035 : : }
5036 : 0 : }
5037 : :
5038 : : DEBUG_FUNCTION void
5039 : 0 : debug (cp_binding_level &ref)
5040 : : {
5041 : 0 : print_binding_level (&ref);
5042 : 0 : }
5043 : :
5044 : : DEBUG_FUNCTION void
5045 : 0 : debug (cp_binding_level *ptr)
5046 : : {
5047 : 0 : if (ptr)
5048 : 0 : debug (*ptr);
5049 : : else
5050 : 0 : fprintf (stderr, "<nil>\n");
5051 : 0 : }
5052 : :
5053 : : static void
5054 : 0 : print_other_binding_stack (cp_binding_level *stack)
5055 : : {
5056 : 0 : cp_binding_level *level;
5057 : 0 : for (level = stack; !global_scope_p (level); level = level->level_chain)
5058 : : {
5059 : 0 : fprintf (stderr, "binding level %p\n", (void *) level);
5060 : 0 : print_binding_level (level);
5061 : : }
5062 : 0 : }
5063 : :
5064 : : DEBUG_FUNCTION void
5065 : 0 : print_binding_stack (void)
5066 : : {
5067 : 0 : cp_binding_level *b;
5068 : 0 : fprintf (stderr, "current_binding_level=%p\n"
5069 : : "class_binding_level=%p\n"
5070 : : "NAMESPACE_LEVEL (global_namespace)=%p\n",
5071 : 0 : (void *) current_binding_level, (void *) class_binding_level,
5072 : 0 : (void *) NAMESPACE_LEVEL (global_namespace));
5073 : 0 : if (class_binding_level)
5074 : : {
5075 : 0 : for (b = class_binding_level; b; b = b->level_chain)
5076 : 0 : if (b == current_binding_level)
5077 : : break;
5078 : 0 : if (b)
5079 : : b = class_binding_level;
5080 : : else
5081 : 0 : b = current_binding_level;
5082 : : }
5083 : : else
5084 : 0 : b = current_binding_level;
5085 : 0 : print_other_binding_stack (b);
5086 : 0 : fprintf (stderr, "global:\n");
5087 : 0 : print_binding_level (NAMESPACE_LEVEL (global_namespace));
5088 : 0 : }
5089 : :
5090 : : /* Push a definition of struct, union or enum tag named ID. into
5091 : : binding_level B. DECL is a TYPE_DECL for the type. DECL has
5092 : : already been pushed into its binding level. This is bookkeeping to
5093 : : find it easily. */
5094 : :
5095 : : static void
5096 : 323026303 : set_identifier_type_value_with_scope (tree id, tree decl, cp_binding_level *b)
5097 : : {
5098 : 323026303 : if (b->kind == sk_namespace)
5099 : : /* At namespace scope we should not see an identifier type value. */
5100 : 21947397 : gcc_checking_assert (!REAL_IDENTIFIER_TYPE_VALUE (id)
5101 : : /* We could be pushing a friend underneath a template
5102 : : parm (ill-formed). */
5103 : : || (TEMPLATE_PARM_P
5104 : : (TYPE_NAME (REAL_IDENTIFIER_TYPE_VALUE (id)))));
5105 : : else
5106 : : {
5107 : : /* Push the current type value, so we can restore it later */
5108 : 301078906 : tree old = REAL_IDENTIFIER_TYPE_VALUE (id);
5109 : 301078906 : b->type_shadowed = tree_cons (id, old, b->type_shadowed);
5110 : 301078906 : tree type = decl ? TREE_TYPE (decl) : NULL_TREE;
5111 : 301078906 : TREE_TYPE (b->type_shadowed) = type;
5112 : 301078906 : SET_IDENTIFIER_TYPE_VALUE (id, type);
5113 : : }
5114 : 323026303 : }
5115 : :
5116 : : /* As set_identifier_type_value_with_scope, but using
5117 : : current_binding_level. */
5118 : :
5119 : : void
5120 : 110956222 : set_identifier_type_value (tree id, tree decl)
5121 : : {
5122 : 110956222 : set_identifier_type_value_with_scope (id, decl, current_binding_level);
5123 : 110956222 : }
5124 : :
5125 : : /* Return the name for the constructor (or destructor) for the
5126 : : specified class. */
5127 : :
5128 : : tree
5129 : 321049772 : constructor_name (tree type)
5130 : : {
5131 : 321049772 : tree decl = TYPE_NAME (TYPE_MAIN_VARIANT (type));
5132 : :
5133 : 321049772 : return decl ? DECL_NAME (decl) : NULL_TREE;
5134 : : }
5135 : :
5136 : : /* Returns TRUE if NAME is the name for the constructor for TYPE,
5137 : : which must be a class type. */
5138 : :
5139 : : bool
5140 : 300496562 : constructor_name_p (tree name, tree type)
5141 : : {
5142 : 300496562 : gcc_assert (MAYBE_CLASS_TYPE_P (type));
5143 : :
5144 : : /* These don't have names. */
5145 : 300496562 : if (TREE_CODE (type) == DECLTYPE_TYPE
5146 : 300496559 : || TREE_CODE (type) == TYPEOF_TYPE)
5147 : : return false;
5148 : :
5149 : 300496559 : if (name && name == constructor_name (type))
5150 : : return true;
5151 : :
5152 : : return false;
5153 : : }
5154 : :
5155 : : /* Same as pushdecl, but define X in binding-level LEVEL. We rely on the
5156 : : caller to set DECL_CONTEXT properly.
5157 : :
5158 : : Warning: For class and block-scope this must only be used when X
5159 : : will be the new innermost binding for its name, as we tack it onto
5160 : : the front of IDENTIFIER_BINDING without checking to see if the
5161 : : current IDENTIFIER_BINDING comes from a closer binding level than
5162 : : LEVEL.
5163 : :
5164 : : Warning: For namespace scope, this will look in LEVEL for an
5165 : : existing binding to match, but if not found will push the decl into
5166 : : CURRENT_NAMESPACE. Use push_nested_namespace/pushdecl/
5167 : : pop_nested_namespace if you really need to push it into a foreign
5168 : : namespace. */
5169 : :
5170 : : static tree
5171 : 51812775 : do_pushdecl_with_scope (tree x, cp_binding_level *level, bool hiding = false)
5172 : : {
5173 : 51812775 : cp_binding_level *b;
5174 : :
5175 : 51812775 : if (level->kind == sk_class)
5176 : : {
5177 : 0 : gcc_checking_assert (!hiding);
5178 : 0 : b = class_binding_level;
5179 : 0 : class_binding_level = level;
5180 : 0 : pushdecl_class_level (x);
5181 : 0 : class_binding_level = b;
5182 : : }
5183 : : else
5184 : : {
5185 : 51812775 : tree function_decl = current_function_decl;
5186 : 51812775 : if (level->kind == sk_namespace)
5187 : 48868471 : current_function_decl = NULL_TREE;
5188 : 51812775 : b = current_binding_level;
5189 : 51812775 : current_binding_level = level;
5190 : 51812775 : x = pushdecl (x, hiding);
5191 : 51812775 : current_binding_level = b;
5192 : 51812775 : current_function_decl = function_decl;
5193 : : }
5194 : 51812775 : return x;
5195 : : }
5196 : :
5197 : : /* Inject X into the local scope just before the function parms. */
5198 : :
5199 : : tree
5200 : 1481002 : pushdecl_outermost_localscope (tree x)
5201 : : {
5202 : 1481002 : cp_binding_level *b = NULL;
5203 : 1481002 : auto_cond_timevar tv (TV_NAME_LOOKUP);
5204 : :
5205 : : /* Find the scope just inside the function parms. */
5206 : 1481002 : for (cp_binding_level *n = current_binding_level;
5207 : 3957671 : n->kind != sk_function_parms; n = b->level_chain)
5208 : 2476669 : b = n;
5209 : :
5210 : 1481002 : return b ? do_pushdecl_with_scope (x, b) : error_mark_node;
5211 : 1481002 : }
5212 : :
5213 : : /* Checks if BINDING is a binding that we can export. */
5214 : :
5215 : : static bool
5216 : 17366 : check_can_export_using_decl (tree binding)
5217 : : {
5218 : : /* Declarations in header units are always OK. */
5219 : 17366 : if (header_module_p ())
5220 : : return true;
5221 : :
5222 : : /* We want the linkage of the underlying entity, so strip typedefs.
5223 : : If the underlying entity is a builtin type then we're OK. */
5224 : 288 : tree entity = binding;
5225 : 288 : if (TREE_CODE (entity) == TYPE_DECL)
5226 : : {
5227 : 93 : entity = TYPE_MAIN_DECL (TREE_TYPE (entity));
5228 : 93 : if (!entity)
5229 : : return true;
5230 : : }
5231 : :
5232 : 264 : linkage_kind linkage = decl_linkage (entity);
5233 : 264 : tree not_tmpl = STRIP_TEMPLATE (entity);
5234 : :
5235 : : /* Attachment is determined by the owner of an enumerator. */
5236 : 264 : if (TREE_CODE (not_tmpl) == CONST_DECL)
5237 : 22 : not_tmpl = TYPE_NAME (DECL_CONTEXT (not_tmpl));
5238 : :
5239 : : /* If the using decl is exported, the things it refers to must
5240 : : have external linkage. decl_linkage returns lk_external for
5241 : : module linkage so also check for attachment. */
5242 : 264 : if (linkage != lk_external
5243 : 264 : || (DECL_LANG_SPECIFIC (not_tmpl)
5244 : 151 : && DECL_MODULE_ATTACH_P (not_tmpl)
5245 : 86 : && !DECL_MODULE_EXPORT_P (not_tmpl)))
5246 : : {
5247 : 136 : auto_diagnostic_group d;
5248 : 136 : error ("exporting %q#D that does not have external linkage",
5249 : : binding);
5250 : 136 : if (linkage == lk_none)
5251 : 27 : inform (DECL_SOURCE_LOCATION (entity),
5252 : : "%q#D declared here with no linkage", entity);
5253 : 109 : else if (linkage == lk_internal)
5254 : 47 : inform (DECL_SOURCE_LOCATION (entity),
5255 : : "%q#D declared here with internal linkage", entity);
5256 : : else
5257 : 62 : inform (DECL_SOURCE_LOCATION (entity),
5258 : : "%q#D declared here with module linkage", entity);
5259 : 136 : return false;
5260 : 136 : }
5261 : :
5262 : : return true;
5263 : : }
5264 : :
5265 : : /* Process a local-scope or namespace-scope using declaration. LOOKUP
5266 : : is the result of qualified lookup (both value & type are
5267 : : significant). FN_SCOPE_P indicates if we're at function-scope (as
5268 : : opposed to namespace-scope). *VALUE_P and *TYPE_P are the current
5269 : : bindings, which are altered to reflect the newly brought in
5270 : : declarations. */
5271 : :
5272 : : static bool
5273 : 6322769 : do_nonmember_using_decl (name_lookup &lookup, bool fn_scope_p,
5274 : : bool insert_p, tree *value_p, tree *type_p)
5275 : : {
5276 : 6322769 : tree value = *value_p;
5277 : 6322769 : tree type = *type_p;
5278 : 6322769 : bool failed = false;
5279 : :
5280 : : /* Shift the old and new bindings around so we're comparing class and
5281 : : enumeration names to each other. */
5282 : 6322769 : if (value && DECL_IMPLICIT_TYPEDEF_P (strip_using_decl (value)))
5283 : : {
5284 : : type = value;
5285 : : value = NULL_TREE;
5286 : : }
5287 : :
5288 : 6322769 : if (lookup.value && DECL_IMPLICIT_TYPEDEF_P (lookup.value))
5289 : : {
5290 : 104240 : lookup.type = lookup.value;
5291 : 104240 : lookup.value = NULL_TREE;
5292 : : }
5293 : :
5294 : : /* Only process exporting if we're going to be inserting. */
5295 : 6322769 : bool revealing_p = insert_p && !fn_scope_p && module_has_cmi_p ();
5296 : :
5297 : : /* First do the value binding. */
5298 : 6322769 : if (!lookup.value)
5299 : : /* Nothing (only implicit typedef found). */
5300 : 104240 : gcc_checking_assert (lookup.type);
5301 : 6218529 : else if (OVL_P (lookup.value) && (!value || OVL_P (value)))
5302 : : {
5303 : 14471093 : for (lkp_iterator usings (lookup.value); usings; ++usings)
5304 : : {
5305 : 9284617 : tree new_fn = *usings;
5306 : 9284617 : tree inner = STRIP_TEMPLATE (new_fn);
5307 : 9284617 : bool exporting_p = revealing_p && module_exporting_p ();
5308 : 15130 : if (exporting_p)
5309 : 15130 : exporting_p = check_can_export_using_decl (new_fn);
5310 : :
5311 : : /* [namespace.udecl]
5312 : :
5313 : : If a function declaration in namespace scope or block
5314 : : scope has the same name and the same parameter types as a
5315 : : function introduced by a using declaration the program is
5316 : : ill-formed. */
5317 : : /* This seems overreaching, asking core -- why do we care
5318 : : about decls in the namespace that we cannot name (because
5319 : : they are not transitively imported. We just check the
5320 : : decls that are in this TU. */
5321 : 9284617 : bool found = false;
5322 : 143078193 : for (ovl_iterator old (value); !found && old; ++old)
5323 : : {
5324 : 67166877 : tree old_fn = *old;
5325 : :
5326 : 67166877 : if (new_fn == old_fn)
5327 : : {
5328 : : /* The function already exists in the current
5329 : : namespace. We will still want to insert it if
5330 : : it is revealing a not-revealed thing. */
5331 : 257681 : found = true;
5332 : 257681 : if (!revealing_p)
5333 : : ;
5334 : 729 : else if (old.using_p ())
5335 : : {
5336 : : /* Update in place. 'tis ok. */
5337 : 687 : OVL_PURVIEW_P (old.get_using ()) = true;
5338 : 687 : if (exporting_p)
5339 : 627 : OVL_EXPORT_P (old.get_using ()) = true;
5340 : : }
5341 : 42 : else if (!DECL_LANG_SPECIFIC (inner)
5342 : 84 : || !DECL_MODULE_PURVIEW_P (inner))
5343 : : /* We need to re-insert this function as a revealed
5344 : : (possibly exported) declaration. We can't remove
5345 : : the existing decl because that will change any
5346 : : overloads cached in template functions. */
5347 : : found = false;
5348 : : break;
5349 : : }
5350 : 66909196 : else if (old.using_p ())
5351 : 63742452 : continue; /* This is a using decl. */
5352 : 3166744 : else if (old.hidden_p () && DECL_IS_UNDECLARED_BUILTIN (old_fn))
5353 : 2785077 : continue; /* This is an anticipated builtin. */
5354 : 381667 : else if (!matching_fn_p (new_fn, old_fn))
5355 : 381631 : continue; /* Parameters do not match. */
5356 : 36 : else if (decls_match (new_fn, old_fn))
5357 : : {
5358 : : /* Extern "C" in different namespaces. But similarly
5359 : : to above, if revealing a not-revealed thing we may
5360 : : need to reinsert. */
5361 : 15 : found = true;
5362 : 15 : if (revealing_p
5363 : 15 : && (!DECL_LANG_SPECIFIC (inner)
5364 : 3 : || !DECL_MODULE_PURVIEW_P (inner)))
5365 : : found = false;
5366 : : break;
5367 : : }
5368 : : else
5369 : : {
5370 : 21 : diagnose_name_conflict (new_fn, old_fn);
5371 : 21 : failed = true;
5372 : 21 : found = true;
5373 : 21 : break;
5374 : : }
5375 : : }
5376 : :
5377 : 9284617 : if (!found && insert_p)
5378 : : /* Unlike the decl-pushing case we don't drop anticipated
5379 : : builtins here. They don't cause a problem, and we'd
5380 : : like to match them with a future declaration. */
5381 : 9026930 : value = ovl_insert (new_fn, value, 1 + revealing_p + exporting_p);
5382 : : }
5383 : 5186476 : }
5384 : 1032053 : else if (value
5385 : : /* Ignore anticipated builtins. */
5386 : 33727 : && !anticipated_builtin_p (value)
5387 : 1065777 : && !decls_match (lookup.value, strip_using_decl (value)))
5388 : : {
5389 : 15 : diagnose_name_conflict (lookup.value, value);
5390 : 15 : failed = true;
5391 : : }
5392 : 1032038 : else if (insert_p)
5393 : : {
5394 : : /* A using-decl does not necessarily have the same purview-ness or
5395 : : exporting as the declaration it reveals, so build a USING_DECL
5396 : : that we can attach this information to. This also gives us a
5397 : : location for the using-decl that we can use in diagnostics.
5398 : :
5399 : : But this is unnecessary if we're just redeclaring the same decl;
5400 : : in that case we can just mark it purview or exported directly. */
5401 : 1032026 : if (value != lookup.value)
5402 : : {
5403 : 1027851 : value = build_lang_decl (USING_DECL, lookup.name, NULL_TREE);
5404 : 1027851 : USING_DECL_DECLS (value) = lookup.value;
5405 : 1027851 : USING_DECL_SCOPE (value) = CP_DECL_CONTEXT (lookup.value);
5406 : 1027851 : DECL_CONTEXT (value) = current_scope ();
5407 : 1027851 : DECL_MODULE_PURVIEW_P (value) = module_purview_p ();
5408 : : }
5409 : : else
5410 : 4175 : set_instantiating_module (value);
5411 : :
5412 : 1032026 : if (revealing_p
5413 : 2218 : && module_exporting_p ()
5414 : 1034024 : && check_can_export_using_decl (lookup.value))
5415 : : {
5416 : 1910 : if (TREE_CODE (value) == TEMPLATE_DECL)
5417 : 14 : DECL_MODULE_EXPORT_P (DECL_TEMPLATE_RESULT (value)) = true;
5418 : 1910 : DECL_MODULE_EXPORT_P (value) = true;
5419 : : }
5420 : : }
5421 : :
5422 : : /* Now the type binding. */
5423 : 6322769 : if (lookup.type)
5424 : : {
5425 : 104259 : if (type && !decls_match (lookup.type, strip_using_decl (type)))
5426 : : {
5427 : 3 : diagnose_name_conflict (lookup.type, type);
5428 : 3 : failed = true;
5429 : : }
5430 : 104256 : else if (insert_p)
5431 : : {
5432 : : /* As with revealing value bindings. */
5433 : 104256 : if (type != lookup.type)
5434 : : {
5435 : 104241 : type = build_lang_decl (USING_DECL, lookup.name, NULL_TREE);
5436 : 104241 : USING_DECL_DECLS (type) = lookup.type;
5437 : 104241 : USING_DECL_SCOPE (type) = CP_DECL_CONTEXT (lookup.type);
5438 : 104241 : DECL_CONTEXT (type) = current_scope ();
5439 : 104241 : DECL_MODULE_PURVIEW_P (type) = module_purview_p ();
5440 : : }
5441 : : else
5442 : 15 : set_instantiating_module (type);
5443 : :
5444 : 104256 : if (revealing_p
5445 : 277 : && module_exporting_p ()
5446 : 104494 : && check_can_export_using_decl (lookup.type))
5447 : 226 : DECL_MODULE_EXPORT_P (type) = true;
5448 : : }
5449 : : }
5450 : :
5451 : 6322769 : if (insert_p)
5452 : : {
5453 : : /* If value is empty, shift any class or enumeration name back. */
5454 : 6322748 : if (!value)
5455 : : {
5456 : 104231 : value = type;
5457 : 104231 : type = NULL_TREE;
5458 : : }
5459 : 6322748 : *value_p = value;
5460 : 6322748 : *type_p = type;
5461 : : }
5462 : :
5463 : 6322769 : return failed;
5464 : : }
5465 : :
5466 : : /* Returns true if ANCESTOR encloses DESCENDANT, including matching.
5467 : : Both are namespaces. */
5468 : :
5469 : : bool
5470 : 106060489 : is_nested_namespace (tree ancestor, tree descendant, bool inline_only)
5471 : : {
5472 : 106060489 : int depth = SCOPE_DEPTH (ancestor);
5473 : :
5474 : 106060489 : if (!depth && !inline_only)
5475 : : /* The global namespace encloses everything. */
5476 : : return true;
5477 : :
5478 : 107950251 : while (SCOPE_DEPTH (descendant) > depth
5479 : 107950251 : && (!inline_only || DECL_NAMESPACE_INLINE_P (descendant)))
5480 : 1980822 : descendant = CP_DECL_CONTEXT (descendant);
5481 : :
5482 : 105969429 : return ancestor == descendant;
5483 : : }
5484 : :
5485 : : /* Returns true if ROOT (a non-alias namespace, class, or function)
5486 : : encloses CHILD. CHILD may be either a class type or a namespace
5487 : : (maybe alias). */
5488 : :
5489 : : bool
5490 : 79058767 : is_ancestor (tree root, tree child)
5491 : : {
5492 : 79058767 : gcc_checking_assert ((TREE_CODE (root) == NAMESPACE_DECL
5493 : : && !DECL_NAMESPACE_ALIAS (root))
5494 : : || TREE_CODE (root) == FUNCTION_DECL
5495 : : || CLASS_TYPE_P (root));
5496 : 79058767 : gcc_checking_assert (TREE_CODE (child) == NAMESPACE_DECL
5497 : : || CLASS_TYPE_P (child));
5498 : :
5499 : : /* The global namespace encloses everything. Early-out for the
5500 : : common case. */
5501 : 79058767 : if (root == global_namespace)
5502 : : return true;
5503 : :
5504 : : /* Search CHILD until we reach namespace scope. */
5505 : 164044901 : while (TREE_CODE (child) != NAMESPACE_DECL)
5506 : : {
5507 : : /* If we've reached the ROOT, it encloses CHILD. */
5508 : 85241839 : if (root == child)
5509 : : return true;
5510 : :
5511 : : /* Go out one level. */
5512 : 85241788 : if (TYPE_P (child))
5513 : 84309947 : child = TYPE_NAME (child);
5514 : 85241788 : child = CP_DECL_CONTEXT (child);
5515 : : }
5516 : :
5517 : 78803062 : if (TREE_CODE (root) != NAMESPACE_DECL)
5518 : : /* Failed to meet the non-namespace we were looking for. */
5519 : : return false;
5520 : :
5521 : 78803047 : if (tree alias = DECL_NAMESPACE_ALIAS (child))
5522 : 3 : child = alias;
5523 : :
5524 : 78803047 : return is_nested_namespace (root, child);
5525 : : }
5526 : :
5527 : : /* Enter the class or namespace scope indicated by T suitable for name
5528 : : lookup. T can be arbitrary scope, not necessary nested inside the
5529 : : current scope. Returns a non-null scope to pop iff pop_scope
5530 : : should be called later to exit this scope. */
5531 : :
5532 : : tree
5533 : 291068015 : push_scope (tree t)
5534 : : {
5535 : 291068015 : if (TREE_CODE (t) == NAMESPACE_DECL)
5536 : 68514893 : push_decl_namespace (t);
5537 : 222553122 : else if (CLASS_TYPE_P (t))
5538 : : {
5539 : 160693804 : if (!at_class_scope_p ()
5540 : 160693804 : || !same_type_p (current_class_type, t))
5541 : 74661025 : push_nested_class (t);
5542 : : else
5543 : : /* T is the same as the current scope. There is therefore no
5544 : : need to re-enter the scope. Since we are not actually
5545 : : pushing a new scope, our caller should not call
5546 : : pop_scope. */
5547 : : t = NULL_TREE;
5548 : : }
5549 : :
5550 : 291068015 : return t;
5551 : : }
5552 : :
5553 : : /* Leave scope pushed by push_scope. */
5554 : :
5555 : : void
5556 : 205035711 : pop_scope (tree t)
5557 : : {
5558 : 205035711 : if (t == NULL_TREE)
5559 : : return;
5560 : 205035233 : if (TREE_CODE (t) == NAMESPACE_DECL)
5561 : 68514890 : pop_decl_namespace ();
5562 : 136520343 : else if CLASS_TYPE_P (t)
5563 : 74661025 : pop_nested_class ();
5564 : : }
5565 : :
5566 : : /* Subroutine of push_inner_scope. */
5567 : :
5568 : : static void
5569 : 251993 : push_inner_scope_r (tree outer, tree inner)
5570 : : {
5571 : 251993 : tree prev;
5572 : :
5573 : 251993 : if (outer == inner
5574 : 251993 : || (TREE_CODE (inner) != NAMESPACE_DECL && !CLASS_TYPE_P (inner)))
5575 : : return;
5576 : :
5577 : 251984 : prev = CP_DECL_CONTEXT (TREE_CODE (inner) == NAMESPACE_DECL ? inner : TYPE_NAME (inner));
5578 : 251984 : if (outer != prev)
5579 : 2636 : push_inner_scope_r (outer, prev);
5580 : 251984 : if (TREE_CODE (inner) == NAMESPACE_DECL)
5581 : : {
5582 : : cp_binding_level *save_template_parm = 0;
5583 : : /* Temporary take out template parameter scopes. They are saved
5584 : : in reversed order in save_template_parm. */
5585 : 59317 : while (current_binding_level->kind == sk_template_parms)
5586 : : {
5587 : 29591 : cp_binding_level *b = current_binding_level;
5588 : 29591 : current_binding_level = b->level_chain;
5589 : 29591 : b->level_chain = save_template_parm;
5590 : 29591 : save_template_parm = b;
5591 : : }
5592 : :
5593 : 29726 : resume_scope (NAMESPACE_LEVEL (inner));
5594 : 29726 : current_namespace = inner;
5595 : :
5596 : : /* Restore template parameter scopes. */
5597 : 59317 : while (save_template_parm)
5598 : : {
5599 : 29591 : cp_binding_level *b = save_template_parm;
5600 : 29591 : save_template_parm = b->level_chain;
5601 : 29591 : b->level_chain = current_binding_level;
5602 : 29591 : current_binding_level = b;
5603 : : }
5604 : : }
5605 : : else
5606 : 222258 : pushclass (inner);
5607 : : }
5608 : :
5609 : : /* Enter the scope INNER from current scope. INNER must be a scope
5610 : : nested inside current scope. This works with both name lookup and
5611 : : pushing name into scope. In case a template parameter scope is present,
5612 : : namespace is pushed under the template parameter scope according to
5613 : : name lookup rule in 14.6.1/6.
5614 : :
5615 : : Return the former current scope suitable for pop_inner_scope. */
5616 : :
5617 : : tree
5618 : 249357 : push_inner_scope (tree inner)
5619 : : {
5620 : 249357 : tree outer = current_scope ();
5621 : 249357 : if (!outer)
5622 : 0 : outer = current_namespace;
5623 : :
5624 : 249357 : push_inner_scope_r (outer, inner);
5625 : 249357 : return outer;
5626 : : }
5627 : :
5628 : : /* Exit the current scope INNER back to scope OUTER. */
5629 : :
5630 : : void
5631 : 249357 : pop_inner_scope (tree outer, tree inner)
5632 : : {
5633 : 249357 : if (outer == inner
5634 : 249357 : || (TREE_CODE (inner) != NAMESPACE_DECL && !CLASS_TYPE_P (inner)))
5635 : : return;
5636 : :
5637 : 501335 : while (outer != inner)
5638 : : {
5639 : 251987 : if (TREE_CODE (inner) == NAMESPACE_DECL)
5640 : : {
5641 : : cp_binding_level *save_template_parm = 0;
5642 : : /* Temporary take out template parameter scopes. They are saved
5643 : : in reversed order in save_template_parm. */
5644 : 59317 : while (current_binding_level->kind == sk_template_parms)
5645 : : {
5646 : 29591 : cp_binding_level *b = current_binding_level;
5647 : 29591 : current_binding_level = b->level_chain;
5648 : 29591 : b->level_chain = save_template_parm;
5649 : 29591 : save_template_parm = b;
5650 : : }
5651 : :
5652 : 29726 : pop_namespace ();
5653 : :
5654 : : /* Restore template parameter scopes. */
5655 : 89043 : while (save_template_parm)
5656 : : {
5657 : 29591 : cp_binding_level *b = save_template_parm;
5658 : 29591 : save_template_parm = b->level_chain;
5659 : 29591 : b->level_chain = current_binding_level;
5660 : 29591 : current_binding_level = b;
5661 : : }
5662 : : }
5663 : : else
5664 : 222261 : popclass ();
5665 : :
5666 : 251984 : inner = CP_DECL_CONTEXT (TREE_CODE (inner) == NAMESPACE_DECL ? inner : TYPE_NAME (inner));
5667 : : }
5668 : : }
5669 : :
5670 : : /* Do a pushlevel for class declarations. */
5671 : :
5672 : : void
5673 : 171522420 : pushlevel_class (void)
5674 : : {
5675 : 171522420 : class_binding_level = begin_scope (sk_class, current_class_type);
5676 : 171522420 : }
5677 : :
5678 : : /* ...and a poplevel for class declarations. */
5679 : :
5680 : : void
5681 : 339408450 : poplevel_class (void)
5682 : : {
5683 : 339408450 : cp_binding_level *level = class_binding_level;
5684 : 339408450 : cp_class_binding *cb;
5685 : 339408450 : size_t i;
5686 : 339408450 : tree shadowed;
5687 : :
5688 : 339408450 : auto_cond_timevar tv (TV_NAME_LOOKUP);
5689 : 339408450 : gcc_assert (level != 0);
5690 : :
5691 : : /* If we're leaving a toplevel class, cache its binding level. */
5692 : 339408447 : if (current_class_depth == 1)
5693 : 218007584 : previous_class_level = level;
5694 : 339408447 : for (shadowed = level->type_shadowed;
5695 : 1203474926 : shadowed;
5696 : 864066479 : shadowed = TREE_CHAIN (shadowed))
5697 : 864066479 : SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (shadowed), TREE_VALUE (shadowed));
5698 : :
5699 : : /* Remove the bindings for all of the class-level declarations. */
5700 : 339408447 : if (level->class_shadowed)
5701 : : {
5702 : 509763607 : FOR_EACH_VEC_ELT (*level->class_shadowed, i, cb)
5703 : : {
5704 : 391087907 : IDENTIFIER_BINDING (cb->identifier) = cb->base->previous;
5705 : 391087907 : cxx_binding_free (cb->base);
5706 : : }
5707 : 118675700 : ggc_free (level->class_shadowed);
5708 : 118675700 : level->class_shadowed = NULL;
5709 : : }
5710 : :
5711 : : /* Now, pop out of the binding level which we created up in the
5712 : : `pushlevel_class' routine. */
5713 : 339408447 : gcc_assert (current_binding_level == level);
5714 : 339408447 : leave_scope ();
5715 : 339408447 : }
5716 : :
5717 : : /* Set INHERITED_VALUE_BINDING_P on BINDING to true or false, as
5718 : : appropriate. DECL is the value to which a name has just been
5719 : : bound. CLASS_TYPE is the class in which the lookup occurred. */
5720 : :
5721 : : static void
5722 : 132766307 : set_inherited_value_binding_p (cxx_binding *binding, tree decl,
5723 : : tree class_type)
5724 : : {
5725 : 132766307 : if (binding->value == decl && TREE_CODE (decl) != TREE_LIST)
5726 : : {
5727 : 132417840 : tree context;
5728 : :
5729 : 132417840 : if (is_overloaded_fn (decl))
5730 : 38269369 : context = ovl_scope (decl);
5731 : : else
5732 : : {
5733 : 94148471 : gcc_assert (DECL_P (decl));
5734 : 94148471 : context = context_for_name_lookup (decl);
5735 : : }
5736 : :
5737 : 132417840 : if (is_properly_derived_from (class_type, context))
5738 : 16116942 : INHERITED_VALUE_BINDING_P (binding) = 1;
5739 : : else
5740 : 116300898 : INHERITED_VALUE_BINDING_P (binding) = 0;
5741 : : }
5742 : 348467 : else if (binding->value == decl)
5743 : : /* We only encounter a TREE_LIST when there is an ambiguity in the
5744 : : base classes. Such an ambiguity can be overridden by a
5745 : : definition in this class. */
5746 : 348467 : INHERITED_VALUE_BINDING_P (binding) = 1;
5747 : : else
5748 : 0 : INHERITED_VALUE_BINDING_P (binding) = 0;
5749 : 132766307 : }
5750 : :
5751 : : /* Make the declaration of X appear in CLASS scope. */
5752 : :
5753 : : bool
5754 : 148937563 : pushdecl_class_level (tree x)
5755 : : {
5756 : 148937563 : bool is_valid = true;
5757 : :
5758 : : /* Do nothing if we're adding to an outer lambda closure type,
5759 : : outer_binding will add it later if it's needed. */
5760 : 148937563 : if (current_class_type != class_binding_level->this_entity)
5761 : : return true;
5762 : :
5763 : 148937563 : auto_cond_timevar tv (TV_NAME_LOOKUP);
5764 : : /* Get the name of X. */
5765 : 297875126 : tree name = OVL_NAME (x);
5766 : :
5767 : 148937563 : if (name)
5768 : : {
5769 : 148650042 : is_valid = push_class_level_binding (name, x);
5770 : 148650042 : if (TREE_CODE (x) == TYPE_DECL)
5771 : 106095682 : set_identifier_type_value (name, x);
5772 : : }
5773 : 287521 : else if (ANON_AGGR_TYPE_P (TREE_TYPE (x)))
5774 : : {
5775 : : /* If X is an anonymous aggregate, all of its members are
5776 : : treated as if they were members of the class containing the
5777 : : aggregate, for naming purposes. */
5778 : 156437 : location_t save_location = input_location;
5779 : 156437 : tree anon = TREE_TYPE (x);
5780 : 156437 : if (vec<tree, va_gc> *member_vec = CLASSTYPE_MEMBER_VEC (anon))
5781 : 205959 : for (unsigned ix = member_vec->length (); ix--;)
5782 : : {
5783 : 189815 : tree binding = (*member_vec)[ix];
5784 : 189815 : if (STAT_HACK_P (binding))
5785 : : {
5786 : 0 : if (!pushdecl_class_level (STAT_TYPE (binding)))
5787 : 0 : is_valid = false;
5788 : 0 : binding = STAT_DECL (binding);
5789 : : }
5790 : 189815 : if (!pushdecl_class_level (binding))
5791 : 0 : is_valid = false;
5792 : : }
5793 : : else
5794 : 615633 : for (tree f = TYPE_FIELDS (anon); f; f = DECL_CHAIN (f))
5795 : 475340 : if (TREE_CODE (f) == FIELD_DECL)
5796 : : {
5797 : 302249 : input_location = DECL_SOURCE_LOCATION (f);
5798 : 302249 : if (!pushdecl_class_level (f))
5799 : 475340 : is_valid = false;
5800 : : }
5801 : 156437 : input_location = save_location;
5802 : : }
5803 : 148937563 : return is_valid;
5804 : 148937563 : }
5805 : :
5806 : : /* Return the BINDING (if any) for NAME in SCOPE, which is a class
5807 : : scope. If the value returned is non-NULL, and the PREVIOUS field
5808 : : is not set, callers must set the PREVIOUS field explicitly. */
5809 : :
5810 : : static cxx_binding *
5811 : 1651083777 : get_class_binding (tree name, cp_binding_level *scope)
5812 : : {
5813 : 1651083777 : tree class_type;
5814 : 1651083777 : tree type_binding;
5815 : 1651083777 : tree value_binding;
5816 : 1651083777 : cxx_binding *binding;
5817 : :
5818 : 1651083777 : class_type = scope->this_entity;
5819 : :
5820 : : /* Get the type binding. */
5821 : 1651083777 : type_binding = lookup_member (class_type, name,
5822 : : /*protect=*/2, /*want_type=*/true,
5823 : : tf_warning_or_error);
5824 : : /* Get the value binding. */
5825 : 1651083777 : value_binding = lookup_member (class_type, name,
5826 : : /*protect=*/2, /*want_type=*/false,
5827 : : tf_warning_or_error);
5828 : :
5829 : : /* If we found either a type binding or a value binding, create a
5830 : : new binding object. */
5831 : 1651083777 : if (type_binding || value_binding)
5832 : : {
5833 : 132766307 : binding = new_class_binding (name,
5834 : : value_binding,
5835 : : type_binding,
5836 : : scope);
5837 : 132766307 : set_inherited_value_binding_p (binding, value_binding, class_type);
5838 : : }
5839 : : else
5840 : : binding = NULL;
5841 : :
5842 : 1651083777 : return binding;
5843 : : }
5844 : :
5845 : : /* Make the declaration(s) of X appear in CLASS scope under the name
5846 : : NAME. Returns true if the binding is valid. */
5847 : :
5848 : : bool
5849 : 376823271 : push_class_level_binding (tree name, tree x)
5850 : : {
5851 : 376823271 : cxx_binding *binding;
5852 : 376823271 : tree decl = x;
5853 : 376823271 : bool ok;
5854 : :
5855 : 376823271 : auto_cond_timevar tv (TV_NAME_LOOKUP);
5856 : :
5857 : : /* The class_binding_level will be NULL if x is a template
5858 : : parameter name in a member template. */
5859 : 376823271 : if (!class_binding_level)
5860 : : return true;
5861 : :
5862 : 376823271 : if (name == error_mark_node)
5863 : : return false;
5864 : :
5865 : : /* Can happen for an erroneous declaration (c++/60384). */
5866 : 376823271 : if (!identifier_p (name))
5867 : : {
5868 : 3 : gcc_assert (errorcount || sorrycount);
5869 : : return false;
5870 : : }
5871 : :
5872 : : /* Check for invalid member names. But don't worry about a default
5873 : : argument-scope lambda being pushed after the class is complete. */
5874 : 376823283 : gcc_assert (TYPE_BEING_DEFINED (current_class_type)
5875 : : || LAMBDA_TYPE_P (TREE_TYPE (decl)));
5876 : : /* Check that we're pushing into the right binding level. */
5877 : 376823268 : gcc_assert (current_class_type == class_binding_level->this_entity);
5878 : :
5879 : : /* We could have been passed a tree list if this is an ambiguous
5880 : : declaration. If so, pull the declaration out because
5881 : : check_template_shadow will not handle a TREE_LIST. */
5882 : 376823268 : if (TREE_CODE (decl) == TREE_LIST
5883 : 376823268 : && TREE_TYPE (decl) == error_mark_node)
5884 : 0 : decl = TREE_VALUE (decl);
5885 : :
5886 : 376823268 : if (!check_template_shadow (decl))
5887 : : return false;
5888 : :
5889 : : /* [class.mem]
5890 : :
5891 : : If T is the name of a class, then each of the following shall
5892 : : have a name different from T:
5893 : :
5894 : : -- every static data member of class T;
5895 : :
5896 : : -- every member of class T that is itself a type;
5897 : :
5898 : : -- every enumerator of every member of class T that is an
5899 : : enumerated type;
5900 : :
5901 : : -- every member of every anonymous union that is a member of
5902 : : class T.
5903 : :
5904 : : (Non-static data members were also forbidden to have the same
5905 : : name as T until TC1.) */
5906 : 376823229 : if ((VAR_P (x)
5907 : 376823229 : || TREE_CODE (x) == CONST_DECL
5908 : 362913076 : || (TREE_CODE (x) == TYPE_DECL
5909 : 106095667 : && !DECL_SELF_REFERENCE_P (x))
5910 : : /* A data member of an anonymous union. */
5911 : 307123452 : || (TREE_CODE (x) == FIELD_DECL
5912 : 22319172 : && DECL_CONTEXT (x) != current_class_type))
5913 : 433067623 : && DECL_NAME (x) == DECL_NAME (TYPE_NAME (current_class_type)))
5914 : : {
5915 : 24 : tree scope = context_for_name_lookup (x);
5916 : 24 : if (TYPE_P (scope) && same_type_p (scope, current_class_type))
5917 : : {
5918 : 24 : error_at (DECL_SOURCE_LOCATION (x),
5919 : : "%qD has the same name as the class in which it is "
5920 : : "declared", x);
5921 : 24 : return false;
5922 : : }
5923 : : }
5924 : :
5925 : : /* Get the current binding for NAME in this class, if any. */
5926 : 376823205 : binding = IDENTIFIER_BINDING (name);
5927 : 376823205 : if (!binding || binding->scope != class_binding_level)
5928 : : {
5929 : 268592293 : binding = get_class_binding (name, class_binding_level);
5930 : : /* If a new binding was created, put it at the front of the
5931 : : IDENTIFIER_BINDING list. */
5932 : 268592293 : if (binding)
5933 : : {
5934 : 10267855 : binding->previous = IDENTIFIER_BINDING (name);
5935 : 10267855 : IDENTIFIER_BINDING (name) = binding;
5936 : : }
5937 : : }
5938 : :
5939 : : /* If there is already a binding, then we may need to update the
5940 : : current value. */
5941 : 118498767 : if (binding && binding->value)
5942 : : {
5943 : 118498767 : tree bval = binding->value;
5944 : 118498767 : tree old_decl = NULL_TREE;
5945 : 118498767 : tree target_decl = strip_using_decl (decl);
5946 : 118498767 : tree target_bval = strip_using_decl (bval);
5947 : :
5948 : 118498767 : if (INHERITED_VALUE_BINDING_P (binding))
5949 : : {
5950 : : /* If the old binding was from a base class, and was for a
5951 : : tag name, slide it over to make room for the new binding.
5952 : : The old binding is still visible if explicitly qualified
5953 : : with a class-key. */
5954 : 12373053 : if (TREE_CODE (target_bval) == TYPE_DECL
5955 : 6265669 : && DECL_ARTIFICIAL (target_bval)
5956 : 12881110 : && !(TREE_CODE (target_decl) == TYPE_DECL
5957 : 508047 : && DECL_ARTIFICIAL (target_decl)))
5958 : : {
5959 : 66369 : old_decl = binding->type;
5960 : 66369 : binding->type = bval;
5961 : 66369 : binding->value = NULL_TREE;
5962 : 66369 : INHERITED_VALUE_BINDING_P (binding) = 0;
5963 : : }
5964 : : else
5965 : : {
5966 : 12306684 : old_decl = bval;
5967 : : /* Any inherited type declaration is hidden by the type
5968 : : declaration in the derived class. */
5969 : 12306684 : if (TREE_CODE (target_decl) == TYPE_DECL
5970 : 12306684 : && DECL_ARTIFICIAL (target_decl))
5971 : 442188 : binding->type = NULL_TREE;
5972 : : }
5973 : : }
5974 : 106125714 : else if (TREE_CODE (decl) == USING_DECL
5975 : 3572 : && TREE_CODE (bval) == USING_DECL
5976 : 106125820 : && same_type_p (USING_DECL_SCOPE (decl),
5977 : : USING_DECL_SCOPE (bval)))
5978 : : /* This is a using redeclaration that will be diagnosed later
5979 : : in supplement_binding */
5980 : : ;
5981 : 106125681 : else if (TREE_CODE (decl) == USING_DECL
5982 : 3539 : && TREE_CODE (bval) == USING_DECL
5983 : 73 : && DECL_DEPENDENT_P (decl)
5984 : 106125700 : && DECL_DEPENDENT_P (bval))
5985 : : return true;
5986 : 106125662 : else if (TREE_CODE (decl) == USING_DECL
5987 : 3520 : && DECL_DEPENDENT_P (decl)
5988 : 106128940 : && OVL_P (target_bval))
5989 : : /* The new dependent using beats an old overload. */
5990 : : old_decl = bval;
5991 : 106122384 : else if (TREE_CODE (bval) == USING_DECL
5992 : 709084 : && DECL_DEPENDENT_P (bval)
5993 : 106470285 : && OVL_P (target_decl))
5994 : : /* The old dependent using beats a new overload. */
5995 : : return true;
5996 : 105774495 : else if (OVL_P (target_decl)
5997 : 105446343 : && OVL_P (target_bval))
5998 : : /* The new overload set contains the old one. */
5999 : : old_decl = bval;
6000 : :
6001 : 117822650 : if (old_decl && binding->scope == class_binding_level)
6002 : : {
6003 : 117822650 : binding->value = x;
6004 : : /* It is always safe to clear INHERITED_VALUE_BINDING_P
6005 : : here. This function is only used to register bindings
6006 : : from with the class definition itself. */
6007 : 117822650 : INHERITED_VALUE_BINDING_P (binding) = 0;
6008 : 117822650 : return true;
6009 : : }
6010 : : }
6011 : :
6012 : : /* Note that we declared this value so that we can issue an error if
6013 : : this is an invalid redeclaration of a name already used for some
6014 : : other purpose. */
6015 : 258652647 : note_name_declared_in_class (name, decl);
6016 : :
6017 : : /* If we didn't replace an existing binding, put the binding on the
6018 : : stack of bindings for the identifier, and update the shadowed
6019 : : list. */
6020 : 258652647 : if (binding && binding->scope == class_binding_level)
6021 : : /* Supplement the existing binding. */
6022 : 328209 : ok = supplement_binding (binding, decl);
6023 : : else
6024 : : {
6025 : : /* Create a new binding. */
6026 : 258324438 : push_binding (name, decl, class_binding_level);
6027 : 258324438 : ok = true;
6028 : : }
6029 : :
6030 : : return ok;
6031 : 376823271 : }
6032 : :
6033 : : /* Process and lookup a using decl SCOPE::lookup.name, filling in
6034 : : lookup.values & lookup.type. Return a USING_DECL, or NULL_TREE on
6035 : : failure. */
6036 : :
6037 : : static tree
6038 : 9021987 : lookup_using_decl (tree scope, name_lookup &lookup)
6039 : : {
6040 : 9021987 : tree current = current_scope ();
6041 : 9021987 : bool dependent_p = false;
6042 : 9021987 : tree binfo = NULL_TREE;
6043 : 9021987 : base_kind b_kind = bk_not_base;
6044 : :
6045 : : /* Because C++20 breaks the invariant that only member using-decls
6046 : : refer to members and only non-member using-decls refer to
6047 : : non-members, we first do the lookups, and then do validation that
6048 : : what we found is ok. */
6049 : :
6050 : 9021987 : if (TREE_CODE (scope) == ENUMERAL_TYPE
6051 : 428196 : && cxx_dialect < cxx20
6052 : 428196 : && UNSCOPED_ENUM_P (scope)
6053 : 9022005 : && !TYPE_FUNCTION_SCOPE_P (scope))
6054 : : {
6055 : : /* PR c++/60265 argued that since C++11 added explicit enum scope, we
6056 : : should allow it as meaning the enclosing scope. I don't see any
6057 : : justification for this in C++11, but let's keep allowing it. */
6058 : 16 : tree ctx = CP_TYPE_CONTEXT (scope);
6059 : 42 : if (CLASS_TYPE_P (ctx) == CLASS_TYPE_P (current))
6060 : 9021987 : scope = ctx;
6061 : : }
6062 : :
6063 : : /* You cannot using-decl a destructor. */
6064 : 9021987 : if (TREE_CODE (lookup.name) == BIT_NOT_EXPR)
6065 : : {
6066 : 6 : error ("%<%T%s%D%> names destructor", scope,
6067 : 3 : &"::"[scope == global_namespace ? 2 : 0], lookup.name);
6068 : 3 : return NULL_TREE;
6069 : : }
6070 : :
6071 : 9021984 : if (TREE_CODE (scope) == NAMESPACE_DECL)
6072 : : {
6073 : : /* Naming a namespace member. */
6074 : 6206078 : qualified_namespace_lookup (scope, &lookup);
6075 : :
6076 : 6206078 : if (TYPE_P (current)
6077 : 3 : && (!lookup.value
6078 : 0 : || lookup.type
6079 : 0 : || cxx_dialect < cxx20
6080 : 0 : || TREE_CODE (lookup.value) != CONST_DECL))
6081 : : {
6082 : 3 : error ("using-declaration for non-member at class scope");
6083 : 3 : return NULL_TREE;
6084 : : }
6085 : : }
6086 : 2815906 : else if (TREE_CODE (scope) == ENUMERAL_TYPE)
6087 : : {
6088 : : /* Naming an enumeration member. */
6089 : 428181 : if (cxx_dialect < cxx20)
6090 : 12 : error ("%<using%> with enumeration scope %q#T "
6091 : : "only available with %<-std=c++20%> or %<-std=gnu++20%>",
6092 : : scope);
6093 : 428181 : lookup.value = lookup_enumerator (scope, lookup.name);
6094 : : }
6095 : : else
6096 : : {
6097 : : /* Naming a class member. This is awkward in C++20, because we
6098 : : might be naming an enumerator of an unrelated class. */
6099 : :
6100 : 2387725 : tree npscope = scope;
6101 : 2387725 : if (PACK_EXPANSION_P (scope))
6102 : 9592 : npscope = PACK_EXPANSION_PATTERN (scope);
6103 : :
6104 : 2387725 : if (!MAYBE_CLASS_TYPE_P (npscope))
6105 : : {
6106 : 9 : error ("%qT is not a class, namespace, or enumeration", npscope);
6107 : 9 : return NULL_TREE;
6108 : : }
6109 : :
6110 : : /* Using T::T declares inheriting ctors, even if T is a typedef. */
6111 : 2387716 : if (lookup.name == TYPE_IDENTIFIER (npscope)
6112 : 2387716 : || constructor_name_p (lookup.name, npscope))
6113 : : {
6114 : 216838 : if (!TYPE_P (current))
6115 : : {
6116 : 0 : error ("non-member using-declaration names constructor of %qT",
6117 : : npscope);
6118 : 0 : return NULL_TREE;
6119 : : }
6120 : 216838 : maybe_warn_cpp0x (CPP0X_INHERITING_CTORS);
6121 : 216838 : lookup.name = ctor_identifier;
6122 : 216838 : CLASSTYPE_NON_AGGREGATE (current) = true;
6123 : : }
6124 : :
6125 : 2387716 : if (!TYPE_P (current) && cxx_dialect < cxx20)
6126 : : {
6127 : 4 : error ("using-declaration for member at non-class scope");
6128 : 4 : return NULL_TREE;
6129 : : }
6130 : :
6131 : 2387712 : bool depscope = dependent_scope_p (scope);
6132 : :
6133 : 2387712 : if (depscope)
6134 : : /* Leave binfo null. */;
6135 : 1617152 : else if (TYPE_P (current))
6136 : : {
6137 : 1617139 : binfo = lookup_base (current, scope, ba_any, &b_kind, tf_none);
6138 : 1617139 : gcc_checking_assert (b_kind >= bk_not_base);
6139 : :
6140 : 1617139 : if (b_kind == bk_not_base && any_dependent_bases_p ())
6141 : : /* Treat as-if dependent. */
6142 : : depscope = true;
6143 : 1617118 : else if (lookup.name == ctor_identifier
6144 : 1617118 : && (b_kind < bk_proper_base || !binfo_direct_p (binfo)))
6145 : : {
6146 : 15 : if (any_dependent_bases_p ())
6147 : : depscope = true;
6148 : : else
6149 : : {
6150 : 15 : error ("%qT is not a direct base of %qT", scope, current);
6151 : 15 : return NULL_TREE;
6152 : : }
6153 : : }
6154 : :
6155 : 1617124 : if (b_kind < bk_proper_base)
6156 : 50 : binfo = TYPE_BINFO (scope);
6157 : : }
6158 : : else
6159 : 13 : binfo = TYPE_BINFO (scope);
6160 : :
6161 : 3234247 : dependent_p = (depscope
6162 : 1617137 : || (IDENTIFIER_CONV_OP_P (lookup.name)
6163 : 135236 : && dependent_type_p (TREE_TYPE (lookup.name))));
6164 : :
6165 : 1617110 : if (!dependent_p)
6166 : 1617110 : lookup.value = lookup_member (binfo, lookup.name, /*protect=*/2,
6167 : : /*want_type=*/false, tf_none);
6168 : :
6169 : : /* If the lookup in the base contains a dependent using, this
6170 : : using is also dependent. */
6171 : 1617110 : if (!dependent_p && lookup.value && dependent_type_p (scope))
6172 : : {
6173 : 27 : tree val = lookup.value;
6174 : 27 : if (tree fns = maybe_get_fns (val))
6175 : 9 : val = fns;
6176 : 48 : for (tree f: lkp_range (val))
6177 : 27 : if (TREE_CODE (f) == USING_DECL && DECL_DEPENDENT_P (f))
6178 : : {
6179 : : dependent_p = true;
6180 : : break;
6181 : : }
6182 : : }
6183 : :
6184 : 2387697 : if (!depscope && b_kind < bk_proper_base)
6185 : : {
6186 : 42 : if (cxx_dialect >= cxx20 && lookup.value
6187 : 23 : && TREE_CODE (lookup.value) == CONST_DECL)
6188 : : {
6189 : : /* Using an unrelated enum; check access here rather
6190 : : than separately for class and non-class using. */
6191 : 15 : perform_or_defer_access_check
6192 : 15 : (binfo, lookup.value, lookup.value, tf_warning_or_error);
6193 : : /* And then if this is a copy from handle_using_decl, look
6194 : : through to the original enumerator. */
6195 : 15 : if (CONST_DECL_USING_P (lookup.value))
6196 : 6 : lookup.value = DECL_ABSTRACT_ORIGIN (lookup.value);
6197 : : }
6198 : 27 : else if (!TYPE_P (current))
6199 : : {
6200 : 1 : error ("using-declaration for member at non-class scope");
6201 : 1 : return NULL_TREE;
6202 : : }
6203 : : else
6204 : : {
6205 : 26 : auto_diagnostic_group g;
6206 : 26 : error_not_base_type (scope, current);
6207 : 17 : if (lookup.value && DECL_IMPLICIT_TYPEDEF_P (lookup.value)
6208 : 29 : && TREE_CODE (TREE_TYPE (lookup.value)) == ENUMERAL_TYPE)
6209 : 3 : inform (input_location,
6210 : : "did you mean %<using enum %T::%D%>?",
6211 : : scope, lookup.name);
6212 : 26 : return NULL_TREE;
6213 : 26 : }
6214 : : }
6215 : : }
6216 : :
6217 : : /* Did we find anything sane? */
6218 : 2815851 : if (dependent_p)
6219 : : ;
6220 : 8251333 : else if (!lookup.value)
6221 : : {
6222 : 59 : error ("%qD has not been declared in %qD", lookup.name, scope);
6223 : 59 : return NULL_TREE;
6224 : : }
6225 : 8251274 : else if (TREE_CODE (lookup.value) == TREE_LIST
6226 : : /* We can (independently) have ambiguous implicit typedefs. */
6227 : 8251274 : || (lookup.type && TREE_CODE (lookup.type) == TREE_LIST))
6228 : : {
6229 : 3 : auto_diagnostic_group d;
6230 : 3 : error ("reference to %qD is ambiguous", lookup.name);
6231 : 3 : print_candidates (TREE_CODE (lookup.value) == TREE_LIST
6232 : : ? lookup.value : lookup.type);
6233 : 3 : return NULL_TREE;
6234 : 3 : }
6235 : 8251271 : else if (TREE_CODE (lookup.value) == NAMESPACE_DECL)
6236 : : {
6237 : 6 : error ("using-declaration may not name namespace %qD", lookup.value);
6238 : 6 : return NULL_TREE;
6239 : : }
6240 : :
6241 : 9021858 : if (TYPE_P (current))
6242 : : {
6243 : : /* In class scope. */
6244 : :
6245 : : /* Cannot introduce a constructor name. */
6246 : 2699110 : if (constructor_name_p (lookup.name, current))
6247 : : {
6248 : 3 : error ("%<%T::%D%> names constructor in %qT",
6249 : : scope, lookup.name, current);
6250 : 3 : return NULL_TREE;
6251 : : }
6252 : :
6253 : 2699107 : if (lookup.value && BASELINK_P (lookup.value))
6254 : : /* The binfo from which the functions came does not matter. */
6255 : 1453365 : lookup.value = BASELINK_FUNCTIONS (lookup.value);
6256 : : }
6257 : :
6258 : 9021855 : tree using_decl = build_lang_decl (USING_DECL, lookup.name, NULL_TREE);
6259 : 9021855 : USING_DECL_SCOPE (using_decl) = scope;
6260 : 9021855 : USING_DECL_DECLS (using_decl) = lookup.value;
6261 : 9021855 : DECL_DEPENDENT_P (using_decl) = dependent_p;
6262 : 9021855 : DECL_CONTEXT (using_decl) = current;
6263 : 9021855 : if (TYPE_P (current) && b_kind == bk_not_base)
6264 : 1082066 : USING_DECL_UNRELATED_P (using_decl) = true;
6265 : :
6266 : : return using_decl;
6267 : : }
6268 : :
6269 : : /* Process "using SCOPE::NAME" in a class scope. Return the
6270 : : USING_DECL created. */
6271 : :
6272 : : tree
6273 : 2699199 : do_class_using_decl (tree scope, tree name)
6274 : : {
6275 : 2699199 : if (name == error_mark_node
6276 : 2699196 : || scope == error_mark_node)
6277 : : return NULL_TREE;
6278 : :
6279 : 2699193 : name_lookup lookup (name);
6280 : 2699193 : return lookup_using_decl (scope, lookup);
6281 : 2699193 : }
6282 : :
6283 : :
6284 : : /* Return the binding for NAME in NS in the current TU. If NS is
6285 : : NULL, look in global_namespace. We will not find declarations
6286 : : from imports. Users of this who, having found nothing, push a new
6287 : : decl must be prepared for that pushing to match an existing decl. */
6288 : :
6289 : : tree
6290 : 9721499 : get_namespace_binding (tree ns, tree name)
6291 : : {
6292 : 9721499 : auto_cond_timevar tv (TV_NAME_LOOKUP);
6293 : 9721499 : if (!ns)
6294 : 9721499 : ns = global_namespace;
6295 : 9721499 : gcc_checking_assert (!DECL_NAMESPACE_ALIAS (ns));
6296 : 9721499 : tree ret = NULL_TREE;
6297 : :
6298 : 9721499 : if (tree *b = find_namespace_slot (ns, name))
6299 : : {
6300 : 4912916 : ret = *b;
6301 : :
6302 : 4912916 : if (TREE_CODE (ret) == BINDING_VECTOR)
6303 : 0 : ret = BINDING_VECTOR_CLUSTER (ret, 0).slots[0];
6304 : 0 : if (ret)
6305 : 4912916 : ret = strip_using_decl (MAYBE_STAT_DECL (ret));
6306 : : }
6307 : :
6308 : 19442998 : return ret;
6309 : 9721499 : }
6310 : :
6311 : : /* Push internal DECL into the global namespace. Does not do the
6312 : : full overload fn handling and does not add it to the list of things
6313 : : in the namespace. */
6314 : :
6315 : : void
6316 : 3525049 : set_global_binding (tree decl)
6317 : : {
6318 : 3525049 : auto_cond_timevar tv (TV_NAME_LOOKUP);
6319 : :
6320 : 3525049 : tree *slot = find_namespace_slot (global_namespace, DECL_NAME (decl), true);
6321 : :
6322 : 3525049 : if (*slot)
6323 : : /* The user's placed something in the implementor's namespace. */
6324 : 0 : diagnose_name_conflict (decl, MAYBE_STAT_DECL (*slot));
6325 : :
6326 : : /* Force the binding, so compiler internals continue to work. */
6327 : 3525049 : *slot = decl;
6328 : 3525049 : }
6329 : :
6330 : : /* Set the context of a declaration to scope. Complain if we are not
6331 : : outside scope. */
6332 : :
6333 : : void
6334 : 93481 : set_decl_namespace (tree decl, tree scope, bool friendp)
6335 : : {
6336 : : /* Get rid of namespace aliases. */
6337 : 93481 : scope = ORIGINAL_NAMESPACE (scope);
6338 : :
6339 : : /* It is ok for friends to be qualified in parallel space. */
6340 : 93481 : if (!friendp && !is_nested_namespace (current_namespace, scope))
6341 : 6 : error ("declaration of %qD not in a namespace surrounding %qD",
6342 : : decl, scope);
6343 : 93481 : DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
6344 : :
6345 : : /* See whether this has been declared in the namespace or inline
6346 : : children. */
6347 : 93481 : tree old = NULL_TREE;
6348 : 93481 : {
6349 : 93481 : name_lookup lookup (DECL_NAME (decl),
6350 : 93481 : LOOK_want::NORMAL | LOOK_want::HIDDEN_FRIEND);
6351 : 93481 : if (!lookup.search_qualified (scope, /*usings=*/false))
6352 : : /* No old declaration at all. */
6353 : 30 : goto not_found;
6354 : 93451 : old = lookup.value;
6355 : 93481 : }
6356 : :
6357 : : /* If it's a TREE_LIST, the result of the lookup was ambiguous. */
6358 : 93451 : if (TREE_CODE (old) == TREE_LIST)
6359 : : {
6360 : 9 : ambiguous:
6361 : 15 : auto_diagnostic_group d;
6362 : 15 : DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
6363 : 15 : error ("reference to %qD is ambiguous", decl);
6364 : 15 : print_candidates (old);
6365 : 15 : return;
6366 : : }
6367 : :
6368 : 93442 : if (!DECL_DECLARES_FUNCTION_P (decl))
6369 : : {
6370 : : /* Don't compare non-function decls with decls_match here, since
6371 : : it can't check for the correct constness at this
6372 : : point. pushdecl will find those errors later. */
6373 : :
6374 : : /* We might have found it in an inline namespace child of SCOPE. */
6375 : 2701 : if (TREE_CODE (decl) == TREE_CODE (old))
6376 : 35 : DECL_CONTEXT (decl) = DECL_CONTEXT (old);
6377 : :
6378 : 2666 : found:
6379 : : /* Writing "N::i" to declare something directly in "N" is invalid. */
6380 : 44826 : if (CP_DECL_CONTEXT (decl) == current_namespace
6381 : 44826 : && at_namespace_scope_p ())
6382 : 3 : error_at (DECL_SOURCE_LOCATION (decl),
6383 : : "explicit qualification in declaration of %qD", decl);
6384 : 44826 : return;
6385 : : }
6386 : :
6387 : : /* Since decl is a function, old should contain a function decl. */
6388 : 90741 : if (!OVL_P (old))
6389 : : {
6390 : 9 : not_found:
6391 : : /* It didn't work, go back to the explicit scope. */
6392 : 45 : DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
6393 : 45 : error ("%qD should have been declared inside %qD", decl, scope);
6394 : :
6395 : 45 : return;
6396 : : }
6397 : :
6398 : : /* We handle these in check_explicit_instantiation_namespace. */
6399 : 90732 : if (processing_explicit_instantiation)
6400 : : return;
6401 : 90650 : if (processing_template_decl || processing_specialization)
6402 : : /* We have not yet called push_template_decl to turn a
6403 : : FUNCTION_DECL into a TEMPLATE_DECL, so the declarations won't
6404 : : match. But, we'll check later, when we construct the
6405 : : template. */
6406 : : return;
6407 : :
6408 : : /* Instantiations or specializations of templates may be declared as
6409 : : friends in any namespace. */
6410 : 42158 : if (friendp && DECL_USE_TEMPLATE (decl))
6411 : : return;
6412 : :
6413 : 42149 : tree found = NULL_TREE;
6414 : 42149 : bool hidden_p = false;
6415 : 42149 : bool saw_template = false;
6416 : :
6417 : 103776 : for (lkp_iterator iter (old); iter; ++iter)
6418 : : {
6419 : 61633 : if (iter.using_p ())
6420 : 0 : continue;
6421 : :
6422 : 61633 : tree ofn = *iter;
6423 : :
6424 : : /* Adjust DECL_CONTEXT first so decls_match will return true
6425 : : if DECL will match a declaration in an inline namespace. */
6426 : 61633 : DECL_CONTEXT (decl) = DECL_CONTEXT (ofn);
6427 : 61633 : if (decls_match (decl, ofn))
6428 : : {
6429 : 42137 : if (found)
6430 : : {
6431 : : /* We found more than one matching declaration. This
6432 : : can happen if we have two inline namespace children,
6433 : : each containing a suitable declaration. */
6434 : 6 : DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
6435 : 6 : goto ambiguous;
6436 : : }
6437 : 42131 : found = ofn;
6438 : 42131 : hidden_p = iter.hidden_p ();
6439 : : }
6440 : 19496 : else if (TREE_CODE (decl) == FUNCTION_DECL
6441 : 19496 : && TREE_CODE (ofn) == TEMPLATE_DECL)
6442 : 61627 : saw_template = true;
6443 : : }
6444 : :
6445 : 42143 : if (!found && friendp && saw_template)
6446 : : {
6447 : : /* "[if no non-template match is found,] each remaining function template
6448 : : is replaced with the specialization chosen by deduction from the
6449 : : friend declaration or discarded if deduction fails."
6450 : :
6451 : : So tell check_explicit_specialization to look for a match. */
6452 : 12 : SET_DECL_IMPLICIT_INSTANTIATION (decl);
6453 : 12 : DECL_TEMPLATE_INFO (decl) = build_template_info (old, NULL_TREE);
6454 : 12 : return;
6455 : : }
6456 : :
6457 : 42131 : if (found)
6458 : : {
6459 : 42125 : if (hidden_p)
6460 : : {
6461 : 3 : auto_diagnostic_group d;
6462 : 3 : pedwarn (DECL_SOURCE_LOCATION (decl), 0,
6463 : : "%qD has not been declared within %qD", decl, scope);
6464 : 3 : inform (DECL_SOURCE_LOCATION (found),
6465 : : "only here as a %<friend%>");
6466 : 3 : }
6467 : 42125 : DECL_CONTEXT (decl) = DECL_CONTEXT (found);
6468 : 42125 : goto found;
6469 : : }
6470 : :
6471 : 6 : goto not_found;
6472 : : }
6473 : :
6474 : : /* Return the namespace where the current declaration is declared. */
6475 : :
6476 : : tree
6477 : 1206322217 : current_decl_namespace (void)
6478 : : {
6479 : 1206322217 : tree result;
6480 : : /* If we have been pushed into a different namespace, use it. */
6481 : 1206322217 : if (!vec_safe_is_empty (decl_namespace_list))
6482 : 57719074 : return decl_namespace_list->last ();
6483 : :
6484 : 1148603143 : if (current_class_type)
6485 : 475157535 : result = decl_namespace_context (current_class_type);
6486 : 673445608 : else if (current_function_decl)
6487 : 245571832 : result = decl_namespace_context (current_function_decl);
6488 : : else
6489 : 427873776 : result = current_namespace;
6490 : : return result;
6491 : : }
6492 : :
6493 : : /* Process any ATTRIBUTES on a namespace definition. Returns true if
6494 : : attribute visibility is seen. */
6495 : :
6496 : : bool
6497 : 5123066 : handle_namespace_attrs (tree ns, tree attributes)
6498 : : {
6499 : 5123066 : tree d;
6500 : 5123066 : bool saw_vis = false;
6501 : :
6502 : 5123066 : if (attributes == error_mark_node)
6503 : : return false;
6504 : :
6505 : 7704324 : for (d = attributes; d; d = TREE_CHAIN (d))
6506 : : {
6507 : 2581258 : tree name = get_attribute_name (d);
6508 : 2581258 : tree args = TREE_VALUE (d);
6509 : :
6510 : 2581258 : if (is_attribute_p ("visibility", name))
6511 : : {
6512 : : /* attribute visibility is a property of the syntactic block
6513 : : rather than the namespace as a whole, so we don't touch the
6514 : : NAMESPACE_DECL at all. */
6515 : 2534114 : tree x = args ? TREE_VALUE (args) : NULL_TREE;
6516 : 2534114 : if (x == NULL_TREE || TREE_CODE (x) != STRING_CST || TREE_CHAIN (args))
6517 : : {
6518 : 0 : warning (OPT_Wattributes,
6519 : : "%qD attribute requires a single NTBS argument",
6520 : : name);
6521 : 0 : continue;
6522 : : }
6523 : :
6524 : 2534114 : if (!TREE_PUBLIC (ns))
6525 : 0 : warning (OPT_Wattributes,
6526 : : "%qD attribute is meaningless since members of the "
6527 : : "anonymous namespace get local symbols", name);
6528 : :
6529 : 2534114 : push_visibility (TREE_STRING_POINTER (x), 1);
6530 : 2534114 : saw_vis = true;
6531 : : }
6532 : 47144 : else if (is_attribute_p ("abi_tag", name))
6533 : : {
6534 : 44747 : if (!DECL_NAME (ns))
6535 : : {
6536 : 3 : warning (OPT_Wattributes, "ignoring %qD attribute on anonymous "
6537 : : "namespace", name);
6538 : 3 : continue;
6539 : : }
6540 : 44744 : if (!DECL_NAMESPACE_INLINE_P (ns))
6541 : : {
6542 : 0 : warning (OPT_Wattributes, "ignoring %qD attribute on non-inline "
6543 : : "namespace", name);
6544 : 0 : continue;
6545 : : }
6546 : 44744 : if (!args)
6547 : : {
6548 : 15 : tree dn = DECL_NAME (ns);
6549 : 15 : args = build_string (IDENTIFIER_LENGTH (dn) + 1,
6550 : 15 : IDENTIFIER_POINTER (dn));
6551 : 15 : TREE_TYPE (args) = char_array_type_node;
6552 : 15 : args = fix_string_type (args);
6553 : 15 : args = build_tree_list (NULL_TREE, args);
6554 : : }
6555 : 44744 : if (check_abi_tag_args (args, name))
6556 : 44744 : DECL_ATTRIBUTES (ns) = tree_cons (name, args,
6557 : 44744 : DECL_ATTRIBUTES (ns));
6558 : : }
6559 : 2397 : else if (is_attribute_p ("deprecated", name))
6560 : : {
6561 : 2340 : if (!DECL_NAME (ns))
6562 : : {
6563 : 7 : warning (OPT_Wattributes, "ignoring %qD attribute on anonymous "
6564 : : "namespace", name);
6565 : 7 : continue;
6566 : : }
6567 : 4602 : if (args && TREE_CODE (TREE_VALUE (args)) != STRING_CST)
6568 : : {
6569 : 0 : error ("deprecated message is not a string");
6570 : 0 : continue;
6571 : : }
6572 : 2333 : TREE_DEPRECATED (ns) = 1;
6573 : 2333 : if (args)
6574 : 2269 : DECL_ATTRIBUTES (ns) = tree_cons (name, args,
6575 : 2269 : DECL_ATTRIBUTES (ns));
6576 : : }
6577 : 57 : else if (!attribute_ignored_p (d))
6578 : : {
6579 : 42 : warning (OPT_Wattributes, "%qD attribute directive ignored",
6580 : : name);
6581 : 42 : continue;
6582 : : }
6583 : : }
6584 : :
6585 : : return saw_vis;
6586 : : }
6587 : :
6588 : : /* Temporarily set the namespace for the current declaration. */
6589 : :
6590 : : void
6591 : 68608531 : push_decl_namespace (tree decl)
6592 : : {
6593 : 68608531 : if (TREE_CODE (decl) != NAMESPACE_DECL)
6594 : 0 : decl = decl_namespace_context (decl);
6595 : 68608531 : vec_safe_push (decl_namespace_list, ORIGINAL_NAMESPACE (decl));
6596 : 68608531 : }
6597 : :
6598 : : /* [namespace.memdef]/2 */
6599 : :
6600 : : void
6601 : 68608528 : pop_decl_namespace (void)
6602 : : {
6603 : 68608528 : decl_namespace_list->pop ();
6604 : 68608528 : }
6605 : :
6606 : : /* Process a namespace-alias declaration. */
6607 : :
6608 : : void
6609 : 107047 : do_namespace_alias (location_t loc, tree alias, tree name_space)
6610 : : {
6611 : 107047 : if (name_space == error_mark_node)
6612 : : return;
6613 : :
6614 : 107038 : gcc_assert (TREE_CODE (name_space) == NAMESPACE_DECL);
6615 : :
6616 : 107038 : name_space = ORIGINAL_NAMESPACE (name_space);
6617 : :
6618 : : /* Build the alias. */
6619 : 107038 : alias = build_lang_decl_loc (loc, NAMESPACE_DECL, alias, void_type_node);
6620 : 107038 : DECL_NAMESPACE_ALIAS (alias) = name_space;
6621 : 107038 : DECL_EXTERNAL (alias) = 1;
6622 : 107038 : DECL_CONTEXT (alias) = FROB_CONTEXT (current_scope ());
6623 : 107038 : TREE_PUBLIC (alias) = TREE_PUBLIC (CP_DECL_CONTEXT (alias));
6624 : :
6625 : 107038 : alias = pushdecl (alias);
6626 : :
6627 : 214076 : if (!DECL_P (alias) || !DECL_NAMESPACE_ALIAS (alias))
6628 : : return;
6629 : :
6630 : 107035 : set_originating_module (alias);
6631 : 107035 : check_module_decl_linkage (alias);
6632 : :
6633 : : /* Emit debug info for namespace alias. */
6634 : 107035 : if (!building_stmt_list_p ())
6635 : 4962 : (*debug_hooks->early_global_decl) (alias);
6636 : : }
6637 : :
6638 : : /* Like pushdecl, only it places DECL in the current namespace,
6639 : : if appropriate. */
6640 : :
6641 : : tree
6642 : 43917478 : pushdecl_namespace_level (tree decl, bool hiding)
6643 : : {
6644 : 43917478 : auto_cond_timevar tv (TV_NAME_LOOKUP);
6645 : 43917478 : return do_pushdecl_with_scope (decl, NAMESPACE_LEVEL (current_namespace),
6646 : 43917478 : hiding);
6647 : 43917478 : }
6648 : :
6649 : : /* Wrapper around push_local_binding to push the bindings for
6650 : : a non-member USING_DECL with NAME and VALUE. LOOKUP, if non-null,
6651 : : is the result of name lookup during template parsing. */
6652 : :
6653 : : static void
6654 : 698417 : push_using_decl_bindings (name_lookup *lookup, tree name, tree value)
6655 : : {
6656 : 698417 : tree type = NULL_TREE;
6657 : :
6658 : 698417 : cxx_binding *binding = find_local_binding (current_binding_level, name);
6659 : 698417 : if (binding)
6660 : : {
6661 : 84 : value = binding->value;
6662 : 84 : type = binding->type;
6663 : : }
6664 : :
6665 : 698417 : if (lookup)
6666 : 563327 : do_nonmember_using_decl (*lookup, true, true, &value, &type);
6667 : :
6668 : 698417 : if (!value)
6669 : : ;
6670 : 698417 : else if (binding && value == binding->value)
6671 : : /* Redeclaration of this USING_DECL. */;
6672 : 48 : else if (binding && binding->value && TREE_CODE (value) == OVERLOAD)
6673 : : {
6674 : : /* We already have this binding, so replace it. */
6675 : 36 : update_local_overload (IDENTIFIER_BINDING (name), value);
6676 : 36 : IDENTIFIER_BINDING (name)->value = value;
6677 : : }
6678 : : else
6679 : : /* Install the new binding. */
6680 : 698345 : push_local_binding (name, value, /*using=*/true);
6681 : :
6682 : 698417 : if (!type)
6683 : : ;
6684 : 21 : else if (binding && type == binding->type)
6685 : : ;
6686 : : else
6687 : : {
6688 : 15 : push_local_binding (name, type, /*using=*/true);
6689 : 15 : set_identifier_type_value (name, type);
6690 : : }
6691 : 698417 : }
6692 : :
6693 : : /* Overload for push_using_decl_bindings that doesn't take a name_lookup. */
6694 : :
6695 : : void
6696 : 135090 : push_using_decl_bindings (tree name, tree value)
6697 : : {
6698 : 135090 : push_using_decl_bindings (nullptr, name, value);
6699 : 135090 : }
6700 : :
6701 : : /* Process a using declaration in non-class scope. */
6702 : :
6703 : : void
6704 : 6322794 : finish_nonmember_using_decl (tree scope, tree name)
6705 : : {
6706 : 6322794 : gcc_checking_assert (current_binding_level->kind != sk_class);
6707 : :
6708 : 6322794 : if (scope == error_mark_node || name == error_mark_node)
6709 : 46 : return;
6710 : :
6711 : 6322794 : name_lookup lookup (name);
6712 : :
6713 : 6322794 : tree using_decl = lookup_using_decl (scope, lookup);
6714 : 6322794 : if (!using_decl)
6715 : 46 : return;
6716 : :
6717 : : /* Emit debug info. */
6718 : 6322748 : if (!processing_template_decl)
6719 : 5771010 : cp_emit_debug_info_for_using (lookup.value,
6720 : 5771010 : current_binding_level->this_entity);
6721 : :
6722 : 6322748 : if (current_binding_level->kind == sk_namespace)
6723 : : {
6724 : 5759421 : tree *slot = find_namespace_slot (current_namespace, name, true);
6725 : 5759421 : tree *mslot = get_fixed_binding_slot (slot, name,
6726 : : BINDING_SLOT_CURRENT, true);
6727 : 5759421 : bool failed = false;
6728 : :
6729 : 5759421 : if (mslot != slot)
6730 : : {
6731 : : /* A module vector. I presume the binding list is going to
6732 : : be sparser than the import bitmap. Hence iterate over
6733 : : the former checking for bits set in the bitmap. */
6734 : 21 : bitmap imports = get_import_bitmap ();
6735 : 21 : binding_cluster *cluster = BINDING_VECTOR_CLUSTER_BASE (*slot);
6736 : :
6737 : : /* Scan the imported bindings. */
6738 : 21 : unsigned ix = BINDING_VECTOR_NUM_CLUSTERS (*slot);
6739 : 21 : if (BINDING_VECTOR_SLOTS_PER_CLUSTER == BINDING_SLOTS_FIXED)
6740 : : {
6741 : 21 : ix--;
6742 : 21 : cluster++;
6743 : : }
6744 : :
6745 : : /* Do this in forward order, so we load modules in an order
6746 : : the user expects. */
6747 : 42 : for (; ix--; cluster++)
6748 : 63 : for (unsigned jx = 0; jx != BINDING_VECTOR_SLOTS_PER_CLUSTER; jx++)
6749 : : {
6750 : : /* Are we importing this module? */
6751 : 42 : if (unsigned base = cluster->indices[jx].base)
6752 : 21 : if (unsigned span = cluster->indices[jx].span)
6753 : 21 : do
6754 : 21 : if (bitmap_bit_p (imports, base))
6755 : 21 : goto found;
6756 : 0 : while (++base, --span);
6757 : 21 : continue;
6758 : :
6759 : 21 : found:;
6760 : : /* Is it loaded? */
6761 : 21 : if (cluster->slots[jx].is_lazy ())
6762 : : {
6763 : 0 : gcc_assert (cluster->indices[jx].span == 1);
6764 : 0 : lazy_load_binding (cluster->indices[jx].base,
6765 : : scope, name, &cluster->slots[jx]);
6766 : : }
6767 : :
6768 : 21 : tree value = cluster->slots[jx];
6769 : 21 : if (!value)
6770 : : /* Load errors could mean there's nothing here. */
6771 : 0 : continue;
6772 : :
6773 : : /* Extract what we can see from here. If there's no
6774 : : stat_hack, then everything was exported. */
6775 : 21 : tree type = NULL_TREE;
6776 : :
6777 : : /* If no stat hack, everything is visible. */
6778 : 21 : if (STAT_HACK_P (value))
6779 : : {
6780 : 9 : if (STAT_TYPE_VISIBLE_P (value))
6781 : 3 : type = STAT_TYPE (value);
6782 : 9 : value = STAT_VISIBLE (value);
6783 : : }
6784 : :
6785 : 21 : if (do_nonmember_using_decl (lookup, false, false,
6786 : : &value, &type))
6787 : : {
6788 : 0 : failed = true;
6789 : 0 : break;
6790 : : }
6791 : 21 : }
6792 : : }
6793 : :
6794 : 21 : if (!failed)
6795 : : {
6796 : : /* Now do the current slot. */
6797 : 5759421 : tree value = MAYBE_STAT_DECL (*mslot);
6798 : 5759421 : tree type = MAYBE_STAT_TYPE (*mslot);
6799 : :
6800 : 5759421 : do_nonmember_using_decl (lookup, false, true, &value, &type);
6801 : :
6802 : : // FIXME: Partition mergeableness?
6803 : 5759421 : if (STAT_HACK_P (*mslot))
6804 : : {
6805 : 0 : STAT_DECL (*mslot) = value;
6806 : 0 : STAT_TYPE (*mslot) = type;
6807 : : }
6808 : 5759421 : else if (type)
6809 : 22 : *mslot = stat_hack (value, type);
6810 : : else
6811 : 5759399 : *mslot = value;
6812 : : }
6813 : : }
6814 : : else
6815 : : {
6816 : 563327 : add_decl_expr (using_decl);
6817 : 563327 : if (DECL_DEPENDENT_P (using_decl))
6818 : 7 : lookup.value = using_decl;
6819 : 563327 : push_using_decl_bindings (&lookup, name, NULL_TREE);
6820 : : }
6821 : 6322794 : }
6822 : :
6823 : : /* Return the declarations that are members of the namespace NS. */
6824 : :
6825 : : tree
6826 : 9 : cp_namespace_decls (tree ns)
6827 : : {
6828 : 9 : return NAMESPACE_LEVEL (ns)->names;
6829 : : }
6830 : :
6831 : : /* Given a lookup that returned VAL, use FLAGS to decide if we want to
6832 : : ignore it or not. Subroutine of lookup_name_1 and lookup_type_scope. */
6833 : :
6834 : : static bool
6835 : 2903671542 : qualify_lookup (tree val, LOOK_want want)
6836 : : {
6837 : 2903671542 : if (val == NULL_TREE)
6838 : : return false;
6839 : :
6840 : 2903671542 : if (bool (want & LOOK_want::TYPE))
6841 : : {
6842 : 39157386 : tree target_val = strip_using_decl (val);
6843 : :
6844 : 39157386 : if (TREE_CODE (STRIP_TEMPLATE (target_val)) == TYPE_DECL)
6845 : : return true;
6846 : : }
6847 : :
6848 : 2864790288 : if (bool (want & LOOK_want::TYPE_NAMESPACE))
6849 : 476072 : return TREE_CODE (val) == NAMESPACE_DECL;
6850 : :
6851 : : return true;
6852 : : }
6853 : :
6854 : : /* Is there a "using namespace std;" directive within USINGS? */
6855 : :
6856 : : static bool
6857 : 5080 : using_directives_contain_std_p (vec<tree, va_gc> *usings)
6858 : : {
6859 : 5080 : if (!usings)
6860 : : return false;
6861 : :
6862 : 46 : for (unsigned ix = usings->length (); ix--;)
6863 : 31 : if ((*usings)[ix] == std_node)
6864 : : return true;
6865 : :
6866 : : return false;
6867 : : }
6868 : :
6869 : : /* Is there a "using namespace std;" directive within the current
6870 : : namespace (or its ancestors)?
6871 : : Compare with name_lookup::search_unqualified. */
6872 : :
6873 : : static bool
6874 : 1642 : has_using_namespace_std_directive_p ()
6875 : : {
6876 : 1642 : for (cp_binding_level *level = current_binding_level;
6877 : 6706 : level;
6878 : 5064 : level = level->level_chain)
6879 : 5080 : if (using_directives_contain_std_p (level->using_directives))
6880 : : return true;
6881 : :
6882 : : return false;
6883 : : }
6884 : :
6885 : : /* Subclass of deferred_diagnostic, for issuing a note when
6886 : : --param cxx-max-namespaces-for-diagnostic-help is reached.
6887 : :
6888 : : The note should be issued after the error, but before any other
6889 : : deferred diagnostics. This is handled by decorating a wrapped
6890 : : deferred_diagnostic, and emitting a note before that wrapped note is
6891 : : deleted. */
6892 : :
6893 : : class namespace_limit_reached : public deferred_diagnostic
6894 : : {
6895 : : public:
6896 : 3 : namespace_limit_reached (location_t loc, unsigned limit, tree name,
6897 : : std::unique_ptr<deferred_diagnostic> wrapped)
6898 : 3 : : deferred_diagnostic (loc),
6899 : 3 : m_limit (limit), m_name (name),
6900 : 3 : m_wrapped (std::move (wrapped))
6901 : : {
6902 : : }
6903 : :
6904 : 6 : ~namespace_limit_reached ()
6905 : 3 : {
6906 : : /* Unconditionally warn that the search was truncated. */
6907 : 3 : inform (get_location (),
6908 : : "maximum limit of %d namespaces searched for %qE",
6909 : : m_limit, m_name);
6910 : : /* m_wrapped will be implicitly deleted after this, emitting any followup
6911 : : diagnostic after the above note. */
6912 : 6 : }
6913 : :
6914 : : private:
6915 : : unsigned m_limit;
6916 : : tree m_name;
6917 : : std::unique_ptr<deferred_diagnostic> m_wrapped;
6918 : : };
6919 : :
6920 : : /* Subclass of deferred_diagnostic, for use when issuing a single suggestion.
6921 : : Emit a note showing the location of the declaration of the suggestion. */
6922 : :
6923 : : class show_candidate_location : public deferred_diagnostic
6924 : : {
6925 : : public:
6926 : 108 : show_candidate_location (location_t loc, tree candidate)
6927 : 108 : : deferred_diagnostic (loc),
6928 : 108 : m_candidate (candidate)
6929 : : {
6930 : : }
6931 : :
6932 : 216 : ~show_candidate_location ()
6933 : 108 : {
6934 : 108 : inform (location_of (m_candidate), "%qE declared here", m_candidate);
6935 : 216 : }
6936 : :
6937 : : private:
6938 : : tree m_candidate;
6939 : : };
6940 : :
6941 : : /* Subclass of deferred_diagnostic, for use when there are multiple candidates
6942 : : to be suggested by suggest_alternatives_for.
6943 : :
6944 : : Emit a series of notes showing the various suggestions. */
6945 : :
6946 : : class suggest_alternatives : public deferred_diagnostic
6947 : : {
6948 : : public:
6949 : 17 : suggest_alternatives (location_t loc, vec<tree> candidates)
6950 : 17 : : deferred_diagnostic (loc),
6951 : 17 : m_candidates (candidates)
6952 : : {
6953 : : }
6954 : :
6955 : 34 : ~suggest_alternatives ()
6956 : 17 : {
6957 : 17 : if (m_candidates.length ())
6958 : : {
6959 : 17 : inform_n (get_location (), m_candidates.length (),
6960 : : "suggested alternative:",
6961 : : "suggested alternatives:");
6962 : 108 : for (unsigned ix = 0; ix != m_candidates.length (); ix++)
6963 : : {
6964 : 37 : tree val = m_candidates[ix];
6965 : :
6966 : 37 : inform (location_of (val), " %qE", val);
6967 : : }
6968 : : }
6969 : 17 : m_candidates.release ();
6970 : 34 : }
6971 : :
6972 : : private:
6973 : : vec<tree> m_candidates;
6974 : : };
6975 : :
6976 : : /* A class for encapsulating the result of a search across
6977 : : multiple namespaces (and scoped enums within them) for an
6978 : : unrecognized name seen at a given source location. */
6979 : :
6980 : : class namespace_hints
6981 : : {
6982 : : public:
6983 : : namespace_hints (location_t loc, tree name);
6984 : :
6985 : : name_hint convert_candidates_to_name_hint ();
6986 : : name_hint maybe_decorate_with_limit (name_hint);
6987 : :
6988 : : private:
6989 : : void maybe_add_candidate_for_scoped_enum (tree scoped_enum, tree name);
6990 : :
6991 : : location_t m_loc;
6992 : : tree m_name;
6993 : : vec<tree> m_candidates;
6994 : :
6995 : : /* Value of "--param cxx-max-namespaces-for-diagnostic-help". */
6996 : : unsigned m_limit;
6997 : :
6998 : : /* Was the limit reached? */
6999 : : bool m_limited;
7000 : : };
7001 : :
7002 : : /* Constructor for namespace_hints. Search namespaces and scoped enums,
7003 : : looking for an exact match for unrecognized NAME seen at LOC. */
7004 : :
7005 : 1800 : namespace_hints::namespace_hints (location_t loc, tree name)
7006 : 1800 : : m_loc(loc), m_name (name)
7007 : : {
7008 : 1800 : auto_vec<tree> worklist;
7009 : :
7010 : 1800 : m_candidates = vNULL;
7011 : 1800 : m_limited = false;
7012 : 1800 : m_limit = param_cxx_max_namespaces_for_diagnostic_help;
7013 : :
7014 : : /* Breadth-first search of namespaces. Up to limit namespaces
7015 : : searched (limit zero == unlimited). */
7016 : 1800 : worklist.safe_push (global_namespace);
7017 : 15602 : for (unsigned ix = 0; ix != worklist.length (); ix++)
7018 : : {
7019 : 6001 : tree ns = worklist[ix];
7020 : 6001 : name_lookup lookup (name);
7021 : :
7022 : 6001 : if (lookup.search_qualified (ns, false))
7023 : 130 : m_candidates.safe_push (lookup.value);
7024 : :
7025 : 6001 : if (!m_limited)
7026 : : {
7027 : : /* Look for child namespaces. We have to do this
7028 : : indirectly because they are chained in reverse order,
7029 : : which is confusing to the user. */
7030 : 5989 : auto_vec<tree> children;
7031 : :
7032 : 5989 : for (tree decl = NAMESPACE_LEVEL (ns)->names;
7033 : 4683881 : decl; decl = TREE_CHAIN (decl))
7034 : : {
7035 : 4677892 : if (TREE_CODE (decl) == NAMESPACE_DECL
7036 : 4321 : && !DECL_NAMESPACE_ALIAS (decl)
7037 : 4682207 : && !DECL_NAMESPACE_INLINE_P (decl))
7038 : 4210 : children.safe_push (decl);
7039 : :
7040 : : /* Look for exact matches for NAME within scoped enums.
7041 : : These aren't added to the worklist, and so don't count
7042 : : against the search limit. */
7043 : 4677892 : if (TREE_CODE (decl) == TYPE_DECL)
7044 : : {
7045 : 50883 : tree type = TREE_TYPE (decl);
7046 : 50883 : if (SCOPED_ENUM_P (type))
7047 : 1319 : maybe_add_candidate_for_scoped_enum (type, name);
7048 : : }
7049 : : }
7050 : :
7051 : 16179 : while (!m_limited && !children.is_empty ())
7052 : : {
7053 : 8408 : if (worklist.length () == m_limit)
7054 : 3 : m_limited = true;
7055 : : else
7056 : 4201 : worklist.safe_push (children.pop ());
7057 : : }
7058 : 5989 : }
7059 : 6001 : }
7060 : 1800 : }
7061 : :
7062 : : /* Drop ownership of m_candidates, using it to generate a name_hint at m_loc
7063 : : for m_name, an IDENTIFIER_NODE for which name lookup failed.
7064 : :
7065 : : If m_candidates is non-empty, use it to generate a suggestion and/or
7066 : : a deferred diagnostic that lists the possible candidate(s).
7067 : : */
7068 : :
7069 : : name_hint
7070 : 1800 : namespace_hints::convert_candidates_to_name_hint ()
7071 : : {
7072 : : /* How many candidates do we have? */
7073 : :
7074 : : /* If we have just one candidate, issue a name_hint with it as a suggestion
7075 : : (so that consumers are able to suggest it within the error message and emit
7076 : : it as a fix-it hint), and with a note showing the candidate's location. */
7077 : 1800 : if (m_candidates.length () == 1)
7078 : : {
7079 : 108 : tree candidate = m_candidates[0];
7080 : : /* Clean up CANDIDATES. */
7081 : 108 : m_candidates.release ();
7082 : 108 : return name_hint (expr_to_string (candidate),
7083 : 108 : new show_candidate_location (m_loc, candidate));
7084 : : }
7085 : 1692 : else if (m_candidates.length () > 1)
7086 : : /* If we have more than one candidate, issue a name_hint without a single
7087 : : "suggestion", but with a deferred diagnostic that lists the
7088 : : various candidates. This takes ownership of m_candidates. */
7089 : 17 : return name_hint (NULL, new suggest_alternatives (m_loc, m_candidates));
7090 : :
7091 : : /* Otherwise, m_candidates ought to be empty, so no cleanup is necessary. */
7092 : 1675 : gcc_assert (m_candidates.length () == 0);
7093 : 1675 : gcc_assert (m_candidates == vNULL);
7094 : :
7095 : 1675 : return name_hint ();
7096 : : }
7097 : :
7098 : : /* If --param cxx-max-namespaces-for-diagnostic-help was reached,
7099 : : then we want to emit a note about after the error, but before
7100 : : any other deferred diagnostics.
7101 : :
7102 : : Handle this by figuring out what hint is needed, then optionally
7103 : : decorating HINT with a namespace_limit_reached wrapper. */
7104 : :
7105 : : name_hint
7106 : 1800 : namespace_hints::maybe_decorate_with_limit (name_hint hint)
7107 : : {
7108 : 1800 : if (m_limited)
7109 : 3 : return name_hint (hint.suggestion (),
7110 : : new namespace_limit_reached (m_loc, m_limit,
7111 : : m_name,
7112 : 3 : hint.take_deferred ()));
7113 : : else
7114 : 1797 : return hint;
7115 : : }
7116 : :
7117 : : /* Look inside SCOPED_ENUM for exact matches for NAME.
7118 : : If one is found, add its CONST_DECL to m_candidates. */
7119 : :
7120 : : void
7121 : 1319 : namespace_hints::maybe_add_candidate_for_scoped_enum (tree scoped_enum,
7122 : : tree name)
7123 : : {
7124 : 1319 : gcc_assert (SCOPED_ENUM_P (scoped_enum));
7125 : :
7126 : 1857 : for (tree iter = TYPE_VALUES (scoped_enum); iter; iter = TREE_CHAIN (iter))
7127 : : {
7128 : 553 : tree id = TREE_PURPOSE (iter);
7129 : 553 : if (id == name)
7130 : : {
7131 : 15 : m_candidates.safe_push (TREE_VALUE (iter));
7132 : 15 : return;
7133 : : }
7134 : : }
7135 : : }
7136 : :
7137 : : /* Generate a name_hint at LOCATION for NAME, an IDENTIFIER_NODE for which
7138 : : name lookup failed.
7139 : :
7140 : : Search through all available namespaces and any scoped enums within them
7141 : : and generate a suggestion and/or a deferred diagnostic that lists possible
7142 : : candidate(s).
7143 : :
7144 : : If no exact matches are found, and SUGGEST_MISSPELLINGS is true, then also
7145 : : look for near-matches and suggest the best near-match, if there is one.
7146 : :
7147 : : If nothing is found, then an empty name_hint is returned. */
7148 : :
7149 : : name_hint
7150 : 1746 : suggest_alternatives_for (location_t location, tree name,
7151 : : bool suggest_misspellings)
7152 : : {
7153 : : /* First, search for exact matches in other namespaces. */
7154 : 1746 : namespace_hints ns_hints (location, name);
7155 : 1746 : name_hint result = ns_hints.convert_candidates_to_name_hint ();
7156 : :
7157 : : /* Otherwise, try other approaches. */
7158 : 1746 : if (!result)
7159 : 1642 : result = suggest_alternatives_for_1 (location, name, suggest_misspellings);
7160 : :
7161 : 1746 : return ns_hints.maybe_decorate_with_limit (std::move (result));
7162 : 1746 : }
7163 : :
7164 : : /* The second half of suggest_alternatives_for, for when no exact matches
7165 : : were found in other namespaces. */
7166 : :
7167 : : static name_hint
7168 : 1642 : suggest_alternatives_for_1 (location_t location, tree name,
7169 : : bool suggest_misspellings)
7170 : : {
7171 : : /* No candidates were found in the available namespaces. */
7172 : :
7173 : : /* If there's a "using namespace std;" active, and this
7174 : : is one of the most common "std::" names, then it's probably a
7175 : : missing #include. */
7176 : 1642 : if (has_using_namespace_std_directive_p ())
7177 : : {
7178 : 16 : name_hint hint = maybe_suggest_missing_std_header (location, name);
7179 : 16 : if (hint)
7180 : : return hint;
7181 : 0 : }
7182 : :
7183 : : /* Look for exact matches for builtin defines that would have been
7184 : : defined if the user had passed a command-line option (e.g. -fopenmp
7185 : : for "_OPENMP"). */
7186 : 1626 : diagnostic_option_id option_id
7187 : 1626 : = get_option_for_builtin_define (IDENTIFIER_POINTER (name));
7188 : 1626 : if (option_id.m_idx > 0)
7189 : 6 : return name_hint (nullptr,
7190 : : new suggest_missing_option (location,
7191 : 6 : IDENTIFIER_POINTER (name),
7192 : 6 : option_id));
7193 : :
7194 : : /* Otherwise, consider misspellings. */
7195 : 1620 : if (!suggest_misspellings)
7196 : 0 : return name_hint ();
7197 : :
7198 : 1620 : return lookup_name_fuzzy (name, FUZZY_LOOKUP_NAME, location);
7199 : : }
7200 : :
7201 : : /* Generate a name_hint at LOCATION for NAME, an IDENTIFIER_NODE for which
7202 : : name lookup failed.
7203 : :
7204 : : Search through all available namespaces and generate a suggestion and/or
7205 : : a deferred diagnostic that lists possible candidate(s).
7206 : :
7207 : : This is similiar to suggest_alternatives_for, but doesn't fallback to
7208 : : the other approaches used by that function. */
7209 : :
7210 : : name_hint
7211 : 54 : suggest_alternatives_in_other_namespaces (location_t location, tree name)
7212 : : {
7213 : 54 : namespace_hints ns_hints (location, name);
7214 : :
7215 : 54 : name_hint result = ns_hints.convert_candidates_to_name_hint ();
7216 : :
7217 : 54 : return ns_hints.maybe_decorate_with_limit (std::move (result));
7218 : 54 : }
7219 : :
7220 : : /* A well-known name within the C++ standard library, returned by
7221 : : get_std_name_hint.
7222 : :
7223 : : The gperf-generated file contains the definition of the class
7224 : : "std_name_hint_lookup" with a static member function which
7225 : : returns the pointer to a structure "std_name_hint" which
7226 : : is also defined in that file. */
7227 : :
7228 : : #include "std-name-hint.h"
7229 : :
7230 : : /* Subroutine of maybe_suggest_missing_header for handling unrecognized names
7231 : : for some of the most common names within "std::".
7232 : : Given non-NULL NAME, return the std_name_hint for it, or NULL. */
7233 : :
7234 : : static const std_name_hint *
7235 : 178 : get_std_name_hint (const char *name)
7236 : : {
7237 : 178 : return std_name_hint_lookup::find(name, strlen(name));
7238 : : }
7239 : :
7240 : : /* Describe DIALECT. */
7241 : :
7242 : : const char *
7243 : 3725 : get_cxx_dialect_name (enum cxx_dialect dialect)
7244 : : {
7245 : 3725 : switch (dialect)
7246 : : {
7247 : 0 : default:
7248 : 0 : gcc_unreachable ();
7249 : : case cxx98:
7250 : : return "C++98";
7251 : 4 : case cxx11:
7252 : 4 : return "C++11";
7253 : 2 : case cxx14:
7254 : 2 : return "C++14";
7255 : 1217 : case cxx17:
7256 : 1217 : return "C++17";
7257 : 1274 : case cxx20:
7258 : 1274 : return "C++20";
7259 : 1225 : case cxx23:
7260 : 1225 : return "C++23";
7261 : 3 : case cxx26:
7262 : 3 : return "C++26";
7263 : : }
7264 : : }
7265 : :
7266 : : /* Subclass of deferred_diagnostic for use for names in the "std" namespace
7267 : : that weren't recognized, but for which we know which header it ought to be
7268 : : in.
7269 : :
7270 : : Emit a note either suggesting the header to be included, or noting that
7271 : : the current dialect is too early for the given name. */
7272 : :
7273 : : class missing_std_header : public deferred_diagnostic
7274 : : {
7275 : : public:
7276 : 151 : missing_std_header (location_t loc,
7277 : : const char *name_str,
7278 : : const std_name_hint *header_hint)
7279 : 151 : : deferred_diagnostic (loc),
7280 : 151 : m_name_str (name_str),
7281 : 151 : m_header_hint (header_hint)
7282 : : {}
7283 : 302 : ~missing_std_header ()
7284 : 151 : {
7285 : 151 : gcc_rich_location richloc (get_location ());
7286 : 151 : if (cxx_dialect >= m_header_hint->min_dialect)
7287 : : {
7288 : 142 : const char *header = m_header_hint->header;
7289 : 142 : maybe_add_include_fixit (&richloc, header, true);
7290 : 142 : inform (&richloc,
7291 : : "%<std::%s%> is defined in header %qs;"
7292 : : " this is probably fixable by adding %<#include %s%>",
7293 : : m_name_str, header, header);
7294 : : }
7295 : : else
7296 : 9 : inform (&richloc,
7297 : : "%<std::%s%> is only available from %s onwards",
7298 : : m_name_str, get_cxx_dialect_name (m_header_hint->min_dialect));
7299 : 302 : }
7300 : :
7301 : : private:
7302 : : const char *m_name_str;
7303 : : const std_name_hint *m_header_hint;
7304 : : };
7305 : :
7306 : : /* Attempt to generate a name_hint that suggests pertinent header files
7307 : : for NAME at LOCATION, for common names within the "std" namespace,
7308 : : or an empty name_hint if this isn't applicable. */
7309 : :
7310 : : static name_hint
7311 : 178 : maybe_suggest_missing_std_header (location_t location, tree name)
7312 : : {
7313 : 178 : gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
7314 : :
7315 : 178 : const char *name_str = IDENTIFIER_POINTER (name);
7316 : 178 : const std_name_hint *header_hint = get_std_name_hint (name_str);
7317 : 178 : if (!header_hint)
7318 : 27 : return name_hint ();
7319 : :
7320 : 151 : return name_hint (NULL, new missing_std_header (location, name_str,
7321 : 151 : header_hint));
7322 : : }
7323 : :
7324 : : /* Attempt to generate a name_hint that suggests a missing header file
7325 : : for NAME within SCOPE at LOCATION, or an empty name_hint if this isn't
7326 : : applicable. */
7327 : :
7328 : : name_hint
7329 : 472 : maybe_suggest_missing_header (location_t location, tree name, tree scope)
7330 : : {
7331 : 472 : if (scope == NULL_TREE)
7332 : 0 : return name_hint ();
7333 : 472 : if (TREE_CODE (scope) != NAMESPACE_DECL)
7334 : 33 : return name_hint ();
7335 : : /* We only offer suggestions for the "std" namespace. */
7336 : 439 : if (scope != std_node)
7337 : 277 : return name_hint ();
7338 : 162 : return maybe_suggest_missing_std_header (location, name);
7339 : : }
7340 : :
7341 : : /* Generate a name_hint at LOCATION for NAME, an IDENTIFIER_NODE for which name
7342 : : lookup failed within the explicitly provided SCOPE.
7343 : :
7344 : : Suggest the best meaningful candidates (if any), otherwise
7345 : : an empty name_hint is returned. */
7346 : :
7347 : : name_hint
7348 : 314 : suggest_alternative_in_explicit_scope (location_t location, tree name,
7349 : : tree scope)
7350 : : {
7351 : : /* Something went very wrong; don't suggest anything. */
7352 : 314 : if (name == error_mark_node)
7353 : 2 : return name_hint ();
7354 : :
7355 : 312 : if (TREE_CODE (scope) != NAMESPACE_DECL)
7356 : 24 : return name_hint ();
7357 : :
7358 : : /* Resolve any namespace aliases. */
7359 : 288 : scope = ORIGINAL_NAMESPACE (scope);
7360 : :
7361 : 288 : name_hint hint = maybe_suggest_missing_header (location, name, scope);
7362 : 288 : if (hint)
7363 : 120 : return hint;
7364 : :
7365 : 168 : cp_binding_level *level = NAMESPACE_LEVEL (scope);
7366 : :
7367 : 168 : best_match <tree, const char *> bm (name);
7368 : 168 : consider_binding_level (name, bm, level, false, FUZZY_LOOKUP_NAME);
7369 : :
7370 : : /* See if we have a good suggesion for the user. */
7371 : 168 : const char *fuzzy_name = bm.get_best_meaningful_candidate ();
7372 : 168 : if (fuzzy_name)
7373 : 43 : return name_hint (fuzzy_name, NULL);
7374 : :
7375 : 125 : return name_hint ();
7376 : 288 : }
7377 : :
7378 : : /* Given NAME, look within SCOPED_ENUM for possible spell-correction
7379 : : candidates. */
7380 : :
7381 : : name_hint
7382 : 15 : suggest_alternative_in_scoped_enum (tree name, tree scoped_enum)
7383 : : {
7384 : 15 : gcc_assert (SCOPED_ENUM_P (scoped_enum));
7385 : :
7386 : 15 : best_match <tree, const char *> bm (name);
7387 : 48 : for (tree iter = TYPE_VALUES (scoped_enum); iter; iter = TREE_CHAIN (iter))
7388 : : {
7389 : 33 : tree id = TREE_PURPOSE (iter);
7390 : 33 : bm.consider (IDENTIFIER_POINTER (id));
7391 : : }
7392 : 15 : return name_hint (bm.get_best_meaningful_candidate (), NULL);
7393 : : }
7394 : :
7395 : : /* Look up NAME (an IDENTIFIER_NODE) in SCOPE (either a NAMESPACE_DECL
7396 : : or a class TYPE).
7397 : :
7398 : : WANT as for lookup_name_1.
7399 : :
7400 : : Returns a DECL (or OVERLOAD, or BASELINK) representing the
7401 : : declaration found. If no suitable declaration can be found,
7402 : : ERROR_MARK_NODE is returned. If COMPLAIN is true and SCOPE is
7403 : : neither a class-type nor a namespace a diagnostic is issued. */
7404 : :
7405 : : tree
7406 : 370686136 : lookup_qualified_name (tree scope, tree name, LOOK_want want, bool complain)
7407 : : {
7408 : 370686136 : tree t = NULL_TREE;
7409 : :
7410 : 370686136 : if (TREE_CODE (scope) == NAMESPACE_DECL)
7411 : : {
7412 : 277037564 : name_lookup lookup (name, want);
7413 : :
7414 : 277037564 : if (qualified_namespace_lookup (scope, &lookup))
7415 : : {
7416 : 275659646 : t = lookup.value;
7417 : :
7418 : : /* If we have a known type overload, pull it out. This can happen
7419 : : for using decls. */
7420 : 275659646 : if (TREE_CODE (t) == OVERLOAD && TREE_TYPE (t) != unknown_type_node)
7421 : 1018536 : t = OVL_FUNCTION (t);
7422 : : }
7423 : 277037564 : }
7424 : 93648572 : else if (cxx_dialect != cxx98 && TREE_CODE (scope) == ENUMERAL_TYPE)
7425 : 6495378 : t = lookup_enumerator (scope, name);
7426 : 87153194 : else if (is_class_type (scope, complain))
7427 : 87147742 : t = lookup_member (scope, name, 2, bool (want & LOOK_want::TYPE),
7428 : : tf_warning_or_error);
7429 : :
7430 : 370680630 : if (!t)
7431 : 1440996 : return error_mark_node;
7432 : : return t;
7433 : : }
7434 : :
7435 : : /* Wrapper for the above that takes a string argument. The function name is
7436 : : not at the beginning of the line to keep this wrapper out of etags. */
7437 : :
7438 : 122955 : tree lookup_qualified_name (tree t, const char *p, LOOK_want w, bool c)
7439 : : {
7440 : 122955 : return lookup_qualified_name (t, get_identifier (p), w, c);
7441 : : }
7442 : :
7443 : : /* [namespace.qual]
7444 : : Accepts the NAME to lookup and its qualifying SCOPE.
7445 : : Returns the name/type pair found into the cxx_binding *RESULT,
7446 : : or false on error. */
7447 : :
7448 : : static bool
7449 : 283243642 : qualified_namespace_lookup (tree scope, name_lookup *lookup)
7450 : : {
7451 : 283243642 : auto_cond_timevar tv (TV_NAME_LOOKUP);
7452 : 283243642 : query_oracle (lookup->name);
7453 : 283243642 : bool found = lookup->search_qualified (ORIGINAL_NAMESPACE (scope));
7454 : 566487284 : return found;
7455 : 283243642 : }
7456 : :
7457 : : /* If DECL is suitably visible to the user, consider its name for
7458 : : spelling correction. */
7459 : :
7460 : : static void
7461 : 1965 : consider_decl (tree decl, best_match <tree, const char *> &bm,
7462 : : bool consider_impl_names)
7463 : : {
7464 : : /* Skip compiler-generated variables (e.g. __for_begin/__for_end
7465 : : within range for). */
7466 : 1965 : if (VAR_P (decl) && DECL_ARTIFICIAL (decl))
7467 : : return;
7468 : :
7469 : 1888 : tree suggestion = DECL_NAME (decl);
7470 : 1888 : if (!suggestion)
7471 : : return;
7472 : :
7473 : : /* Don't suggest names that are for anonymous aggregate types, as
7474 : : they are an implementation detail generated by the compiler. */
7475 : 1787 : if (IDENTIFIER_ANON_P (suggestion))
7476 : : return;
7477 : :
7478 : 1704 : const char *suggestion_str = IDENTIFIER_POINTER (suggestion);
7479 : :
7480 : : /* Ignore internal names with spaces in them. */
7481 : 1704 : if (strchr (suggestion_str, ' '))
7482 : : return;
7483 : :
7484 : : /* Don't suggest names that are reserved for use by the
7485 : : implementation, unless NAME began with an underscore. */
7486 : 1704 : if (!consider_impl_names
7487 : 1704 : && name_reserved_for_implementation_p (suggestion_str))
7488 : : return;
7489 : :
7490 : 1674 : bm.consider (suggestion_str);
7491 : : }
7492 : :
7493 : : /* If DECL is suitably visible to the user, add its name to VEC and
7494 : : return true. Otherwise return false. */
7495 : :
7496 : : static bool
7497 : 3150500 : maybe_add_fuzzy_decl (auto_vec<tree> &vec, tree decl)
7498 : : {
7499 : : /* Skip compiler-generated variables (e.g. __for_begin/__for_end
7500 : : within range for). */
7501 : 3150500 : if (VAR_P (decl) && DECL_ARTIFICIAL (decl))
7502 : : return false;
7503 : :
7504 : 3149767 : tree suggestion = DECL_NAME (decl);
7505 : 3149767 : if (!suggestion)
7506 : : return false;
7507 : :
7508 : : /* Don't suggest names that are for anonymous aggregate types, as
7509 : : they are an implementation detail generated by the compiler. */
7510 : 3149767 : if (IDENTIFIER_ANON_P (suggestion))
7511 : : return false;
7512 : :
7513 : 3149767 : vec.safe_push (suggestion);
7514 : :
7515 : 3149767 : return true;
7516 : : }
7517 : :
7518 : : /* Examing the namespace binding BINDING, and add at most one instance
7519 : : of the name, if it contains a visible entity of interest. Return
7520 : : true if we added something. */
7521 : :
7522 : : bool
7523 : 5482692 : maybe_add_fuzzy_binding (auto_vec<tree> &vec, tree binding,
7524 : : lookup_name_fuzzy_kind kind)
7525 : : {
7526 : 5482692 : tree value = NULL_TREE;
7527 : :
7528 : 5482692 : if (STAT_HACK_P (binding))
7529 : : {
7530 : 290 : if (!STAT_TYPE_HIDDEN_P (binding)
7531 : 290 : && STAT_TYPE (binding))
7532 : : {
7533 : 177 : if (maybe_add_fuzzy_decl (vec, STAT_TYPE (binding)))
7534 : : return true;
7535 : : }
7536 : 113 : else if (!STAT_DECL_HIDDEN_P (binding))
7537 : 86 : value = STAT_DECL (binding);
7538 : : }
7539 : : else
7540 : : value = binding;
7541 : :
7542 : 5482515 : value = ovl_skip_hidden (value);
7543 : 5482515 : if (value)
7544 : : {
7545 : 4661393 : value = OVL_FIRST (value);
7546 : 4661393 : if (kind != FUZZY_LOOKUP_TYPENAME
7547 : 4661393 : || TREE_CODE (STRIP_TEMPLATE (value)) == TYPE_DECL)
7548 : 3150323 : if (maybe_add_fuzzy_decl (vec, value))
7549 : : return true;
7550 : : }
7551 : :
7552 : : /* Nothing found. */
7553 : : return false;
7554 : : }
7555 : :
7556 : : /* Helper function for lookup_name_fuzzy.
7557 : : Traverse binding level LVL, looking for good name matches for NAME
7558 : : (and BM). */
7559 : : static void
7560 : 7017 : consider_binding_level (tree name, best_match <tree, const char *> &bm,
7561 : : cp_binding_level *lvl, bool look_within_fields,
7562 : : enum lookup_name_fuzzy_kind kind)
7563 : : {
7564 : 7017 : if (look_within_fields)
7565 : 1025 : if (lvl->this_entity && TREE_CODE (lvl->this_entity) == RECORD_TYPE)
7566 : : {
7567 : 414 : tree type = lvl->this_entity;
7568 : 414 : bool want_type_p = (kind == FUZZY_LOOKUP_TYPENAME);
7569 : 414 : tree best_matching_field
7570 : 414 : = lookup_member_fuzzy (type, name, want_type_p);
7571 : 414 : if (best_matching_field)
7572 : 10 : bm.consider (IDENTIFIER_POINTER (best_matching_field));
7573 : : }
7574 : :
7575 : : /* Only suggest names reserved for the implementation if NAME begins
7576 : : with an underscore. */
7577 : 7017 : bool consider_implementation_names = (IDENTIFIER_POINTER (name)[0] == '_');
7578 : :
7579 : 7017 : if (lvl->kind != sk_namespace)
7580 : 6946 : for (tree t = lvl->names; t; t = TREE_CHAIN (t))
7581 : : {
7582 : 2554 : tree d = t;
7583 : :
7584 : : /* OVERLOADs or decls from using declaration are wrapped into
7585 : : TREE_LIST. */
7586 : 2554 : if (TREE_CODE (d) == TREE_LIST)
7587 : 27 : d = OVL_FIRST (TREE_VALUE (d));
7588 : :
7589 : : /* Don't use bindings from implicitly declared functions,
7590 : : as they were likely misspellings themselves. */
7591 : 2554 : if (TREE_TYPE (d) == error_mark_node)
7592 : 297 : continue;
7593 : :
7594 : : /* If we want a typename, ignore non-types. */
7595 : 2549 : if (kind == FUZZY_LOOKUP_TYPENAME
7596 : 2257 : && TREE_CODE (STRIP_TEMPLATE (d)) != TYPE_DECL)
7597 : 292 : continue;
7598 : :
7599 : 1965 : consider_decl (d, bm, consider_implementation_names);
7600 : : }
7601 : : else
7602 : : {
7603 : : /* We need to iterate over the namespace hash table, in order to
7604 : : not mention hidden entities. But hash table iteration is
7605 : : (essentially) unpredictable, our correction-distance measure
7606 : : is very granular, and we pick the first of equal distances.
7607 : : Hence, we need to call the distance-measurer in a predictable
7608 : : order. So, iterate over the namespace hash, inserting
7609 : : visible names into a vector. Then sort the vector. Then
7610 : : determine spelling distance. */
7611 : :
7612 : 2625 : tree ns = lvl->this_entity;
7613 : 2625 : auto_vec<tree> vec;
7614 : :
7615 : 2625 : hash_table<named_decl_hash>::iterator end
7616 : 2625 : (DECL_NAMESPACE_BINDINGS (ns)->end ());
7617 : 5485350 : for (hash_table<named_decl_hash>::iterator iter
7618 : 10970700 : (DECL_NAMESPACE_BINDINGS (ns)->begin ()); iter != end; ++iter)
7619 : : {
7620 : 5482725 : tree binding = *iter;
7621 : :
7622 : 5482725 : if (TREE_CODE (binding) == BINDING_VECTOR)
7623 : : {
7624 : 184 : bitmap imports = get_import_bitmap ();
7625 : 184 : binding_cluster *cluster = BINDING_VECTOR_CLUSTER_BASE (binding);
7626 : :
7627 : 184 : if (tree bind = cluster->slots[BINDING_SLOT_CURRENT])
7628 : 18 : if (maybe_add_fuzzy_binding (vec, bind, kind))
7629 : 9 : continue;
7630 : :
7631 : : /* Scan the imported bindings. */
7632 : 175 : unsigned ix = BINDING_VECTOR_NUM_CLUSTERS (binding);
7633 : 175 : if (BINDING_VECTOR_SLOTS_PER_CLUSTER == BINDING_SLOTS_FIXED)
7634 : : {
7635 : 175 : ix--;
7636 : 175 : cluster++;
7637 : : }
7638 : :
7639 : 350 : for (; ix--; cluster++)
7640 : 414 : for (unsigned jx = 0; jx != BINDING_VECTOR_SLOTS_PER_CLUSTER;
7641 : : jx++)
7642 : : {
7643 : : /* Are we importing this module? */
7644 : 350 : if (unsigned base = cluster->indices[jx].base)
7645 : 151 : if (unsigned span = cluster->indices[jx].span)
7646 : 151 : do
7647 : 151 : if (bitmap_bit_p (imports, base))
7648 : 148 : goto found;
7649 : 3 : while (++base, --span);
7650 : 202 : continue;
7651 : :
7652 : 148 : found:;
7653 : : /* Is it loaded? */
7654 : 148 : if (cluster->slots[jx].is_lazy ())
7655 : : /* Let's not read in everything on the first
7656 : : spello! **/
7657 : 15 : continue;
7658 : 133 : if (tree bind = cluster->slots[jx])
7659 : 133 : if (maybe_add_fuzzy_binding (vec, bind, kind))
7660 : : break;
7661 : 202 : }
7662 : : }
7663 : : else
7664 : 5482541 : maybe_add_fuzzy_binding (vec, binding, kind);
7665 : : }
7666 : :
7667 : 165308076 : vec.qsort ([] (const void *a_, const void *b_)
7668 : : {
7669 : : return strcmp (IDENTIFIER_POINTER (*(const tree *)a_),
7670 : : IDENTIFIER_POINTER (*(const tree *)b_));
7671 : : });
7672 : :
7673 : : /* Examine longest to shortest. */
7674 : 3155017 : for (unsigned ix = vec.length (); ix--;)
7675 : : {
7676 : 3149767 : const char *str = IDENTIFIER_POINTER (vec[ix]);
7677 : :
7678 : : /* Ignore internal names with spaces in them. */
7679 : 3149767 : if (strchr (str, ' '))
7680 : 67407 : continue;
7681 : :
7682 : : /* Don't suggest names that are reserved for use by the
7683 : : implementation, unless NAME began with an underscore. */
7684 : 5866419 : if (!consider_implementation_names
7685 : 3082360 : && name_reserved_for_implementation_p (str))
7686 : 2784059 : continue;
7687 : :
7688 : 298301 : bm.consider (str);
7689 : : }
7690 : 2625 : }
7691 : 7017 : }
7692 : :
7693 : : /* Subclass of deferred_diagnostic. Notify the user that the
7694 : : given macro was used before it was defined.
7695 : : This can be done in the C++ frontend since tokenization happens
7696 : : upfront. */
7697 : :
7698 : : class macro_use_before_def : public deferred_diagnostic
7699 : : {
7700 : : public:
7701 : : /* Factory function. Return a new macro_use_before_def instance if
7702 : : appropriate, or return NULL. */
7703 : : static macro_use_before_def *
7704 : 59 : maybe_make (location_t use_loc, cpp_hashnode *macro)
7705 : : {
7706 : 80 : location_t def_loc = cpp_macro_definition_location (macro);
7707 : 59 : if (def_loc == UNKNOWN_LOCATION)
7708 : : return NULL;
7709 : :
7710 : : /* We only want to issue a note if the macro was used *before* it was
7711 : : defined.
7712 : : We don't want to issue a note for cases where a macro was incorrectly
7713 : : used, leaving it unexpanded (e.g. by using the wrong argument
7714 : : count). */
7715 : 59 : if (!linemap_location_before_p (line_table, use_loc, def_loc))
7716 : : return NULL;
7717 : :
7718 : 38 : return new macro_use_before_def (use_loc, macro);
7719 : : }
7720 : :
7721 : : private:
7722 : : /* Ctor. LOC is the location of the usage. MACRO is the
7723 : : macro that was used. */
7724 : 38 : macro_use_before_def (location_t loc, cpp_hashnode *macro)
7725 : 38 : : deferred_diagnostic (loc), m_macro (macro)
7726 : : {
7727 : 38 : gcc_assert (macro);
7728 : 38 : }
7729 : :
7730 : 76 : ~macro_use_before_def ()
7731 : 38 : {
7732 : 38 : if (is_suppressed_p ())
7733 : 0 : return;
7734 : :
7735 : 38 : inform (get_location (), "the macro %qs had not yet been defined",
7736 : 38 : (const char *)m_macro->ident.str);
7737 : 76 : inform (cpp_macro_definition_location (m_macro),
7738 : : "it was later defined here");
7739 : 76 : }
7740 : :
7741 : : private:
7742 : : cpp_hashnode *m_macro;
7743 : : };
7744 : :
7745 : : /* Determine if it can ever make sense to offer RID as a suggestion for
7746 : : a misspelling.
7747 : :
7748 : : Subroutine of lookup_name_fuzzy. */
7749 : :
7750 : : static bool
7751 : 443331 : suggest_rid_p (enum rid rid)
7752 : : {
7753 : 443331 : switch (rid)
7754 : : {
7755 : : /* Support suggesting function-like keywords. */
7756 : : case RID_STATIC_ASSERT:
7757 : : return true;
7758 : :
7759 : 439425 : default:
7760 : : /* Support suggesting the various decl-specifier words, to handle
7761 : : e.g. "singed" vs "signed" typos. */
7762 : 439425 : if (cp_keyword_starts_decl_specifier_p (rid))
7763 : : return true;
7764 : :
7765 : : /* Otherwise, don't offer it. This avoids suggesting e.g. "if"
7766 : : and "do" for short misspellings, which are likely to lead to
7767 : : nonsensical results. */
7768 : : return false;
7769 : : }
7770 : : }
7771 : :
7772 : : /* Search for near-matches for NAME within the current bindings, and within
7773 : : macro names, returning the best match as a const char *, or NULL if
7774 : : no reasonable match is found.
7775 : :
7776 : : Use LOC for any deferred diagnostics. */
7777 : :
7778 : : name_hint
7779 : 2261 : lookup_name_fuzzy (tree name, enum lookup_name_fuzzy_kind kind, location_t loc)
7780 : : {
7781 : 2261 : gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
7782 : :
7783 : : /* First, try some well-known names in the C++ standard library, in case
7784 : : the user forgot a #include. */
7785 : 2261 : const char *header_hint
7786 : 2261 : = get_cp_stdlib_header_for_name (IDENTIFIER_POINTER (name));
7787 : 2261 : if (header_hint)
7788 : 249 : return name_hint (NULL,
7789 : : new suggest_missing_header (loc,
7790 : 249 : IDENTIFIER_POINTER (name),
7791 : 249 : header_hint));
7792 : :
7793 : 2012 : best_match <tree, const char *> bm (name);
7794 : :
7795 : 2012 : cp_binding_level *lvl;
7796 : 3037 : for (lvl = scope_chain->class_bindings; lvl; lvl = lvl->level_chain)
7797 : 1025 : consider_binding_level (name, bm, lvl, true, kind);
7798 : :
7799 : 9848 : for (lvl = current_binding_level; lvl; lvl = lvl->level_chain)
7800 : 5824 : consider_binding_level (name, bm, lvl, false, kind);
7801 : :
7802 : : /* Consider macros: if the user misspelled a macro name e.g. "SOME_MACRO"
7803 : : as:
7804 : : x = SOME_OTHER_MACRO (y);
7805 : : then "SOME_OTHER_MACRO" will survive to the frontend and show up
7806 : : as a misspelled identifier.
7807 : :
7808 : : Use the best distance so far so that a candidate is only set if
7809 : : a macro is better than anything so far. This allows early rejection
7810 : : (without calculating the edit distance) of macro names that must have
7811 : : distance >= bm.get_best_distance (), and means that we only get a
7812 : : non-NULL result for best_macro_match if it's better than any of
7813 : : the identifiers already checked. */
7814 : 2012 : best_macro_match bmm (name, bm.get_best_distance (), parse_in);
7815 : 2012 : cpp_hashnode *best_macro = bmm.get_best_meaningful_candidate ();
7816 : : /* If a macro is the closest so far to NAME, consider it. */
7817 : 2012 : if (best_macro)
7818 : 27 : bm.consider ((const char *)best_macro->ident.str);
7819 : 1985 : else if (bmm.get_best_distance () == 0)
7820 : : {
7821 : : /* If we have an exact match for a macro name, then either the
7822 : : macro was used with the wrong argument count, or the macro
7823 : : has been used before it was defined. */
7824 : 92 : if (cpp_hashnode *macro = bmm.blithely_get_best_candidate ())
7825 : 62 : if (cpp_user_macro_p (macro))
7826 : 59 : return name_hint (NULL,
7827 : 59 : macro_use_before_def::maybe_make (loc, macro));
7828 : : }
7829 : :
7830 : : /* Try the "starts_decl_specifier_p" keywords to detect
7831 : : "singed" vs "signed" typos. */
7832 : 445284 : for (unsigned i = 0; i < num_c_common_reswords; i++)
7833 : : {
7834 : 443331 : const c_common_resword *resword = &c_common_reswords[i];
7835 : :
7836 : 443331 : if (!suggest_rid_p (resword->rid))
7837 : 324198 : continue;
7838 : :
7839 : 119133 : tree resword_identifier = ridpointers [resword->rid];
7840 : 119133 : if (!resword_identifier)
7841 : 0 : continue;
7842 : 119133 : gcc_assert (TREE_CODE (resword_identifier) == IDENTIFIER_NODE);
7843 : :
7844 : : /* Only consider reserved words that survived the
7845 : : filtering in init_reswords (e.g. for -std). */
7846 : 119133 : if (!IDENTIFIER_KEYWORD_P (resword_identifier))
7847 : 13469 : continue;
7848 : :
7849 : 105664 : bm.consider (IDENTIFIER_POINTER (resword_identifier));
7850 : : }
7851 : :
7852 : 1953 : return name_hint (bm.get_best_meaningful_candidate (), NULL);
7853 : : }
7854 : :
7855 : : /* Subroutine of outer_binding.
7856 : :
7857 : : Returns TRUE if BINDING is a binding to a template parameter of
7858 : : SCOPE. In that case SCOPE is the scope of a primary template
7859 : : parameter -- in the sense of G++, i.e, a template that has its own
7860 : : template header.
7861 : :
7862 : : Returns FALSE otherwise. */
7863 : :
7864 : : static bool
7865 : 327274736 : binding_to_template_parms_of_scope_p (cxx_binding *binding,
7866 : : cp_binding_level *scope)
7867 : : {
7868 : 327274736 : tree binding_value, tmpl, tinfo;
7869 : 327274736 : int level;
7870 : :
7871 : 327274736 : if (!binding || !scope || !scope->this_entity)
7872 : : return false;
7873 : :
7874 : 193468916 : binding_value = binding->value ? binding->value : binding->type;
7875 : 193468916 : tinfo = get_template_info (scope->this_entity);
7876 : :
7877 : : /* BINDING_VALUE must be a template parm. */
7878 : 193468916 : if (binding_value == NULL_TREE
7879 : 193468916 : || (!DECL_P (binding_value)
7880 : 193468916 : || !DECL_TEMPLATE_PARM_P (binding_value)))
7881 : : return false;
7882 : :
7883 : : /* The level of BINDING_VALUE. */
7884 : 386937832 : level =
7885 : 193468916 : template_type_parameter_p (binding_value)
7886 : 193468916 : ? TEMPLATE_PARM_LEVEL (TEMPLATE_TYPE_PARM_INDEX
7887 : : (TREE_TYPE (binding_value)))
7888 : 75977572 : : TEMPLATE_PARM_LEVEL (DECL_INITIAL (binding_value));
7889 : :
7890 : : /* The template of the current scope, iff said scope is a primary
7891 : : template. */
7892 : 672100245 : tmpl = (tinfo
7893 : 175675413 : && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
7894 : 193468916 : ? TI_TEMPLATE (tinfo)
7895 : : : NULL_TREE);
7896 : :
7897 : : /* If the level of the parm BINDING_VALUE equals the depth of TMPL,
7898 : : then BINDING_VALUE is a parameter of TMPL. */
7899 : 151356593 : return (tmpl && level == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)));
7900 : : }
7901 : :
7902 : : /* Return the innermost non-namespace binding for NAME from a scope
7903 : : containing BINDING, or, if BINDING is NULL, the current scope.
7904 : : Please note that for a given template, the template parameters are
7905 : : considered to be in the scope containing the current scope.
7906 : : If CLASS_P is false, then class bindings are ignored. */
7907 : :
7908 : : cxx_binding *
7909 : 5242560076 : outer_binding (tree name,
7910 : : cxx_binding *binding,
7911 : : bool class_p)
7912 : : {
7913 : 5242560076 : cxx_binding *outer;
7914 : 5242560076 : cp_binding_level *scope;
7915 : 5242560076 : cp_binding_level *outer_scope;
7916 : :
7917 : 5242560076 : if (binding)
7918 : : {
7919 : 2518352 : scope = binding->scope->level_chain;
7920 : 2518352 : outer = binding->previous;
7921 : : }
7922 : : else
7923 : : {
7924 : 5240041724 : scope = current_binding_level;
7925 : 5240041724 : outer = IDENTIFIER_BINDING (name);
7926 : : }
7927 : 5242560076 : outer_scope = outer ? outer->scope : NULL;
7928 : :
7929 : : /* Because we create class bindings lazily, we might be missing a
7930 : : class binding for NAME. If there are any class binding levels
7931 : : between the LAST_BINDING_LEVEL and the scope in which OUTER was
7932 : : declared, we must lookup NAME in those class scopes. */
7933 : 5242560076 : if (class_p)
7934 : 12271155994 : while (scope && scope != outer_scope && scope->kind != sk_namespace)
7935 : : {
7936 : 8962735543 : if (scope->kind == sk_class)
7937 : : {
7938 : 1382491484 : cxx_binding *class_binding;
7939 : :
7940 : 1382491484 : class_binding = get_class_binding (name, scope);
7941 : 1382491484 : if (class_binding)
7942 : : {
7943 : : /* Thread this new class-scope binding onto the
7944 : : IDENTIFIER_BINDING list so that future lookups
7945 : : find it quickly. */
7946 : 122498452 : if (BASELINK_P (class_binding->value))
7947 : : /* Don't put a BASELINK in IDENTIFIER_BINDING. */
7948 : 35035619 : class_binding->value
7949 : 35035619 : = BASELINK_FUNCTIONS (class_binding->value);
7950 : 122498452 : class_binding->previous = outer;
7951 : 122498452 : if (binding)
7952 : 3 : binding->previous = class_binding;
7953 : : else
7954 : 122498449 : IDENTIFIER_BINDING (name) = class_binding;
7955 : 122498452 : return class_binding;
7956 : : }
7957 : : }
7958 : : /* If we are in a member template, the template parms of the member
7959 : : template are considered to be inside the scope of the containing
7960 : : class, but within G++ the class bindings are all pushed between the
7961 : : template parms and the function body. So if the outer binding is
7962 : : a template parm for the current scope, return it now rather than
7963 : : look for a class binding. */
7964 : 3934686044 : if (outer_scope && outer_scope->kind == sk_template_parms
7965 : 9167511827 : && binding_to_template_parms_of_scope_p (outer, scope))
7966 : : return outer;
7967 : :
7968 : 8700815436 : scope = scope->level_chain;
7969 : : }
7970 : :
7971 : : return outer;
7972 : : }
7973 : :
7974 : : /* Return the innermost block-scope or class-scope value binding for
7975 : : NAME, or NULL_TREE if there is no such binding. */
7976 : :
7977 : : tree
7978 : 776043147 : innermost_non_namespace_value (tree name)
7979 : : {
7980 : 776043147 : cxx_binding *binding;
7981 : 776043147 : binding = outer_binding (name, /*binding=*/NULL, /*class_p=*/true);
7982 : 776043147 : return binding ? binding->value : NULL_TREE;
7983 : : }
7984 : :
7985 : : /* True iff current_binding_level is within the potential scope of local
7986 : : variable DECL. */
7987 : :
7988 : : bool
7989 : 131 : decl_in_scope_p (tree decl)
7990 : : {
7991 : 131 : gcc_checking_assert (DECL_FUNCTION_SCOPE_P (decl));
7992 : :
7993 : 131 : tree name = DECL_NAME (decl);
7994 : :
7995 : 131 : for (cxx_binding *iter = NULL;
7996 : 138 : (iter = outer_binding (name, iter, /*class_p=*/false)); )
7997 : : {
7998 : 74 : if (!LOCAL_BINDING_P (iter))
7999 : : return false;
8000 : 74 : if (iter->value == decl)
8001 : : return true;
8002 : : }
8003 : :
8004 : : return false;
8005 : : }
8006 : :
8007 : : /* Look up NAME in the current binding level and its superiors in the
8008 : : namespace of variables, functions and typedefs. Return a ..._DECL
8009 : : node of some kind representing its definition if there is only one
8010 : : such declaration, or return a TREE_LIST with all the overloaded
8011 : : definitions if there are many, or return NULL_TREE if it is undefined.
8012 : : Hidden name, either friend declaration or built-in function, are
8013 : : not ignored.
8014 : :
8015 : : WHERE controls which scopes are considered. It is a bit mask of
8016 : : LOOK_where::BLOCK (look in block scope), LOOK_where::CLASS
8017 : : (look in class scopes) & LOOK_where::NAMESPACE (look in namespace
8018 : : scopes). It is an error for no bits to be set. These scopes are
8019 : : searched from innermost to outermost.
8020 : :
8021 : : WANT controls what kind of entity we'd happy with.
8022 : : LOOK_want::NORMAL for normal lookup (implicit typedefs can be
8023 : : hidden). LOOK_want::TYPE for only TYPE_DECLS, LOOK_want::NAMESPACE
8024 : : for only NAMESPACE_DECLS. These two can be bit-ored to find
8025 : : namespace or type.
8026 : :
8027 : : WANT can also have LOOK_want::HIDDEN_FRIEND or
8028 : : LOOK_want::HIDDEN_LAMBDa added to it. */
8029 : :
8030 : : tree
8031 : 3968092694 : lookup_name (tree name, LOOK_where where, LOOK_want want)
8032 : : {
8033 : 3968092694 : tree val = NULL_TREE;
8034 : :
8035 : 3968092694 : auto_cond_timevar tv (TV_NAME_LOOKUP);
8036 : :
8037 : 3968092694 : gcc_checking_assert (unsigned (where) != 0);
8038 : : /* If we're looking for hidden lambda things, we shouldn't be
8039 : : looking in namespace scope. */
8040 : 3968092694 : gcc_checking_assert (!bool (want & LOOK_want::HIDDEN_LAMBDA)
8041 : : || !bool (where & LOOK_where::NAMESPACE));
8042 : 3968092694 : query_oracle (name);
8043 : :
8044 : : /* Conversion operators are handled specially because ordinary
8045 : : unqualified name lookup will not find template conversion
8046 : : operators. */
8047 : 3968092694 : if (IDENTIFIER_CONV_OP_P (name))
8048 : : {
8049 : 582618 : cp_binding_level *level;
8050 : :
8051 : 582618 : for (level = current_binding_level;
8052 : 1632298 : level && level->kind != sk_namespace;
8053 : 1049680 : level = level->level_chain)
8054 : : {
8055 : 1137272 : tree class_type;
8056 : 1137272 : tree operators;
8057 : :
8058 : : /* A conversion operator can only be declared in a class
8059 : : scope. */
8060 : 1137272 : if (level->kind != sk_class)
8061 : 462118 : continue;
8062 : :
8063 : : /* Lookup the conversion operator in the class. */
8064 : 675154 : class_type = level->this_entity;
8065 : 675154 : operators = lookup_fnfields (class_type, name, /*protect=*/0,
8066 : : tf_warning_or_error);
8067 : 675154 : if (operators)
8068 : : return operators;
8069 : : }
8070 : :
8071 : : return NULL_TREE;
8072 : : }
8073 : :
8074 : : /* First, look in non-namespace scopes. */
8075 : :
8076 : 3967510076 : if (current_class_type == NULL_TREE)
8077 : : /* Maybe avoid searching the binding stack at all. */
8078 : 1601998582 : where = LOOK_where (unsigned (where) & ~unsigned (LOOK_where::CLASS));
8079 : :
8080 : 3967510076 : if (bool (where & (LOOK_where::BLOCK | LOOK_where::CLASS)))
8081 : : for (cxx_binding *iter = nullptr;
8082 : 3969671965 : (iter = outer_binding (name, iter, bool (where & LOOK_where::CLASS)));)
8083 : : {
8084 : : /* Skip entities we don't want. */
8085 : 3618434389 : if (!bool (where & (LOCAL_BINDING_P (iter)
8086 : : ? LOOK_where::BLOCK : LOOK_where::CLASS)))
8087 : 38017 : continue;
8088 : :
8089 : : /* If this is the kind of thing we're looking for, we're done. */
8090 : 2903163532 : if (iter->value)
8091 : : {
8092 : 2903163532 : tree binding = NULL_TREE;
8093 : :
8094 : 2845360610 : if (!(!iter->type && HIDDEN_TYPE_BINDING_P (iter))
8095 : 2903163467 : && (bool (want & LOOK_want::HIDDEN_LAMBDA)
8096 : 2902874596 : || !is_lambda_ignored_entity (iter->value))
8097 : 5803920742 : && qualify_lookup (iter->value, want))
8098 : 2900683305 : binding = iter->value;
8099 : 2480227 : else if (bool (want & LOOK_want::TYPE)
8100 : 73883 : && !HIDDEN_TYPE_BINDING_P (iter)
8101 : 2554095 : && iter->type)
8102 : 2903163532 : binding = iter->type;
8103 : :
8104 : 2903163532 : if (binding)
8105 : : {
8106 : 2900683375 : val = strip_using_decl (binding);
8107 : 2900683375 : break;
8108 : : }
8109 : : }
8110 : : }
8111 : :
8112 : : /* Now lookup in namespace scopes. */
8113 : 3967510076 : if (!val && bool (where & LOOK_where::NAMESPACE))
8114 : : {
8115 : 1066826485 : name_lookup lookup (name, want);
8116 : 1066826485 : if (lookup.search_unqualified
8117 : 1066826485 : (current_decl_namespace (), current_binding_level))
8118 : 815491507 : val = lookup.value;
8119 : 1066826485 : }
8120 : :
8121 : : /* If we have a known type overload, pull it out. This can happen
8122 : : for both using decls and unhidden functions. */
8123 : 3967510076 : if (val && TREE_CODE (val) == OVERLOAD && TREE_TYPE (val) != unknown_type_node)
8124 : 2543714 : val = OVL_FUNCTION (val);
8125 : :
8126 : : return val;
8127 : 3968092694 : }
8128 : :
8129 : : tree
8130 : 267993656 : lookup_name (tree name)
8131 : : {
8132 : 267993656 : return lookup_name (name, LOOK_where::ALL, LOOK_want::NORMAL);
8133 : : }
8134 : :
8135 : : /* Look up NAME for type used in elaborated name specifier in
8136 : : the scopes given by HOW.
8137 : :
8138 : : Unlike lookup_name_1, we make sure that NAME is actually
8139 : : declared in the desired scope, not from inheritance, nor using
8140 : : directive. For using declaration, there is DR138 still waiting
8141 : : to be resolved. Hidden name coming from an earlier friend
8142 : : declaration is also returned, and will be made visible unless HOW
8143 : : is TAG_how::HIDDEN_FRIEND.
8144 : :
8145 : : A TYPE_DECL best matching the NAME is returned. Catching error
8146 : : and issuing diagnostics are caller's responsibility. */
8147 : :
8148 : : tree
8149 : 19317628 : lookup_elaborated_type (tree name, TAG_how how)
8150 : : {
8151 : 19317628 : auto_cond_timevar tv (TV_NAME_LOOKUP);
8152 : :
8153 : 19317628 : cp_binding_level *b = current_binding_level;
8154 : :
8155 : 19317628 : if (b->kind != sk_namespace)
8156 : : /* Look in non-namespace scopes. */
8157 : : for (cxx_binding *iter = NULL;
8158 : 14238849 : (iter = outer_binding (name, iter, /*class_p=*/ true)); )
8159 : : {
8160 : : /* First check we're supposed to be looking in this scope --
8161 : : if we're not, we're done. */
8162 : 568901 : for (; b != iter->scope; b = b->level_chain)
8163 : 360239 : if (!(b->kind == sk_cleanup
8164 : 254761 : || b->kind == sk_template_parms
8165 : 105487 : || b->kind == sk_function_parms
8166 : 105457 : || (b->kind == sk_class && how != TAG_how::CURRENT_ONLY)))
8167 : : return NULL_TREE;
8168 : :
8169 : : /* Check if this is the kind of thing we're looking for. If
8170 : : HOW is TAG_how::CURRENT_ONLY, also make sure it doesn't
8171 : : come from base class. For ITER->VALUE, we can simply use
8172 : : INHERITED_VALUE_BINDING_P. For ITER->TYPE, we have to use
8173 : : our own check.
8174 : :
8175 : : We check ITER->TYPE before ITER->VALUE in order to handle
8176 : : typedef struct C {} C;
8177 : : correctly. */
8178 : :
8179 : 314137 : if (tree type = strip_using_decl (iter->type))
8180 : : {
8181 : 55307 : if (qualify_lookup (type, LOOK_want::TYPE)
8182 : 55307 : && (how != TAG_how::CURRENT_ONLY
8183 : 117 : || LOCAL_BINDING_P (iter)
8184 : 117 : || DECL_CONTEXT (type) == iter->scope->this_entity))
8185 : : {
8186 : 55259 : if (how != TAG_how::HIDDEN_FRIEND)
8187 : : /* It is no longer a hidden binding. */
8188 : 72 : HIDDEN_TYPE_BINDING_P (iter) = false;
8189 : :
8190 : 55259 : return type;
8191 : : }
8192 : : }
8193 : : else
8194 : : {
8195 : 258830 : tree value = strip_using_decl (iter->value);
8196 : 258830 : if (qualify_lookup (value, LOOK_want::TYPE)
8197 : 258830 : && (how != TAG_how::CURRENT_ONLY
8198 : 47318 : || !INHERITED_VALUE_BINDING_P (iter)))
8199 : : {
8200 : 258707 : if (how != TAG_how::HIDDEN_FRIEND && !iter->type)
8201 : : /* It is no longer a hidden binding. */
8202 : 47324 : HIDDEN_TYPE_BINDING_P (iter) = false;
8203 : :
8204 : 258707 : return value;
8205 : : }
8206 : : }
8207 : : }
8208 : :
8209 : : /* Now check if we can look in namespace scope. */
8210 : 31068680 : for (; b->kind != sk_namespace; b = b->level_chain)
8211 : : if (!(b->kind == sk_cleanup
8212 : : || b->kind == sk_template_parms
8213 : : || b->kind == sk_function_parms
8214 : 3404572 : || (b->kind == sk_class && how != TAG_how::CURRENT_ONLY)))
8215 : : return NULL_TREE;
8216 : :
8217 : : /* Look in the innermost namespace. */
8218 : 15916486 : tree ns = b->this_entity;
8219 : 15916486 : if (tree *slot = find_namespace_slot (ns, name))
8220 : : {
8221 : 2600360 : tree bind = *slot;
8222 : 2600360 : if (TREE_CODE (bind) == BINDING_VECTOR)
8223 : 94 : bind = BINDING_VECTOR_CLUSTER (bind, 0).slots[BINDING_SLOT_CURRENT];
8224 : :
8225 : 94 : if (bind)
8226 : : {
8227 : : /* If this is the kind of thing we're looking for, we're done. */
8228 : 2600303 : if (tree type = strip_using_decl (MAYBE_STAT_TYPE (bind)))
8229 : : {
8230 : 165 : if (how != TAG_how::HIDDEN_FRIEND)
8231 : : /* No longer hidden. */
8232 : 165 : STAT_TYPE_HIDDEN_P (*slot) = false;
8233 : :
8234 : 165 : return type;
8235 : : }
8236 : 2600138 : else if (tree decl = strip_using_decl (MAYBE_STAT_DECL (bind)))
8237 : : {
8238 : 2600138 : if (qualify_lookup (decl, LOOK_want::TYPE))
8239 : : {
8240 : 2296953 : if (how != TAG_how::HIDDEN_FRIEND && STAT_HACK_P (bind)
8241 : 2661070 : && STAT_DECL_HIDDEN_P (bind))
8242 : : {
8243 : 63123 : if (STAT_TYPE (bind))
8244 : 0 : STAT_DECL_HIDDEN_P (bind) = false;
8245 : : else
8246 : : {
8247 : : /* There is no type, just remove the stat
8248 : : hack. */
8249 : 63123 : if (*slot == bind)
8250 : 63120 : *slot = decl;
8251 : : else
8252 : 3 : BINDING_VECTOR_CLUSTER (*slot, 0)
8253 : 3 : .slots[BINDING_SLOT_CURRENT] = decl;
8254 : : }
8255 : : }
8256 : 2597918 : return decl;
8257 : : }
8258 : : }
8259 : : }
8260 : :
8261 : 2277 : if (TREE_CODE (*slot) == BINDING_VECTOR)
8262 : : {
8263 : : /* We could be redeclaring a global module entity, (from GMF
8264 : : or header unit), or from another partition, or
8265 : : specializing an imported template. */
8266 : 57 : bitmap imports = get_import_bitmap ();
8267 : 57 : binding_cluster *cluster = BINDING_VECTOR_CLUSTER_BASE (*slot);
8268 : :
8269 : : /* Scan the imported bindings. */
8270 : 57 : unsigned ix = BINDING_VECTOR_NUM_CLUSTERS (*slot);
8271 : 57 : if (BINDING_VECTOR_SLOTS_PER_CLUSTER == BINDING_SLOTS_FIXED)
8272 : : {
8273 : 57 : ix--;
8274 : 57 : cluster++;
8275 : : }
8276 : :
8277 : : /* Do this in forward order, so we load modules in an order
8278 : : the user expects. */
8279 : 61 : for (; ix--; cluster++)
8280 : 118 : for (unsigned jx = 0; jx != BINDING_VECTOR_SLOTS_PER_CLUSTER; jx++)
8281 : : {
8282 : : /* Are we importing this module? */
8283 : 114 : if (unsigned base = cluster->indices[jx].base)
8284 : 53 : if (unsigned span = cluster->indices[jx].span)
8285 : 53 : do
8286 : 53 : if (bitmap_bit_p (imports, base))
8287 : 53 : goto found;
8288 : 0 : while (++base, --span);
8289 : 61 : continue;
8290 : :
8291 : 53 : found:;
8292 : : /* Is it loaded? */
8293 : 53 : if (cluster->slots[jx].is_lazy ())
8294 : : {
8295 : 33 : gcc_assert (cluster->indices[jx].span == 1);
8296 : 33 : lazy_load_binding (cluster->indices[jx].base,
8297 : : ns, name, &cluster->slots[jx]);
8298 : : }
8299 : 53 : tree bind = cluster->slots[jx];
8300 : 53 : if (!bind)
8301 : : /* Load errors could mean there's nothing here. */
8302 : 0 : continue;
8303 : :
8304 : : /* Extract what we can see from here. If there's no
8305 : : stat_hack, then everything was exported. */
8306 : 53 : tree type = NULL_TREE;
8307 : :
8308 : : /* If no stat hack, everything is visible. */
8309 : 53 : if (STAT_HACK_P (bind))
8310 : : {
8311 : 44 : if (STAT_TYPE_VISIBLE_P (bind))
8312 : 18 : type = STAT_TYPE (bind);
8313 : 44 : bind = STAT_VISIBLE (bind);
8314 : : }
8315 : :
8316 : 44 : if (type && qualify_lookup (type, LOOK_want::TYPE))
8317 : 3 : return strip_using_decl (type);
8318 : :
8319 : 50 : if (bind && qualify_lookup (bind, LOOK_want::TYPE))
8320 : 50 : return strip_using_decl (bind);
8321 : 61 : }
8322 : :
8323 : 4 : if (!module_purview_p ())
8324 : : {
8325 : : /* We're in the global module, perhaps there's a tag
8326 : : there? */
8327 : :
8328 : : /* FIXME: In general we should probably merge global module
8329 : : classes in check_module_override rather than here, but for
8330 : : GCC14 let's just fix lazy declarations of __class_type_info in
8331 : : build_dynamic_cast_1. */
8332 : 4 : if (current_namespace == abi_node)
8333 : : {
8334 : 4 : tree g = (BINDING_VECTOR_CLUSTER (*slot, 0)
8335 : 4 : .slots[BINDING_SLOT_GLOBAL]);
8336 : 4 : for (ovl_iterator iter (g); iter; ++iter)
8337 : 4 : if (qualify_lookup (*iter, LOOK_want::TYPE))
8338 : 4 : return *iter;
8339 : : }
8340 : : }
8341 : : }
8342 : : }
8343 : :
8344 : : return NULL_TREE;
8345 : 19317628 : }
8346 : :
8347 : : /* The type TYPE is being declared. If it is a class template, or a
8348 : : specialization of a class template, do any processing required and
8349 : : perform error-checking. If IS_FRIEND is nonzero, this TYPE is
8350 : : being declared a friend. B is the binding level at which this TYPE
8351 : : should be bound.
8352 : :
8353 : : Returns the TYPE_DECL for TYPE, which may have been altered by this
8354 : : processing. */
8355 : :
8356 : : static tree
8357 : 18567203 : maybe_process_template_type_declaration (tree type, int is_friend,
8358 : : cp_binding_level *b)
8359 : : {
8360 : 18567203 : tree decl = TYPE_NAME (type);
8361 : :
8362 : 18567203 : if (processing_template_parmlist)
8363 : : /* You can't declare a new template type in a template parameter
8364 : : list. But, you can declare a non-template type:
8365 : :
8366 : : template <class A*> struct S;
8367 : :
8368 : : is a forward-declaration of `A'. */
8369 : : ;
8370 : 18567097 : else if (b->kind == sk_namespace
8371 : 4950978 : && current_binding_level->kind != sk_namespace)
8372 : : /* If this new type is being injected into a containing scope,
8373 : : then it's not a template type. */
8374 : : ;
8375 : : else
8376 : : {
8377 : 18509576 : gcc_assert (MAYBE_CLASS_TYPE_P (type)
8378 : : || TREE_CODE (type) == ENUMERAL_TYPE);
8379 : :
8380 : 18509576 : if (processing_template_decl)
8381 : : {
8382 : 11335213 : decl = push_template_decl (decl, is_friend);
8383 : 11335213 : if (decl == error_mark_node)
8384 : : return error_mark_node;
8385 : :
8386 : : /* If the current binding level is the binding level for the
8387 : : template parameters (see the comment in
8388 : : begin_template_parm_list) and the enclosing level is a class
8389 : : scope, and we're not looking at a friend, push the
8390 : : declaration of the member class into the class scope. In the
8391 : : friend case, push_template_decl will already have put the
8392 : : friend into global scope, if appropriate. */
8393 : 11335192 : if (TREE_CODE (type) != ENUMERAL_TYPE
8394 : 11039519 : && !is_friend && b->kind == sk_template_parms
8395 : 9236754 : && b->level_chain->kind == sk_class)
8396 : : {
8397 : 630855 : finish_member_declaration (CLASSTYPE_TI_TEMPLATE (type));
8398 : :
8399 : 630855 : if (!COMPLETE_TYPE_P (current_class_type))
8400 : 630840 : maybe_add_class_template_decl_list (current_class_type,
8401 : : type, /*friend_p=*/0);
8402 : : }
8403 : : }
8404 : : }
8405 : :
8406 : : return decl;
8407 : : }
8408 : :
8409 : : /* Push a tag name NAME for struct/class/union/enum type TYPE. In case
8410 : : that the NAME is a class template, the tag is processed but not pushed.
8411 : :
8412 : : The pushed scope depend on the SCOPE parameter:
8413 : : - When SCOPE is TS_CURRENT, put it into the inner-most non-sk_cleanup
8414 : : scope.
8415 : : - When SCOPE is TS_GLOBAL, put it in the inner-most non-class and
8416 : : non-template-parameter scope. This case is needed for forward
8417 : : declarations.
8418 : : - When SCOPE is TS_WITHIN_ENCLOSING_NON_CLASS, this is similar to
8419 : : TS_GLOBAL case except that names within template-parameter scopes
8420 : : are not pushed at all.
8421 : :
8422 : : Returns TYPE upon success and ERROR_MARK_NODE otherwise. */
8423 : :
8424 : : tree
8425 : 18567203 : pushtag (tree name, tree type, TAG_how how)
8426 : : {
8427 : 18567203 : tree decl;
8428 : :
8429 : 18567203 : gcc_assert (identifier_p (name));
8430 : :
8431 : 18567203 : auto_cond_timevar tv (TV_NAME_LOOKUP);
8432 : :
8433 : 18567203 : cp_binding_level *b = current_binding_level;
8434 : 18627568 : while (true)
8435 : : {
8436 : 18627568 : if (/* Cleanup scopes are not scopes from the point of view of
8437 : : the language. */
8438 : 18627568 : b->kind == sk_cleanup
8439 : : /* Neither are function parameter scopes. */
8440 : 18627562 : || b->kind == sk_function_parms
8441 : : /* Neither are the scopes used to hold template parameters
8442 : : for an explicit specialization. For an ordinary template
8443 : : declaration, these scopes are not scopes from the point of
8444 : : view of the language. */
8445 : 18623239 : || (b->kind == sk_template_parms
8446 : 9625784 : && (b->explicit_spec_p || how == TAG_how::GLOBAL)))
8447 : 4389 : b = b->level_chain;
8448 : 18623179 : else if (b->kind == sk_class && how != TAG_how::CURRENT_ONLY)
8449 : : {
8450 : 55976 : b = b->level_chain;
8451 : 55976 : if (b->kind == sk_template_parms)
8452 : 480 : b = b->level_chain;
8453 : : }
8454 : : else
8455 : : break;
8456 : : }
8457 : :
8458 : : /* Do C++ gratuitous typedefing. */
8459 : 18567203 : if (REAL_IDENTIFIER_TYPE_VALUE (name) != type)
8460 : : {
8461 : 18567203 : tree tdef;
8462 : 18567203 : tree context = TYPE_CONTEXT (type);
8463 : :
8464 : 18567203 : if (! context)
8465 : : {
8466 : : cp_binding_level *cb = b;
8467 : 29879201 : while (cb->kind != sk_namespace
8468 : 16322221 : && cb->kind != sk_class
8469 : 42912769 : && (cb->kind != sk_function_parms
8470 : 1463305 : || !cb->this_entity))
8471 : 11570263 : cb = cb->level_chain;
8472 : 18308938 : tree cs = cb->this_entity;
8473 : :
8474 : 18308938 : gcc_checking_assert (TREE_CODE (cs) == FUNCTION_DECL
8475 : : ? cs == current_function_decl
8476 : : : TYPE_P (cs) ? cs == current_class_type
8477 : : : cs == current_namespace);
8478 : :
8479 : 18308938 : if (how == TAG_how::CURRENT_ONLY
8480 : 188343 : || (cs && TREE_CODE (cs) == FUNCTION_DECL))
8481 : : context = cs;
8482 : 188247 : else if (cs && TYPE_P (cs))
8483 : : /* When declaring a friend class of a local class, we want
8484 : : to inject the newly named class into the scope
8485 : : containing the local class, not the namespace
8486 : : scope. */
8487 : 130596 : context = decl_function_context (get_type_decl (cs));
8488 : : }
8489 : 18308842 : if (!context)
8490 : 188247 : context = current_namespace;
8491 : :
8492 : 18567203 : tdef = create_implicit_typedef (name, type);
8493 : 18567203 : DECL_CONTEXT (tdef) = FROB_CONTEXT (context);
8494 : 18567203 : set_originating_module (tdef);
8495 : :
8496 : 18567203 : decl = maybe_process_template_type_declaration
8497 : 18567203 : (type, how == TAG_how::HIDDEN_FRIEND, b);
8498 : 18567203 : if (decl == error_mark_node)
8499 : : return decl;
8500 : :
8501 : 18567182 : if (b->kind == sk_class)
8502 : : {
8503 : 2527178 : if (!TYPE_BEING_DEFINED (current_class_type))
8504 : : /* Don't push anywhere if the class is complete; a lambda in an
8505 : : NSDMI is not a member of the class. */
8506 : : ;
8507 : 2526729 : else if (!PROCESSING_REAL_TEMPLATE_DECL_P ())
8508 : : /* Put this TYPE_DECL on the TYPE_FIELDS list for the
8509 : : class. But if it's a member template class, we want
8510 : : the TEMPLATE_DECL, not the TYPE_DECL, so this is done
8511 : : later. */
8512 : 2526717 : finish_member_declaration (decl);
8513 : : else
8514 : 12 : pushdecl_class_level (decl);
8515 : : }
8516 : 16040004 : else if (b->kind == sk_template_parms)
8517 : : {
8518 : : /* Do not push the tag here -- we'll want to push the
8519 : : TEMPLATE_DECL. */
8520 : 9625706 : if (b->level_chain->kind != sk_class)
8521 : 8605975 : set_identifier_type_value_with_scope (name, tdef, b->level_chain);
8522 : : }
8523 : : else
8524 : : {
8525 : 6414298 : decl = do_pushdecl_with_scope
8526 : 6414298 : (decl, b, /*hiding=*/(how == TAG_how::HIDDEN_FRIEND));
8527 : 6414298 : if (decl == error_mark_node)
8528 : : return decl;
8529 : :
8530 : 6414253 : if (DECL_CONTEXT (decl) == std_node
8531 : 2144090 : && init_list_identifier == DECL_NAME (TYPE_NAME (type))
8532 : 6414259 : && !CLASSTYPE_TEMPLATE_INFO (type))
8533 : : {
8534 : 6 : error ("declaration of %<std::initializer_list%> does not match "
8535 : : "%<#include <initializer_list>%>, isn%'t a template");
8536 : 6 : return error_mark_node;
8537 : : }
8538 : : }
8539 : :
8540 : 18567131 : TYPE_CONTEXT (type) = DECL_CONTEXT (decl);
8541 : :
8542 : : /* If this is a local class, keep track of it. We need this
8543 : : information for name-mangling, and so that it is possible to
8544 : : find all function definitions in a translation unit in a
8545 : : convenient way. (It's otherwise tricky to find a member
8546 : : function definition it's only pointed to from within a local
8547 : : class.) */
8548 : 18567131 : if (TYPE_FUNCTION_SCOPE_P (type))
8549 : : {
8550 : 1463284 : if (processing_template_decl)
8551 : : {
8552 : : /* Push a DECL_EXPR so we call pushtag at the right time in
8553 : : template instantiation rather than in some nested context. */
8554 : 674055 : add_decl_expr (decl);
8555 : : }
8556 : : /* Lambdas use LAMBDA_EXPR_DISCRIMINATOR instead. */
8557 : 1575109 : else if (!LAMBDA_TYPE_P (type))
8558 : 534664 : determine_local_discriminator (TYPE_NAME (type));
8559 : : }
8560 : : }
8561 : :
8562 : 18567131 : if (b->kind == sk_class
8563 : 18567131 : && !COMPLETE_TYPE_P (current_class_type))
8564 : 2526747 : maybe_add_class_template_decl_list (current_class_type,
8565 : : type, /*friend_p=*/0);
8566 : :
8567 : 18567131 : decl = TYPE_NAME (type);
8568 : 18567131 : gcc_assert (TREE_CODE (decl) == TYPE_DECL);
8569 : :
8570 : : /* Set type visibility now if this is a forward declaration. */
8571 : 18567131 : TREE_PUBLIC (decl) = 1;
8572 : 18567131 : determine_visibility (decl);
8573 : 18567131 : check_module_decl_linkage (decl);
8574 : :
8575 : 18567131 : return type;
8576 : 18567203 : }
8577 : :
8578 : : /* Subroutines for reverting temporarily to top-level for instantiation
8579 : : of templates and such. We actually need to clear out the class- and
8580 : : local-value slots of all identifiers, so that only the global values
8581 : : are at all visible. Simply setting current_binding_level to the global
8582 : : scope isn't enough, because more binding levels may be pushed. */
8583 : : struct saved_scope *scope_chain;
8584 : :
8585 : : /* Return true if ID has not already been marked. */
8586 : :
8587 : : static inline bool
8588 : >16015*10^7 : store_binding_p (tree id)
8589 : : {
8590 : >32030*10^7 : if (!id || !IDENTIFIER_BINDING (id))
8591 : : return false;
8592 : :
8593 : 1997948051 : if (IDENTIFIER_MARKED (id))
8594 : 0 : return false;
8595 : :
8596 : : return true;
8597 : : }
8598 : :
8599 : : /* Add an appropriate binding to *OLD_BINDINGS which needs to already
8600 : : have enough space reserved. */
8601 : :
8602 : : static void
8603 : 833553976 : store_binding (tree id, vec<cxx_saved_binding, va_gc> **old_bindings)
8604 : : {
8605 : 833553976 : cxx_saved_binding saved;
8606 : :
8607 : 833553976 : gcc_checking_assert (store_binding_p (id));
8608 : :
8609 : 833553976 : IDENTIFIER_MARKED (id) = 1;
8610 : :
8611 : 833553976 : saved.identifier = id;
8612 : 833553976 : saved.binding = IDENTIFIER_BINDING (id);
8613 : 833553976 : saved.real_type_value = REAL_IDENTIFIER_TYPE_VALUE (id);
8614 : 833553976 : (*old_bindings)->quick_push (saved);
8615 : 833553976 : IDENTIFIER_BINDING (id) = NULL;
8616 : 833553976 : }
8617 : :
8618 : : static void
8619 : 479350741 : store_bindings (tree names, vec<cxx_saved_binding, va_gc> **old_bindings)
8620 : : {
8621 : 479350741 : static vec<tree> bindings_need_stored;
8622 : 479350741 : tree t, id;
8623 : 479350741 : size_t i;
8624 : :
8625 : 479350741 : auto_cond_timevar tv (TV_NAME_LOOKUP);
8626 : >15927*10^7 : for (t = names; t; t = TREE_CHAIN (t))
8627 : : {
8628 : >15831*10^7 : if (TREE_CODE (t) == TREE_LIST)
8629 : 6759144 : id = TREE_PURPOSE (t);
8630 : : else
8631 : >15830*10^7 : id = DECL_NAME (t);
8632 : :
8633 : >15831*10^7 : if (store_binding_p (id))
8634 : 330840099 : bindings_need_stored.safe_push (id);
8635 : : }
8636 : 479350741 : if (!bindings_need_stored.is_empty ())
8637 : : {
8638 : 128714223 : vec_safe_reserve_exact (*old_bindings, bindings_need_stored.length ());
8639 : 588268545 : for (i = 0; bindings_need_stored.iterate (i, &id); ++i)
8640 : : {
8641 : : /* We can apparently have duplicates in NAMES. */
8642 : 330840099 : if (store_binding_p (id))
8643 : 330840039 : store_binding (id, old_bindings);
8644 : : }
8645 : 128714223 : bindings_need_stored.truncate (0);
8646 : : }
8647 : 479350741 : }
8648 : :
8649 : : /* Like store_bindings, but NAMES is a vector of cp_class_binding
8650 : : objects, rather than a TREE_LIST. */
8651 : :
8652 : : static void
8653 : 234492565 : store_class_bindings (vec<cp_class_binding, va_gc> *names,
8654 : : vec<cxx_saved_binding, va_gc> **old_bindings)
8655 : : {
8656 : 234492565 : static vec<tree> bindings_need_stored;
8657 : 234492565 : size_t i;
8658 : 234492565 : cp_class_binding *cb;
8659 : :
8660 : 913194010 : for (i = 0; vec_safe_iterate (names, i, &cb); ++i)
8661 : 678701445 : if (store_binding_p (cb->identifier))
8662 : 502713937 : bindings_need_stored.safe_push (cb->identifier);
8663 : 234492565 : if (!bindings_need_stored.is_empty ())
8664 : : {
8665 : 55647836 : tree id;
8666 : 55647836 : vec_safe_reserve_exact (*old_bindings, bindings_need_stored.length ());
8667 : 614009609 : for (i = 0; bindings_need_stored.iterate (i, &id); ++i)
8668 : 502713937 : store_binding (id, old_bindings);
8669 : 55647836 : bindings_need_stored.truncate (0);
8670 : : }
8671 : 234492565 : }
8672 : :
8673 : : /* A chain of saved_scope structures awaiting reuse. */
8674 : :
8675 : : static GTY((deletable)) struct saved_scope *free_saved_scope;
8676 : :
8677 : : void
8678 : 306030558 : push_to_top_level (void)
8679 : : {
8680 : 306030558 : struct saved_scope *s;
8681 : 306030558 : cp_binding_level *b;
8682 : 306030558 : cxx_saved_binding *sb;
8683 : 306030558 : size_t i;
8684 : 306030558 : bool need_pop;
8685 : :
8686 : 306030558 : auto_cond_timevar tv (TV_NAME_LOOKUP);
8687 : :
8688 : : /* Reuse or create a new structure for this saved scope. */
8689 : 306030558 : if (free_saved_scope != NULL)
8690 : : {
8691 : 304953379 : s = free_saved_scope;
8692 : 304953379 : free_saved_scope = s->prev;
8693 : :
8694 : 304953379 : vec<cxx_saved_binding, va_gc> *old_bindings = s->old_bindings;
8695 : 304953379 : memset (s, 0, sizeof (*s));
8696 : : /* Also reuse the structure's old_bindings vector. */
8697 : 304953379 : vec_safe_truncate (old_bindings, 0);
8698 : 304953379 : s->old_bindings = old_bindings;
8699 : : }
8700 : : else
8701 : 1077179 : s = ggc_cleared_alloc<saved_scope> ();
8702 : :
8703 : 306030558 : b = scope_chain ? current_binding_level : 0;
8704 : :
8705 : : /* If we're in the middle of some function, save our state. */
8706 : 306030558 : if (cfun)
8707 : : {
8708 : 61104995 : need_pop = true;
8709 : 61104995 : push_function_context ();
8710 : : }
8711 : : else
8712 : : need_pop = false;
8713 : :
8714 : 306030558 : if (scope_chain && previous_class_level)
8715 : 88096463 : store_class_bindings (previous_class_level->class_shadowed,
8716 : : &s->old_bindings);
8717 : :
8718 : : /* Have to include the global scope, because class-scope decls
8719 : : aren't listed anywhere useful. */
8720 : 785381299 : for (; b; b = b->level_chain)
8721 : : {
8722 : 785288596 : tree t;
8723 : :
8724 : : /* Template IDs are inserted into the global level. If they were
8725 : : inserted into namespace level, finish_file wouldn't find them
8726 : : when doing pending instantiations. Therefore, don't stop at
8727 : : namespace level, but continue until :: . */
8728 : 785288596 : if (global_scope_p (b))
8729 : : break;
8730 : :
8731 : 479350741 : store_bindings (b->names, &s->old_bindings);
8732 : : /* We also need to check class_shadowed to save class-level type
8733 : : bindings, since pushclass doesn't fill in b->names. */
8734 : 479350741 : if (b->kind == sk_class)
8735 : 146396102 : store_class_bindings (b->class_shadowed, &s->old_bindings);
8736 : :
8737 : : /* Unwind type-value slots back to top level. */
8738 : 795784201 : for (t = b->type_shadowed; t; t = TREE_CHAIN (t))
8739 : 316433460 : SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (t), TREE_VALUE (t));
8740 : : }
8741 : :
8742 : 1139584534 : FOR_EACH_VEC_SAFE_ELT (s->old_bindings, i, sb)
8743 : 833553976 : IDENTIFIER_MARKED (sb->identifier) = 0;
8744 : :
8745 : 306030558 : s->prev = scope_chain;
8746 : 306030558 : s->bindings = b;
8747 : 306030558 : s->need_pop_function_context = need_pop;
8748 : 306030558 : s->function_decl = current_function_decl;
8749 : 306030558 : s->unevaluated_operand = cp_unevaluated_operand;
8750 : 306030558 : s->inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
8751 : 306030558 : s->suppress_location_wrappers = suppress_location_wrappers;
8752 : 306030558 : s->x_stmt_tree.stmts_are_full_exprs_p = true;
8753 : :
8754 : 306030558 : scope_chain = s;
8755 : 306030558 : current_function_decl = NULL_TREE;
8756 : 306030558 : current_lang_base = NULL;
8757 : 306030558 : current_lang_name = lang_name_cplusplus;
8758 : 306030558 : current_namespace = global_namespace;
8759 : 306030558 : push_class_stack ();
8760 : 306030558 : cp_unevaluated_operand = 0;
8761 : 306030558 : c_inhibit_evaluation_warnings = 0;
8762 : 306030558 : suppress_location_wrappers = 0;
8763 : 306030558 : }
8764 : :
8765 : : void
8766 : 305910765 : pop_from_top_level (void)
8767 : : {
8768 : 305910765 : struct saved_scope *s = scope_chain;
8769 : 305910765 : cxx_saved_binding *saved;
8770 : 305910765 : size_t i;
8771 : :
8772 : 305910765 : auto_cond_timevar tv (TV_NAME_LOOKUP);
8773 : :
8774 : 305910765 : pop_class_stack ();
8775 : :
8776 : 305910765 : release_tree_vector (current_lang_base);
8777 : :
8778 : 305910765 : scope_chain = s->prev;
8779 : 1139461930 : FOR_EACH_VEC_SAFE_ELT (s->old_bindings, i, saved)
8780 : : {
8781 : 833551165 : tree id = saved->identifier;
8782 : :
8783 : 833551165 : IDENTIFIER_BINDING (id) = saved->binding;
8784 : 833551165 : SET_IDENTIFIER_TYPE_VALUE (id, saved->real_type_value);
8785 : : }
8786 : :
8787 : : /* If we were in the middle of compiling a function, restore our
8788 : : state. */
8789 : 305910765 : if (s->need_pop_function_context)
8790 : 61104974 : pop_function_context ();
8791 : 305910765 : current_function_decl = s->function_decl;
8792 : 305910765 : cp_unevaluated_operand = s->unevaluated_operand;
8793 : 305910765 : c_inhibit_evaluation_warnings = s->inhibit_evaluation_warnings;
8794 : 305910765 : suppress_location_wrappers = s->suppress_location_wrappers;
8795 : :
8796 : : /* Make this saved_scope structure available for reuse by
8797 : : push_to_top_level. */
8798 : 305910765 : s->prev = free_saved_scope;
8799 : 305910765 : free_saved_scope = s;
8800 : 305910765 : }
8801 : :
8802 : : namespace {
8803 : :
8804 : : /* Helper class for saving/restoring relevant global flags for the
8805 : : function-local case of maybe_push_to_top_level. */
8806 : :
8807 : : struct local_state_t
8808 : : {
8809 : : int cp_unevaluated_operand;
8810 : : int c_inhibit_evaluation_warnings;
8811 : : int cp_noexcept_operand_;
8812 : :
8813 : : static local_state_t
8814 : 1769916 : save_and_clear ()
8815 : : {
8816 : 1769916 : local_state_t s;
8817 : 1769916 : s.cp_unevaluated_operand = ::cp_unevaluated_operand;
8818 : 1769916 : ::cp_unevaluated_operand = 0;
8819 : 1769916 : s.c_inhibit_evaluation_warnings = ::c_inhibit_evaluation_warnings;
8820 : 1769916 : ::c_inhibit_evaluation_warnings = 0;
8821 : 1769916 : s.cp_noexcept_operand_ = ::cp_noexcept_operand;
8822 : 1769916 : ::cp_noexcept_operand = 0;
8823 : 1769916 : return s;
8824 : : }
8825 : :
8826 : : void
8827 : 1769916 : restore () const
8828 : : {
8829 : 1769916 : ::cp_unevaluated_operand = this->cp_unevaluated_operand;
8830 : 1769916 : ::c_inhibit_evaluation_warnings = this->c_inhibit_evaluation_warnings;
8831 : 1769916 : ::cp_noexcept_operand = this->cp_noexcept_operand_;
8832 : : }
8833 : : };
8834 : :
8835 : : vec<local_state_t> local_state_stack;
8836 : :
8837 : : } // anon namespace
8838 : :
8839 : : /* Like push_to_top_level, but not if D is function-local. Returns whether we
8840 : : did push to top. */
8841 : :
8842 : : bool
8843 : 46690304 : maybe_push_to_top_level (tree d)
8844 : : {
8845 : : /* Push if D isn't function-local, or is a lambda function, for which name
8846 : : resolution is already done. */
8847 : 46690304 : const bool push_to_top
8848 : 47225847 : = (LAMBDA_FUNCTION_P (d)
8849 : 46557552 : || (TREE_CODE (d) == TYPE_DECL
8850 : 23777151 : && TREE_TYPE (d)
8851 : 47144769 : && LAMBDA_TYPE_P (TREE_TYPE (d)))
8852 : 46021701 : || !current_function_decl
8853 : 60609678 : || !decl_function_context (d));
8854 : :
8855 : 46690304 : if (push_to_top)
8856 : 44920388 : push_to_top_level ();
8857 : : else
8858 : : {
8859 : 1769916 : gcc_assert (!processing_template_decl);
8860 : 1769916 : push_function_context ();
8861 : 1769916 : local_state_stack.safe_push (local_state_t::save_and_clear ());
8862 : : }
8863 : :
8864 : 46690304 : return push_to_top;
8865 : : }
8866 : :
8867 : : /* Return from whatever maybe_push_to_top_level did. */
8868 : :
8869 : : void
8870 : 46690295 : maybe_pop_from_top_level (bool push_to_top)
8871 : : {
8872 : 46690295 : if (push_to_top)
8873 : 44920379 : pop_from_top_level ();
8874 : : else
8875 : : {
8876 : 1769916 : local_state_stack.pop ().restore ();
8877 : 1769916 : pop_function_context ();
8878 : : }
8879 : 46690295 : }
8880 : :
8881 : : /* Push into the scope of the namespace NS, even if it is deeply
8882 : : nested within another namespace. */
8883 : :
8884 : : void
8885 : 75940285 : push_nested_namespace (tree ns)
8886 : : {
8887 : 75940285 : auto_cond_timevar tv (TV_NAME_LOOKUP);
8888 : 75940285 : if (ns == global_namespace)
8889 : 37810110 : push_to_top_level ();
8890 : : else
8891 : : {
8892 : 75254337 : push_nested_namespace (CP_DECL_CONTEXT (ns));
8893 : 38130175 : resume_scope (NAMESPACE_LEVEL (ns));
8894 : 38130175 : current_namespace = ns;
8895 : : }
8896 : 75940285 : }
8897 : :
8898 : : /* Pop back from the scope of the namespace NS, which was previously
8899 : : entered with push_nested_namespace. */
8900 : :
8901 : : void
8902 : 37799316 : pop_nested_namespace (tree ns)
8903 : : {
8904 : 37799316 : auto_cond_timevar tv (TV_NAME_LOOKUP);
8905 : 113728807 : while (ns != global_namespace)
8906 : : {
8907 : 38130175 : ns = CP_DECL_CONTEXT (ns);
8908 : 38130175 : current_namespace = ns;
8909 : 38130175 : leave_scope ();
8910 : : }
8911 : :
8912 : 37799316 : pop_from_top_level ();
8913 : 37799316 : }
8914 : :
8915 : : /* Add TARGET to USINGS, if it does not already exist there. We used
8916 : : to build the complete graph of usings at this point, from the POV
8917 : : of the source namespaces. Now we build that as we perform the
8918 : : unqualified search. */
8919 : :
8920 : : static void
8921 : 134331 : add_using_namespace (vec<tree, va_gc> *&usings, tree target)
8922 : : {
8923 : 134331 : if (usings)
8924 : 1413 : for (unsigned ix = usings->length (); ix--;)
8925 : 941 : if ((*usings)[ix] == target)
8926 : : return;
8927 : :
8928 : 133876 : vec_safe_push (usings, target);
8929 : : }
8930 : :
8931 : : /* Tell the debug system of a using directive. */
8932 : :
8933 : : static void
8934 : 171941 : emit_debug_info_using_namespace (tree from, tree target, bool implicit)
8935 : : {
8936 : : /* Emit debugging info. */
8937 : 171941 : tree context = from != global_namespace ? from : NULL_TREE;
8938 : 171941 : debug_hooks->imported_module_or_decl (target, NULL_TREE, context, false,
8939 : : implicit);
8940 : 171941 : }
8941 : :
8942 : : /* Process a using directive. */
8943 : :
8944 : : void
8945 : 133137 : finish_using_directive (tree target, tree attribs)
8946 : : {
8947 : 133137 : if (target == error_mark_node)
8948 : : return;
8949 : :
8950 : 133117 : if (current_binding_level->kind != sk_namespace)
8951 : 102762 : add_stmt (build_stmt (input_location, USING_STMT, target));
8952 : : else
8953 : 60710 : emit_debug_info_using_namespace (current_binding_level->this_entity,
8954 : 30355 : ORIGINAL_NAMESPACE (target), false);
8955 : :
8956 : 266234 : add_using_namespace (current_binding_level->using_directives,
8957 : 133117 : ORIGINAL_NAMESPACE (target));
8958 : :
8959 : 133117 : bool diagnosed = false;
8960 : 133117 : if (attribs != error_mark_node)
8961 : 133181 : for (tree a = attribs; a; a = TREE_CHAIN (a))
8962 : : {
8963 : 64 : tree name = get_attribute_name (a);
8964 : 64 : if (current_binding_level->kind == sk_namespace
8965 : 64 : && is_attribute_p ("strong", name))
8966 : : {
8967 : 12 : auto_diagnostic_group d;
8968 : 18 : if (warning (0, "%<strong%> using directive no longer supported")
8969 : 12 : && CP_DECL_CONTEXT (target) == current_namespace)
8970 : 6 : inform (DECL_SOURCE_LOCATION (target),
8971 : : "you can use an inline namespace instead");
8972 : 12 : }
8973 : 49 : else if ((flag_openmp || flag_openmp_simd)
8974 : 3 : && get_attribute_namespace (a) == omp_identifier
8975 : 55 : && (is_attribute_p ("directive", name)
8976 : 0 : || is_attribute_p ("sequence", name)
8977 : 0 : || is_attribute_p ("decl", name)))
8978 : : {
8979 : 3 : if (!diagnosed)
8980 : : {
8981 : 3 : if (tree ar = TREE_VALUE (a))
8982 : : {
8983 : 3 : tree d = TREE_VALUE (ar);
8984 : 3 : gcc_assert (TREE_CODE (d) == DEFERRED_PARSE);
8985 : 3 : error ("%<omp::%s%> not allowed to be specified in "
8986 : : "this context",
8987 : 3 : TREE_PUBLIC (d) ? "decl" : "directive");
8988 : : }
8989 : : else
8990 : 0 : error ("%<omp::%E%> not allowed to be specified in this "
8991 : : "context", name);
8992 : : diagnosed = true;
8993 : : }
8994 : : }
8995 : 49 : else if (!attribute_ignored_p (a))
8996 : 34 : warning (OPT_Wattributes, "%qD attribute directive ignored", name);
8997 : : }
8998 : : }
8999 : :
9000 : : /* Pushes X into the global namespace. */
9001 : :
9002 : : tree
9003 : 349084 : pushdecl_top_level (tree x)
9004 : : {
9005 : 349084 : auto_cond_timevar tv (TV_NAME_LOOKUP);
9006 : 349084 : push_to_top_level ();
9007 : 349084 : gcc_checking_assert (!DECL_CONTEXT (x));
9008 : 349084 : DECL_CONTEXT (x) = FROB_CONTEXT (global_namespace);
9009 : 349084 : x = pushdecl_namespace_level (x);
9010 : 349084 : pop_from_top_level ();
9011 : 698168 : return x;
9012 : 349084 : }
9013 : :
9014 : : /* Pushes X into the global namespace and calls cp_finish_decl to
9015 : : register the variable, initializing it with INIT. */
9016 : :
9017 : : tree
9018 : 2065440 : pushdecl_top_level_and_finish (tree x, tree init)
9019 : : {
9020 : 2065440 : auto_cond_timevar tv (TV_NAME_LOOKUP);
9021 : 2065440 : push_to_top_level ();
9022 : 2065440 : gcc_checking_assert (!DECL_CONTEXT (x));
9023 : 2065440 : DECL_CONTEXT (x) = FROB_CONTEXT (global_namespace);
9024 : 2065440 : x = pushdecl_namespace_level (x);
9025 : 2065440 : cp_finish_decl (x, init, false, NULL_TREE, 0);
9026 : 2065440 : pop_from_top_level ();
9027 : 4130880 : return x;
9028 : 2065440 : }
9029 : :
9030 : : /* Enter the namespaces from current_namerspace to NS. */
9031 : :
9032 : : static int
9033 : 4677494 : push_inline_namespaces (tree ns)
9034 : : {
9035 : 4677494 : int count = 0;
9036 : 4677494 : if (ns != current_namespace)
9037 : : {
9038 : 15 : gcc_assert (ns != global_namespace);
9039 : 24 : count += push_inline_namespaces (CP_DECL_CONTEXT (ns));
9040 : 15 : resume_scope (NAMESPACE_LEVEL (ns));
9041 : 15 : current_namespace = ns;
9042 : 15 : count++;
9043 : : }
9044 : 4677494 : return count;
9045 : : }
9046 : :
9047 : : /* SLOT is the (possibly empty) binding slot for NAME in CTX.
9048 : : Reuse or create a namespace NAME. NAME is null for the anonymous
9049 : : namespace. */
9050 : :
9051 : : static tree
9052 : 3163 : reuse_namespace (tree *slot, tree ctx, tree name)
9053 : : {
9054 : 3163 : if (modules_p () && *slot && TREE_PUBLIC (ctx) && name)
9055 : : {
9056 : : /* Public namespace. Shared. */
9057 : 1555 : tree *global_slot = slot;
9058 : 1555 : if (TREE_CODE (*slot) == BINDING_VECTOR)
9059 : 117 : global_slot = get_fixed_binding_slot (slot, name,
9060 : : BINDING_SLOT_GLOBAL, false);
9061 : :
9062 : 1558 : for (ovl_iterator iter (*global_slot); iter; ++iter)
9063 : : {
9064 : 1555 : tree decl = *iter;
9065 : :
9066 : 1555 : if (TREE_CODE (decl) == NAMESPACE_DECL && !DECL_NAMESPACE_ALIAS (decl))
9067 : 1552 : return decl;
9068 : : }
9069 : : }
9070 : : return NULL_TREE;
9071 : : }
9072 : :
9073 : : static tree
9074 : 712920 : make_namespace (tree ctx, tree name, location_t loc, bool inline_p)
9075 : : {
9076 : : /* Create the namespace. */
9077 : 712920 : tree ns = build_lang_decl (NAMESPACE_DECL, name, void_type_node);
9078 : 712920 : DECL_SOURCE_LOCATION (ns) = loc;
9079 : 712920 : SCOPE_DEPTH (ns) = SCOPE_DEPTH (ctx) + 1;
9080 : 712920 : if (!SCOPE_DEPTH (ns))
9081 : : /* We only allow depth 255. */
9082 : 0 : sorry ("cannot nest more than %d namespaces", SCOPE_DEPTH (ctx));
9083 : 712920 : DECL_CONTEXT (ns) = FROB_CONTEXT (ctx);
9084 : :
9085 : 712920 : if (!name)
9086 : : /* Anon-namespaces in different header-unit imports are distinct.
9087 : : But that's ok as their contents all have internal linkage.
9088 : : (This is different to how they'd behave as textual includes,
9089 : : but doing this at all is really odd source.) */
9090 : 1229 : SET_DECL_ASSEMBLER_NAME (ns, anon_identifier);
9091 : 711691 : else if (TREE_PUBLIC (ctx))
9092 : 711628 : TREE_PUBLIC (ns) = true;
9093 : :
9094 : 712920 : if (inline_p)
9095 : 140372 : DECL_NAMESPACE_INLINE_P (ns) = true;
9096 : :
9097 : 712920 : return ns;
9098 : : }
9099 : :
9100 : : /* NS was newly created, finish off making it. */
9101 : :
9102 : : static void
9103 : 712920 : make_namespace_finish (tree ns, tree *slot, bool from_import = false)
9104 : : {
9105 : 712920 : if (modules_p () && TREE_PUBLIC (ns) && (from_import || *slot != ns))
9106 : : {
9107 : : /* Merge into global slot. */
9108 : 1599 : tree *gslot = get_fixed_binding_slot (slot, DECL_NAME (ns),
9109 : : BINDING_SLOT_GLOBAL, true);
9110 : 1599 : *gslot = ns;
9111 : : }
9112 : :
9113 : 712920 : tree ctx = CP_DECL_CONTEXT (ns);
9114 : 712920 : cp_binding_level *scope = ggc_cleared_alloc<cp_binding_level> ();
9115 : 712920 : scope->this_entity = ns;
9116 : 712920 : scope->more_cleanups_ok = true;
9117 : 712920 : scope->kind = sk_namespace;
9118 : 712920 : scope->level_chain = NAMESPACE_LEVEL (ctx);
9119 : 712920 : NAMESPACE_LEVEL (ns) = scope;
9120 : :
9121 : 712920 : if (DECL_NAMESPACE_INLINE_P (ns))
9122 : 140372 : vec_safe_push (DECL_NAMESPACE_INLINEES (ctx), ns);
9123 : :
9124 : 712920 : if (DECL_NAMESPACE_INLINE_P (ns) || !DECL_NAME (ns))
9125 : 141586 : emit_debug_info_using_namespace (ctx, ns, true);
9126 : :
9127 : : /* An unnamed namespace implicitly has a using-directive inserted so
9128 : : that its contents are usable in the surrounding context. */
9129 : 712920 : if (!DECL_NAMESPACE_INLINE_P (ns) && !DECL_NAME (ns))
9130 : 1214 : add_using_namespace (NAMESPACE_LEVEL (ctx)->using_directives, ns);
9131 : 712920 : }
9132 : :
9133 : : /* Push into the scope of the NAME namespace. If NAME is NULL_TREE,
9134 : : then we enter an anonymous namespace. If MAKE_INLINE is true, then
9135 : : we create an inline namespace (it is up to the caller to check upon
9136 : : redefinition). Return the number of namespaces entered. */
9137 : :
9138 : : int
9139 : 5388815 : push_namespace (tree name, bool make_inline)
9140 : : {
9141 : 5388815 : auto_cond_timevar tv (TV_NAME_LOOKUP);
9142 : 5388815 : int count = 0;
9143 : :
9144 : : /* We should not get here if the global_namespace is not yet constructed
9145 : : nor if NAME designates the global namespace: The global scope is
9146 : : constructed elsewhere. */
9147 : 5388815 : gcc_checking_assert (global_namespace != NULL && name != global_identifier);
9148 : :
9149 : 5388815 : tree ns = NULL_TREE;
9150 : 5388815 : {
9151 : 5388815 : name_lookup lookup (name);
9152 : 5388815 : if (!lookup.search_qualified (current_namespace, /*usings=*/false))
9153 : : ;
9154 : 4677494 : else if (TREE_CODE (lookup.value) == TREE_LIST)
9155 : : {
9156 : : /* An ambiguous lookup. If exactly one is a namespace, we
9157 : : want that. If more than one is a namespace, error, but
9158 : : pick one of them. */
9159 : : /* DR2061 can cause us to find multiple namespaces of the same
9160 : : name. We must treat that carefully and avoid thinking we
9161 : : need to push a new (possibly) duplicate namespace. Hey,
9162 : : if you want to use the same identifier within an inline
9163 : : nest, knock yourself out. */
9164 : 9 : for (tree *chain = &lookup.value, next; (next = *chain);)
9165 : : {
9166 : 6 : tree decl = TREE_VALUE (next);
9167 : 6 : if (TREE_CODE (decl) == NAMESPACE_DECL)
9168 : : {
9169 : 6 : if (!ns)
9170 : : ns = decl;
9171 : 3 : else if (SCOPE_DEPTH (ns) >= SCOPE_DEPTH (decl))
9172 : 6 : ns = decl;
9173 : :
9174 : : /* Advance. */
9175 : 6 : chain = &TREE_CHAIN (next);
9176 : : }
9177 : : else
9178 : : /* Stitch out. */
9179 : 0 : *chain = TREE_CHAIN (next);
9180 : : }
9181 : :
9182 : 3 : if (TREE_CHAIN (lookup.value))
9183 : : {
9184 : 3 : error ("%<namespace %E%> is ambiguous", name);
9185 : 3 : print_candidates (lookup.value);
9186 : : }
9187 : : }
9188 : 4677491 : else if (TREE_CODE (lookup.value) == NAMESPACE_DECL)
9189 : : ns = lookup.value;
9190 : :
9191 : 4677482 : if (ns)
9192 : 4677482 : if (tree dna = DECL_NAMESPACE_ALIAS (ns))
9193 : : {
9194 : : /* A namespace alias is not allowed here, but if the alias
9195 : : is for a namespace also inside the current scope,
9196 : : accept it with a diagnostic. That's better than dying
9197 : : horribly. */
9198 : 9 : if (is_nested_namespace (current_namespace, CP_DECL_CONTEXT (dna)))
9199 : : {
9200 : 6 : error ("namespace alias %qD not allowed here, "
9201 : : "assuming %qD", ns, dna);
9202 : 6 : ns = dna;
9203 : : }
9204 : : else
9205 : : ns = NULL_TREE;
9206 : : }
9207 : 5388815 : }
9208 : :
9209 : 5388815 : if (ns)
9210 : : {
9211 : : /* DR2061. NS might be a member of an inline namespace. We
9212 : : need to push into those namespaces. */
9213 : 4677479 : if (modules_p ())
9214 : : {
9215 : 56980 : for (tree parent, ctx = ns; ctx != current_namespace;
9216 : : ctx = parent)
9217 : : {
9218 : 28490 : parent = CP_DECL_CONTEXT (ctx);
9219 : :
9220 : 28490 : tree bind = *find_namespace_slot (parent, DECL_NAME (ctx), false);
9221 : 28490 : if (bind != ctx)
9222 : : {
9223 : 119 : auto &cluster = BINDING_VECTOR_CLUSTER (bind, 0);
9224 : 119 : binding_slot &slot = cluster.slots[BINDING_SLOT_CURRENT];
9225 : 119 : gcc_checking_assert (!(tree)slot || (tree)slot == ctx);
9226 : 119 : slot = ctx;
9227 : : }
9228 : : }
9229 : : }
9230 : :
9231 : 4677479 : count += push_inline_namespaces (CP_DECL_CONTEXT (ns));
9232 : 4677479 : if (DECL_SOURCE_LOCATION (ns) == BUILTINS_LOCATION)
9233 : : /* It's not builtin now. */
9234 : 31601 : DECL_SOURCE_LOCATION (ns) = input_location;
9235 : : }
9236 : : else
9237 : : {
9238 : : /* Before making a new namespace, see if we already have one in
9239 : : the existing partitions of the current namespace. */
9240 : 711336 : tree *slot = find_namespace_slot (current_namespace, name, false);
9241 : 711336 : if (slot)
9242 : 27 : ns = reuse_namespace (slot, current_namespace, name);
9243 : 711336 : if (!ns)
9244 : 711324 : ns = make_namespace (current_namespace, name,
9245 : : input_location, make_inline);
9246 : :
9247 : 711336 : if (pushdecl (ns) == error_mark_node)
9248 : : ns = NULL_TREE;
9249 : : else
9250 : : {
9251 : : /* Finish up making the namespace. */
9252 : 711324 : add_decl_to_level (NAMESPACE_LEVEL (current_namespace), ns);
9253 : 711324 : if (!slot)
9254 : : {
9255 : 711309 : slot = find_namespace_slot (current_namespace, name);
9256 : : /* This should find the slot created by pushdecl. */
9257 : 711309 : gcc_checking_assert (slot && *slot == ns);
9258 : : }
9259 : : else
9260 : : {
9261 : : /* pushdecl could have expanded the hash table, so
9262 : : slot might be invalid. */
9263 : 15 : slot = find_namespace_slot (current_namespace, name);
9264 : 15 : gcc_checking_assert (slot);
9265 : : }
9266 : 711324 : make_namespace_finish (ns, slot);
9267 : : }
9268 : : }
9269 : :
9270 : 5388803 : if (ns)
9271 : : {
9272 : : /* A public namespace is exported only if explicitly marked, or
9273 : : it contains exported entities. */
9274 : 5388803 : if (module_exporting_p ())
9275 : : {
9276 : 14361 : if (TREE_PUBLIC (ns))
9277 : 14337 : DECL_MODULE_EXPORT_P (ns) = true;
9278 : 24 : else if (!header_module_p ())
9279 : : {
9280 : 12 : if (name)
9281 : : {
9282 : 6 : auto_diagnostic_group d;
9283 : 6 : error_at (input_location, "exporting namespace %qD with "
9284 : : "internal linkage", ns);
9285 : 6 : inform (input_location, "%qD has internal linkage because "
9286 : : "it was declared in an unnamed namespace", ns);
9287 : 6 : }
9288 : : else
9289 : 6 : error_at (input_location, "exporting unnamed namespace");
9290 : : }
9291 : : }
9292 : 5388803 : if (module_purview_p ())
9293 : 16500 : DECL_MODULE_PURVIEW_P (ns) = true;
9294 : :
9295 : 5603492 : if (make_inline && !DECL_NAMESPACE_INLINE_P (ns))
9296 : : {
9297 : 3 : auto_diagnostic_group d;
9298 : 3 : error_at (input_location,
9299 : : "inline namespace must be specified at initial definition");
9300 : 3 : inform (DECL_SOURCE_LOCATION (ns), "%qD defined here", ns);
9301 : 3 : }
9302 : 5388803 : resume_scope (NAMESPACE_LEVEL (ns));
9303 : 5388803 : current_namespace = ns;
9304 : 5388803 : count++;
9305 : : }
9306 : :
9307 : 10777630 : return count;
9308 : 5388815 : }
9309 : :
9310 : : /* Pop from the scope of the current namespace. */
9311 : :
9312 : : void
9313 : 5418535 : pop_namespace (void)
9314 : : {
9315 : 5418535 : auto_cond_timevar tv (TV_NAME_LOOKUP);
9316 : :
9317 : 5418535 : gcc_assert (current_namespace != global_namespace);
9318 : 5418535 : current_namespace = CP_DECL_CONTEXT (current_namespace);
9319 : : /* The binding level is not popped, as it might be re-opened later. */
9320 : 5418535 : leave_scope ();
9321 : 5418535 : }
9322 : :
9323 : : /* An IMPORT is an import that is defining namespace NAME inside CTX. Find or
9324 : : create that namespace and add it to the container's binding-vector. */
9325 : :
9326 : : tree
9327 : 3136 : add_imported_namespace (tree ctx, tree name, location_t loc, unsigned import,
9328 : : bool inline_p, bool visible_p)
9329 : : {
9330 : : // FIXME: Something is not correct about the VISIBLE_P handling. We
9331 : : // need to insert this namespace into
9332 : : // (a) the GLOBAL or PARTITION slot, if it is TREE_PUBLIC
9333 : : // (b) The importing module's slot (always)
9334 : : // (c) Do we need to put it in the CURRENT slot? This is the
9335 : : // confused piece.
9336 : :
9337 : 3136 : tree *slot = find_namespace_slot (ctx, name, true);
9338 : 3136 : tree decl = reuse_namespace (slot, ctx, name);
9339 : :
9340 : : /* Creating and binding. */
9341 : 3136 : if (!decl)
9342 : : {
9343 : 1596 : decl = make_namespace (ctx, name, loc, inline_p);
9344 : 1596 : make_namespace_finish (decl, slot, true);
9345 : : }
9346 : 1540 : else if (DECL_NAMESPACE_INLINE_P (decl) != inline_p)
9347 : : {
9348 : 0 : auto_diagnostic_group d;
9349 : 0 : error_at (loc, "%s namespace %qD conflicts with reachable definition",
9350 : : inline_p ? "inline" : "non-inline", decl);
9351 : 0 : inform (DECL_SOURCE_LOCATION (decl), "reachable %s definition here",
9352 : : inline_p ? "non-inline" : "inline");
9353 : 0 : }
9354 : :
9355 : 3136 : if (TREE_PUBLIC (decl) && TREE_CODE (*slot) == BINDING_VECTOR)
9356 : : {
9357 : : /* See if we can extend the final slot. */
9358 : 1692 : binding_cluster *last = BINDING_VECTOR_CLUSTER_LAST (*slot);
9359 : 1692 : gcc_checking_assert (last->indices[0].span);
9360 : : unsigned jx = BINDING_VECTOR_SLOTS_PER_CLUSTER;
9361 : :
9362 : 3279 : while (--jx)
9363 : 1692 : if (last->indices[jx].span)
9364 : : break;
9365 : 1692 : tree final = last->slots[jx];
9366 : 1692 : if (visible_p == !STAT_HACK_P (final)
9367 : 1361 : && MAYBE_STAT_DECL (final) == decl
9368 : 96 : && last->indices[jx].base + last->indices[jx].span == import
9369 : 1785 : && (BINDING_VECTOR_NUM_CLUSTERS (*slot) > 1
9370 : : || (BINDING_VECTOR_SLOTS_PER_CLUSTER > BINDING_SLOTS_FIXED
9371 : : && jx >= BINDING_SLOTS_FIXED)))
9372 : : {
9373 : 93 : last->indices[jx].span++;
9374 : 93 : return decl;
9375 : : }
9376 : : }
9377 : :
9378 : : /* Append a new slot. */
9379 : 3043 : tree *mslot = &(tree &)*append_imported_binding_slot (slot, name, import);
9380 : :
9381 : 3043 : gcc_assert (!*mslot);
9382 : 3043 : *mslot = visible_p ? decl : stat_hack (decl, NULL_TREE);
9383 : :
9384 : 3043 : return decl;
9385 : : }
9386 : :
9387 : : /* Pop off extraneous binding levels left over due to syntax errors.
9388 : : We don't pop past namespaces, as they might be valid. */
9389 : :
9390 : : void
9391 : 91333 : pop_everything (void)
9392 : : {
9393 : 91333 : if (ENABLE_SCOPE_CHECKING)
9394 : : verbatim ("XXX entering %<pop_everything ()%>");
9395 : 91333 : while (!namespace_bindings_p ())
9396 : : {
9397 : 0 : if (current_binding_level->kind == sk_class)
9398 : 0 : pop_nested_class ();
9399 : : else
9400 : 0 : poplevel (0, 0, 0);
9401 : : }
9402 : 91333 : if (ENABLE_SCOPE_CHECKING)
9403 : : verbatim ("XXX leaving %<pop_everything ()%>");
9404 : 91333 : }
9405 : :
9406 : : /* Emit debugging information for using declarations and directives.
9407 : : If input tree is overloaded fn then emit debug info for all
9408 : : candidates. */
9409 : :
9410 : : void
9411 : 7648758 : cp_emit_debug_info_for_using (tree t, tree context)
9412 : : {
9413 : : /* Don't try to emit any debug information if we have errors. */
9414 : 7648758 : if (seen_error ())
9415 : : return;
9416 : :
9417 : : /* Do not supply context to imported_module_or_decl, if
9418 : : it is a global namespace. */
9419 : 7646165 : if (context == global_namespace)
9420 : 171448 : context = NULL_TREE;
9421 : :
9422 : 7646165 : t = MAYBE_BASELINK_FUNCTIONS (t);
9423 : :
9424 : 16451687 : for (lkp_iterator iter (t); iter; ++iter)
9425 : : {
9426 : 8805522 : tree fn = *iter;
9427 : :
9428 : 8805522 : if (TREE_CODE (fn) == TEMPLATE_DECL)
9429 : : /* FIXME: Handle TEMPLATE_DECLs. */
9430 : 611811 : continue;
9431 : :
9432 : : /* Ignore this FUNCTION_DECL if it refers to a builtin declaration
9433 : : of a builtin function. */
9434 : 11037697 : if (TREE_CODE (fn) == FUNCTION_DECL
9435 : 7003595 : && DECL_EXTERNAL (fn)
9436 : 15194659 : && fndecl_built_in_p (fn))
9437 : 2843986 : continue;
9438 : :
9439 : 5349725 : if (building_stmt_list_p ())
9440 : 1295 : add_stmt (build_stmt (input_location, USING_STMT, fn));
9441 : : else
9442 : 5348430 : debug_hooks->imported_module_or_decl (fn, NULL_TREE, context,
9443 : : false, false);
9444 : : }
9445 : : }
9446 : :
9447 : : /* True if D is a local declaration in dependent scope. Assumes that it is
9448 : : (part of) the current lookup result for its name. */
9449 : :
9450 : : bool
9451 : 50735316 : dependent_local_decl_p (tree d)
9452 : : {
9453 : 50735316 : if (!DECL_LOCAL_DECL_P (d))
9454 : : return false;
9455 : :
9456 : 15531 : cxx_binding *b = IDENTIFIER_BINDING (DECL_NAME (d));
9457 : 15531 : cp_binding_level *l = b->scope;
9458 : 42476 : while (!l->this_entity)
9459 : 26945 : l = l->level_chain;
9460 : 15531 : return uses_template_parms (l->this_entity);
9461 : : }
9462 : :
9463 : :
9464 : :
9465 : : #include "gt-cp-name-lookup.h"
|