2004-07-21 Eric Christopher <echristo@redhat.com>
[official-gcc.git] / gcc / cp / name-lookup.c
blobffb03eac64cc72ba6b087088aa9990ea02fb476b
1 /* Definitions for C++ name lookup routines.
2 Copyright (C) 2003, 2004 Free Software Foundation, Inc.
3 Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "flags.h"
27 #include "tree.h"
28 #include "cp-tree.h"
29 #include "name-lookup.h"
30 #include "timevar.h"
31 #include "toplev.h"
32 #include "diagnostic.h"
33 #include "debug.h"
35 /* The bindings for a particular name in a particular scope. */
37 struct scope_binding {
38 tree value;
39 tree type;
41 #define EMPTY_SCOPE_BINDING { NULL_TREE, NULL_TREE }
43 static cxx_scope *innermost_nonclass_level (void);
44 static tree select_decl (const struct scope_binding *, int);
45 static cxx_binding *binding_for_name (cxx_scope *, tree);
46 static tree lookup_name_current_level (tree);
47 static tree push_overloaded_decl (tree, int);
48 static bool lookup_using_namespace (tree, struct scope_binding *, tree,
49 tree, int);
50 static bool qualified_lookup_using_namespace (tree, tree,
51 struct scope_binding *, int);
52 static tree lookup_type_current_level (tree);
53 static tree push_using_directive (tree);
54 static void cp_emit_debug_info_for_using (tree, tree);
56 /* The :: namespace. */
58 tree global_namespace;
60 /* The name of the anonymous namespace, throughout this translation
61 unit. */
62 static GTY(()) tree anonymous_namespace_name;
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. */
69 #define ENTRY_INDEX(HASH, COUNT) (((HASH) >> 3) & ((COUNT) - 1))
71 /* A free list of "binding_entry"s awaiting for re-use. */
73 static GTY((deletable)) binding_entry free_binding_entry = NULL;
75 /* Create a binding_entry object for (NAME, TYPE). */
77 static inline binding_entry
78 binding_entry_make (tree name, tree type)
80 binding_entry entry;
82 if (free_binding_entry)
84 entry = free_binding_entry;
85 free_binding_entry = entry->chain;
87 else
88 entry = ggc_alloc (sizeof (struct binding_entry_s));
90 entry->name = name;
91 entry->type = type;
92 entry->chain = NULL;
94 return entry;
97 /* Put ENTRY back on the free list. */
99 static inline void
100 binding_entry_free (binding_entry entry)
102 entry->name = NULL;
103 entry->type = NULL;
104 entry->chain = free_binding_entry;
105 free_binding_entry = entry;
108 /* The datatype used to implement the mapping from names to types at
109 a given scope. */
110 struct binding_table_s GTY(())
112 /* Array of chains of "binding_entry"s */
113 binding_entry * GTY((length ("%h.chain_count"))) chain;
115 /* The number of chains in this table. This is the length of the
116 the member "chain" considered as an array. */
117 size_t chain_count;
119 /* Number of "binding_entry"s in this table. */
120 size_t entry_count;
123 /* Construct TABLE with an initial CHAIN_COUNT. */
125 static inline void
126 binding_table_construct (binding_table table, size_t chain_count)
128 table->chain_count = chain_count;
129 table->entry_count = 0;
130 table->chain = ggc_alloc_cleared
131 (table->chain_count * sizeof (binding_entry));
134 /* Make TABLE's entries ready for reuse. */
136 static void
137 binding_table_free (binding_table table)
139 size_t i;
140 size_t count;
142 if (table == NULL)
143 return;
145 for (i = 0, count = table->chain_count; i < count; ++i)
147 binding_entry temp = table->chain[i];
148 while (temp != NULL)
150 binding_entry entry = temp;
151 temp = entry->chain;
152 binding_entry_free (entry);
154 table->chain[i] = NULL;
156 table->entry_count = 0;
159 /* Allocate a table with CHAIN_COUNT, assumed to be a power of two. */
161 static inline binding_table
162 binding_table_new (size_t chain_count)
164 binding_table table = ggc_alloc (sizeof (struct binding_table_s));
165 table->chain = NULL;
166 binding_table_construct (table, chain_count);
167 return table;
170 /* Expand TABLE to twice its current chain_count. */
172 static void
173 binding_table_expand (binding_table table)
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;
181 binding_table_construct (table, new_chain_count);
182 for (i = 0; i < old_chain_count; ++i)
184 binding_entry entry = old_chains[i];
185 for (; entry != NULL; entry = old_chains[i])
187 const unsigned int hash = IDENTIFIER_HASH_VALUE (entry->name);
188 const size_t j = ENTRY_INDEX (hash, new_chain_count);
190 old_chains[i] = entry->chain;
191 entry->chain = table->chain[j];
192 table->chain[j] = entry;
195 table->entry_count = old_entry_count;
198 /* Insert a binding for NAME to TYPE into TABLE. */
200 static void
201 binding_table_insert (binding_table table, tree name, tree type)
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);
207 entry->chain = table->chain[i];
208 table->chain[i] = entry;
209 ++table->entry_count;
211 if (3 * table->chain_count < 5 * table->entry_count)
212 binding_table_expand (table);
215 /* Return the binding_entry, if any, that maps NAME. */
217 binding_entry
218 binding_table_find (binding_table table, tree name)
220 const unsigned int hash = IDENTIFIER_HASH_VALUE (name);
221 binding_entry entry = table->chain[ENTRY_INDEX (hash, table->chain_count)];
223 while (entry != NULL && entry->name != name)
224 entry = entry->chain;
226 return entry;
229 /* Return the binding_entry, if any, that maps NAME to an anonymous type. */
231 static tree
232 binding_table_find_anon_type (binding_table table, tree name)
234 const unsigned int hash = IDENTIFIER_HASH_VALUE (name);
235 binding_entry entry = table->chain[ENTRY_INDEX (hash, table->chain_count)];
237 while (entry != NULL && TYPE_IDENTIFIER (entry->type) != name)
238 entry = entry->chain;
240 return entry ? entry->type : NULL;
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. */
246 static binding_entry
247 binding_table_reverse_maybe_remap (binding_table table, tree type, tree name)
249 const size_t chain_count = table->chain_count;
250 binding_entry entry = NULL;
251 binding_entry *p = NULL;
252 size_t i;
254 for (i = 0; i < chain_count && entry == NULL; ++i)
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;
264 if (entry != NULL && name != NULL && entry->name != name)
266 /* Remove the bucket from the previous chain. */
267 *p = (*p)->chain;
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;
276 return entry;
279 /* Remove from TABLE all entries that map to anonymous enums or
280 class-types. */
282 void
283 binding_table_remove_anonymous_types (binding_table table)
285 const size_t chain_count = table->chain_count;
286 size_t i;
288 for (i = 0; i < chain_count; ++i)
290 binding_entry *p = &table->chain[i];
292 while (*p != NULL)
293 if (ANON_AGGRNAME_P ((*p)->name))
295 binding_entry e = *p;
296 *p = (*p)->chain;
297 --table->entry_count;
298 binding_entry_free (e);
300 else
301 p = &(*p)->chain;
305 /* Apply PROC -- with DATA -- to all entries in TABLE. */
307 void
308 binding_table_foreach (binding_table table, bt_foreach_proc proc, void *data)
310 const size_t chain_count = table->chain_count;
311 size_t i;
313 for (i = 0; i < chain_count; ++i)
315 binding_entry entry = table->chain[i];
316 for (; entry != NULL; entry = entry->chain)
317 proc (entry, data);
321 #ifndef ENABLE_SCOPE_CHECKING
322 # define ENABLE_SCOPE_CHECKING 0
323 #else
324 # define ENABLE_SCOPE_CHECKING 1
325 #endif
327 /* A free list of "cxx_binding"s, connected by their PREVIOUS. */
329 static GTY((deletable)) cxx_binding *free_bindings;
331 /* Initialize VALUE and TYPE field for BINDING, and set the PREVIOUS
332 field to NULL. */
334 static inline void
335 cxx_binding_init (cxx_binding *binding, tree value, tree type)
337 binding->value = value;
338 binding->type = type;
339 binding->previous = NULL;
342 /* (GC)-allocate a binding object with VALUE and TYPE member initialized. */
344 static cxx_binding *
345 cxx_binding_make (tree value, tree type)
347 cxx_binding *binding;
348 if (free_bindings)
350 binding = free_bindings;
351 free_bindings = binding->previous;
353 else
354 binding = ggc_alloc (sizeof (cxx_binding));
356 cxx_binding_init (binding, value, type);
358 return binding;
361 /* Put BINDING back on the free list. */
363 static inline void
364 cxx_binding_free (cxx_binding *binding)
366 binding->scope = NULL;
367 binding->previous = free_bindings;
368 free_bindings = binding;
371 /* Create a new binding for NAME (with the indicated VALUE and TYPE
372 bindings) in the class scope indicated by SCOPE. */
374 static cxx_binding *
375 new_class_binding (tree name, tree value, tree type, cxx_scope *scope)
377 cp_class_binding *cb;
378 cxx_binding *binding;
380 if (VEC_length (cp_class_binding, scope->class_shadowed))
382 cp_class_binding *old_base;
383 old_base = VEC_index (cp_class_binding, scope->class_shadowed, 0);
384 if (VEC_reserve (cp_class_binding, scope->class_shadowed, -1))
386 /* Fixup the current bindings, as they might have moved. */
387 size_t i;
389 for (i = 0;
390 VEC_iterate (cp_class_binding, scope->class_shadowed, i, cb);
391 i++)
393 cxx_binding **b;
394 b = &IDENTIFIER_BINDING (cb->identifier);
395 while (*b != &old_base[i].base)
396 b = &((*b)->previous);
397 *b = &cb->base;
400 cb = VEC_quick_push (cp_class_binding, scope->class_shadowed, NULL);
402 else
403 cb = VEC_safe_push (cp_class_binding, scope->class_shadowed, NULL);
405 cb->identifier = name;
406 binding = &cb->base;
407 binding->scope = scope;
408 cxx_binding_init (binding, value, type);
409 return binding;
412 /* Make DECL the innermost binding for ID. The LEVEL is the binding
413 level at which this declaration is being bound. */
415 static void
416 push_binding (tree id, tree decl, cxx_scope* level)
418 cxx_binding *binding;
420 if (level != class_binding_level)
422 binding = cxx_binding_make (decl, NULL_TREE);
423 binding->scope = level;
425 else
426 binding = new_class_binding (id, decl, /*type=*/NULL_TREE, level);
428 /* Now, fill in the binding information. */
429 binding->previous = IDENTIFIER_BINDING (id);
430 INHERITED_VALUE_BINDING_P (binding) = 0;
431 LOCAL_BINDING_P (binding) = (level != class_binding_level);
433 /* And put it on the front of the list of bindings for ID. */
434 IDENTIFIER_BINDING (id) = binding;
437 /* Remove the binding for DECL which should be the innermost binding
438 for ID. */
440 void
441 pop_binding (tree id, tree decl)
443 cxx_binding *binding;
445 if (id == NULL_TREE)
446 /* It's easiest to write the loops that call this function without
447 checking whether or not the entities involved have names. We
448 get here for such an entity. */
449 return;
451 /* Get the innermost binding for ID. */
452 binding = IDENTIFIER_BINDING (id);
454 /* The name should be bound. */
455 my_friendly_assert (binding != NULL, 0);
457 /* The DECL will be either the ordinary binding or the type
458 binding for this identifier. Remove that binding. */
459 if (binding->value == decl)
460 binding->value = NULL_TREE;
461 else if (binding->type == decl)
462 binding->type = NULL_TREE;
463 else
464 abort ();
466 if (!binding->value && !binding->type)
468 /* We're completely done with the innermost binding for this
469 identifier. Unhook it from the list of bindings. */
470 IDENTIFIER_BINDING (id) = binding->previous;
472 /* Add it to the free list. */
473 cxx_binding_free (binding);
477 /* BINDING records an existing declaration for a namein the current scope.
478 But, DECL is another declaration for that same identifier in the
479 same scope. This is the `struct stat' hack whereby a non-typedef
480 class name or enum-name can be bound at the same level as some other
481 kind of entity.
482 3.3.7/1
484 A class name (9.1) or enumeration name (7.2) can be hidden by the
485 name of an object, function, or enumerator declared in the same scope.
486 If a class or enumeration name and an object, function, or enumerator
487 are declared in the same scope (in any order) with the same name, the
488 class or enumeration name is hidden wherever the object, function, or
489 enumerator name is visible.
491 It's the responsibility of the caller to check that
492 inserting this name is valid here. Returns nonzero if the new binding
493 was successful. */
495 static bool
496 supplement_binding (cxx_binding *binding, tree decl)
498 tree bval = binding->value;
499 bool ok = true;
501 timevar_push (TV_NAME_LOOKUP);
502 if (TREE_CODE (decl) == TYPE_DECL && DECL_ARTIFICIAL (decl))
503 /* The new name is the type name. */
504 binding->type = decl;
505 else if (/* BVAL is null when push_class_level_binding moves an
506 inherited type-binding out of the way to make room for a
507 new value binding. */
508 !bval
509 /* BVAL is error_mark_node when DECL's name has been used
510 in a non-class scope prior declaration. In that case,
511 we should have already issued a diagnostic; for graceful
512 error recovery purpose, pretend this was the intended
513 declaration for that name. */
514 || bval == error_mark_node
515 /* If BVAL is a built-in that has not yet been declared,
516 pretend it is not there at all. */
517 || (TREE_CODE (bval) == FUNCTION_DECL
518 && DECL_ANTICIPATED (bval)))
519 binding->value = decl;
520 else if (TREE_CODE (bval) == TYPE_DECL && DECL_ARTIFICIAL (bval))
522 /* The old binding was a type name. It was placed in
523 VALUE field because it was thought, at the point it was
524 declared, to be the only entity with such a name. Move the
525 type name into the type slot; it is now hidden by the new
526 binding. */
527 binding->type = bval;
528 binding->value = decl;
529 binding->value_is_inherited = false;
531 else if (TREE_CODE (bval) == TYPE_DECL
532 && TREE_CODE (decl) == TYPE_DECL
533 && DECL_NAME (decl) == DECL_NAME (bval)
534 && (same_type_p (TREE_TYPE (decl), TREE_TYPE (bval))
535 /* If either type involves template parameters, we must
536 wait until instantiation. */
537 || uses_template_parms (TREE_TYPE (decl))
538 || uses_template_parms (TREE_TYPE (bval))))
539 /* We have two typedef-names, both naming the same type to have
540 the same name. This is OK because of:
542 [dcl.typedef]
544 In a given scope, a typedef specifier can be used to redefine
545 the name of any type declared in that scope to refer to the
546 type to which it already refers. */
547 ok = false;
548 /* There can be two block-scope declarations of the same variable,
549 so long as they are `extern' declarations. However, there cannot
550 be two declarations of the same static data member:
552 [class.mem]
554 A member shall not be declared twice in the
555 member-specification. */
556 else if (TREE_CODE (decl) == VAR_DECL && TREE_CODE (bval) == VAR_DECL
557 && DECL_EXTERNAL (decl) && DECL_EXTERNAL (bval)
558 && !DECL_CLASS_SCOPE_P (decl))
560 duplicate_decls (decl, binding->value);
561 ok = false;
563 else if (TREE_CODE (decl) == NAMESPACE_DECL
564 && TREE_CODE (bval) == NAMESPACE_DECL
565 && DECL_NAMESPACE_ALIAS (decl)
566 && DECL_NAMESPACE_ALIAS (bval)
567 && ORIGINAL_NAMESPACE (bval) == ORIGINAL_NAMESPACE (decl))
568 /* [namespace.alias]
570 In a declarative region, a namespace-alias-definition can be
571 used to redefine a namespace-alias declared in that declarative
572 region to refer only to the namespace to which it already
573 refers. */
574 ok = false;
575 else
577 error ("declaration of `%#D'", decl);
578 cp_error_at ("conflicts with previous declaration `%#D'", bval);
579 ok = false;
582 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ok);
585 /* Add DECL to the list of things declared in B. */
587 static void
588 add_decl_to_level (tree decl, cxx_scope *b)
590 if (TREE_CODE (decl) == NAMESPACE_DECL
591 && !DECL_NAMESPACE_ALIAS (decl))
593 TREE_CHAIN (decl) = b->namespaces;
594 b->namespaces = decl;
596 else if (TREE_CODE (decl) == VAR_DECL && DECL_VIRTUAL_P (decl))
598 TREE_CHAIN (decl) = b->vtables;
599 b->vtables = decl;
601 else
603 /* We build up the list in reverse order, and reverse it later if
604 necessary. */
605 TREE_CHAIN (decl) = b->names;
606 b->names = decl;
607 b->names_size++;
609 /* If appropriate, add decl to separate list of statics. We
610 include extern variables because they might turn out to be
611 static later. It's OK for this list to contain a few false
612 positives. */
613 if (b->kind == sk_namespace)
614 if ((TREE_CODE (decl) == VAR_DECL
615 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
616 || (TREE_CODE (decl) == FUNCTION_DECL
617 && (!TREE_PUBLIC (decl) || DECL_DECLARED_INLINE_P (decl))))
618 VARRAY_PUSH_TREE (b->static_decls, decl);
622 /* Record a decl-node X as belonging to the current lexical scope.
623 Check for errors (such as an incompatible declaration for the same
624 name already seen in the same scope).
626 Returns either X or an old decl for the same name.
627 If an old decl is returned, it may have been smashed
628 to agree with what X says. */
630 tree
631 pushdecl (tree x)
633 tree t;
634 tree name;
635 int need_new_binding;
637 timevar_push (TV_NAME_LOOKUP);
639 need_new_binding = 1;
641 if (DECL_TEMPLATE_PARM_P (x))
642 /* Template parameters have no context; they are not X::T even
643 when declared within a class or namespace. */
645 else
647 if (current_function_decl && x != current_function_decl
648 /* A local declaration for a function doesn't constitute
649 nesting. */
650 && TREE_CODE (x) != FUNCTION_DECL
651 /* A local declaration for an `extern' variable is in the
652 scope of the current namespace, not the current
653 function. */
654 && !(TREE_CODE (x) == VAR_DECL && DECL_EXTERNAL (x))
655 && !DECL_CONTEXT (x))
656 DECL_CONTEXT (x) = current_function_decl;
658 /* If this is the declaration for a namespace-scope function,
659 but the declaration itself is in a local scope, mark the
660 declaration. */
661 if (TREE_CODE (x) == FUNCTION_DECL
662 && DECL_NAMESPACE_SCOPE_P (x)
663 && current_function_decl
664 && x != current_function_decl)
665 DECL_LOCAL_FUNCTION_P (x) = 1;
668 name = DECL_NAME (x);
669 if (name)
671 int different_binding_level = 0;
673 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
674 name = TREE_OPERAND (name, 0);
676 /* In case this decl was explicitly namespace-qualified, look it
677 up in its namespace context. */
678 if (DECL_NAMESPACE_SCOPE_P (x) && namespace_bindings_p ())
679 t = namespace_binding (name, DECL_CONTEXT (x));
680 else
681 t = lookup_name_current_level (name);
683 /* [basic.link] If there is a visible declaration of an entity
684 with linkage having the same name and type, ignoring entities
685 declared outside the innermost enclosing namespace scope, the
686 block scope declaration declares that same entity and
687 receives the linkage of the previous declaration. */
688 if (! t && current_function_decl && x != current_function_decl
689 && (TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
690 && DECL_EXTERNAL (x))
692 /* Look in block scope. */
693 t = innermost_non_namespace_value (name);
694 /* Or in the innermost namespace. */
695 if (! t)
696 t = namespace_binding (name, DECL_CONTEXT (x));
697 /* Does it have linkage? Note that if this isn't a DECL, it's an
698 OVERLOAD, which is OK. */
699 if (t && DECL_P (t) && ! (TREE_STATIC (t) || DECL_EXTERNAL (t)))
700 t = NULL_TREE;
701 if (t)
702 different_binding_level = 1;
705 /* If we are declaring a function, and the result of name-lookup
706 was an OVERLOAD, look for an overloaded instance that is
707 actually the same as the function we are declaring. (If
708 there is one, we have to merge our declaration with the
709 previous declaration.) */
710 if (t && TREE_CODE (t) == OVERLOAD)
712 tree match;
714 if (TREE_CODE (x) == FUNCTION_DECL)
715 for (match = t; match; match = OVL_NEXT (match))
717 if (decls_match (OVL_CURRENT (match), x))
718 break;
720 else
721 /* Just choose one. */
722 match = t;
724 if (match)
725 t = OVL_CURRENT (match);
726 else
727 t = NULL_TREE;
730 if (t && t != error_mark_node)
732 if (different_binding_level)
734 if (decls_match (x, t))
735 /* The standard only says that the local extern
736 inherits linkage from the previous decl; in
737 particular, default args are not shared. We must
738 also tell cgraph to treat these decls as the same,
739 or we may neglect to emit an "unused" static - we
740 do this by making the DECL_UIDs equal, which should
741 be viewed as a kludge. FIXME. */
743 TREE_PUBLIC (x) = TREE_PUBLIC (t);
744 DECL_UID (x) = DECL_UID (t);
747 else if (TREE_CODE (t) == PARM_DECL)
749 if (DECL_CONTEXT (t) == NULL_TREE)
750 /* This is probably caused by too many errors, but calling
751 abort will say that if errors have occurred. */
752 abort ();
754 /* Check for duplicate params. */
755 if (duplicate_decls (x, t))
756 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
758 else if ((DECL_EXTERN_C_FUNCTION_P (x)
759 || DECL_FUNCTION_TEMPLATE_P (x))
760 && is_overloaded_fn (t))
761 /* Don't do anything just yet. */;
762 else if (t == wchar_decl_node)
764 if (pedantic && ! DECL_IN_SYSTEM_HEADER (x))
765 pedwarn ("redeclaration of `wchar_t' as `%T'",
766 TREE_TYPE (x));
768 /* Throw away the redeclaration. */
769 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
771 else
773 tree olddecl = duplicate_decls (x, t);
775 /* If the redeclaration failed, we can stop at this
776 point. */
777 if (olddecl == error_mark_node)
778 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
780 if (olddecl)
782 if (TREE_CODE (t) == TYPE_DECL)
783 SET_IDENTIFIER_TYPE_VALUE (name, TREE_TYPE (t));
784 else if (TREE_CODE (t) == FUNCTION_DECL)
785 check_default_args (t);
787 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
789 else if (DECL_MAIN_P (x) && TREE_CODE (t) == FUNCTION_DECL)
791 /* A redeclaration of main, but not a duplicate of the
792 previous one.
794 [basic.start.main]
796 This function shall not be overloaded. */
797 cp_error_at ("invalid redeclaration of `%D'", t);
798 error ("as `%D'", x);
799 /* We don't try to push this declaration since that
800 causes a crash. */
801 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
806 check_template_shadow (x);
808 /* If this is a function conjured up by the backend, massage it
809 so it looks friendly. */
810 if (DECL_NON_THUNK_FUNCTION_P (x) && ! DECL_LANG_SPECIFIC (x))
812 retrofit_lang_decl (x);
813 SET_DECL_LANGUAGE (x, lang_c);
816 if (DECL_NON_THUNK_FUNCTION_P (x) && ! DECL_FUNCTION_MEMBER_P (x))
818 t = push_overloaded_decl (x, PUSH_LOCAL);
819 if (t != x)
820 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
821 if (!namespace_bindings_p ())
822 /* We do not need to create a binding for this name;
823 push_overloaded_decl will have already done so if
824 necessary. */
825 need_new_binding = 0;
827 else if (DECL_FUNCTION_TEMPLATE_P (x) && DECL_NAMESPACE_SCOPE_P (x))
829 t = push_overloaded_decl (x, PUSH_GLOBAL);
830 if (t == x)
831 add_decl_to_level (x, NAMESPACE_LEVEL (CP_DECL_CONTEXT (t)));
832 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
835 /* If declaring a type as a typedef, copy the type (unless we're
836 at line 0), and install this TYPE_DECL as the new type's typedef
837 name. See the extensive comment in ../c-decl.c (pushdecl). */
838 if (TREE_CODE (x) == TYPE_DECL)
840 tree type = TREE_TYPE (x);
841 if (DECL_IS_BUILTIN (x))
843 if (TYPE_NAME (type) == 0)
844 TYPE_NAME (type) = x;
846 else if (type != error_mark_node && TYPE_NAME (type) != x
847 /* We don't want to copy the type when all we're
848 doing is making a TYPE_DECL for the purposes of
849 inlining. */
850 && (!TYPE_NAME (type)
851 || TYPE_NAME (type) != DECL_ABSTRACT_ORIGIN (x)))
853 DECL_ORIGINAL_TYPE (x) = type;
854 type = build_type_copy (type);
855 TYPE_STUB_DECL (type) = TYPE_STUB_DECL (DECL_ORIGINAL_TYPE (x));
856 TYPE_NAME (type) = x;
857 TREE_TYPE (x) = type;
860 if (type != error_mark_node
861 && TYPE_NAME (type)
862 && TYPE_IDENTIFIER (type))
863 set_identifier_type_value (DECL_NAME (x), x);
866 /* Multiple external decls of the same identifier ought to match.
868 We get warnings about inline functions where they are defined.
869 We get warnings about other functions from push_overloaded_decl.
871 Avoid duplicate warnings where they are used. */
872 if (TREE_PUBLIC (x) && TREE_CODE (x) != FUNCTION_DECL)
874 tree decl;
876 decl = IDENTIFIER_NAMESPACE_VALUE (name);
877 if (decl && TREE_CODE (decl) == OVERLOAD)
878 decl = OVL_FUNCTION (decl);
880 if (decl && decl != error_mark_node
881 && (DECL_EXTERNAL (decl) || TREE_PUBLIC (decl))
882 /* If different sort of thing, we already gave an error. */
883 && TREE_CODE (decl) == TREE_CODE (x)
884 && !same_type_p (TREE_TYPE (x), TREE_TYPE (decl)))
886 pedwarn ("type mismatch with previous external decl of `%#D'", x);
887 cp_pedwarn_at ("previous external decl of `%#D'", decl);
891 /* This name is new in its binding level.
892 Install the new declaration and return it. */
893 if (namespace_bindings_p ())
895 /* Install a global value. */
897 /* If the first global decl has external linkage,
898 warn if we later see static one. */
899 if (IDENTIFIER_GLOBAL_VALUE (name) == NULL_TREE && TREE_PUBLIC (x))
900 TREE_PUBLIC (name) = 1;
902 /* Bind the name for the entity. */
903 if (!(TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)
904 && t != NULL_TREE)
905 && (TREE_CODE (x) == TYPE_DECL
906 || TREE_CODE (x) == VAR_DECL
907 || TREE_CODE (x) == ALIAS_DECL
908 || TREE_CODE (x) == NAMESPACE_DECL
909 || TREE_CODE (x) == CONST_DECL
910 || TREE_CODE (x) == TEMPLATE_DECL))
911 SET_IDENTIFIER_NAMESPACE_VALUE (name, x);
913 /* If new decl is `static' and an `extern' was seen previously,
914 warn about it. */
915 if (x != NULL_TREE && t != NULL_TREE && decls_match (x, t))
916 warn_extern_redeclared_static (x, t);
918 else
920 /* Here to install a non-global value. */
921 tree oldlocal = innermost_non_namespace_value (name);
922 tree oldglobal = IDENTIFIER_NAMESPACE_VALUE (name);
924 if (need_new_binding)
926 push_local_binding (name, x, 0);
927 /* Because push_local_binding will hook X on to the
928 current_binding_level's name list, we don't want to
929 do that again below. */
930 need_new_binding = 0;
933 /* If this is a TYPE_DECL, push it into the type value slot. */
934 if (TREE_CODE (x) == TYPE_DECL)
935 set_identifier_type_value (name, x);
937 /* Clear out any TYPE_DECL shadowed by a namespace so that
938 we won't think this is a type. The C struct hack doesn't
939 go through namespaces. */
940 if (TREE_CODE (x) == NAMESPACE_DECL)
941 set_identifier_type_value (name, NULL_TREE);
943 if (oldlocal)
945 tree d = oldlocal;
947 while (oldlocal
948 && TREE_CODE (oldlocal) == VAR_DECL
949 && DECL_DEAD_FOR_LOCAL (oldlocal))
950 oldlocal = DECL_SHADOWED_FOR_VAR (oldlocal);
952 if (oldlocal == NULL_TREE)
953 oldlocal = IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (d));
956 /* If this is an extern function declaration, see if we
957 have a global definition or declaration for the function. */
958 if (oldlocal == NULL_TREE
959 && DECL_EXTERNAL (x)
960 && oldglobal != NULL_TREE
961 && TREE_CODE (x) == FUNCTION_DECL
962 && TREE_CODE (oldglobal) == FUNCTION_DECL)
964 /* We have one. Their types must agree. */
965 if (decls_match (x, oldglobal))
966 /* OK */;
967 else
969 warning ("extern declaration of `%#D' doesn't match", x);
970 cp_warning_at ("global declaration `%#D'", oldglobal);
973 /* If we have a local external declaration,
974 and no file-scope declaration has yet been seen,
975 then if we later have a file-scope decl it must not be static. */
976 if (oldlocal == NULL_TREE
977 && oldglobal == NULL_TREE
978 && DECL_EXTERNAL (x)
979 && TREE_PUBLIC (x))
980 TREE_PUBLIC (name) = 1;
982 /* Warn if shadowing an argument at the top level of the body. */
983 if (oldlocal != NULL_TREE && !DECL_EXTERNAL (x)
984 /* Inline decls shadow nothing. */
985 && !DECL_FROM_INLINE (x)
986 && TREE_CODE (oldlocal) == PARM_DECL
987 /* Don't check the `this' parameter. */
988 && !DECL_ARTIFICIAL (oldlocal))
990 bool err = false;
992 /* Don't complain if it's from an enclosing function. */
993 if (DECL_CONTEXT (oldlocal) == current_function_decl
994 && TREE_CODE (x) != PARM_DECL)
996 /* Go to where the parms should be and see if we find
997 them there. */
998 struct cp_binding_level *b = current_binding_level->level_chain;
1000 /* Skip the ctor/dtor cleanup level. */
1001 b = b->level_chain;
1003 /* ARM $8.3 */
1004 if (b->kind == sk_function_parms)
1006 error ("declaration of '%#D' shadows a parameter", x);
1007 err = true;
1011 if (warn_shadow && !err)
1013 warning ("declaration of '%#D' shadows a parameter", x);
1014 warning ("%Jshadowed declaration is here", oldlocal);
1018 /* Maybe warn if shadowing something else. */
1019 else if (warn_shadow && !DECL_EXTERNAL (x)
1020 /* No shadow warnings for internally generated vars. */
1021 && ! DECL_ARTIFICIAL (x)
1022 /* No shadow warnings for vars made for inlining. */
1023 && ! DECL_FROM_INLINE (x))
1025 tree member;
1027 if (current_class_ptr)
1028 member = lookup_member (current_class_type,
1029 name,
1030 /*protect=*/0,
1031 /*want_type=*/false);
1032 else
1033 member = NULL_TREE;
1035 if (member && !TREE_STATIC (member))
1037 /* Location of previous decl is not useful in this case. */
1038 warning ("declaration of '%D' shadows a member of 'this'",
1041 else if (oldlocal != NULL_TREE
1042 && TREE_CODE (oldlocal) == VAR_DECL)
1044 warning ("declaration of '%D' shadows a previous local", x);
1045 warning ("%Jshadowed declaration is here", oldlocal);
1047 else if (oldglobal != NULL_TREE
1048 && TREE_CODE (oldglobal) == VAR_DECL)
1049 /* XXX shadow warnings in outer-more namespaces */
1051 warning ("declaration of '%D' shadows a global declaration",
1053 warning ("%Jshadowed declaration is here", oldglobal);
1058 if (TREE_CODE (x) == FUNCTION_DECL)
1059 check_default_args (x);
1061 if (TREE_CODE (x) == VAR_DECL)
1062 maybe_register_incomplete_var (x);
1065 if (need_new_binding)
1066 add_decl_to_level (x,
1067 DECL_NAMESPACE_SCOPE_P (x)
1068 ? NAMESPACE_LEVEL (CP_DECL_CONTEXT (x))
1069 : current_binding_level);
1071 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
1074 /* Enter DECL into the symbol table, if that's appropriate. Returns
1075 DECL, or a modified version thereof. */
1077 tree
1078 maybe_push_decl (tree decl)
1080 tree type = TREE_TYPE (decl);
1082 /* Add this decl to the current binding level, but not if it comes
1083 from another scope, e.g. a static member variable. TEM may equal
1084 DECL or it may be a previous decl of the same name. */
1085 if (decl == error_mark_node
1086 || (TREE_CODE (decl) != PARM_DECL
1087 && DECL_CONTEXT (decl) != NULL_TREE
1088 /* Definitions of namespace members outside their namespace are
1089 possible. */
1090 && TREE_CODE (DECL_CONTEXT (decl)) != NAMESPACE_DECL)
1091 || (TREE_CODE (decl) == TEMPLATE_DECL && !namespace_bindings_p ())
1092 || TREE_CODE (type) == UNKNOWN_TYPE
1093 /* The declaration of a template specialization does not affect
1094 the functions available for overload resolution, so we do not
1095 call pushdecl. */
1096 || (TREE_CODE (decl) == FUNCTION_DECL
1097 && DECL_TEMPLATE_SPECIALIZATION (decl)))
1098 return decl;
1099 else
1100 return pushdecl (decl);
1103 /* Bind DECL to ID in the current_binding_level, assumed to be a local
1104 binding level. If PUSH_USING is set in FLAGS, we know that DECL
1105 doesn't really belong to this binding level, that it got here
1106 through a using-declaration. */
1108 void
1109 push_local_binding (tree id, tree decl, int flags)
1111 struct cp_binding_level *b;
1113 /* Skip over any local classes. This makes sense if we call
1114 push_local_binding with a friend decl of a local class. */
1115 b = innermost_nonclass_level ();
1117 if (lookup_name_current_level (id))
1119 /* Supplement the existing binding. */
1120 if (!supplement_binding (IDENTIFIER_BINDING (id), decl))
1121 /* It didn't work. Something else must be bound at this
1122 level. Do not add DECL to the list of things to pop
1123 later. */
1124 return;
1126 else
1127 /* Create a new binding. */
1128 push_binding (id, decl, b);
1130 if (TREE_CODE (decl) == OVERLOAD || (flags & PUSH_USING))
1131 /* We must put the OVERLOAD into a TREE_LIST since the
1132 TREE_CHAIN of an OVERLOAD is already used. Similarly for
1133 decls that got here through a using-declaration. */
1134 decl = build_tree_list (NULL_TREE, decl);
1136 /* And put DECL on the list of things declared by the current
1137 binding level. */
1138 add_decl_to_level (decl, b);
1141 /* Check to see whether or not DECL is a variable that would have been
1142 in scope under the ARM, but is not in scope under the ANSI/ISO
1143 standard. If so, issue an error message. If name lookup would
1144 work in both cases, but return a different result, this function
1145 returns the result of ANSI/ISO lookup. Otherwise, it returns
1146 DECL. */
1148 tree
1149 check_for_out_of_scope_variable (tree decl)
1151 tree shadowed;
1153 /* We only care about out of scope variables. */
1154 if (!(TREE_CODE (decl) == VAR_DECL && DECL_DEAD_FOR_LOCAL (decl)))
1155 return decl;
1157 shadowed = DECL_SHADOWED_FOR_VAR (decl);
1158 while (shadowed != NULL_TREE && TREE_CODE (shadowed) == VAR_DECL
1159 && DECL_DEAD_FOR_LOCAL (shadowed))
1160 shadowed = DECL_SHADOWED_FOR_VAR (shadowed);
1161 if (!shadowed)
1162 shadowed = IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (decl));
1163 if (shadowed)
1165 if (!DECL_ERROR_REPORTED (decl))
1167 warning ("name lookup of `%D' changed",
1168 DECL_NAME (decl));
1169 cp_warning_at (" matches this `%D' under ISO standard rules",
1170 shadowed);
1171 cp_warning_at (" matches this `%D' under old rules", decl);
1172 DECL_ERROR_REPORTED (decl) = 1;
1174 return shadowed;
1177 /* If we have already complained about this declaration, there's no
1178 need to do it again. */
1179 if (DECL_ERROR_REPORTED (decl))
1180 return decl;
1182 DECL_ERROR_REPORTED (decl) = 1;
1184 if (TREE_TYPE (decl) == error_mark_node)
1185 return decl;
1187 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
1189 error ("name lookup of `%D' changed for new ISO `for' scoping",
1190 DECL_NAME (decl));
1191 cp_error_at (" cannot use obsolete binding at `%D' because it has a destructor", decl);
1192 return error_mark_node;
1194 else
1196 pedwarn ("name lookup of `%D' changed for new ISO `for' scoping",
1197 DECL_NAME (decl));
1198 cp_pedwarn_at (" using obsolete binding at `%D'", decl);
1201 return decl;
1204 /* true means unconditionally make a BLOCK for the next level pushed. */
1206 static bool keep_next_level_flag;
1208 static int binding_depth = 0;
1209 static int is_class_level = 0;
1211 static void
1212 indent (int depth)
1214 int i;
1216 for (i = 0; i < depth * 2; i++)
1217 putc (' ', stderr);
1220 /* Return a string describing the kind of SCOPE we have. */
1221 static const char *
1222 cxx_scope_descriptor (cxx_scope *scope)
1224 /* The order of this table must match the "scope_kind"
1225 enumerators. */
1226 static const char* scope_kind_names[] = {
1227 "block-scope",
1228 "cleanup-scope",
1229 "try-scope",
1230 "catch-scope",
1231 "for-scope",
1232 "function-parameter-scope",
1233 "class-scope",
1234 "namespace-scope",
1235 "template-parameter-scope",
1236 "template-explicit-spec-scope"
1238 const scope_kind kind = scope->explicit_spec_p
1239 ? sk_template_spec : scope->kind;
1241 return scope_kind_names[kind];
1244 /* Output a debugging information about SCOPE when performing
1245 ACTION at LINE. */
1246 static void
1247 cxx_scope_debug (cxx_scope *scope, int line, const char *action)
1249 const char *desc = cxx_scope_descriptor (scope);
1250 if (scope->this_entity)
1251 verbatim ("%s %s(%E) %p %d\n", action, desc,
1252 scope->this_entity, (void *) scope, line);
1253 else
1254 verbatim ("%s %s %p %d\n", action, desc, (void *) scope, line);
1257 /* Return the estimated initial size of the hashtable of a NAMESPACE
1258 scope. */
1260 static inline size_t
1261 namespace_scope_ht_size (tree ns)
1263 tree name = DECL_NAME (ns);
1265 return name == std_identifier
1266 ? NAMESPACE_STD_HT_SIZE
1267 : (name == global_scope_name
1268 ? GLOBAL_SCOPE_HT_SIZE
1269 : NAMESPACE_ORDINARY_HT_SIZE);
1272 /* A chain of binding_level structures awaiting reuse. */
1274 static GTY((deletable)) struct cp_binding_level *free_binding_level;
1276 /* Insert SCOPE as the innermost binding level. */
1278 void
1279 push_binding_level (struct cp_binding_level *scope)
1281 /* Add it to the front of currently active scopes stack. */
1282 scope->level_chain = current_binding_level;
1283 current_binding_level = scope;
1284 keep_next_level_flag = false;
1286 if (ENABLE_SCOPE_CHECKING)
1288 scope->binding_depth = binding_depth;
1289 indent (binding_depth);
1290 cxx_scope_debug (scope, input_line, "push");
1291 is_class_level = 0;
1292 binding_depth++;
1296 /* Create a new KIND scope and make it the top of the active scopes stack.
1297 ENTITY is the scope of the associated C++ entity (namespace, class,
1298 function); it is NULL otherwise. */
1300 cxx_scope *
1301 begin_scope (scope_kind kind, tree entity)
1303 cxx_scope *scope;
1305 /* Reuse or create a struct for this binding level. */
1306 if (!ENABLE_SCOPE_CHECKING && free_binding_level)
1308 scope = free_binding_level;
1309 free_binding_level = scope->level_chain;
1311 else
1312 scope = ggc_alloc (sizeof (cxx_scope));
1313 memset (scope, 0, sizeof (cxx_scope));
1315 scope->this_entity = entity;
1316 scope->more_cleanups_ok = true;
1317 switch (kind)
1319 case sk_cleanup:
1320 scope->keep = true;
1321 break;
1323 case sk_template_spec:
1324 scope->explicit_spec_p = true;
1325 kind = sk_template_parms;
1326 /* Fall through. */
1327 case sk_template_parms:
1328 case sk_block:
1329 case sk_try:
1330 case sk_catch:
1331 case sk_for:
1332 case sk_class:
1333 case sk_function_parms:
1334 scope->keep = keep_next_level_flag;
1335 break;
1337 case sk_namespace:
1338 scope->type_decls = binding_table_new (namespace_scope_ht_size (entity));
1339 NAMESPACE_LEVEL (entity) = scope;
1340 VARRAY_TREE_INIT (scope->static_decls,
1341 DECL_NAME (entity) == std_identifier
1342 || DECL_NAME (entity) == global_scope_name
1343 ? 200 : 10,
1344 "Static declarations");
1345 break;
1347 default:
1348 /* Should not happen. */
1349 my_friendly_assert (false, 20030922);
1350 break;
1352 scope->kind = kind;
1354 push_binding_level (scope);
1356 return scope;
1359 /* We're about to leave current scope. Pop the top of the stack of
1360 currently active scopes. Return the enclosing scope, now active. */
1362 cxx_scope *
1363 leave_scope (void)
1365 cxx_scope *scope = current_binding_level;
1367 if (scope->kind == sk_namespace && class_binding_level)
1368 current_binding_level = class_binding_level;
1370 /* We cannot leave a scope, if there are none left. */
1371 if (NAMESPACE_LEVEL (global_namespace))
1372 my_friendly_assert (!global_scope_p (scope), 20030527);
1374 if (ENABLE_SCOPE_CHECKING)
1376 indent (--binding_depth);
1377 cxx_scope_debug (scope, input_line, "leave");
1378 if (is_class_level != (scope == class_binding_level))
1380 indent (binding_depth);
1381 verbatim ("XXX is_class_level != (current_scope == class_scope)\n");
1383 is_class_level = 0;
1386 /* Move one nesting level up. */
1387 current_binding_level = scope->level_chain;
1389 /* Namespace-scopes are left most probably temporarily, not
1390 completely; they can be reopen later, e.g. in namespace-extension
1391 or any name binding activity that requires us to resume a
1392 namespace. For classes, we cache some binding levels. For other
1393 scopes, we just make the structure available for reuse. */
1394 if (scope->kind != sk_namespace
1395 && scope->kind != sk_class)
1397 scope->level_chain = free_binding_level;
1398 if (scope->kind == sk_class)
1399 scope->type_decls = NULL;
1400 else
1401 binding_table_free (scope->type_decls);
1402 my_friendly_assert (!ENABLE_SCOPE_CHECKING
1403 || scope->binding_depth == binding_depth,
1404 20030529);
1405 free_binding_level = scope;
1408 /* Find the innermost enclosing class scope, and reset
1409 CLASS_BINDING_LEVEL appropriately. */
1410 for (scope = current_binding_level;
1411 scope && scope->kind != sk_class;
1412 scope = scope->level_chain)
1414 class_binding_level = scope && scope->kind == sk_class ? scope : NULL;
1416 return current_binding_level;
1419 static void
1420 resume_scope (struct cp_binding_level* b)
1422 /* Resuming binding levels is meant only for namespaces,
1423 and those cannot nest into classes. */
1424 my_friendly_assert(!class_binding_level, 386);
1425 /* Also, resuming a non-directly nested namespace is a no-no. */
1426 my_friendly_assert(b->level_chain == current_binding_level, 386);
1427 current_binding_level = b;
1428 if (ENABLE_SCOPE_CHECKING)
1430 b->binding_depth = binding_depth;
1431 indent (binding_depth);
1432 cxx_scope_debug (b, input_line, "resume");
1433 is_class_level = 0;
1434 binding_depth++;
1438 /* Return the innermost binding level that is not for a class scope. */
1440 static cxx_scope *
1441 innermost_nonclass_level (void)
1443 cxx_scope *b;
1445 b = current_binding_level;
1446 while (b->kind == sk_class)
1447 b = b->level_chain;
1449 return b;
1452 /* We're defining an object of type TYPE. If it needs a cleanup, but
1453 we're not allowed to add any more objects with cleanups to the current
1454 scope, create a new binding level. */
1456 void
1457 maybe_push_cleanup_level (tree type)
1459 if (type != error_mark_node
1460 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
1461 && current_binding_level->more_cleanups_ok == 0)
1463 begin_scope (sk_cleanup, NULL);
1464 current_binding_level->statement_list = push_stmt_list ();
1468 /* Nonzero if we are currently in the global binding level. */
1471 global_bindings_p (void)
1473 return global_scope_p (current_binding_level);
1476 /* True if we are currently in a toplevel binding level. This
1477 means either the global binding level or a namespace in a toplevel
1478 binding level. Since there are no non-toplevel namespace levels,
1479 this really means any namespace or template parameter level. We
1480 also include a class whose context is toplevel. */
1482 bool
1483 toplevel_bindings_p (void)
1485 struct cp_binding_level *b = innermost_nonclass_level ();
1487 return b->kind == sk_namespace || b->kind == sk_template_parms;
1490 /* True if this is a namespace scope, or if we are defining a class
1491 which is itself at namespace scope, or whose enclosing class is
1492 such a class, etc. */
1494 bool
1495 namespace_bindings_p (void)
1497 struct cp_binding_level *b = innermost_nonclass_level ();
1499 return b->kind == sk_namespace;
1502 /* True if the current level needs to have a BLOCK made. */
1504 bool
1505 kept_level_p (void)
1507 return (current_binding_level->blocks != NULL_TREE
1508 || current_binding_level->keep
1509 || current_binding_level->kind == sk_cleanup
1510 || current_binding_level->names != NULL_TREE
1511 || current_binding_level->type_decls != NULL);
1514 /* Returns the kind of the innermost scope. */
1516 scope_kind
1517 innermost_scope_kind (void)
1519 return current_binding_level->kind;
1522 /* Returns true if this scope was created to store template parameters. */
1524 bool
1525 template_parm_scope_p (void)
1527 return innermost_scope_kind () == sk_template_parms;
1530 /* If KEEP is true, make a BLOCK node for the next binding level,
1531 unconditionally. Otherwise, use the normal logic to decide whether
1532 or not to create a BLOCK. */
1534 void
1535 keep_next_level (bool keep)
1537 keep_next_level_flag = keep;
1540 /* Return the list of declarations of the current level.
1541 Note that this list is in reverse order unless/until
1542 you nreverse it; and when you do nreverse it, you must
1543 store the result back using `storedecls' or you will lose. */
1545 tree
1546 getdecls (void)
1548 return current_binding_level->names;
1551 /* Set the current binding TABLE for type declarations.. This is a
1552 temporary workaround of the fact that the data structure classtypes
1553 does not currently carry its allocated cxx_scope structure. */
1554 void
1555 cxx_remember_type_decls (binding_table table)
1557 current_binding_level->type_decls = table;
1560 /* For debugging. */
1561 static int no_print_functions = 0;
1562 static int no_print_builtins = 0;
1564 /* Called from print_binding_level through binding_table_foreach to
1565 print the content of binding ENTRY. DATA is a pointer to line offset
1566 marker. */
1567 static void
1568 bt_print_entry (binding_entry entry, void *data)
1570 int *p = (int *) data;
1571 int len;
1573 if (entry->name == NULL)
1574 len = 3;
1575 else if (entry->name == TYPE_IDENTIFIER (entry->type))
1576 len = 2;
1577 else
1578 len = 4;
1579 len = 4;
1581 *p += len;
1583 if (*p > 5)
1585 fprintf (stderr, "\n\t");
1586 *p = len;
1588 if (entry->name == NULL)
1590 print_node_brief (stderr, "<unnamed-typedef", entry->type, 0);
1591 fprintf (stderr, ">");
1593 else if (entry->name == TYPE_IDENTIFIER (entry->type))
1594 print_node_brief (stderr, "", entry->type, 0);
1595 else
1597 print_node_brief (stderr, "<typedef", entry->name, 0);
1598 print_node_brief (stderr, "", entry->type, 0);
1599 fprintf (stderr, ">");
1603 void
1604 print_binding_level (struct cp_binding_level* lvl)
1606 tree t;
1607 int i = 0, len;
1608 fprintf (stderr, " blocks=" HOST_PTR_PRINTF, (void *) lvl->blocks);
1609 if (lvl->more_cleanups_ok)
1610 fprintf (stderr, " more-cleanups-ok");
1611 if (lvl->have_cleanups)
1612 fprintf (stderr, " have-cleanups");
1613 fprintf (stderr, "\n");
1614 if (lvl->names)
1616 fprintf (stderr, " names:\t");
1617 /* We can probably fit 3 names to a line? */
1618 for (t = lvl->names; t; t = TREE_CHAIN (t))
1620 if (no_print_functions && (TREE_CODE (t) == FUNCTION_DECL))
1621 continue;
1622 if (no_print_builtins
1623 && (TREE_CODE (t) == TYPE_DECL)
1624 && DECL_IS_BUILTIN (t))
1625 continue;
1627 /* Function decls tend to have longer names. */
1628 if (TREE_CODE (t) == FUNCTION_DECL)
1629 len = 3;
1630 else
1631 len = 2;
1632 i += len;
1633 if (i > 6)
1635 fprintf (stderr, "\n\t");
1636 i = len;
1638 print_node_brief (stderr, "", t, 0);
1639 if (t == error_mark_node)
1640 break;
1642 if (i)
1643 fprintf (stderr, "\n");
1645 if (lvl->type_decls)
1647 fprintf (stderr, " tags:\t");
1648 i = 0;
1649 binding_table_foreach (lvl->type_decls, bt_print_entry, &i);
1650 if (i)
1651 fprintf (stderr, "\n");
1653 if (VEC_length (cp_class_binding, lvl->class_shadowed))
1655 size_t i;
1656 cp_class_binding *b;
1657 fprintf (stderr, " class-shadowed:");
1658 for (i = 0;
1659 VEC_iterate(cp_class_binding, lvl->class_shadowed, i, b);
1660 ++i)
1661 fprintf (stderr, " %s ", IDENTIFIER_POINTER (b->identifier));
1662 fprintf (stderr, "\n");
1664 if (lvl->type_shadowed)
1666 fprintf (stderr, " type-shadowed:");
1667 for (t = lvl->type_shadowed; t; t = TREE_CHAIN (t))
1669 fprintf (stderr, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t)));
1671 fprintf (stderr, "\n");
1675 void
1676 print_other_binding_stack (struct cp_binding_level *stack)
1678 struct cp_binding_level *level;
1679 for (level = stack; !global_scope_p (level); level = level->level_chain)
1681 fprintf (stderr, "binding level " HOST_PTR_PRINTF "\n", (void *) level);
1682 print_binding_level (level);
1686 void
1687 print_binding_stack (void)
1689 struct cp_binding_level *b;
1690 fprintf (stderr, "current_binding_level=" HOST_PTR_PRINTF
1691 "\nclass_binding_level=" HOST_PTR_PRINTF
1692 "\nNAMESPACE_LEVEL (global_namespace)=" HOST_PTR_PRINTF "\n",
1693 (void *) current_binding_level, (void *) class_binding_level,
1694 (void *) NAMESPACE_LEVEL (global_namespace));
1695 if (class_binding_level)
1697 for (b = class_binding_level; b; b = b->level_chain)
1698 if (b == current_binding_level)
1699 break;
1700 if (b)
1701 b = class_binding_level;
1702 else
1703 b = current_binding_level;
1705 else
1706 b = current_binding_level;
1707 print_other_binding_stack (b);
1708 fprintf (stderr, "global:\n");
1709 print_binding_level (NAMESPACE_LEVEL (global_namespace));
1712 /* Return the type associated with id. */
1714 tree
1715 identifier_type_value (tree id)
1717 timevar_push (TV_NAME_LOOKUP);
1718 /* There is no type with that name, anywhere. */
1719 if (REAL_IDENTIFIER_TYPE_VALUE (id) == NULL_TREE)
1720 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
1721 /* This is not the type marker, but the real thing. */
1722 if (REAL_IDENTIFIER_TYPE_VALUE (id) != global_type_node)
1723 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, REAL_IDENTIFIER_TYPE_VALUE (id));
1724 /* Have to search for it. It must be on the global level, now.
1725 Ask lookup_name not to return non-types. */
1726 id = lookup_name_real (id, 2, 1, /*block_p=*/true, 0, LOOKUP_COMPLAIN);
1727 if (id)
1728 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, TREE_TYPE (id));
1729 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
1732 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
1733 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
1735 tree
1736 identifier_global_value (tree t)
1738 return IDENTIFIER_GLOBAL_VALUE (t);
1741 /* Push a definition of struct, union or enum tag named ID. into
1742 binding_level B. DECL is a TYPE_DECL for the type. We assume that
1743 the tag ID is not already defined. */
1745 static void
1746 set_identifier_type_value_with_scope (tree id, tree decl, cxx_scope *b)
1748 tree type;
1750 if (b->kind != sk_namespace)
1752 /* Shadow the marker, not the real thing, so that the marker
1753 gets restored later. */
1754 tree old_type_value = REAL_IDENTIFIER_TYPE_VALUE (id);
1755 b->type_shadowed
1756 = tree_cons (id, old_type_value, b->type_shadowed);
1757 type = decl ? TREE_TYPE (decl) : NULL_TREE;
1758 TREE_TYPE (b->type_shadowed) = type;
1760 else
1762 cxx_binding *binding =
1763 binding_for_name (NAMESPACE_LEVEL (current_namespace), id);
1764 if (decl)
1766 if (binding->value)
1767 supplement_binding (binding, decl);
1768 else
1769 binding->value = decl;
1771 else
1772 abort ();
1773 /* Store marker instead of real type. */
1774 type = global_type_node;
1776 SET_IDENTIFIER_TYPE_VALUE (id, type);
1779 /* As set_identifier_type_value_with_scope, but using
1780 current_binding_level. */
1782 void
1783 set_identifier_type_value (tree id, tree decl)
1785 set_identifier_type_value_with_scope (id, decl, current_binding_level);
1788 /* Return the name for the constructor (or destructor) for the
1789 specified class TYPE. When given a template, this routine doesn't
1790 lose the specialization. */
1792 tree
1793 constructor_name_full (tree type)
1795 return TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
1798 /* Return the name for the constructor (or destructor) for the
1799 specified class. When given a template, return the plain
1800 unspecialized name. */
1802 tree
1803 constructor_name (tree type)
1805 tree name;
1806 name = constructor_name_full (type);
1807 if (IDENTIFIER_TEMPLATE (name))
1808 name = IDENTIFIER_TEMPLATE (name);
1809 return name;
1812 /* Returns TRUE if NAME is the name for the constructor for TYPE. */
1814 bool
1815 constructor_name_p (tree name, tree type)
1817 tree ctor_name;
1819 if (!name)
1820 return false;
1822 if (TREE_CODE (name) != IDENTIFIER_NODE)
1823 return false;
1825 ctor_name = constructor_name_full (type);
1826 if (name == ctor_name)
1827 return true;
1828 if (IDENTIFIER_TEMPLATE (ctor_name)
1829 && name == IDENTIFIER_TEMPLATE (ctor_name))
1830 return true;
1831 return false;
1834 /* Counter used to create anonymous type names. */
1836 static GTY(()) int anon_cnt;
1838 /* Return an IDENTIFIER which can be used as a name for
1839 anonymous structs and unions. */
1841 tree
1842 make_anon_name (void)
1844 char buf[32];
1846 sprintf (buf, ANON_AGGRNAME_FORMAT, anon_cnt++);
1847 return get_identifier (buf);
1850 /* Clear the TREE_PURPOSE slot of UTDs which have anonymous typenames.
1851 This keeps dbxout from getting confused. */
1853 void
1854 clear_anon_tags (void)
1856 struct cp_binding_level *b;
1857 static int last_cnt = 0;
1859 /* Fast out if no new anon names were declared. */
1860 if (last_cnt == anon_cnt)
1861 return;
1863 b = current_binding_level;
1864 while (b->kind == sk_cleanup)
1865 b = b->level_chain;
1866 if (b->type_decls != NULL)
1867 binding_table_remove_anonymous_types (b->type_decls);
1868 last_cnt = anon_cnt;
1871 /* Return (from the stack of) the BINDING, if any, established at SCOPE. */
1873 static inline cxx_binding *
1874 find_binding (cxx_scope *scope, cxx_binding *binding)
1876 timevar_push (TV_NAME_LOOKUP);
1878 for (; binding != NULL; binding = binding->previous)
1879 if (binding->scope == scope)
1880 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, binding);
1882 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, (cxx_binding *)0);
1885 /* Return the binding for NAME in SCOPE, if any. Otherwise, return NULL. */
1887 static inline cxx_binding *
1888 cxx_scope_find_binding_for_name (cxx_scope *scope, tree name)
1890 cxx_binding *b = IDENTIFIER_NAMESPACE_BINDINGS (name);
1891 if (b)
1893 /* Fold-in case where NAME is used only once. */
1894 if (scope == b->scope && b->previous == NULL)
1895 return b;
1896 return find_binding (scope, b);
1898 return NULL;
1901 /* Always returns a binding for name in scope. If no binding is
1902 found, make a new one. */
1904 static cxx_binding *
1905 binding_for_name (cxx_scope *scope, tree name)
1907 cxx_binding *result;
1909 result = cxx_scope_find_binding_for_name (scope, name);
1910 if (result)
1911 return result;
1912 /* Not found, make a new one. */
1913 result = cxx_binding_make (NULL, NULL);
1914 result->previous = IDENTIFIER_NAMESPACE_BINDINGS (name);
1915 result->scope = scope;
1916 result->is_local = false;
1917 result->value_is_inherited = false;
1918 IDENTIFIER_NAMESPACE_BINDINGS (name) = result;
1919 return result;
1922 /* Insert another USING_DECL into the current binding level, returning
1923 this declaration. If this is a redeclaration, do nothing, and
1924 return NULL_TREE if this not in namespace scope (in namespace
1925 scope, a using decl might extend any previous bindings). */
1927 tree
1928 push_using_decl (tree scope, tree name)
1930 tree decl;
1932 timevar_push (TV_NAME_LOOKUP);
1933 my_friendly_assert (TREE_CODE (scope) == NAMESPACE_DECL, 383);
1934 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 384);
1935 for (decl = current_binding_level->usings; decl; decl = TREE_CHAIN (decl))
1936 if (DECL_INITIAL (decl) == scope && DECL_NAME (decl) == name)
1937 break;
1938 if (decl)
1939 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP,
1940 namespace_bindings_p () ? decl : NULL_TREE);
1941 decl = build_lang_decl (USING_DECL, name, void_type_node);
1942 DECL_INITIAL (decl) = scope;
1943 TREE_CHAIN (decl) = current_binding_level->usings;
1944 current_binding_level->usings = decl;
1945 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
1948 /* Same as pushdecl, but define X in binding-level LEVEL. We rely on the
1949 caller to set DECL_CONTEXT properly. */
1951 tree
1952 pushdecl_with_scope (tree x, cxx_scope *level)
1954 struct cp_binding_level *b;
1955 tree function_decl = current_function_decl;
1957 timevar_push (TV_NAME_LOOKUP);
1958 current_function_decl = NULL_TREE;
1959 if (level->kind == sk_class)
1961 b = class_binding_level;
1962 class_binding_level = level;
1963 pushdecl_class_level (x);
1964 class_binding_level = b;
1966 else
1968 b = current_binding_level;
1969 current_binding_level = level;
1970 x = pushdecl (x);
1971 current_binding_level = b;
1973 current_function_decl = function_decl;
1974 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
1977 /* DECL is a FUNCTION_DECL for a non-member function, which may have
1978 other definitions already in place. We get around this by making
1979 the value of the identifier point to a list of all the things that
1980 want to be referenced by that name. It is then up to the users of
1981 that name to decide what to do with that list.
1983 DECL may also be a TEMPLATE_DECL, with a FUNCTION_DECL in its
1984 DECL_TEMPLATE_RESULT. It is dealt with the same way.
1986 FLAGS is a bitwise-or of the following values:
1987 PUSH_LOCAL: Bind DECL in the current scope, rather than at
1988 namespace scope.
1989 PUSH_USING: DECL is being pushed as the result of a using
1990 declaration.
1992 The value returned may be a previous declaration if we guessed wrong
1993 about what language DECL should belong to (C or C++). Otherwise,
1994 it's always DECL (and never something that's not a _DECL). */
1996 static tree
1997 push_overloaded_decl (tree decl, int flags)
1999 tree name = DECL_NAME (decl);
2000 tree old;
2001 tree new_binding;
2002 int doing_global = (namespace_bindings_p () || !(flags & PUSH_LOCAL));
2004 timevar_push (TV_NAME_LOOKUP);
2005 if (doing_global)
2006 old = namespace_binding (name, DECL_CONTEXT (decl));
2007 else
2008 old = lookup_name_current_level (name);
2010 if (old)
2012 if (TREE_CODE (old) == TYPE_DECL && DECL_ARTIFICIAL (old))
2014 tree t = TREE_TYPE (old);
2015 if (IS_AGGR_TYPE (t) && warn_shadow
2016 && (! DECL_IN_SYSTEM_HEADER (decl)
2017 || ! DECL_IN_SYSTEM_HEADER (old)))
2018 warning ("`%#D' hides constructor for `%#T'", decl, t);
2019 old = NULL_TREE;
2021 else if (is_overloaded_fn (old))
2023 tree tmp;
2025 for (tmp = old; tmp; tmp = OVL_NEXT (tmp))
2027 tree fn = OVL_CURRENT (tmp);
2029 if (TREE_CODE (tmp) == OVERLOAD && OVL_USED (tmp)
2030 && !(flags & PUSH_USING)
2031 && compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2032 TYPE_ARG_TYPES (TREE_TYPE (decl))))
2033 error ("`%#D' conflicts with previous using declaration `%#D'",
2034 decl, fn);
2036 if (duplicate_decls (decl, fn) == fn)
2037 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, fn);
2040 else if (old == error_mark_node)
2041 /* Ignore the undefined symbol marker. */
2042 old = NULL_TREE;
2043 else
2045 cp_error_at ("previous non-function declaration `%#D'", old);
2046 error ("conflicts with function declaration `%#D'", decl);
2047 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2051 if (old || TREE_CODE (decl) == TEMPLATE_DECL
2052 /* If it's a using declaration, we always need to build an OVERLOAD,
2053 because it's the only way to remember that the declaration comes
2054 from 'using', and have the lookup behave correctly. */
2055 || (flags & PUSH_USING))
2057 if (old && TREE_CODE (old) != OVERLOAD)
2058 new_binding = ovl_cons (decl, ovl_cons (old, NULL_TREE));
2059 else
2060 new_binding = ovl_cons (decl, old);
2061 if (flags & PUSH_USING)
2062 OVL_USED (new_binding) = 1;
2064 else
2065 /* NAME is not ambiguous. */
2066 new_binding = decl;
2068 if (doing_global)
2069 set_namespace_binding (name, current_namespace, new_binding);
2070 else
2072 /* We only create an OVERLOAD if there was a previous binding at
2073 this level, or if decl is a template. In the former case, we
2074 need to remove the old binding and replace it with the new
2075 binding. We must also run through the NAMES on the binding
2076 level where the name was bound to update the chain. */
2078 if (TREE_CODE (new_binding) == OVERLOAD && old)
2080 tree *d;
2082 for (d = &IDENTIFIER_BINDING (name)->scope->names;
2084 d = &TREE_CHAIN (*d))
2085 if (*d == old
2086 || (TREE_CODE (*d) == TREE_LIST
2087 && TREE_VALUE (*d) == old))
2089 if (TREE_CODE (*d) == TREE_LIST)
2090 /* Just replace the old binding with the new. */
2091 TREE_VALUE (*d) = new_binding;
2092 else
2093 /* Build a TREE_LIST to wrap the OVERLOAD. */
2094 *d = tree_cons (NULL_TREE, new_binding,
2095 TREE_CHAIN (*d));
2097 /* And update the cxx_binding node. */
2098 IDENTIFIER_BINDING (name)->value = new_binding;
2099 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2102 /* We should always find a previous binding in this case. */
2103 abort ();
2106 /* Install the new binding. */
2107 push_local_binding (name, new_binding, flags);
2110 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2113 /* Check a non-member using-declaration. Return the name and scope
2114 being used, and the USING_DECL, or NULL_TREE on failure. */
2116 static tree
2117 validate_nonmember_using_decl (tree decl, tree scope, tree name)
2119 if (TREE_CODE (decl) == TEMPLATE_ID_EXPR)
2121 /* 7.3.3/5
2122 A using-declaration shall not name a template-id. */
2123 error ("a using-declaration cannot specify a template-id. Try `using %D'", name);
2124 return NULL_TREE;
2127 if (TREE_CODE (decl) == NAMESPACE_DECL)
2129 error ("namespace `%D' not allowed in using-declaration", decl);
2130 return NULL_TREE;
2133 if (TREE_CODE (decl) == SCOPE_REF)
2135 /* It's a nested name with template parameter dependent scope.
2136 This can only be using-declaration for class member. */
2137 error ("`%T' is not a namespace", TREE_OPERAND (decl, 0));
2138 return NULL_TREE;
2141 if (is_overloaded_fn (decl))
2142 decl = get_first_fn (decl);
2144 my_friendly_assert (DECL_P (decl), 20020908);
2146 /* [namespace.udecl]
2147 A using-declaration for a class member shall be a
2148 member-declaration. */
2149 if (TYPE_P (scope))
2151 error ("`%T' is not a namespace", scope);
2152 return NULL_TREE;
2155 /* Make a USING_DECL. */
2156 return push_using_decl (scope, name);
2159 /* Process local and global using-declarations. */
2161 static void
2162 do_nonmember_using_decl (tree scope, tree name, tree oldval, tree oldtype,
2163 tree *newval, tree *newtype)
2165 struct scope_binding decls = EMPTY_SCOPE_BINDING;
2167 *newval = *newtype = NULL_TREE;
2168 if (!qualified_lookup_using_namespace (name, scope, &decls, 0))
2169 /* Lookup error */
2170 return;
2172 if (!decls.value && !decls.type)
2174 error ("`%D' not declared", name);
2175 return;
2178 /* Check for using functions. */
2179 if (decls.value && is_overloaded_fn (decls.value))
2181 tree tmp, tmp1;
2183 if (oldval && !is_overloaded_fn (oldval))
2185 if (!DECL_IMPLICIT_TYPEDEF_P (oldval))
2186 error ("`%D' is already declared in this scope", name);
2187 oldval = NULL_TREE;
2190 *newval = oldval;
2191 for (tmp = decls.value; tmp; tmp = OVL_NEXT (tmp))
2193 tree new_fn = OVL_CURRENT (tmp);
2195 /* [namespace.udecl]
2197 If a function declaration in namespace scope or block
2198 scope has the same name and the same parameter types as a
2199 function introduced by a using declaration the program is
2200 ill-formed. */
2201 for (tmp1 = oldval; tmp1; tmp1 = OVL_NEXT (tmp1))
2203 tree old_fn = OVL_CURRENT (tmp1);
2205 if (new_fn == old_fn)
2206 /* The function already exists in the current namespace. */
2207 break;
2208 else if (OVL_USED (tmp1))
2209 continue; /* this is a using decl */
2210 else if (compparms (TYPE_ARG_TYPES (TREE_TYPE (new_fn)),
2211 TYPE_ARG_TYPES (TREE_TYPE (old_fn))))
2213 /* There was already a non-using declaration in
2214 this scope with the same parameter types. If both
2215 are the same extern "C" functions, that's ok. */
2216 if (decls_match (new_fn, old_fn))
2218 /* If the OLD_FN was a builtin, there is now a
2219 real declaration. */
2220 if (DECL_ANTICIPATED (old_fn))
2221 DECL_ANTICIPATED (old_fn) = 0;
2222 break;
2224 else if (!DECL_ANTICIPATED (old_fn))
2226 /* If the OLD_FN was really declared, the
2227 declarations don't match. */
2228 error ("`%D' is already declared in this scope", name);
2229 break;
2232 /* If the OLD_FN was not really there, just ignore
2233 it and keep going. */
2237 /* If we broke out of the loop, there's no reason to add
2238 this function to the using declarations for this
2239 scope. */
2240 if (tmp1)
2241 continue;
2243 /* If we are adding to an existing OVERLOAD, then we no
2244 longer know the type of the set of functions. */
2245 if (*newval && TREE_CODE (*newval) == OVERLOAD)
2246 TREE_TYPE (*newval) = unknown_type_node;
2247 /* Add this new function to the set. */
2248 *newval = build_overload (OVL_CURRENT (tmp), *newval);
2249 /* If there is only one function, then we use its type. (A
2250 using-declaration naming a single function can be used in
2251 contexts where overload resolution cannot be
2252 performed.) */
2253 if (TREE_CODE (*newval) != OVERLOAD)
2255 *newval = ovl_cons (*newval, NULL_TREE);
2256 TREE_TYPE (*newval) = TREE_TYPE (OVL_CURRENT (tmp));
2258 OVL_USED (*newval) = 1;
2261 else
2263 *newval = decls.value;
2264 if (oldval && !decls_match (*newval, oldval))
2265 error ("`%D' is already declared in this scope", name);
2268 *newtype = decls.type;
2269 if (oldtype && *newtype && !same_type_p (oldtype, *newtype))
2271 error ("using declaration `%D' introduced ambiguous type `%T'",
2272 name, oldtype);
2273 return;
2277 /* Process a using-declaration at function scope. */
2279 void
2280 do_local_using_decl (tree decl, tree scope, tree name)
2282 tree oldval, oldtype, newval, newtype;
2283 tree orig_decl = decl;
2285 decl = validate_nonmember_using_decl (decl, scope, name);
2286 if (decl == NULL_TREE)
2287 return;
2289 if (building_stmt_tree ()
2290 && at_function_scope_p ())
2291 add_decl_expr (decl);
2293 oldval = lookup_name_current_level (name);
2294 oldtype = lookup_type_current_level (name);
2296 do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype);
2298 if (newval)
2300 if (is_overloaded_fn (newval))
2302 tree fn, term;
2304 /* We only need to push declarations for those functions
2305 that were not already bound in the current level.
2306 The old value might be NULL_TREE, it might be a single
2307 function, or an OVERLOAD. */
2308 if (oldval && TREE_CODE (oldval) == OVERLOAD)
2309 term = OVL_FUNCTION (oldval);
2310 else
2311 term = oldval;
2312 for (fn = newval; fn && OVL_CURRENT (fn) != term;
2313 fn = OVL_NEXT (fn))
2314 push_overloaded_decl (OVL_CURRENT (fn),
2315 PUSH_LOCAL | PUSH_USING);
2317 else
2318 push_local_binding (name, newval, PUSH_USING);
2320 if (newtype)
2322 push_local_binding (name, newtype, PUSH_USING);
2323 set_identifier_type_value (name, newtype);
2326 /* Emit debug info. */
2327 if (!processing_template_decl)
2328 cp_emit_debug_info_for_using (orig_decl, current_scope());
2331 /* Return the type that should be used when TYPE's name is preceded
2332 by a tag such as 'struct' or 'union', or null if the name cannot
2333 be used in this way.
2335 For example, when processing the third line of:
2337 struct A;
2338 typedef struct A A;
2339 struct A;
2341 lookup of A will find the typedef. Given A's typedef, this function
2342 will return the type associated with "struct A". For the tag to be
2343 anything other than TYPE, TYPE must be a typedef whose original type
2344 has the same name and context as TYPE itself.
2346 It is not valid for a typedef of an anonymous type to be used with
2347 an explicit tag:
2349 typedef struct { ... } B;
2350 struct B;
2352 Return null for this case. */
2354 static tree
2355 follow_tag_typedef (tree type)
2357 tree original;
2359 original = original_type (type);
2360 if (! TYPE_NAME (original))
2361 return NULL_TREE;
2362 if (TYPE_IDENTIFIER (original) == TYPE_IDENTIFIER (type)
2363 && (CP_DECL_CONTEXT (TYPE_NAME (original))
2364 == CP_DECL_CONTEXT (TYPE_NAME (type)))
2365 && !(CLASS_TYPE_P (original) && TYPE_WAS_ANONYMOUS (original)))
2366 return original;
2367 else
2368 return NULL_TREE;
2371 /* Given NAME, an IDENTIFIER_NODE,
2372 return the structure (or union or enum) definition for that name.
2373 Searches binding levels from its SCOPE up to the global level.
2374 If THISLEVEL_ONLY is nonzero, searches only the specified context
2375 (but skips any sk_cleanup contexts to find one that is
2376 meaningful for tags).
2377 FORM says which kind of type the caller wants;
2378 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2379 If the wrong kind of type is found, and it's not a template, an error is
2380 reported. */
2382 tree
2383 lookup_tag (enum tree_code form, tree name,
2384 cxx_scope *binding_level, int thislevel_only)
2386 struct cp_binding_level *level;
2387 /* Nonzero if, we should look past a template parameter level, even
2388 if THISLEVEL_ONLY. */
2389 int allow_template_parms_p = 1;
2390 bool type_is_anonymous = ANON_AGGRNAME_P (name);
2392 timevar_push (TV_NAME_LOOKUP);
2393 for (level = binding_level; level; level = level->level_chain)
2395 tree tail;
2396 if (type_is_anonymous && level->type_decls != NULL)
2398 tree type = binding_table_find_anon_type (level->type_decls, name);
2399 /* There is no need for error checking here, because
2400 anon names are unique throughout the compilation. */
2401 if (type != NULL)
2402 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, type);
2404 else if (level->kind == sk_namespace)
2405 /* Do namespace lookup. */
2406 for (tail = current_namespace; 1; tail = CP_DECL_CONTEXT (tail))
2408 cxx_binding *binding =
2409 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (tail), name);
2411 if (binding && (binding->type
2412 || (binding->value
2413 && DECL_DECLARES_TYPE_P (binding->value))))
2415 tree old;
2417 /* If we just skipped past a template parameter level,
2418 even though THISLEVEL_ONLY, and we find a template
2419 class declaration, then we use the _TYPE node for the
2420 template. See the example below. */
2421 if (thislevel_only && !allow_template_parms_p
2422 && binding->value
2423 && DECL_CLASS_TEMPLATE_P (binding->value))
2424 old = binding->value;
2425 else
2426 old = binding->type ? binding->type : binding->value;
2428 /* We've found something at this binding level. If it is
2429 a typedef, extract the tag it refers to. Lookup fails
2430 if the typedef doesn't refer to a taggable type. */
2431 old = TREE_TYPE (old);
2432 old = follow_tag_typedef (old);
2433 if (!old)
2434 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2435 if (TREE_CODE (old) != form
2436 && (form == ENUMERAL_TYPE
2437 || TREE_CODE (old) == ENUMERAL_TYPE))
2439 error ("`%#D' redeclared as %C", old, form);
2440 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2442 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, old);
2444 if (thislevel_only || tail == global_namespace)
2445 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2447 else if (level->type_decls != NULL)
2449 binding_entry entry = binding_table_find (level->type_decls, name);
2450 if (entry != NULL)
2452 enum tree_code code = TREE_CODE (entry->type);
2454 if (code != form
2455 && (form == ENUMERAL_TYPE || code == ENUMERAL_TYPE))
2457 /* Definition isn't the kind we were looking for. */
2458 error ("`%#D' redeclared as %C", entry->type, form);
2459 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2461 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, entry->type);
2464 if (thislevel_only && level->kind != sk_cleanup)
2466 if (level->kind == sk_template_parms && allow_template_parms_p)
2468 /* We must deal with cases like this:
2470 template <class T> struct S;
2471 template <class T> struct S {};
2473 When looking up `S', for the second declaration, we
2474 would like to find the first declaration. But, we
2475 are in the pseudo-global level created for the
2476 template parameters, rather than the (surrounding)
2477 namespace level. Thus, we keep going one more level,
2478 even though THISLEVEL_ONLY is nonzero. */
2479 allow_template_parms_p = 0;
2480 continue;
2482 else
2483 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2486 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2489 /* Given a type, find the tag that was defined for it and return the tag name.
2490 Otherwise return 0. However, the value can never be 0
2491 in the cases in which this is used.
2493 C++: If NAME is nonzero, this is the new name to install. This is
2494 done when replacing anonymous tags with real tag names. */
2496 tree
2497 lookup_tag_reverse (tree type, tree name)
2499 struct cp_binding_level *level;
2501 timevar_push (TV_NAME_LOOKUP);
2502 for (level = current_binding_level; level; level = level->level_chain)
2504 binding_entry entry = level->type_decls == NULL
2505 ? NULL
2506 : binding_table_reverse_maybe_remap (level->type_decls, type, name);
2507 if (entry)
2508 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, entry->name);
2510 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2513 /* Returns true if ROOT (a namespace, class, or function) encloses
2514 CHILD. CHILD may be either a class type or a namespace. */
2516 bool
2517 is_ancestor (tree root, tree child)
2519 my_friendly_assert ((TREE_CODE (root) == NAMESPACE_DECL
2520 || TREE_CODE (root) == FUNCTION_DECL
2521 || CLASS_TYPE_P (root)), 20030307);
2522 my_friendly_assert ((TREE_CODE (child) == NAMESPACE_DECL
2523 || CLASS_TYPE_P (child)),
2524 20030307);
2526 /* The global namespace encloses everything. */
2527 if (root == global_namespace)
2528 return true;
2530 while (true)
2532 /* If we've run out of scopes, stop. */
2533 if (!child)
2534 return false;
2535 /* If we've reached the ROOT, it encloses CHILD. */
2536 if (root == child)
2537 return true;
2538 /* Go out one level. */
2539 if (TYPE_P (child))
2540 child = TYPE_NAME (child);
2541 child = DECL_CONTEXT (child);
2545 /* Enter the class or namespace scope indicated by T. Returns TRUE iff
2546 pop_scope should be called later to exit this scope. */
2548 bool
2549 push_scope (tree t)
2551 bool pop = true;
2553 if (TREE_CODE (t) == NAMESPACE_DECL)
2554 push_decl_namespace (t);
2555 else if (CLASS_TYPE_P (t))
2557 if (!at_class_scope_p ()
2558 || !same_type_p (current_class_type, t))
2559 push_nested_class (t);
2560 else
2561 /* T is the same as the current scope. There is therefore no
2562 need to re-enter the scope. Since we are not actually
2563 pushing a new scope, our caller should not call
2564 pop_scope. */
2565 pop = false;
2568 return pop;
2571 /* Leave scope pushed by push_scope. */
2573 void
2574 pop_scope (tree t)
2576 if (TREE_CODE (t) == NAMESPACE_DECL)
2577 pop_decl_namespace ();
2578 else if CLASS_TYPE_P (t)
2579 pop_nested_class ();
2582 /* Do a pushlevel for class declarations. */
2584 void
2585 pushlevel_class (void)
2587 if (ENABLE_SCOPE_CHECKING)
2588 is_class_level = 1;
2590 class_binding_level = begin_scope (sk_class, current_class_type);
2593 /* ...and a poplevel for class declarations. */
2595 void
2596 poplevel_class (void)
2598 struct cp_binding_level *level = class_binding_level;
2599 cp_class_binding *cb;
2600 size_t i;
2601 tree shadowed;
2603 timevar_push (TV_NAME_LOOKUP);
2604 my_friendly_assert (level != 0, 354);
2606 /* If we're leaving a toplevel class, cache its binding level. */
2607 if (current_class_depth == 1)
2608 previous_class_level = level;
2609 for (shadowed = level->type_shadowed;
2610 shadowed;
2611 shadowed = TREE_CHAIN (shadowed))
2612 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (shadowed), TREE_VALUE (shadowed));
2614 /* Remove the bindings for all of the class-level declarations. */
2615 if (level->class_shadowed)
2617 for (i = 0;
2618 VEC_iterate (cp_class_binding, level->class_shadowed, i, cb);
2619 ++i)
2620 IDENTIFIER_BINDING (cb->identifier) = cb->base.previous;
2621 ggc_free (level->class_shadowed);
2622 level->class_shadowed = NULL;
2625 /* Now, pop out of the binding level which we created up in the
2626 `pushlevel_class' routine. */
2627 if (ENABLE_SCOPE_CHECKING)
2628 is_class_level = 1;
2630 leave_scope ();
2631 timevar_pop (TV_NAME_LOOKUP);
2634 /* Set INHERITED_VALUE_BINDING_P on BINDING to true or false, as
2635 appropriate. DECL is the value to which a name has just been
2636 bound. CLASS_TYPE is the class in which the lookup occurred. */
2638 static void
2639 set_inherited_value_binding_p (cxx_binding *binding, tree decl,
2640 tree class_type)
2642 if (binding->value == decl && TREE_CODE (decl) != TREE_LIST)
2644 tree context;
2646 if (TREE_CODE (decl) == OVERLOAD)
2647 context = CP_DECL_CONTEXT (OVL_CURRENT (decl));
2648 else
2650 my_friendly_assert (DECL_P (decl), 0);
2651 context = context_for_name_lookup (decl);
2654 if (is_properly_derived_from (class_type, context))
2655 INHERITED_VALUE_BINDING_P (binding) = 1;
2656 else
2657 INHERITED_VALUE_BINDING_P (binding) = 0;
2659 else if (binding->value == decl)
2660 /* We only encounter a TREE_LIST when there is an ambiguity in the
2661 base classes. Such an ambiguity can be overridden by a
2662 definition in this class. */
2663 INHERITED_VALUE_BINDING_P (binding) = 1;
2664 else
2665 INHERITED_VALUE_BINDING_P (binding) = 0;
2668 /* Make the declaration of X appear in CLASS scope. */
2670 bool
2671 pushdecl_class_level (tree x)
2673 tree name;
2674 bool is_valid = true;
2676 timevar_push (TV_NAME_LOOKUP);
2677 /* Get the name of X. */
2678 if (TREE_CODE (x) == OVERLOAD)
2679 name = DECL_NAME (get_first_fn (x));
2680 else
2681 name = DECL_NAME (x);
2683 if (name)
2685 is_valid = push_class_level_binding (name, x);
2686 if (TREE_CODE (x) == TYPE_DECL)
2687 set_identifier_type_value (name, x);
2689 else if (ANON_AGGR_TYPE_P (TREE_TYPE (x)))
2691 /* If X is an anonymous aggregate, all of its members are
2692 treated as if they were members of the class containing the
2693 aggregate, for naming purposes. */
2694 tree f;
2696 for (f = TYPE_FIELDS (TREE_TYPE (x)); f; f = TREE_CHAIN (f))
2698 location_t save_location = input_location;
2699 input_location = DECL_SOURCE_LOCATION (f);
2700 if (!pushdecl_class_level (f))
2701 is_valid = false;
2702 input_location = save_location;
2705 timevar_pop (TV_NAME_LOOKUP);
2707 return is_valid;
2710 /* Return the BINDING (if any) for NAME in SCOPE, which is a class
2711 scope. If the value returned is non-NULL, and the PREVIOUS field
2712 is not set, callers must set the PREVIOUS field explicitly. */
2714 static cxx_binding *
2715 get_class_binding (tree name, cxx_scope *scope)
2717 tree class_type;
2718 tree type_binding;
2719 tree value_binding;
2720 cxx_binding *binding;
2722 class_type = scope->this_entity;
2724 /* Get the type binding. */
2725 type_binding = lookup_member (class_type, name,
2726 /*protect=*/2, /*want_type=*/true);
2727 /* Get the value binding. */
2728 value_binding = lookup_member (class_type, name,
2729 /*protect=*/2, /*want_type=*/false);
2731 if (value_binding
2732 && (TREE_CODE (value_binding) == TYPE_DECL
2733 || DECL_CLASS_TEMPLATE_P (value_binding)
2734 || (TREE_CODE (value_binding) == TREE_LIST
2735 && TREE_TYPE (value_binding) == error_mark_node
2736 && (TREE_CODE (TREE_VALUE (value_binding))
2737 == TYPE_DECL))))
2738 /* We found a type binding, even when looking for a non-type
2739 binding. This means that we already processed this binding
2740 above. */
2742 else if (value_binding)
2744 if (TREE_CODE (value_binding) == TREE_LIST
2745 && TREE_TYPE (value_binding) == error_mark_node)
2746 /* NAME is ambiguous. */
2748 else if (BASELINK_P (value_binding))
2749 /* NAME is some overloaded functions. */
2750 value_binding = BASELINK_FUNCTIONS (value_binding);
2753 /* If we found either a type binding or a value binding, create a
2754 new binding object. */
2755 if (type_binding || value_binding)
2757 binding = new_class_binding (name,
2758 value_binding,
2759 type_binding,
2760 scope);
2761 /* This is a class-scope binding, not a block-scope binding. */
2762 LOCAL_BINDING_P (binding) = 0;
2763 set_inherited_value_binding_p (binding, value_binding, class_type);
2765 else
2766 binding = NULL;
2768 return binding;
2771 /* Make the declaration(s) of X appear in CLASS scope under the name
2772 NAME. Returns true if the binding is valid. */
2774 bool
2775 push_class_level_binding (tree name, tree x)
2777 cxx_binding *binding;
2778 tree decl = x;
2779 bool ok;
2781 timevar_push (TV_NAME_LOOKUP);
2782 /* The class_binding_level will be NULL if x is a template
2783 parameter name in a member template. */
2784 if (!class_binding_level)
2785 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2787 /* Check for invalid member names. */
2788 my_friendly_assert (TYPE_BEING_DEFINED (current_class_type), 20040713);
2789 /* We could have been passed a tree list if this is an ambiguous
2790 declaration. If so, pull the declaration out because
2791 check_template_shadow will not handle a TREE_LIST. */
2792 if (TREE_CODE (decl) == TREE_LIST
2793 && TREE_TYPE (decl) == error_mark_node)
2794 decl = TREE_VALUE (decl);
2796 check_template_shadow (decl);
2798 /* [class.mem]
2800 If T is the name of a class, then each of the following shall
2801 have a name different from T:
2803 -- every static data member of class T;
2805 -- every member of class T that is itself a type;
2807 -- every enumerator of every member of class T that is an
2808 enumerated type;
2810 -- every member of every anonymous union that is a member of
2811 class T.
2813 (Non-static data members were also forbidden to have the same
2814 name as T until TC1.) */
2815 if ((TREE_CODE (x) == VAR_DECL
2816 || TREE_CODE (x) == CONST_DECL
2817 || (TREE_CODE (x) == TYPE_DECL
2818 && !DECL_SELF_REFERENCE_P (x))
2819 /* A data member of an anonymous union. */
2820 || (TREE_CODE (x) == FIELD_DECL
2821 && DECL_CONTEXT (x) != current_class_type))
2822 && DECL_NAME (x) == constructor_name (current_class_type))
2824 tree scope = context_for_name_lookup (x);
2825 if (TYPE_P (scope) && same_type_p (scope, current_class_type))
2827 error ("`%D' has the same name as the class in which it is "
2828 "declared",
2830 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, false);
2834 /* Get the current binding for NAME in this class, if any. */
2835 binding = IDENTIFIER_BINDING (name);
2836 if (!binding || binding->scope != class_binding_level)
2838 binding = get_class_binding (name, class_binding_level);
2839 /* If a new binding was created, put it at the front of the
2840 IDENTIFIER_BINDING list. */
2841 if (binding)
2843 binding->previous = IDENTIFIER_BINDING (name);
2844 IDENTIFIER_BINDING (name) = binding;
2848 /* If there is already a binding, then we may need to update the
2849 current value. */
2850 if (binding && binding->value)
2852 tree bval = binding->value;
2853 tree old_decl = NULL_TREE;
2855 if (INHERITED_VALUE_BINDING_P (binding))
2857 /* If the old binding was from a base class, and was for a
2858 tag name, slide it over to make room for the new binding.
2859 The old binding is still visible if explicitly qualified
2860 with a class-key. */
2861 if (TREE_CODE (bval) == TYPE_DECL && DECL_ARTIFICIAL (bval)
2862 && !(TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)))
2864 old_decl = binding->type;
2865 binding->type = bval;
2866 binding->value = NULL_TREE;
2867 INHERITED_VALUE_BINDING_P (binding) = 0;
2869 else
2870 old_decl = bval;
2872 else if (TREE_CODE (x) == OVERLOAD && is_overloaded_fn (bval))
2873 old_decl = bval;
2874 else if (TREE_CODE (x) == USING_DECL && TREE_CODE (bval) == USING_DECL)
2875 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2876 else if (TREE_CODE (x) == USING_DECL && is_overloaded_fn (bval))
2877 old_decl = bval;
2878 else if (TREE_CODE (bval) == USING_DECL && is_overloaded_fn (x))
2879 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2881 if (old_decl && binding->scope == class_binding_level)
2883 binding->value = x;
2884 /* It is always safe to clear INHERITED_VALUE_BINDING_P
2885 here. This function is only used to register bindings
2886 from with the class definition itself. */
2887 INHERITED_VALUE_BINDING_P (binding) = 0;
2888 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2892 /* Note that we declared this value so that we can issue an error if
2893 this is an invalid redeclaration of a name already used for some
2894 other purpose. */
2895 note_name_declared_in_class (name, decl);
2897 /* If we didn't replace an existing binding, put the binding on the
2898 stack of bindings for the identifier, and update the shadowed
2899 list. */
2900 if (binding && binding->scope == class_binding_level)
2901 /* Supplement the existing binding. */
2902 ok = supplement_binding (binding, decl);
2903 else
2905 /* Create a new binding. */
2906 push_binding (name, decl, class_binding_level);
2907 ok = true;
2910 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ok);
2913 tree
2914 do_class_using_decl (tree decl)
2916 tree name, value, scope, type;
2918 if (TREE_CODE (decl) != SCOPE_REF
2919 || !TREE_OPERAND (decl, 0)
2920 || !TYPE_P (TREE_OPERAND (decl, 0)))
2922 error ("using-declaration for non-member at class scope");
2923 return NULL_TREE;
2925 scope = TREE_OPERAND (decl, 0);
2926 name = TREE_OPERAND (decl, 1);
2927 if (TREE_CODE (name) == BIT_NOT_EXPR)
2929 error ("using-declaration cannot name destructor");
2930 return NULL_TREE;
2932 if (TREE_CODE (name) == TYPE_DECL)
2933 name = DECL_NAME (name);
2934 else if (TREE_CODE (name) == TEMPLATE_DECL)
2935 name = DECL_NAME (name);
2936 else if (BASELINK_P (name))
2938 tree fns = BASELINK_FUNCTIONS (name);
2939 name = DECL_NAME (get_first_fn (fns));
2942 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 980716);
2944 /* Dependent using decls have a NULL type, non-dependent ones have a
2945 void type. */
2946 type = dependent_type_p (scope) ? NULL_TREE : void_type_node;
2947 value = build_lang_decl (USING_DECL, name, type);
2948 DECL_INITIAL (value) = scope;
2950 if (scope && !processing_template_decl)
2952 tree r;
2954 r = lookup_qualified_name (scope, name, false, false);
2955 if (r && TREE_CODE (r) != ERROR_MARK)
2956 cp_emit_debug_info_for_using (r, scope);
2958 return value;
2962 /* Return the binding value for name in scope. */
2964 tree
2965 namespace_binding (tree name, tree scope)
2967 cxx_binding *binding;
2969 if (scope == NULL)
2970 scope = global_namespace;
2971 scope = ORIGINAL_NAMESPACE (scope);
2972 binding = cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name);
2974 return binding ? binding->value : NULL_TREE;
2977 /* Set the binding value for name in scope. */
2979 void
2980 set_namespace_binding (tree name, tree scope, tree val)
2982 cxx_binding *b;
2984 timevar_push (TV_NAME_LOOKUP);
2985 if (scope == NULL_TREE)
2986 scope = global_namespace;
2987 b = binding_for_name (NAMESPACE_LEVEL (scope), name);
2988 if (!b->value || TREE_CODE (val) == OVERLOAD || val == error_mark_node)
2989 b->value = val;
2990 else
2991 supplement_binding (b, val);
2992 timevar_pop (TV_NAME_LOOKUP);
2995 /* Compute the namespace where a declaration is defined. */
2997 static tree
2998 decl_namespace (tree decl)
3000 timevar_push (TV_NAME_LOOKUP);
3001 if (TYPE_P (decl))
3002 decl = TYPE_STUB_DECL (decl);
3003 while (DECL_CONTEXT (decl))
3005 decl = DECL_CONTEXT (decl);
3006 if (TREE_CODE (decl) == NAMESPACE_DECL)
3007 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
3008 if (TYPE_P (decl))
3009 decl = TYPE_STUB_DECL (decl);
3010 my_friendly_assert (DECL_P (decl), 390);
3013 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, global_namespace);
3016 /* Set the context of a declaration to scope. Complain if we are not
3017 outside scope. */
3019 void
3020 set_decl_namespace (tree decl, tree scope, bool friendp)
3022 tree old;
3024 /* Get rid of namespace aliases. */
3025 scope = ORIGINAL_NAMESPACE (scope);
3027 /* It is ok for friends to be qualified in parallel space. */
3028 if (!friendp && !is_ancestor (current_namespace, scope))
3029 error ("declaration of `%D' not in a namespace surrounding `%D'",
3030 decl, scope);
3031 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
3032 if (scope != current_namespace)
3034 /* See whether this has been declared in the namespace. */
3035 old = namespace_binding (DECL_NAME (decl), scope);
3036 if (!old)
3037 /* No old declaration at all. */
3038 goto complain;
3039 /* A template can be explicitly specialized in any namespace. */
3040 if (processing_explicit_instantiation)
3041 return;
3042 if (!is_overloaded_fn (decl))
3043 /* Don't compare non-function decls with decls_match here,
3044 since it can't check for the correct constness at this
3045 point. pushdecl will find those errors later. */
3046 return;
3047 /* Since decl is a function, old should contain a function decl. */
3048 if (!is_overloaded_fn (old))
3049 goto complain;
3050 if (processing_template_decl || processing_specialization)
3051 /* We have not yet called push_template_decl to turn a
3052 FUNCTION_DECL into a TEMPLATE_DECL, so the declarations
3053 won't match. But, we'll check later, when we construct the
3054 template. */
3055 return;
3056 if (is_overloaded_fn (old))
3058 for (; old; old = OVL_NEXT (old))
3059 if (decls_match (decl, OVL_CURRENT (old)))
3060 return;
3062 else
3063 if (decls_match (decl, old))
3064 return;
3066 else
3067 return;
3068 complain:
3069 error ("`%D' should have been declared inside `%D'",
3070 decl, scope);
3073 /* Return the namespace where the current declaration is declared. */
3075 tree
3076 current_decl_namespace (void)
3078 tree result;
3079 /* If we have been pushed into a different namespace, use it. */
3080 if (decl_namespace_list)
3081 return TREE_PURPOSE (decl_namespace_list);
3083 if (current_class_type)
3084 result = decl_namespace (TYPE_STUB_DECL (current_class_type));
3085 else if (current_function_decl)
3086 result = decl_namespace (current_function_decl);
3087 else
3088 result = current_namespace;
3089 return result;
3092 /* Push into the scope of the NAME namespace. If NAME is NULL_TREE, then we
3093 select a name that is unique to this compilation unit. */
3095 void
3096 push_namespace (tree name)
3098 tree d = NULL_TREE;
3099 int need_new = 1;
3100 int implicit_use = 0;
3101 bool anon = !name;
3103 timevar_push (TV_NAME_LOOKUP);
3105 /* We should not get here if the global_namespace is not yet constructed
3106 nor if NAME designates the global namespace: The global scope is
3107 constructed elsewhere. */
3108 my_friendly_assert (global_namespace != NULL && name != global_scope_name,
3109 20030531);
3111 if (anon)
3113 /* The name of anonymous namespace is unique for the translation
3114 unit. */
3115 if (!anonymous_namespace_name)
3116 anonymous_namespace_name = get_file_function_name ('N');
3117 name = anonymous_namespace_name;
3118 d = IDENTIFIER_NAMESPACE_VALUE (name);
3119 if (d)
3120 /* Reopening anonymous namespace. */
3121 need_new = 0;
3122 implicit_use = 1;
3124 else
3126 /* Check whether this is an extended namespace definition. */
3127 d = IDENTIFIER_NAMESPACE_VALUE (name);
3128 if (d != NULL_TREE && TREE_CODE (d) == NAMESPACE_DECL)
3130 need_new = 0;
3131 if (DECL_NAMESPACE_ALIAS (d))
3133 error ("namespace alias `%D' not allowed here, assuming `%D'",
3134 d, DECL_NAMESPACE_ALIAS (d));
3135 d = DECL_NAMESPACE_ALIAS (d);
3140 if (need_new)
3142 /* Make a new namespace, binding the name to it. */
3143 d = build_lang_decl (NAMESPACE_DECL, name, void_type_node);
3144 DECL_CONTEXT (d) = FROB_CONTEXT (current_namespace);
3145 pushdecl (d);
3146 if (anon)
3148 /* Clear DECL_NAME for the benefit of debugging back ends. */
3149 SET_DECL_ASSEMBLER_NAME (d, name);
3150 DECL_NAME (d) = NULL_TREE;
3152 begin_scope (sk_namespace, d);
3154 else
3155 resume_scope (NAMESPACE_LEVEL (d));
3157 if (implicit_use)
3158 do_using_directive (d);
3159 /* Enter the name space. */
3160 current_namespace = d;
3162 timevar_pop (TV_NAME_LOOKUP);
3165 /* Pop from the scope of the current namespace. */
3167 void
3168 pop_namespace (void)
3170 my_friendly_assert (current_namespace != global_namespace, 20010801);
3171 current_namespace = CP_DECL_CONTEXT (current_namespace);
3172 /* The binding level is not popped, as it might be re-opened later. */
3173 leave_scope ();
3176 /* Push into the scope of the namespace NS, even if it is deeply
3177 nested within another namespace. */
3179 void
3180 push_nested_namespace (tree ns)
3182 if (ns == global_namespace)
3183 push_to_top_level ();
3184 else
3186 push_nested_namespace (CP_DECL_CONTEXT (ns));
3187 push_namespace (DECL_NAME (ns));
3191 /* Pop back from the scope of the namespace NS, which was previously
3192 entered with push_nested_namespace. */
3194 void
3195 pop_nested_namespace (tree ns)
3197 timevar_push (TV_NAME_LOOKUP);
3198 while (ns != global_namespace)
3200 pop_namespace ();
3201 ns = CP_DECL_CONTEXT (ns);
3204 pop_from_top_level ();
3205 timevar_pop (TV_NAME_LOOKUP);
3208 /* Temporarily set the namespace for the current declaration. */
3210 void
3211 push_decl_namespace (tree decl)
3213 if (TREE_CODE (decl) != NAMESPACE_DECL)
3214 decl = decl_namespace (decl);
3215 decl_namespace_list = tree_cons (ORIGINAL_NAMESPACE (decl),
3216 NULL_TREE, decl_namespace_list);
3219 /* [namespace.memdef]/2 */
3221 void
3222 pop_decl_namespace (void)
3224 decl_namespace_list = TREE_CHAIN (decl_namespace_list);
3227 /* Return the namespace that is the common ancestor
3228 of two given namespaces. */
3230 static tree
3231 namespace_ancestor (tree ns1, tree ns2)
3233 timevar_push (TV_NAME_LOOKUP);
3234 if (is_ancestor (ns1, ns2))
3235 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ns1);
3236 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP,
3237 namespace_ancestor (CP_DECL_CONTEXT (ns1), ns2));
3240 /* Process a namespace-alias declaration. */
3242 void
3243 do_namespace_alias (tree alias, tree namespace)
3245 if (TREE_CODE (namespace) != NAMESPACE_DECL)
3247 /* The parser did not find it, so it's not there. */
3248 error ("unknown namespace `%D'", namespace);
3249 return;
3252 namespace = ORIGINAL_NAMESPACE (namespace);
3254 /* Build the alias. */
3255 alias = build_lang_decl (NAMESPACE_DECL, alias, void_type_node);
3256 DECL_NAMESPACE_ALIAS (alias) = namespace;
3257 DECL_EXTERNAL (alias) = 1;
3258 pushdecl (alias);
3260 /* Emit debug info for namespace alias. */
3261 (*debug_hooks->global_decl) (alias);
3264 /* Like pushdecl, only it places X in the current namespace,
3265 if appropriate. */
3267 tree
3268 pushdecl_namespace_level (tree x)
3270 struct cp_binding_level *b = current_binding_level;
3271 tree t;
3273 timevar_push (TV_NAME_LOOKUP);
3274 t = pushdecl_with_scope (x, NAMESPACE_LEVEL (current_namespace));
3276 /* Now, the type_shadowed stack may screw us. Munge it so it does
3277 what we want. */
3278 if (TREE_CODE (x) == TYPE_DECL)
3280 tree name = DECL_NAME (x);
3281 tree newval;
3282 tree *ptr = (tree *)0;
3283 for (; !global_scope_p (b); b = b->level_chain)
3285 tree shadowed = b->type_shadowed;
3286 for (; shadowed; shadowed = TREE_CHAIN (shadowed))
3287 if (TREE_PURPOSE (shadowed) == name)
3289 ptr = &TREE_VALUE (shadowed);
3290 /* Can't break out of the loop here because sometimes
3291 a binding level will have duplicate bindings for
3292 PT names. It's gross, but I haven't time to fix it. */
3295 newval = TREE_TYPE (x);
3296 if (ptr == (tree *)0)
3298 /* @@ This shouldn't be needed. My test case "zstring.cc" trips
3299 up here if this is changed to an assertion. --KR */
3300 SET_IDENTIFIER_TYPE_VALUE (name, x);
3302 else
3304 *ptr = newval;
3307 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
3310 /* Insert USED into the using list of USER. Set INDIRECT_flag if this
3311 directive is not directly from the source. Also find the common
3312 ancestor and let our users know about the new namespace */
3313 static void
3314 add_using_namespace (tree user, tree used, bool indirect)
3316 tree t;
3317 timevar_push (TV_NAME_LOOKUP);
3318 /* Using oneself is a no-op. */
3319 if (user == used)
3321 timevar_pop (TV_NAME_LOOKUP);
3322 return;
3324 my_friendly_assert (TREE_CODE (user) == NAMESPACE_DECL, 380);
3325 my_friendly_assert (TREE_CODE (used) == NAMESPACE_DECL, 380);
3326 /* Check if we already have this. */
3327 t = purpose_member (used, DECL_NAMESPACE_USING (user));
3328 if (t != NULL_TREE)
3330 if (!indirect)
3331 /* Promote to direct usage. */
3332 TREE_INDIRECT_USING (t) = 0;
3333 timevar_pop (TV_NAME_LOOKUP);
3334 return;
3337 /* Add used to the user's using list. */
3338 DECL_NAMESPACE_USING (user)
3339 = tree_cons (used, namespace_ancestor (user, used),
3340 DECL_NAMESPACE_USING (user));
3342 TREE_INDIRECT_USING (DECL_NAMESPACE_USING (user)) = indirect;
3344 /* Add user to the used's users list. */
3345 DECL_NAMESPACE_USERS (used)
3346 = tree_cons (user, 0, DECL_NAMESPACE_USERS (used));
3348 /* Recursively add all namespaces used. */
3349 for (t = DECL_NAMESPACE_USING (used); t; t = TREE_CHAIN (t))
3350 /* indirect usage */
3351 add_using_namespace (user, TREE_PURPOSE (t), 1);
3353 /* Tell everyone using us about the new used namespaces. */
3354 for (t = DECL_NAMESPACE_USERS (user); t; t = TREE_CHAIN (t))
3355 add_using_namespace (TREE_PURPOSE (t), used, 1);
3356 timevar_pop (TV_NAME_LOOKUP);
3359 /* Process a using-declaration not appearing in class or local scope. */
3361 void
3362 do_toplevel_using_decl (tree decl, tree scope, tree name)
3364 tree oldval, oldtype, newval, newtype;
3365 tree orig_decl = decl;
3366 cxx_binding *binding;
3368 decl = validate_nonmember_using_decl (decl, scope, name);
3369 if (decl == NULL_TREE)
3370 return;
3372 binding = binding_for_name (NAMESPACE_LEVEL (current_namespace), name);
3374 oldval = binding->value;
3375 oldtype = binding->type;
3377 do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype);
3379 /* Emit debug info. */
3380 if (!processing_template_decl)
3381 cp_emit_debug_info_for_using (orig_decl, current_namespace);
3383 /* Copy declarations found. */
3384 if (newval)
3385 binding->value = newval;
3386 if (newtype)
3387 binding->type = newtype;
3388 return;
3391 /* Process a using-directive. */
3393 void
3394 do_using_directive (tree namespace)
3396 tree context = NULL_TREE;
3398 if (building_stmt_tree ())
3399 add_stmt (build_stmt (USING_STMT, namespace));
3401 /* using namespace A::B::C; */
3402 if (TREE_CODE (namespace) == SCOPE_REF)
3403 namespace = TREE_OPERAND (namespace, 1);
3404 if (TREE_CODE (namespace) == IDENTIFIER_NODE)
3406 /* Lookup in lexer did not find a namespace. */
3407 if (!processing_template_decl)
3408 error ("namespace `%T' undeclared", namespace);
3409 return;
3411 if (TREE_CODE (namespace) != NAMESPACE_DECL)
3413 if (!processing_template_decl)
3414 error ("`%T' is not a namespace", namespace);
3415 return;
3417 namespace = ORIGINAL_NAMESPACE (namespace);
3418 if (!toplevel_bindings_p ())
3420 push_using_directive (namespace);
3421 context = current_scope ();
3423 else
3425 /* direct usage */
3426 add_using_namespace (current_namespace, namespace, 0);
3427 if (current_namespace != global_namespace)
3428 context = current_namespace;
3431 /* Emit debugging info. */
3432 if (!processing_template_decl)
3433 (*debug_hooks->imported_module_or_decl) (namespace, context);
3436 /* Deal with a using-directive seen by the parser. Currently we only
3437 handle attributes here, since they cannot appear inside a template. */
3439 void
3440 parse_using_directive (tree namespace, tree attribs)
3442 tree a;
3444 do_using_directive (namespace);
3446 for (a = attribs; a; a = TREE_CHAIN (a))
3448 tree name = TREE_PURPOSE (a);
3449 if (is_attribute_p ("strong", name))
3451 if (!toplevel_bindings_p ())
3452 error ("strong using only meaningful at namespace scope");
3453 else
3454 DECL_NAMESPACE_ASSOCIATIONS (namespace)
3455 = tree_cons (current_namespace, 0,
3456 DECL_NAMESPACE_ASSOCIATIONS (namespace));
3458 else
3459 warning ("`%D' attribute directive ignored", name);
3463 /* Like pushdecl, only it places X in the global scope if appropriate.
3464 Calls cp_finish_decl to register the variable, initializing it with
3465 *INIT, if INIT is non-NULL. */
3467 static tree
3468 pushdecl_top_level_1 (tree x, tree *init)
3470 timevar_push (TV_NAME_LOOKUP);
3471 push_to_top_level ();
3472 x = pushdecl_namespace_level (x);
3473 if (init)
3474 cp_finish_decl (x, *init, NULL_TREE, 0);
3475 pop_from_top_level ();
3476 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
3479 /* Like pushdecl, only it places X in the global scope if appropriate. */
3481 tree
3482 pushdecl_top_level (tree x)
3484 return pushdecl_top_level_1 (x, NULL);
3487 /* Like pushdecl, only it places X in the global scope if
3488 appropriate. Calls cp_finish_decl to register the variable,
3489 initializing it with INIT. */
3491 tree
3492 pushdecl_top_level_and_finish (tree x, tree init)
3494 return pushdecl_top_level_1 (x, &init);
3497 /* Combines two sets of overloaded functions into an OVERLOAD chain, removing
3498 duplicates. The first list becomes the tail of the result.
3500 The algorithm is O(n^2). We could get this down to O(n log n) by
3501 doing a sort on the addresses of the functions, if that becomes
3502 necessary. */
3504 static tree
3505 merge_functions (tree s1, tree s2)
3507 for (; s2; s2 = OVL_NEXT (s2))
3509 tree fn2 = OVL_CURRENT (s2);
3510 tree fns1;
3512 for (fns1 = s1; fns1; fns1 = OVL_NEXT (fns1))
3514 tree fn1 = OVL_CURRENT (fns1);
3516 /* If the function from S2 is already in S1, there is no
3517 need to add it again. For `extern "C"' functions, we
3518 might have two FUNCTION_DECLs for the same function, in
3519 different namespaces; again, we only need one of them. */
3520 if (fn1 == fn2
3521 || (DECL_EXTERN_C_P (fn1) && DECL_EXTERN_C_P (fn2)
3522 && DECL_NAME (fn1) == DECL_NAME (fn2)))
3523 break;
3526 /* If we exhausted all of the functions in S1, FN2 is new. */
3527 if (!fns1)
3528 s1 = build_overload (fn2, s1);
3530 return s1;
3533 /* This should return an error not all definitions define functions.
3534 It is not an error if we find two functions with exactly the
3535 same signature, only if these are selected in overload resolution.
3536 old is the current set of bindings, new the freshly-found binding.
3537 XXX Do we want to give *all* candidates in case of ambiguity?
3538 XXX In what way should I treat extern declarations?
3539 XXX I don't want to repeat the entire duplicate_decls here */
3541 static void
3542 ambiguous_decl (tree name, struct scope_binding *old, cxx_binding *new,
3543 int flags)
3545 tree val, type;
3546 my_friendly_assert (old != NULL, 393);
3547 /* Copy the value. */
3548 val = new->value;
3549 if (val)
3550 switch (TREE_CODE (val))
3552 case TEMPLATE_DECL:
3553 /* If we expect types or namespaces, and not templates,
3554 or this is not a template class. */
3555 if (LOOKUP_QUALIFIERS_ONLY (flags)
3556 && !DECL_CLASS_TEMPLATE_P (val))
3557 val = NULL_TREE;
3558 break;
3559 case TYPE_DECL:
3560 if (LOOKUP_NAMESPACES_ONLY (flags))
3561 val = NULL_TREE;
3562 break;
3563 case NAMESPACE_DECL:
3564 if (LOOKUP_TYPES_ONLY (flags))
3565 val = NULL_TREE;
3566 break;
3567 case FUNCTION_DECL:
3568 /* Ignore built-in functions that are still anticipated. */
3569 if (LOOKUP_QUALIFIERS_ONLY (flags) || DECL_ANTICIPATED (val))
3570 val = NULL_TREE;
3571 break;
3572 default:
3573 if (LOOKUP_QUALIFIERS_ONLY (flags))
3574 val = NULL_TREE;
3577 if (!old->value)
3578 old->value = val;
3579 else if (val && val != old->value)
3581 if (is_overloaded_fn (old->value) && is_overloaded_fn (val))
3582 old->value = merge_functions (old->value, val);
3583 else
3585 /* Some declarations are functions, some are not. */
3586 if (flags & LOOKUP_COMPLAIN)
3588 /* If we've already given this error for this lookup,
3589 old->value is error_mark_node, so let's not
3590 repeat ourselves. */
3591 if (old->value != error_mark_node)
3593 error ("use of `%D' is ambiguous", name);
3594 cp_error_at (" first declared as `%#D' here",
3595 old->value);
3597 cp_error_at (" also declared as `%#D' here", val);
3599 old->value = error_mark_node;
3602 /* ... and copy the type. */
3603 type = new->type;
3604 if (LOOKUP_NAMESPACES_ONLY (flags))
3605 type = NULL_TREE;
3606 if (!old->type)
3607 old->type = type;
3608 else if (type && old->type != type)
3610 if (flags & LOOKUP_COMPLAIN)
3612 error ("`%D' denotes an ambiguous type",name);
3613 error ("%J first type here", TYPE_MAIN_DECL (old->type));
3614 error ("%J other type here", TYPE_MAIN_DECL (type));
3619 /* Return the declarations that are members of the namespace NS. */
3621 tree
3622 cp_namespace_decls (tree ns)
3624 return NAMESPACE_LEVEL (ns)->names;
3627 /* Combine prefer_type and namespaces_only into flags. */
3629 static int
3630 lookup_flags (int prefer_type, int namespaces_only)
3632 if (namespaces_only)
3633 return LOOKUP_PREFER_NAMESPACES;
3634 if (prefer_type > 1)
3635 return LOOKUP_PREFER_TYPES;
3636 if (prefer_type > 0)
3637 return LOOKUP_PREFER_BOTH;
3638 return 0;
3641 /* Given a lookup that returned VAL, use FLAGS to decide if we want to
3642 ignore it or not. Subroutine of lookup_name_real. */
3644 static tree
3645 qualify_lookup (tree val, int flags)
3647 if (val == NULL_TREE)
3648 return val;
3649 if ((flags & LOOKUP_PREFER_NAMESPACES) && TREE_CODE (val) == NAMESPACE_DECL)
3650 return val;
3651 if ((flags & LOOKUP_PREFER_TYPES)
3652 && (TREE_CODE (val) == TYPE_DECL || TREE_CODE (val) == TEMPLATE_DECL))
3653 return val;
3654 if (flags & (LOOKUP_PREFER_NAMESPACES | LOOKUP_PREFER_TYPES))
3655 return NULL_TREE;
3656 return val;
3659 /* Look up NAME in the NAMESPACE. */
3661 tree
3662 lookup_namespace_name (tree namespace, tree name)
3664 tree val;
3665 tree template_id = NULL_TREE;
3666 struct scope_binding binding = EMPTY_SCOPE_BINDING;
3668 timevar_push (TV_NAME_LOOKUP);
3669 my_friendly_assert (TREE_CODE (namespace) == NAMESPACE_DECL, 370);
3671 if (TREE_CODE (name) == NAMESPACE_DECL)
3672 /* This happens for A::B<int> when B is a namespace. */
3673 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, name);
3674 else if (TREE_CODE (name) == TEMPLATE_DECL)
3676 /* This happens for A::B where B is a template, and there are no
3677 template arguments. */
3678 error ("invalid use of `%D'", name);
3679 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3682 namespace = ORIGINAL_NAMESPACE (namespace);
3684 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3686 template_id = name;
3687 name = TREE_OPERAND (name, 0);
3688 if (TREE_CODE (name) == OVERLOAD)
3689 name = DECL_NAME (OVL_CURRENT (name));
3690 else if (DECL_P (name))
3691 name = DECL_NAME (name);
3694 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 373);
3696 if (!qualified_lookup_using_namespace (name, namespace, &binding, 0))
3697 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3699 if (binding.value)
3701 val = binding.value;
3703 if (template_id)
3705 if (DECL_CLASS_TEMPLATE_P (val))
3706 val = lookup_template_class (val,
3707 TREE_OPERAND (template_id, 1),
3708 /*in_decl=*/NULL_TREE,
3709 /*context=*/NULL_TREE,
3710 /*entering_scope=*/0,
3711 tf_error | tf_warning);
3712 else if (DECL_FUNCTION_TEMPLATE_P (val)
3713 || TREE_CODE (val) == OVERLOAD)
3714 val = lookup_template_function (val,
3715 TREE_OPERAND (template_id, 1));
3716 else
3718 error ("`%D::%D' is not a template",
3719 namespace, name);
3720 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3724 /* If we have a single function from a using decl, pull it out. */
3725 if (TREE_CODE (val) == OVERLOAD && ! really_overloaded_fn (val))
3726 val = OVL_FUNCTION (val);
3728 /* Ignore built-in functions that haven't been prototyped yet. */
3729 if (!val || !DECL_P(val)
3730 || !DECL_LANG_SPECIFIC(val)
3731 || !DECL_ANTICIPATED (val))
3732 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3735 error ("`%D' undeclared in namespace `%D'", name, namespace);
3736 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3739 /* Select the right _DECL from multiple choices. */
3741 static tree
3742 select_decl (const struct scope_binding *binding, int flags)
3744 tree val;
3745 val = binding->value;
3747 timevar_push (TV_NAME_LOOKUP);
3748 if (LOOKUP_NAMESPACES_ONLY (flags))
3750 /* We are not interested in types. */
3751 if (val && TREE_CODE (val) == NAMESPACE_DECL)
3752 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3753 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
3756 /* If looking for a type, or if there is no non-type binding, select
3757 the value binding. */
3758 if (binding->type && (!val || (flags & LOOKUP_PREFER_TYPES)))
3759 val = binding->type;
3760 /* Don't return non-types if we really prefer types. */
3761 else if (val && LOOKUP_TYPES_ONLY (flags)
3762 && ! DECL_DECLARES_TYPE_P (val))
3763 val = NULL_TREE;
3765 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3768 /* Unscoped lookup of a global: iterate over current namespaces,
3769 considering using-directives. */
3771 static tree
3772 unqualified_namespace_lookup (tree name, int flags)
3774 tree initial = current_decl_namespace ();
3775 tree scope = initial;
3776 tree siter;
3777 struct cp_binding_level *level;
3778 tree val = NULL_TREE;
3779 struct scope_binding binding = EMPTY_SCOPE_BINDING;
3781 timevar_push (TV_NAME_LOOKUP);
3783 for (; !val; scope = CP_DECL_CONTEXT (scope))
3785 cxx_binding *b =
3786 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name);
3788 if (b)
3790 if (b->value && DECL_P (b->value)
3791 && DECL_LANG_SPECIFIC (b->value)
3792 && DECL_ANTICIPATED (b->value))
3793 /* Ignore anticipated built-in functions. */
3795 else
3796 binding.value = b->value;
3797 binding.type = b->type;
3800 /* Add all _DECLs seen through local using-directives. */
3801 for (level = current_binding_level;
3802 level->kind != sk_namespace;
3803 level = level->level_chain)
3804 if (!lookup_using_namespace (name, &binding, level->using_directives,
3805 scope, flags))
3806 /* Give up because of error. */
3807 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3809 /* Add all _DECLs seen through global using-directives. */
3810 /* XXX local and global using lists should work equally. */
3811 siter = initial;
3812 while (1)
3814 if (!lookup_using_namespace (name, &binding,
3815 DECL_NAMESPACE_USING (siter),
3816 scope, flags))
3817 /* Give up because of error. */
3818 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3819 if (siter == scope) break;
3820 siter = CP_DECL_CONTEXT (siter);
3823 val = select_decl (&binding, flags);
3824 if (scope == global_namespace)
3825 break;
3827 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3830 /* Look up NAME (an IDENTIFIER_NODE) in SCOPE (either a NAMESPACE_DECL
3831 or a class TYPE). If IS_TYPE_P is TRUE, then ignore non-type
3832 bindings.
3834 Returns a DECL (or OVERLOAD, or BASELINK) representing the
3835 declaration found. If no suitable declaration can be found,
3836 ERROR_MARK_NODE is returned. Iif COMPLAIN is true and SCOPE is
3837 neither a class-type nor a namespace a diagnostic is issued. */
3839 tree
3840 lookup_qualified_name (tree scope, tree name, bool is_type_p, bool complain)
3842 int flags = 0;
3844 if (TREE_CODE (scope) == NAMESPACE_DECL)
3846 struct scope_binding binding = EMPTY_SCOPE_BINDING;
3848 flags |= LOOKUP_COMPLAIN;
3849 if (is_type_p)
3850 flags |= LOOKUP_PREFER_TYPES;
3851 if (qualified_lookup_using_namespace (name, scope, &binding, flags))
3852 return select_decl (&binding, flags);
3854 else if (is_aggr_type (scope, complain))
3856 tree t;
3857 t = lookup_member (scope, name, 0, is_type_p);
3858 if (t)
3859 return t;
3862 return error_mark_node;
3865 /* Subroutine of unqualified_namespace_lookup:
3866 Add the bindings of NAME in used namespaces to VAL.
3867 We are currently looking for names in namespace SCOPE, so we
3868 look through USINGS for using-directives of namespaces
3869 which have SCOPE as a common ancestor with the current scope.
3870 Returns false on errors. */
3872 static bool
3873 lookup_using_namespace (tree name, struct scope_binding *val,
3874 tree usings, tree scope, int flags)
3876 tree iter;
3877 timevar_push (TV_NAME_LOOKUP);
3878 /* Iterate over all used namespaces in current, searching for using
3879 directives of scope. */
3880 for (iter = usings; iter; iter = TREE_CHAIN (iter))
3881 if (TREE_VALUE (iter) == scope)
3883 tree used = ORIGINAL_NAMESPACE (TREE_PURPOSE (iter));
3884 cxx_binding *val1 =
3885 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (used), name);
3886 /* Resolve ambiguities. */
3887 if (val1)
3888 ambiguous_decl (name, val, val1, flags);
3890 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val->value != error_mark_node);
3893 /* [namespace.qual]
3894 Accepts the NAME to lookup and its qualifying SCOPE.
3895 Returns the name/type pair found into the cxx_binding *RESULT,
3896 or false on error. */
3898 static bool
3899 qualified_lookup_using_namespace (tree name, tree scope,
3900 struct scope_binding *result, int flags)
3902 /* Maintain a list of namespaces visited... */
3903 tree seen = NULL_TREE;
3904 /* ... and a list of namespace yet to see. */
3905 tree todo = NULL_TREE;
3906 tree todo_maybe = NULL_TREE;
3907 tree usings;
3908 timevar_push (TV_NAME_LOOKUP);
3909 /* Look through namespace aliases. */
3910 scope = ORIGINAL_NAMESPACE (scope);
3911 while (scope && result->value != error_mark_node)
3913 cxx_binding *binding =
3914 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name);
3915 seen = tree_cons (scope, NULL_TREE, seen);
3916 if (binding)
3917 ambiguous_decl (name, result, binding, flags);
3919 /* Consider strong using directives always, and non-strong ones
3920 if we haven't found a binding yet. ??? Shouldn't we consider
3921 non-strong ones if the initial RESULT is non-NULL, but the
3922 binding in the given namespace is? */
3923 for (usings = DECL_NAMESPACE_USING (scope); usings;
3924 usings = TREE_CHAIN (usings))
3925 /* If this was a real directive, and we have not seen it. */
3926 if (!TREE_INDIRECT_USING (usings))
3928 /* Try to avoid queuing the same namespace more than once,
3929 the exception being when a namespace was already
3930 enqueued for todo_maybe and then a strong using is
3931 found for it. We could try to remove it from
3932 todo_maybe, but it's probably not worth the effort. */
3933 if (is_associated_namespace (scope, TREE_PURPOSE (usings))
3934 && !purpose_member (TREE_PURPOSE (usings), seen)
3935 && !purpose_member (TREE_PURPOSE (usings), todo))
3936 todo = tree_cons (TREE_PURPOSE (usings), NULL_TREE, todo);
3937 else if ((!result->value && !result->type)
3938 && !purpose_member (TREE_PURPOSE (usings), seen)
3939 && !purpose_member (TREE_PURPOSE (usings), todo)
3940 && !purpose_member (TREE_PURPOSE (usings), todo_maybe))
3941 todo_maybe = tree_cons (TREE_PURPOSE (usings), NULL_TREE,
3942 todo_maybe);
3944 if (todo)
3946 scope = TREE_PURPOSE (todo);
3947 todo = TREE_CHAIN (todo);
3949 else if (todo_maybe
3950 && (!result->value && !result->type))
3952 scope = TREE_PURPOSE (todo_maybe);
3953 todo = TREE_CHAIN (todo_maybe);
3954 todo_maybe = NULL_TREE;
3956 else
3957 scope = NULL_TREE; /* If there never was a todo list. */
3959 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, result->value != error_mark_node);
3962 /* Return the innermost non-namespace binding for NAME from a scope
3963 containing BINDING, or, if BINDING is NULL, the current scope. If
3964 CLASS_P is false, then class bindings are ignored. */
3966 cxx_binding *
3967 outer_binding (tree name,
3968 cxx_binding *binding,
3969 bool class_p)
3971 cxx_binding *outer;
3972 cxx_scope *scope;
3973 cxx_scope *outer_scope;
3975 if (binding)
3977 scope = binding->scope->level_chain;
3978 outer = binding->previous;
3980 else
3982 scope = current_binding_level;
3983 outer = IDENTIFIER_BINDING (name);
3985 outer_scope = outer ? outer->scope : NULL;
3987 /* Because we create class bindings lazily, we might be missing a
3988 class binding for NAME. If there are any class binding levels
3989 between the LAST_BINDING_LEVEL and the scope in which OUTER was
3990 declared, we must lookup NAME in those class scopes. */
3991 if (class_p)
3992 while (scope && scope != outer_scope && scope->kind != sk_namespace)
3994 if (scope->kind == sk_class)
3996 cxx_binding *class_binding;
3998 class_binding = get_class_binding (name, scope);
3999 if (class_binding)
4001 /* Thread this new class-scope binding onto the
4002 IDENTIFIER_BINDING list so that future lookups
4003 find it quickly. */
4004 class_binding->previous = outer;
4005 if (binding)
4006 binding->previous = class_binding;
4007 else
4008 IDENTIFIER_BINDING (name) = class_binding;
4009 return class_binding;
4012 scope = scope->level_chain;
4015 return outer;
4018 /* Return the innermost block-scope or class-scope value binding for
4019 NAME, or NULL_TREE if there is no such binding. */
4021 tree
4022 innermost_non_namespace_value (tree name)
4024 cxx_binding *binding;
4025 binding = outer_binding (name, /*binding=*/NULL, /*class_p=*/true);
4026 return binding ? binding->value : NULL_TREE;
4029 /* Look up NAME in the current binding level and its superiors in the
4030 namespace of variables, functions and typedefs. Return a ..._DECL
4031 node of some kind representing its definition if there is only one
4032 such declaration, or return a TREE_LIST with all the overloaded
4033 definitions if there are many, or return 0 if it is undefined.
4035 If PREFER_TYPE is > 0, we prefer TYPE_DECLs or namespaces.
4036 If PREFER_TYPE is > 1, we reject non-type decls (e.g. namespaces).
4037 Otherwise we prefer non-TYPE_DECLs.
4039 If NONCLASS is nonzero, bindings in class scopes are ignored. If
4040 BLOCK_P is false, bindings in block scopes are ignored. */
4042 tree
4043 lookup_name_real (tree name, int prefer_type, int nonclass, bool block_p,
4044 int namespaces_only, int flags)
4046 cxx_binding *iter;
4047 tree val = NULL_TREE;
4049 timevar_push (TV_NAME_LOOKUP);
4050 /* Conversion operators are handled specially because ordinary
4051 unqualified name lookup will not find template conversion
4052 operators. */
4053 if (IDENTIFIER_TYPENAME_P (name))
4055 struct cp_binding_level *level;
4057 for (level = current_binding_level;
4058 level && level->kind != sk_namespace;
4059 level = level->level_chain)
4061 tree class_type;
4062 tree operators;
4064 /* A conversion operator can only be declared in a class
4065 scope. */
4066 if (level->kind != sk_class)
4067 continue;
4069 /* Lookup the conversion operator in the class. */
4070 class_type = level->this_entity;
4071 operators = lookup_fnfields (class_type, name, /*protect=*/0);
4072 if (operators)
4073 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, operators);
4076 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
4079 flags |= lookup_flags (prefer_type, namespaces_only);
4081 /* First, look in non-namespace scopes. */
4083 if (current_class_type == NULL_TREE)
4084 nonclass = 1;
4086 if (block_p || !nonclass)
4087 for (iter = outer_binding (name, NULL, !nonclass);
4088 iter;
4089 iter = outer_binding (name, iter, !nonclass))
4091 tree binding;
4093 /* Skip entities we don't want. */
4094 if (LOCAL_BINDING_P (iter) ? !block_p : nonclass)
4095 continue;
4097 /* If this is the kind of thing we're looking for, we're done. */
4098 if (qualify_lookup (iter->value, flags))
4099 binding = iter->value;
4100 else if ((flags & LOOKUP_PREFER_TYPES)
4101 && qualify_lookup (iter->type, flags))
4102 binding = iter->type;
4103 else
4104 binding = NULL_TREE;
4106 if (binding)
4108 val = binding;
4109 break;
4113 /* Now lookup in namespace scopes. */
4114 if (!val)
4116 tree t = unqualified_namespace_lookup (name, flags);
4117 if (t)
4118 val = t;
4121 if (val)
4123 /* If we have a single function from a using decl, pull it out. */
4124 if (TREE_CODE (val) == OVERLOAD && ! really_overloaded_fn (val))
4125 val = OVL_FUNCTION (val);
4128 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
4131 tree
4132 lookup_name_nonclass (tree name)
4134 return lookup_name_real (name, 0, 1, /*block_p=*/true, 0, LOOKUP_COMPLAIN);
4137 tree
4138 lookup_function_nonclass (tree name, tree args, bool block_p)
4140 return
4141 lookup_arg_dependent (name,
4142 lookup_name_real (name, 0, 1, block_p, 0,
4143 LOOKUP_COMPLAIN),
4144 args);
4147 tree
4148 lookup_name (tree name, int prefer_type)
4150 return lookup_name_real (name, prefer_type, 0, /*block_p=*/true,
4151 0, LOOKUP_COMPLAIN);
4154 /* Similar to `lookup_name' but look only in the innermost non-class
4155 binding level. */
4157 static tree
4158 lookup_name_current_level (tree name)
4160 struct cp_binding_level *b;
4161 tree t = NULL_TREE;
4163 timevar_push (TV_NAME_LOOKUP);
4164 b = innermost_nonclass_level ();
4166 if (b->kind == sk_namespace)
4168 t = IDENTIFIER_NAMESPACE_VALUE (name);
4170 /* extern "C" function() */
4171 if (t != NULL_TREE && TREE_CODE (t) == TREE_LIST)
4172 t = TREE_VALUE (t);
4174 else if (IDENTIFIER_BINDING (name)
4175 && LOCAL_BINDING_P (IDENTIFIER_BINDING (name)))
4177 cxx_binding *binding;
4178 binding = IDENTIFIER_BINDING (name);
4179 while (1)
4181 if (binding->scope == b
4182 && !(TREE_CODE (binding->value) == VAR_DECL
4183 && DECL_DEAD_FOR_LOCAL (binding->value)))
4184 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, binding->value);
4186 if (b->kind == sk_cleanup)
4187 b = b->level_chain;
4188 else
4189 break;
4193 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
4196 /* Like lookup_name_current_level, but for types. */
4198 static tree
4199 lookup_type_current_level (tree name)
4201 tree t = NULL_TREE;
4203 timevar_push (TV_NAME_LOOKUP);
4204 my_friendly_assert (current_binding_level->kind != sk_namespace,
4205 980716);
4207 if (REAL_IDENTIFIER_TYPE_VALUE (name) != NULL_TREE
4208 && REAL_IDENTIFIER_TYPE_VALUE (name) != global_type_node)
4210 struct cp_binding_level *b = current_binding_level;
4211 while (1)
4213 if (purpose_member (name, b->type_shadowed))
4214 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP,
4215 REAL_IDENTIFIER_TYPE_VALUE (name));
4216 if (b->kind == sk_cleanup)
4217 b = b->level_chain;
4218 else
4219 break;
4223 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
4226 /* [basic.lookup.koenig] */
4227 /* A nonzero return value in the functions below indicates an error. */
4229 struct arg_lookup
4231 tree name;
4232 tree namespaces;
4233 tree classes;
4234 tree functions;
4237 static bool arg_assoc (struct arg_lookup*, tree);
4238 static bool arg_assoc_args (struct arg_lookup*, tree);
4239 static bool arg_assoc_type (struct arg_lookup*, tree);
4240 static bool add_function (struct arg_lookup *, tree);
4241 static bool arg_assoc_namespace (struct arg_lookup *, tree);
4242 static bool arg_assoc_class (struct arg_lookup *, tree);
4243 static bool arg_assoc_template_arg (struct arg_lookup*, tree);
4245 /* Add a function to the lookup structure.
4246 Returns true on error. */
4248 static bool
4249 add_function (struct arg_lookup *k, tree fn)
4251 /* We used to check here to see if the function was already in the list,
4252 but that's O(n^2), which is just too expensive for function lookup.
4253 Now we deal with the occasional duplicate in joust. In doing this, we
4254 assume that the number of duplicates will be small compared to the
4255 total number of functions being compared, which should usually be the
4256 case. */
4258 /* We must find only functions, or exactly one non-function. */
4259 if (!k->functions)
4260 k->functions = fn;
4261 else if (fn == k->functions)
4263 else if (is_overloaded_fn (k->functions) && is_overloaded_fn (fn))
4264 k->functions = build_overload (fn, k->functions);
4265 else
4267 tree f1 = OVL_CURRENT (k->functions);
4268 tree f2 = fn;
4269 if (is_overloaded_fn (f1))
4271 fn = f1; f1 = f2; f2 = fn;
4273 cp_error_at ("`%D' is not a function,", f1);
4274 cp_error_at (" conflict with `%D'", f2);
4275 error (" in call to `%D'", k->name);
4276 return true;
4279 return false;
4282 /* Returns true iff CURRENT has declared itself to be an associated
4283 namespace of SCOPE via a strong using-directive (or transitive chain
4284 thereof). Both are namespaces. */
4286 bool
4287 is_associated_namespace (tree current, tree scope)
4289 tree seen = NULL_TREE;
4290 tree todo = NULL_TREE;
4291 tree t;
4292 while (1)
4294 if (scope == current)
4295 return true;
4296 seen = tree_cons (scope, NULL_TREE, seen);
4297 for (t = DECL_NAMESPACE_ASSOCIATIONS (scope); t; t = TREE_CHAIN (t))
4298 if (!purpose_member (TREE_PURPOSE (t), seen))
4299 todo = tree_cons (TREE_PURPOSE (t), NULL_TREE, todo);
4300 if (todo)
4302 scope = TREE_PURPOSE (todo);
4303 todo = TREE_CHAIN (todo);
4305 else
4306 return false;
4310 /* Add functions of a namespace to the lookup structure.
4311 Returns true on error. */
4313 static bool
4314 arg_assoc_namespace (struct arg_lookup *k, tree scope)
4316 tree value;
4318 if (purpose_member (scope, k->namespaces))
4319 return 0;
4320 k->namespaces = tree_cons (scope, NULL_TREE, k->namespaces);
4322 /* Check out our super-users. */
4323 for (value = DECL_NAMESPACE_ASSOCIATIONS (scope); value;
4324 value = TREE_CHAIN (value))
4325 if (arg_assoc_namespace (k, TREE_PURPOSE (value)))
4326 return true;
4328 value = namespace_binding (k->name, scope);
4329 if (!value)
4330 return false;
4332 for (; value; value = OVL_NEXT (value))
4333 if (add_function (k, OVL_CURRENT (value)))
4334 return true;
4336 return false;
4339 /* Adds everything associated with a template argument to the lookup
4340 structure. Returns true on error. */
4342 static bool
4343 arg_assoc_template_arg (struct arg_lookup *k, tree arg)
4345 /* [basic.lookup.koenig]
4347 If T is a template-id, its associated namespaces and classes are
4348 ... the namespaces and classes associated with the types of the
4349 template arguments provided for template type parameters
4350 (excluding template template parameters); the namespaces in which
4351 any template template arguments are defined; and the classes in
4352 which any member templates used as template template arguments
4353 are defined. [Note: non-type template arguments do not
4354 contribute to the set of associated namespaces. ] */
4356 /* Consider first template template arguments. */
4357 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
4358 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
4359 return false;
4360 else if (TREE_CODE (arg) == TEMPLATE_DECL)
4362 tree ctx = CP_DECL_CONTEXT (arg);
4364 /* It's not a member template. */
4365 if (TREE_CODE (ctx) == NAMESPACE_DECL)
4366 return arg_assoc_namespace (k, ctx);
4367 /* Otherwise, it must be member template. */
4368 else
4369 return arg_assoc_class (k, ctx);
4371 /* It's not a template template argument, but it is a type template
4372 argument. */
4373 else if (TYPE_P (arg))
4374 return arg_assoc_type (k, arg);
4375 /* It's a non-type template argument. */
4376 else
4377 return false;
4380 /* Adds everything associated with class to the lookup structure.
4381 Returns true on error. */
4383 static bool
4384 arg_assoc_class (struct arg_lookup *k, tree type)
4386 tree list, friends, context;
4387 int i;
4389 /* Backend build structures, such as __builtin_va_list, aren't
4390 affected by all this. */
4391 if (!CLASS_TYPE_P (type))
4392 return false;
4394 if (purpose_member (type, k->classes))
4395 return false;
4396 k->classes = tree_cons (type, NULL_TREE, k->classes);
4398 context = decl_namespace (TYPE_MAIN_DECL (type));
4399 if (arg_assoc_namespace (k, context))
4400 return true;
4402 if (TYPE_BINFO (type))
4404 /* Process baseclasses. */
4405 tree binfo, base_binfo;
4407 for (binfo = TYPE_BINFO (type), i = 0;
4408 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
4409 if (arg_assoc_class (k, BINFO_TYPE (base_binfo)))
4410 return true;
4413 /* Process friends. */
4414 for (list = DECL_FRIENDLIST (TYPE_MAIN_DECL (type)); list;
4415 list = TREE_CHAIN (list))
4416 if (k->name == FRIEND_NAME (list))
4417 for (friends = FRIEND_DECLS (list); friends;
4418 friends = TREE_CHAIN (friends))
4420 tree fn = TREE_VALUE (friends);
4422 /* Only interested in global functions with potentially hidden
4423 (i.e. unqualified) declarations. */
4424 if (CP_DECL_CONTEXT (fn) != context)
4425 continue;
4426 /* Template specializations are never found by name lookup.
4427 (Templates themselves can be found, but not template
4428 specializations.) */
4429 if (TREE_CODE (fn) == FUNCTION_DECL && DECL_USE_TEMPLATE (fn))
4430 continue;
4431 if (add_function (k, fn))
4432 return true;
4435 /* Process template arguments. */
4436 if (CLASSTYPE_TEMPLATE_INFO (type)
4437 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
4439 list = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
4440 for (i = 0; i < TREE_VEC_LENGTH (list); ++i)
4441 arg_assoc_template_arg (k, TREE_VEC_ELT (list, i));
4444 return false;
4447 /* Adds everything associated with a given type.
4448 Returns 1 on error. */
4450 static bool
4451 arg_assoc_type (struct arg_lookup *k, tree type)
4453 /* As we do not get the type of non-type dependent expressions
4454 right, we can end up with such things without a type. */
4455 if (!type)
4456 return false;
4458 if (TYPE_PTRMEM_P (type))
4460 /* Pointer to member: associate class type and value type. */
4461 if (arg_assoc_type (k, TYPE_PTRMEM_CLASS_TYPE (type)))
4462 return true;
4463 return arg_assoc_type (k, TYPE_PTRMEM_POINTED_TO_TYPE (type));
4465 else switch (TREE_CODE (type))
4467 case ERROR_MARK:
4468 return false;
4469 case VOID_TYPE:
4470 case INTEGER_TYPE:
4471 case REAL_TYPE:
4472 case COMPLEX_TYPE:
4473 case VECTOR_TYPE:
4474 case CHAR_TYPE:
4475 case BOOLEAN_TYPE:
4476 return false;
4477 case RECORD_TYPE:
4478 if (TYPE_PTRMEMFUNC_P (type))
4479 return arg_assoc_type (k, TYPE_PTRMEMFUNC_FN_TYPE (type));
4480 return arg_assoc_class (k, type);
4481 case POINTER_TYPE:
4482 case REFERENCE_TYPE:
4483 case ARRAY_TYPE:
4484 return arg_assoc_type (k, TREE_TYPE (type));
4485 case UNION_TYPE:
4486 case ENUMERAL_TYPE:
4487 return arg_assoc_namespace (k, decl_namespace (TYPE_MAIN_DECL (type)));
4488 case METHOD_TYPE:
4489 /* The basetype is referenced in the first arg type, so just
4490 fall through. */
4491 case FUNCTION_TYPE:
4492 /* Associate the parameter types. */
4493 if (arg_assoc_args (k, TYPE_ARG_TYPES (type)))
4494 return true;
4495 /* Associate the return type. */
4496 return arg_assoc_type (k, TREE_TYPE (type));
4497 case TEMPLATE_TYPE_PARM:
4498 case BOUND_TEMPLATE_TEMPLATE_PARM:
4499 return false;
4500 case TYPENAME_TYPE:
4501 return false;
4502 case LANG_TYPE:
4503 if (type == unknown_type_node)
4504 return false;
4505 /* else fall through */
4506 default:
4507 abort ();
4509 return false;
4512 /* Adds everything associated with arguments. Returns true on error. */
4514 static bool
4515 arg_assoc_args (struct arg_lookup *k, tree args)
4517 for (; args; args = TREE_CHAIN (args))
4518 if (arg_assoc (k, TREE_VALUE (args)))
4519 return true;
4520 return false;
4523 /* Adds everything associated with a given tree_node. Returns 1 on error. */
4525 static bool
4526 arg_assoc (struct arg_lookup *k, tree n)
4528 if (n == error_mark_node)
4529 return false;
4531 if (TYPE_P (n))
4532 return arg_assoc_type (k, n);
4534 if (! type_unknown_p (n))
4535 return arg_assoc_type (k, TREE_TYPE (n));
4537 if (TREE_CODE (n) == ADDR_EXPR)
4538 n = TREE_OPERAND (n, 0);
4539 if (TREE_CODE (n) == COMPONENT_REF)
4540 n = TREE_OPERAND (n, 1);
4541 if (TREE_CODE (n) == OFFSET_REF)
4542 n = TREE_OPERAND (n, 1);
4543 while (TREE_CODE (n) == TREE_LIST)
4544 n = TREE_VALUE (n);
4545 if (TREE_CODE (n) == BASELINK)
4546 n = BASELINK_FUNCTIONS (n);
4548 if (TREE_CODE (n) == FUNCTION_DECL)
4549 return arg_assoc_type (k, TREE_TYPE (n));
4550 if (TREE_CODE (n) == TEMPLATE_ID_EXPR)
4552 /* [basic.lookup.koenig]
4554 If T is a template-id, its associated namespaces and classes
4555 are the namespace in which the template is defined; for
4556 member templates, the member template's class... */
4557 tree template = TREE_OPERAND (n, 0);
4558 tree args = TREE_OPERAND (n, 1);
4559 tree ctx;
4560 int ix;
4562 if (TREE_CODE (template) == COMPONENT_REF)
4563 template = TREE_OPERAND (template, 1);
4565 /* First, the template. There may actually be more than one if
4566 this is an overloaded function template. But, in that case,
4567 we only need the first; all the functions will be in the same
4568 namespace. */
4569 template = OVL_CURRENT (template);
4571 ctx = CP_DECL_CONTEXT (template);
4573 if (TREE_CODE (ctx) == NAMESPACE_DECL)
4575 if (arg_assoc_namespace (k, ctx) == 1)
4576 return true;
4578 /* It must be a member template. */
4579 else if (arg_assoc_class (k, ctx) == 1)
4580 return true;
4582 /* Now the arguments. */
4583 for (ix = TREE_VEC_LENGTH (args); ix--;)
4584 if (arg_assoc_template_arg (k, TREE_VEC_ELT (args, ix)) == 1)
4585 return true;
4587 else if (TREE_CODE (n) == OVERLOAD)
4589 for (; n; n = OVL_CHAIN (n))
4590 if (arg_assoc_type (k, TREE_TYPE (OVL_FUNCTION (n))))
4591 return true;
4594 return false;
4597 /* Performs Koenig lookup depending on arguments, where fns
4598 are the functions found in normal lookup. */
4600 tree
4601 lookup_arg_dependent (tree name, tree fns, tree args)
4603 struct arg_lookup k;
4604 tree fn = NULL_TREE;
4606 timevar_push (TV_NAME_LOOKUP);
4607 k.name = name;
4608 k.functions = fns;
4609 k.classes = NULL_TREE;
4611 /* We've already looked at some namespaces during normal unqualified
4612 lookup -- but we don't know exactly which ones. If the functions
4613 we found were brought into the current namespace via a using
4614 declaration, we have not really checked the namespace from which
4615 they came. Therefore, we check all namespaces here -- unless the
4616 function we have is from the current namespace. Even then, we
4617 must check all namespaces if the function is a local
4618 declaration; any other declarations present at namespace scope
4619 should be visible during argument-dependent lookup. */
4620 if (fns)
4621 fn = OVL_CURRENT (fns);
4622 if (fn && TREE_CODE (fn) == FUNCTION_DECL
4623 && (CP_DECL_CONTEXT (fn) != current_decl_namespace ()
4624 || DECL_LOCAL_FUNCTION_P (fn)))
4625 k.namespaces = NULL_TREE;
4626 else
4627 /* Setting NAMESPACES is purely an optimization; it prevents
4628 adding functions which are already in FNS. Adding them would
4629 be safe -- "joust" will eliminate the duplicates -- but
4630 wasteful. */
4631 k.namespaces = build_tree_list (current_decl_namespace (), NULL_TREE);
4633 arg_assoc_args (&k, args);
4634 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, k.functions);
4637 /* Add namespace to using_directives. Return NULL_TREE if nothing was
4638 changed (i.e. there was already a directive), or the fresh
4639 TREE_LIST otherwise. */
4641 static tree
4642 push_using_directive (tree used)
4644 tree ud = current_binding_level->using_directives;
4645 tree iter, ancestor;
4647 timevar_push (TV_NAME_LOOKUP);
4648 /* Check if we already have this. */
4649 if (purpose_member (used, ud) != NULL_TREE)
4650 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
4652 ancestor = namespace_ancestor (current_decl_namespace (), used);
4653 ud = current_binding_level->using_directives;
4654 ud = tree_cons (used, ancestor, ud);
4655 current_binding_level->using_directives = ud;
4657 /* Recursively add all namespaces used. */
4658 for (iter = DECL_NAMESPACE_USING (used); iter; iter = TREE_CHAIN (iter))
4659 push_using_directive (TREE_PURPOSE (iter));
4661 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ud);
4664 /* The type TYPE is being declared. If it is a class template, or a
4665 specialization of a class template, do any processing required and
4666 perform error-checking. If IS_FRIEND is nonzero, this TYPE is
4667 being declared a friend. B is the binding level at which this TYPE
4668 should be bound.
4670 Returns the TYPE_DECL for TYPE, which may have been altered by this
4671 processing. */
4673 static tree
4674 maybe_process_template_type_declaration (tree type, int globalize,
4675 cxx_scope *b)
4677 tree decl = TYPE_NAME (type);
4679 if (processing_template_parmlist)
4680 /* You can't declare a new template type in a template parameter
4681 list. But, you can declare a non-template type:
4683 template <class A*> struct S;
4685 is a forward-declaration of `A'. */
4687 else
4689 maybe_check_template_type (type);
4691 my_friendly_assert (IS_AGGR_TYPE (type)
4692 || TREE_CODE (type) == ENUMERAL_TYPE, 0);
4695 if (processing_template_decl)
4697 /* This may change after the call to
4698 push_template_decl_real, but we want the original value. */
4699 tree name = DECL_NAME (decl);
4701 decl = push_template_decl_real (decl, globalize);
4702 /* If the current binding level is the binding level for the
4703 template parameters (see the comment in
4704 begin_template_parm_list) and the enclosing level is a class
4705 scope, and we're not looking at a friend, push the
4706 declaration of the member class into the class scope. In the
4707 friend case, push_template_decl will already have put the
4708 friend into global scope, if appropriate. */
4709 if (TREE_CODE (type) != ENUMERAL_TYPE
4710 && !globalize && b->kind == sk_template_parms
4711 && b->level_chain->kind == sk_class)
4713 finish_member_declaration (CLASSTYPE_TI_TEMPLATE (type));
4714 /* Put this UDT in the table of UDTs for the class, since
4715 that won't happen below because B is not the class
4716 binding level, but is instead the pseudo-global level. */
4717 if (b->level_chain->type_decls == NULL)
4718 b->level_chain->type_decls =
4719 binding_table_new (SCOPE_DEFAULT_HT_SIZE);
4720 binding_table_insert (b->level_chain->type_decls, name, type);
4721 if (!COMPLETE_TYPE_P (current_class_type))
4723 maybe_add_class_template_decl_list (current_class_type,
4724 type, /*friend_p=*/0);
4725 CLASSTYPE_NESTED_UTDS (current_class_type) =
4726 b->level_chain->type_decls;
4732 return decl;
4735 /* Push a tag name NAME for struct/class/union/enum type TYPE.
4736 Normally put it into the inner-most non-sk_cleanup scope,
4737 but if GLOBALIZE is true, put it in the inner-most non-class scope.
4738 The latter is needed for implicit declarations. */
4740 void
4741 pushtag (tree name, tree type, int globalize)
4743 struct cp_binding_level *b;
4745 timevar_push (TV_NAME_LOOKUP);
4746 b = current_binding_level;
4747 while (/* Cleanup scopes are not scopes from the point of view of
4748 the language. */
4749 b->kind == sk_cleanup
4750 /* Neither are the scopes used to hold template parameters
4751 for an explicit specialization. For an ordinary template
4752 declaration, these scopes are not scopes from the point of
4753 view of the language -- but we need a place to stash
4754 things that will go in the containing namespace when the
4755 template is instantiated. */
4756 || (b->kind == sk_template_parms && b->explicit_spec_p)
4757 || (b->kind == sk_class
4758 && (globalize
4759 /* We may be defining a new type in the initializer
4760 of a static member variable. We allow this when
4761 not pedantic, and it is particularly useful for
4762 type punning via an anonymous union. */
4763 || COMPLETE_TYPE_P (b->this_entity))))
4764 b = b->level_chain;
4766 if (b->type_decls == NULL)
4767 b->type_decls = binding_table_new (SCOPE_DEFAULT_HT_SIZE);
4768 binding_table_insert (b->type_decls, name, type);
4770 if (name)
4772 /* Do C++ gratuitous typedefing. */
4773 if (IDENTIFIER_TYPE_VALUE (name) != type)
4775 tree d = NULL_TREE;
4776 int in_class = 0;
4777 tree context = TYPE_CONTEXT (type);
4779 if (! context)
4781 tree cs = current_scope ();
4783 if (! globalize)
4784 context = cs;
4785 else if (cs != NULL_TREE && TYPE_P (cs))
4786 /* When declaring a friend class of a local class, we want
4787 to inject the newly named class into the scope
4788 containing the local class, not the namespace scope. */
4789 context = decl_function_context (get_type_decl (cs));
4791 if (!context)
4792 context = current_namespace;
4794 if (b->kind == sk_class
4795 || (b->kind == sk_template_parms
4796 && b->level_chain->kind == sk_class))
4797 in_class = 1;
4799 if (current_lang_name == lang_name_java)
4800 TYPE_FOR_JAVA (type) = 1;
4802 d = create_implicit_typedef (name, type);
4803 DECL_CONTEXT (d) = FROB_CONTEXT (context);
4804 if (! in_class)
4805 set_identifier_type_value_with_scope (name, d, b);
4807 d = maybe_process_template_type_declaration (type,
4808 globalize, b);
4810 if (b->kind == sk_class)
4812 if (!PROCESSING_REAL_TEMPLATE_DECL_P ())
4813 /* Put this TYPE_DECL on the TYPE_FIELDS list for the
4814 class. But if it's a member template class, we
4815 want the TEMPLATE_DECL, not the TYPE_DECL, so this
4816 is done later. */
4817 finish_member_declaration (d);
4818 else
4819 pushdecl_class_level (d);
4821 else
4822 d = pushdecl_with_scope (d, b);
4824 /* FIXME what if it gets a name from typedef? */
4825 if (ANON_AGGRNAME_P (name))
4826 DECL_IGNORED_P (d) = 1;
4828 TYPE_CONTEXT (type) = DECL_CONTEXT (d);
4830 /* If this is a local class, keep track of it. We need this
4831 information for name-mangling, and so that it is possible to find
4832 all function definitions in a translation unit in a convenient
4833 way. (It's otherwise tricky to find a member function definition
4834 it's only pointed to from within a local class.) */
4835 if (TYPE_CONTEXT (type)
4836 && TREE_CODE (TYPE_CONTEXT (type)) == FUNCTION_DECL
4837 && !processing_template_decl)
4838 VARRAY_PUSH_TREE (local_classes, type);
4840 if (b->kind == sk_class
4841 && !COMPLETE_TYPE_P (current_class_type))
4843 maybe_add_class_template_decl_list (current_class_type,
4844 type, /*friend_p=*/0);
4845 CLASSTYPE_NESTED_UTDS (current_class_type) = b->type_decls;
4849 if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
4850 /* Use the canonical TYPE_DECL for this node. */
4851 TYPE_STUB_DECL (type) = TYPE_NAME (type);
4852 else
4854 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE
4855 will be the tagged type we just added to the current
4856 binding level. This fake NULL-named TYPE_DECL node helps
4857 dwarfout.c to know when it needs to output a
4858 representation of a tagged type, and it also gives us a
4859 convenient place to record the "scope start" address for
4860 the tagged type. */
4862 tree d = build_decl (TYPE_DECL, NULL_TREE, type);
4863 TYPE_STUB_DECL (type) = pushdecl_with_scope (d, b);
4865 timevar_pop (TV_NAME_LOOKUP);
4868 /* Subroutines for reverting temporarily to top-level for instantiation
4869 of templates and such. We actually need to clear out the class- and
4870 local-value slots of all identifiers, so that only the global values
4871 are at all visible. Simply setting current_binding_level to the global
4872 scope isn't enough, because more binding levels may be pushed. */
4873 struct saved_scope *scope_chain;
4875 /* If ID has not already been marked, add an appropriate binding to
4876 *OLD_BINDINGS. */
4878 static void
4879 store_binding (tree id, VEC(cxx_saved_binding) **old_bindings)
4881 cxx_saved_binding *saved;
4883 if (!id || !IDENTIFIER_BINDING (id))
4884 return;
4886 if (IDENTIFIER_MARKED (id))
4887 return;
4889 IDENTIFIER_MARKED (id) = 1;
4891 saved = VEC_safe_push (cxx_saved_binding, *old_bindings, NULL);
4892 saved->identifier = id;
4893 saved->binding = IDENTIFIER_BINDING (id);
4894 saved->real_type_value = REAL_IDENTIFIER_TYPE_VALUE (id);
4895 IDENTIFIER_BINDING (id) = NULL;
4898 static void
4899 store_bindings (tree names, VEC(cxx_saved_binding) **old_bindings)
4901 tree t;
4903 timevar_push (TV_NAME_LOOKUP);
4904 for (t = names; t; t = TREE_CHAIN (t))
4906 tree id;
4908 if (TREE_CODE (t) == TREE_LIST)
4909 id = TREE_PURPOSE (t);
4910 else
4911 id = DECL_NAME (t);
4913 store_binding (id, old_bindings);
4915 timevar_pop (TV_NAME_LOOKUP);
4918 /* Like store_bindings, but NAMES is a vector of cp_class_binding
4919 objects, rather than a TREE_LIST. */
4921 static void
4922 store_class_bindings (VEC(cp_class_binding) *names,
4923 VEC(cxx_saved_binding) **old_bindings)
4925 size_t i;
4926 cp_class_binding *cb;
4928 timevar_push (TV_NAME_LOOKUP);
4929 for (i = 0; VEC_iterate(cp_class_binding, names, i, cb); ++i)
4930 store_binding (cb->identifier, old_bindings);
4931 timevar_pop (TV_NAME_LOOKUP);
4934 void
4935 push_to_top_level (void)
4937 struct saved_scope *s;
4938 struct cp_binding_level *b;
4939 cxx_saved_binding *sb;
4940 size_t i;
4941 int need_pop;
4943 timevar_push (TV_NAME_LOOKUP);
4944 s = ggc_alloc_cleared (sizeof (struct saved_scope));
4946 b = scope_chain ? current_binding_level : 0;
4948 /* If we're in the middle of some function, save our state. */
4949 if (cfun)
4951 need_pop = 1;
4952 push_function_context_to (NULL_TREE);
4954 else
4955 need_pop = 0;
4957 if (scope_chain && previous_class_level)
4958 store_class_bindings (previous_class_level->class_shadowed,
4959 &s->old_bindings);
4961 /* Have to include the global scope, because class-scope decls
4962 aren't listed anywhere useful. */
4963 for (; b; b = b->level_chain)
4965 tree t;
4967 /* Template IDs are inserted into the global level. If they were
4968 inserted into namespace level, finish_file wouldn't find them
4969 when doing pending instantiations. Therefore, don't stop at
4970 namespace level, but continue until :: . */
4971 if (global_scope_p (b))
4972 break;
4974 store_bindings (b->names, &s->old_bindings);
4975 /* We also need to check class_shadowed to save class-level type
4976 bindings, since pushclass doesn't fill in b->names. */
4977 if (b->kind == sk_class)
4978 store_class_bindings (b->class_shadowed, &s->old_bindings);
4980 /* Unwind type-value slots back to top level. */
4981 for (t = b->type_shadowed; t; t = TREE_CHAIN (t))
4982 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (t), TREE_VALUE (t));
4985 for (i = 0; VEC_iterate (cxx_saved_binding, s->old_bindings, i, sb); ++i)
4986 IDENTIFIER_MARKED (sb->identifier) = 0;
4988 s->prev = scope_chain;
4989 s->bindings = b;
4990 s->need_pop_function_context = need_pop;
4991 s->function_decl = current_function_decl;
4993 scope_chain = s;
4994 current_function_decl = NULL_TREE;
4995 VARRAY_TREE_INIT (current_lang_base, 10, "current_lang_base");
4996 current_lang_name = lang_name_cplusplus;
4997 current_namespace = global_namespace;
4998 timevar_pop (TV_NAME_LOOKUP);
5001 void
5002 pop_from_top_level (void)
5004 struct saved_scope *s = scope_chain;
5005 cxx_saved_binding *saved;
5006 size_t i;
5008 timevar_push (TV_NAME_LOOKUP);
5009 /* Clear out class-level bindings cache. */
5010 if (previous_class_level)
5011 invalidate_class_lookup_cache ();
5013 current_lang_base = 0;
5015 scope_chain = s->prev;
5016 for (i = 0; VEC_iterate (cxx_saved_binding, s->old_bindings, i, saved); ++i)
5018 tree id = saved->identifier;
5020 IDENTIFIER_BINDING (id) = saved->binding;
5021 SET_IDENTIFIER_TYPE_VALUE (id, saved->real_type_value);
5024 /* If we were in the middle of compiling a function, restore our
5025 state. */
5026 if (s->need_pop_function_context)
5027 pop_function_context_from (NULL_TREE);
5028 current_function_decl = s->function_decl;
5029 timevar_pop (TV_NAME_LOOKUP);
5032 /* Pop off extraneous binding levels left over due to syntax errors.
5034 We don't pop past namespaces, as they might be valid. */
5036 void
5037 pop_everything (void)
5039 if (ENABLE_SCOPE_CHECKING)
5040 verbatim ("XXX entering pop_everything ()\n");
5041 while (!toplevel_bindings_p ())
5043 if (current_binding_level->kind == sk_class)
5044 pop_nested_class ();
5045 else
5046 poplevel (0, 0, 0);
5048 if (ENABLE_SCOPE_CHECKING)
5049 verbatim ("XXX leaving pop_everything ()\n");
5052 /* Emit debugging information for using declarations and directives.
5053 If input tree is overloaded fn then emit debug info for all
5054 candidates. */
5056 static void
5057 cp_emit_debug_info_for_using (tree t, tree context)
5059 /* Ignore this FUNCTION_DECL if it refers to a builtin declaration
5060 of a builtin function. */
5061 if (TREE_CODE (t) == FUNCTION_DECL
5062 && DECL_EXTERNAL (t)
5063 && DECL_BUILT_IN (t))
5064 return;
5066 /* Do not supply context to imported_module_or_decl, if
5067 it is a global namespace. */
5068 if (context == global_namespace)
5069 context = NULL_TREE;
5071 if (BASELINK_P (t))
5072 t = BASELINK_FUNCTIONS (t);
5074 /* FIXME: Handle TEMPLATE_DECLs. */
5075 for (t = OVL_CURRENT (t); t; t = OVL_NEXT (t))
5076 if (TREE_CODE (t) != TEMPLATE_DECL)
5077 (*debug_hooks->imported_module_or_decl) (t, context);
5080 #include "gt-cp-name-lookup.h"