]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/cp/name-lookup.c
* call.c (build_user_type_conversion_1, build_new_op,
[thirdparty/gcc.git] / gcc / cp / name-lookup.c
CommitLineData
8546e572 1/* Definitions for C++ name lookup routines.
16bf97ca 2 Copyright (C) 2003, 2004 Free Software Foundation, Inc.
8546e572 3 Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
4
d36ac936 5This file is part of GCC.
8546e572 6
d36ac936 7GCC is free software; you can redistribute it and/or modify
8546e572 8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
d36ac936 12GCC is distributed in the hope that it will be useful,
8546e572 13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
d36ac936 18along with GCC; see the file COPYING. If not, write to
8546e572 19the Free Software Foundation, 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
21
22#include "config.h"
23#include "system.h"
24#include "coretypes.h"
25#include "tm.h"
9a49d46b 26#include "flags.h"
8546e572 27#include "tree.h"
28#include "cp-tree.h"
29#include "name-lookup.h"
d36ac936 30#include "timevar.h"
3bd975bc 31#include "toplev.h"
836495aa 32#include "diagnostic.h"
2b49746a 33#include "debug.h"
836495aa 34
7d6057da 35/* The bindings for a particular name in a particular scope. */
36
37struct scope_binding {
38 tree value;
39 tree type;
40};
41#define EMPTY_SCOPE_BINDING { NULL_TREE, NULL_TREE }
42
836495aa 43static cxx_scope *innermost_nonclass_level (void);
7d6057da 44static tree select_decl (const struct scope_binding *, int);
cc9a4194 45static cxx_binding *binding_for_name (cxx_scope *, tree);
9a49d46b 46static tree lookup_name_current_level (tree);
9a49d46b 47static tree push_overloaded_decl (tree, int);
7d6057da 48static bool lookup_using_namespace (tree, struct scope_binding *, tree,
f3ccd0ea 49 tree, int);
7d6057da 50static bool qualified_lookup_using_namespace (tree, tree,
51 struct scope_binding *, int);
9a49d46b 52static tree lookup_type_current_level (tree);
53static tree push_using_directive (tree);
2b49746a 54static void cp_emit_debug_info_for_using (tree, tree);
cc9a4194 55
56/* The :: namespace. */
57
58tree global_namespace;
836495aa 59
c2e83164 60/* The name of the anonymous namespace, throughout this translation
61 unit. */
141efd27 62static GTY(()) tree anonymous_namespace_name;
c2e83164 63
8546e572 64
af694375 65/* Compute the chain index of a binding_entry given the HASH value of its
66 name and the total COUNT of chains. COUNT is assumed to be a power
67 of 2. */
0e1d7e20 68
af694375 69#define ENTRY_INDEX(HASH, COUNT) (((HASH) >> 3) & ((COUNT) - 1))
70
71/* A free list of "binding_entry"s awaiting for re-use. */
0e1d7e20 72
7035b2ab 73static GTY((deletable)) binding_entry free_binding_entry = NULL;
af694375 74
75/* Create a binding_entry object for (NAME, TYPE). */
0e1d7e20 76
af694375 77static inline binding_entry
78binding_entry_make (tree name, tree type)
79{
80 binding_entry entry;
81
82 if (free_binding_entry)
83 {
84 entry = free_binding_entry;
85 free_binding_entry = entry->chain;
86 }
87 else
88 entry = ggc_alloc (sizeof (struct binding_entry_s));
89
90 entry->name = name;
91 entry->type = type;
9449ebe7 92 entry->chain = NULL;
af694375 93
94 return entry;
95}
96
97/* Put ENTRY back on the free list. */
0e1d7e20 98
af694375 99static inline void
100binding_entry_free (binding_entry entry)
101{
4db06cad 102 entry->name = NULL;
103 entry->type = NULL;
af694375 104 entry->chain = free_binding_entry;
105 free_binding_entry = entry;
106}
107
108/* The datatype used to implement the mapping from names to types at
109 a given scope. */
110struct binding_table_s GTY(())
111{
112 /* Array of chains of "binding_entry"s */
113 binding_entry * GTY((length ("%h.chain_count"))) chain;
114
115 /* The number of chains in this table. This is the length of the
9449ebe7 116 the member "chain" considered as an array. */
af694375 117 size_t chain_count;
118
119 /* Number of "binding_entry"s in this table. */
120 size_t entry_count;
121};
122
123/* Construct TABLE with an initial CHAIN_COUNT. */
0e1d7e20 124
af694375 125static inline void
126binding_table_construct (binding_table table, size_t chain_count)
127{
128 table->chain_count = chain_count;
129 table->entry_count = 0;
130 table->chain = ggc_alloc_cleared
131 (table->chain_count * sizeof (binding_entry));
132}
133
0e1d7e20 134/* Make TABLE's entries ready for reuse. */
135
836495aa 136static void
af694375 137binding_table_free (binding_table table)
138{
139 size_t i;
0e1d7e20 140 size_t count;
141
af694375 142 if (table == NULL)
143 return;
144
0e1d7e20 145 for (i = 0, count = table->chain_count; i < count; ++i)
af694375 146 {
9449ebe7 147 binding_entry temp = table->chain[i];
148 while (temp != NULL)
af694375 149 {
9449ebe7 150 binding_entry entry = temp;
151 temp = entry->chain;
af694375 152 binding_entry_free (entry);
153 }
0e1d7e20 154 table->chain[i] = NULL;
af694375 155 }
156 table->entry_count = 0;
157}
158
159/* Allocate a table with CHAIN_COUNT, assumed to be a power of two. */
0e1d7e20 160
836495aa 161static inline binding_table
af694375 162binding_table_new (size_t chain_count)
163{
164 binding_table table = ggc_alloc (sizeof (struct binding_table_s));
9449ebe7 165 table->chain = NULL;
af694375 166 binding_table_construct (table, chain_count);
167 return table;
168}
169
170/* Expand TABLE to twice its current chain_count. */
0e1d7e20 171
af694375 172static void
173binding_table_expand (binding_table table)
174{
175 const size_t old_chain_count = table->chain_count;
176 const size_t old_entry_count = table->entry_count;
177 const size_t new_chain_count = 2 * old_chain_count;
178 binding_entry *old_chains = table->chain;
179 size_t i;
180
181 binding_table_construct (table, new_chain_count);
182 for (i = 0; i < old_chain_count; ++i)
183 {
184 binding_entry entry = old_chains[i];
185 for (; entry != NULL; entry = old_chains[i])
186 {
187 const unsigned int hash = IDENTIFIER_HASH_VALUE (entry->name);
188 const size_t j = ENTRY_INDEX (hash, new_chain_count);
189
190 old_chains[i] = entry->chain;
191 entry->chain = table->chain[j];
192 table->chain[j] = entry;
193 }
194 }
195 table->entry_count = old_entry_count;
196}
197
0e1d7e20 198/* Insert a binding for NAME to TYPE into TABLE. */
199
836495aa 200static void
af694375 201binding_table_insert (binding_table table, tree name, tree type)
202{
203 const unsigned int hash = IDENTIFIER_HASH_VALUE (name);
204 const size_t i = ENTRY_INDEX (hash, table->chain_count);
205 binding_entry entry = binding_entry_make (name, type);
206
207 entry->chain = table->chain[i];
208 table->chain[i] = entry;
209 ++table->entry_count;
210
211 if (3 * table->chain_count < 5 * table->entry_count)
212 binding_table_expand (table);
213}
214
215/* Return the binding_entry, if any, that maps NAME. */
0e1d7e20 216
af694375 217binding_entry
218binding_table_find (binding_table table, tree name)
219{
220 const unsigned int hash = IDENTIFIER_HASH_VALUE (name);
221 binding_entry entry = table->chain[ENTRY_INDEX (hash, table->chain_count)];
222
223 while (entry != NULL && entry->name != name)
224 entry = entry->chain;
225
226 return entry;
227}
228
0e1d7e20 229/* Return the binding_entry, if any, that maps NAME to an anonymous type. */
230
836495aa 231static tree
af694375 232binding_table_find_anon_type (binding_table table, tree name)
233{
234 const unsigned int hash = IDENTIFIER_HASH_VALUE (name);
235 binding_entry entry = table->chain[ENTRY_INDEX (hash, table->chain_count)];
236
237 while (entry != NULL && TYPE_IDENTIFIER (entry->type) != name)
238 entry = entry->chain;
239
240 return entry ? entry->type : NULL;
241}
242
243/* Return the binding_entry, if any, that has TYPE as target. If NAME
244 is non-null, then set the domain and rehash that entry. */
0e1d7e20 245
836495aa 246static binding_entry
af694375 247binding_table_reverse_maybe_remap (binding_table table, tree type, tree name)
248{
249 const size_t chain_count = table->chain_count;
250 binding_entry entry = NULL;
251 binding_entry *p = NULL;
252 size_t i;
253
254 for (i = 0; i < chain_count && entry == NULL; ++i)
255 {
256 p = &table->chain[i];
257 while (*p != NULL && entry == NULL)
258 if ((*p)->type == type)
259 entry = *p;
260 else
261 p = &(*p)->chain;
262 }
263
264 if (entry != NULL && name != NULL && entry->name != name)
265 {
266 /* Remove the bucket from the previous chain. */
267 *p = (*p)->chain;
268
269 /* Remap the name type to type. */
270 i = ENTRY_INDEX (IDENTIFIER_HASH_VALUE (name), chain_count);
271 entry->chain = table->chain[i];
272 entry->name = name;
273 table->chain[i] = entry;
274 }
275
276 return entry;
277}
278
279/* Remove from TABLE all entries that map to anonymous enums or
280 class-types. */
0e1d7e20 281
af694375 282void
283binding_table_remove_anonymous_types (binding_table table)
284{
285 const size_t chain_count = table->chain_count;
286 size_t i;
287
288 for (i = 0; i < chain_count; ++i)
289 {
290 binding_entry *p = &table->chain[i];
291
292 while (*p != NULL)
293 if (ANON_AGGRNAME_P ((*p)->name))
294 {
295 binding_entry e = *p;
296 *p = (*p)->chain;
297 --table->entry_count;
298 binding_entry_free (e);
299 }
300 else
301 p = &(*p)->chain;
302 }
303}
304
305/* Apply PROC -- with DATA -- to all entries in TABLE. */
0e1d7e20 306
af694375 307void
308binding_table_foreach (binding_table table, bt_foreach_proc proc, void *data)
309{
310 const size_t chain_count = table->chain_count;
311 size_t i;
312
313 for (i = 0; i < chain_count; ++i)
314 {
315 binding_entry entry = table->chain[i];
316 for (; entry != NULL; entry = entry->chain)
317 proc (entry, data);
318 }
319}
320\f
836495aa 321#ifndef ENABLE_SCOPE_CHECKING
322# define ENABLE_SCOPE_CHECKING 0
323#else
324# define ENABLE_SCOPE_CHECKING 1
325#endif
af694375 326
8546e572 327/* A free list of "cxx_binding"s, connected by their PREVIOUS. */
0e1d7e20 328
7035b2ab 329static GTY((deletable)) cxx_binding *free_bindings;
8546e572 330
598057ec 331/* Initialize VALUE and TYPE field for BINDING, and set the PREVIOUS
332 field to NULL. */
333
334static inline void
335cxx_binding_init (cxx_binding *binding, tree value, tree type)
336{
337 binding->value = value;
338 binding->type = type;
339 binding->previous = NULL;
340}
341
8546e572 342/* (GC)-allocate a binding object with VALUE and TYPE member initialized. */
0e1d7e20 343
836495aa 344static cxx_binding *
8546e572 345cxx_binding_make (tree value, tree type)
346{
347 cxx_binding *binding;
348 if (free_bindings)
349 {
350 binding = free_bindings;
351 free_bindings = binding->previous;
352 }
353 else
9449ebe7 354 binding = ggc_alloc (sizeof (cxx_binding));
8546e572 355
598057ec 356 cxx_binding_init (binding, value, type);
8546e572 357
358 return binding;
359}
360
361/* Put BINDING back on the free list. */
0e1d7e20 362
836495aa 363static inline void
8546e572 364cxx_binding_free (cxx_binding *binding)
365{
0e1d7e20 366 binding->scope = NULL;
8546e572 367 binding->previous = free_bindings;
368 free_bindings = binding;
369}
3bd975bc 370
836495aa 371/* Make DECL the innermost binding for ID. The LEVEL is the binding
372 level at which this declaration is being bound. */
373
374static void
375push_binding (tree id, tree decl, cxx_scope* level)
376{
598057ec 377 cxx_binding *binding;
836495aa 378
598057ec 379 if (level != class_binding_level)
380 binding = cxx_binding_make (decl, NULL_TREE);
381 else
382 {
383 cp_class_binding *cb;
598057ec 384
78eb3a28 385 if (VEC_reserve (cp_class_binding, level->class_shadowed, -1))
386 {
387 /* Fixup the current bindings, as they might have moved. */
388 size_t i;
389
390 for (i = 0;
391 (cb = VEC_iterate (cp_class_binding, level->class_shadowed, i));
392 i++)
393 IDENTIFIER_BINDING (cb->identifier) = &cb->base;
394 }
395
396 cb = VEC_quick_push (cp_class_binding, level->class_shadowed, NULL);
598057ec 397 cb->identifier = id;
398 binding = &cb->base;
399 cxx_binding_init (binding, decl, NULL_TREE);
598057ec 400 }
401
836495aa 402 /* Now, fill in the binding information. */
403 binding->previous = IDENTIFIER_BINDING (id);
404 binding->scope = level;
405 INHERITED_VALUE_BINDING_P (binding) = 0;
406 LOCAL_BINDING_P (binding) = (level != class_binding_level);
407
408 /* And put it on the front of the list of bindings for ID. */
409 IDENTIFIER_BINDING (id) = binding;
410}
411
412/* Remove the binding for DECL which should be the innermost binding
413 for ID. */
414
415void
416pop_binding (tree id, tree decl)
417{
418 cxx_binding *binding;
419
420 if (id == NULL_TREE)
421 /* It's easiest to write the loops that call this function without
422 checking whether or not the entities involved have names. We
423 get here for such an entity. */
424 return;
425
426 /* Get the innermost binding for ID. */
427 binding = IDENTIFIER_BINDING (id);
428
429 /* The name should be bound. */
430 my_friendly_assert (binding != NULL, 0);
431
432 /* The DECL will be either the ordinary binding or the type
433 binding for this identifier. Remove that binding. */
434 if (binding->value == decl)
435 binding->value = NULL_TREE;
436 else if (binding->type == decl)
437 binding->type = NULL_TREE;
438 else
439 abort ();
440
441 if (!binding->value && !binding->type)
442 {
443 /* We're completely done with the innermost binding for this
444 identifier. Unhook it from the list of bindings. */
445 IDENTIFIER_BINDING (id) = binding->previous;
446
447 /* Add it to the free list. */
448 cxx_binding_free (binding);
449 }
450}
451
3bd975bc 452/* BINDING records an existing declaration for a namein the current scope.
453 But, DECL is another declaration for that same identifier in the
454 same scope. This is the `struct stat' hack whereby a non-typedef
455 class name or enum-name can be bound at the same level as some other
456 kind of entity.
457 3.3.7/1
458
459 A class name (9.1) or enumeration name (7.2) can be hidden by the
460 name of an object, function, or enumerator declared in the same scope.
461 If a class or enumeration name and an object, function, or enumerator
462 are declared in the same scope (in any order) with the same name, the
463 class or enumeration name is hidden wherever the object, function, or
464 enumerator name is visible.
465
466 It's the responsibility of the caller to check that
467 inserting this name is valid here. Returns nonzero if the new binding
468 was successful. */
469
836495aa 470static bool
3bd975bc 471supplement_binding (cxx_binding *binding, tree decl)
472{
473 tree bval = binding->value;
474 bool ok = true;
475
476 timevar_push (TV_NAME_LOOKUP);
477 if (TREE_CODE (decl) == TYPE_DECL && DECL_ARTIFICIAL (decl))
478 /* The new name is the type name. */
479 binding->type = decl;
9dcbf64e 480 else if (/* BVAL is null when push_class_level_binding moves an
481 inherited type-binding out of the way to make room for a
482 new value binding. */
483 !bval
484 /* BVAL is error_mark_node when DECL's name has been used
485 in a non-class scope prior declaration. In that case,
486 we should have already issued a diagnostic; for graceful
487 error recovery purpose, pretend this was the intended
488 declaration for that name. */
489 || bval == error_mark_node
490 /* If BVAL is a built-in that has not yet been declared,
491 pretend it is not there at all. */
492 || (TREE_CODE (bval) == FUNCTION_DECL
493 && DECL_ANTICIPATED (bval)))
3bd975bc 494 binding->value = decl;
495 else if (TREE_CODE (bval) == TYPE_DECL && DECL_ARTIFICIAL (bval))
496 {
497 /* The old binding was a type name. It was placed in
76608a37 498 VALUE field because it was thought, at the point it was
3bd975bc 499 declared, to be the only entity with such a name. Move the
500 type name into the type slot; it is now hidden by the new
501 binding. */
502 binding->type = bval;
503 binding->value = decl;
504 binding->value_is_inherited = false;
505 }
506 else if (TREE_CODE (bval) == TYPE_DECL
507 && TREE_CODE (decl) == TYPE_DECL
508 && DECL_NAME (decl) == DECL_NAME (bval)
509 && (same_type_p (TREE_TYPE (decl), TREE_TYPE (bval))
510 /* If either type involves template parameters, we must
511 wait until instantiation. */
512 || uses_template_parms (TREE_TYPE (decl))
513 || uses_template_parms (TREE_TYPE (bval))))
514 /* We have two typedef-names, both naming the same type to have
515 the same name. This is OK because of:
516
517 [dcl.typedef]
518
519 In a given scope, a typedef specifier can be used to redefine
520 the name of any type declared in that scope to refer to the
521 type to which it already refers. */
522 ok = false;
523 /* There can be two block-scope declarations of the same variable,
524 so long as they are `extern' declarations. However, there cannot
525 be two declarations of the same static data member:
526
527 [class.mem]
528
529 A member shall not be declared twice in the
530 member-specification. */
531 else if (TREE_CODE (decl) == VAR_DECL && TREE_CODE (bval) == VAR_DECL
532 && DECL_EXTERNAL (decl) && DECL_EXTERNAL (bval)
533 && !DECL_CLASS_SCOPE_P (decl))
534 {
535 duplicate_decls (decl, binding->value);
536 ok = false;
537 }
4ec378b6 538 else if (TREE_CODE (decl) == NAMESPACE_DECL
539 && TREE_CODE (bval) == NAMESPACE_DECL
540 && DECL_NAMESPACE_ALIAS (decl)
541 && DECL_NAMESPACE_ALIAS (bval)
542 && ORIGINAL_NAMESPACE (bval) == ORIGINAL_NAMESPACE (decl))
543 /* [namespace.alias]
544
545 In a declarative region, a namespace-alias-definition can be
546 used to redefine a namespace-alias declared in that declarative
547 region to refer only to the namespace to which it already
548 refers. */
549 ok = false;
3bd975bc 550 else
551 {
552 error ("declaration of `%#D'", decl);
4ec378b6 553 cp_error_at ("conflicts with previous declaration `%#D'", bval);
3bd975bc 554 ok = false;
555 }
556
557 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ok);
558}
836495aa 559
560/* Add DECL to the list of things declared in B. */
561
9a49d46b 562static void
836495aa 563add_decl_to_level (tree decl, cxx_scope *b)
564{
565 if (TREE_CODE (decl) == NAMESPACE_DECL
566 && !DECL_NAMESPACE_ALIAS (decl))
567 {
568 TREE_CHAIN (decl) = b->namespaces;
569 b->namespaces = decl;
570 }
571 else if (TREE_CODE (decl) == VAR_DECL && DECL_VIRTUAL_P (decl))
572 {
573 TREE_CHAIN (decl) = b->vtables;
574 b->vtables = decl;
575 }
576 else
577 {
578 /* We build up the list in reverse order, and reverse it later if
579 necessary. */
580 TREE_CHAIN (decl) = b->names;
581 b->names = decl;
582 b->names_size++;
583
a567ba1e 584 /* If appropriate, add decl to separate list of statics. We
585 include extern variables because they might turn out to be
586 static later. It's OK for this list to contain a few false
7677ebb9 587 positives. */
836495aa 588 if (b->kind == sk_namespace)
a567ba1e 589 if ((TREE_CODE (decl) == VAR_DECL
590 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
836495aa 591 || (TREE_CODE (decl) == FUNCTION_DECL
592 && (!TREE_PUBLIC (decl) || DECL_DECLARED_INLINE_P (decl))))
593 VARRAY_PUSH_TREE (b->static_decls, decl);
594 }
595}
596
9a49d46b 597/* Record a decl-node X as belonging to the current lexical scope.
598 Check for errors (such as an incompatible declaration for the same
599 name already seen in the same scope).
600
601 Returns either X or an old decl for the same name.
602 If an old decl is returned, it may have been smashed
603 to agree with what X says. */
604
605tree
606pushdecl (tree x)
607{
cd16867a 608 tree t;
609 tree name;
9a49d46b 610 int need_new_binding;
611
612 timevar_push (TV_NAME_LOOKUP);
613
614 need_new_binding = 1;
615
616 if (DECL_TEMPLATE_PARM_P (x))
617 /* Template parameters have no context; they are not X::T even
618 when declared within a class or namespace. */
619 ;
620 else
621 {
622 if (current_function_decl && x != current_function_decl
623 /* A local declaration for a function doesn't constitute
624 nesting. */
c3932a15 625 && TREE_CODE (x) != FUNCTION_DECL
9a49d46b 626 /* A local declaration for an `extern' variable is in the
627 scope of the current namespace, not the current
628 function. */
629 && !(TREE_CODE (x) == VAR_DECL && DECL_EXTERNAL (x))
630 && !DECL_CONTEXT (x))
631 DECL_CONTEXT (x) = current_function_decl;
632
633 /* If this is the declaration for a namespace-scope function,
634 but the declaration itself is in a local scope, mark the
635 declaration. */
636 if (TREE_CODE (x) == FUNCTION_DECL
637 && DECL_NAMESPACE_SCOPE_P (x)
638 && current_function_decl
639 && x != current_function_decl)
640 DECL_LOCAL_FUNCTION_P (x) = 1;
641 }
642
643 name = DECL_NAME (x);
644 if (name)
645 {
646 int different_binding_level = 0;
647
648 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
649 name = TREE_OPERAND (name, 0);
650
651 /* In case this decl was explicitly namespace-qualified, look it
652 up in its namespace context. */
c79f94a2 653 if (DECL_NAMESPACE_SCOPE_P (x) && namespace_bindings_p ())
9a49d46b 654 t = namespace_binding (name, DECL_CONTEXT (x));
655 else
656 t = lookup_name_current_level (name);
657
658 /* [basic.link] If there is a visible declaration of an entity
659 with linkage having the same name and type, ignoring entities
660 declared outside the innermost enclosing namespace scope, the
661 block scope declaration declares that same entity and
662 receives the linkage of the previous declaration. */
663 if (! t && current_function_decl && x != current_function_decl
664 && (TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
665 && DECL_EXTERNAL (x))
666 {
667 /* Look in block scope. */
668 t = IDENTIFIER_VALUE (name);
669 /* Or in the innermost namespace. */
670 if (! t)
671 t = namespace_binding (name, DECL_CONTEXT (x));
672 /* Does it have linkage? Note that if this isn't a DECL, it's an
673 OVERLOAD, which is OK. */
674 if (t && DECL_P (t) && ! (TREE_STATIC (t) || DECL_EXTERNAL (t)))
675 t = NULL_TREE;
676 if (t)
677 different_binding_level = 1;
678 }
679
680 /* If we are declaring a function, and the result of name-lookup
681 was an OVERLOAD, look for an overloaded instance that is
682 actually the same as the function we are declaring. (If
683 there is one, we have to merge our declaration with the
684 previous declaration.) */
685 if (t && TREE_CODE (t) == OVERLOAD)
686 {
687 tree match;
688
689 if (TREE_CODE (x) == FUNCTION_DECL)
690 for (match = t; match; match = OVL_NEXT (match))
691 {
692 if (decls_match (OVL_CURRENT (match), x))
693 break;
694 }
695 else
696 /* Just choose one. */
697 match = t;
698
699 if (match)
700 t = OVL_CURRENT (match);
701 else
702 t = NULL_TREE;
703 }
704
28bbd27a 705 if (t && t != error_mark_node)
9a49d46b 706 {
707 if (different_binding_level)
708 {
709 if (decls_match (x, t))
710 /* The standard only says that the local extern
711 inherits linkage from the previous decl; in
146c1b4f 712 particular, default args are not shared. We must
713 also tell cgraph to treat these decls as the same,
714 or we may neglect to emit an "unused" static - we
715 do this by making the DECL_UIDs equal, which should
716 be viewed as a kludge. FIXME. */
717 {
718 TREE_PUBLIC (x) = TREE_PUBLIC (t);
719 DECL_UID (x) = DECL_UID (t);
720 }
9a49d46b 721 }
722 else if (TREE_CODE (t) == PARM_DECL)
723 {
724 if (DECL_CONTEXT (t) == NULL_TREE)
725 /* This is probably caused by too many errors, but calling
726 abort will say that if errors have occurred. */
727 abort ();
728
729 /* Check for duplicate params. */
730 if (duplicate_decls (x, t))
731 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
732 }
733 else if ((DECL_EXTERN_C_FUNCTION_P (x)
734 || DECL_FUNCTION_TEMPLATE_P (x))
735 && is_overloaded_fn (t))
736 /* Don't do anything just yet. */;
737 else if (t == wchar_decl_node)
738 {
739 if (pedantic && ! DECL_IN_SYSTEM_HEADER (x))
740 pedwarn ("redeclaration of `wchar_t' as `%T'",
741 TREE_TYPE (x));
742
743 /* Throw away the redeclaration. */
744 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
745 }
947f430b 746 else
9a49d46b 747 {
947f430b 748 tree olddecl = duplicate_decls (x, t);
749
750 /* If the redeclaration failed, we can stop at this
751 point. */
752 if (olddecl == error_mark_node)
753 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
754
755 if (olddecl)
756 {
757 if (TREE_CODE (t) == TYPE_DECL)
758 SET_IDENTIFIER_TYPE_VALUE (name, TREE_TYPE (t));
759 else if (TREE_CODE (t) == FUNCTION_DECL)
760 check_default_args (t);
9a49d46b 761
947f430b 762 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
763 }
3180c04a 764 else if (DECL_MAIN_P (x) && TREE_CODE (t) == FUNCTION_DECL)
947f430b 765 {
766 /* A redeclaration of main, but not a duplicate of the
767 previous one.
768
769 [basic.start.main]
770
771 This function shall not be overloaded. */
772 cp_error_at ("invalid redeclaration of `%D'", t);
773 error ("as `%D'", x);
774 /* We don't try to push this declaration since that
775 causes a crash. */
776 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
777 }
9a49d46b 778 }
779 }
780
781 check_template_shadow (x);
782
783 /* If this is a function conjured up by the backend, massage it
784 so it looks friendly. */
785 if (DECL_NON_THUNK_FUNCTION_P (x) && ! DECL_LANG_SPECIFIC (x))
786 {
787 retrofit_lang_decl (x);
788 SET_DECL_LANGUAGE (x, lang_c);
789 }
790
791 if (DECL_NON_THUNK_FUNCTION_P (x) && ! DECL_FUNCTION_MEMBER_P (x))
792 {
793 t = push_overloaded_decl (x, PUSH_LOCAL);
794 if (t != x)
795 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
796 if (!namespace_bindings_p ())
797 /* We do not need to create a binding for this name;
798 push_overloaded_decl will have already done so if
799 necessary. */
800 need_new_binding = 0;
801 }
802 else if (DECL_FUNCTION_TEMPLATE_P (x) && DECL_NAMESPACE_SCOPE_P (x))
803 {
804 t = push_overloaded_decl (x, PUSH_GLOBAL);
805 if (t == x)
806 add_decl_to_level (x, NAMESPACE_LEVEL (CP_DECL_CONTEXT (t)));
807 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
808 }
809
810 /* If declaring a type as a typedef, copy the type (unless we're
811 at line 0), and install this TYPE_DECL as the new type's typedef
812 name. See the extensive comment in ../c-decl.c (pushdecl). */
813 if (TREE_CODE (x) == TYPE_DECL)
814 {
815 tree type = TREE_TYPE (x);
357f7efa 816 if (DECL_IS_BUILTIN (x))
9a49d46b 817 {
818 if (TYPE_NAME (type) == 0)
819 TYPE_NAME (type) = x;
820 }
821 else if (type != error_mark_node && TYPE_NAME (type) != x
822 /* We don't want to copy the type when all we're
823 doing is making a TYPE_DECL for the purposes of
824 inlining. */
825 && (!TYPE_NAME (type)
826 || TYPE_NAME (type) != DECL_ABSTRACT_ORIGIN (x)))
827 {
828 DECL_ORIGINAL_TYPE (x) = type;
829 type = build_type_copy (type);
830 TYPE_STUB_DECL (type) = TYPE_STUB_DECL (DECL_ORIGINAL_TYPE (x));
831 TYPE_NAME (type) = x;
832 TREE_TYPE (x) = type;
833 }
834
835 if (type != error_mark_node
836 && TYPE_NAME (type)
837 && TYPE_IDENTIFIER (type))
838 set_identifier_type_value (DECL_NAME (x), x);
839 }
840
841 /* Multiple external decls of the same identifier ought to match.
842
843 We get warnings about inline functions where they are defined.
844 We get warnings about other functions from push_overloaded_decl.
845
846 Avoid duplicate warnings where they are used. */
847 if (TREE_PUBLIC (x) && TREE_CODE (x) != FUNCTION_DECL)
848 {
849 tree decl;
850
851 decl = IDENTIFIER_NAMESPACE_VALUE (name);
852 if (decl && TREE_CODE (decl) == OVERLOAD)
853 decl = OVL_FUNCTION (decl);
854
855 if (decl && decl != error_mark_node
856 && (DECL_EXTERNAL (decl) || TREE_PUBLIC (decl))
857 /* If different sort of thing, we already gave an error. */
858 && TREE_CODE (decl) == TREE_CODE (x)
859 && !same_type_p (TREE_TYPE (x), TREE_TYPE (decl)))
860 {
861 pedwarn ("type mismatch with previous external decl of `%#D'", x);
862 cp_pedwarn_at ("previous external decl of `%#D'", decl);
863 }
864 }
865
866 /* This name is new in its binding level.
867 Install the new declaration and return it. */
868 if (namespace_bindings_p ())
869 {
870 /* Install a global value. */
871
872 /* If the first global decl has external linkage,
873 warn if we later see static one. */
874 if (IDENTIFIER_GLOBAL_VALUE (name) == NULL_TREE && TREE_PUBLIC (x))
875 TREE_PUBLIC (name) = 1;
876
877 /* Bind the name for the entity. */
878 if (!(TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)
879 && t != NULL_TREE)
880 && (TREE_CODE (x) == TYPE_DECL
881 || TREE_CODE (x) == VAR_DECL
882 || TREE_CODE (x) == ALIAS_DECL
883 || TREE_CODE (x) == NAMESPACE_DECL
884 || TREE_CODE (x) == CONST_DECL
885 || TREE_CODE (x) == TEMPLATE_DECL))
886 SET_IDENTIFIER_NAMESPACE_VALUE (name, x);
887
9a49d46b 888 /* If new decl is `static' and an `extern' was seen previously,
889 warn about it. */
890 if (x != NULL_TREE && t != NULL_TREE && decls_match (x, t))
891 warn_extern_redeclared_static (x, t);
892 }
893 else
894 {
895 /* Here to install a non-global value. */
896 tree oldlocal = IDENTIFIER_VALUE (name);
897 tree oldglobal = IDENTIFIER_NAMESPACE_VALUE (name);
898
899 if (need_new_binding)
900 {
901 push_local_binding (name, x, 0);
902 /* Because push_local_binding will hook X on to the
903 current_binding_level's name list, we don't want to
904 do that again below. */
905 need_new_binding = 0;
906 }
907
908 /* If this is a TYPE_DECL, push it into the type value slot. */
909 if (TREE_CODE (x) == TYPE_DECL)
910 set_identifier_type_value (name, x);
911
912 /* Clear out any TYPE_DECL shadowed by a namespace so that
913 we won't think this is a type. The C struct hack doesn't
914 go through namespaces. */
915 if (TREE_CODE (x) == NAMESPACE_DECL)
916 set_identifier_type_value (name, NULL_TREE);
917
918 if (oldlocal)
919 {
920 tree d = oldlocal;
921
922 while (oldlocal
923 && TREE_CODE (oldlocal) == VAR_DECL
924 && DECL_DEAD_FOR_LOCAL (oldlocal))
925 oldlocal = DECL_SHADOWED_FOR_VAR (oldlocal);
926
927 if (oldlocal == NULL_TREE)
928 oldlocal = IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (d));
929 }
930
931 /* If this is an extern function declaration, see if we
932 have a global definition or declaration for the function. */
933 if (oldlocal == NULL_TREE
934 && DECL_EXTERNAL (x)
935 && oldglobal != NULL_TREE
936 && TREE_CODE (x) == FUNCTION_DECL
937 && TREE_CODE (oldglobal) == FUNCTION_DECL)
938 {
939 /* We have one. Their types must agree. */
940 if (decls_match (x, oldglobal))
941 /* OK */;
942 else
943 {
944 warning ("extern declaration of `%#D' doesn't match", x);
945 cp_warning_at ("global declaration `%#D'", oldglobal);
946 }
947 }
948 /* If we have a local external declaration,
949 and no file-scope declaration has yet been seen,
950 then if we later have a file-scope decl it must not be static. */
951 if (oldlocal == NULL_TREE
952 && oldglobal == NULL_TREE
953 && DECL_EXTERNAL (x)
954 && TREE_PUBLIC (x))
955 TREE_PUBLIC (name) = 1;
956
957 /* Warn if shadowing an argument at the top level of the body. */
958 if (oldlocal != NULL_TREE && !DECL_EXTERNAL (x)
959 /* Inline decls shadow nothing. */
960 && !DECL_FROM_INLINE (x)
961 && TREE_CODE (oldlocal) == PARM_DECL
962 /* Don't check the `this' parameter. */
963 && !DECL_ARTIFICIAL (oldlocal))
964 {
965 bool err = false;
966
967 /* Don't complain if it's from an enclosing function. */
968 if (DECL_CONTEXT (oldlocal) == current_function_decl
969 && TREE_CODE (x) != PARM_DECL)
970 {
971 /* Go to where the parms should be and see if we find
972 them there. */
973 struct cp_binding_level *b = current_binding_level->level_chain;
974
975 /* Skip the ctor/dtor cleanup level. */
976 b = b->level_chain;
977
978 /* ARM $8.3 */
979 if (b->kind == sk_function_parms)
980 {
a3ad3e27 981 error ("declaration of '%#D' shadows a parameter", x);
9a49d46b 982 err = true;
983 }
984 }
985
986 if (warn_shadow && !err)
a3ad3e27 987 {
988 warning ("declaration of '%#D' shadows a parameter", x);
989 warning ("%Jshadowed declaration is here", oldlocal);
990 }
9a49d46b 991 }
992
993 /* Maybe warn if shadowing something else. */
994 else if (warn_shadow && !DECL_EXTERNAL (x)
995 /* No shadow warnings for internally generated vars. */
996 && ! DECL_ARTIFICIAL (x)
997 /* No shadow warnings for vars made for inlining. */
998 && ! DECL_FROM_INLINE (x))
999 {
1000 if (IDENTIFIER_CLASS_VALUE (name) != NULL_TREE
1001 && current_class_ptr
1002 && !TREE_STATIC (name))
a3ad3e27 1003 {
1004 /* Location of previous decl is not useful in this case. */
1005 warning ("declaration of '%D' shadows a member of 'this'",
1006 x);
1007 }
9a49d46b 1008 else if (oldlocal != NULL_TREE
1009 && TREE_CODE (oldlocal) == VAR_DECL)
a3ad3e27 1010 {
1011 warning ("declaration of '%D' shadows a previous local", x);
1012 warning ("%Jshadowed declaration is here", oldlocal);
1013 }
9a49d46b 1014 else if (oldglobal != NULL_TREE
1015 && TREE_CODE (oldglobal) == VAR_DECL)
1016 /* XXX shadow warnings in outer-more namespaces */
a3ad3e27 1017 {
1018 warning ("declaration of '%D' shadows a global declaration",
1019 x);
1020 warning ("%Jshadowed declaration is here", oldglobal);
1021 }
9a49d46b 1022 }
1023 }
1024
1025 if (TREE_CODE (x) == FUNCTION_DECL)
1026 check_default_args (x);
1027
1028 if (TREE_CODE (x) == VAR_DECL)
1029 maybe_register_incomplete_var (x);
1030 }
1031
1032 if (need_new_binding)
1033 add_decl_to_level (x,
1034 DECL_NAMESPACE_SCOPE_P (x)
1035 ? NAMESPACE_LEVEL (CP_DECL_CONTEXT (x))
1036 : current_binding_level);
1037
1038 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
1039}
1040
1041/* Enter DECL into the symbol table, if that's appropriate. Returns
1042 DECL, or a modified version thereof. */
1043
1044tree
1045maybe_push_decl (tree decl)
1046{
1047 tree type = TREE_TYPE (decl);
1048
1049 /* Add this decl to the current binding level, but not if it comes
1050 from another scope, e.g. a static member variable. TEM may equal
1051 DECL or it may be a previous decl of the same name. */
1052 if (decl == error_mark_node
1053 || (TREE_CODE (decl) != PARM_DECL
1054 && DECL_CONTEXT (decl) != NULL_TREE
1055 /* Definitions of namespace members outside their namespace are
1056 possible. */
1057 && TREE_CODE (DECL_CONTEXT (decl)) != NAMESPACE_DECL)
1058 || (TREE_CODE (decl) == TEMPLATE_DECL && !namespace_bindings_p ())
1059 || TREE_CODE (type) == UNKNOWN_TYPE
1060 /* The declaration of a template specialization does not affect
1061 the functions available for overload resolution, so we do not
1062 call pushdecl. */
1063 || (TREE_CODE (decl) == FUNCTION_DECL
1064 && DECL_TEMPLATE_SPECIALIZATION (decl)))
1065 return decl;
1066 else
1067 return pushdecl (decl);
1068}
1069
836495aa 1070/* Bind DECL to ID in the current_binding_level, assumed to be a local
1071 binding level. If PUSH_USING is set in FLAGS, we know that DECL
1072 doesn't really belong to this binding level, that it got here
1073 through a using-declaration. */
1074
28bbd27a 1075void
836495aa 1076push_local_binding (tree id, tree decl, int flags)
1077{
1078 struct cp_binding_level *b;
1079
1080 /* Skip over any local classes. This makes sense if we call
1081 push_local_binding with a friend decl of a local class. */
1082 b = innermost_nonclass_level ();
1083
1084 if (lookup_name_current_level (id))
1085 {
1086 /* Supplement the existing binding. */
1087 if (!supplement_binding (IDENTIFIER_BINDING (id), decl))
1088 /* It didn't work. Something else must be bound at this
1089 level. Do not add DECL to the list of things to pop
1090 later. */
1091 return;
1092 }
1093 else
1094 /* Create a new binding. */
1095 push_binding (id, decl, b);
1096
1097 if (TREE_CODE (decl) == OVERLOAD || (flags & PUSH_USING))
1098 /* We must put the OVERLOAD into a TREE_LIST since the
1099 TREE_CHAIN of an OVERLOAD is already used. Similarly for
1100 decls that got here through a using-declaration. */
1101 decl = build_tree_list (NULL_TREE, decl);
1102
1103 /* And put DECL on the list of things declared by the current
1104 binding level. */
1105 add_decl_to_level (decl, b);
1106}
9a49d46b 1107
1108/* The old ARM scoping rules injected variables declared in the
1109 initialization statement of a for-statement into the surrounding
1110 scope. We support this usage, in order to be backward-compatible.
1111 DECL is a just-declared VAR_DECL; if necessary inject its
1112 declaration into the surrounding scope. */
1113
1114void
1115maybe_inject_for_scope_var (tree decl)
1116{
1117 timevar_push (TV_NAME_LOOKUP);
1118 if (!DECL_NAME (decl))
1119 {
1120 timevar_pop (TV_NAME_LOOKUP);
1121 return;
1122 }
1123
1124 /* Declarations of __FUNCTION__ and its ilk appear magically when
1125 the variable is first used. If that happens to be inside a
1126 for-loop, we don't want to do anything special. */
1127 if (DECL_PRETTY_FUNCTION_P (decl))
1128 {
1129 timevar_pop (TV_NAME_LOOKUP);
1130 return;
1131 }
1132
1133 if (current_binding_level->kind == sk_for)
1134 {
1135 struct cp_binding_level *outer
1136 = current_binding_level->level_chain;
1137
1138 /* Check to see if the same name is already bound at the outer
1139 level, either because it was directly declared, or because a
1140 dead for-decl got preserved. In either case, the code would
1141 not have been valid under the ARM scope rules, so clear
1142 is_for_scope for the current_binding_level.
1143
1144 Otherwise, we need to preserve the temp slot for decl to last
1145 into the outer binding level. */
1146
1147 cxx_binding *outer_binding
1148 = IDENTIFIER_BINDING (DECL_NAME (decl))->previous;
1149
1150 if (outer_binding && outer_binding->scope == outer
1151 && (TREE_CODE (outer_binding->value) == VAR_DECL)
1152 && DECL_DEAD_FOR_LOCAL (outer_binding->value))
1153 {
1154 outer_binding->value = DECL_SHADOWED_FOR_VAR (outer_binding->value);
1155 current_binding_level->kind = sk_block;
1156 }
1157 }
1158 timevar_pop (TV_NAME_LOOKUP);
1159}
1160
1161/* Check to see whether or not DECL is a variable that would have been
1162 in scope under the ARM, but is not in scope under the ANSI/ISO
1163 standard. If so, issue an error message. If name lookup would
1164 work in both cases, but return a different result, this function
1165 returns the result of ANSI/ISO lookup. Otherwise, it returns
1166 DECL. */
1167
1168tree
1169check_for_out_of_scope_variable (tree decl)
1170{
1171 tree shadowed;
1172
1173 /* We only care about out of scope variables. */
1174 if (!(TREE_CODE (decl) == VAR_DECL && DECL_DEAD_FOR_LOCAL (decl)))
1175 return decl;
1176
1177 shadowed = DECL_SHADOWED_FOR_VAR (decl);
1178 while (shadowed != NULL_TREE && TREE_CODE (shadowed) == VAR_DECL
1179 && DECL_DEAD_FOR_LOCAL (shadowed))
1180 shadowed = DECL_SHADOWED_FOR_VAR (shadowed);
1181 if (!shadowed)
1182 shadowed = IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (decl));
1183 if (shadowed)
1184 {
1185 if (!DECL_ERROR_REPORTED (decl))
1186 {
1187 warning ("name lookup of `%D' changed",
1188 DECL_NAME (decl));
1189 cp_warning_at (" matches this `%D' under ISO standard rules",
1190 shadowed);
1191 cp_warning_at (" matches this `%D' under old rules", decl);
1192 DECL_ERROR_REPORTED (decl) = 1;
1193 }
1194 return shadowed;
1195 }
1196
1197 /* If we have already complained about this declaration, there's no
1198 need to do it again. */
1199 if (DECL_ERROR_REPORTED (decl))
1200 return decl;
1201
1202 DECL_ERROR_REPORTED (decl) = 1;
8db6f235 1203
1204 if (TREE_TYPE (decl) == error_mark_node)
1205 return decl;
1206
9a49d46b 1207 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
1208 {
1209 error ("name lookup of `%D' changed for new ISO `for' scoping",
1210 DECL_NAME (decl));
1211 cp_error_at (" cannot use obsolete binding at `%D' because it has a destructor", decl);
1212 return error_mark_node;
1213 }
1214 else
1215 {
1216 pedwarn ("name lookup of `%D' changed for new ISO `for' scoping",
1217 DECL_NAME (decl));
1218 cp_pedwarn_at (" using obsolete binding at `%D'", decl);
1219 }
1220
1221 return decl;
1222}
836495aa 1223\f
1224/* true means unconditionally make a BLOCK for the next level pushed. */
1225
1226static bool keep_next_level_flag;
1227
1228static int binding_depth = 0;
1229static int is_class_level = 0;
1230
1231static void
1232indent (int depth)
1233{
1234 int i;
1235
1236 for (i = 0; i < depth * 2; i++)
1237 putc (' ', stderr);
1238}
1239
1240/* Return a string describing the kind of SCOPE we have. */
1241static const char *
1242cxx_scope_descriptor (cxx_scope *scope)
1243{
1244 /* The order of this table must match the "scope_kind"
1245 enumerators. */
1246 static const char* scope_kind_names[] = {
1247 "block-scope",
1248 "cleanup-scope",
1249 "try-scope",
1250 "catch-scope",
1251 "for-scope",
1252 "function-parameter-scope",
1253 "class-scope",
1254 "namespace-scope",
1255 "template-parameter-scope",
1256 "template-explicit-spec-scope"
1257 };
1258 const scope_kind kind = scope->explicit_spec_p
1259 ? sk_template_spec : scope->kind;
1260
1261 return scope_kind_names[kind];
1262}
1263
63eff20d 1264/* Output a debugging information about SCOPE when performing
836495aa 1265 ACTION at LINE. */
1266static void
1267cxx_scope_debug (cxx_scope *scope, int line, const char *action)
1268{
1269 const char *desc = cxx_scope_descriptor (scope);
1270 if (scope->this_entity)
1271 verbatim ("%s %s(%E) %p %d\n", action, desc,
1272 scope->this_entity, (void *) scope, line);
1273 else
1274 verbatim ("%s %s %p %d\n", action, desc, (void *) scope, line);
1275}
1276
1277/* Return the estimated initial size of the hashtable of a NAMESPACE
1278 scope. */
1279
1280static inline size_t
1281namespace_scope_ht_size (tree ns)
1282{
1283 tree name = DECL_NAME (ns);
1284
1285 return name == std_identifier
1286 ? NAMESPACE_STD_HT_SIZE
1287 : (name == global_scope_name
1288 ? GLOBAL_SCOPE_HT_SIZE
1289 : NAMESPACE_ORDINARY_HT_SIZE);
1290}
1291
1292/* A chain of binding_level structures awaiting reuse. */
1293
7035b2ab 1294static GTY((deletable)) struct cp_binding_level *free_binding_level;
836495aa 1295
598057ec 1296/* Insert SCOPE as the innermost binding level. */
1297
1298void
1299push_binding_level (struct cp_binding_level *scope)
1300{
1301 /* Add it to the front of currently active scopes stack. */
1302 scope->level_chain = current_binding_level;
1303 current_binding_level = scope;
1304 keep_next_level_flag = false;
1305
1306 if (ENABLE_SCOPE_CHECKING)
1307 {
1308 scope->binding_depth = binding_depth;
1309 indent (binding_depth);
1310 cxx_scope_debug (scope, input_line, "push");
1311 is_class_level = 0;
1312 binding_depth++;
1313 }
1314}
1315
836495aa 1316/* Create a new KIND scope and make it the top of the active scopes stack.
1317 ENTITY is the scope of the associated C++ entity (namespace, class,
1318 function); it is NULL otherwise. */
1319
1320cxx_scope *
1321begin_scope (scope_kind kind, tree entity)
1322{
1323 cxx_scope *scope;
1324
1325 /* Reuse or create a struct for this binding level. */
1326 if (!ENABLE_SCOPE_CHECKING && free_binding_level)
1327 {
1328 scope = free_binding_level;
1329 free_binding_level = scope->level_chain;
1330 }
1331 else
1332 scope = ggc_alloc (sizeof (cxx_scope));
1333 memset (scope, 0, sizeof (cxx_scope));
1334
1335 scope->this_entity = entity;
1336 scope->more_cleanups_ok = true;
1337 switch (kind)
1338 {
1339 case sk_cleanup:
1340 scope->keep = true;
1341 break;
1342
1343 case sk_template_spec:
1344 scope->explicit_spec_p = true;
1345 kind = sk_template_parms;
331bc0ad 1346 /* Fall through. */
836495aa 1347 case sk_template_parms:
1348 case sk_block:
1349 case sk_try:
1350 case sk_catch:
1351 case sk_for:
1352 case sk_class:
1353 case sk_function_parms:
1354 scope->keep = keep_next_level_flag;
1355 break;
1356
1357 case sk_namespace:
1358 scope->type_decls = binding_table_new (namespace_scope_ht_size (entity));
1359 NAMESPACE_LEVEL (entity) = scope;
1360 VARRAY_TREE_INIT (scope->static_decls,
1361 DECL_NAME (entity) == std_identifier
1362 || DECL_NAME (entity) == global_scope_name
1363 ? 200 : 10,
1364 "Static declarations");
1365 break;
1366
1367 default:
1368 /* Should not happen. */
1369 my_friendly_assert (false, 20030922);
1370 break;
1371 }
1372 scope->kind = kind;
1373
598057ec 1374 push_binding_level (scope);
836495aa 1375
1376 return scope;
1377}
1378
1379/* We're about to leave current scope. Pop the top of the stack of
1380 currently active scopes. Return the enclosing scope, now active. */
1381
1382cxx_scope *
1383leave_scope (void)
1384{
1385 cxx_scope *scope = current_binding_level;
1386
1387 if (scope->kind == sk_namespace && class_binding_level)
1388 current_binding_level = class_binding_level;
1389
1390 /* We cannot leave a scope, if there are none left. */
1391 if (NAMESPACE_LEVEL (global_namespace))
1392 my_friendly_assert (!global_scope_p (scope), 20030527);
1393
1394 if (ENABLE_SCOPE_CHECKING)
1395 {
1396 indent (--binding_depth);
357f7efa 1397 cxx_scope_debug (scope, input_line, "leave");
836495aa 1398 if (is_class_level != (scope == class_binding_level))
1399 {
1400 indent (binding_depth);
1401 verbatim ("XXX is_class_level != (current_scope == class_scope)\n");
1402 }
1403 is_class_level = 0;
1404 }
1405
1406 /* Move one nesting level up. */
1407 current_binding_level = scope->level_chain;
1408
598057ec 1409 /* Namespace-scopes are left most probably temporarily, not
1410 completely; they can be reopen later, e.g. in namespace-extension
1411 or any name binding activity that requires us to resume a
1412 namespace. For classes, we cache some binding levels. For other
836495aa 1413 scopes, we just make the structure available for reuse. */
598057ec 1414 if (scope->kind != sk_namespace
1415 && scope->kind != sk_class)
836495aa 1416 {
1417 scope->level_chain = free_binding_level;
1418 if (scope->kind == sk_class)
1419 scope->type_decls = NULL;
1420 else
1421 binding_table_free (scope->type_decls);
1422 my_friendly_assert (!ENABLE_SCOPE_CHECKING
1423 || scope->binding_depth == binding_depth,
1424 20030529);
1425 free_binding_level = scope;
1426 }
1427
1428 /* Find the innermost enclosing class scope, and reset
1429 CLASS_BINDING_LEVEL appropriately. */
1430 for (scope = current_binding_level;
1431 scope && scope->kind != sk_class;
1432 scope = scope->level_chain)
1433 ;
1434 class_binding_level = scope && scope->kind == sk_class ? scope : NULL;
1435
1436 return current_binding_level;
1437}
1438
1439static void
1440resume_scope (struct cp_binding_level* b)
1441{
1442 /* Resuming binding levels is meant only for namespaces,
1443 and those cannot nest into classes. */
1444 my_friendly_assert(!class_binding_level, 386);
1445 /* Also, resuming a non-directly nested namespace is a no-no. */
1446 my_friendly_assert(b->level_chain == current_binding_level, 386);
1447 current_binding_level = b;
1448 if (ENABLE_SCOPE_CHECKING)
1449 {
1450 b->binding_depth = binding_depth;
1451 indent (binding_depth);
357f7efa 1452 cxx_scope_debug (b, input_line, "resume");
836495aa 1453 is_class_level = 0;
1454 binding_depth++;
1455 }
1456}
1457
1458/* Return the innermost binding level that is not for a class scope. */
1459
1460static cxx_scope *
1461innermost_nonclass_level (void)
1462{
1463 cxx_scope *b;
1464
1465 b = current_binding_level;
1466 while (b->kind == sk_class)
1467 b = b->level_chain;
1468
1469 return b;
1470}
1471
1472/* We're defining an object of type TYPE. If it needs a cleanup, but
1473 we're not allowed to add any more objects with cleanups to the current
1474 scope, create a new binding level. */
1475
1476void
1477maybe_push_cleanup_level (tree type)
1478{
93850d73 1479 if (type != error_mark_node
1480 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
836495aa 1481 && current_binding_level->more_cleanups_ok == 0)
1482 {
1483 begin_scope (sk_cleanup, NULL);
2363ef00 1484 current_binding_level->statement_list = push_stmt_list ();
836495aa 1485 }
1486}
1487
1488/* Nonzero if we are currently in the global binding level. */
1489
1490int
1491global_bindings_p (void)
1492{
1493 return global_scope_p (current_binding_level);
1494}
1495
1496/* True if we are currently in a toplevel binding level. This
1497 means either the global binding level or a namespace in a toplevel
1498 binding level. Since there are no non-toplevel namespace levels,
1499 this really means any namespace or template parameter level. We
1500 also include a class whose context is toplevel. */
1501
1502bool
1503toplevel_bindings_p (void)
1504{
1505 struct cp_binding_level *b = innermost_nonclass_level ();
1506
1507 return b->kind == sk_namespace || b->kind == sk_template_parms;
1508}
1509
1510/* True if this is a namespace scope, or if we are defining a class
1511 which is itself at namespace scope, or whose enclosing class is
1512 such a class, etc. */
1513
1514bool
1515namespace_bindings_p (void)
1516{
1517 struct cp_binding_level *b = innermost_nonclass_level ();
1518
1519 return b->kind == sk_namespace;
1520}
1521
1522/* True if the current level needs to have a BLOCK made. */
1523
1524bool
1525kept_level_p (void)
1526{
1527 return (current_binding_level->blocks != NULL_TREE
1528 || current_binding_level->keep
1529 || current_binding_level->kind == sk_cleanup
1530 || current_binding_level->names != NULL_TREE
1531 || current_binding_level->type_decls != NULL);
1532}
1533
1534/* Returns the kind of the innermost scope. */
1535
1536scope_kind
1537innermost_scope_kind (void)
1538{
1539 return current_binding_level->kind;
1540}
1541
1542/* Returns true if this scope was created to store template parameters. */
1543
1544bool
1545template_parm_scope_p (void)
1546{
1547 return innermost_scope_kind () == sk_template_parms;
1548}
1549
1550/* If KEEP is true, make a BLOCK node for the next binding level,
1551 unconditionally. Otherwise, use the normal logic to decide whether
1552 or not to create a BLOCK. */
1553
1554void
1555keep_next_level (bool keep)
1556{
1557 keep_next_level_flag = keep;
1558}
1559
1560/* Return the list of declarations of the current level.
1561 Note that this list is in reverse order unless/until
1562 you nreverse it; and when you do nreverse it, you must
1563 store the result back using `storedecls' or you will lose. */
1564
1565tree
1566getdecls (void)
1567{
1568 return current_binding_level->names;
1569}
1570
1571/* Set the current binding TABLE for type declarations.. This is a
1572 temporary workaround of the fact that the data structure classtypes
1573 does not currently carry its allocated cxx_scope structure. */
1574void
1575cxx_remember_type_decls (binding_table table)
1576{
1577 current_binding_level->type_decls = table;
1578}
1579
1580/* For debugging. */
1581static int no_print_functions = 0;
1582static int no_print_builtins = 0;
1583
1584/* Called from print_binding_level through binding_table_foreach to
1585 print the content of binding ENTRY. DATA is a pointer to line offset
1586 marker. */
1587static void
1588bt_print_entry (binding_entry entry, void *data)
1589{
1590 int *p = (int *) data;
1591 int len;
1592
1593 if (entry->name == NULL)
1594 len = 3;
1595 else if (entry->name == TYPE_IDENTIFIER (entry->type))
1596 len = 2;
1597 else
1598 len = 4;
1599 len = 4;
1600
1601 *p += len;
1602
1603 if (*p > 5)
1604 {
1605 fprintf (stderr, "\n\t");
1606 *p = len;
1607 }
1608 if (entry->name == NULL)
1609 {
1610 print_node_brief (stderr, "<unnamed-typedef", entry->type, 0);
1611 fprintf (stderr, ">");
1612 }
1613 else if (entry->name == TYPE_IDENTIFIER (entry->type))
1614 print_node_brief (stderr, "", entry->type, 0);
1615 else
1616 {
1617 print_node_brief (stderr, "<typedef", entry->name, 0);
1618 print_node_brief (stderr, "", entry->type, 0);
1619 fprintf (stderr, ">");
1620 }
1621}
1622
1623void
1624print_binding_level (struct cp_binding_level* lvl)
1625{
1626 tree t;
1627 int i = 0, len;
1628 fprintf (stderr, " blocks=" HOST_PTR_PRINTF, (void *) lvl->blocks);
1629 if (lvl->more_cleanups_ok)
1630 fprintf (stderr, " more-cleanups-ok");
1631 if (lvl->have_cleanups)
1632 fprintf (stderr, " have-cleanups");
1633 fprintf (stderr, "\n");
1634 if (lvl->names)
1635 {
1636 fprintf (stderr, " names:\t");
1637 /* We can probably fit 3 names to a line? */
1638 for (t = lvl->names; t; t = TREE_CHAIN (t))
1639 {
1640 if (no_print_functions && (TREE_CODE (t) == FUNCTION_DECL))
1641 continue;
1642 if (no_print_builtins
1643 && (TREE_CODE (t) == TYPE_DECL)
357f7efa 1644 && DECL_IS_BUILTIN (t))
836495aa 1645 continue;
1646
1647 /* Function decls tend to have longer names. */
1648 if (TREE_CODE (t) == FUNCTION_DECL)
1649 len = 3;
1650 else
1651 len = 2;
1652 i += len;
1653 if (i > 6)
1654 {
1655 fprintf (stderr, "\n\t");
1656 i = len;
1657 }
1658 print_node_brief (stderr, "", t, 0);
1659 if (t == error_mark_node)
1660 break;
1661 }
1662 if (i)
1663 fprintf (stderr, "\n");
1664 }
1665 if (lvl->type_decls)
1666 {
1667 fprintf (stderr, " tags:\t");
1668 i = 0;
1669 binding_table_foreach (lvl->type_decls, bt_print_entry, &i);
1670 if (i)
1671 fprintf (stderr, "\n");
1672 }
598057ec 1673 if (VEC_length (cp_class_binding, lvl->class_shadowed))
836495aa 1674 {
598057ec 1675 size_t i;
1676 cp_class_binding *b;
836495aa 1677 fprintf (stderr, " class-shadowed:");
598057ec 1678 for (i = 0;
1679 (b = VEC_iterate(cp_class_binding,
1680 lvl->class_shadowed,
1681 i));
1682 ++i)
1683 fprintf (stderr, " %s ", IDENTIFIER_POINTER (b->identifier));
836495aa 1684 fprintf (stderr, "\n");
1685 }
1686 if (lvl->type_shadowed)
1687 {
1688 fprintf (stderr, " type-shadowed:");
1689 for (t = lvl->type_shadowed; t; t = TREE_CHAIN (t))
1690 {
1691 fprintf (stderr, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t)));
1692 }
1693 fprintf (stderr, "\n");
1694 }
1695}
1696
1697void
1698print_other_binding_stack (struct cp_binding_level *stack)
1699{
1700 struct cp_binding_level *level;
1701 for (level = stack; !global_scope_p (level); level = level->level_chain)
1702 {
1703 fprintf (stderr, "binding level " HOST_PTR_PRINTF "\n", (void *) level);
1704 print_binding_level (level);
1705 }
1706}
1707
1708void
1709print_binding_stack (void)
1710{
1711 struct cp_binding_level *b;
1712 fprintf (stderr, "current_binding_level=" HOST_PTR_PRINTF
1713 "\nclass_binding_level=" HOST_PTR_PRINTF
1714 "\nNAMESPACE_LEVEL (global_namespace)=" HOST_PTR_PRINTF "\n",
1715 (void *) current_binding_level, (void *) class_binding_level,
1716 (void *) NAMESPACE_LEVEL (global_namespace));
1717 if (class_binding_level)
1718 {
1719 for (b = class_binding_level; b; b = b->level_chain)
1720 if (b == current_binding_level)
1721 break;
1722 if (b)
1723 b = class_binding_level;
1724 else
1725 b = current_binding_level;
1726 }
1727 else
1728 b = current_binding_level;
1729 print_other_binding_stack (b);
1730 fprintf (stderr, "global:\n");
1731 print_binding_level (NAMESPACE_LEVEL (global_namespace));
1732}
d36ac936 1733\f
836495aa 1734/* Return the type associated with id. */
1735
1736tree
1737identifier_type_value (tree id)
1738{
1739 timevar_push (TV_NAME_LOOKUP);
1740 /* There is no type with that name, anywhere. */
1741 if (REAL_IDENTIFIER_TYPE_VALUE (id) == NULL_TREE)
1742 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
1743 /* This is not the type marker, but the real thing. */
1744 if (REAL_IDENTIFIER_TYPE_VALUE (id) != global_type_node)
1745 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, REAL_IDENTIFIER_TYPE_VALUE (id));
1746 /* Have to search for it. It must be on the global level, now.
1747 Ask lookup_name not to return non-types. */
614697c5 1748 id = lookup_name_real (id, 2, 1, /*block_p=*/true, 0, LOOKUP_COMPLAIN);
836495aa 1749 if (id)
1750 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, TREE_TYPE (id));
1751 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
1752}
1753
1754/* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
1755 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
1756
1757tree
1758identifier_global_value (tree t)
1759{
1760 return IDENTIFIER_GLOBAL_VALUE (t);
1761}
1762
1763/* Push a definition of struct, union or enum tag named ID. into
1764 binding_level B. DECL is a TYPE_DECL for the type. We assume that
1765 the tag ID is not already defined. */
1766
1767static void
1768set_identifier_type_value_with_scope (tree id, tree decl, cxx_scope *b)
1769{
1770 tree type;
1771
1772 if (b->kind != sk_namespace)
1773 {
1774 /* Shadow the marker, not the real thing, so that the marker
1775 gets restored later. */
1776 tree old_type_value = REAL_IDENTIFIER_TYPE_VALUE (id);
1777 b->type_shadowed
1778 = tree_cons (id, old_type_value, b->type_shadowed);
1779 type = decl ? TREE_TYPE (decl) : NULL_TREE;
1780 }
1781 else
1782 {
1783 cxx_binding *binding =
1784 binding_for_name (NAMESPACE_LEVEL (current_namespace), id);
1785 if (decl)
1786 {
1787 if (binding->value)
1788 supplement_binding (binding, decl);
1789 else
1790 binding->value = decl;
1791 }
1792 else
1793 abort ();
1794 /* Store marker instead of real type. */
1795 type = global_type_node;
1796 }
1797 SET_IDENTIFIER_TYPE_VALUE (id, type);
1798}
1799
1800/* As set_identifier_type_value_with_scope, but using
1801 current_binding_level. */
1802
1803void
1804set_identifier_type_value (tree id, tree decl)
1805{
1806 set_identifier_type_value_with_scope (id, decl, current_binding_level);
1807}
1808
cc9a4194 1809/* Return the name for the constructor (or destructor) for the
1810 specified class TYPE. When given a template, this routine doesn't
1811 lose the specialization. */
1812
1813tree
1814constructor_name_full (tree type)
1815{
1816 type = TYPE_MAIN_VARIANT (type);
1817 if (CLASS_TYPE_P (type) && TYPE_WAS_ANONYMOUS (type)
1818 && TYPE_HAS_CONSTRUCTOR (type))
1819 return DECL_NAME (OVL_CURRENT (CLASSTYPE_CONSTRUCTORS (type)));
1820 else
1821 return TYPE_IDENTIFIER (type);
1822}
1823
1824/* Return the name for the constructor (or destructor) for the
1825 specified class. When given a template, return the plain
1826 unspecialized name. */
1827
1828tree
1829constructor_name (tree type)
1830{
1831 tree name;
1832 name = constructor_name_full (type);
1833 if (IDENTIFIER_TEMPLATE (name))
1834 name = IDENTIFIER_TEMPLATE (name);
1835 return name;
1836}
1837
1838/* Returns TRUE if NAME is the name for the constructor for TYPE. */
1839
1840bool
1841constructor_name_p (tree name, tree type)
1842{
1843 tree ctor_name;
1844
1845 if (!name)
1846 return false;
1847
1848 if (TREE_CODE (name) != IDENTIFIER_NODE)
1849 return false;
1850
1851 ctor_name = constructor_name_full (type);
1852 if (name == ctor_name)
1853 return true;
1854 if (IDENTIFIER_TEMPLATE (ctor_name)
1855 && name == IDENTIFIER_TEMPLATE (ctor_name))
1856 return true;
1857 return false;
1858}
1859
9a49d46b 1860/* Counter used to create anonymous type names. */
1861
1862static GTY(()) int anon_cnt;
1863
1864/* Return an IDENTIFIER which can be used as a name for
1865 anonymous structs and unions. */
1866
1867tree
1868make_anon_name (void)
1869{
1870 char buf[32];
1871
1872 sprintf (buf, ANON_AGGRNAME_FORMAT, anon_cnt++);
1873 return get_identifier (buf);
1874}
1875
1876/* Clear the TREE_PURPOSE slot of UTDs which have anonymous typenames.
1877 This keeps dbxout from getting confused. */
1878
1879void
1880clear_anon_tags (void)
1881{
cd16867a 1882 struct cp_binding_level *b;
9a49d46b 1883 static int last_cnt = 0;
1884
1885 /* Fast out if no new anon names were declared. */
1886 if (last_cnt == anon_cnt)
1887 return;
1888
1889 b = current_binding_level;
1890 while (b->kind == sk_cleanup)
1891 b = b->level_chain;
1892 if (b->type_decls != NULL)
1893 binding_table_remove_anonymous_types (b->type_decls);
1894 last_cnt = anon_cnt;
1895}
1896\f
63eff20d 1897/* Return (from the stack of) the BINDING, if any, established at SCOPE. */
d36ac936 1898
1899static inline cxx_binding *
1900find_binding (cxx_scope *scope, cxx_binding *binding)
1901{
1902 timevar_push (TV_NAME_LOOKUP);
1903
1904 for (; binding != NULL; binding = binding->previous)
76608a37 1905 if (binding->scope == scope)
d36ac936 1906 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, binding);
1907
52ce909c 1908 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, (cxx_binding *)0);
d36ac936 1909}
1910
1911/* Return the binding for NAME in SCOPE, if any. Otherwise, return NULL. */
0e1d7e20 1912
cc9a4194 1913static inline cxx_binding *
d36ac936 1914cxx_scope_find_binding_for_name (cxx_scope *scope, tree name)
1915{
1916 cxx_binding *b = IDENTIFIER_NAMESPACE_BINDINGS (name);
1917 if (b)
1918 {
1919 /* Fold-in case where NAME is used only once. */
76608a37 1920 if (scope == b->scope && b->previous == NULL)
d36ac936 1921 return b;
1922 return find_binding (scope, b);
1923 }
1924 return NULL;
1925}
1926
1927/* Always returns a binding for name in scope. If no binding is
1928 found, make a new one. */
1929
cc9a4194 1930static cxx_binding *
d36ac936 1931binding_for_name (cxx_scope *scope, tree name)
1932{
1933 cxx_binding *result;
1934
1935 result = cxx_scope_find_binding_for_name (scope, name);
1936 if (result)
1937 return result;
1938 /* Not found, make a new one. */
1939 result = cxx_binding_make (NULL, NULL);
1940 result->previous = IDENTIFIER_NAMESPACE_BINDINGS (name);
76608a37 1941 result->scope = scope;
d36ac936 1942 result->is_local = false;
1943 result->value_is_inherited = false;
1944 IDENTIFIER_NAMESPACE_BINDINGS (name) = result;
1945 return result;
1946}
d36ac936 1947
9a49d46b 1948/* Insert another USING_DECL into the current binding level, returning
1949 this declaration. If this is a redeclaration, do nothing, and
1950 return NULL_TREE if this not in namespace scope (in namespace
1951 scope, a using decl might extend any previous bindings). */
1952
1953tree
1954push_using_decl (tree scope, tree name)
1955{
1956 tree decl;
1957
1958 timevar_push (TV_NAME_LOOKUP);
1959 my_friendly_assert (TREE_CODE (scope) == NAMESPACE_DECL, 383);
1960 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 384);
1961 for (decl = current_binding_level->usings; decl; decl = TREE_CHAIN (decl))
1962 if (DECL_INITIAL (decl) == scope && DECL_NAME (decl) == name)
1963 break;
1964 if (decl)
1965 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP,
1966 namespace_bindings_p () ? decl : NULL_TREE);
1967 decl = build_lang_decl (USING_DECL, name, void_type_node);
1968 DECL_INITIAL (decl) = scope;
1969 TREE_CHAIN (decl) = current_binding_level->usings;
1970 current_binding_level->usings = decl;
1971 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
1972}
1973
836495aa 1974/* Same as pushdecl, but define X in binding-level LEVEL. We rely on the
1975 caller to set DECL_CONTEXT properly. */
d36ac936 1976
1977tree
836495aa 1978pushdecl_with_scope (tree x, cxx_scope *level)
d36ac936 1979{
cd16867a 1980 struct cp_binding_level *b;
836495aa 1981 tree function_decl = current_function_decl;
d36ac936 1982
836495aa 1983 timevar_push (TV_NAME_LOOKUP);
1984 current_function_decl = NULL_TREE;
1985 if (level->kind == sk_class)
1986 {
1987 b = class_binding_level;
1988 class_binding_level = level;
1989 pushdecl_class_level (x);
1990 class_binding_level = b;
1991 }
1992 else
1993 {
1994 b = current_binding_level;
1995 current_binding_level = level;
1996 x = pushdecl (x);
1997 current_binding_level = b;
1998 }
1999 current_function_decl = function_decl;
2000 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
2001}
2002
9a49d46b 2003/* DECL is a FUNCTION_DECL for a non-member function, which may have
2004 other definitions already in place. We get around this by making
2005 the value of the identifier point to a list of all the things that
2006 want to be referenced by that name. It is then up to the users of
2007 that name to decide what to do with that list.
2008
2009 DECL may also be a TEMPLATE_DECL, with a FUNCTION_DECL in its
2010 DECL_TEMPLATE_RESULT. It is dealt with the same way.
2011
2012 FLAGS is a bitwise-or of the following values:
2013 PUSH_LOCAL: Bind DECL in the current scope, rather than at
2014 namespace scope.
2015 PUSH_USING: DECL is being pushed as the result of a using
2016 declaration.
2017
2018 The value returned may be a previous declaration if we guessed wrong
2019 about what language DECL should belong to (C or C++). Otherwise,
2020 it's always DECL (and never something that's not a _DECL). */
2021
2022static tree
2023push_overloaded_decl (tree decl, int flags)
2024{
2025 tree name = DECL_NAME (decl);
2026 tree old;
2027 tree new_binding;
2028 int doing_global = (namespace_bindings_p () || !(flags & PUSH_LOCAL));
2029
2030 timevar_push (TV_NAME_LOOKUP);
2031 if (doing_global)
2032 old = namespace_binding (name, DECL_CONTEXT (decl));
2033 else
2034 old = lookup_name_current_level (name);
2035
2036 if (old)
2037 {
2038 if (TREE_CODE (old) == TYPE_DECL && DECL_ARTIFICIAL (old))
2039 {
2040 tree t = TREE_TYPE (old);
2041 if (IS_AGGR_TYPE (t) && warn_shadow
2042 && (! DECL_IN_SYSTEM_HEADER (decl)
2043 || ! DECL_IN_SYSTEM_HEADER (old)))
2044 warning ("`%#D' hides constructor for `%#T'", decl, t);
2045 old = NULL_TREE;
2046 }
2047 else if (is_overloaded_fn (old))
2048 {
2049 tree tmp;
2050
2051 for (tmp = old; tmp; tmp = OVL_NEXT (tmp))
2052 {
2053 tree fn = OVL_CURRENT (tmp);
2054
2055 if (TREE_CODE (tmp) == OVERLOAD && OVL_USED (tmp)
2056 && !(flags & PUSH_USING)
2057 && compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2058 TYPE_ARG_TYPES (TREE_TYPE (decl))))
2059 error ("`%#D' conflicts with previous using declaration `%#D'",
2060 decl, fn);
2061
947f430b 2062 if (duplicate_decls (decl, fn) == fn)
9a49d46b 2063 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, fn);
2064 }
2065 }
2066 else if (old == error_mark_node)
2067 /* Ignore the undefined symbol marker. */
2068 old = NULL_TREE;
2069 else
2070 {
2071 cp_error_at ("previous non-function declaration `%#D'", old);
2072 error ("conflicts with function declaration `%#D'", decl);
2073 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2074 }
2075 }
2076
c2f32ff6 2077 if (old || TREE_CODE (decl) == TEMPLATE_DECL
2078 /* If it's a using declaration, we always need to build an OVERLOAD,
2079 because it's the only way to remember that the declaration comes
2080 from 'using', and have the lookup behave correctly. */
2081 || (flags & PUSH_USING))
9a49d46b 2082 {
2083 if (old && TREE_CODE (old) != OVERLOAD)
2084 new_binding = ovl_cons (decl, ovl_cons (old, NULL_TREE));
2085 else
2086 new_binding = ovl_cons (decl, old);
2087 if (flags & PUSH_USING)
2088 OVL_USED (new_binding) = 1;
2089 }
2090 else
f9a802b1 2091 /* NAME is not ambiguous. */
9a49d46b 2092 new_binding = decl;
2093
2094 if (doing_global)
2095 set_namespace_binding (name, current_namespace, new_binding);
2096 else
2097 {
2098 /* We only create an OVERLOAD if there was a previous binding at
2099 this level, or if decl is a template. In the former case, we
2100 need to remove the old binding and replace it with the new
2101 binding. We must also run through the NAMES on the binding
2102 level where the name was bound to update the chain. */
2103
2104 if (TREE_CODE (new_binding) == OVERLOAD && old)
2105 {
2106 tree *d;
2107
2108 for (d = &IDENTIFIER_BINDING (name)->scope->names;
2109 *d;
2110 d = &TREE_CHAIN (*d))
2111 if (*d == old
2112 || (TREE_CODE (*d) == TREE_LIST
2113 && TREE_VALUE (*d) == old))
2114 {
2115 if (TREE_CODE (*d) == TREE_LIST)
2116 /* Just replace the old binding with the new. */
2117 TREE_VALUE (*d) = new_binding;
2118 else
2119 /* Build a TREE_LIST to wrap the OVERLOAD. */
2120 *d = tree_cons (NULL_TREE, new_binding,
2121 TREE_CHAIN (*d));
2122
2123 /* And update the cxx_binding node. */
2124 IDENTIFIER_BINDING (name)->value = new_binding;
2125 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2126 }
2127
2128 /* We should always find a previous binding in this case. */
2129 abort ();
2130 }
2131
2132 /* Install the new binding. */
2133 push_local_binding (name, new_binding, flags);
2134 }
2135
2136 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2137}
2138
cc9a4194 2139/* Check a non-member using-declaration. Return the name and scope
2140 being used, and the USING_DECL, or NULL_TREE on failure. */
2141
2142static tree
2c47ecdb 2143validate_nonmember_using_decl (tree decl, tree scope, tree name)
cc9a4194 2144{
cc9a4194 2145 if (TREE_CODE (decl) == TEMPLATE_ID_EXPR)
2146 {
cc9a4194 2147 /* 7.3.3/5
2148 A using-declaration shall not name a template-id. */
2c47ecdb 2149 error ("a using-declaration cannot specify a template-id. Try `using %D'", name);
cc9a4194 2150 return NULL_TREE;
2151 }
2152
2153 if (TREE_CODE (decl) == NAMESPACE_DECL)
2154 {
2155 error ("namespace `%D' not allowed in using-declaration", decl);
2156 return NULL_TREE;
2157 }
2158
2159 if (TREE_CODE (decl) == SCOPE_REF)
2160 {
2161 /* It's a nested name with template parameter dependent scope.
2162 This can only be using-declaration for class member. */
2163 error ("`%T' is not a namespace", TREE_OPERAND (decl, 0));
2164 return NULL_TREE;
2165 }
2166
2167 if (is_overloaded_fn (decl))
2168 decl = get_first_fn (decl);
2169
2170 my_friendly_assert (DECL_P (decl), 20020908);
2171
cc9a4194 2172 /* [namespace.udecl]
2173 A using-declaration for a class member shall be a
2174 member-declaration. */
2c47ecdb 2175 if (TYPE_P (scope))
cc9a4194 2176 {
2c47ecdb 2177 error ("`%T' is not a namespace", scope);
cc9a4194 2178 return NULL_TREE;
2179 }
2c47ecdb 2180
cc9a4194 2181 /* Make a USING_DECL. */
2c47ecdb 2182 return push_using_decl (scope, name);
cc9a4194 2183}
2184
2185/* Process local and global using-declarations. */
2186
2187static void
2188do_nonmember_using_decl (tree scope, tree name, tree oldval, tree oldtype,
2189 tree *newval, tree *newtype)
2190{
7d6057da 2191 struct scope_binding decls = EMPTY_SCOPE_BINDING;
cc9a4194 2192
2193 *newval = *newtype = NULL_TREE;
cc9a4194 2194 if (!qualified_lookup_using_namespace (name, scope, &decls, 0))
2195 /* Lookup error */
2196 return;
2197
2198 if (!decls.value && !decls.type)
2199 {
2200 error ("`%D' not declared", name);
2201 return;
2202 }
2203
2204 /* Check for using functions. */
2205 if (decls.value && is_overloaded_fn (decls.value))
2206 {
2207 tree tmp, tmp1;
2208
2209 if (oldval && !is_overloaded_fn (oldval))
2210 {
2211 if (!DECL_IMPLICIT_TYPEDEF_P (oldval))
2212 error ("`%D' is already declared in this scope", name);
2213 oldval = NULL_TREE;
2214 }
2215
2216 *newval = oldval;
2217 for (tmp = decls.value; tmp; tmp = OVL_NEXT (tmp))
2218 {
2219 tree new_fn = OVL_CURRENT (tmp);
2220
2221 /* [namespace.udecl]
2222
2223 If a function declaration in namespace scope or block
2224 scope has the same name and the same parameter types as a
2225 function introduced by a using declaration the program is
2226 ill-formed. */
2227 for (tmp1 = oldval; tmp1; tmp1 = OVL_NEXT (tmp1))
2228 {
2229 tree old_fn = OVL_CURRENT (tmp1);
2230
2231 if (new_fn == old_fn)
2232 /* The function already exists in the current namespace. */
2233 break;
2234 else if (OVL_USED (tmp1))
2235 continue; /* this is a using decl */
2236 else if (compparms (TYPE_ARG_TYPES (TREE_TYPE (new_fn)),
2237 TYPE_ARG_TYPES (TREE_TYPE (old_fn))))
2238 {
2239 /* There was already a non-using declaration in
2240 this scope with the same parameter types. If both
2241 are the same extern "C" functions, that's ok. */
2242 if (decls_match (new_fn, old_fn))
2243 {
2244 /* If the OLD_FN was a builtin, there is now a
2245 real declaration. */
2246 if (DECL_ANTICIPATED (old_fn))
2247 DECL_ANTICIPATED (old_fn) = 0;
2248 break;
2249 }
2250 else if (!DECL_ANTICIPATED (old_fn))
2251 {
2252 /* If the OLD_FN was really declared, the
2253 declarations don't match. */
2254 error ("`%D' is already declared in this scope", name);
2255 break;
2256 }
2257
2258 /* If the OLD_FN was not really there, just ignore
2259 it and keep going. */
2260 }
2261 }
2262
2263 /* If we broke out of the loop, there's no reason to add
2264 this function to the using declarations for this
2265 scope. */
2266 if (tmp1)
2267 continue;
2268
d45cef9b 2269 /* If we are adding to an existing OVERLOAD, then we no
2270 longer know the type of the set of functions. */
2271 if (*newval && TREE_CODE (*newval) == OVERLOAD)
2272 TREE_TYPE (*newval) = unknown_type_node;
2273 /* Add this new function to the set. */
cc9a4194 2274 *newval = build_overload (OVL_CURRENT (tmp), *newval);
d45cef9b 2275 /* If there is only one function, then we use its type. (A
2276 using-declaration naming a single function can be used in
2277 contexts where overload resolution cannot be
2278 performed.) */
cc9a4194 2279 if (TREE_CODE (*newval) != OVERLOAD)
d45cef9b 2280 {
2281 *newval = ovl_cons (*newval, NULL_TREE);
2282 TREE_TYPE (*newval) = TREE_TYPE (OVL_CURRENT (tmp));
2283 }
cc9a4194 2284 OVL_USED (*newval) = 1;
2285 }
2286 }
2287 else
2288 {
2289 *newval = decls.value;
2290 if (oldval && !decls_match (*newval, oldval))
2291 error ("`%D' is already declared in this scope", name);
2292 }
2293
2294 *newtype = decls.type;
2295 if (oldtype && *newtype && !same_type_p (oldtype, *newtype))
2296 {
2297 error ("using declaration `%D' introduced ambiguous type `%T'",
2298 name, oldtype);
2299 return;
2300 }
2301}
2302
2303/* Process a using-declaration at function scope. */
2304
2305void
2c47ecdb 2306do_local_using_decl (tree decl, tree scope, tree name)
cc9a4194 2307{
cc9a4194 2308 tree oldval, oldtype, newval, newtype;
2b49746a 2309 tree orig_decl = decl;
cc9a4194 2310
2c47ecdb 2311 decl = validate_nonmember_using_decl (decl, scope, name);
cc9a4194 2312 if (decl == NULL_TREE)
2313 return;
2314
2315 if (building_stmt_tree ()
2316 && at_function_scope_p ())
7dd37241 2317 add_decl_expr (decl);
cc9a4194 2318
2319 oldval = lookup_name_current_level (name);
2320 oldtype = lookup_type_current_level (name);
2321
2322 do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype);
2323
2324 if (newval)
2325 {
2326 if (is_overloaded_fn (newval))
2327 {
2328 tree fn, term;
2329
2330 /* We only need to push declarations for those functions
2331 that were not already bound in the current level.
2332 The old value might be NULL_TREE, it might be a single
2333 function, or an OVERLOAD. */
2334 if (oldval && TREE_CODE (oldval) == OVERLOAD)
2335 term = OVL_FUNCTION (oldval);
2336 else
2337 term = oldval;
2338 for (fn = newval; fn && OVL_CURRENT (fn) != term;
2339 fn = OVL_NEXT (fn))
2340 push_overloaded_decl (OVL_CURRENT (fn),
2341 PUSH_LOCAL | PUSH_USING);
2342 }
2343 else
2344 push_local_binding (name, newval, PUSH_USING);
2345 }
2346 if (newtype)
7ef14399 2347 {
2348 push_local_binding (name, newtype, PUSH_USING);
2349 set_identifier_type_value (name, newtype);
2350 }
2b49746a 2351
2352 /* Emit debug info. */
2353 if (!processing_template_decl)
2354 cp_emit_debug_info_for_using (orig_decl, current_scope());
cc9a4194 2355}
2356
836495aa 2357/* Return the type that should be used when TYPE's name is preceded
2358 by a tag such as 'struct' or 'union', or null if the name cannot
2359 be used in this way.
2360
2361 For example, when processing the third line of:
2362
2363 struct A;
2364 typedef struct A A;
2365 struct A;
2366
2367 lookup of A will find the typedef. Given A's typedef, this function
2368 will return the type associated with "struct A". For the tag to be
2369 anything other than TYPE, TYPE must be a typedef whose original type
2370 has the same name and context as TYPE itself.
2371
2372 It is not valid for a typedef of an anonymous type to be used with
2373 an explicit tag:
2374
2375 typedef struct { ... } B;
2376 struct B;
2377
2378 Return null for this case. */
2379
2380static tree
2381follow_tag_typedef (tree type)
2382{
2383 tree original;
2384
2385 original = original_type (type);
2386 if (! TYPE_NAME (original))
2387 return NULL_TREE;
2388 if (TYPE_IDENTIFIER (original) == TYPE_IDENTIFIER (type)
2389 && (CP_DECL_CONTEXT (TYPE_NAME (original))
2390 == CP_DECL_CONTEXT (TYPE_NAME (type)))
2391 && !(CLASS_TYPE_P (original) && TYPE_WAS_ANONYMOUS (original)))
2392 return original;
2393 else
2394 return NULL_TREE;
2395}
2396
2397/* Given NAME, an IDENTIFIER_NODE,
2398 return the structure (or union or enum) definition for that name.
2399 Searches binding levels from its SCOPE up to the global level.
2400 If THISLEVEL_ONLY is nonzero, searches only the specified context
2401 (but skips any sk_cleanup contexts to find one that is
2402 meaningful for tags).
2403 FORM says which kind of type the caller wants;
2404 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2405 If the wrong kind of type is found, and it's not a template, an error is
2406 reported. */
2407
2408tree
2409lookup_tag (enum tree_code form, tree name,
2410 cxx_scope *binding_level, int thislevel_only)
2411{
cd16867a 2412 struct cp_binding_level *level;
836495aa 2413 /* Nonzero if, we should look past a template parameter level, even
2414 if THISLEVEL_ONLY. */
2415 int allow_template_parms_p = 1;
2416 bool type_is_anonymous = ANON_AGGRNAME_P (name);
2417
2418 timevar_push (TV_NAME_LOOKUP);
2419 for (level = binding_level; level; level = level->level_chain)
2420 {
cd16867a 2421 tree tail;
836495aa 2422 if (type_is_anonymous && level->type_decls != NULL)
2423 {
2424 tree type = binding_table_find_anon_type (level->type_decls, name);
2425 /* There is no need for error checking here, because
2426 anon names are unique throughout the compilation. */
2427 if (type != NULL)
2428 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, type);
2429 }
2430 else if (level->kind == sk_namespace)
2431 /* Do namespace lookup. */
2432 for (tail = current_namespace; 1; tail = CP_DECL_CONTEXT (tail))
2433 {
2434 cxx_binding *binding =
2435 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (tail), name);
7d6057da 2436
2437 if (binding && (binding->type
2438 || (binding->value
2439 && DECL_DECLARES_TYPE_P (binding->value))))
836495aa 2440 {
7d6057da 2441 tree old;
2442
2443 /* If we just skipped past a template parameter level,
2444 even though THISLEVEL_ONLY, and we find a template
2445 class declaration, then we use the _TYPE node for the
2446 template. See the example below. */
2447 if (thislevel_only && !allow_template_parms_p
2448 && binding->value
2449 && DECL_CLASS_TEMPLATE_P (binding->value))
2450 old = binding->value;
2451 else
2452 old = binding->type ? binding->type : binding->value;
2453
836495aa 2454 /* We've found something at this binding level. If it is
2455 a typedef, extract the tag it refers to. Lookup fails
2456 if the typedef doesn't refer to a taggable type. */
2457 old = TREE_TYPE (old);
2458 old = follow_tag_typedef (old);
2459 if (!old)
2460 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2461 if (TREE_CODE (old) != form
2462 && (form == ENUMERAL_TYPE
2463 || TREE_CODE (old) == ENUMERAL_TYPE))
2464 {
2465 error ("`%#D' redeclared as %C", old, form);
2466 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2467 }
2468 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, old);
2469 }
2470 if (thislevel_only || tail == global_namespace)
2471 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2472 }
2473 else if (level->type_decls != NULL)
2474 {
2475 binding_entry entry = binding_table_find (level->type_decls, name);
2476 if (entry != NULL)
2477 {
2478 enum tree_code code = TREE_CODE (entry->type);
2479
2480 if (code != form
2481 && (form == ENUMERAL_TYPE || code == ENUMERAL_TYPE))
2482 {
2483 /* Definition isn't the kind we were looking for. */
2484 error ("`%#D' redeclared as %C", entry->type, form);
2485 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2486 }
2487 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, entry->type);
2488 }
2489 }
2490 if (thislevel_only && level->kind != sk_cleanup)
2491 {
2492 if (level->kind == sk_template_parms && allow_template_parms_p)
2493 {
2494 /* We must deal with cases like this:
2495
2496 template <class T> struct S;
2497 template <class T> struct S {};
2498
2499 When looking up `S', for the second declaration, we
2500 would like to find the first declaration. But, we
2501 are in the pseudo-global level created for the
2502 template parameters, rather than the (surrounding)
2503 namespace level. Thus, we keep going one more level,
2504 even though THISLEVEL_ONLY is nonzero. */
2505 allow_template_parms_p = 0;
2506 continue;
2507 }
2508 else
2509 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2510 }
2511 }
2512 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2513}
2514
2515/* Given a type, find the tag that was defined for it and return the tag name.
2516 Otherwise return 0. However, the value can never be 0
2517 in the cases in which this is used.
2518
2519 C++: If NAME is nonzero, this is the new name to install. This is
2520 done when replacing anonymous tags with real tag names. */
2521
2522tree
2523lookup_tag_reverse (tree type, tree name)
2524{
cd16867a 2525 struct cp_binding_level *level;
836495aa 2526
2527 timevar_push (TV_NAME_LOOKUP);
2528 for (level = current_binding_level; level; level = level->level_chain)
2529 {
2530 binding_entry entry = level->type_decls == NULL
2531 ? NULL
2532 : binding_table_reverse_maybe_remap (level->type_decls, type, name);
2533 if (entry)
2534 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, entry->name);
2535 }
2536 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2537}
cc9a4194 2538
2539/* Returns true if ROOT (a namespace, class, or function) encloses
2540 CHILD. CHILD may be either a class type or a namespace. */
2541
2542bool
2543is_ancestor (tree root, tree child)
2544{
2545 my_friendly_assert ((TREE_CODE (root) == NAMESPACE_DECL
2546 || TREE_CODE (root) == FUNCTION_DECL
2547 || CLASS_TYPE_P (root)), 20030307);
2548 my_friendly_assert ((TREE_CODE (child) == NAMESPACE_DECL
2549 || CLASS_TYPE_P (child)),
2550 20030307);
2551
2552 /* The global namespace encloses everything. */
2553 if (root == global_namespace)
2554 return true;
2555
2556 while (true)
2557 {
2558 /* If we've run out of scopes, stop. */
2559 if (!child)
2560 return false;
2561 /* If we've reached the ROOT, it encloses CHILD. */
2562 if (root == child)
2563 return true;
2564 /* Go out one level. */
2565 if (TYPE_P (child))
2566 child = TYPE_NAME (child);
2567 child = DECL_CONTEXT (child);
2568 }
2569}
2570
1cbda81f 2571/* Enter the class or namespace scope indicated by T. Returns TRUE iff
2572 pop_scope should be called later to exit this scope. */
cc9a4194 2573
1cbda81f 2574bool
cc9a4194 2575push_scope (tree t)
2576{
1cbda81f 2577 bool pop = true;
2578
cc9a4194 2579 if (TREE_CODE (t) == NAMESPACE_DECL)
2580 push_decl_namespace (t);
1cbda81f 2581 else if (CLASS_TYPE_P (t))
2582 {
2583 if (!at_class_scope_p ()
2584 || !same_type_p (current_class_type, t))
2585 push_nested_class (t);
2586 else
2587 /* T is the same as the current scope. There is therefore no
2588 need to re-enter the scope. Since we are not actually
2589 pushing a new scope, our caller should not call
2590 pop_scope. */
2591 pop = false;
2592 }
2593
2594 return pop;
cc9a4194 2595}
2596
2597/* Leave scope pushed by push_scope. */
2598
2599void
2600pop_scope (tree t)
2601{
2602 if (TREE_CODE (t) == NAMESPACE_DECL)
2603 pop_decl_namespace ();
2604 else if CLASS_TYPE_P (t)
2605 pop_nested_class ();
2606}
836495aa 2607\f
2608/* Do a pushlevel for class declarations. */
2609
2610void
2611pushlevel_class (void)
2612{
2613 if (ENABLE_SCOPE_CHECKING)
2614 is_class_level = 1;
2615
2616 class_binding_level = begin_scope (sk_class, current_class_type);
2617}
2618
2619/* ...and a poplevel for class declarations. */
2620
2621void
2622poplevel_class (void)
2623{
cd16867a 2624 struct cp_binding_level *level = class_binding_level;
598057ec 2625 cp_class_binding *cb;
2626 size_t i;
836495aa 2627 tree shadowed;
2628
2629 timevar_push (TV_NAME_LOOKUP);
2630 my_friendly_assert (level != 0, 354);
2631
2632 /* If we're leaving a toplevel class, don't bother to do the setting
2633 of IDENTIFIER_CLASS_VALUE to NULL_TREE, since first of all this slot
2634 shouldn't even be used when current_class_type isn't set, and second,
2635 if we don't touch it here, we're able to use the cache effect if the
2636 next time we're entering a class scope, it is the same class. */
2637 if (current_class_depth != 1)
2638 {
2639 struct cp_binding_level* b;
598057ec 2640 cp_class_binding* cb;
2641 size_t i;
836495aa 2642
2643 /* Clear out our IDENTIFIER_CLASS_VALUEs. */
598057ec 2644 clear_identifier_class_values ();
836495aa 2645
2646 /* Find the next enclosing class, and recreate
2647 IDENTIFIER_CLASS_VALUEs appropriate for that class. */
2648 b = level->level_chain;
2649 while (b && b->kind != sk_class)
2650 b = b->level_chain;
2651
2652 if (b)
598057ec 2653 for (i = 0;
2654 (cb = VEC_iterate (cp_class_binding,
2655 b->class_shadowed,
2656 i));
2657 ++i)
836495aa 2658 {
2659 cxx_binding *binding;
2660
598057ec 2661 binding = IDENTIFIER_BINDING (cb->identifier);
836495aa 2662 while (binding && binding->scope != b)
2663 binding = binding->previous;
2664
2665 if (binding)
598057ec 2666 IDENTIFIER_CLASS_VALUE (cb->identifier) = binding->value;
836495aa 2667 }
2668 }
2669 else
2670 /* Remember to save what IDENTIFIER's were bound in this scope so we
2671 can recover from cache misses. */
598057ec 2672 previous_class_level = level;
836495aa 2673 for (shadowed = level->type_shadowed;
2674 shadowed;
2675 shadowed = TREE_CHAIN (shadowed))
2676 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (shadowed), TREE_VALUE (shadowed));
2677
2678 /* Remove the bindings for all of the class-level declarations. */
598057ec 2679 for (i = 0;
2680 (cb = VEC_iterate (cp_class_binding, level->class_shadowed, i));
2681 ++i)
2682 IDENTIFIER_BINDING (cb->identifier) = cb->base.previous;
836495aa 2683
2684 /* Now, pop out of the binding level which we created up in the
2685 `pushlevel_class' routine. */
2686 if (ENABLE_SCOPE_CHECKING)
2687 is_class_level = 1;
2688
2689 leave_scope ();
2690 timevar_pop (TV_NAME_LOOKUP);
2691}
2692
2693/* Bind DECL to ID in the class_binding_level. Returns nonzero if the
2694 binding was successful. */
2695
2696int
2697push_class_binding (tree id, tree decl)
2698{
2699 int result = 1;
2700 cxx_binding *binding = IDENTIFIER_BINDING (id);
2701 tree context;
2702
2703 timevar_push (TV_NAME_LOOKUP);
2704 /* Note that we declared this value so that we can issue an error if
2705 this is an invalid redeclaration of a name already used for some
2706 other purpose. */
2707 note_name_declared_in_class (id, decl);
2708
2709 if (binding && binding->scope == class_binding_level)
2710 /* Supplement the existing binding. */
2711 result = supplement_binding (IDENTIFIER_BINDING (id), decl);
2712 else
2713 /* Create a new binding. */
2714 push_binding (id, decl, class_binding_level);
2715
2716 /* Update the IDENTIFIER_CLASS_VALUE for this ID to be the
2717 class-level declaration. Note that we do not use DECL here
2718 because of the possibility of the `struct stat' hack; if DECL is
2719 a class-name or enum-name we might prefer a field-name, or some
2720 such. */
2721 IDENTIFIER_CLASS_VALUE (id) = IDENTIFIER_BINDING (id)->value;
2722
2723 /* If this is a binding from a base class, mark it as such. */
2724 binding = IDENTIFIER_BINDING (id);
2725 if (binding->value == decl && TREE_CODE (decl) != TREE_LIST)
2726 {
2727 if (TREE_CODE (decl) == OVERLOAD)
2728 context = CP_DECL_CONTEXT (OVL_CURRENT (decl));
2729 else
2730 {
2731 my_friendly_assert (DECL_P (decl), 0);
2732 context = context_for_name_lookup (decl);
2733 }
2734
2735 if (is_properly_derived_from (current_class_type, context))
2736 INHERITED_VALUE_BINDING_P (binding) = 1;
2737 else
2738 INHERITED_VALUE_BINDING_P (binding) = 0;
2739 }
2740 else if (binding->value == decl)
2741 /* We only encounter a TREE_LIST when push_class_decls detects an
2742 ambiguity. Such an ambiguity can be overridden by a definition
2743 in this class. */
2744 INHERITED_VALUE_BINDING_P (binding) = 1;
2745
2746 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, result);
2747}
2748
2749/* We are entering the scope of a class. Clear IDENTIFIER_CLASS_VALUE
2750 for any names in enclosing classes. */
2751
2752void
2753clear_identifier_class_values (void)
2754{
598057ec 2755 size_t i;
2756 cp_class_binding *cb;
836495aa 2757
598057ec 2758 if (class_binding_level)
2759 for (i = 0;
2760 (cb = VEC_iterate (cp_class_binding,
2761 class_binding_level->class_shadowed,
2762 i));
2763 ++i)
2764 IDENTIFIER_CLASS_VALUE (cb->identifier) = NULL_TREE;
836495aa 2765}
2766
2767/* Make the declaration of X appear in CLASS scope. */
2768
2769bool
2770pushdecl_class_level (tree x)
2771{
2772 tree name;
2773 bool is_valid = true;
2774
2775 timevar_push (TV_NAME_LOOKUP);
2776 /* Get the name of X. */
2777 if (TREE_CODE (x) == OVERLOAD)
2778 name = DECL_NAME (get_first_fn (x));
2779 else
2780 name = DECL_NAME (x);
2781
2782 if (name)
2783 {
2784 is_valid = push_class_level_binding (name, x);
2785 if (TREE_CODE (x) == TYPE_DECL)
2786 set_identifier_type_value (name, x);
2787 }
2788 else if (ANON_AGGR_TYPE_P (TREE_TYPE (x)))
2789 {
2790 /* If X is an anonymous aggregate, all of its members are
2791 treated as if they were members of the class containing the
2792 aggregate, for naming purposes. */
2793 tree f;
2794
2795 for (f = TYPE_FIELDS (TREE_TYPE (x)); f; f = TREE_CHAIN (f))
2796 {
2797 location_t save_location = input_location;
2798 input_location = DECL_SOURCE_LOCATION (f);
2799 if (!pushdecl_class_level (f))
2800 is_valid = false;
2801 input_location = save_location;
2802 }
2803 }
2804 timevar_pop (TV_NAME_LOOKUP);
2805
2806 return is_valid;
2807}
2808
2809/* Make the declaration(s) of X appear in CLASS scope under the name
2810 NAME. Returns true if the binding is valid. */
2811
2812bool
2813push_class_level_binding (tree name, tree x)
2814{
2815 cxx_binding *binding;
2816
2817 timevar_push (TV_NAME_LOOKUP);
2818 /* The class_binding_level will be NULL if x is a template
2819 parameter name in a member template. */
2820 if (!class_binding_level)
2821 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2822
2823 /* Make sure that this new member does not have the same name
2824 as a template parameter. */
2825 if (TYPE_BEING_DEFINED (current_class_type))
93ceb69b 2826 {
2827 tree decl = x;
2828
2829 /* We could have been passed a tree list if this is an ambiguous
2830 declaration. If so, pull the declaration out because
2831 check_template_shadow will not handle a TREE_LIST. */
2832 if (TREE_CODE (decl) == TREE_LIST
2833 && TREE_TYPE (decl) == error_mark_node)
2834 decl = TREE_VALUE (decl);
2835
2836 check_template_shadow (decl);
2837 }
836495aa 2838
49babdb3 2839 /* [class.mem]
2840
2841 If T is the name of a class, then each of the following shall
2842 have a name different from T:
2843
2844 -- every static data member of class T;
2845
2846 -- every member of class T that is itself a type;
2847
2848 -- every enumerator of every member of class T that is an
2849 enumerated type;
2850
2851 -- every member of every anonymous union that is a member of
2852 class T.
2853
2854 (Non-static data members were also forbidden to have the same
2855 name as T until TC1.) */
2856 if ((TREE_CODE (x) == VAR_DECL
2857 || TREE_CODE (x) == CONST_DECL
2858 || (TREE_CODE (x) == TYPE_DECL
2859 && !DECL_SELF_REFERENCE_P (x))
2860 /* A data member of an anonymous union. */
2861 || (TREE_CODE (x) == FIELD_DECL
2862 && DECL_CONTEXT (x) != current_class_type))
2863 && DECL_NAME (x) == constructor_name (current_class_type))
2864 {
2c21a1c3 2865 tree scope = context_for_name_lookup (x);
2866 if (TYPE_P (scope) && same_type_p (scope, current_class_type))
2867 {
2868 error ("`%D' has the same name as the class in which it is declared",
2869 x);
2870 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, false);
2871 }
49babdb3 2872 }
2873
836495aa 2874 /* If this declaration shadows a declaration from an enclosing
2875 class, then we will need to restore IDENTIFIER_CLASS_VALUE when
2876 we leave this class. Record the shadowed declaration here. */
2877 binding = IDENTIFIER_BINDING (name);
2878 if (binding && binding->value)
2879 {
2880 tree bval = binding->value;
2881 tree old_decl = NULL_TREE;
2882
2883 if (INHERITED_VALUE_BINDING_P (binding))
2884 {
2885 /* If the old binding was from a base class, and was for a
2886 tag name, slide it over to make room for the new binding.
2887 The old binding is still visible if explicitly qualified
2888 with a class-key. */
2889 if (TREE_CODE (bval) == TYPE_DECL && DECL_ARTIFICIAL (bval)
2890 && !(TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)))
2891 {
2892 old_decl = binding->type;
2893 binding->type = bval;
2894 binding->value = NULL_TREE;
2895 INHERITED_VALUE_BINDING_P (binding) = 0;
2896 }
2897 else
2898 old_decl = bval;
2899 }
2900 else if (TREE_CODE (x) == OVERLOAD && is_overloaded_fn (bval))
2901 old_decl = bval;
2902 else if (TREE_CODE (x) == USING_DECL && TREE_CODE (bval) == USING_DECL)
2903 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2904 else if (TREE_CODE (x) == USING_DECL && is_overloaded_fn (bval))
2905 old_decl = bval;
2906 else if (TREE_CODE (bval) == USING_DECL && is_overloaded_fn (x))
2907 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
598057ec 2908
836495aa 2909 if (old_decl)
2910 {
598057ec 2911 cp_class_binding *cb;
2912 size_t i;
2913
836495aa 2914 /* Find the previous binding of name on the class-shadowed
2915 list, and update it. */
598057ec 2916 for (i = 0;
2917 (cb = VEC_iterate (cp_class_binding,
2918 class_binding_level->class_shadowed,
2919 i));
2920 ++i)
2921 if (cb->identifier == name
2922 && (cb->base.value == old_decl
2923 || cb->base.type == old_decl))
836495aa 2924 {
2925 binding->value = x;
2926 INHERITED_VALUE_BINDING_P (binding) = 0;
836495aa 2927 IDENTIFIER_CLASS_VALUE (name) = x;
2928 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2929 }
2930 }
2931 }
2932
2933 /* If we didn't replace an existing binding, put the binding on the
2934 stack of bindings for the identifier, and update the shadowed list. */
2935 if (push_class_binding (name, x))
598057ec 2936 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
836495aa 2937
2938 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, false);
2939}
2940
cc9a4194 2941tree
2942do_class_using_decl (tree decl)
2943{
2944 tree name, value, scope, type;
2945
2946 if (TREE_CODE (decl) != SCOPE_REF
2947 || !TREE_OPERAND (decl, 0)
2948 || !TYPE_P (TREE_OPERAND (decl, 0)))
2949 {
2950 error ("using-declaration for non-member at class scope");
2951 return NULL_TREE;
2952 }
2953 scope = TREE_OPERAND (decl, 0);
2954 name = TREE_OPERAND (decl, 1);
2955 if (TREE_CODE (name) == BIT_NOT_EXPR)
2956 {
2957 error ("using-declaration cannot name destructor");
2958 return NULL_TREE;
2959 }
2960 if (TREE_CODE (name) == TYPE_DECL)
2961 name = DECL_NAME (name);
2962 else if (TREE_CODE (name) == TEMPLATE_DECL)
2963 name = DECL_NAME (name);
2964 else if (BASELINK_P (name))
2965 {
2966 tree fns = BASELINK_FUNCTIONS (name);
2967 name = DECL_NAME (get_first_fn (fns));
2968 }
2969
2970 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 980716);
2971
2972 /* Dependent using decls have a NULL type, non-dependent ones have a
2973 void type. */
2974 type = dependent_type_p (scope) ? NULL_TREE : void_type_node;
2975 value = build_lang_decl (USING_DECL, name, type);
2976 DECL_INITIAL (value) = scope;
2b49746a 2977
2978 if (scope && !processing_template_decl)
2979 {
2980 tree r;
2981
2982 r = lookup_qualified_name (scope, name, false, false);
2983 if (r && TREE_CODE (r) != ERROR_MARK)
2984 cp_emit_debug_info_for_using (r, scope);
2985 }
cc9a4194 2986 return value;
2987}
2988
836495aa 2989\f
2990/* Return the binding value for name in scope. */
2991
2992tree
2993namespace_binding (tree name, tree scope)
2994{
2995 cxx_binding *binding;
2996
2997 if (scope == NULL)
2998 scope = global_namespace;
2999 scope = ORIGINAL_NAMESPACE (scope);
3000 binding = cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name);
3001
3002 return binding ? binding->value : NULL_TREE;
3003}
3004
3005/* Set the binding value for name in scope. */
d36ac936 3006
3007void
3008set_namespace_binding (tree name, tree scope, tree val)
3009{
3010 cxx_binding *b;
3011
3012 timevar_push (TV_NAME_LOOKUP);
3013 if (scope == NULL_TREE)
3014 scope = global_namespace;
3015 b = binding_for_name (NAMESPACE_LEVEL (scope), name);
f9a802b1 3016 if (!b->value || TREE_CODE (val) == OVERLOAD || val == error_mark_node)
76608a37 3017 b->value = val;
b7d1e8ea 3018 else
3bd975bc 3019 supplement_binding (b, val);
d36ac936 3020 timevar_pop (TV_NAME_LOOKUP);
3021}
3022
cc9a4194 3023/* Compute the namespace where a declaration is defined. */
3024
3025static tree
3026decl_namespace (tree decl)
3027{
3028 timevar_push (TV_NAME_LOOKUP);
3029 if (TYPE_P (decl))
3030 decl = TYPE_STUB_DECL (decl);
3031 while (DECL_CONTEXT (decl))
3032 {
3033 decl = DECL_CONTEXT (decl);
3034 if (TREE_CODE (decl) == NAMESPACE_DECL)
3035 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
3036 if (TYPE_P (decl))
3037 decl = TYPE_STUB_DECL (decl);
3038 my_friendly_assert (DECL_P (decl), 390);
3039 }
3040
3041 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, global_namespace);
3042}
3043
3044/* Set the context of a declaration to scope. Complain if we are not
3045 outside scope. */
3046
3047void
3048set_decl_namespace (tree decl, tree scope, bool friendp)
3049{
3050 tree old;
3051
3052 /* Get rid of namespace aliases. */
3053 scope = ORIGINAL_NAMESPACE (scope);
3054
3055 /* It is ok for friends to be qualified in parallel space. */
3056 if (!friendp && !is_ancestor (current_namespace, scope))
3057 error ("declaration of `%D' not in a namespace surrounding `%D'",
3058 decl, scope);
3059 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
3060 if (scope != current_namespace)
3061 {
3062 /* See whether this has been declared in the namespace. */
3063 old = namespace_binding (DECL_NAME (decl), scope);
3064 if (!old)
3065 /* No old declaration at all. */
3066 goto complain;
3067 /* A template can be explicitly specialized in any namespace. */
3068 if (processing_explicit_instantiation)
3069 return;
3070 if (!is_overloaded_fn (decl))
3071 /* Don't compare non-function decls with decls_match here,
3072 since it can't check for the correct constness at this
3073 point. pushdecl will find those errors later. */
3074 return;
3075 /* Since decl is a function, old should contain a function decl. */
3076 if (!is_overloaded_fn (old))
3077 goto complain;
3078 if (processing_template_decl || processing_specialization)
3079 /* We have not yet called push_template_decl to turn a
3080 FUNCTION_DECL into a TEMPLATE_DECL, so the declarations
3081 won't match. But, we'll check later, when we construct the
3082 template. */
3083 return;
3084 if (is_overloaded_fn (old))
3085 {
3086 for (; old; old = OVL_NEXT (old))
3087 if (decls_match (decl, OVL_CURRENT (old)))
3088 return;
3089 }
3090 else
3091 if (decls_match (decl, old))
3092 return;
3093 }
3094 else
3095 return;
3096 complain:
3097 error ("`%D' should have been declared inside `%D'",
3098 decl, scope);
3099}
3100
3101/* Return the namespace where the current declaration is declared. */
3102
3103tree
3104current_decl_namespace (void)
3105{
3106 tree result;
3107 /* If we have been pushed into a different namespace, use it. */
3108 if (decl_namespace_list)
3109 return TREE_PURPOSE (decl_namespace_list);
3110
3111 if (current_class_type)
3112 result = decl_namespace (TYPE_STUB_DECL (current_class_type));
3113 else if (current_function_decl)
3114 result = decl_namespace (current_function_decl);
3115 else
3116 result = current_namespace;
3117 return result;
3118}
3119
836495aa 3120/* Push into the scope of the NAME namespace. If NAME is NULL_TREE, then we
3121 select a name that is unique to this compilation unit. */
3122
3123void
3124push_namespace (tree name)
3125{
3126 tree d = NULL_TREE;
3127 int need_new = 1;
3128 int implicit_use = 0;
c2e83164 3129 bool anon = !name;
836495aa 3130
3131 timevar_push (TV_NAME_LOOKUP);
3132
3133 /* We should not get here if the global_namespace is not yet constructed
3134 nor if NAME designates the global namespace: The global scope is
3135 constructed elsewhere. */
3136 my_friendly_assert (global_namespace != NULL && name != global_scope_name,
3137 20030531);
3138
c2e83164 3139 if (anon)
836495aa 3140 {
3141 /* The name of anonymous namespace is unique for the translation
3142 unit. */
3143 if (!anonymous_namespace_name)
3144 anonymous_namespace_name = get_file_function_name ('N');
3145 name = anonymous_namespace_name;
3146 d = IDENTIFIER_NAMESPACE_VALUE (name);
3147 if (d)
3148 /* Reopening anonymous namespace. */
3149 need_new = 0;
3150 implicit_use = 1;
3151 }
3152 else
3153 {
3154 /* Check whether this is an extended namespace definition. */
3155 d = IDENTIFIER_NAMESPACE_VALUE (name);
3156 if (d != NULL_TREE && TREE_CODE (d) == NAMESPACE_DECL)
3157 {
3158 need_new = 0;
3159 if (DECL_NAMESPACE_ALIAS (d))
3160 {
3161 error ("namespace alias `%D' not allowed here, assuming `%D'",
3162 d, DECL_NAMESPACE_ALIAS (d));
3163 d = DECL_NAMESPACE_ALIAS (d);
3164 }
3165 }
3166 }
3167
3168 if (need_new)
3169 {
3170 /* Make a new namespace, binding the name to it. */
3171 d = build_lang_decl (NAMESPACE_DECL, name, void_type_node);
3172 DECL_CONTEXT (d) = FROB_CONTEXT (current_namespace);
1940f978 3173 pushdecl (d);
c2e83164 3174 if (anon)
3175 {
3176 /* Clear DECL_NAME for the benefit of debugging back ends. */
3177 SET_DECL_ASSEMBLER_NAME (d, name);
3178 DECL_NAME (d) = NULL_TREE;
3179 }
836495aa 3180 begin_scope (sk_namespace, d);
3181 }
3182 else
3183 resume_scope (NAMESPACE_LEVEL (d));
3184
3185 if (implicit_use)
3186 do_using_directive (d);
3187 /* Enter the name space. */
3188 current_namespace = d;
3189
3190 timevar_pop (TV_NAME_LOOKUP);
3191}
3192
3193/* Pop from the scope of the current namespace. */
3194
3195void
3196pop_namespace (void)
3197{
3198 my_friendly_assert (current_namespace != global_namespace, 20010801);
3199 current_namespace = CP_DECL_CONTEXT (current_namespace);
3200 /* The binding level is not popped, as it might be re-opened later. */
3201 leave_scope ();
3202}
3203
3204/* Push into the scope of the namespace NS, even if it is deeply
3205 nested within another namespace. */
3206
3207void
3208push_nested_namespace (tree ns)
3209{
3210 if (ns == global_namespace)
3211 push_to_top_level ();
3212 else
3213 {
3214 push_nested_namespace (CP_DECL_CONTEXT (ns));
3215 push_namespace (DECL_NAME (ns));
3216 }
3217}
3218
3219/* Pop back from the scope of the namespace NS, which was previously
3220 entered with push_nested_namespace. */
3221
3222void
3223pop_nested_namespace (tree ns)
3224{
3225 timevar_push (TV_NAME_LOOKUP);
3226 while (ns != global_namespace)
3227 {
3228 pop_namespace ();
3229 ns = CP_DECL_CONTEXT (ns);
3230 }
3231
3232 pop_from_top_level ();
3233 timevar_pop (TV_NAME_LOOKUP);
3234}
3235
cc9a4194 3236/* Temporarily set the namespace for the current declaration. */
3237
3238void
3239push_decl_namespace (tree decl)
3240{
3241 if (TREE_CODE (decl) != NAMESPACE_DECL)
3242 decl = decl_namespace (decl);
3243 decl_namespace_list = tree_cons (ORIGINAL_NAMESPACE (decl),
3244 NULL_TREE, decl_namespace_list);
3245}
3246
3247/* [namespace.memdef]/2 */
3248
3249void
3250pop_decl_namespace (void)
3251{
3252 decl_namespace_list = TREE_CHAIN (decl_namespace_list);
3253}
3254
3255/* Return the namespace that is the common ancestor
3256 of two given namespaces. */
3257
9a49d46b 3258static tree
cc9a4194 3259namespace_ancestor (tree ns1, tree ns2)
3260{
3261 timevar_push (TV_NAME_LOOKUP);
3262 if (is_ancestor (ns1, ns2))
3263 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ns1);
3264 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP,
3265 namespace_ancestor (CP_DECL_CONTEXT (ns1), ns2));
3266}
3267
3268/* Process a namespace-alias declaration. */
3269
3270void
3271do_namespace_alias (tree alias, tree namespace)
3272{
3273 if (TREE_CODE (namespace) != NAMESPACE_DECL)
3274 {
3275 /* The parser did not find it, so it's not there. */
3276 error ("unknown namespace `%D'", namespace);
3277 return;
3278 }
3279
3280 namespace = ORIGINAL_NAMESPACE (namespace);
3281
3282 /* Build the alias. */
3283 alias = build_lang_decl (NAMESPACE_DECL, alias, void_type_node);
3284 DECL_NAMESPACE_ALIAS (alias) = namespace;
3285 DECL_EXTERNAL (alias) = 1;
3286 pushdecl (alias);
2b49746a 3287
3288 /* Emit debug info for namespace alias. */
3289 (*debug_hooks->global_decl) (alias);
cc9a4194 3290}
3291
836495aa 3292/* Like pushdecl, only it places X in the current namespace,
3293 if appropriate. */
3294
3295tree
3296pushdecl_namespace_level (tree x)
3297{
cd16867a 3298 struct cp_binding_level *b = current_binding_level;
3299 tree t;
836495aa 3300
3301 timevar_push (TV_NAME_LOOKUP);
3302 t = pushdecl_with_scope (x, NAMESPACE_LEVEL (current_namespace));
3303
3304 /* Now, the type_shadowed stack may screw us. Munge it so it does
3305 what we want. */
3306 if (TREE_CODE (x) == TYPE_DECL)
3307 {
3308 tree name = DECL_NAME (x);
3309 tree newval;
3310 tree *ptr = (tree *)0;
3311 for (; !global_scope_p (b); b = b->level_chain)
3312 {
3313 tree shadowed = b->type_shadowed;
3314 for (; shadowed; shadowed = TREE_CHAIN (shadowed))
3315 if (TREE_PURPOSE (shadowed) == name)
3316 {
3317 ptr = &TREE_VALUE (shadowed);
3318 /* Can't break out of the loop here because sometimes
3319 a binding level will have duplicate bindings for
3320 PT names. It's gross, but I haven't time to fix it. */
3321 }
3322 }
3323 newval = TREE_TYPE (x);
3324 if (ptr == (tree *)0)
3325 {
3326 /* @@ This shouldn't be needed. My test case "zstring.cc" trips
3327 up here if this is changed to an assertion. --KR */
3328 SET_IDENTIFIER_TYPE_VALUE (name, x);
3329 }
3330 else
3331 {
3332 *ptr = newval;
3333 }
3334 }
3335 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
3336}
3337
cc9a4194 3338/* Insert USED into the using list of USER. Set INDIRECT_flag if this
3339 directive is not directly from the source. Also find the common
3340 ancestor and let our users know about the new namespace */
3341static void
3342add_using_namespace (tree user, tree used, bool indirect)
3343{
3344 tree t;
3345 timevar_push (TV_NAME_LOOKUP);
3346 /* Using oneself is a no-op. */
3347 if (user == used)
3348 {
3349 timevar_pop (TV_NAME_LOOKUP);
3350 return;
3351 }
3352 my_friendly_assert (TREE_CODE (user) == NAMESPACE_DECL, 380);
3353 my_friendly_assert (TREE_CODE (used) == NAMESPACE_DECL, 380);
3354 /* Check if we already have this. */
3355 t = purpose_member (used, DECL_NAMESPACE_USING (user));
3356 if (t != NULL_TREE)
3357 {
3358 if (!indirect)
3359 /* Promote to direct usage. */
3360 TREE_INDIRECT_USING (t) = 0;
3361 timevar_pop (TV_NAME_LOOKUP);
3362 return;
3363 }
3364
3365 /* Add used to the user's using list. */
3366 DECL_NAMESPACE_USING (user)
3367 = tree_cons (used, namespace_ancestor (user, used),
3368 DECL_NAMESPACE_USING (user));
3369
3370 TREE_INDIRECT_USING (DECL_NAMESPACE_USING (user)) = indirect;
3371
3372 /* Add user to the used's users list. */
3373 DECL_NAMESPACE_USERS (used)
3374 = tree_cons (user, 0, DECL_NAMESPACE_USERS (used));
3375
3376 /* Recursively add all namespaces used. */
3377 for (t = DECL_NAMESPACE_USING (used); t; t = TREE_CHAIN (t))
3378 /* indirect usage */
3379 add_using_namespace (user, TREE_PURPOSE (t), 1);
3380
3381 /* Tell everyone using us about the new used namespaces. */
3382 for (t = DECL_NAMESPACE_USERS (user); t; t = TREE_CHAIN (t))
3383 add_using_namespace (TREE_PURPOSE (t), used, 1);
3384 timevar_pop (TV_NAME_LOOKUP);
3385}
3386
3387/* Process a using-declaration not appearing in class or local scope. */
3388
3389void
2c47ecdb 3390do_toplevel_using_decl (tree decl, tree scope, tree name)
cc9a4194 3391{
cc9a4194 3392 tree oldval, oldtype, newval, newtype;
2b49746a 3393 tree orig_decl = decl;
cc9a4194 3394 cxx_binding *binding;
3395
2c47ecdb 3396 decl = validate_nonmember_using_decl (decl, scope, name);
cc9a4194 3397 if (decl == NULL_TREE)
3398 return;
3399
3400 binding = binding_for_name (NAMESPACE_LEVEL (current_namespace), name);
3401
3402 oldval = binding->value;
3403 oldtype = binding->type;
3404
3405 do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype);
3406
2b49746a 3407 /* Emit debug info. */
3408 if (!processing_template_decl)
3409 cp_emit_debug_info_for_using (orig_decl, current_namespace);
3410
cc9a4194 3411 /* Copy declarations found. */
3412 if (newval)
3413 binding->value = newval;
3414 if (newtype)
3415 binding->type = newtype;
3416 return;
3417}
3418
3419/* Process a using-directive. */
3420
3421void
3422do_using_directive (tree namespace)
3423{
2b49746a 3424 tree context = NULL_TREE;
3425
cc9a4194 3426 if (building_stmt_tree ())
3427 add_stmt (build_stmt (USING_STMT, namespace));
3428
3429 /* using namespace A::B::C; */
3430 if (TREE_CODE (namespace) == SCOPE_REF)
3431 namespace = TREE_OPERAND (namespace, 1);
3432 if (TREE_CODE (namespace) == IDENTIFIER_NODE)
3433 {
3434 /* Lookup in lexer did not find a namespace. */
3435 if (!processing_template_decl)
3436 error ("namespace `%T' undeclared", namespace);
3437 return;
3438 }
3439 if (TREE_CODE (namespace) != NAMESPACE_DECL)
3440 {
3441 if (!processing_template_decl)
3442 error ("`%T' is not a namespace", namespace);
3443 return;
3444 }
3445 namespace = ORIGINAL_NAMESPACE (namespace);
3446 if (!toplevel_bindings_p ())
2b49746a 3447 {
3448 push_using_directive (namespace);
3449 context = current_scope ();
3450 }
cc9a4194 3451 else
2b49746a 3452 {
3453 /* direct usage */
3454 add_using_namespace (current_namespace, namespace, 0);
3455 if (current_namespace != global_namespace)
3456 context = current_namespace;
3457 }
3458
3459 /* Emit debugging info. */
3460 if (!processing_template_decl)
3461 (*debug_hooks->imported_module_or_decl) (namespace, context);
cc9a4194 3462}
3463
a5ed46c9 3464/* Deal with a using-directive seen by the parser. Currently we only
3465 handle attributes here, since they cannot appear inside a template. */
3466
3467void
3468parse_using_directive (tree namespace, tree attribs)
3469{
3470 tree a;
3471
3472 do_using_directive (namespace);
3473
3474 for (a = attribs; a; a = TREE_CHAIN (a))
3475 {
3476 tree name = TREE_PURPOSE (a);
3477 if (is_attribute_p ("strong", name))
3478 {
3479 if (!toplevel_bindings_p ())
3480 error ("strong using only meaningful at namespace scope");
3481 else
3482 DECL_NAMESPACE_ASSOCIATIONS (namespace)
3483 = tree_cons (current_namespace, 0,
3484 DECL_NAMESPACE_ASSOCIATIONS (namespace));
3485 }
3486 else
3487 warning ("`%D' attribute directive ignored", name);
3488 }
3489}
3490
9a49d46b 3491/* Like pushdecl, only it places X in the global scope if appropriate.
3492 Calls cp_finish_decl to register the variable, initializing it with
3493 *INIT, if INIT is non-NULL. */
3494
3495static tree
3496pushdecl_top_level_1 (tree x, tree *init)
3497{
3498 timevar_push (TV_NAME_LOOKUP);
3499 push_to_top_level ();
3500 x = pushdecl_namespace_level (x);
3501 if (init)
3502 cp_finish_decl (x, *init, NULL_TREE, 0);
3503 pop_from_top_level ();
3504 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
3505}
3506
3507/* Like pushdecl, only it places X in the global scope if appropriate. */
3508
3509tree
3510pushdecl_top_level (tree x)
3511{
3512 return pushdecl_top_level_1 (x, NULL);
3513}
3514
3515/* Like pushdecl, only it places X in the global scope if
3516 appropriate. Calls cp_finish_decl to register the variable,
3517 initializing it with INIT. */
3518
3519tree
3520pushdecl_top_level_and_finish (tree x, tree init)
3521{
3522 return pushdecl_top_level_1 (x, &init);
3523}
3524
cc9a4194 3525/* Combines two sets of overloaded functions into an OVERLOAD chain, removing
3526 duplicates. The first list becomes the tail of the result.
3527
3528 The algorithm is O(n^2). We could get this down to O(n log n) by
3529 doing a sort on the addresses of the functions, if that becomes
3530 necessary. */
3531
3532static tree
3533merge_functions (tree s1, tree s2)
3534{
3535 for (; s2; s2 = OVL_NEXT (s2))
3536 {
3537 tree fn2 = OVL_CURRENT (s2);
3538 tree fns1;
3539
3540 for (fns1 = s1; fns1; fns1 = OVL_NEXT (fns1))
3541 {
3542 tree fn1 = OVL_CURRENT (fns1);
3543
3544 /* If the function from S2 is already in S1, there is no
3545 need to add it again. For `extern "C"' functions, we
3546 might have two FUNCTION_DECLs for the same function, in
3547 different namespaces; again, we only need one of them. */
3548 if (fn1 == fn2
3549 || (DECL_EXTERN_C_P (fn1) && DECL_EXTERN_C_P (fn2)
3550 && DECL_NAME (fn1) == DECL_NAME (fn2)))
3551 break;
3552 }
3553
3554 /* If we exhausted all of the functions in S1, FN2 is new. */
3555 if (!fns1)
3556 s1 = build_overload (fn2, s1);
3557 }
3558 return s1;
3559}
3560
3561/* This should return an error not all definitions define functions.
3562 It is not an error if we find two functions with exactly the
3563 same signature, only if these are selected in overload resolution.
3564 old is the current set of bindings, new the freshly-found binding.
3565 XXX Do we want to give *all* candidates in case of ambiguity?
3566 XXX In what way should I treat extern declarations?
3567 XXX I don't want to repeat the entire duplicate_decls here */
3568
7d6057da 3569static void
3570ambiguous_decl (tree name, struct scope_binding *old, cxx_binding *new,
3571 int flags)
cc9a4194 3572{
3573 tree val, type;
3574 my_friendly_assert (old != NULL, 393);
3575 /* Copy the value. */
3576 val = new->value;
3577 if (val)
3578 switch (TREE_CODE (val))
3579 {
3580 case TEMPLATE_DECL:
3581 /* If we expect types or namespaces, and not templates,
3582 or this is not a template class. */
3583 if (LOOKUP_QUALIFIERS_ONLY (flags)
3584 && !DECL_CLASS_TEMPLATE_P (val))
3585 val = NULL_TREE;
3586 break;
3587 case TYPE_DECL:
3588 if (LOOKUP_NAMESPACES_ONLY (flags))
3589 val = NULL_TREE;
3590 break;
3591 case NAMESPACE_DECL:
3592 if (LOOKUP_TYPES_ONLY (flags))
3593 val = NULL_TREE;
3594 break;
3595 case FUNCTION_DECL:
3596 /* Ignore built-in functions that are still anticipated. */
3597 if (LOOKUP_QUALIFIERS_ONLY (flags) || DECL_ANTICIPATED (val))
3598 val = NULL_TREE;
3599 break;
3600 default:
3601 if (LOOKUP_QUALIFIERS_ONLY (flags))
3602 val = NULL_TREE;
3603 }
3604
3605 if (!old->value)
3606 old->value = val;
3607 else if (val && val != old->value)
3608 {
3609 if (is_overloaded_fn (old->value) && is_overloaded_fn (val))
3610 old->value = merge_functions (old->value, val);
3611 else
3612 {
3613 /* Some declarations are functions, some are not. */
3614 if (flags & LOOKUP_COMPLAIN)
3615 {
3616 /* If we've already given this error for this lookup,
3617 old->value is error_mark_node, so let's not
3618 repeat ourselves. */
3619 if (old->value != error_mark_node)
3620 {
3621 error ("use of `%D' is ambiguous", name);
3622 cp_error_at (" first declared as `%#D' here",
3623 old->value);
3624 }
3625 cp_error_at (" also declared as `%#D' here", val);
3626 }
3627 old->value = error_mark_node;
3628 }
3629 }
3630 /* ... and copy the type. */
3631 type = new->type;
3632 if (LOOKUP_NAMESPACES_ONLY (flags))
3633 type = NULL_TREE;
3634 if (!old->type)
3635 old->type = type;
3636 else if (type && old->type != type)
3637 {
3638 if (flags & LOOKUP_COMPLAIN)
3639 {
3640 error ("`%D' denotes an ambiguous type",name);
3641 error ("%J first type here", TYPE_MAIN_DECL (old->type));
3642 error ("%J other type here", TYPE_MAIN_DECL (type));
3643 }
3644 }
cc9a4194 3645}
3646
836495aa 3647/* Return the declarations that are members of the namespace NS. */
3648
3649tree
3650cp_namespace_decls (tree ns)
3651{
3652 return NAMESPACE_LEVEL (ns)->names;
3653}
3654
3655/* Combine prefer_type and namespaces_only into flags. */
3656
3657static int
3658lookup_flags (int prefer_type, int namespaces_only)
3659{
3660 if (namespaces_only)
3661 return LOOKUP_PREFER_NAMESPACES;
3662 if (prefer_type > 1)
3663 return LOOKUP_PREFER_TYPES;
3664 if (prefer_type > 0)
3665 return LOOKUP_PREFER_BOTH;
3666 return 0;
3667}
3668
3669/* Given a lookup that returned VAL, use FLAGS to decide if we want to
3670 ignore it or not. Subroutine of lookup_name_real. */
3671
3672static tree
3673qualify_lookup (tree val, int flags)
3674{
3675 if (val == NULL_TREE)
3676 return val;
3677 if ((flags & LOOKUP_PREFER_NAMESPACES) && TREE_CODE (val) == NAMESPACE_DECL)
3678 return val;
3679 if ((flags & LOOKUP_PREFER_TYPES)
3680 && (TREE_CODE (val) == TYPE_DECL || TREE_CODE (val) == TEMPLATE_DECL))
3681 return val;
3682 if (flags & (LOOKUP_PREFER_NAMESPACES | LOOKUP_PREFER_TYPES))
3683 return NULL_TREE;
3684 return val;
3685}
3686
3687/* Look up NAME in the NAMESPACE. */
3688
3689tree
3690lookup_namespace_name (tree namespace, tree name)
3691{
3692 tree val;
3693 tree template_id = NULL_TREE;
7d6057da 3694 struct scope_binding binding = EMPTY_SCOPE_BINDING;
836495aa 3695
3696 timevar_push (TV_NAME_LOOKUP);
3697 my_friendly_assert (TREE_CODE (namespace) == NAMESPACE_DECL, 370);
3698
3699 if (TREE_CODE (name) == NAMESPACE_DECL)
3700 /* This happens for A::B<int> when B is a namespace. */
3701 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, name);
3702 else if (TREE_CODE (name) == TEMPLATE_DECL)
3703 {
3704 /* This happens for A::B where B is a template, and there are no
3705 template arguments. */
3706 error ("invalid use of `%D'", name);
3707 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3708 }
3709
3710 namespace = ORIGINAL_NAMESPACE (namespace);
3711
3712 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3713 {
3714 template_id = name;
3715 name = TREE_OPERAND (name, 0);
3716 if (TREE_CODE (name) == OVERLOAD)
3717 name = DECL_NAME (OVL_CURRENT (name));
3718 else if (DECL_P (name))
3719 name = DECL_NAME (name);
3720 }
3721
3722 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 373);
3723
836495aa 3724 if (!qualified_lookup_using_namespace (name, namespace, &binding, 0))
3725 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3726
3727 if (binding.value)
3728 {
3729 val = binding.value;
3730
3731 if (template_id)
3732 {
3733 if (DECL_CLASS_TEMPLATE_P (val))
3734 val = lookup_template_class (val,
3735 TREE_OPERAND (template_id, 1),
3736 /*in_decl=*/NULL_TREE,
3737 /*context=*/NULL_TREE,
3738 /*entering_scope=*/0,
3739 tf_error | tf_warning);
3740 else if (DECL_FUNCTION_TEMPLATE_P (val)
3741 || TREE_CODE (val) == OVERLOAD)
3742 val = lookup_template_function (val,
3743 TREE_OPERAND (template_id, 1));
3744 else
3745 {
3746 error ("`%D::%D' is not a template",
3747 namespace, name);
3748 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3749 }
3750 }
3751
3752 /* If we have a single function from a using decl, pull it out. */
3753 if (TREE_CODE (val) == OVERLOAD && ! really_overloaded_fn (val))
3754 val = OVL_FUNCTION (val);
3755
3756 /* Ignore built-in functions that haven't been prototyped yet. */
3757 if (!val || !DECL_P(val)
3758 || !DECL_LANG_SPECIFIC(val)
3759 || !DECL_ANTICIPATED (val))
3760 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3761 }
3762
3763 error ("`%D' undeclared in namespace `%D'", name, namespace);
3764 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3765}
3766
3767/* Select the right _DECL from multiple choices. */
3768
3769static tree
7d6057da 3770select_decl (const struct scope_binding *binding, int flags)
836495aa 3771{
3772 tree val;
3773 val = binding->value;
3774
3775 timevar_push (TV_NAME_LOOKUP);
3776 if (LOOKUP_NAMESPACES_ONLY (flags))
3777 {
3778 /* We are not interested in types. */
3779 if (val && TREE_CODE (val) == NAMESPACE_DECL)
3780 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3781 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
3782 }
3783
3784 /* If looking for a type, or if there is no non-type binding, select
3785 the value binding. */
3786 if (binding->type && (!val || (flags & LOOKUP_PREFER_TYPES)))
3787 val = binding->type;
3788 /* Don't return non-types if we really prefer types. */
7d6057da 3789 else if (val && LOOKUP_TYPES_ONLY (flags)
3790 && ! DECL_DECLARES_TYPE_P (val))
836495aa 3791 val = NULL_TREE;
3792
3793 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3794}
3795
3796/* Unscoped lookup of a global: iterate over current namespaces,
f3ccd0ea 3797 considering using-directives. */
836495aa 3798
9a49d46b 3799static tree
f3ccd0ea 3800unqualified_namespace_lookup (tree name, int flags)
836495aa 3801{
3802 tree initial = current_decl_namespace ();
3803 tree scope = initial;
3804 tree siter;
3805 struct cp_binding_level *level;
3806 tree val = NULL_TREE;
7d6057da 3807 struct scope_binding binding = EMPTY_SCOPE_BINDING;
836495aa 3808
3809 timevar_push (TV_NAME_LOOKUP);
836495aa 3810
3811 for (; !val; scope = CP_DECL_CONTEXT (scope))
3812 {
3813 cxx_binding *b =
3814 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name);
836495aa 3815
93dbdf3c 3816 if (b)
3817 {
3818 if (b->value && DECL_P (b->value)
3819 && DECL_LANG_SPECIFIC (b->value)
3820 && DECL_ANTICIPATED (b->value))
3821 /* Ignore anticipated built-in functions. */
3822 ;
3823 else
3824 binding.value = b->value;
3825 binding.type = b->type;
3826 }
836495aa 3827
3828 /* Add all _DECLs seen through local using-directives. */
3829 for (level = current_binding_level;
3830 level->kind != sk_namespace;
3831 level = level->level_chain)
3832 if (!lookup_using_namespace (name, &binding, level->using_directives,
f3ccd0ea 3833 scope, flags))
836495aa 3834 /* Give up because of error. */
3835 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3836
3837 /* Add all _DECLs seen through global using-directives. */
3838 /* XXX local and global using lists should work equally. */
3839 siter = initial;
3840 while (1)
3841 {
3842 if (!lookup_using_namespace (name, &binding,
3843 DECL_NAMESPACE_USING (siter),
f3ccd0ea 3844 scope, flags))
836495aa 3845 /* Give up because of error. */
3846 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3847 if (siter == scope) break;
3848 siter = CP_DECL_CONTEXT (siter);
3849 }
3850
3851 val = select_decl (&binding, flags);
3852 if (scope == global_namespace)
3853 break;
3854 }
3855 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3856}
3857
3858/* Look up NAME (an IDENTIFIER_NODE) in SCOPE (either a NAMESPACE_DECL
3859 or a class TYPE). If IS_TYPE_P is TRUE, then ignore non-type
3860 bindings.
3861
3862 Returns a DECL (or OVERLOAD, or BASELINK) representing the
3863 declaration found. If no suitable declaration can be found,
3864 ERROR_MARK_NODE is returned. Iif COMPLAIN is true and SCOPE is
3865 neither a class-type nor a namespace a diagnostic is issued. */
3866
3867tree
3868lookup_qualified_name (tree scope, tree name, bool is_type_p, bool complain)
3869{
3870 int flags = 0;
3871
3872 if (TREE_CODE (scope) == NAMESPACE_DECL)
3873 {
7d6057da 3874 struct scope_binding binding = EMPTY_SCOPE_BINDING;
836495aa 3875
836495aa 3876 flags |= LOOKUP_COMPLAIN;
3877 if (is_type_p)
3878 flags |= LOOKUP_PREFER_TYPES;
f3ccd0ea 3879 if (qualified_lookup_using_namespace (name, scope, &binding, flags))
836495aa 3880 return select_decl (&binding, flags);
3881 }
3882 else if (is_aggr_type (scope, complain))
3883 {
3884 tree t;
3885 t = lookup_member (scope, name, 0, is_type_p);
3886 if (t)
3887 return t;
3888 }
3889
3890 return error_mark_node;
3891}
3892
63eff20d 3893/* Subroutine of unqualified_namespace_lookup:
cc9a4194 3894 Add the bindings of NAME in used namespaces to VAL.
3895 We are currently looking for names in namespace SCOPE, so we
3896 look through USINGS for using-directives of namespaces
3897 which have SCOPE as a common ancestor with the current scope.
3898 Returns false on errors. */
3899
9a49d46b 3900static bool
7d6057da 3901lookup_using_namespace (tree name, struct scope_binding *val,
3902 tree usings, tree scope, int flags)
cc9a4194 3903{
3904 tree iter;
3905 timevar_push (TV_NAME_LOOKUP);
3906 /* Iterate over all used namespaces in current, searching for using
3907 directives of scope. */
3908 for (iter = usings; iter; iter = TREE_CHAIN (iter))
3909 if (TREE_VALUE (iter) == scope)
3910 {
3911 tree used = ORIGINAL_NAMESPACE (TREE_PURPOSE (iter));
3912 cxx_binding *val1 =
3913 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (used), name);
cc9a4194 3914 /* Resolve ambiguities. */
3915 if (val1)
7d6057da 3916 ambiguous_decl (name, val, val1, flags);
cc9a4194 3917 }
3918 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val->value != error_mark_node);
3919}
3920
3921/* [namespace.qual]
3922 Accepts the NAME to lookup and its qualifying SCOPE.
3923 Returns the name/type pair found into the cxx_binding *RESULT,
3924 or false on error. */
3925
9a49d46b 3926static bool
7d6057da 3927qualified_lookup_using_namespace (tree name, tree scope,
3928 struct scope_binding *result, int flags)
cc9a4194 3929{
3930 /* Maintain a list of namespaces visited... */
3931 tree seen = NULL_TREE;
3932 /* ... and a list of namespace yet to see. */
3933 tree todo = NULL_TREE;
f69cc1a1 3934 tree todo_maybe = NULL_TREE;
cc9a4194 3935 tree usings;
3936 timevar_push (TV_NAME_LOOKUP);
3937 /* Look through namespace aliases. */
3938 scope = ORIGINAL_NAMESPACE (scope);
3939 while (scope && result->value != error_mark_node)
3940 {
3941 cxx_binding *binding =
f69cc1a1 3942 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name);
cc9a4194 3943 seen = tree_cons (scope, NULL_TREE, seen);
3944 if (binding)
7d6057da 3945 ambiguous_decl (name, result, binding, flags);
16bf97ca 3946
3947 /* Consider strong using directives always, and non-strong ones
3948 if we haven't found a binding yet. ??? Shouldn't we consider
3949 non-strong ones if the initial RESULT is non-NULL, but the
3950 binding in the given namespace is? */
3951 for (usings = DECL_NAMESPACE_USING (scope); usings;
3952 usings = TREE_CHAIN (usings))
3953 /* If this was a real directive, and we have not seen it. */
f69cc1a1 3954 if (!TREE_INDIRECT_USING (usings))
3955 {
3956 /* Try to avoid queuing the same namespace more than once,
3957 the exception being when a namespace was already
3958 enqueued for todo_maybe and then a strong using is
3959 found for it. We could try to remove it from
3960 todo_maybe, but it's probably not worth the effort. */
3961 if (is_associated_namespace (scope, TREE_PURPOSE (usings))
3962 && !purpose_member (TREE_PURPOSE (usings), seen)
3963 && !purpose_member (TREE_PURPOSE (usings), todo))
3964 todo = tree_cons (TREE_PURPOSE (usings), NULL_TREE, todo);
3965 else if ((!result->value && !result->type)
3966 && !purpose_member (TREE_PURPOSE (usings), seen)
3967 && !purpose_member (TREE_PURPOSE (usings), todo)
3968 && !purpose_member (TREE_PURPOSE (usings), todo_maybe))
3969 todo_maybe = tree_cons (TREE_PURPOSE (usings), NULL_TREE,
3970 todo_maybe);
3971 }
cc9a4194 3972 if (todo)
3973 {
3974 scope = TREE_PURPOSE (todo);
3975 todo = TREE_CHAIN (todo);
3976 }
f69cc1a1 3977 else if (todo_maybe
3978 && (!result->value && !result->type))
3979 {
3980 scope = TREE_PURPOSE (todo_maybe);
3981 todo = TREE_CHAIN (todo_maybe);
3982 todo_maybe = NULL_TREE;
3983 }
cc9a4194 3984 else
3985 scope = NULL_TREE; /* If there never was a todo list. */
3986 }
3987 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, result->value != error_mark_node);
3988}
3989
836495aa 3990/* Look up NAME in the current binding level and its superiors in the
3991 namespace of variables, functions and typedefs. Return a ..._DECL
3992 node of some kind representing its definition if there is only one
3993 such declaration, or return a TREE_LIST with all the overloaded
3994 definitions if there are many, or return 0 if it is undefined.
3995
3996 If PREFER_TYPE is > 0, we prefer TYPE_DECLs or namespaces.
3997 If PREFER_TYPE is > 1, we reject non-type decls (e.g. namespaces).
3998 Otherwise we prefer non-TYPE_DECLs.
3999
4000 If NONCLASS is nonzero, we don't look for the NAME in class scope,
614697c5 4001 using IDENTIFIER_CLASS_VALUE.
4002
4003 If BLOCK_P is true, block scopes are examined; otherwise, they are
4004 skipped. */
836495aa 4005
4006tree
614697c5 4007lookup_name_real (tree name, int prefer_type, int nonclass, bool block_p,
836495aa 4008 int namespaces_only, int flags)
4009{
4010 cxx_binding *iter;
4011 tree val = NULL_TREE;
4012
4013 timevar_push (TV_NAME_LOOKUP);
4014 /* Conversion operators are handled specially because ordinary
4015 unqualified name lookup will not find template conversion
4016 operators. */
4017 if (IDENTIFIER_TYPENAME_P (name))
4018 {
4019 struct cp_binding_level *level;
4020
4021 for (level = current_binding_level;
4022 level && level->kind != sk_namespace;
4023 level = level->level_chain)
4024 {
4025 tree class_type;
4026 tree operators;
4027
4028 /* A conversion operator can only be declared in a class
4029 scope. */
4030 if (level->kind != sk_class)
4031 continue;
4032
4033 /* Lookup the conversion operator in the class. */
4034 class_type = level->this_entity;
4035 operators = lookup_fnfields (class_type, name, /*protect=*/0);
4036 if (operators)
4037 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, operators);
4038 }
4039
4040 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
4041 }
4042
4043 flags |= lookup_flags (prefer_type, namespaces_only);
4044
4045 /* First, look in non-namespace scopes. */
4046
4047 if (current_class_type == NULL_TREE)
4048 nonclass = 1;
4049
614697c5 4050 if (block_p || !nonclass)
4051 for (iter = IDENTIFIER_BINDING (name); iter; iter = iter->previous)
4052 {
4053 tree binding;
4054
4055 /* Skip entities we don't want. */
4056 if (LOCAL_BINDING_P (iter) ? !block_p : nonclass)
4057 continue;
4058
4059 /* If this is the kind of thing we're looking for, we're done. */
4060 if (qualify_lookup (iter->value, flags))
4061 binding = iter->value;
4062 else if ((flags & LOOKUP_PREFER_TYPES)
4063 && qualify_lookup (iter->type, flags))
4064 binding = iter->type;
4065 else
4066 binding = NULL_TREE;
4067
4068 if (binding)
4069 {
4070 val = binding;
4071 break;
4072 }
4073 }
836495aa 4074
4075 /* Now lookup in namespace scopes. */
4076 if (!val)
4077 {
f3ccd0ea 4078 tree t = unqualified_namespace_lookup (name, flags);
836495aa 4079 if (t)
4080 val = t;
4081 }
4082
4083 if (val)
4084 {
4085 /* If we have a single function from a using decl, pull it out. */
4086 if (TREE_CODE (val) == OVERLOAD && ! really_overloaded_fn (val))
4087 val = OVL_FUNCTION (val);
4088 }
4089
4090 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
4091}
4092
4093tree
4094lookup_name_nonclass (tree name)
4095{
614697c5 4096 return lookup_name_real (name, 0, 1, /*block_p=*/true, 0, LOOKUP_COMPLAIN);
836495aa 4097}
4098
4099tree
614697c5 4100lookup_function_nonclass (tree name, tree args, bool block_p)
836495aa 4101{
614697c5 4102 return
4103 lookup_arg_dependent (name,
4104 lookup_name_real (name, 0, 1, block_p, 0,
4105 LOOKUP_COMPLAIN),
4106 args);
836495aa 4107}
4108
4109tree
4110lookup_name (tree name, int prefer_type)
4111{
614697c5 4112 return lookup_name_real (name, prefer_type, 0, /*block_p=*/true,
4113 0, LOOKUP_COMPLAIN);
836495aa 4114}
4115
4116/* Similar to `lookup_name' but look only in the innermost non-class
4117 binding level. */
4118
9a49d46b 4119static tree
836495aa 4120lookup_name_current_level (tree name)
4121{
4122 struct cp_binding_level *b;
4123 tree t = NULL_TREE;
4124
4125 timevar_push (TV_NAME_LOOKUP);
4126 b = innermost_nonclass_level ();
4127
4128 if (b->kind == sk_namespace)
4129 {
4130 t = IDENTIFIER_NAMESPACE_VALUE (name);
4131
4132 /* extern "C" function() */
4133 if (t != NULL_TREE && TREE_CODE (t) == TREE_LIST)
4134 t = TREE_VALUE (t);
4135 }
4136 else if (IDENTIFIER_BINDING (name)
4137 && LOCAL_BINDING_P (IDENTIFIER_BINDING (name)))
4138 {
4139 while (1)
4140 {
4141 if (IDENTIFIER_BINDING (name)->scope == b)
4142 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, IDENTIFIER_VALUE (name));
4143
4144 if (b->kind == sk_cleanup)
4145 b = b->level_chain;
4146 else
4147 break;
4148 }
4149 }
4150
4151 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
4152}
4153
4154/* Like lookup_name_current_level, but for types. */
4155
9a49d46b 4156static tree
836495aa 4157lookup_type_current_level (tree name)
4158{
cd16867a 4159 tree t = NULL_TREE;
836495aa 4160
4161 timevar_push (TV_NAME_LOOKUP);
4162 my_friendly_assert (current_binding_level->kind != sk_namespace,
4163 980716);
4164
4165 if (REAL_IDENTIFIER_TYPE_VALUE (name) != NULL_TREE
4166 && REAL_IDENTIFIER_TYPE_VALUE (name) != global_type_node)
4167 {
4168 struct cp_binding_level *b = current_binding_level;
4169 while (1)
4170 {
4171 if (purpose_member (name, b->type_shadowed))
4172 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP,
4173 REAL_IDENTIFIER_TYPE_VALUE (name));
4174 if (b->kind == sk_cleanup)
4175 b = b->level_chain;
4176 else
4177 break;
4178 }
4179 }
4180
4181 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
4182}
4183
cc9a4194 4184/* [basic.lookup.koenig] */
4185/* A nonzero return value in the functions below indicates an error. */
4186
4187struct arg_lookup
4188{
4189 tree name;
4190 tree namespaces;
4191 tree classes;
4192 tree functions;
4193};
4194
4195static bool arg_assoc (struct arg_lookup*, tree);
4196static bool arg_assoc_args (struct arg_lookup*, tree);
4197static bool arg_assoc_type (struct arg_lookup*, tree);
4198static bool add_function (struct arg_lookup *, tree);
4199static bool arg_assoc_namespace (struct arg_lookup *, tree);
4200static bool arg_assoc_class (struct arg_lookup *, tree);
4201static bool arg_assoc_template_arg (struct arg_lookup*, tree);
4202
4203/* Add a function to the lookup structure.
4204 Returns true on error. */
4205
4206static bool
4207add_function (struct arg_lookup *k, tree fn)
4208{
4209 /* We used to check here to see if the function was already in the list,
4210 but that's O(n^2), which is just too expensive for function lookup.
4211 Now we deal with the occasional duplicate in joust. In doing this, we
4212 assume that the number of duplicates will be small compared to the
4213 total number of functions being compared, which should usually be the
4214 case. */
4215
4216 /* We must find only functions, or exactly one non-function. */
4217 if (!k->functions)
4218 k->functions = fn;
4219 else if (fn == k->functions)
4220 ;
4221 else if (is_overloaded_fn (k->functions) && is_overloaded_fn (fn))
4222 k->functions = build_overload (fn, k->functions);
4223 else
4224 {
4225 tree f1 = OVL_CURRENT (k->functions);
4226 tree f2 = fn;
4227 if (is_overloaded_fn (f1))
4228 {
4229 fn = f1; f1 = f2; f2 = fn;
4230 }
4231 cp_error_at ("`%D' is not a function,", f1);
4232 cp_error_at (" conflict with `%D'", f2);
4233 error (" in call to `%D'", k->name);
4234 return true;
4235 }
4236
4237 return false;
4238}
4239
a5ed46c9 4240/* Returns true iff CURRENT has declared itself to be an associated
4241 namespace of SCOPE via a strong using-directive (or transitive chain
4242 thereof). Both are namespaces. */
4243
4244bool
4245is_associated_namespace (tree current, tree scope)
4246{
4247 tree seen = NULL_TREE;
4248 tree todo = NULL_TREE;
4249 tree t;
4250 while (1)
4251 {
4252 if (scope == current)
4253 return true;
4254 seen = tree_cons (scope, NULL_TREE, seen);
4255 for (t = DECL_NAMESPACE_ASSOCIATIONS (scope); t; t = TREE_CHAIN (t))
4256 if (!purpose_member (TREE_PURPOSE (t), seen))
4257 todo = tree_cons (TREE_PURPOSE (t), NULL_TREE, todo);
4258 if (todo)
4259 {
4260 scope = TREE_PURPOSE (todo);
4261 todo = TREE_CHAIN (todo);
4262 }
4263 else
4264 return false;
4265 }
4266}
4267
cc9a4194 4268/* Add functions of a namespace to the lookup structure.
4269 Returns true on error. */
4270
4271static bool
4272arg_assoc_namespace (struct arg_lookup *k, tree scope)
4273{
4274 tree value;
4275
4276 if (purpose_member (scope, k->namespaces))
4277 return 0;
4278 k->namespaces = tree_cons (scope, NULL_TREE, k->namespaces);
a5ed46c9 4279
4280 /* Check out our super-users. */
4281 for (value = DECL_NAMESPACE_ASSOCIATIONS (scope); value;
4282 value = TREE_CHAIN (value))
4283 if (arg_assoc_namespace (k, TREE_PURPOSE (value)))
4284 return true;
cc9a4194 4285
4286 value = namespace_binding (k->name, scope);
4287 if (!value)
4288 return false;
4289
4290 for (; value; value = OVL_NEXT (value))
4291 if (add_function (k, OVL_CURRENT (value)))
4292 return true;
4293
4294 return false;
4295}
4296
4297/* Adds everything associated with a template argument to the lookup
4298 structure. Returns true on error. */
4299
4300static bool
4301arg_assoc_template_arg (struct arg_lookup *k, tree arg)
4302{
4303 /* [basic.lookup.koenig]
4304
4305 If T is a template-id, its associated namespaces and classes are
4306 ... the namespaces and classes associated with the types of the
4307 template arguments provided for template type parameters
4308 (excluding template template parameters); the namespaces in which
4309 any template template arguments are defined; and the classes in
4310 which any member templates used as template template arguments
4311 are defined. [Note: non-type template arguments do not
4312 contribute to the set of associated namespaces. ] */
4313
4314 /* Consider first template template arguments. */
4315 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
4316 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
4317 return false;
4318 else if (TREE_CODE (arg) == TEMPLATE_DECL)
4319 {
4320 tree ctx = CP_DECL_CONTEXT (arg);
4321
4322 /* It's not a member template. */
4323 if (TREE_CODE (ctx) == NAMESPACE_DECL)
4324 return arg_assoc_namespace (k, ctx);
4325 /* Otherwise, it must be member template. */
4326 else
4327 return arg_assoc_class (k, ctx);
4328 }
4329 /* It's not a template template argument, but it is a type template
4330 argument. */
4331 else if (TYPE_P (arg))
4332 return arg_assoc_type (k, arg);
4333 /* It's a non-type template argument. */
4334 else
4335 return false;
4336}
4337
4338/* Adds everything associated with class to the lookup structure.
4339 Returns true on error. */
4340
4341static bool
4342arg_assoc_class (struct arg_lookup *k, tree type)
4343{
4344 tree list, friends, context;
4345 int i;
4346
4347 /* Backend build structures, such as __builtin_va_list, aren't
4348 affected by all this. */
4349 if (!CLASS_TYPE_P (type))
4350 return false;
4351
4352 if (purpose_member (type, k->classes))
4353 return false;
4354 k->classes = tree_cons (type, NULL_TREE, k->classes);
4355
4356 context = decl_namespace (TYPE_MAIN_DECL (type));
4357 if (arg_assoc_namespace (k, context))
4358 return true;
4359
4360 /* Process baseclasses. */
2cfde4f3 4361 for (i = 0; i < BINFO_N_BASE_BINFOS (TYPE_BINFO (type)); i++)
4362 if (arg_assoc_class
4363 (k, BINFO_TYPE (BINFO_BASE_BINFO (TYPE_BINFO (type), i))))
cc9a4194 4364 return true;
4365
4366 /* Process friends. */
4367 for (list = DECL_FRIENDLIST (TYPE_MAIN_DECL (type)); list;
4368 list = TREE_CHAIN (list))
4369 if (k->name == FRIEND_NAME (list))
4370 for (friends = FRIEND_DECLS (list); friends;
4371 friends = TREE_CHAIN (friends))
334f6ce1 4372 {
4373 tree fn = TREE_VALUE (friends);
4374
4375 /* Only interested in global functions with potentially hidden
4376 (i.e. unqualified) declarations. */
4377 if (CP_DECL_CONTEXT (fn) != context)
4378 continue;
4379 /* Template specializations are never found by name lookup.
4380 (Templates themselves can be found, but not template
4381 specializations.) */
4382 if (TREE_CODE (fn) == FUNCTION_DECL && DECL_USE_TEMPLATE (fn))
4383 continue;
4384 if (add_function (k, fn))
cc9a4194 4385 return true;
334f6ce1 4386 }
cc9a4194 4387
4388 /* Process template arguments. */
af7d81e3 4389 if (CLASSTYPE_TEMPLATE_INFO (type)
4390 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
cc9a4194 4391 {
4392 list = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
4393 for (i = 0; i < TREE_VEC_LENGTH (list); ++i)
4394 arg_assoc_template_arg (k, TREE_VEC_ELT (list, i));
4395 }
4396
4397 return false;
4398}
4399
4400/* Adds everything associated with a given type.
4401 Returns 1 on error. */
4402
4403static bool
4404arg_assoc_type (struct arg_lookup *k, tree type)
4405{
4406 /* As we do not get the type of non-type dependent expressions
4407 right, we can end up with such things without a type. */
4408 if (!type)
4409 return false;
4410
4411 if (TYPE_PTRMEM_P (type))
4412 {
4413 /* Pointer to member: associate class type and value type. */
4414 if (arg_assoc_type (k, TYPE_PTRMEM_CLASS_TYPE (type)))
4415 return true;
4416 return arg_assoc_type (k, TYPE_PTRMEM_POINTED_TO_TYPE (type));
4417 }
4418 else switch (TREE_CODE (type))
4419 {
4420 case ERROR_MARK:
4421 return false;
4422 case VOID_TYPE:
4423 case INTEGER_TYPE:
4424 case REAL_TYPE:
4425 case COMPLEX_TYPE:
4426 case VECTOR_TYPE:
4427 case CHAR_TYPE:
4428 case BOOLEAN_TYPE:
4429 return false;
4430 case RECORD_TYPE:
4431 if (TYPE_PTRMEMFUNC_P (type))
4432 return arg_assoc_type (k, TYPE_PTRMEMFUNC_FN_TYPE (type));
4433 return arg_assoc_class (k, type);
4434 case POINTER_TYPE:
4435 case REFERENCE_TYPE:
4436 case ARRAY_TYPE:
4437 return arg_assoc_type (k, TREE_TYPE (type));
4438 case UNION_TYPE:
4439 case ENUMERAL_TYPE:
4440 return arg_assoc_namespace (k, decl_namespace (TYPE_MAIN_DECL (type)));
4441 case METHOD_TYPE:
4442 /* The basetype is referenced in the first arg type, so just
4443 fall through. */
4444 case FUNCTION_TYPE:
4445 /* Associate the parameter types. */
4446 if (arg_assoc_args (k, TYPE_ARG_TYPES (type)))
4447 return true;
4448 /* Associate the return type. */
4449 return arg_assoc_type (k, TREE_TYPE (type));
4450 case TEMPLATE_TYPE_PARM:
4451 case BOUND_TEMPLATE_TEMPLATE_PARM:
4452 return false;
4453 case TYPENAME_TYPE:
4454 return false;
4455 case LANG_TYPE:
4456 if (type == unknown_type_node)
4457 return false;
4458 /* else fall through */
4459 default:
4460 abort ();
4461 }
4462 return false;
4463}
4464
4465/* Adds everything associated with arguments. Returns true on error. */
4466
4467static bool
4468arg_assoc_args (struct arg_lookup *k, tree args)
4469{
4470 for (; args; args = TREE_CHAIN (args))
4471 if (arg_assoc (k, TREE_VALUE (args)))
4472 return true;
4473 return false;
4474}
4475
4476/* Adds everything associated with a given tree_node. Returns 1 on error. */
4477
4478static bool
4479arg_assoc (struct arg_lookup *k, tree n)
4480{
4481 if (n == error_mark_node)
4482 return false;
4483
4484 if (TYPE_P (n))
4485 return arg_assoc_type (k, n);
4486
4487 if (! type_unknown_p (n))
4488 return arg_assoc_type (k, TREE_TYPE (n));
4489
4490 if (TREE_CODE (n) == ADDR_EXPR)
4491 n = TREE_OPERAND (n, 0);
4492 if (TREE_CODE (n) == COMPONENT_REF)
4493 n = TREE_OPERAND (n, 1);
4494 if (TREE_CODE (n) == OFFSET_REF)
4495 n = TREE_OPERAND (n, 1);
4496 while (TREE_CODE (n) == TREE_LIST)
4497 n = TREE_VALUE (n);
4498 if (TREE_CODE (n) == BASELINK)
4499 n = BASELINK_FUNCTIONS (n);
4500
4501 if (TREE_CODE (n) == FUNCTION_DECL)
4502 return arg_assoc_type (k, TREE_TYPE (n));
4503 if (TREE_CODE (n) == TEMPLATE_ID_EXPR)
4504 {
4505 /* [basic.lookup.koenig]
4506
4507 If T is a template-id, its associated namespaces and classes
4508 are the namespace in which the template is defined; for
4509 member templates, the member template's class... */
4510 tree template = TREE_OPERAND (n, 0);
4511 tree args = TREE_OPERAND (n, 1);
4512 tree ctx;
4513 int ix;
4514
4515 if (TREE_CODE (template) == COMPONENT_REF)
4516 template = TREE_OPERAND (template, 1);
4517
4518 /* First, the template. There may actually be more than one if
4519 this is an overloaded function template. But, in that case,
4520 we only need the first; all the functions will be in the same
4521 namespace. */
4522 template = OVL_CURRENT (template);
4523
4524 ctx = CP_DECL_CONTEXT (template);
4525
4526 if (TREE_CODE (ctx) == NAMESPACE_DECL)
4527 {
4528 if (arg_assoc_namespace (k, ctx) == 1)
4529 return true;
4530 }
4531 /* It must be a member template. */
4532 else if (arg_assoc_class (k, ctx) == 1)
4533 return true;
4534
4535 /* Now the arguments. */
4536 for (ix = TREE_VEC_LENGTH (args); ix--;)
4537 if (arg_assoc_template_arg (k, TREE_VEC_ELT (args, ix)) == 1)
4538 return true;
4539 }
a133b234 4540 else if (TREE_CODE (n) == OVERLOAD)
cc9a4194 4541 {
cc9a4194 4542 for (; n; n = OVL_CHAIN (n))
4543 if (arg_assoc_type (k, TREE_TYPE (OVL_FUNCTION (n))))
4544 return true;
4545 }
4546
4547 return false;
4548}
4549
4550/* Performs Koenig lookup depending on arguments, where fns
4551 are the functions found in normal lookup. */
4552
4553tree
4554lookup_arg_dependent (tree name, tree fns, tree args)
4555{
4556 struct arg_lookup k;
4557 tree fn = NULL_TREE;
4558
4559 timevar_push (TV_NAME_LOOKUP);
4560 k.name = name;
4561 k.functions = fns;
4562 k.classes = NULL_TREE;
4563
f3ccd0ea 4564 /* We've already looked at some namespaces during normal unqualified
4565 lookup -- but we don't know exactly which ones. If the functions
4566 we found were brought into the current namespace via a using
4567 declaration, we have not really checked the namespace from which
4568 they came. Therefore, we check all namespaces here -- unless the
7ef14399 4569 function we have is from the current namespace. Even then, we
4570 must check all namespaces if the function is a local
4571 declaration; any other declarations present at namespace scope
4572 should be visible during argument-dependent lookup. */
cc9a4194 4573 if (fns)
4574 fn = OVL_CURRENT (fns);
f3ccd0ea 4575 if (fn && TREE_CODE (fn) == FUNCTION_DECL
7ef14399 4576 && (CP_DECL_CONTEXT (fn) != current_decl_namespace ()
4577 || DECL_LOCAL_FUNCTION_P (fn)))
cc9a4194 4578 k.namespaces = NULL_TREE;
4579 else
f3ccd0ea 4580 /* Setting NAMESPACES is purely an optimization; it prevents
4581 adding functions which are already in FNS. Adding them would
4582 be safe -- "joust" will eliminate the duplicates -- but
4583 wasteful. */
4584 k.namespaces = build_tree_list (current_decl_namespace (), NULL_TREE);
cc9a4194 4585
4586 arg_assoc_args (&k, args);
4587 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, k.functions);
4588}
4589
836495aa 4590/* Add namespace to using_directives. Return NULL_TREE if nothing was
4591 changed (i.e. there was already a directive), or the fresh
4592 TREE_LIST otherwise. */
4593
9a49d46b 4594static tree
836495aa 4595push_using_directive (tree used)
4596{
4597 tree ud = current_binding_level->using_directives;
4598 tree iter, ancestor;
4599
4600 timevar_push (TV_NAME_LOOKUP);
4601 /* Check if we already have this. */
4602 if (purpose_member (used, ud) != NULL_TREE)
4603 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
4604
4605 ancestor = namespace_ancestor (current_decl_namespace (), used);
4606 ud = current_binding_level->using_directives;
4607 ud = tree_cons (used, ancestor, ud);
4608 current_binding_level->using_directives = ud;
4609
4610 /* Recursively add all namespaces used. */
4611 for (iter = DECL_NAMESPACE_USING (used); iter; iter = TREE_CHAIN (iter))
4612 push_using_directive (TREE_PURPOSE (iter));
4613
4614 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ud);
4615}
4616
4617/* The type TYPE is being declared. If it is a class template, or a
4618 specialization of a class template, do any processing required and
4619 perform error-checking. If IS_FRIEND is nonzero, this TYPE is
4620 being declared a friend. B is the binding level at which this TYPE
4621 should be bound.
4622
4623 Returns the TYPE_DECL for TYPE, which may have been altered by this
4624 processing. */
4625
4626static tree
4627maybe_process_template_type_declaration (tree type, int globalize,
4628 cxx_scope *b)
4629{
4630 tree decl = TYPE_NAME (type);
4631
4632 if (processing_template_parmlist)
4633 /* You can't declare a new template type in a template parameter
4634 list. But, you can declare a non-template type:
4635
4636 template <class A*> struct S;
4637
4638 is a forward-declaration of `A'. */
4639 ;
4640 else
4641 {
4642 maybe_check_template_type (type);
4643
4644 my_friendly_assert (IS_AGGR_TYPE (type)
4645 || TREE_CODE (type) == ENUMERAL_TYPE, 0);
4646
4647
4648 if (processing_template_decl)
4649 {
4650 /* This may change after the call to
4651 push_template_decl_real, but we want the original value. */
4652 tree name = DECL_NAME (decl);
4653
4654 decl = push_template_decl_real (decl, globalize);
4655 /* If the current binding level is the binding level for the
4656 template parameters (see the comment in
4657 begin_template_parm_list) and the enclosing level is a class
4658 scope, and we're not looking at a friend, push the
4659 declaration of the member class into the class scope. In the
4660 friend case, push_template_decl will already have put the
4661 friend into global scope, if appropriate. */
4662 if (TREE_CODE (type) != ENUMERAL_TYPE
4663 && !globalize && b->kind == sk_template_parms
4664 && b->level_chain->kind == sk_class)
4665 {
4666 finish_member_declaration (CLASSTYPE_TI_TEMPLATE (type));
4667 /* Put this UDT in the table of UDTs for the class, since
4668 that won't happen below because B is not the class
4669 binding level, but is instead the pseudo-global level. */
4670 if (b->level_chain->type_decls == NULL)
4671 b->level_chain->type_decls =
4672 binding_table_new (SCOPE_DEFAULT_HT_SIZE);
4673 binding_table_insert (b->level_chain->type_decls, name, type);
4674 if (!COMPLETE_TYPE_P (current_class_type))
4675 {
4676 maybe_add_class_template_decl_list (current_class_type,
4677 type, /*friend_p=*/0);
4678 CLASSTYPE_NESTED_UTDS (current_class_type) =
4679 b->level_chain->type_decls;
4680 }
4681 }
4682 }
4683 }
4684
4685 return decl;
4686}
4687
4688/* Push a tag name NAME for struct/class/union/enum type TYPE.
4689 Normally put it into the inner-most non-sk_cleanup scope,
4690 but if GLOBALIZE is true, put it in the inner-most non-class scope.
4691 The latter is needed for implicit declarations. */
4692
4693void
4694pushtag (tree name, tree type, int globalize)
4695{
cd16867a 4696 struct cp_binding_level *b;
836495aa 4697
4698 timevar_push (TV_NAME_LOOKUP);
4699 b = current_binding_level;
2efe4daf 4700 while (/* Cleanup scopes are not scopes from the point of view of
4701 the language. */
4702 b->kind == sk_cleanup
4703 /* Neither are the scopes used to hold template parameters
4704 for an explicit specialization. For an ordinary template
4705 declaration, these scopes are not scopes from the point of
4706 view of the language -- but we need a place to stash
4707 things that will go in the containing namespace when the
4708 template is instantiated. */
4709 || (b->kind == sk_template_parms && b->explicit_spec_p)
836495aa 4710 || (b->kind == sk_class
4711 && (globalize
4712 /* We may be defining a new type in the initializer
4713 of a static member variable. We allow this when
4714 not pedantic, and it is particularly useful for
4715 type punning via an anonymous union. */
4716 || COMPLETE_TYPE_P (b->this_entity))))
4717 b = b->level_chain;
4718
4719 if (b->type_decls == NULL)
4720 b->type_decls = binding_table_new (SCOPE_DEFAULT_HT_SIZE);
4721 binding_table_insert (b->type_decls, name, type);
4722
4723 if (name)
4724 {
4725 /* Do C++ gratuitous typedefing. */
4726 if (IDENTIFIER_TYPE_VALUE (name) != type)
4727 {
cd16867a 4728 tree d = NULL_TREE;
836495aa 4729 int in_class = 0;
4730 tree context = TYPE_CONTEXT (type);
4731
4732 if (! context)
4733 {
4734 tree cs = current_scope ();
4735
4736 if (! globalize)
4737 context = cs;
4738 else if (cs != NULL_TREE && TYPE_P (cs))
4739 /* When declaring a friend class of a local class, we want
4740 to inject the newly named class into the scope
4741 containing the local class, not the namespace scope. */
4742 context = decl_function_context (get_type_decl (cs));
4743 }
4744 if (!context)
4745 context = current_namespace;
4746
4747 if (b->kind == sk_class
4748 || (b->kind == sk_template_parms
4749 && b->level_chain->kind == sk_class))
4750 in_class = 1;
4751
4752 if (current_lang_name == lang_name_java)
4753 TYPE_FOR_JAVA (type) = 1;
4754
4755 d = create_implicit_typedef (name, type);
4756 DECL_CONTEXT (d) = FROB_CONTEXT (context);
4757 if (! in_class)
4758 set_identifier_type_value_with_scope (name, d, b);
4759
4760 d = maybe_process_template_type_declaration (type,
4761 globalize, b);
4762
4763 if (b->kind == sk_class)
4764 {
4765 if (!PROCESSING_REAL_TEMPLATE_DECL_P ())
4766 /* Put this TYPE_DECL on the TYPE_FIELDS list for the
4767 class. But if it's a member template class, we
4768 want the TEMPLATE_DECL, not the TYPE_DECL, so this
4769 is done later. */
4770 finish_member_declaration (d);
4771 else
4772 pushdecl_class_level (d);
4773 }
4774 else
4775 d = pushdecl_with_scope (d, b);
4776
4777 /* FIXME what if it gets a name from typedef? */
4778 if (ANON_AGGRNAME_P (name))
4779 DECL_IGNORED_P (d) = 1;
4780
4781 TYPE_CONTEXT (type) = DECL_CONTEXT (d);
4782
4783 /* If this is a local class, keep track of it. We need this
4784 information for name-mangling, and so that it is possible to find
4785 all function definitions in a translation unit in a convenient
4786 way. (It's otherwise tricky to find a member function definition
4787 it's only pointed to from within a local class.) */
4788 if (TYPE_CONTEXT (type)
4789 && TREE_CODE (TYPE_CONTEXT (type)) == FUNCTION_DECL
4790 && !processing_template_decl)
4791 VARRAY_PUSH_TREE (local_classes, type);
4792 }
4793 if (b->kind == sk_class
4794 && !COMPLETE_TYPE_P (current_class_type))
4795 {
4796 maybe_add_class_template_decl_list (current_class_type,
4797 type, /*friend_p=*/0);
4798 CLASSTYPE_NESTED_UTDS (current_class_type) = b->type_decls;
4799 }
4800 }
4801
4802 if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
4803 /* Use the canonical TYPE_DECL for this node. */
4804 TYPE_STUB_DECL (type) = TYPE_NAME (type);
4805 else
4806 {
4807 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE
4808 will be the tagged type we just added to the current
4809 binding level. This fake NULL-named TYPE_DECL node helps
4810 dwarfout.c to know when it needs to output a
4811 representation of a tagged type, and it also gives us a
4812 convenient place to record the "scope start" address for
4813 the tagged type. */
4814
4815 tree d = build_decl (TYPE_DECL, NULL_TREE, type);
4816 TYPE_STUB_DECL (type) = pushdecl_with_scope (d, b);
4817 }
4818 timevar_pop (TV_NAME_LOOKUP);
4819}
4820\f
836495aa 4821/* Subroutines for reverting temporarily to top-level for instantiation
4822 of templates and such. We actually need to clear out the class- and
4823 local-value slots of all identifiers, so that only the global values
4824 are at all visible. Simply setting current_binding_level to the global
4825 scope isn't enough, because more binding levels may be pushed. */
4826struct saved_scope *scope_chain;
4827
93c149df 4828/* If ID has not already been marked, add an appropriate binding to
4829 *OLD_BINDINGS. */
598057ec 4830
93c149df 4831static void
4832store_binding (tree id, VEC(cxx_saved_binding) **old_bindings)
598057ec 4833{
4834 cxx_saved_binding *saved;
598057ec 4835
4836 if (!id
4837 /* Note that we may have an IDENTIFIER_CLASS_VALUE even when
4838 we have no IDENTIFIER_BINDING if we have left the class
4839 scope, but cached the class-level declarations. */
4840 || !(IDENTIFIER_BINDING (id) || IDENTIFIER_CLASS_VALUE (id)))
93c149df 4841 return;
598057ec 4842
93c149df 4843 if (IDENTIFIER_MARKED (id))
4844 return;
4845
4846 IDENTIFIER_MARKED (id) = 1;
598057ec 4847
93c149df 4848 saved = VEC_safe_push (cxx_saved_binding, *old_bindings, NULL);
598057ec 4849 saved->identifier = id;
4850 saved->binding = IDENTIFIER_BINDING (id);
4851 saved->class_value = IDENTIFIER_CLASS_VALUE (id);;
4852 saved->real_type_value = REAL_IDENTIFIER_TYPE_VALUE (id);
4853 IDENTIFIER_BINDING (id) = NULL;
4854 IDENTIFIER_CLASS_VALUE (id) = NULL_TREE;
598057ec 4855}
4856
93c149df 4857static void
4858store_bindings (tree names, VEC(cxx_saved_binding) **old_bindings)
836495aa 4859{
4860 tree t;
836495aa 4861
4862 timevar_push (TV_NAME_LOOKUP);
4863 for (t = names; t; t = TREE_CHAIN (t))
4864 {
4865 tree id;
836495aa 4866
4867 if (TREE_CODE (t) == TREE_LIST)
4868 id = TREE_PURPOSE (t);
4869 else
4870 id = DECL_NAME (t);
4871
93c149df 4872 store_binding (id, old_bindings);
836495aa 4873 }
93c149df 4874 timevar_pop (TV_NAME_LOOKUP);
836495aa 4875}
4876
598057ec 4877/* Like store_bindings, but NAMES is a vector of cp_class_binding
4878 objects, rather than a TREE_LIST. */
4879
93c149df 4880static void
598057ec 4881store_class_bindings (VEC(cp_class_binding) *names,
93c149df 4882 VEC(cxx_saved_binding) **old_bindings)
598057ec 4883{
4884 size_t i;
4885 cp_class_binding *cb;
598057ec 4886
4887 timevar_push (TV_NAME_LOOKUP);
4888 for (i = 0;
4889 (cb = VEC_iterate(cp_class_binding, names, i));
4890 ++i)
93c149df 4891 store_binding (cb->identifier, old_bindings);
4892 timevar_pop (TV_NAME_LOOKUP);
598057ec 4893}
4894
836495aa 4895void
7f233616 4896push_to_top_level (void)
836495aa 4897{
4898 struct saved_scope *s;
4899 struct cp_binding_level *b;
93c149df 4900 cxx_saved_binding *sb;
4901 size_t i;
836495aa 4902 int need_pop;
4903
4904 timevar_push (TV_NAME_LOOKUP);
4905 s = ggc_alloc_cleared (sizeof (struct saved_scope));
4906
4907 b = scope_chain ? current_binding_level : 0;
4908
4909 /* If we're in the middle of some function, save our state. */
4910 if (cfun)
4911 {
4912 need_pop = 1;
4913 push_function_context_to (NULL_TREE);
4914 }
4915 else
4916 need_pop = 0;
4917
598057ec 4918 if (scope_chain && previous_class_level)
93c149df 4919 store_class_bindings (previous_class_level->class_shadowed,
4920 &s->old_bindings);
836495aa 4921
4922 /* Have to include the global scope, because class-scope decls
4923 aren't listed anywhere useful. */
4924 for (; b; b = b->level_chain)
4925 {
4926 tree t;
4927
4928 /* Template IDs are inserted into the global level. If they were
4929 inserted into namespace level, finish_file wouldn't find them
4930 when doing pending instantiations. Therefore, don't stop at
4931 namespace level, but continue until :: . */
7f233616 4932 if (global_scope_p (b))
836495aa 4933 break;
4934
93c149df 4935 store_bindings (b->names, &s->old_bindings);
836495aa 4936 /* We also need to check class_shadowed to save class-level type
4937 bindings, since pushclass doesn't fill in b->names. */
4938 if (b->kind == sk_class)
93c149df 4939 store_class_bindings (b->class_shadowed, &s->old_bindings);
836495aa 4940
4941 /* Unwind type-value slots back to top level. */
4942 for (t = b->type_shadowed; t; t = TREE_CHAIN (t))
4943 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (t), TREE_VALUE (t));
4944 }
93c149df 4945
4946 for (i = 0;
4947 (sb = VEC_iterate (cxx_saved_binding, s->old_bindings, i));
4948 ++i)
4949 IDENTIFIER_MARKED (sb->identifier) = 0;
4950
836495aa 4951 s->prev = scope_chain;
836495aa 4952 s->bindings = b;
4953 s->need_pop_function_context = need_pop;
4954 s->function_decl = current_function_decl;
836495aa 4955
4956 scope_chain = s;
4957 current_function_decl = NULL_TREE;
4958 VARRAY_TREE_INIT (current_lang_base, 10, "current_lang_base");
4959 current_lang_name = lang_name_cplusplus;
4960 current_namespace = global_namespace;
4961 timevar_pop (TV_NAME_LOOKUP);
4962}
4963
836495aa 4964void
4965pop_from_top_level (void)
4966{
4967 struct saved_scope *s = scope_chain;
4968 cxx_saved_binding *saved;
93c149df 4969 size_t i;
836495aa 4970
4971 timevar_push (TV_NAME_LOOKUP);
4972 /* Clear out class-level bindings cache. */
598057ec 4973 if (previous_class_level)
836495aa 4974 invalidate_class_lookup_cache ();
4975
4976 current_lang_base = 0;
4977
4978 scope_chain = s->prev;
93c149df 4979 for (i = 0;
4980 (saved = VEC_iterate (cxx_saved_binding, s->old_bindings, i));
4981 ++i)
836495aa 4982 {
4983 tree id = saved->identifier;
4984
4985 IDENTIFIER_BINDING (id) = saved->binding;
4986 IDENTIFIER_CLASS_VALUE (id) = saved->class_value;
4987 SET_IDENTIFIER_TYPE_VALUE (id, saved->real_type_value);
4988 }
4989
4990 /* If we were in the middle of compiling a function, restore our
4991 state. */
4992 if (s->need_pop_function_context)
4993 pop_function_context_from (NULL_TREE);
4994 current_function_decl = s->function_decl;
836495aa 4995 timevar_pop (TV_NAME_LOOKUP);
4996}
4997
4998/* Pop off extraneous binding levels left over due to syntax errors.
4999
5000 We don't pop past namespaces, as they might be valid. */
5001
5002void
5003pop_everything (void)
5004{
5005 if (ENABLE_SCOPE_CHECKING)
5006 verbatim ("XXX entering pop_everything ()\n");
5007 while (!toplevel_bindings_p ())
5008 {
5009 if (current_binding_level->kind == sk_class)
5010 pop_nested_class ();
5011 else
5012 poplevel (0, 0, 0);
5013 }
5014 if (ENABLE_SCOPE_CHECKING)
5015 verbatim ("XXX leaving pop_everything ()\n");
5016}
5017
2b49746a 5018/* Emit debugging information for using declarations and directives.
5019 If input tree is overloaded fn then emit debug info for all
5020 candidates. */
5021
5022static void
5023cp_emit_debug_info_for_using (tree t, tree context)
5024{
5025 /* Ignore this FUNCTION_DECL if it refers to a builtin declaration
5026 of a builtin function. */
5027 if (TREE_CODE (t) == FUNCTION_DECL
5028 && DECL_EXTERNAL (t)
5029 && DECL_BUILT_IN (t))
5030 return;
5031
5032 /* Do not supply context to imported_module_or_decl, if
5033 it is a global namespace. */
5034 if (context == global_namespace)
5035 context = NULL_TREE;
5036
5037 if (BASELINK_P (t))
5038 t = BASELINK_FUNCTIONS (t);
5039
5040 /* FIXME: Handle TEMPLATE_DECLs. */
5041 for (t = OVL_CURRENT (t); t; t = OVL_NEXT (t))
5042 if (TREE_CODE (t) != TEMPLATE_DECL)
5043 (*debug_hooks->imported_module_or_decl) (t, context);
5044 }
5045
db90b1e5 5046#include "gt-cp-name-lookup.h"