* doc/invoke.texi (Optimize Options): Document -frename-registers
[official-gcc.git] / gcc / cp / name-lookup.c
blobfb043af52c7f4839ddfc86ee6540ae3289ae728b
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 /* Make DECL the innermost binding for ID. The LEVEL is the binding
372 level at which this declaration is being bound. */
374 static void
375 push_binding (tree id, tree decl, cxx_scope* level)
377 cxx_binding *binding;
379 if (level != class_binding_level)
380 binding = cxx_binding_make (decl, NULL_TREE);
381 else
383 cp_class_binding *cb;
385 if (VEC_reserve (cp_class_binding, level->class_shadowed, -1))
387 /* Fixup the current bindings, as they might have moved. */
388 size_t i;
390 for (i = 0;
391 (cb = VEC_iterate (cp_class_binding, level->class_shadowed, i));
392 i++)
393 IDENTIFIER_BINDING (cb->identifier) = &cb->base;
396 cb = VEC_quick_push (cp_class_binding, level->class_shadowed, NULL);
397 cb->identifier = id;
398 binding = &cb->base;
399 cxx_binding_init (binding, decl, NULL_TREE);
402 /* Now, fill in the binding information. */
403 binding->previous = IDENTIFIER_BINDING (id);
404 binding->scope = level;
405 INHERITED_VALUE_BINDING_P (binding) = 0;
406 LOCAL_BINDING_P (binding) = (level != class_binding_level);
408 /* And put it on the front of the list of bindings for ID. */
409 IDENTIFIER_BINDING (id) = binding;
412 /* Remove the binding for DECL which should be the innermost binding
413 for ID. */
415 void
416 pop_binding (tree id, tree decl)
418 cxx_binding *binding;
420 if (id == NULL_TREE)
421 /* It's easiest to write the loops that call this function without
422 checking whether or not the entities involved have names. We
423 get here for such an entity. */
424 return;
426 /* Get the innermost binding for ID. */
427 binding = IDENTIFIER_BINDING (id);
429 /* The name should be bound. */
430 my_friendly_assert (binding != NULL, 0);
432 /* The DECL will be either the ordinary binding or the type
433 binding for this identifier. Remove that binding. */
434 if (binding->value == decl)
435 binding->value = NULL_TREE;
436 else if (binding->type == decl)
437 binding->type = NULL_TREE;
438 else
439 abort ();
441 if (!binding->value && !binding->type)
443 /* We're completely done with the innermost binding for this
444 identifier. Unhook it from the list of bindings. */
445 IDENTIFIER_BINDING (id) = binding->previous;
447 /* Add it to the free list. */
448 cxx_binding_free (binding);
452 /* BINDING records an existing declaration for a namein the current scope.
453 But, DECL is another declaration for that same identifier in the
454 same scope. This is the `struct stat' hack whereby a non-typedef
455 class name or enum-name can be bound at the same level as some other
456 kind of entity.
457 3.3.7/1
459 A class name (9.1) or enumeration name (7.2) can be hidden by the
460 name of an object, function, or enumerator declared in the same scope.
461 If a class or enumeration name and an object, function, or enumerator
462 are declared in the same scope (in any order) with the same name, the
463 class or enumeration name is hidden wherever the object, function, or
464 enumerator name is visible.
466 It's the responsibility of the caller to check that
467 inserting this name is valid here. Returns nonzero if the new binding
468 was successful. */
470 static bool
471 supplement_binding (cxx_binding *binding, tree decl)
473 tree bval = binding->value;
474 bool ok = true;
476 timevar_push (TV_NAME_LOOKUP);
477 if (TREE_CODE (decl) == TYPE_DECL && DECL_ARTIFICIAL (decl))
478 /* The new name is the type name. */
479 binding->type = decl;
480 else if (/* BVAL is null when push_class_level_binding moves an
481 inherited type-binding out of the way to make room for a
482 new value binding. */
483 !bval
484 /* BVAL is error_mark_node when DECL's name has been used
485 in a non-class scope prior declaration. In that case,
486 we should have already issued a diagnostic; for graceful
487 error recovery purpose, pretend this was the intended
488 declaration for that name. */
489 || bval == error_mark_node
490 /* If BVAL is a built-in that has not yet been declared,
491 pretend it is not there at all. */
492 || (TREE_CODE (bval) == FUNCTION_DECL
493 && DECL_ANTICIPATED (bval)))
494 binding->value = decl;
495 else if (TREE_CODE (bval) == TYPE_DECL && DECL_ARTIFICIAL (bval))
497 /* The old binding was a type name. It was placed in
498 VALUE field because it was thought, at the point it was
499 declared, to be the only entity with such a name. Move the
500 type name into the type slot; it is now hidden by the new
501 binding. */
502 binding->type = bval;
503 binding->value = decl;
504 binding->value_is_inherited = false;
506 else if (TREE_CODE (bval) == TYPE_DECL
507 && TREE_CODE (decl) == TYPE_DECL
508 && DECL_NAME (decl) == DECL_NAME (bval)
509 && (same_type_p (TREE_TYPE (decl), TREE_TYPE (bval))
510 /* If either type involves template parameters, we must
511 wait until instantiation. */
512 || uses_template_parms (TREE_TYPE (decl))
513 || uses_template_parms (TREE_TYPE (bval))))
514 /* We have two typedef-names, both naming the same type to have
515 the same name. This is OK because of:
517 [dcl.typedef]
519 In a given scope, a typedef specifier can be used to redefine
520 the name of any type declared in that scope to refer to the
521 type to which it already refers. */
522 ok = false;
523 /* There can be two block-scope declarations of the same variable,
524 so long as they are `extern' declarations. However, there cannot
525 be two declarations of the same static data member:
527 [class.mem]
529 A member shall not be declared twice in the
530 member-specification. */
531 else if (TREE_CODE (decl) == VAR_DECL && TREE_CODE (bval) == VAR_DECL
532 && DECL_EXTERNAL (decl) && DECL_EXTERNAL (bval)
533 && !DECL_CLASS_SCOPE_P (decl))
535 duplicate_decls (decl, binding->value);
536 ok = false;
538 else if (TREE_CODE (decl) == NAMESPACE_DECL
539 && TREE_CODE (bval) == NAMESPACE_DECL
540 && DECL_NAMESPACE_ALIAS (decl)
541 && DECL_NAMESPACE_ALIAS (bval)
542 && ORIGINAL_NAMESPACE (bval) == ORIGINAL_NAMESPACE (decl))
543 /* [namespace.alias]
545 In a declarative region, a namespace-alias-definition can be
546 used to redefine a namespace-alias declared in that declarative
547 region to refer only to the namespace to which it already
548 refers. */
549 ok = false;
550 else
552 error ("declaration of `%#D'", decl);
553 cp_error_at ("conflicts with previous declaration `%#D'", bval);
554 ok = false;
557 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ok);
560 /* Add DECL to the list of things declared in B. */
562 static void
563 add_decl_to_level (tree decl, cxx_scope *b)
565 if (TREE_CODE (decl) == NAMESPACE_DECL
566 && !DECL_NAMESPACE_ALIAS (decl))
568 TREE_CHAIN (decl) = b->namespaces;
569 b->namespaces = decl;
571 else if (TREE_CODE (decl) == VAR_DECL && DECL_VIRTUAL_P (decl))
573 TREE_CHAIN (decl) = b->vtables;
574 b->vtables = decl;
576 else
578 /* We build up the list in reverse order, and reverse it later if
579 necessary. */
580 TREE_CHAIN (decl) = b->names;
581 b->names = decl;
582 b->names_size++;
584 /* If appropriate, add decl to separate list of statics. We
585 include extern variables because they might turn out to be
586 static later. It's OK for this list to contain a few false
587 positives. */
588 if (b->kind == sk_namespace)
589 if ((TREE_CODE (decl) == VAR_DECL
590 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
591 || (TREE_CODE (decl) == FUNCTION_DECL
592 && (!TREE_PUBLIC (decl) || DECL_DECLARED_INLINE_P (decl))))
593 VARRAY_PUSH_TREE (b->static_decls, decl);
597 /* Record a decl-node X as belonging to the current lexical scope.
598 Check for errors (such as an incompatible declaration for the same
599 name already seen in the same scope).
601 Returns either X or an old decl for the same name.
602 If an old decl is returned, it may have been smashed
603 to agree with what X says. */
605 tree
606 pushdecl (tree x)
608 tree t;
609 tree name;
610 int need_new_binding;
612 timevar_push (TV_NAME_LOOKUP);
614 need_new_binding = 1;
616 if (DECL_TEMPLATE_PARM_P (x))
617 /* Template parameters have no context; they are not X::T even
618 when declared within a class or namespace. */
620 else
622 if (current_function_decl && x != current_function_decl
623 /* A local declaration for a function doesn't constitute
624 nesting. */
625 && TREE_CODE (x) != FUNCTION_DECL
626 /* A local declaration for an `extern' variable is in the
627 scope of the current namespace, not the current
628 function. */
629 && !(TREE_CODE (x) == VAR_DECL && DECL_EXTERNAL (x))
630 && !DECL_CONTEXT (x))
631 DECL_CONTEXT (x) = current_function_decl;
633 /* If this is the declaration for a namespace-scope function,
634 but the declaration itself is in a local scope, mark the
635 declaration. */
636 if (TREE_CODE (x) == FUNCTION_DECL
637 && DECL_NAMESPACE_SCOPE_P (x)
638 && current_function_decl
639 && x != current_function_decl)
640 DECL_LOCAL_FUNCTION_P (x) = 1;
643 name = DECL_NAME (x);
644 if (name)
646 int different_binding_level = 0;
648 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
649 name = TREE_OPERAND (name, 0);
651 /* In case this decl was explicitly namespace-qualified, look it
652 up in its namespace context. */
653 if (DECL_NAMESPACE_SCOPE_P (x) && namespace_bindings_p ())
654 t = namespace_binding (name, DECL_CONTEXT (x));
655 else
656 t = lookup_name_current_level (name);
658 /* [basic.link] If there is a visible declaration of an entity
659 with linkage having the same name and type, ignoring entities
660 declared outside the innermost enclosing namespace scope, the
661 block scope declaration declares that same entity and
662 receives the linkage of the previous declaration. */
663 if (! t && current_function_decl && x != current_function_decl
664 && (TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
665 && DECL_EXTERNAL (x))
667 /* Look in block scope. */
668 t = IDENTIFIER_VALUE (name);
669 /* Or in the innermost namespace. */
670 if (! t)
671 t = namespace_binding (name, DECL_CONTEXT (x));
672 /* Does it have linkage? Note that if this isn't a DECL, it's an
673 OVERLOAD, which is OK. */
674 if (t && DECL_P (t) && ! (TREE_STATIC (t) || DECL_EXTERNAL (t)))
675 t = NULL_TREE;
676 if (t)
677 different_binding_level = 1;
680 /* If we are declaring a function, and the result of name-lookup
681 was an OVERLOAD, look for an overloaded instance that is
682 actually the same as the function we are declaring. (If
683 there is one, we have to merge our declaration with the
684 previous declaration.) */
685 if (t && TREE_CODE (t) == OVERLOAD)
687 tree match;
689 if (TREE_CODE (x) == FUNCTION_DECL)
690 for (match = t; match; match = OVL_NEXT (match))
692 if (decls_match (OVL_CURRENT (match), x))
693 break;
695 else
696 /* Just choose one. */
697 match = t;
699 if (match)
700 t = OVL_CURRENT (match);
701 else
702 t = NULL_TREE;
705 if (t && t != error_mark_node)
707 if (different_binding_level)
709 if (decls_match (x, t))
710 /* The standard only says that the local extern
711 inherits linkage from the previous decl; in
712 particular, default args are not shared. We must
713 also tell cgraph to treat these decls as the same,
714 or we may neglect to emit an "unused" static - we
715 do this by making the DECL_UIDs equal, which should
716 be viewed as a kludge. FIXME. */
718 TREE_PUBLIC (x) = TREE_PUBLIC (t);
719 DECL_UID (x) = DECL_UID (t);
722 else if (TREE_CODE (t) == PARM_DECL)
724 if (DECL_CONTEXT (t) == NULL_TREE)
725 /* This is probably caused by too many errors, but calling
726 abort will say that if errors have occurred. */
727 abort ();
729 /* Check for duplicate params. */
730 if (duplicate_decls (x, t))
731 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
733 else if ((DECL_EXTERN_C_FUNCTION_P (x)
734 || DECL_FUNCTION_TEMPLATE_P (x))
735 && is_overloaded_fn (t))
736 /* Don't do anything just yet. */;
737 else if (t == wchar_decl_node)
739 if (pedantic && ! DECL_IN_SYSTEM_HEADER (x))
740 pedwarn ("redeclaration of `wchar_t' as `%T'",
741 TREE_TYPE (x));
743 /* Throw away the redeclaration. */
744 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
746 else
748 tree olddecl = duplicate_decls (x, t);
750 /* If the redeclaration failed, we can stop at this
751 point. */
752 if (olddecl == error_mark_node)
753 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
755 if (olddecl)
757 if (TREE_CODE (t) == TYPE_DECL)
758 SET_IDENTIFIER_TYPE_VALUE (name, TREE_TYPE (t));
759 else if (TREE_CODE (t) == FUNCTION_DECL)
760 check_default_args (t);
762 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
764 else if (DECL_MAIN_P (x) && TREE_CODE (t) == FUNCTION_DECL)
766 /* A redeclaration of main, but not a duplicate of the
767 previous one.
769 [basic.start.main]
771 This function shall not be overloaded. */
772 cp_error_at ("invalid redeclaration of `%D'", t);
773 error ("as `%D'", x);
774 /* We don't try to push this declaration since that
775 causes a crash. */
776 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
781 check_template_shadow (x);
783 /* If this is a function conjured up by the backend, massage it
784 so it looks friendly. */
785 if (DECL_NON_THUNK_FUNCTION_P (x) && ! DECL_LANG_SPECIFIC (x))
787 retrofit_lang_decl (x);
788 SET_DECL_LANGUAGE (x, lang_c);
791 if (DECL_NON_THUNK_FUNCTION_P (x) && ! DECL_FUNCTION_MEMBER_P (x))
793 t = push_overloaded_decl (x, PUSH_LOCAL);
794 if (t != x)
795 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
796 if (!namespace_bindings_p ())
797 /* We do not need to create a binding for this name;
798 push_overloaded_decl will have already done so if
799 necessary. */
800 need_new_binding = 0;
802 else if (DECL_FUNCTION_TEMPLATE_P (x) && DECL_NAMESPACE_SCOPE_P (x))
804 t = push_overloaded_decl (x, PUSH_GLOBAL);
805 if (t == x)
806 add_decl_to_level (x, NAMESPACE_LEVEL (CP_DECL_CONTEXT (t)));
807 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
810 /* If declaring a type as a typedef, copy the type (unless we're
811 at line 0), and install this TYPE_DECL as the new type's typedef
812 name. See the extensive comment in ../c-decl.c (pushdecl). */
813 if (TREE_CODE (x) == TYPE_DECL)
815 tree type = TREE_TYPE (x);
816 if (DECL_IS_BUILTIN (x))
818 if (TYPE_NAME (type) == 0)
819 TYPE_NAME (type) = x;
821 else if (type != error_mark_node && TYPE_NAME (type) != x
822 /* We don't want to copy the type when all we're
823 doing is making a TYPE_DECL for the purposes of
824 inlining. */
825 && (!TYPE_NAME (type)
826 || TYPE_NAME (type) != DECL_ABSTRACT_ORIGIN (x)))
828 DECL_ORIGINAL_TYPE (x) = type;
829 type = build_type_copy (type);
830 TYPE_STUB_DECL (type) = TYPE_STUB_DECL (DECL_ORIGINAL_TYPE (x));
831 TYPE_NAME (type) = x;
832 TREE_TYPE (x) = type;
835 if (type != error_mark_node
836 && TYPE_NAME (type)
837 && TYPE_IDENTIFIER (type))
838 set_identifier_type_value (DECL_NAME (x), x);
841 /* Multiple external decls of the same identifier ought to match.
843 We get warnings about inline functions where they are defined.
844 We get warnings about other functions from push_overloaded_decl.
846 Avoid duplicate warnings where they are used. */
847 if (TREE_PUBLIC (x) && TREE_CODE (x) != FUNCTION_DECL)
849 tree decl;
851 decl = IDENTIFIER_NAMESPACE_VALUE (name);
852 if (decl && TREE_CODE (decl) == OVERLOAD)
853 decl = OVL_FUNCTION (decl);
855 if (decl && decl != error_mark_node
856 && (DECL_EXTERNAL (decl) || TREE_PUBLIC (decl))
857 /* If different sort of thing, we already gave an error. */
858 && TREE_CODE (decl) == TREE_CODE (x)
859 && !same_type_p (TREE_TYPE (x), TREE_TYPE (decl)))
861 pedwarn ("type mismatch with previous external decl of `%#D'", x);
862 cp_pedwarn_at ("previous external decl of `%#D'", decl);
866 /* This name is new in its binding level.
867 Install the new declaration and return it. */
868 if (namespace_bindings_p ())
870 /* Install a global value. */
872 /* If the first global decl has external linkage,
873 warn if we later see static one. */
874 if (IDENTIFIER_GLOBAL_VALUE (name) == NULL_TREE && TREE_PUBLIC (x))
875 TREE_PUBLIC (name) = 1;
877 /* Bind the name for the entity. */
878 if (!(TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)
879 && t != NULL_TREE)
880 && (TREE_CODE (x) == TYPE_DECL
881 || TREE_CODE (x) == VAR_DECL
882 || TREE_CODE (x) == ALIAS_DECL
883 || TREE_CODE (x) == NAMESPACE_DECL
884 || TREE_CODE (x) == CONST_DECL
885 || TREE_CODE (x) == TEMPLATE_DECL))
886 SET_IDENTIFIER_NAMESPACE_VALUE (name, x);
888 /* If new decl is `static' and an `extern' was seen previously,
889 warn about it. */
890 if (x != NULL_TREE && t != NULL_TREE && decls_match (x, t))
891 warn_extern_redeclared_static (x, t);
893 else
895 /* Here to install a non-global value. */
896 tree oldlocal = IDENTIFIER_VALUE (name);
897 tree oldglobal = IDENTIFIER_NAMESPACE_VALUE (name);
899 if (need_new_binding)
901 push_local_binding (name, x, 0);
902 /* Because push_local_binding will hook X on to the
903 current_binding_level's name list, we don't want to
904 do that again below. */
905 need_new_binding = 0;
908 /* If this is a TYPE_DECL, push it into the type value slot. */
909 if (TREE_CODE (x) == TYPE_DECL)
910 set_identifier_type_value (name, x);
912 /* Clear out any TYPE_DECL shadowed by a namespace so that
913 we won't think this is a type. The C struct hack doesn't
914 go through namespaces. */
915 if (TREE_CODE (x) == NAMESPACE_DECL)
916 set_identifier_type_value (name, NULL_TREE);
918 if (oldlocal)
920 tree d = oldlocal;
922 while (oldlocal
923 && TREE_CODE (oldlocal) == VAR_DECL
924 && DECL_DEAD_FOR_LOCAL (oldlocal))
925 oldlocal = DECL_SHADOWED_FOR_VAR (oldlocal);
927 if (oldlocal == NULL_TREE)
928 oldlocal = IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (d));
931 /* If this is an extern function declaration, see if we
932 have a global definition or declaration for the function. */
933 if (oldlocal == NULL_TREE
934 && DECL_EXTERNAL (x)
935 && oldglobal != NULL_TREE
936 && TREE_CODE (x) == FUNCTION_DECL
937 && TREE_CODE (oldglobal) == FUNCTION_DECL)
939 /* We have one. Their types must agree. */
940 if (decls_match (x, oldglobal))
941 /* OK */;
942 else
944 warning ("extern declaration of `%#D' doesn't match", x);
945 cp_warning_at ("global declaration `%#D'", oldglobal);
948 /* If we have a local external declaration,
949 and no file-scope declaration has yet been seen,
950 then if we later have a file-scope decl it must not be static. */
951 if (oldlocal == NULL_TREE
952 && oldglobal == NULL_TREE
953 && DECL_EXTERNAL (x)
954 && TREE_PUBLIC (x))
955 TREE_PUBLIC (name) = 1;
957 /* Warn if shadowing an argument at the top level of the body. */
958 if (oldlocal != NULL_TREE && !DECL_EXTERNAL (x)
959 /* Inline decls shadow nothing. */
960 && !DECL_FROM_INLINE (x)
961 && TREE_CODE (oldlocal) == PARM_DECL
962 /* Don't check the `this' parameter. */
963 && !DECL_ARTIFICIAL (oldlocal))
965 bool err = false;
967 /* Don't complain if it's from an enclosing function. */
968 if (DECL_CONTEXT (oldlocal) == current_function_decl
969 && TREE_CODE (x) != PARM_DECL)
971 /* Go to where the parms should be and see if we find
972 them there. */
973 struct cp_binding_level *b = current_binding_level->level_chain;
975 /* Skip the ctor/dtor cleanup level. */
976 b = b->level_chain;
978 /* ARM $8.3 */
979 if (b->kind == sk_function_parms)
981 error ("declaration of '%#D' shadows a parameter", x);
982 err = true;
986 if (warn_shadow && !err)
988 warning ("declaration of '%#D' shadows a parameter", x);
989 warning ("%Jshadowed declaration is here", oldlocal);
993 /* Maybe warn if shadowing something else. */
994 else if (warn_shadow && !DECL_EXTERNAL (x)
995 /* No shadow warnings for internally generated vars. */
996 && ! DECL_ARTIFICIAL (x)
997 /* No shadow warnings for vars made for inlining. */
998 && ! DECL_FROM_INLINE (x))
1000 if (IDENTIFIER_CLASS_VALUE (name) != NULL_TREE
1001 && current_class_ptr
1002 && !TREE_STATIC (name))
1004 /* Location of previous decl is not useful in this case. */
1005 warning ("declaration of '%D' shadows a member of 'this'",
1008 else if (oldlocal != NULL_TREE
1009 && TREE_CODE (oldlocal) == VAR_DECL)
1011 warning ("declaration of '%D' shadows a previous local", x);
1012 warning ("%Jshadowed declaration is here", oldlocal);
1014 else if (oldglobal != NULL_TREE
1015 && TREE_CODE (oldglobal) == VAR_DECL)
1016 /* XXX shadow warnings in outer-more namespaces */
1018 warning ("declaration of '%D' shadows a global declaration",
1020 warning ("%Jshadowed declaration is here", oldglobal);
1025 if (TREE_CODE (x) == FUNCTION_DECL)
1026 check_default_args (x);
1028 if (TREE_CODE (x) == VAR_DECL)
1029 maybe_register_incomplete_var (x);
1032 if (need_new_binding)
1033 add_decl_to_level (x,
1034 DECL_NAMESPACE_SCOPE_P (x)
1035 ? NAMESPACE_LEVEL (CP_DECL_CONTEXT (x))
1036 : current_binding_level);
1038 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
1041 /* Enter DECL into the symbol table, if that's appropriate. Returns
1042 DECL, or a modified version thereof. */
1044 tree
1045 maybe_push_decl (tree decl)
1047 tree type = TREE_TYPE (decl);
1049 /* Add this decl to the current binding level, but not if it comes
1050 from another scope, e.g. a static member variable. TEM may equal
1051 DECL or it may be a previous decl of the same name. */
1052 if (decl == error_mark_node
1053 || (TREE_CODE (decl) != PARM_DECL
1054 && DECL_CONTEXT (decl) != NULL_TREE
1055 /* Definitions of namespace members outside their namespace are
1056 possible. */
1057 && TREE_CODE (DECL_CONTEXT (decl)) != NAMESPACE_DECL)
1058 || (TREE_CODE (decl) == TEMPLATE_DECL && !namespace_bindings_p ())
1059 || TREE_CODE (type) == UNKNOWN_TYPE
1060 /* The declaration of a template specialization does not affect
1061 the functions available for overload resolution, so we do not
1062 call pushdecl. */
1063 || (TREE_CODE (decl) == FUNCTION_DECL
1064 && DECL_TEMPLATE_SPECIALIZATION (decl)))
1065 return decl;
1066 else
1067 return pushdecl (decl);
1070 /* Bind DECL to ID in the current_binding_level, assumed to be a local
1071 binding level. If PUSH_USING is set in FLAGS, we know that DECL
1072 doesn't really belong to this binding level, that it got here
1073 through a using-declaration. */
1075 void
1076 push_local_binding (tree id, tree decl, int flags)
1078 struct cp_binding_level *b;
1080 /* Skip over any local classes. This makes sense if we call
1081 push_local_binding with a friend decl of a local class. */
1082 b = innermost_nonclass_level ();
1084 if (lookup_name_current_level (id))
1086 /* Supplement the existing binding. */
1087 if (!supplement_binding (IDENTIFIER_BINDING (id), decl))
1088 /* It didn't work. Something else must be bound at this
1089 level. Do not add DECL to the list of things to pop
1090 later. */
1091 return;
1093 else
1094 /* Create a new binding. */
1095 push_binding (id, decl, b);
1097 if (TREE_CODE (decl) == OVERLOAD || (flags & PUSH_USING))
1098 /* We must put the OVERLOAD into a TREE_LIST since the
1099 TREE_CHAIN of an OVERLOAD is already used. Similarly for
1100 decls that got here through a using-declaration. */
1101 decl = build_tree_list (NULL_TREE, decl);
1103 /* And put DECL on the list of things declared by the current
1104 binding level. */
1105 add_decl_to_level (decl, b);
1108 /* The old ARM scoping rules injected variables declared in the
1109 initialization statement of a for-statement into the surrounding
1110 scope. We support this usage, in order to be backward-compatible.
1111 DECL is a just-declared VAR_DECL; if necessary inject its
1112 declaration into the surrounding scope. */
1114 void
1115 maybe_inject_for_scope_var (tree decl)
1117 timevar_push (TV_NAME_LOOKUP);
1118 if (!DECL_NAME (decl))
1120 timevar_pop (TV_NAME_LOOKUP);
1121 return;
1124 /* Declarations of __FUNCTION__ and its ilk appear magically when
1125 the variable is first used. If that happens to be inside a
1126 for-loop, we don't want to do anything special. */
1127 if (DECL_PRETTY_FUNCTION_P (decl))
1129 timevar_pop (TV_NAME_LOOKUP);
1130 return;
1133 if (current_binding_level->kind == sk_for)
1135 struct cp_binding_level *outer
1136 = current_binding_level->level_chain;
1138 /* Check to see if the same name is already bound at the outer
1139 level, either because it was directly declared, or because a
1140 dead for-decl got preserved. In either case, the code would
1141 not have been valid under the ARM scope rules, so clear
1142 is_for_scope for the current_binding_level.
1144 Otherwise, we need to preserve the temp slot for decl to last
1145 into the outer binding level. */
1147 cxx_binding *outer_binding
1148 = IDENTIFIER_BINDING (DECL_NAME (decl))->previous;
1150 if (outer_binding && outer_binding->scope == outer
1151 && (TREE_CODE (outer_binding->value) == VAR_DECL)
1152 && DECL_DEAD_FOR_LOCAL (outer_binding->value))
1154 outer_binding->value = DECL_SHADOWED_FOR_VAR (outer_binding->value);
1155 current_binding_level->kind = sk_block;
1158 timevar_pop (TV_NAME_LOOKUP);
1161 /* Check to see whether or not DECL is a variable that would have been
1162 in scope under the ARM, but is not in scope under the ANSI/ISO
1163 standard. If so, issue an error message. If name lookup would
1164 work in both cases, but return a different result, this function
1165 returns the result of ANSI/ISO lookup. Otherwise, it returns
1166 DECL. */
1168 tree
1169 check_for_out_of_scope_variable (tree decl)
1171 tree shadowed;
1173 /* We only care about out of scope variables. */
1174 if (!(TREE_CODE (decl) == VAR_DECL && DECL_DEAD_FOR_LOCAL (decl)))
1175 return decl;
1177 shadowed = DECL_SHADOWED_FOR_VAR (decl);
1178 while (shadowed != NULL_TREE && TREE_CODE (shadowed) == VAR_DECL
1179 && DECL_DEAD_FOR_LOCAL (shadowed))
1180 shadowed = DECL_SHADOWED_FOR_VAR (shadowed);
1181 if (!shadowed)
1182 shadowed = IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (decl));
1183 if (shadowed)
1185 if (!DECL_ERROR_REPORTED (decl))
1187 warning ("name lookup of `%D' changed",
1188 DECL_NAME (decl));
1189 cp_warning_at (" matches this `%D' under ISO standard rules",
1190 shadowed);
1191 cp_warning_at (" matches this `%D' under old rules", decl);
1192 DECL_ERROR_REPORTED (decl) = 1;
1194 return shadowed;
1197 /* If we have already complained about this declaration, there's no
1198 need to do it again. */
1199 if (DECL_ERROR_REPORTED (decl))
1200 return decl;
1202 DECL_ERROR_REPORTED (decl) = 1;
1204 if (TREE_TYPE (decl) == error_mark_node)
1205 return decl;
1207 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
1209 error ("name lookup of `%D' changed for new ISO `for' scoping",
1210 DECL_NAME (decl));
1211 cp_error_at (" cannot use obsolete binding at `%D' because it has a destructor", decl);
1212 return error_mark_node;
1214 else
1216 pedwarn ("name lookup of `%D' changed for new ISO `for' scoping",
1217 DECL_NAME (decl));
1218 cp_pedwarn_at (" using obsolete binding at `%D'", decl);
1221 return decl;
1224 /* true means unconditionally make a BLOCK for the next level pushed. */
1226 static bool keep_next_level_flag;
1228 static int binding_depth = 0;
1229 static int is_class_level = 0;
1231 static void
1232 indent (int depth)
1234 int i;
1236 for (i = 0; i < depth * 2; i++)
1237 putc (' ', stderr);
1240 /* Return a string describing the kind of SCOPE we have. */
1241 static const char *
1242 cxx_scope_descriptor (cxx_scope *scope)
1244 /* The order of this table must match the "scope_kind"
1245 enumerators. */
1246 static const char* scope_kind_names[] = {
1247 "block-scope",
1248 "cleanup-scope",
1249 "try-scope",
1250 "catch-scope",
1251 "for-scope",
1252 "function-parameter-scope",
1253 "class-scope",
1254 "namespace-scope",
1255 "template-parameter-scope",
1256 "template-explicit-spec-scope"
1258 const scope_kind kind = scope->explicit_spec_p
1259 ? sk_template_spec : scope->kind;
1261 return scope_kind_names[kind];
1264 /* Output a debugging information about SCOPE when performing
1265 ACTION at LINE. */
1266 static void
1267 cxx_scope_debug (cxx_scope *scope, int line, const char *action)
1269 const char *desc = cxx_scope_descriptor (scope);
1270 if (scope->this_entity)
1271 verbatim ("%s %s(%E) %p %d\n", action, desc,
1272 scope->this_entity, (void *) scope, line);
1273 else
1274 verbatim ("%s %s %p %d\n", action, desc, (void *) scope, line);
1277 /* Return the estimated initial size of the hashtable of a NAMESPACE
1278 scope. */
1280 static inline size_t
1281 namespace_scope_ht_size (tree ns)
1283 tree name = DECL_NAME (ns);
1285 return name == std_identifier
1286 ? NAMESPACE_STD_HT_SIZE
1287 : (name == global_scope_name
1288 ? GLOBAL_SCOPE_HT_SIZE
1289 : NAMESPACE_ORDINARY_HT_SIZE);
1292 /* A chain of binding_level structures awaiting reuse. */
1294 static GTY((deletable)) struct cp_binding_level *free_binding_level;
1296 /* Insert SCOPE as the innermost binding level. */
1298 void
1299 push_binding_level (struct cp_binding_level *scope)
1301 /* Add it to the front of currently active scopes stack. */
1302 scope->level_chain = current_binding_level;
1303 current_binding_level = scope;
1304 keep_next_level_flag = false;
1306 if (ENABLE_SCOPE_CHECKING)
1308 scope->binding_depth = binding_depth;
1309 indent (binding_depth);
1310 cxx_scope_debug (scope, input_line, "push");
1311 is_class_level = 0;
1312 binding_depth++;
1316 /* Create a new KIND scope and make it the top of the active scopes stack.
1317 ENTITY is the scope of the associated C++ entity (namespace, class,
1318 function); it is NULL otherwise. */
1320 cxx_scope *
1321 begin_scope (scope_kind kind, tree entity)
1323 cxx_scope *scope;
1325 /* Reuse or create a struct for this binding level. */
1326 if (!ENABLE_SCOPE_CHECKING && free_binding_level)
1328 scope = free_binding_level;
1329 free_binding_level = scope->level_chain;
1331 else
1332 scope = ggc_alloc (sizeof (cxx_scope));
1333 memset (scope, 0, sizeof (cxx_scope));
1335 scope->this_entity = entity;
1336 scope->more_cleanups_ok = true;
1337 switch (kind)
1339 case sk_cleanup:
1340 scope->keep = true;
1341 break;
1343 case sk_template_spec:
1344 scope->explicit_spec_p = true;
1345 kind = sk_template_parms;
1346 /* Fall through. */
1347 case sk_template_parms:
1348 case sk_block:
1349 case sk_try:
1350 case sk_catch:
1351 case sk_for:
1352 case sk_class:
1353 case sk_function_parms:
1354 scope->keep = keep_next_level_flag;
1355 break;
1357 case sk_namespace:
1358 scope->type_decls = binding_table_new (namespace_scope_ht_size (entity));
1359 NAMESPACE_LEVEL (entity) = scope;
1360 VARRAY_TREE_INIT (scope->static_decls,
1361 DECL_NAME (entity) == std_identifier
1362 || DECL_NAME (entity) == global_scope_name
1363 ? 200 : 10,
1364 "Static declarations");
1365 break;
1367 default:
1368 /* Should not happen. */
1369 my_friendly_assert (false, 20030922);
1370 break;
1372 scope->kind = kind;
1374 push_binding_level (scope);
1376 return scope;
1379 /* We're about to leave current scope. Pop the top of the stack of
1380 currently active scopes. Return the enclosing scope, now active. */
1382 cxx_scope *
1383 leave_scope (void)
1385 cxx_scope *scope = current_binding_level;
1387 if (scope->kind == sk_namespace && class_binding_level)
1388 current_binding_level = class_binding_level;
1390 /* We cannot leave a scope, if there are none left. */
1391 if (NAMESPACE_LEVEL (global_namespace))
1392 my_friendly_assert (!global_scope_p (scope), 20030527);
1394 if (ENABLE_SCOPE_CHECKING)
1396 indent (--binding_depth);
1397 cxx_scope_debug (scope, input_line, "leave");
1398 if (is_class_level != (scope == class_binding_level))
1400 indent (binding_depth);
1401 verbatim ("XXX is_class_level != (current_scope == class_scope)\n");
1403 is_class_level = 0;
1406 /* Move one nesting level up. */
1407 current_binding_level = scope->level_chain;
1409 /* Namespace-scopes are left most probably temporarily, not
1410 completely; they can be reopen later, e.g. in namespace-extension
1411 or any name binding activity that requires us to resume a
1412 namespace. For classes, we cache some binding levels. For other
1413 scopes, we just make the structure available for reuse. */
1414 if (scope->kind != sk_namespace
1415 && scope->kind != sk_class)
1417 scope->level_chain = free_binding_level;
1418 if (scope->kind == sk_class)
1419 scope->type_decls = NULL;
1420 else
1421 binding_table_free (scope->type_decls);
1422 my_friendly_assert (!ENABLE_SCOPE_CHECKING
1423 || scope->binding_depth == binding_depth,
1424 20030529);
1425 free_binding_level = scope;
1428 /* Find the innermost enclosing class scope, and reset
1429 CLASS_BINDING_LEVEL appropriately. */
1430 for (scope = current_binding_level;
1431 scope && scope->kind != sk_class;
1432 scope = scope->level_chain)
1434 class_binding_level = scope && scope->kind == sk_class ? scope : NULL;
1436 return current_binding_level;
1439 static void
1440 resume_scope (struct cp_binding_level* b)
1442 /* Resuming binding levels is meant only for namespaces,
1443 and those cannot nest into classes. */
1444 my_friendly_assert(!class_binding_level, 386);
1445 /* Also, resuming a non-directly nested namespace is a no-no. */
1446 my_friendly_assert(b->level_chain == current_binding_level, 386);
1447 current_binding_level = b;
1448 if (ENABLE_SCOPE_CHECKING)
1450 b->binding_depth = binding_depth;
1451 indent (binding_depth);
1452 cxx_scope_debug (b, input_line, "resume");
1453 is_class_level = 0;
1454 binding_depth++;
1458 /* Return the innermost binding level that is not for a class scope. */
1460 static cxx_scope *
1461 innermost_nonclass_level (void)
1463 cxx_scope *b;
1465 b = current_binding_level;
1466 while (b->kind == sk_class)
1467 b = b->level_chain;
1469 return b;
1472 /* We're defining an object of type TYPE. If it needs a cleanup, but
1473 we're not allowed to add any more objects with cleanups to the current
1474 scope, create a new binding level. */
1476 void
1477 maybe_push_cleanup_level (tree type)
1479 if (type != error_mark_node
1480 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
1481 && current_binding_level->more_cleanups_ok == 0)
1483 begin_scope (sk_cleanup, NULL);
1484 current_binding_level->statement_list = push_stmt_list ();
1488 /* Nonzero if we are currently in the global binding level. */
1491 global_bindings_p (void)
1493 return global_scope_p (current_binding_level);
1496 /* True if we are currently in a toplevel binding level. This
1497 means either the global binding level or a namespace in a toplevel
1498 binding level. Since there are no non-toplevel namespace levels,
1499 this really means any namespace or template parameter level. We
1500 also include a class whose context is toplevel. */
1502 bool
1503 toplevel_bindings_p (void)
1505 struct cp_binding_level *b = innermost_nonclass_level ();
1507 return b->kind == sk_namespace || b->kind == sk_template_parms;
1510 /* True if this is a namespace scope, or if we are defining a class
1511 which is itself at namespace scope, or whose enclosing class is
1512 such a class, etc. */
1514 bool
1515 namespace_bindings_p (void)
1517 struct cp_binding_level *b = innermost_nonclass_level ();
1519 return b->kind == sk_namespace;
1522 /* True if the current level needs to have a BLOCK made. */
1524 bool
1525 kept_level_p (void)
1527 return (current_binding_level->blocks != NULL_TREE
1528 || current_binding_level->keep
1529 || current_binding_level->kind == sk_cleanup
1530 || current_binding_level->names != NULL_TREE
1531 || current_binding_level->type_decls != NULL);
1534 /* Returns the kind of the innermost scope. */
1536 scope_kind
1537 innermost_scope_kind (void)
1539 return current_binding_level->kind;
1542 /* Returns true if this scope was created to store template parameters. */
1544 bool
1545 template_parm_scope_p (void)
1547 return innermost_scope_kind () == sk_template_parms;
1550 /* If KEEP is true, make a BLOCK node for the next binding level,
1551 unconditionally. Otherwise, use the normal logic to decide whether
1552 or not to create a BLOCK. */
1554 void
1555 keep_next_level (bool keep)
1557 keep_next_level_flag = keep;
1560 /* Return the list of declarations of the current level.
1561 Note that this list is in reverse order unless/until
1562 you nreverse it; and when you do nreverse it, you must
1563 store the result back using `storedecls' or you will lose. */
1565 tree
1566 getdecls (void)
1568 return current_binding_level->names;
1571 /* Set the current binding TABLE for type declarations.. This is a
1572 temporary workaround of the fact that the data structure classtypes
1573 does not currently carry its allocated cxx_scope structure. */
1574 void
1575 cxx_remember_type_decls (binding_table table)
1577 current_binding_level->type_decls = table;
1580 /* For debugging. */
1581 static int no_print_functions = 0;
1582 static int no_print_builtins = 0;
1584 /* Called from print_binding_level through binding_table_foreach to
1585 print the content of binding ENTRY. DATA is a pointer to line offset
1586 marker. */
1587 static void
1588 bt_print_entry (binding_entry entry, void *data)
1590 int *p = (int *) data;
1591 int len;
1593 if (entry->name == NULL)
1594 len = 3;
1595 else if (entry->name == TYPE_IDENTIFIER (entry->type))
1596 len = 2;
1597 else
1598 len = 4;
1599 len = 4;
1601 *p += len;
1603 if (*p > 5)
1605 fprintf (stderr, "\n\t");
1606 *p = len;
1608 if (entry->name == NULL)
1610 print_node_brief (stderr, "<unnamed-typedef", entry->type, 0);
1611 fprintf (stderr, ">");
1613 else if (entry->name == TYPE_IDENTIFIER (entry->type))
1614 print_node_brief (stderr, "", entry->type, 0);
1615 else
1617 print_node_brief (stderr, "<typedef", entry->name, 0);
1618 print_node_brief (stderr, "", entry->type, 0);
1619 fprintf (stderr, ">");
1623 void
1624 print_binding_level (struct cp_binding_level* lvl)
1626 tree t;
1627 int i = 0, len;
1628 fprintf (stderr, " blocks=" HOST_PTR_PRINTF, (void *) lvl->blocks);
1629 if (lvl->more_cleanups_ok)
1630 fprintf (stderr, " more-cleanups-ok");
1631 if (lvl->have_cleanups)
1632 fprintf (stderr, " have-cleanups");
1633 fprintf (stderr, "\n");
1634 if (lvl->names)
1636 fprintf (stderr, " names:\t");
1637 /* We can probably fit 3 names to a line? */
1638 for (t = lvl->names; t; t = TREE_CHAIN (t))
1640 if (no_print_functions && (TREE_CODE (t) == FUNCTION_DECL))
1641 continue;
1642 if (no_print_builtins
1643 && (TREE_CODE (t) == TYPE_DECL)
1644 && DECL_IS_BUILTIN (t))
1645 continue;
1647 /* Function decls tend to have longer names. */
1648 if (TREE_CODE (t) == FUNCTION_DECL)
1649 len = 3;
1650 else
1651 len = 2;
1652 i += len;
1653 if (i > 6)
1655 fprintf (stderr, "\n\t");
1656 i = len;
1658 print_node_brief (stderr, "", t, 0);
1659 if (t == error_mark_node)
1660 break;
1662 if (i)
1663 fprintf (stderr, "\n");
1665 if (lvl->type_decls)
1667 fprintf (stderr, " tags:\t");
1668 i = 0;
1669 binding_table_foreach (lvl->type_decls, bt_print_entry, &i);
1670 if (i)
1671 fprintf (stderr, "\n");
1673 if (VEC_length (cp_class_binding, lvl->class_shadowed))
1675 size_t i;
1676 cp_class_binding *b;
1677 fprintf (stderr, " class-shadowed:");
1678 for (i = 0;
1679 (b = VEC_iterate(cp_class_binding,
1680 lvl->class_shadowed,
1681 i));
1682 ++i)
1683 fprintf (stderr, " %s ", IDENTIFIER_POINTER (b->identifier));
1684 fprintf (stderr, "\n");
1686 if (lvl->type_shadowed)
1688 fprintf (stderr, " type-shadowed:");
1689 for (t = lvl->type_shadowed; t; t = TREE_CHAIN (t))
1691 fprintf (stderr, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t)));
1693 fprintf (stderr, "\n");
1697 void
1698 print_other_binding_stack (struct cp_binding_level *stack)
1700 struct cp_binding_level *level;
1701 for (level = stack; !global_scope_p (level); level = level->level_chain)
1703 fprintf (stderr, "binding level " HOST_PTR_PRINTF "\n", (void *) level);
1704 print_binding_level (level);
1708 void
1709 print_binding_stack (void)
1711 struct cp_binding_level *b;
1712 fprintf (stderr, "current_binding_level=" HOST_PTR_PRINTF
1713 "\nclass_binding_level=" HOST_PTR_PRINTF
1714 "\nNAMESPACE_LEVEL (global_namespace)=" HOST_PTR_PRINTF "\n",
1715 (void *) current_binding_level, (void *) class_binding_level,
1716 (void *) NAMESPACE_LEVEL (global_namespace));
1717 if (class_binding_level)
1719 for (b = class_binding_level; b; b = b->level_chain)
1720 if (b == current_binding_level)
1721 break;
1722 if (b)
1723 b = class_binding_level;
1724 else
1725 b = current_binding_level;
1727 else
1728 b = current_binding_level;
1729 print_other_binding_stack (b);
1730 fprintf (stderr, "global:\n");
1731 print_binding_level (NAMESPACE_LEVEL (global_namespace));
1734 /* Return the type associated with id. */
1736 tree
1737 identifier_type_value (tree id)
1739 timevar_push (TV_NAME_LOOKUP);
1740 /* There is no type with that name, anywhere. */
1741 if (REAL_IDENTIFIER_TYPE_VALUE (id) == NULL_TREE)
1742 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
1743 /* This is not the type marker, but the real thing. */
1744 if (REAL_IDENTIFIER_TYPE_VALUE (id) != global_type_node)
1745 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, REAL_IDENTIFIER_TYPE_VALUE (id));
1746 /* Have to search for it. It must be on the global level, now.
1747 Ask lookup_name not to return non-types. */
1748 id = lookup_name_real (id, 2, 1, /*block_p=*/true, 0, LOOKUP_COMPLAIN);
1749 if (id)
1750 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, TREE_TYPE (id));
1751 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
1754 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
1755 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
1757 tree
1758 identifier_global_value (tree t)
1760 return IDENTIFIER_GLOBAL_VALUE (t);
1763 /* Push a definition of struct, union or enum tag named ID. into
1764 binding_level B. DECL is a TYPE_DECL for the type. We assume that
1765 the tag ID is not already defined. */
1767 static void
1768 set_identifier_type_value_with_scope (tree id, tree decl, cxx_scope *b)
1770 tree type;
1772 if (b->kind != sk_namespace)
1774 /* Shadow the marker, not the real thing, so that the marker
1775 gets restored later. */
1776 tree old_type_value = REAL_IDENTIFIER_TYPE_VALUE (id);
1777 b->type_shadowed
1778 = tree_cons (id, old_type_value, b->type_shadowed);
1779 type = decl ? TREE_TYPE (decl) : NULL_TREE;
1781 else
1783 cxx_binding *binding =
1784 binding_for_name (NAMESPACE_LEVEL (current_namespace), id);
1785 if (decl)
1787 if (binding->value)
1788 supplement_binding (binding, decl);
1789 else
1790 binding->value = decl;
1792 else
1793 abort ();
1794 /* Store marker instead of real type. */
1795 type = global_type_node;
1797 SET_IDENTIFIER_TYPE_VALUE (id, type);
1800 /* As set_identifier_type_value_with_scope, but using
1801 current_binding_level. */
1803 void
1804 set_identifier_type_value (tree id, tree decl)
1806 set_identifier_type_value_with_scope (id, decl, current_binding_level);
1809 /* Return the name for the constructor (or destructor) for the
1810 specified class TYPE. When given a template, this routine doesn't
1811 lose the specialization. */
1813 tree
1814 constructor_name_full (tree type)
1816 type = TYPE_MAIN_VARIANT (type);
1817 if (CLASS_TYPE_P (type) && TYPE_WAS_ANONYMOUS (type)
1818 && TYPE_HAS_CONSTRUCTOR (type))
1819 return DECL_NAME (OVL_CURRENT (CLASSTYPE_CONSTRUCTORS (type)));
1820 else
1821 return TYPE_IDENTIFIER (type);
1824 /* Return the name for the constructor (or destructor) for the
1825 specified class. When given a template, return the plain
1826 unspecialized name. */
1828 tree
1829 constructor_name (tree type)
1831 tree name;
1832 name = constructor_name_full (type);
1833 if (IDENTIFIER_TEMPLATE (name))
1834 name = IDENTIFIER_TEMPLATE (name);
1835 return name;
1838 /* Returns TRUE if NAME is the name for the constructor for TYPE. */
1840 bool
1841 constructor_name_p (tree name, tree type)
1843 tree ctor_name;
1845 if (!name)
1846 return false;
1848 if (TREE_CODE (name) != IDENTIFIER_NODE)
1849 return false;
1851 ctor_name = constructor_name_full (type);
1852 if (name == ctor_name)
1853 return true;
1854 if (IDENTIFIER_TEMPLATE (ctor_name)
1855 && name == IDENTIFIER_TEMPLATE (ctor_name))
1856 return true;
1857 return false;
1860 /* Counter used to create anonymous type names. */
1862 static GTY(()) int anon_cnt;
1864 /* Return an IDENTIFIER which can be used as a name for
1865 anonymous structs and unions. */
1867 tree
1868 make_anon_name (void)
1870 char buf[32];
1872 sprintf (buf, ANON_AGGRNAME_FORMAT, anon_cnt++);
1873 return get_identifier (buf);
1876 /* Clear the TREE_PURPOSE slot of UTDs which have anonymous typenames.
1877 This keeps dbxout from getting confused. */
1879 void
1880 clear_anon_tags (void)
1882 struct cp_binding_level *b;
1883 static int last_cnt = 0;
1885 /* Fast out if no new anon names were declared. */
1886 if (last_cnt == anon_cnt)
1887 return;
1889 b = current_binding_level;
1890 while (b->kind == sk_cleanup)
1891 b = b->level_chain;
1892 if (b->type_decls != NULL)
1893 binding_table_remove_anonymous_types (b->type_decls);
1894 last_cnt = anon_cnt;
1897 /* Return (from the stack of) the BINDING, if any, established at SCOPE. */
1899 static inline cxx_binding *
1900 find_binding (cxx_scope *scope, cxx_binding *binding)
1902 timevar_push (TV_NAME_LOOKUP);
1904 for (; binding != NULL; binding = binding->previous)
1905 if (binding->scope == scope)
1906 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, binding);
1908 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, (cxx_binding *)0);
1911 /* Return the binding for NAME in SCOPE, if any. Otherwise, return NULL. */
1913 static inline cxx_binding *
1914 cxx_scope_find_binding_for_name (cxx_scope *scope, tree name)
1916 cxx_binding *b = IDENTIFIER_NAMESPACE_BINDINGS (name);
1917 if (b)
1919 /* Fold-in case where NAME is used only once. */
1920 if (scope == b->scope && b->previous == NULL)
1921 return b;
1922 return find_binding (scope, b);
1924 return NULL;
1927 /* Always returns a binding for name in scope. If no binding is
1928 found, make a new one. */
1930 static cxx_binding *
1931 binding_for_name (cxx_scope *scope, tree name)
1933 cxx_binding *result;
1935 result = cxx_scope_find_binding_for_name (scope, name);
1936 if (result)
1937 return result;
1938 /* Not found, make a new one. */
1939 result = cxx_binding_make (NULL, NULL);
1940 result->previous = IDENTIFIER_NAMESPACE_BINDINGS (name);
1941 result->scope = scope;
1942 result->is_local = false;
1943 result->value_is_inherited = false;
1944 IDENTIFIER_NAMESPACE_BINDINGS (name) = result;
1945 return result;
1948 /* Insert another USING_DECL into the current binding level, returning
1949 this declaration. If this is a redeclaration, do nothing, and
1950 return NULL_TREE if this not in namespace scope (in namespace
1951 scope, a using decl might extend any previous bindings). */
1953 tree
1954 push_using_decl (tree scope, tree name)
1956 tree decl;
1958 timevar_push (TV_NAME_LOOKUP);
1959 my_friendly_assert (TREE_CODE (scope) == NAMESPACE_DECL, 383);
1960 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 384);
1961 for (decl = current_binding_level->usings; decl; decl = TREE_CHAIN (decl))
1962 if (DECL_INITIAL (decl) == scope && DECL_NAME (decl) == name)
1963 break;
1964 if (decl)
1965 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP,
1966 namespace_bindings_p () ? decl : NULL_TREE);
1967 decl = build_lang_decl (USING_DECL, name, void_type_node);
1968 DECL_INITIAL (decl) = scope;
1969 TREE_CHAIN (decl) = current_binding_level->usings;
1970 current_binding_level->usings = decl;
1971 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
1974 /* Same as pushdecl, but define X in binding-level LEVEL. We rely on the
1975 caller to set DECL_CONTEXT properly. */
1977 tree
1978 pushdecl_with_scope (tree x, cxx_scope *level)
1980 struct cp_binding_level *b;
1981 tree function_decl = current_function_decl;
1983 timevar_push (TV_NAME_LOOKUP);
1984 current_function_decl = NULL_TREE;
1985 if (level->kind == sk_class)
1987 b = class_binding_level;
1988 class_binding_level = level;
1989 pushdecl_class_level (x);
1990 class_binding_level = b;
1992 else
1994 b = current_binding_level;
1995 current_binding_level = level;
1996 x = pushdecl (x);
1997 current_binding_level = b;
1999 current_function_decl = function_decl;
2000 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
2003 /* DECL is a FUNCTION_DECL for a non-member function, which may have
2004 other definitions already in place. We get around this by making
2005 the value of the identifier point to a list of all the things that
2006 want to be referenced by that name. It is then up to the users of
2007 that name to decide what to do with that list.
2009 DECL may also be a TEMPLATE_DECL, with a FUNCTION_DECL in its
2010 DECL_TEMPLATE_RESULT. It is dealt with the same way.
2012 FLAGS is a bitwise-or of the following values:
2013 PUSH_LOCAL: Bind DECL in the current scope, rather than at
2014 namespace scope.
2015 PUSH_USING: DECL is being pushed as the result of a using
2016 declaration.
2018 The value returned may be a previous declaration if we guessed wrong
2019 about what language DECL should belong to (C or C++). Otherwise,
2020 it's always DECL (and never something that's not a _DECL). */
2022 static tree
2023 push_overloaded_decl (tree decl, int flags)
2025 tree name = DECL_NAME (decl);
2026 tree old;
2027 tree new_binding;
2028 int doing_global = (namespace_bindings_p () || !(flags & PUSH_LOCAL));
2030 timevar_push (TV_NAME_LOOKUP);
2031 if (doing_global)
2032 old = namespace_binding (name, DECL_CONTEXT (decl));
2033 else
2034 old = lookup_name_current_level (name);
2036 if (old)
2038 if (TREE_CODE (old) == TYPE_DECL && DECL_ARTIFICIAL (old))
2040 tree t = TREE_TYPE (old);
2041 if (IS_AGGR_TYPE (t) && warn_shadow
2042 && (! DECL_IN_SYSTEM_HEADER (decl)
2043 || ! DECL_IN_SYSTEM_HEADER (old)))
2044 warning ("`%#D' hides constructor for `%#T'", decl, t);
2045 old = NULL_TREE;
2047 else if (is_overloaded_fn (old))
2049 tree tmp;
2051 for (tmp = old; tmp; tmp = OVL_NEXT (tmp))
2053 tree fn = OVL_CURRENT (tmp);
2055 if (TREE_CODE (tmp) == OVERLOAD && OVL_USED (tmp)
2056 && !(flags & PUSH_USING)
2057 && compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2058 TYPE_ARG_TYPES (TREE_TYPE (decl))))
2059 error ("`%#D' conflicts with previous using declaration `%#D'",
2060 decl, fn);
2062 if (duplicate_decls (decl, fn) == fn)
2063 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, fn);
2066 else if (old == error_mark_node)
2067 /* Ignore the undefined symbol marker. */
2068 old = NULL_TREE;
2069 else
2071 cp_error_at ("previous non-function declaration `%#D'", old);
2072 error ("conflicts with function declaration `%#D'", decl);
2073 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2077 if (old || TREE_CODE (decl) == TEMPLATE_DECL
2078 /* If it's a using declaration, we always need to build an OVERLOAD,
2079 because it's the only way to remember that the declaration comes
2080 from 'using', and have the lookup behave correctly. */
2081 || (flags & PUSH_USING))
2083 if (old && TREE_CODE (old) != OVERLOAD)
2084 new_binding = ovl_cons (decl, ovl_cons (old, NULL_TREE));
2085 else
2086 new_binding = ovl_cons (decl, old);
2087 if (flags & PUSH_USING)
2088 OVL_USED (new_binding) = 1;
2090 else
2091 /* NAME is not ambiguous. */
2092 new_binding = decl;
2094 if (doing_global)
2095 set_namespace_binding (name, current_namespace, new_binding);
2096 else
2098 /* We only create an OVERLOAD if there was a previous binding at
2099 this level, or if decl is a template. In the former case, we
2100 need to remove the old binding and replace it with the new
2101 binding. We must also run through the NAMES on the binding
2102 level where the name was bound to update the chain. */
2104 if (TREE_CODE (new_binding) == OVERLOAD && old)
2106 tree *d;
2108 for (d = &IDENTIFIER_BINDING (name)->scope->names;
2110 d = &TREE_CHAIN (*d))
2111 if (*d == old
2112 || (TREE_CODE (*d) == TREE_LIST
2113 && TREE_VALUE (*d) == old))
2115 if (TREE_CODE (*d) == TREE_LIST)
2116 /* Just replace the old binding with the new. */
2117 TREE_VALUE (*d) = new_binding;
2118 else
2119 /* Build a TREE_LIST to wrap the OVERLOAD. */
2120 *d = tree_cons (NULL_TREE, new_binding,
2121 TREE_CHAIN (*d));
2123 /* And update the cxx_binding node. */
2124 IDENTIFIER_BINDING (name)->value = new_binding;
2125 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2128 /* We should always find a previous binding in this case. */
2129 abort ();
2132 /* Install the new binding. */
2133 push_local_binding (name, new_binding, flags);
2136 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2139 /* Check a non-member using-declaration. Return the name and scope
2140 being used, and the USING_DECL, or NULL_TREE on failure. */
2142 static tree
2143 validate_nonmember_using_decl (tree decl, tree scope, tree name)
2145 if (TREE_CODE (decl) == TEMPLATE_ID_EXPR)
2147 /* 7.3.3/5
2148 A using-declaration shall not name a template-id. */
2149 error ("a using-declaration cannot specify a template-id. Try `using %D'", name);
2150 return NULL_TREE;
2153 if (TREE_CODE (decl) == NAMESPACE_DECL)
2155 error ("namespace `%D' not allowed in using-declaration", decl);
2156 return NULL_TREE;
2159 if (TREE_CODE (decl) == SCOPE_REF)
2161 /* It's a nested name with template parameter dependent scope.
2162 This can only be using-declaration for class member. */
2163 error ("`%T' is not a namespace", TREE_OPERAND (decl, 0));
2164 return NULL_TREE;
2167 if (is_overloaded_fn (decl))
2168 decl = get_first_fn (decl);
2170 my_friendly_assert (DECL_P (decl), 20020908);
2172 /* [namespace.udecl]
2173 A using-declaration for a class member shall be a
2174 member-declaration. */
2175 if (TYPE_P (scope))
2177 error ("`%T' is not a namespace", scope);
2178 return NULL_TREE;
2181 /* Make a USING_DECL. */
2182 return push_using_decl (scope, name);
2185 /* Process local and global using-declarations. */
2187 static void
2188 do_nonmember_using_decl (tree scope, tree name, tree oldval, tree oldtype,
2189 tree *newval, tree *newtype)
2191 struct scope_binding decls = EMPTY_SCOPE_BINDING;
2193 *newval = *newtype = NULL_TREE;
2194 if (!qualified_lookup_using_namespace (name, scope, &decls, 0))
2195 /* Lookup error */
2196 return;
2198 if (!decls.value && !decls.type)
2200 error ("`%D' not declared", name);
2201 return;
2204 /* Check for using functions. */
2205 if (decls.value && is_overloaded_fn (decls.value))
2207 tree tmp, tmp1;
2209 if (oldval && !is_overloaded_fn (oldval))
2211 if (!DECL_IMPLICIT_TYPEDEF_P (oldval))
2212 error ("`%D' is already declared in this scope", name);
2213 oldval = NULL_TREE;
2216 *newval = oldval;
2217 for (tmp = decls.value; tmp; tmp = OVL_NEXT (tmp))
2219 tree new_fn = OVL_CURRENT (tmp);
2221 /* [namespace.udecl]
2223 If a function declaration in namespace scope or block
2224 scope has the same name and the same parameter types as a
2225 function introduced by a using declaration the program is
2226 ill-formed. */
2227 for (tmp1 = oldval; tmp1; tmp1 = OVL_NEXT (tmp1))
2229 tree old_fn = OVL_CURRENT (tmp1);
2231 if (new_fn == old_fn)
2232 /* The function already exists in the current namespace. */
2233 break;
2234 else if (OVL_USED (tmp1))
2235 continue; /* this is a using decl */
2236 else if (compparms (TYPE_ARG_TYPES (TREE_TYPE (new_fn)),
2237 TYPE_ARG_TYPES (TREE_TYPE (old_fn))))
2239 /* There was already a non-using declaration in
2240 this scope with the same parameter types. If both
2241 are the same extern "C" functions, that's ok. */
2242 if (decls_match (new_fn, old_fn))
2244 /* If the OLD_FN was a builtin, there is now a
2245 real declaration. */
2246 if (DECL_ANTICIPATED (old_fn))
2247 DECL_ANTICIPATED (old_fn) = 0;
2248 break;
2250 else if (!DECL_ANTICIPATED (old_fn))
2252 /* If the OLD_FN was really declared, the
2253 declarations don't match. */
2254 error ("`%D' is already declared in this scope", name);
2255 break;
2258 /* If the OLD_FN was not really there, just ignore
2259 it and keep going. */
2263 /* If we broke out of the loop, there's no reason to add
2264 this function to the using declarations for this
2265 scope. */
2266 if (tmp1)
2267 continue;
2269 /* If we are adding to an existing OVERLOAD, then we no
2270 longer know the type of the set of functions. */
2271 if (*newval && TREE_CODE (*newval) == OVERLOAD)
2272 TREE_TYPE (*newval) = unknown_type_node;
2273 /* Add this new function to the set. */
2274 *newval = build_overload (OVL_CURRENT (tmp), *newval);
2275 /* If there is only one function, then we use its type. (A
2276 using-declaration naming a single function can be used in
2277 contexts where overload resolution cannot be
2278 performed.) */
2279 if (TREE_CODE (*newval) != OVERLOAD)
2281 *newval = ovl_cons (*newval, NULL_TREE);
2282 TREE_TYPE (*newval) = TREE_TYPE (OVL_CURRENT (tmp));
2284 OVL_USED (*newval) = 1;
2287 else
2289 *newval = decls.value;
2290 if (oldval && !decls_match (*newval, oldval))
2291 error ("`%D' is already declared in this scope", name);
2294 *newtype = decls.type;
2295 if (oldtype && *newtype && !same_type_p (oldtype, *newtype))
2297 error ("using declaration `%D' introduced ambiguous type `%T'",
2298 name, oldtype);
2299 return;
2303 /* Process a using-declaration at function scope. */
2305 void
2306 do_local_using_decl (tree decl, tree scope, tree name)
2308 tree oldval, oldtype, newval, newtype;
2309 tree orig_decl = decl;
2311 decl = validate_nonmember_using_decl (decl, scope, name);
2312 if (decl == NULL_TREE)
2313 return;
2315 if (building_stmt_tree ()
2316 && at_function_scope_p ())
2317 add_decl_expr (decl);
2319 oldval = lookup_name_current_level (name);
2320 oldtype = lookup_type_current_level (name);
2322 do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype);
2324 if (newval)
2326 if (is_overloaded_fn (newval))
2328 tree fn, term;
2330 /* We only need to push declarations for those functions
2331 that were not already bound in the current level.
2332 The old value might be NULL_TREE, it might be a single
2333 function, or an OVERLOAD. */
2334 if (oldval && TREE_CODE (oldval) == OVERLOAD)
2335 term = OVL_FUNCTION (oldval);
2336 else
2337 term = oldval;
2338 for (fn = newval; fn && OVL_CURRENT (fn) != term;
2339 fn = OVL_NEXT (fn))
2340 push_overloaded_decl (OVL_CURRENT (fn),
2341 PUSH_LOCAL | PUSH_USING);
2343 else
2344 push_local_binding (name, newval, PUSH_USING);
2346 if (newtype)
2348 push_local_binding (name, newtype, PUSH_USING);
2349 set_identifier_type_value (name, newtype);
2352 /* Emit debug info. */
2353 if (!processing_template_decl)
2354 cp_emit_debug_info_for_using (orig_decl, current_scope());
2357 /* Return the type that should be used when TYPE's name is preceded
2358 by a tag such as 'struct' or 'union', or null if the name cannot
2359 be used in this way.
2361 For example, when processing the third line of:
2363 struct A;
2364 typedef struct A A;
2365 struct A;
2367 lookup of A will find the typedef. Given A's typedef, this function
2368 will return the type associated with "struct A". For the tag to be
2369 anything other than TYPE, TYPE must be a typedef whose original type
2370 has the same name and context as TYPE itself.
2372 It is not valid for a typedef of an anonymous type to be used with
2373 an explicit tag:
2375 typedef struct { ... } B;
2376 struct B;
2378 Return null for this case. */
2380 static tree
2381 follow_tag_typedef (tree type)
2383 tree original;
2385 original = original_type (type);
2386 if (! TYPE_NAME (original))
2387 return NULL_TREE;
2388 if (TYPE_IDENTIFIER (original) == TYPE_IDENTIFIER (type)
2389 && (CP_DECL_CONTEXT (TYPE_NAME (original))
2390 == CP_DECL_CONTEXT (TYPE_NAME (type)))
2391 && !(CLASS_TYPE_P (original) && TYPE_WAS_ANONYMOUS (original)))
2392 return original;
2393 else
2394 return NULL_TREE;
2397 /* Given NAME, an IDENTIFIER_NODE,
2398 return the structure (or union or enum) definition for that name.
2399 Searches binding levels from its SCOPE up to the global level.
2400 If THISLEVEL_ONLY is nonzero, searches only the specified context
2401 (but skips any sk_cleanup contexts to find one that is
2402 meaningful for tags).
2403 FORM says which kind of type the caller wants;
2404 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2405 If the wrong kind of type is found, and it's not a template, an error is
2406 reported. */
2408 tree
2409 lookup_tag (enum tree_code form, tree name,
2410 cxx_scope *binding_level, int thislevel_only)
2412 struct cp_binding_level *level;
2413 /* Nonzero if, we should look past a template parameter level, even
2414 if THISLEVEL_ONLY. */
2415 int allow_template_parms_p = 1;
2416 bool type_is_anonymous = ANON_AGGRNAME_P (name);
2418 timevar_push (TV_NAME_LOOKUP);
2419 for (level = binding_level; level; level = level->level_chain)
2421 tree tail;
2422 if (type_is_anonymous && level->type_decls != NULL)
2424 tree type = binding_table_find_anon_type (level->type_decls, name);
2425 /* There is no need for error checking here, because
2426 anon names are unique throughout the compilation. */
2427 if (type != NULL)
2428 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, type);
2430 else if (level->kind == sk_namespace)
2431 /* Do namespace lookup. */
2432 for (tail = current_namespace; 1; tail = CP_DECL_CONTEXT (tail))
2434 cxx_binding *binding =
2435 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (tail), name);
2437 if (binding && (binding->type
2438 || (binding->value
2439 && DECL_DECLARES_TYPE_P (binding->value))))
2441 tree old;
2443 /* If we just skipped past a template parameter level,
2444 even though THISLEVEL_ONLY, and we find a template
2445 class declaration, then we use the _TYPE node for the
2446 template. See the example below. */
2447 if (thislevel_only && !allow_template_parms_p
2448 && binding->value
2449 && DECL_CLASS_TEMPLATE_P (binding->value))
2450 old = binding->value;
2451 else
2452 old = binding->type ? binding->type : binding->value;
2454 /* We've found something at this binding level. If it is
2455 a typedef, extract the tag it refers to. Lookup fails
2456 if the typedef doesn't refer to a taggable type. */
2457 old = TREE_TYPE (old);
2458 old = follow_tag_typedef (old);
2459 if (!old)
2460 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2461 if (TREE_CODE (old) != form
2462 && (form == ENUMERAL_TYPE
2463 || TREE_CODE (old) == ENUMERAL_TYPE))
2465 error ("`%#D' redeclared as %C", old, form);
2466 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2468 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, old);
2470 if (thislevel_only || tail == global_namespace)
2471 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2473 else if (level->type_decls != NULL)
2475 binding_entry entry = binding_table_find (level->type_decls, name);
2476 if (entry != NULL)
2478 enum tree_code code = TREE_CODE (entry->type);
2480 if (code != form
2481 && (form == ENUMERAL_TYPE || code == ENUMERAL_TYPE))
2483 /* Definition isn't the kind we were looking for. */
2484 error ("`%#D' redeclared as %C", entry->type, form);
2485 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2487 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, entry->type);
2490 if (thislevel_only && level->kind != sk_cleanup)
2492 if (level->kind == sk_template_parms && allow_template_parms_p)
2494 /* We must deal with cases like this:
2496 template <class T> struct S;
2497 template <class T> struct S {};
2499 When looking up `S', for the second declaration, we
2500 would like to find the first declaration. But, we
2501 are in the pseudo-global level created for the
2502 template parameters, rather than the (surrounding)
2503 namespace level. Thus, we keep going one more level,
2504 even though THISLEVEL_ONLY is nonzero. */
2505 allow_template_parms_p = 0;
2506 continue;
2508 else
2509 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2512 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2515 /* Given a type, find the tag that was defined for it and return the tag name.
2516 Otherwise return 0. However, the value can never be 0
2517 in the cases in which this is used.
2519 C++: If NAME is nonzero, this is the new name to install. This is
2520 done when replacing anonymous tags with real tag names. */
2522 tree
2523 lookup_tag_reverse (tree type, tree name)
2525 struct cp_binding_level *level;
2527 timevar_push (TV_NAME_LOOKUP);
2528 for (level = current_binding_level; level; level = level->level_chain)
2530 binding_entry entry = level->type_decls == NULL
2531 ? NULL
2532 : binding_table_reverse_maybe_remap (level->type_decls, type, name);
2533 if (entry)
2534 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, entry->name);
2536 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2539 /* Returns true if ROOT (a namespace, class, or function) encloses
2540 CHILD. CHILD may be either a class type or a namespace. */
2542 bool
2543 is_ancestor (tree root, tree child)
2545 my_friendly_assert ((TREE_CODE (root) == NAMESPACE_DECL
2546 || TREE_CODE (root) == FUNCTION_DECL
2547 || CLASS_TYPE_P (root)), 20030307);
2548 my_friendly_assert ((TREE_CODE (child) == NAMESPACE_DECL
2549 || CLASS_TYPE_P (child)),
2550 20030307);
2552 /* The global namespace encloses everything. */
2553 if (root == global_namespace)
2554 return true;
2556 while (true)
2558 /* If we've run out of scopes, stop. */
2559 if (!child)
2560 return false;
2561 /* If we've reached the ROOT, it encloses CHILD. */
2562 if (root == child)
2563 return true;
2564 /* Go out one level. */
2565 if (TYPE_P (child))
2566 child = TYPE_NAME (child);
2567 child = DECL_CONTEXT (child);
2571 /* Enter the class or namespace scope indicated by T. Returns TRUE iff
2572 pop_scope should be called later to exit this scope. */
2574 bool
2575 push_scope (tree t)
2577 bool pop = true;
2579 if (TREE_CODE (t) == NAMESPACE_DECL)
2580 push_decl_namespace (t);
2581 else if (CLASS_TYPE_P (t))
2583 if (!at_class_scope_p ()
2584 || !same_type_p (current_class_type, t))
2585 push_nested_class (t);
2586 else
2587 /* T is the same as the current scope. There is therefore no
2588 need to re-enter the scope. Since we are not actually
2589 pushing a new scope, our caller should not call
2590 pop_scope. */
2591 pop = false;
2594 return pop;
2597 /* Leave scope pushed by push_scope. */
2599 void
2600 pop_scope (tree t)
2602 if (TREE_CODE (t) == NAMESPACE_DECL)
2603 pop_decl_namespace ();
2604 else if CLASS_TYPE_P (t)
2605 pop_nested_class ();
2608 /* Do a pushlevel for class declarations. */
2610 void
2611 pushlevel_class (void)
2613 if (ENABLE_SCOPE_CHECKING)
2614 is_class_level = 1;
2616 class_binding_level = begin_scope (sk_class, current_class_type);
2619 /* ...and a poplevel for class declarations. */
2621 void
2622 poplevel_class (void)
2624 struct cp_binding_level *level = class_binding_level;
2625 cp_class_binding *cb;
2626 size_t i;
2627 tree shadowed;
2629 timevar_push (TV_NAME_LOOKUP);
2630 my_friendly_assert (level != 0, 354);
2632 /* If we're leaving a toplevel class, don't bother to do the setting
2633 of IDENTIFIER_CLASS_VALUE to NULL_TREE, since first of all this slot
2634 shouldn't even be used when current_class_type isn't set, and second,
2635 if we don't touch it here, we're able to use the cache effect if the
2636 next time we're entering a class scope, it is the same class. */
2637 if (current_class_depth != 1)
2639 struct cp_binding_level* b;
2640 cp_class_binding* cb;
2641 size_t i;
2643 /* Clear out our IDENTIFIER_CLASS_VALUEs. */
2644 clear_identifier_class_values ();
2646 /* Find the next enclosing class, and recreate
2647 IDENTIFIER_CLASS_VALUEs appropriate for that class. */
2648 b = level->level_chain;
2649 while (b && b->kind != sk_class)
2650 b = b->level_chain;
2652 if (b)
2653 for (i = 0;
2654 (cb = VEC_iterate (cp_class_binding,
2655 b->class_shadowed,
2656 i));
2657 ++i)
2659 cxx_binding *binding;
2661 binding = IDENTIFIER_BINDING (cb->identifier);
2662 while (binding && binding->scope != b)
2663 binding = binding->previous;
2665 if (binding)
2666 IDENTIFIER_CLASS_VALUE (cb->identifier) = binding->value;
2669 else
2670 /* Remember to save what IDENTIFIER's were bound in this scope so we
2671 can recover from cache misses. */
2672 previous_class_level = level;
2673 for (shadowed = level->type_shadowed;
2674 shadowed;
2675 shadowed = TREE_CHAIN (shadowed))
2676 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (shadowed), TREE_VALUE (shadowed));
2678 /* Remove the bindings for all of the class-level declarations. */
2679 for (i = 0;
2680 (cb = VEC_iterate (cp_class_binding, level->class_shadowed, i));
2681 ++i)
2682 IDENTIFIER_BINDING (cb->identifier) = cb->base.previous;
2684 /* Now, pop out of the binding level which we created up in the
2685 `pushlevel_class' routine. */
2686 if (ENABLE_SCOPE_CHECKING)
2687 is_class_level = 1;
2689 leave_scope ();
2690 timevar_pop (TV_NAME_LOOKUP);
2693 /* Bind DECL to ID in the class_binding_level. Returns nonzero if the
2694 binding was successful. */
2697 push_class_binding (tree id, tree decl)
2699 int result = 1;
2700 cxx_binding *binding = IDENTIFIER_BINDING (id);
2701 tree context;
2703 timevar_push (TV_NAME_LOOKUP);
2704 /* Note that we declared this value so that we can issue an error if
2705 this is an invalid redeclaration of a name already used for some
2706 other purpose. */
2707 note_name_declared_in_class (id, decl);
2709 if (binding && binding->scope == class_binding_level)
2710 /* Supplement the existing binding. */
2711 result = supplement_binding (IDENTIFIER_BINDING (id), decl);
2712 else
2713 /* Create a new binding. */
2714 push_binding (id, decl, class_binding_level);
2716 /* Update the IDENTIFIER_CLASS_VALUE for this ID to be the
2717 class-level declaration. Note that we do not use DECL here
2718 because of the possibility of the `struct stat' hack; if DECL is
2719 a class-name or enum-name we might prefer a field-name, or some
2720 such. */
2721 IDENTIFIER_CLASS_VALUE (id) = IDENTIFIER_BINDING (id)->value;
2723 /* If this is a binding from a base class, mark it as such. */
2724 binding = IDENTIFIER_BINDING (id);
2725 if (binding->value == decl && TREE_CODE (decl) != TREE_LIST)
2727 if (TREE_CODE (decl) == OVERLOAD)
2728 context = CP_DECL_CONTEXT (OVL_CURRENT (decl));
2729 else
2731 my_friendly_assert (DECL_P (decl), 0);
2732 context = context_for_name_lookup (decl);
2735 if (is_properly_derived_from (current_class_type, context))
2736 INHERITED_VALUE_BINDING_P (binding) = 1;
2737 else
2738 INHERITED_VALUE_BINDING_P (binding) = 0;
2740 else if (binding->value == decl)
2741 /* We only encounter a TREE_LIST when push_class_decls detects an
2742 ambiguity. Such an ambiguity can be overridden by a definition
2743 in this class. */
2744 INHERITED_VALUE_BINDING_P (binding) = 1;
2746 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, result);
2749 /* We are entering the scope of a class. Clear IDENTIFIER_CLASS_VALUE
2750 for any names in enclosing classes. */
2752 void
2753 clear_identifier_class_values (void)
2755 size_t i;
2756 cp_class_binding *cb;
2758 if (class_binding_level)
2759 for (i = 0;
2760 (cb = VEC_iterate (cp_class_binding,
2761 class_binding_level->class_shadowed,
2762 i));
2763 ++i)
2764 IDENTIFIER_CLASS_VALUE (cb->identifier) = NULL_TREE;
2767 /* Make the declaration of X appear in CLASS scope. */
2769 bool
2770 pushdecl_class_level (tree x)
2772 tree name;
2773 bool is_valid = true;
2775 timevar_push (TV_NAME_LOOKUP);
2776 /* Get the name of X. */
2777 if (TREE_CODE (x) == OVERLOAD)
2778 name = DECL_NAME (get_first_fn (x));
2779 else
2780 name = DECL_NAME (x);
2782 if (name)
2784 is_valid = push_class_level_binding (name, x);
2785 if (TREE_CODE (x) == TYPE_DECL)
2786 set_identifier_type_value (name, x);
2788 else if (ANON_AGGR_TYPE_P (TREE_TYPE (x)))
2790 /* If X is an anonymous aggregate, all of its members are
2791 treated as if they were members of the class containing the
2792 aggregate, for naming purposes. */
2793 tree f;
2795 for (f = TYPE_FIELDS (TREE_TYPE (x)); f; f = TREE_CHAIN (f))
2797 location_t save_location = input_location;
2798 input_location = DECL_SOURCE_LOCATION (f);
2799 if (!pushdecl_class_level (f))
2800 is_valid = false;
2801 input_location = save_location;
2804 timevar_pop (TV_NAME_LOOKUP);
2806 return is_valid;
2809 /* Make the declaration(s) of X appear in CLASS scope under the name
2810 NAME. Returns true if the binding is valid. */
2812 bool
2813 push_class_level_binding (tree name, tree x)
2815 cxx_binding *binding;
2817 timevar_push (TV_NAME_LOOKUP);
2818 /* The class_binding_level will be NULL if x is a template
2819 parameter name in a member template. */
2820 if (!class_binding_level)
2821 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2823 /* Make sure that this new member does not have the same name
2824 as a template parameter. */
2825 if (TYPE_BEING_DEFINED (current_class_type))
2827 tree decl = x;
2829 /* We could have been passed a tree list if this is an ambiguous
2830 declaration. If so, pull the declaration out because
2831 check_template_shadow will not handle a TREE_LIST. */
2832 if (TREE_CODE (decl) == TREE_LIST
2833 && TREE_TYPE (decl) == error_mark_node)
2834 decl = TREE_VALUE (decl);
2836 check_template_shadow (decl);
2839 /* [class.mem]
2841 If T is the name of a class, then each of the following shall
2842 have a name different from T:
2844 -- every static data member of class T;
2846 -- every member of class T that is itself a type;
2848 -- every enumerator of every member of class T that is an
2849 enumerated type;
2851 -- every member of every anonymous union that is a member of
2852 class T.
2854 (Non-static data members were also forbidden to have the same
2855 name as T until TC1.) */
2856 if ((TREE_CODE (x) == VAR_DECL
2857 || TREE_CODE (x) == CONST_DECL
2858 || (TREE_CODE (x) == TYPE_DECL
2859 && !DECL_SELF_REFERENCE_P (x))
2860 /* A data member of an anonymous union. */
2861 || (TREE_CODE (x) == FIELD_DECL
2862 && DECL_CONTEXT (x) != current_class_type))
2863 && DECL_NAME (x) == constructor_name (current_class_type))
2865 tree scope = context_for_name_lookup (x);
2866 if (TYPE_P (scope) && same_type_p (scope, current_class_type))
2868 error ("`%D' has the same name as the class in which it is declared",
2870 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, false);
2874 /* If this declaration shadows a declaration from an enclosing
2875 class, then we will need to restore IDENTIFIER_CLASS_VALUE when
2876 we leave this class. Record the shadowed declaration here. */
2877 binding = IDENTIFIER_BINDING (name);
2878 if (binding && binding->value)
2880 tree bval = binding->value;
2881 tree old_decl = NULL_TREE;
2883 if (INHERITED_VALUE_BINDING_P (binding))
2885 /* If the old binding was from a base class, and was for a
2886 tag name, slide it over to make room for the new binding.
2887 The old binding is still visible if explicitly qualified
2888 with a class-key. */
2889 if (TREE_CODE (bval) == TYPE_DECL && DECL_ARTIFICIAL (bval)
2890 && !(TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)))
2892 old_decl = binding->type;
2893 binding->type = bval;
2894 binding->value = NULL_TREE;
2895 INHERITED_VALUE_BINDING_P (binding) = 0;
2897 else
2898 old_decl = bval;
2900 else if (TREE_CODE (x) == OVERLOAD && is_overloaded_fn (bval))
2901 old_decl = bval;
2902 else if (TREE_CODE (x) == USING_DECL && TREE_CODE (bval) == USING_DECL)
2903 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2904 else if (TREE_CODE (x) == USING_DECL && is_overloaded_fn (bval))
2905 old_decl = bval;
2906 else if (TREE_CODE (bval) == USING_DECL && is_overloaded_fn (x))
2907 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2909 if (old_decl)
2911 cp_class_binding *cb;
2912 size_t i;
2914 /* Find the previous binding of name on the class-shadowed
2915 list, and update it. */
2916 for (i = 0;
2917 (cb = VEC_iterate (cp_class_binding,
2918 class_binding_level->class_shadowed,
2919 i));
2920 ++i)
2921 if (cb->identifier == name
2922 && (cb->base.value == old_decl
2923 || cb->base.type == old_decl))
2925 binding->value = x;
2926 INHERITED_VALUE_BINDING_P (binding) = 0;
2927 IDENTIFIER_CLASS_VALUE (name) = x;
2928 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2933 /* If we didn't replace an existing binding, put the binding on the
2934 stack of bindings for the identifier, and update the shadowed list. */
2935 if (push_class_binding (name, x))
2936 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2938 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, false);
2941 tree
2942 do_class_using_decl (tree decl)
2944 tree name, value, scope, type;
2946 if (TREE_CODE (decl) != SCOPE_REF
2947 || !TREE_OPERAND (decl, 0)
2948 || !TYPE_P (TREE_OPERAND (decl, 0)))
2950 error ("using-declaration for non-member at class scope");
2951 return NULL_TREE;
2953 scope = TREE_OPERAND (decl, 0);
2954 name = TREE_OPERAND (decl, 1);
2955 if (TREE_CODE (name) == BIT_NOT_EXPR)
2957 error ("using-declaration cannot name destructor");
2958 return NULL_TREE;
2960 if (TREE_CODE (name) == TYPE_DECL)
2961 name = DECL_NAME (name);
2962 else if (TREE_CODE (name) == TEMPLATE_DECL)
2963 name = DECL_NAME (name);
2964 else if (BASELINK_P (name))
2966 tree fns = BASELINK_FUNCTIONS (name);
2967 name = DECL_NAME (get_first_fn (fns));
2970 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 980716);
2972 /* Dependent using decls have a NULL type, non-dependent ones have a
2973 void type. */
2974 type = dependent_type_p (scope) ? NULL_TREE : void_type_node;
2975 value = build_lang_decl (USING_DECL, name, type);
2976 DECL_INITIAL (value) = scope;
2978 if (scope && !processing_template_decl)
2980 tree r;
2982 r = lookup_qualified_name (scope, name, false, false);
2983 if (r && TREE_CODE (r) != ERROR_MARK)
2984 cp_emit_debug_info_for_using (r, scope);
2986 return value;
2990 /* Return the binding value for name in scope. */
2992 tree
2993 namespace_binding (tree name, tree scope)
2995 cxx_binding *binding;
2997 if (scope == NULL)
2998 scope = global_namespace;
2999 scope = ORIGINAL_NAMESPACE (scope);
3000 binding = cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name);
3002 return binding ? binding->value : NULL_TREE;
3005 /* Set the binding value for name in scope. */
3007 void
3008 set_namespace_binding (tree name, tree scope, tree val)
3010 cxx_binding *b;
3012 timevar_push (TV_NAME_LOOKUP);
3013 if (scope == NULL_TREE)
3014 scope = global_namespace;
3015 b = binding_for_name (NAMESPACE_LEVEL (scope), name);
3016 if (!b->value || TREE_CODE (val) == OVERLOAD || val == error_mark_node)
3017 b->value = val;
3018 else
3019 supplement_binding (b, val);
3020 timevar_pop (TV_NAME_LOOKUP);
3023 /* Compute the namespace where a declaration is defined. */
3025 static tree
3026 decl_namespace (tree decl)
3028 timevar_push (TV_NAME_LOOKUP);
3029 if (TYPE_P (decl))
3030 decl = TYPE_STUB_DECL (decl);
3031 while (DECL_CONTEXT (decl))
3033 decl = DECL_CONTEXT (decl);
3034 if (TREE_CODE (decl) == NAMESPACE_DECL)
3035 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
3036 if (TYPE_P (decl))
3037 decl = TYPE_STUB_DECL (decl);
3038 my_friendly_assert (DECL_P (decl), 390);
3041 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, global_namespace);
3044 /* Set the context of a declaration to scope. Complain if we are not
3045 outside scope. */
3047 void
3048 set_decl_namespace (tree decl, tree scope, bool friendp)
3050 tree old;
3052 /* Get rid of namespace aliases. */
3053 scope = ORIGINAL_NAMESPACE (scope);
3055 /* It is ok for friends to be qualified in parallel space. */
3056 if (!friendp && !is_ancestor (current_namespace, scope))
3057 error ("declaration of `%D' not in a namespace surrounding `%D'",
3058 decl, scope);
3059 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
3060 if (scope != current_namespace)
3062 /* See whether this has been declared in the namespace. */
3063 old = namespace_binding (DECL_NAME (decl), scope);
3064 if (!old)
3065 /* No old declaration at all. */
3066 goto complain;
3067 /* A template can be explicitly specialized in any namespace. */
3068 if (processing_explicit_instantiation)
3069 return;
3070 if (!is_overloaded_fn (decl))
3071 /* Don't compare non-function decls with decls_match here,
3072 since it can't check for the correct constness at this
3073 point. pushdecl will find those errors later. */
3074 return;
3075 /* Since decl is a function, old should contain a function decl. */
3076 if (!is_overloaded_fn (old))
3077 goto complain;
3078 if (processing_template_decl || processing_specialization)
3079 /* We have not yet called push_template_decl to turn a
3080 FUNCTION_DECL into a TEMPLATE_DECL, so the declarations
3081 won't match. But, we'll check later, when we construct the
3082 template. */
3083 return;
3084 if (is_overloaded_fn (old))
3086 for (; old; old = OVL_NEXT (old))
3087 if (decls_match (decl, OVL_CURRENT (old)))
3088 return;
3090 else
3091 if (decls_match (decl, old))
3092 return;
3094 else
3095 return;
3096 complain:
3097 error ("`%D' should have been declared inside `%D'",
3098 decl, scope);
3101 /* Return the namespace where the current declaration is declared. */
3103 tree
3104 current_decl_namespace (void)
3106 tree result;
3107 /* If we have been pushed into a different namespace, use it. */
3108 if (decl_namespace_list)
3109 return TREE_PURPOSE (decl_namespace_list);
3111 if (current_class_type)
3112 result = decl_namespace (TYPE_STUB_DECL (current_class_type));
3113 else if (current_function_decl)
3114 result = decl_namespace (current_function_decl);
3115 else
3116 result = current_namespace;
3117 return result;
3120 /* Push into the scope of the NAME namespace. If NAME is NULL_TREE, then we
3121 select a name that is unique to this compilation unit. */
3123 void
3124 push_namespace (tree name)
3126 tree d = NULL_TREE;
3127 int need_new = 1;
3128 int implicit_use = 0;
3129 bool anon = !name;
3131 timevar_push (TV_NAME_LOOKUP);
3133 /* We should not get here if the global_namespace is not yet constructed
3134 nor if NAME designates the global namespace: The global scope is
3135 constructed elsewhere. */
3136 my_friendly_assert (global_namespace != NULL && name != global_scope_name,
3137 20030531);
3139 if (anon)
3141 /* The name of anonymous namespace is unique for the translation
3142 unit. */
3143 if (!anonymous_namespace_name)
3144 anonymous_namespace_name = get_file_function_name ('N');
3145 name = anonymous_namespace_name;
3146 d = IDENTIFIER_NAMESPACE_VALUE (name);
3147 if (d)
3148 /* Reopening anonymous namespace. */
3149 need_new = 0;
3150 implicit_use = 1;
3152 else
3154 /* Check whether this is an extended namespace definition. */
3155 d = IDENTIFIER_NAMESPACE_VALUE (name);
3156 if (d != NULL_TREE && TREE_CODE (d) == NAMESPACE_DECL)
3158 need_new = 0;
3159 if (DECL_NAMESPACE_ALIAS (d))
3161 error ("namespace alias `%D' not allowed here, assuming `%D'",
3162 d, DECL_NAMESPACE_ALIAS (d));
3163 d = DECL_NAMESPACE_ALIAS (d);
3168 if (need_new)
3170 /* Make a new namespace, binding the name to it. */
3171 d = build_lang_decl (NAMESPACE_DECL, name, void_type_node);
3172 DECL_CONTEXT (d) = FROB_CONTEXT (current_namespace);
3173 pushdecl (d);
3174 if (anon)
3176 /* Clear DECL_NAME for the benefit of debugging back ends. */
3177 SET_DECL_ASSEMBLER_NAME (d, name);
3178 DECL_NAME (d) = NULL_TREE;
3180 begin_scope (sk_namespace, d);
3182 else
3183 resume_scope (NAMESPACE_LEVEL (d));
3185 if (implicit_use)
3186 do_using_directive (d);
3187 /* Enter the name space. */
3188 current_namespace = d;
3190 timevar_pop (TV_NAME_LOOKUP);
3193 /* Pop from the scope of the current namespace. */
3195 void
3196 pop_namespace (void)
3198 my_friendly_assert (current_namespace != global_namespace, 20010801);
3199 current_namespace = CP_DECL_CONTEXT (current_namespace);
3200 /* The binding level is not popped, as it might be re-opened later. */
3201 leave_scope ();
3204 /* Push into the scope of the namespace NS, even if it is deeply
3205 nested within another namespace. */
3207 void
3208 push_nested_namespace (tree ns)
3210 if (ns == global_namespace)
3211 push_to_top_level ();
3212 else
3214 push_nested_namespace (CP_DECL_CONTEXT (ns));
3215 push_namespace (DECL_NAME (ns));
3219 /* Pop back from the scope of the namespace NS, which was previously
3220 entered with push_nested_namespace. */
3222 void
3223 pop_nested_namespace (tree ns)
3225 timevar_push (TV_NAME_LOOKUP);
3226 while (ns != global_namespace)
3228 pop_namespace ();
3229 ns = CP_DECL_CONTEXT (ns);
3232 pop_from_top_level ();
3233 timevar_pop (TV_NAME_LOOKUP);
3236 /* Temporarily set the namespace for the current declaration. */
3238 void
3239 push_decl_namespace (tree decl)
3241 if (TREE_CODE (decl) != NAMESPACE_DECL)
3242 decl = decl_namespace (decl);
3243 decl_namespace_list = tree_cons (ORIGINAL_NAMESPACE (decl),
3244 NULL_TREE, decl_namespace_list);
3247 /* [namespace.memdef]/2 */
3249 void
3250 pop_decl_namespace (void)
3252 decl_namespace_list = TREE_CHAIN (decl_namespace_list);
3255 /* Return the namespace that is the common ancestor
3256 of two given namespaces. */
3258 static tree
3259 namespace_ancestor (tree ns1, tree ns2)
3261 timevar_push (TV_NAME_LOOKUP);
3262 if (is_ancestor (ns1, ns2))
3263 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ns1);
3264 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP,
3265 namespace_ancestor (CP_DECL_CONTEXT (ns1), ns2));
3268 /* Process a namespace-alias declaration. */
3270 void
3271 do_namespace_alias (tree alias, tree namespace)
3273 if (TREE_CODE (namespace) != NAMESPACE_DECL)
3275 /* The parser did not find it, so it's not there. */
3276 error ("unknown namespace `%D'", namespace);
3277 return;
3280 namespace = ORIGINAL_NAMESPACE (namespace);
3282 /* Build the alias. */
3283 alias = build_lang_decl (NAMESPACE_DECL, alias, void_type_node);
3284 DECL_NAMESPACE_ALIAS (alias) = namespace;
3285 DECL_EXTERNAL (alias) = 1;
3286 pushdecl (alias);
3288 /* Emit debug info for namespace alias. */
3289 (*debug_hooks->global_decl) (alias);
3292 /* Like pushdecl, only it places X in the current namespace,
3293 if appropriate. */
3295 tree
3296 pushdecl_namespace_level (tree x)
3298 struct cp_binding_level *b = current_binding_level;
3299 tree t;
3301 timevar_push (TV_NAME_LOOKUP);
3302 t = pushdecl_with_scope (x, NAMESPACE_LEVEL (current_namespace));
3304 /* Now, the type_shadowed stack may screw us. Munge it so it does
3305 what we want. */
3306 if (TREE_CODE (x) == TYPE_DECL)
3308 tree name = DECL_NAME (x);
3309 tree newval;
3310 tree *ptr = (tree *)0;
3311 for (; !global_scope_p (b); b = b->level_chain)
3313 tree shadowed = b->type_shadowed;
3314 for (; shadowed; shadowed = TREE_CHAIN (shadowed))
3315 if (TREE_PURPOSE (shadowed) == name)
3317 ptr = &TREE_VALUE (shadowed);
3318 /* Can't break out of the loop here because sometimes
3319 a binding level will have duplicate bindings for
3320 PT names. It's gross, but I haven't time to fix it. */
3323 newval = TREE_TYPE (x);
3324 if (ptr == (tree *)0)
3326 /* @@ This shouldn't be needed. My test case "zstring.cc" trips
3327 up here if this is changed to an assertion. --KR */
3328 SET_IDENTIFIER_TYPE_VALUE (name, x);
3330 else
3332 *ptr = newval;
3335 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
3338 /* Insert USED into the using list of USER. Set INDIRECT_flag if this
3339 directive is not directly from the source. Also find the common
3340 ancestor and let our users know about the new namespace */
3341 static void
3342 add_using_namespace (tree user, tree used, bool indirect)
3344 tree t;
3345 timevar_push (TV_NAME_LOOKUP);
3346 /* Using oneself is a no-op. */
3347 if (user == used)
3349 timevar_pop (TV_NAME_LOOKUP);
3350 return;
3352 my_friendly_assert (TREE_CODE (user) == NAMESPACE_DECL, 380);
3353 my_friendly_assert (TREE_CODE (used) == NAMESPACE_DECL, 380);
3354 /* Check if we already have this. */
3355 t = purpose_member (used, DECL_NAMESPACE_USING (user));
3356 if (t != NULL_TREE)
3358 if (!indirect)
3359 /* Promote to direct usage. */
3360 TREE_INDIRECT_USING (t) = 0;
3361 timevar_pop (TV_NAME_LOOKUP);
3362 return;
3365 /* Add used to the user's using list. */
3366 DECL_NAMESPACE_USING (user)
3367 = tree_cons (used, namespace_ancestor (user, used),
3368 DECL_NAMESPACE_USING (user));
3370 TREE_INDIRECT_USING (DECL_NAMESPACE_USING (user)) = indirect;
3372 /* Add user to the used's users list. */
3373 DECL_NAMESPACE_USERS (used)
3374 = tree_cons (user, 0, DECL_NAMESPACE_USERS (used));
3376 /* Recursively add all namespaces used. */
3377 for (t = DECL_NAMESPACE_USING (used); t; t = TREE_CHAIN (t))
3378 /* indirect usage */
3379 add_using_namespace (user, TREE_PURPOSE (t), 1);
3381 /* Tell everyone using us about the new used namespaces. */
3382 for (t = DECL_NAMESPACE_USERS (user); t; t = TREE_CHAIN (t))
3383 add_using_namespace (TREE_PURPOSE (t), used, 1);
3384 timevar_pop (TV_NAME_LOOKUP);
3387 /* Process a using-declaration not appearing in class or local scope. */
3389 void
3390 do_toplevel_using_decl (tree decl, tree scope, tree name)
3392 tree oldval, oldtype, newval, newtype;
3393 tree orig_decl = decl;
3394 cxx_binding *binding;
3396 decl = validate_nonmember_using_decl (decl, scope, name);
3397 if (decl == NULL_TREE)
3398 return;
3400 binding = binding_for_name (NAMESPACE_LEVEL (current_namespace), name);
3402 oldval = binding->value;
3403 oldtype = binding->type;
3405 do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype);
3407 /* Emit debug info. */
3408 if (!processing_template_decl)
3409 cp_emit_debug_info_for_using (orig_decl, current_namespace);
3411 /* Copy declarations found. */
3412 if (newval)
3413 binding->value = newval;
3414 if (newtype)
3415 binding->type = newtype;
3416 return;
3419 /* Process a using-directive. */
3421 void
3422 do_using_directive (tree namespace)
3424 tree context = NULL_TREE;
3426 if (building_stmt_tree ())
3427 add_stmt (build_stmt (USING_STMT, namespace));
3429 /* using namespace A::B::C; */
3430 if (TREE_CODE (namespace) == SCOPE_REF)
3431 namespace = TREE_OPERAND (namespace, 1);
3432 if (TREE_CODE (namespace) == IDENTIFIER_NODE)
3434 /* Lookup in lexer did not find a namespace. */
3435 if (!processing_template_decl)
3436 error ("namespace `%T' undeclared", namespace);
3437 return;
3439 if (TREE_CODE (namespace) != NAMESPACE_DECL)
3441 if (!processing_template_decl)
3442 error ("`%T' is not a namespace", namespace);
3443 return;
3445 namespace = ORIGINAL_NAMESPACE (namespace);
3446 if (!toplevel_bindings_p ())
3448 push_using_directive (namespace);
3449 context = current_scope ();
3451 else
3453 /* direct usage */
3454 add_using_namespace (current_namespace, namespace, 0);
3455 if (current_namespace != global_namespace)
3456 context = current_namespace;
3459 /* Emit debugging info. */
3460 if (!processing_template_decl)
3461 (*debug_hooks->imported_module_or_decl) (namespace, context);
3464 /* Deal with a using-directive seen by the parser. Currently we only
3465 handle attributes here, since they cannot appear inside a template. */
3467 void
3468 parse_using_directive (tree namespace, tree attribs)
3470 tree a;
3472 do_using_directive (namespace);
3474 for (a = attribs; a; a = TREE_CHAIN (a))
3476 tree name = TREE_PURPOSE (a);
3477 if (is_attribute_p ("strong", name))
3479 if (!toplevel_bindings_p ())
3480 error ("strong using only meaningful at namespace scope");
3481 else
3482 DECL_NAMESPACE_ASSOCIATIONS (namespace)
3483 = tree_cons (current_namespace, 0,
3484 DECL_NAMESPACE_ASSOCIATIONS (namespace));
3486 else
3487 warning ("`%D' attribute directive ignored", name);
3491 /* Like pushdecl, only it places X in the global scope if appropriate.
3492 Calls cp_finish_decl to register the variable, initializing it with
3493 *INIT, if INIT is non-NULL. */
3495 static tree
3496 pushdecl_top_level_1 (tree x, tree *init)
3498 timevar_push (TV_NAME_LOOKUP);
3499 push_to_top_level ();
3500 x = pushdecl_namespace_level (x);
3501 if (init)
3502 cp_finish_decl (x, *init, NULL_TREE, 0);
3503 pop_from_top_level ();
3504 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
3507 /* Like pushdecl, only it places X in the global scope if appropriate. */
3509 tree
3510 pushdecl_top_level (tree x)
3512 return pushdecl_top_level_1 (x, NULL);
3515 /* Like pushdecl, only it places X in the global scope if
3516 appropriate. Calls cp_finish_decl to register the variable,
3517 initializing it with INIT. */
3519 tree
3520 pushdecl_top_level_and_finish (tree x, tree init)
3522 return pushdecl_top_level_1 (x, &init);
3525 /* Combines two sets of overloaded functions into an OVERLOAD chain, removing
3526 duplicates. The first list becomes the tail of the result.
3528 The algorithm is O(n^2). We could get this down to O(n log n) by
3529 doing a sort on the addresses of the functions, if that becomes
3530 necessary. */
3532 static tree
3533 merge_functions (tree s1, tree s2)
3535 for (; s2; s2 = OVL_NEXT (s2))
3537 tree fn2 = OVL_CURRENT (s2);
3538 tree fns1;
3540 for (fns1 = s1; fns1; fns1 = OVL_NEXT (fns1))
3542 tree fn1 = OVL_CURRENT (fns1);
3544 /* If the function from S2 is already in S1, there is no
3545 need to add it again. For `extern "C"' functions, we
3546 might have two FUNCTION_DECLs for the same function, in
3547 different namespaces; again, we only need one of them. */
3548 if (fn1 == fn2
3549 || (DECL_EXTERN_C_P (fn1) && DECL_EXTERN_C_P (fn2)
3550 && DECL_NAME (fn1) == DECL_NAME (fn2)))
3551 break;
3554 /* If we exhausted all of the functions in S1, FN2 is new. */
3555 if (!fns1)
3556 s1 = build_overload (fn2, s1);
3558 return s1;
3561 /* This should return an error not all definitions define functions.
3562 It is not an error if we find two functions with exactly the
3563 same signature, only if these are selected in overload resolution.
3564 old is the current set of bindings, new the freshly-found binding.
3565 XXX Do we want to give *all* candidates in case of ambiguity?
3566 XXX In what way should I treat extern declarations?
3567 XXX I don't want to repeat the entire duplicate_decls here */
3569 static void
3570 ambiguous_decl (tree name, struct scope_binding *old, cxx_binding *new,
3571 int flags)
3573 tree val, type;
3574 my_friendly_assert (old != NULL, 393);
3575 /* Copy the value. */
3576 val = new->value;
3577 if (val)
3578 switch (TREE_CODE (val))
3580 case TEMPLATE_DECL:
3581 /* If we expect types or namespaces, and not templates,
3582 or this is not a template class. */
3583 if (LOOKUP_QUALIFIERS_ONLY (flags)
3584 && !DECL_CLASS_TEMPLATE_P (val))
3585 val = NULL_TREE;
3586 break;
3587 case TYPE_DECL:
3588 if (LOOKUP_NAMESPACES_ONLY (flags))
3589 val = NULL_TREE;
3590 break;
3591 case NAMESPACE_DECL:
3592 if (LOOKUP_TYPES_ONLY (flags))
3593 val = NULL_TREE;
3594 break;
3595 case FUNCTION_DECL:
3596 /* Ignore built-in functions that are still anticipated. */
3597 if (LOOKUP_QUALIFIERS_ONLY (flags) || DECL_ANTICIPATED (val))
3598 val = NULL_TREE;
3599 break;
3600 default:
3601 if (LOOKUP_QUALIFIERS_ONLY (flags))
3602 val = NULL_TREE;
3605 if (!old->value)
3606 old->value = val;
3607 else if (val && val != old->value)
3609 if (is_overloaded_fn (old->value) && is_overloaded_fn (val))
3610 old->value = merge_functions (old->value, val);
3611 else
3613 /* Some declarations are functions, some are not. */
3614 if (flags & LOOKUP_COMPLAIN)
3616 /* If we've already given this error for this lookup,
3617 old->value is error_mark_node, so let's not
3618 repeat ourselves. */
3619 if (old->value != error_mark_node)
3621 error ("use of `%D' is ambiguous", name);
3622 cp_error_at (" first declared as `%#D' here",
3623 old->value);
3625 cp_error_at (" also declared as `%#D' here", val);
3627 old->value = error_mark_node;
3630 /* ... and copy the type. */
3631 type = new->type;
3632 if (LOOKUP_NAMESPACES_ONLY (flags))
3633 type = NULL_TREE;
3634 if (!old->type)
3635 old->type = type;
3636 else if (type && old->type != type)
3638 if (flags & LOOKUP_COMPLAIN)
3640 error ("`%D' denotes an ambiguous type",name);
3641 error ("%J first type here", TYPE_MAIN_DECL (old->type));
3642 error ("%J other type here", TYPE_MAIN_DECL (type));
3647 /* Return the declarations that are members of the namespace NS. */
3649 tree
3650 cp_namespace_decls (tree ns)
3652 return NAMESPACE_LEVEL (ns)->names;
3655 /* Combine prefer_type and namespaces_only into flags. */
3657 static int
3658 lookup_flags (int prefer_type, int namespaces_only)
3660 if (namespaces_only)
3661 return LOOKUP_PREFER_NAMESPACES;
3662 if (prefer_type > 1)
3663 return LOOKUP_PREFER_TYPES;
3664 if (prefer_type > 0)
3665 return LOOKUP_PREFER_BOTH;
3666 return 0;
3669 /* Given a lookup that returned VAL, use FLAGS to decide if we want to
3670 ignore it or not. Subroutine of lookup_name_real. */
3672 static tree
3673 qualify_lookup (tree val, int flags)
3675 if (val == NULL_TREE)
3676 return val;
3677 if ((flags & LOOKUP_PREFER_NAMESPACES) && TREE_CODE (val) == NAMESPACE_DECL)
3678 return val;
3679 if ((flags & LOOKUP_PREFER_TYPES)
3680 && (TREE_CODE (val) == TYPE_DECL || TREE_CODE (val) == TEMPLATE_DECL))
3681 return val;
3682 if (flags & (LOOKUP_PREFER_NAMESPACES | LOOKUP_PREFER_TYPES))
3683 return NULL_TREE;
3684 return val;
3687 /* Look up NAME in the NAMESPACE. */
3689 tree
3690 lookup_namespace_name (tree namespace, tree name)
3692 tree val;
3693 tree template_id = NULL_TREE;
3694 struct scope_binding binding = EMPTY_SCOPE_BINDING;
3696 timevar_push (TV_NAME_LOOKUP);
3697 my_friendly_assert (TREE_CODE (namespace) == NAMESPACE_DECL, 370);
3699 if (TREE_CODE (name) == NAMESPACE_DECL)
3700 /* This happens for A::B<int> when B is a namespace. */
3701 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, name);
3702 else if (TREE_CODE (name) == TEMPLATE_DECL)
3704 /* This happens for A::B where B is a template, and there are no
3705 template arguments. */
3706 error ("invalid use of `%D'", name);
3707 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3710 namespace = ORIGINAL_NAMESPACE (namespace);
3712 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3714 template_id = name;
3715 name = TREE_OPERAND (name, 0);
3716 if (TREE_CODE (name) == OVERLOAD)
3717 name = DECL_NAME (OVL_CURRENT (name));
3718 else if (DECL_P (name))
3719 name = DECL_NAME (name);
3722 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 373);
3724 if (!qualified_lookup_using_namespace (name, namespace, &binding, 0))
3725 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3727 if (binding.value)
3729 val = binding.value;
3731 if (template_id)
3733 if (DECL_CLASS_TEMPLATE_P (val))
3734 val = lookup_template_class (val,
3735 TREE_OPERAND (template_id, 1),
3736 /*in_decl=*/NULL_TREE,
3737 /*context=*/NULL_TREE,
3738 /*entering_scope=*/0,
3739 tf_error | tf_warning);
3740 else if (DECL_FUNCTION_TEMPLATE_P (val)
3741 || TREE_CODE (val) == OVERLOAD)
3742 val = lookup_template_function (val,
3743 TREE_OPERAND (template_id, 1));
3744 else
3746 error ("`%D::%D' is not a template",
3747 namespace, name);
3748 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3752 /* If we have a single function from a using decl, pull it out. */
3753 if (TREE_CODE (val) == OVERLOAD && ! really_overloaded_fn (val))
3754 val = OVL_FUNCTION (val);
3756 /* Ignore built-in functions that haven't been prototyped yet. */
3757 if (!val || !DECL_P(val)
3758 || !DECL_LANG_SPECIFIC(val)
3759 || !DECL_ANTICIPATED (val))
3760 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3763 error ("`%D' undeclared in namespace `%D'", name, namespace);
3764 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3767 /* Select the right _DECL from multiple choices. */
3769 static tree
3770 select_decl (const struct scope_binding *binding, int flags)
3772 tree val;
3773 val = binding->value;
3775 timevar_push (TV_NAME_LOOKUP);
3776 if (LOOKUP_NAMESPACES_ONLY (flags))
3778 /* We are not interested in types. */
3779 if (val && TREE_CODE (val) == NAMESPACE_DECL)
3780 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3781 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
3784 /* If looking for a type, or if there is no non-type binding, select
3785 the value binding. */
3786 if (binding->type && (!val || (flags & LOOKUP_PREFER_TYPES)))
3787 val = binding->type;
3788 /* Don't return non-types if we really prefer types. */
3789 else if (val && LOOKUP_TYPES_ONLY (flags)
3790 && ! DECL_DECLARES_TYPE_P (val))
3791 val = NULL_TREE;
3793 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3796 /* Unscoped lookup of a global: iterate over current namespaces,
3797 considering using-directives. */
3799 static tree
3800 unqualified_namespace_lookup (tree name, int flags)
3802 tree initial = current_decl_namespace ();
3803 tree scope = initial;
3804 tree siter;
3805 struct cp_binding_level *level;
3806 tree val = NULL_TREE;
3807 struct scope_binding binding = EMPTY_SCOPE_BINDING;
3809 timevar_push (TV_NAME_LOOKUP);
3811 for (; !val; scope = CP_DECL_CONTEXT (scope))
3813 cxx_binding *b =
3814 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name);
3816 if (b)
3818 if (b->value && DECL_P (b->value)
3819 && DECL_LANG_SPECIFIC (b->value)
3820 && DECL_ANTICIPATED (b->value))
3821 /* Ignore anticipated built-in functions. */
3823 else
3824 binding.value = b->value;
3825 binding.type = b->type;
3828 /* Add all _DECLs seen through local using-directives. */
3829 for (level = current_binding_level;
3830 level->kind != sk_namespace;
3831 level = level->level_chain)
3832 if (!lookup_using_namespace (name, &binding, level->using_directives,
3833 scope, flags))
3834 /* Give up because of error. */
3835 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3837 /* Add all _DECLs seen through global using-directives. */
3838 /* XXX local and global using lists should work equally. */
3839 siter = initial;
3840 while (1)
3842 if (!lookup_using_namespace (name, &binding,
3843 DECL_NAMESPACE_USING (siter),
3844 scope, flags))
3845 /* Give up because of error. */
3846 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3847 if (siter == scope) break;
3848 siter = CP_DECL_CONTEXT (siter);
3851 val = select_decl (&binding, flags);
3852 if (scope == global_namespace)
3853 break;
3855 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3858 /* Look up NAME (an IDENTIFIER_NODE) in SCOPE (either a NAMESPACE_DECL
3859 or a class TYPE). If IS_TYPE_P is TRUE, then ignore non-type
3860 bindings.
3862 Returns a DECL (or OVERLOAD, or BASELINK) representing the
3863 declaration found. If no suitable declaration can be found,
3864 ERROR_MARK_NODE is returned. Iif COMPLAIN is true and SCOPE is
3865 neither a class-type nor a namespace a diagnostic is issued. */
3867 tree
3868 lookup_qualified_name (tree scope, tree name, bool is_type_p, bool complain)
3870 int flags = 0;
3872 if (TREE_CODE (scope) == NAMESPACE_DECL)
3874 struct scope_binding binding = EMPTY_SCOPE_BINDING;
3876 flags |= LOOKUP_COMPLAIN;
3877 if (is_type_p)
3878 flags |= LOOKUP_PREFER_TYPES;
3879 if (qualified_lookup_using_namespace (name, scope, &binding, flags))
3880 return select_decl (&binding, flags);
3882 else if (is_aggr_type (scope, complain))
3884 tree t;
3885 t = lookup_member (scope, name, 0, is_type_p);
3886 if (t)
3887 return t;
3890 return error_mark_node;
3893 /* Subroutine of unqualified_namespace_lookup:
3894 Add the bindings of NAME in used namespaces to VAL.
3895 We are currently looking for names in namespace SCOPE, so we
3896 look through USINGS for using-directives of namespaces
3897 which have SCOPE as a common ancestor with the current scope.
3898 Returns false on errors. */
3900 static bool
3901 lookup_using_namespace (tree name, struct scope_binding *val,
3902 tree usings, tree scope, int flags)
3904 tree iter;
3905 timevar_push (TV_NAME_LOOKUP);
3906 /* Iterate over all used namespaces in current, searching for using
3907 directives of scope. */
3908 for (iter = usings; iter; iter = TREE_CHAIN (iter))
3909 if (TREE_VALUE (iter) == scope)
3911 tree used = ORIGINAL_NAMESPACE (TREE_PURPOSE (iter));
3912 cxx_binding *val1 =
3913 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (used), name);
3914 /* Resolve ambiguities. */
3915 if (val1)
3916 ambiguous_decl (name, val, val1, flags);
3918 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val->value != error_mark_node);
3921 /* [namespace.qual]
3922 Accepts the NAME to lookup and its qualifying SCOPE.
3923 Returns the name/type pair found into the cxx_binding *RESULT,
3924 or false on error. */
3926 static bool
3927 qualified_lookup_using_namespace (tree name, tree scope,
3928 struct scope_binding *result, int flags)
3930 /* Maintain a list of namespaces visited... */
3931 tree seen = NULL_TREE;
3932 /* ... and a list of namespace yet to see. */
3933 tree todo = NULL_TREE;
3934 tree todo_maybe = NULL_TREE;
3935 tree usings;
3936 timevar_push (TV_NAME_LOOKUP);
3937 /* Look through namespace aliases. */
3938 scope = ORIGINAL_NAMESPACE (scope);
3939 while (scope && result->value != error_mark_node)
3941 cxx_binding *binding =
3942 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name);
3943 seen = tree_cons (scope, NULL_TREE, seen);
3944 if (binding)
3945 ambiguous_decl (name, result, binding, flags);
3947 /* Consider strong using directives always, and non-strong ones
3948 if we haven't found a binding yet. ??? Shouldn't we consider
3949 non-strong ones if the initial RESULT is non-NULL, but the
3950 binding in the given namespace is? */
3951 for (usings = DECL_NAMESPACE_USING (scope); usings;
3952 usings = TREE_CHAIN (usings))
3953 /* If this was a real directive, and we have not seen it. */
3954 if (!TREE_INDIRECT_USING (usings))
3956 /* Try to avoid queuing the same namespace more than once,
3957 the exception being when a namespace was already
3958 enqueued for todo_maybe and then a strong using is
3959 found for it. We could try to remove it from
3960 todo_maybe, but it's probably not worth the effort. */
3961 if (is_associated_namespace (scope, TREE_PURPOSE (usings))
3962 && !purpose_member (TREE_PURPOSE (usings), seen)
3963 && !purpose_member (TREE_PURPOSE (usings), todo))
3964 todo = tree_cons (TREE_PURPOSE (usings), NULL_TREE, todo);
3965 else if ((!result->value && !result->type)
3966 && !purpose_member (TREE_PURPOSE (usings), seen)
3967 && !purpose_member (TREE_PURPOSE (usings), todo)
3968 && !purpose_member (TREE_PURPOSE (usings), todo_maybe))
3969 todo_maybe = tree_cons (TREE_PURPOSE (usings), NULL_TREE,
3970 todo_maybe);
3972 if (todo)
3974 scope = TREE_PURPOSE (todo);
3975 todo = TREE_CHAIN (todo);
3977 else if (todo_maybe
3978 && (!result->value && !result->type))
3980 scope = TREE_PURPOSE (todo_maybe);
3981 todo = TREE_CHAIN (todo_maybe);
3982 todo_maybe = NULL_TREE;
3984 else
3985 scope = NULL_TREE; /* If there never was a todo list. */
3987 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, result->value != error_mark_node);
3990 /* Look up NAME in the current binding level and its superiors in the
3991 namespace of variables, functions and typedefs. Return a ..._DECL
3992 node of some kind representing its definition if there is only one
3993 such declaration, or return a TREE_LIST with all the overloaded
3994 definitions if there are many, or return 0 if it is undefined.
3996 If PREFER_TYPE is > 0, we prefer TYPE_DECLs or namespaces.
3997 If PREFER_TYPE is > 1, we reject non-type decls (e.g. namespaces).
3998 Otherwise we prefer non-TYPE_DECLs.
4000 If NONCLASS is nonzero, we don't look for the NAME in class scope,
4001 using IDENTIFIER_CLASS_VALUE.
4003 If BLOCK_P is true, block scopes are examined; otherwise, they are
4004 skipped. */
4006 tree
4007 lookup_name_real (tree name, int prefer_type, int nonclass, bool block_p,
4008 int namespaces_only, int flags)
4010 cxx_binding *iter;
4011 tree val = NULL_TREE;
4013 timevar_push (TV_NAME_LOOKUP);
4014 /* Conversion operators are handled specially because ordinary
4015 unqualified name lookup will not find template conversion
4016 operators. */
4017 if (IDENTIFIER_TYPENAME_P (name))
4019 struct cp_binding_level *level;
4021 for (level = current_binding_level;
4022 level && level->kind != sk_namespace;
4023 level = level->level_chain)
4025 tree class_type;
4026 tree operators;
4028 /* A conversion operator can only be declared in a class
4029 scope. */
4030 if (level->kind != sk_class)
4031 continue;
4033 /* Lookup the conversion operator in the class. */
4034 class_type = level->this_entity;
4035 operators = lookup_fnfields (class_type, name, /*protect=*/0);
4036 if (operators)
4037 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, operators);
4040 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
4043 flags |= lookup_flags (prefer_type, namespaces_only);
4045 /* First, look in non-namespace scopes. */
4047 if (current_class_type == NULL_TREE)
4048 nonclass = 1;
4050 if (block_p || !nonclass)
4051 for (iter = IDENTIFIER_BINDING (name); iter; iter = iter->previous)
4053 tree binding;
4055 /* Skip entities we don't want. */
4056 if (LOCAL_BINDING_P (iter) ? !block_p : nonclass)
4057 continue;
4059 /* If this is the kind of thing we're looking for, we're done. */
4060 if (qualify_lookup (iter->value, flags))
4061 binding = iter->value;
4062 else if ((flags & LOOKUP_PREFER_TYPES)
4063 && qualify_lookup (iter->type, flags))
4064 binding = iter->type;
4065 else
4066 binding = NULL_TREE;
4068 if (binding)
4070 val = binding;
4071 break;
4075 /* Now lookup in namespace scopes. */
4076 if (!val)
4078 tree t = unqualified_namespace_lookup (name, flags);
4079 if (t)
4080 val = t;
4083 if (val)
4085 /* If we have a single function from a using decl, pull it out. */
4086 if (TREE_CODE (val) == OVERLOAD && ! really_overloaded_fn (val))
4087 val = OVL_FUNCTION (val);
4090 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
4093 tree
4094 lookup_name_nonclass (tree name)
4096 return lookup_name_real (name, 0, 1, /*block_p=*/true, 0, LOOKUP_COMPLAIN);
4099 tree
4100 lookup_function_nonclass (tree name, tree args, bool block_p)
4102 return
4103 lookup_arg_dependent (name,
4104 lookup_name_real (name, 0, 1, block_p, 0,
4105 LOOKUP_COMPLAIN),
4106 args);
4109 tree
4110 lookup_name (tree name, int prefer_type)
4112 return lookup_name_real (name, prefer_type, 0, /*block_p=*/true,
4113 0, LOOKUP_COMPLAIN);
4116 /* Similar to `lookup_name' but look only in the innermost non-class
4117 binding level. */
4119 static tree
4120 lookup_name_current_level (tree name)
4122 struct cp_binding_level *b;
4123 tree t = NULL_TREE;
4125 timevar_push (TV_NAME_LOOKUP);
4126 b = innermost_nonclass_level ();
4128 if (b->kind == sk_namespace)
4130 t = IDENTIFIER_NAMESPACE_VALUE (name);
4132 /* extern "C" function() */
4133 if (t != NULL_TREE && TREE_CODE (t) == TREE_LIST)
4134 t = TREE_VALUE (t);
4136 else if (IDENTIFIER_BINDING (name)
4137 && LOCAL_BINDING_P (IDENTIFIER_BINDING (name)))
4139 while (1)
4141 if (IDENTIFIER_BINDING (name)->scope == b)
4142 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, IDENTIFIER_VALUE (name));
4144 if (b->kind == sk_cleanup)
4145 b = b->level_chain;
4146 else
4147 break;
4151 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
4154 /* Like lookup_name_current_level, but for types. */
4156 static tree
4157 lookup_type_current_level (tree name)
4159 tree t = NULL_TREE;
4161 timevar_push (TV_NAME_LOOKUP);
4162 my_friendly_assert (current_binding_level->kind != sk_namespace,
4163 980716);
4165 if (REAL_IDENTIFIER_TYPE_VALUE (name) != NULL_TREE
4166 && REAL_IDENTIFIER_TYPE_VALUE (name) != global_type_node)
4168 struct cp_binding_level *b = current_binding_level;
4169 while (1)
4171 if (purpose_member (name, b->type_shadowed))
4172 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP,
4173 REAL_IDENTIFIER_TYPE_VALUE (name));
4174 if (b->kind == sk_cleanup)
4175 b = b->level_chain;
4176 else
4177 break;
4181 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
4184 /* [basic.lookup.koenig] */
4185 /* A nonzero return value in the functions below indicates an error. */
4187 struct arg_lookup
4189 tree name;
4190 tree namespaces;
4191 tree classes;
4192 tree functions;
4195 static bool arg_assoc (struct arg_lookup*, tree);
4196 static bool arg_assoc_args (struct arg_lookup*, tree);
4197 static bool arg_assoc_type (struct arg_lookup*, tree);
4198 static bool add_function (struct arg_lookup *, tree);
4199 static bool arg_assoc_namespace (struct arg_lookup *, tree);
4200 static bool arg_assoc_class (struct arg_lookup *, tree);
4201 static bool arg_assoc_template_arg (struct arg_lookup*, tree);
4203 /* Add a function to the lookup structure.
4204 Returns true on error. */
4206 static bool
4207 add_function (struct arg_lookup *k, tree fn)
4209 /* We used to check here to see if the function was already in the list,
4210 but that's O(n^2), which is just too expensive for function lookup.
4211 Now we deal with the occasional duplicate in joust. In doing this, we
4212 assume that the number of duplicates will be small compared to the
4213 total number of functions being compared, which should usually be the
4214 case. */
4216 /* We must find only functions, or exactly one non-function. */
4217 if (!k->functions)
4218 k->functions = fn;
4219 else if (fn == k->functions)
4221 else if (is_overloaded_fn (k->functions) && is_overloaded_fn (fn))
4222 k->functions = build_overload (fn, k->functions);
4223 else
4225 tree f1 = OVL_CURRENT (k->functions);
4226 tree f2 = fn;
4227 if (is_overloaded_fn (f1))
4229 fn = f1; f1 = f2; f2 = fn;
4231 cp_error_at ("`%D' is not a function,", f1);
4232 cp_error_at (" conflict with `%D'", f2);
4233 error (" in call to `%D'", k->name);
4234 return true;
4237 return false;
4240 /* Returns true iff CURRENT has declared itself to be an associated
4241 namespace of SCOPE via a strong using-directive (or transitive chain
4242 thereof). Both are namespaces. */
4244 bool
4245 is_associated_namespace (tree current, tree scope)
4247 tree seen = NULL_TREE;
4248 tree todo = NULL_TREE;
4249 tree t;
4250 while (1)
4252 if (scope == current)
4253 return true;
4254 seen = tree_cons (scope, NULL_TREE, seen);
4255 for (t = DECL_NAMESPACE_ASSOCIATIONS (scope); t; t = TREE_CHAIN (t))
4256 if (!purpose_member (TREE_PURPOSE (t), seen))
4257 todo = tree_cons (TREE_PURPOSE (t), NULL_TREE, todo);
4258 if (todo)
4260 scope = TREE_PURPOSE (todo);
4261 todo = TREE_CHAIN (todo);
4263 else
4264 return false;
4268 /* Add functions of a namespace to the lookup structure.
4269 Returns true on error. */
4271 static bool
4272 arg_assoc_namespace (struct arg_lookup *k, tree scope)
4274 tree value;
4276 if (purpose_member (scope, k->namespaces))
4277 return 0;
4278 k->namespaces = tree_cons (scope, NULL_TREE, k->namespaces);
4280 /* Check out our super-users. */
4281 for (value = DECL_NAMESPACE_ASSOCIATIONS (scope); value;
4282 value = TREE_CHAIN (value))
4283 if (arg_assoc_namespace (k, TREE_PURPOSE (value)))
4284 return true;
4286 value = namespace_binding (k->name, scope);
4287 if (!value)
4288 return false;
4290 for (; value; value = OVL_NEXT (value))
4291 if (add_function (k, OVL_CURRENT (value)))
4292 return true;
4294 return false;
4297 /* Adds everything associated with a template argument to the lookup
4298 structure. Returns true on error. */
4300 static bool
4301 arg_assoc_template_arg (struct arg_lookup *k, tree arg)
4303 /* [basic.lookup.koenig]
4305 If T is a template-id, its associated namespaces and classes are
4306 ... the namespaces and classes associated with the types of the
4307 template arguments provided for template type parameters
4308 (excluding template template parameters); the namespaces in which
4309 any template template arguments are defined; and the classes in
4310 which any member templates used as template template arguments
4311 are defined. [Note: non-type template arguments do not
4312 contribute to the set of associated namespaces. ] */
4314 /* Consider first template template arguments. */
4315 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
4316 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
4317 return false;
4318 else if (TREE_CODE (arg) == TEMPLATE_DECL)
4320 tree ctx = CP_DECL_CONTEXT (arg);
4322 /* It's not a member template. */
4323 if (TREE_CODE (ctx) == NAMESPACE_DECL)
4324 return arg_assoc_namespace (k, ctx);
4325 /* Otherwise, it must be member template. */
4326 else
4327 return arg_assoc_class (k, ctx);
4329 /* It's not a template template argument, but it is a type template
4330 argument. */
4331 else if (TYPE_P (arg))
4332 return arg_assoc_type (k, arg);
4333 /* It's a non-type template argument. */
4334 else
4335 return false;
4338 /* Adds everything associated with class to the lookup structure.
4339 Returns true on error. */
4341 static bool
4342 arg_assoc_class (struct arg_lookup *k, tree type)
4344 tree list, friends, context;
4345 int i;
4347 /* Backend build structures, such as __builtin_va_list, aren't
4348 affected by all this. */
4349 if (!CLASS_TYPE_P (type))
4350 return false;
4352 if (purpose_member (type, k->classes))
4353 return false;
4354 k->classes = tree_cons (type, NULL_TREE, k->classes);
4356 context = decl_namespace (TYPE_MAIN_DECL (type));
4357 if (arg_assoc_namespace (k, context))
4358 return true;
4360 /* Process baseclasses. */
4361 for (i = 0; i < BINFO_N_BASE_BINFOS (TYPE_BINFO (type)); i++)
4362 if (arg_assoc_class
4363 (k, BINFO_TYPE (BINFO_BASE_BINFO (TYPE_BINFO (type), i))))
4364 return true;
4366 /* Process friends. */
4367 for (list = DECL_FRIENDLIST (TYPE_MAIN_DECL (type)); list;
4368 list = TREE_CHAIN (list))
4369 if (k->name == FRIEND_NAME (list))
4370 for (friends = FRIEND_DECLS (list); friends;
4371 friends = TREE_CHAIN (friends))
4373 tree fn = TREE_VALUE (friends);
4375 /* Only interested in global functions with potentially hidden
4376 (i.e. unqualified) declarations. */
4377 if (CP_DECL_CONTEXT (fn) != context)
4378 continue;
4379 /* Template specializations are never found by name lookup.
4380 (Templates themselves can be found, but not template
4381 specializations.) */
4382 if (TREE_CODE (fn) == FUNCTION_DECL && DECL_USE_TEMPLATE (fn))
4383 continue;
4384 if (add_function (k, fn))
4385 return true;
4388 /* Process template arguments. */
4389 if (CLASSTYPE_TEMPLATE_INFO (type)
4390 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
4392 list = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
4393 for (i = 0; i < TREE_VEC_LENGTH (list); ++i)
4394 arg_assoc_template_arg (k, TREE_VEC_ELT (list, i));
4397 return false;
4400 /* Adds everything associated with a given type.
4401 Returns 1 on error. */
4403 static bool
4404 arg_assoc_type (struct arg_lookup *k, tree type)
4406 /* As we do not get the type of non-type dependent expressions
4407 right, we can end up with such things without a type. */
4408 if (!type)
4409 return false;
4411 if (TYPE_PTRMEM_P (type))
4413 /* Pointer to member: associate class type and value type. */
4414 if (arg_assoc_type (k, TYPE_PTRMEM_CLASS_TYPE (type)))
4415 return true;
4416 return arg_assoc_type (k, TYPE_PTRMEM_POINTED_TO_TYPE (type));
4418 else switch (TREE_CODE (type))
4420 case ERROR_MARK:
4421 return false;
4422 case VOID_TYPE:
4423 case INTEGER_TYPE:
4424 case REAL_TYPE:
4425 case COMPLEX_TYPE:
4426 case VECTOR_TYPE:
4427 case CHAR_TYPE:
4428 case BOOLEAN_TYPE:
4429 return false;
4430 case RECORD_TYPE:
4431 if (TYPE_PTRMEMFUNC_P (type))
4432 return arg_assoc_type (k, TYPE_PTRMEMFUNC_FN_TYPE (type));
4433 return arg_assoc_class (k, type);
4434 case POINTER_TYPE:
4435 case REFERENCE_TYPE:
4436 case ARRAY_TYPE:
4437 return arg_assoc_type (k, TREE_TYPE (type));
4438 case UNION_TYPE:
4439 case ENUMERAL_TYPE:
4440 return arg_assoc_namespace (k, decl_namespace (TYPE_MAIN_DECL (type)));
4441 case METHOD_TYPE:
4442 /* The basetype is referenced in the first arg type, so just
4443 fall through. */
4444 case FUNCTION_TYPE:
4445 /* Associate the parameter types. */
4446 if (arg_assoc_args (k, TYPE_ARG_TYPES (type)))
4447 return true;
4448 /* Associate the return type. */
4449 return arg_assoc_type (k, TREE_TYPE (type));
4450 case TEMPLATE_TYPE_PARM:
4451 case BOUND_TEMPLATE_TEMPLATE_PARM:
4452 return false;
4453 case TYPENAME_TYPE:
4454 return false;
4455 case LANG_TYPE:
4456 if (type == unknown_type_node)
4457 return false;
4458 /* else fall through */
4459 default:
4460 abort ();
4462 return false;
4465 /* Adds everything associated with arguments. Returns true on error. */
4467 static bool
4468 arg_assoc_args (struct arg_lookup *k, tree args)
4470 for (; args; args = TREE_CHAIN (args))
4471 if (arg_assoc (k, TREE_VALUE (args)))
4472 return true;
4473 return false;
4476 /* Adds everything associated with a given tree_node. Returns 1 on error. */
4478 static bool
4479 arg_assoc (struct arg_lookup *k, tree n)
4481 if (n == error_mark_node)
4482 return false;
4484 if (TYPE_P (n))
4485 return arg_assoc_type (k, n);
4487 if (! type_unknown_p (n))
4488 return arg_assoc_type (k, TREE_TYPE (n));
4490 if (TREE_CODE (n) == ADDR_EXPR)
4491 n = TREE_OPERAND (n, 0);
4492 if (TREE_CODE (n) == COMPONENT_REF)
4493 n = TREE_OPERAND (n, 1);
4494 if (TREE_CODE (n) == OFFSET_REF)
4495 n = TREE_OPERAND (n, 1);
4496 while (TREE_CODE (n) == TREE_LIST)
4497 n = TREE_VALUE (n);
4498 if (TREE_CODE (n) == BASELINK)
4499 n = BASELINK_FUNCTIONS (n);
4501 if (TREE_CODE (n) == FUNCTION_DECL)
4502 return arg_assoc_type (k, TREE_TYPE (n));
4503 if (TREE_CODE (n) == TEMPLATE_ID_EXPR)
4505 /* [basic.lookup.koenig]
4507 If T is a template-id, its associated namespaces and classes
4508 are the namespace in which the template is defined; for
4509 member templates, the member template's class... */
4510 tree template = TREE_OPERAND (n, 0);
4511 tree args = TREE_OPERAND (n, 1);
4512 tree ctx;
4513 int ix;
4515 if (TREE_CODE (template) == COMPONENT_REF)
4516 template = TREE_OPERAND (template, 1);
4518 /* First, the template. There may actually be more than one if
4519 this is an overloaded function template. But, in that case,
4520 we only need the first; all the functions will be in the same
4521 namespace. */
4522 template = OVL_CURRENT (template);
4524 ctx = CP_DECL_CONTEXT (template);
4526 if (TREE_CODE (ctx) == NAMESPACE_DECL)
4528 if (arg_assoc_namespace (k, ctx) == 1)
4529 return true;
4531 /* It must be a member template. */
4532 else if (arg_assoc_class (k, ctx) == 1)
4533 return true;
4535 /* Now the arguments. */
4536 for (ix = TREE_VEC_LENGTH (args); ix--;)
4537 if (arg_assoc_template_arg (k, TREE_VEC_ELT (args, ix)) == 1)
4538 return true;
4540 else if (TREE_CODE (n) == OVERLOAD)
4542 for (; n; n = OVL_CHAIN (n))
4543 if (arg_assoc_type (k, TREE_TYPE (OVL_FUNCTION (n))))
4544 return true;
4547 return false;
4550 /* Performs Koenig lookup depending on arguments, where fns
4551 are the functions found in normal lookup. */
4553 tree
4554 lookup_arg_dependent (tree name, tree fns, tree args)
4556 struct arg_lookup k;
4557 tree fn = NULL_TREE;
4559 timevar_push (TV_NAME_LOOKUP);
4560 k.name = name;
4561 k.functions = fns;
4562 k.classes = NULL_TREE;
4564 /* We've already looked at some namespaces during normal unqualified
4565 lookup -- but we don't know exactly which ones. If the functions
4566 we found were brought into the current namespace via a using
4567 declaration, we have not really checked the namespace from which
4568 they came. Therefore, we check all namespaces here -- unless the
4569 function we have is from the current namespace. Even then, we
4570 must check all namespaces if the function is a local
4571 declaration; any other declarations present at namespace scope
4572 should be visible during argument-dependent lookup. */
4573 if (fns)
4574 fn = OVL_CURRENT (fns);
4575 if (fn && TREE_CODE (fn) == FUNCTION_DECL
4576 && (CP_DECL_CONTEXT (fn) != current_decl_namespace ()
4577 || DECL_LOCAL_FUNCTION_P (fn)))
4578 k.namespaces = NULL_TREE;
4579 else
4580 /* Setting NAMESPACES is purely an optimization; it prevents
4581 adding functions which are already in FNS. Adding them would
4582 be safe -- "joust" will eliminate the duplicates -- but
4583 wasteful. */
4584 k.namespaces = build_tree_list (current_decl_namespace (), NULL_TREE);
4586 arg_assoc_args (&k, args);
4587 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, k.functions);
4590 /* Add namespace to using_directives. Return NULL_TREE if nothing was
4591 changed (i.e. there was already a directive), or the fresh
4592 TREE_LIST otherwise. */
4594 static tree
4595 push_using_directive (tree used)
4597 tree ud = current_binding_level->using_directives;
4598 tree iter, ancestor;
4600 timevar_push (TV_NAME_LOOKUP);
4601 /* Check if we already have this. */
4602 if (purpose_member (used, ud) != NULL_TREE)
4603 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
4605 ancestor = namespace_ancestor (current_decl_namespace (), used);
4606 ud = current_binding_level->using_directives;
4607 ud = tree_cons (used, ancestor, ud);
4608 current_binding_level->using_directives = ud;
4610 /* Recursively add all namespaces used. */
4611 for (iter = DECL_NAMESPACE_USING (used); iter; iter = TREE_CHAIN (iter))
4612 push_using_directive (TREE_PURPOSE (iter));
4614 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ud);
4617 /* The type TYPE is being declared. If it is a class template, or a
4618 specialization of a class template, do any processing required and
4619 perform error-checking. If IS_FRIEND is nonzero, this TYPE is
4620 being declared a friend. B is the binding level at which this TYPE
4621 should be bound.
4623 Returns the TYPE_DECL for TYPE, which may have been altered by this
4624 processing. */
4626 static tree
4627 maybe_process_template_type_declaration (tree type, int globalize,
4628 cxx_scope *b)
4630 tree decl = TYPE_NAME (type);
4632 if (processing_template_parmlist)
4633 /* You can't declare a new template type in a template parameter
4634 list. But, you can declare a non-template type:
4636 template <class A*> struct S;
4638 is a forward-declaration of `A'. */
4640 else
4642 maybe_check_template_type (type);
4644 my_friendly_assert (IS_AGGR_TYPE (type)
4645 || TREE_CODE (type) == ENUMERAL_TYPE, 0);
4648 if (processing_template_decl)
4650 /* This may change after the call to
4651 push_template_decl_real, but we want the original value. */
4652 tree name = DECL_NAME (decl);
4654 decl = push_template_decl_real (decl, globalize);
4655 /* If the current binding level is the binding level for the
4656 template parameters (see the comment in
4657 begin_template_parm_list) and the enclosing level is a class
4658 scope, and we're not looking at a friend, push the
4659 declaration of the member class into the class scope. In the
4660 friend case, push_template_decl will already have put the
4661 friend into global scope, if appropriate. */
4662 if (TREE_CODE (type) != ENUMERAL_TYPE
4663 && !globalize && b->kind == sk_template_parms
4664 && b->level_chain->kind == sk_class)
4666 finish_member_declaration (CLASSTYPE_TI_TEMPLATE (type));
4667 /* Put this UDT in the table of UDTs for the class, since
4668 that won't happen below because B is not the class
4669 binding level, but is instead the pseudo-global level. */
4670 if (b->level_chain->type_decls == NULL)
4671 b->level_chain->type_decls =
4672 binding_table_new (SCOPE_DEFAULT_HT_SIZE);
4673 binding_table_insert (b->level_chain->type_decls, name, type);
4674 if (!COMPLETE_TYPE_P (current_class_type))
4676 maybe_add_class_template_decl_list (current_class_type,
4677 type, /*friend_p=*/0);
4678 CLASSTYPE_NESTED_UTDS (current_class_type) =
4679 b->level_chain->type_decls;
4685 return decl;
4688 /* Push a tag name NAME for struct/class/union/enum type TYPE.
4689 Normally put it into the inner-most non-sk_cleanup scope,
4690 but if GLOBALIZE is true, put it in the inner-most non-class scope.
4691 The latter is needed for implicit declarations. */
4693 void
4694 pushtag (tree name, tree type, int globalize)
4696 struct cp_binding_level *b;
4698 timevar_push (TV_NAME_LOOKUP);
4699 b = current_binding_level;
4700 while (/* Cleanup scopes are not scopes from the point of view of
4701 the language. */
4702 b->kind == sk_cleanup
4703 /* Neither are the scopes used to hold template parameters
4704 for an explicit specialization. For an ordinary template
4705 declaration, these scopes are not scopes from the point of
4706 view of the language -- but we need a place to stash
4707 things that will go in the containing namespace when the
4708 template is instantiated. */
4709 || (b->kind == sk_template_parms && b->explicit_spec_p)
4710 || (b->kind == sk_class
4711 && (globalize
4712 /* We may be defining a new type in the initializer
4713 of a static member variable. We allow this when
4714 not pedantic, and it is particularly useful for
4715 type punning via an anonymous union. */
4716 || COMPLETE_TYPE_P (b->this_entity))))
4717 b = b->level_chain;
4719 if (b->type_decls == NULL)
4720 b->type_decls = binding_table_new (SCOPE_DEFAULT_HT_SIZE);
4721 binding_table_insert (b->type_decls, name, type);
4723 if (name)
4725 /* Do C++ gratuitous typedefing. */
4726 if (IDENTIFIER_TYPE_VALUE (name) != type)
4728 tree d = NULL_TREE;
4729 int in_class = 0;
4730 tree context = TYPE_CONTEXT (type);
4732 if (! context)
4734 tree cs = current_scope ();
4736 if (! globalize)
4737 context = cs;
4738 else if (cs != NULL_TREE && TYPE_P (cs))
4739 /* When declaring a friend class of a local class, we want
4740 to inject the newly named class into the scope
4741 containing the local class, not the namespace scope. */
4742 context = decl_function_context (get_type_decl (cs));
4744 if (!context)
4745 context = current_namespace;
4747 if (b->kind == sk_class
4748 || (b->kind == sk_template_parms
4749 && b->level_chain->kind == sk_class))
4750 in_class = 1;
4752 if (current_lang_name == lang_name_java)
4753 TYPE_FOR_JAVA (type) = 1;
4755 d = create_implicit_typedef (name, type);
4756 DECL_CONTEXT (d) = FROB_CONTEXT (context);
4757 if (! in_class)
4758 set_identifier_type_value_with_scope (name, d, b);
4760 d = maybe_process_template_type_declaration (type,
4761 globalize, b);
4763 if (b->kind == sk_class)
4765 if (!PROCESSING_REAL_TEMPLATE_DECL_P ())
4766 /* Put this TYPE_DECL on the TYPE_FIELDS list for the
4767 class. But if it's a member template class, we
4768 want the TEMPLATE_DECL, not the TYPE_DECL, so this
4769 is done later. */
4770 finish_member_declaration (d);
4771 else
4772 pushdecl_class_level (d);
4774 else
4775 d = pushdecl_with_scope (d, b);
4777 /* FIXME what if it gets a name from typedef? */
4778 if (ANON_AGGRNAME_P (name))
4779 DECL_IGNORED_P (d) = 1;
4781 TYPE_CONTEXT (type) = DECL_CONTEXT (d);
4783 /* If this is a local class, keep track of it. We need this
4784 information for name-mangling, and so that it is possible to find
4785 all function definitions in a translation unit in a convenient
4786 way. (It's otherwise tricky to find a member function definition
4787 it's only pointed to from within a local class.) */
4788 if (TYPE_CONTEXT (type)
4789 && TREE_CODE (TYPE_CONTEXT (type)) == FUNCTION_DECL
4790 && !processing_template_decl)
4791 VARRAY_PUSH_TREE (local_classes, type);
4793 if (b->kind == sk_class
4794 && !COMPLETE_TYPE_P (current_class_type))
4796 maybe_add_class_template_decl_list (current_class_type,
4797 type, /*friend_p=*/0);
4798 CLASSTYPE_NESTED_UTDS (current_class_type) = b->type_decls;
4802 if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
4803 /* Use the canonical TYPE_DECL for this node. */
4804 TYPE_STUB_DECL (type) = TYPE_NAME (type);
4805 else
4807 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE
4808 will be the tagged type we just added to the current
4809 binding level. This fake NULL-named TYPE_DECL node helps
4810 dwarfout.c to know when it needs to output a
4811 representation of a tagged type, and it also gives us a
4812 convenient place to record the "scope start" address for
4813 the tagged type. */
4815 tree d = build_decl (TYPE_DECL, NULL_TREE, type);
4816 TYPE_STUB_DECL (type) = pushdecl_with_scope (d, b);
4818 timevar_pop (TV_NAME_LOOKUP);
4821 /* Subroutines for reverting temporarily to top-level for instantiation
4822 of templates and such. We actually need to clear out the class- and
4823 local-value slots of all identifiers, so that only the global values
4824 are at all visible. Simply setting current_binding_level to the global
4825 scope isn't enough, because more binding levels may be pushed. */
4826 struct saved_scope *scope_chain;
4828 /* If ID has not already been marked, add an appropriate binding to
4829 *OLD_BINDINGS. */
4831 static void
4832 store_binding (tree id, VEC(cxx_saved_binding) **old_bindings)
4834 cxx_saved_binding *saved;
4836 if (!id
4837 /* Note that we may have an IDENTIFIER_CLASS_VALUE even when
4838 we have no IDENTIFIER_BINDING if we have left the class
4839 scope, but cached the class-level declarations. */
4840 || !(IDENTIFIER_BINDING (id) || IDENTIFIER_CLASS_VALUE (id)))
4841 return;
4843 if (IDENTIFIER_MARKED (id))
4844 return;
4846 IDENTIFIER_MARKED (id) = 1;
4848 saved = VEC_safe_push (cxx_saved_binding, *old_bindings, NULL);
4849 saved->identifier = id;
4850 saved->binding = IDENTIFIER_BINDING (id);
4851 saved->class_value = IDENTIFIER_CLASS_VALUE (id);;
4852 saved->real_type_value = REAL_IDENTIFIER_TYPE_VALUE (id);
4853 IDENTIFIER_BINDING (id) = NULL;
4854 IDENTIFIER_CLASS_VALUE (id) = NULL_TREE;
4857 static void
4858 store_bindings (tree names, VEC(cxx_saved_binding) **old_bindings)
4860 tree t;
4862 timevar_push (TV_NAME_LOOKUP);
4863 for (t = names; t; t = TREE_CHAIN (t))
4865 tree id;
4867 if (TREE_CODE (t) == TREE_LIST)
4868 id = TREE_PURPOSE (t);
4869 else
4870 id = DECL_NAME (t);
4872 store_binding (id, old_bindings);
4874 timevar_pop (TV_NAME_LOOKUP);
4877 /* Like store_bindings, but NAMES is a vector of cp_class_binding
4878 objects, rather than a TREE_LIST. */
4880 static void
4881 store_class_bindings (VEC(cp_class_binding) *names,
4882 VEC(cxx_saved_binding) **old_bindings)
4884 size_t i;
4885 cp_class_binding *cb;
4887 timevar_push (TV_NAME_LOOKUP);
4888 for (i = 0;
4889 (cb = VEC_iterate(cp_class_binding, names, i));
4890 ++i)
4891 store_binding (cb->identifier, old_bindings);
4892 timevar_pop (TV_NAME_LOOKUP);
4895 void
4896 push_to_top_level (void)
4898 struct saved_scope *s;
4899 struct cp_binding_level *b;
4900 cxx_saved_binding *sb;
4901 size_t i;
4902 int need_pop;
4904 timevar_push (TV_NAME_LOOKUP);
4905 s = ggc_alloc_cleared (sizeof (struct saved_scope));
4907 b = scope_chain ? current_binding_level : 0;
4909 /* If we're in the middle of some function, save our state. */
4910 if (cfun)
4912 need_pop = 1;
4913 push_function_context_to (NULL_TREE);
4915 else
4916 need_pop = 0;
4918 if (scope_chain && previous_class_level)
4919 store_class_bindings (previous_class_level->class_shadowed,
4920 &s->old_bindings);
4922 /* Have to include the global scope, because class-scope decls
4923 aren't listed anywhere useful. */
4924 for (; b; b = b->level_chain)
4926 tree t;
4928 /* Template IDs are inserted into the global level. If they were
4929 inserted into namespace level, finish_file wouldn't find them
4930 when doing pending instantiations. Therefore, don't stop at
4931 namespace level, but continue until :: . */
4932 if (global_scope_p (b))
4933 break;
4935 store_bindings (b->names, &s->old_bindings);
4936 /* We also need to check class_shadowed to save class-level type
4937 bindings, since pushclass doesn't fill in b->names. */
4938 if (b->kind == sk_class)
4939 store_class_bindings (b->class_shadowed, &s->old_bindings);
4941 /* Unwind type-value slots back to top level. */
4942 for (t = b->type_shadowed; t; t = TREE_CHAIN (t))
4943 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (t), TREE_VALUE (t));
4946 for (i = 0;
4947 (sb = VEC_iterate (cxx_saved_binding, s->old_bindings, i));
4948 ++i)
4949 IDENTIFIER_MARKED (sb->identifier) = 0;
4951 s->prev = scope_chain;
4952 s->bindings = b;
4953 s->need_pop_function_context = need_pop;
4954 s->function_decl = current_function_decl;
4956 scope_chain = s;
4957 current_function_decl = NULL_TREE;
4958 VARRAY_TREE_INIT (current_lang_base, 10, "current_lang_base");
4959 current_lang_name = lang_name_cplusplus;
4960 current_namespace = global_namespace;
4961 timevar_pop (TV_NAME_LOOKUP);
4964 void
4965 pop_from_top_level (void)
4967 struct saved_scope *s = scope_chain;
4968 cxx_saved_binding *saved;
4969 size_t i;
4971 timevar_push (TV_NAME_LOOKUP);
4972 /* Clear out class-level bindings cache. */
4973 if (previous_class_level)
4974 invalidate_class_lookup_cache ();
4976 current_lang_base = 0;
4978 scope_chain = s->prev;
4979 for (i = 0;
4980 (saved = VEC_iterate (cxx_saved_binding, s->old_bindings, i));
4981 ++i)
4983 tree id = saved->identifier;
4985 IDENTIFIER_BINDING (id) = saved->binding;
4986 IDENTIFIER_CLASS_VALUE (id) = saved->class_value;
4987 SET_IDENTIFIER_TYPE_VALUE (id, saved->real_type_value);
4990 /* If we were in the middle of compiling a function, restore our
4991 state. */
4992 if (s->need_pop_function_context)
4993 pop_function_context_from (NULL_TREE);
4994 current_function_decl = s->function_decl;
4995 timevar_pop (TV_NAME_LOOKUP);
4998 /* Pop off extraneous binding levels left over due to syntax errors.
5000 We don't pop past namespaces, as they might be valid. */
5002 void
5003 pop_everything (void)
5005 if (ENABLE_SCOPE_CHECKING)
5006 verbatim ("XXX entering pop_everything ()\n");
5007 while (!toplevel_bindings_p ())
5009 if (current_binding_level->kind == sk_class)
5010 pop_nested_class ();
5011 else
5012 poplevel (0, 0, 0);
5014 if (ENABLE_SCOPE_CHECKING)
5015 verbatim ("XXX leaving pop_everything ()\n");
5018 /* Emit debugging information for using declarations and directives.
5019 If input tree is overloaded fn then emit debug info for all
5020 candidates. */
5022 static void
5023 cp_emit_debug_info_for_using (tree t, tree context)
5025 /* Ignore this FUNCTION_DECL if it refers to a builtin declaration
5026 of a builtin function. */
5027 if (TREE_CODE (t) == FUNCTION_DECL
5028 && DECL_EXTERNAL (t)
5029 && DECL_BUILT_IN (t))
5030 return;
5032 /* Do not supply context to imported_module_or_decl, if
5033 it is a global namespace. */
5034 if (context == global_namespace)
5035 context = NULL_TREE;
5037 if (BASELINK_P (t))
5038 t = BASELINK_FUNCTIONS (t);
5040 /* FIXME: Handle TEMPLATE_DECLs. */
5041 for (t = OVL_CURRENT (t); t; t = OVL_NEXT (t))
5042 if (TREE_CODE (t) != TEMPLATE_DECL)
5043 (*debug_hooks->imported_module_or_decl) (t, context);
5046 #include "gt-cp-name-lookup.h"