Merged r156806 through r156977 into branch.
[official-gcc.git] / gcc / cp / name-lookup.c
blob7b43d30f47e8f58029bf6897b2dfff4a0029cc93
1 /* Definitions for C++ name lookup routines.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
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"
34 #include "c-pragma.h"
36 /* The bindings for a particular name in a particular scope. */
38 struct scope_binding {
39 tree value;
40 tree type;
42 #define EMPTY_SCOPE_BINDING { NULL_TREE, NULL_TREE }
44 static cxx_scope *innermost_nonclass_level (void);
45 static cxx_binding *binding_for_name (cxx_scope *, tree);
46 static tree push_overloaded_decl (tree, int, bool);
47 static bool lookup_using_namespace (tree, struct scope_binding *, tree,
48 tree, int);
49 static bool qualified_lookup_using_namespace (tree, tree,
50 struct scope_binding *, int);
51 static tree lookup_type_current_level (tree);
52 static tree push_using_directive (tree);
53 static cxx_binding* lookup_extern_c_fun_binding_in_all_ns (tree);
55 /* The :: namespace. */
57 tree global_namespace;
59 /* The name of the anonymous namespace, throughout this translation
60 unit. */
61 static GTY(()) tree anonymous_namespace_name;
63 /* Initialize anonymous_namespace_name if necessary, and return it. */
65 static tree
66 get_anonymous_namespace_name (void)
68 if (!anonymous_namespace_name)
70 /* The anonymous namespace has to have a unique name
71 if typeinfo objects are being compared by name. */
72 if (! flag_weak || ! SUPPORTS_ONE_ONLY)
73 anonymous_namespace_name = get_file_function_name ("N");
74 else
75 /* The demangler expects anonymous namespaces to be called
76 something starting with '_GLOBAL__N_'. */
77 anonymous_namespace_name = get_identifier ("_GLOBAL__N_1");
79 return anonymous_namespace_name;
82 /* Compute the chain index of a binding_entry given the HASH value of its
83 name and the total COUNT of chains. COUNT is assumed to be a power
84 of 2. */
86 #define ENTRY_INDEX(HASH, COUNT) (((HASH) >> 3) & ((COUNT) - 1))
88 /* A free list of "binding_entry"s awaiting for re-use. */
90 static GTY((deletable)) binding_entry free_binding_entry = NULL;
92 /* Create a binding_entry object for (NAME, TYPE). */
94 static inline binding_entry
95 binding_entry_make (tree name, tree type)
97 binding_entry entry;
99 if (free_binding_entry)
101 entry = free_binding_entry;
102 free_binding_entry = entry->chain;
104 else
105 entry = GGC_NEW (struct binding_entry_s);
107 entry->name = name;
108 entry->type = type;
109 entry->chain = NULL;
111 return entry;
114 /* Put ENTRY back on the free list. */
115 #if 0
116 static inline void
117 binding_entry_free (binding_entry entry)
119 entry->name = NULL;
120 entry->type = NULL;
121 entry->chain = free_binding_entry;
122 free_binding_entry = entry;
124 #endif
126 /* The datatype used to implement the mapping from names to types at
127 a given scope. */
128 struct GTY(()) binding_table_s {
129 /* Array of chains of "binding_entry"s */
130 binding_entry * GTY((length ("%h.chain_count"))) chain;
132 /* The number of chains in this table. This is the length of the
133 member "chain" considered as an array. */
134 size_t chain_count;
136 /* Number of "binding_entry"s in this table. */
137 size_t entry_count;
140 /* Construct TABLE with an initial CHAIN_COUNT. */
142 static inline void
143 binding_table_construct (binding_table table, size_t chain_count)
145 table->chain_count = chain_count;
146 table->entry_count = 0;
147 table->chain = GGC_CNEWVEC (binding_entry, table->chain_count);
150 /* Make TABLE's entries ready for reuse. */
151 #if 0
152 static void
153 binding_table_free (binding_table table)
155 size_t i;
156 size_t count;
158 if (table == NULL)
159 return;
161 for (i = 0, count = table->chain_count; i < count; ++i)
163 binding_entry temp = table->chain[i];
164 while (temp != NULL)
166 binding_entry entry = temp;
167 temp = entry->chain;
168 binding_entry_free (entry);
170 table->chain[i] = NULL;
172 table->entry_count = 0;
174 #endif
176 /* Allocate a table with CHAIN_COUNT, assumed to be a power of two. */
178 static inline binding_table
179 binding_table_new (size_t chain_count)
181 binding_table table = GGC_NEW (struct binding_table_s);
182 table->chain = NULL;
183 binding_table_construct (table, chain_count);
184 return table;
187 /* Expand TABLE to twice its current chain_count. */
189 static void
190 binding_table_expand (binding_table table)
192 const size_t old_chain_count = table->chain_count;
193 const size_t old_entry_count = table->entry_count;
194 const size_t new_chain_count = 2 * old_chain_count;
195 binding_entry *old_chains = table->chain;
196 size_t i;
198 binding_table_construct (table, new_chain_count);
199 for (i = 0; i < old_chain_count; ++i)
201 binding_entry entry = old_chains[i];
202 for (; entry != NULL; entry = old_chains[i])
204 const unsigned int hash = IDENTIFIER_HASH_VALUE (entry->name);
205 const size_t j = ENTRY_INDEX (hash, new_chain_count);
207 old_chains[i] = entry->chain;
208 entry->chain = table->chain[j];
209 table->chain[j] = entry;
212 table->entry_count = old_entry_count;
215 /* Insert a binding for NAME to TYPE into TABLE. */
217 static void
218 binding_table_insert (binding_table table, tree name, tree type)
220 const unsigned int hash = IDENTIFIER_HASH_VALUE (name);
221 const size_t i = ENTRY_INDEX (hash, table->chain_count);
222 binding_entry entry = binding_entry_make (name, type);
224 entry->chain = table->chain[i];
225 table->chain[i] = entry;
226 ++table->entry_count;
228 if (3 * table->chain_count < 5 * table->entry_count)
229 binding_table_expand (table);
232 /* Return the binding_entry, if any, that maps NAME. */
234 binding_entry
235 binding_table_find (binding_table table, tree name)
237 const unsigned int hash = IDENTIFIER_HASH_VALUE (name);
238 binding_entry entry = table->chain[ENTRY_INDEX (hash, table->chain_count)];
240 while (entry != NULL && entry->name != name)
241 entry = entry->chain;
243 return entry;
246 /* Apply PROC -- with DATA -- to all entries in TABLE. */
248 void
249 binding_table_foreach (binding_table table, bt_foreach_proc proc, void *data)
251 const size_t chain_count = table->chain_count;
252 size_t i;
254 for (i = 0; i < chain_count; ++i)
256 binding_entry entry = table->chain[i];
257 for (; entry != NULL; entry = entry->chain)
258 proc (entry, data);
262 #ifndef ENABLE_SCOPE_CHECKING
263 # define ENABLE_SCOPE_CHECKING 0
264 #else
265 # define ENABLE_SCOPE_CHECKING 1
266 #endif
268 /* A free list of "cxx_binding"s, connected by their PREVIOUS. */
270 static GTY((deletable)) cxx_binding *free_bindings;
272 /* Initialize VALUE and TYPE field for BINDING, and set the PREVIOUS
273 field to NULL. */
275 static inline void
276 cxx_binding_init (cxx_binding *binding, tree value, tree type)
278 binding->value = value;
279 binding->type = type;
280 binding->previous = NULL;
283 /* (GC)-allocate a binding object with VALUE and TYPE member initialized. */
285 static cxx_binding *
286 cxx_binding_make (tree value, tree type)
288 cxx_binding *binding;
289 if (free_bindings)
291 binding = free_bindings;
292 free_bindings = binding->previous;
294 else
295 binding = GGC_NEW (cxx_binding);
297 cxx_binding_init (binding, value, type);
299 return binding;
302 /* Put BINDING back on the free list. */
304 static inline void
305 cxx_binding_free (cxx_binding *binding)
307 binding->scope = NULL;
308 binding->previous = free_bindings;
309 free_bindings = binding;
312 /* Create a new binding for NAME (with the indicated VALUE and TYPE
313 bindings) in the class scope indicated by SCOPE. */
315 static cxx_binding *
316 new_class_binding (tree name, tree value, tree type, cxx_scope *scope)
318 cp_class_binding *cb;
319 cxx_binding *binding;
321 if (VEC_length (cp_class_binding, scope->class_shadowed))
323 cp_class_binding *old_base;
324 old_base = VEC_index (cp_class_binding, scope->class_shadowed, 0);
325 if (VEC_reserve (cp_class_binding, gc, scope->class_shadowed, 1))
327 /* Fixup the current bindings, as they might have moved. */
328 size_t i;
330 for (i = 0;
331 VEC_iterate (cp_class_binding, scope->class_shadowed, i, cb);
332 i++)
334 cxx_binding **b;
335 b = &IDENTIFIER_BINDING (cb->identifier);
336 while (*b != &old_base[i].base)
337 b = &((*b)->previous);
338 *b = &cb->base;
341 cb = VEC_quick_push (cp_class_binding, scope->class_shadowed, NULL);
343 else
344 cb = VEC_safe_push (cp_class_binding, gc, scope->class_shadowed, NULL);
346 cb->identifier = name;
347 binding = &cb->base;
348 binding->scope = scope;
349 cxx_binding_init (binding, value, type);
350 return binding;
353 /* Make DECL the innermost binding for ID. The LEVEL is the binding
354 level at which this declaration is being bound. */
356 static void
357 push_binding (tree id, tree decl, cxx_scope* level)
359 cxx_binding *binding;
361 if (level != class_binding_level)
363 binding = cxx_binding_make (decl, NULL_TREE);
364 binding->scope = level;
366 else
367 binding = new_class_binding (id, decl, /*type=*/NULL_TREE, level);
369 /* Now, fill in the binding information. */
370 binding->previous = IDENTIFIER_BINDING (id);
371 INHERITED_VALUE_BINDING_P (binding) = 0;
372 LOCAL_BINDING_P (binding) = (level != class_binding_level);
374 /* And put it on the front of the list of bindings for ID. */
375 IDENTIFIER_BINDING (id) = binding;
378 /* Remove the binding for DECL which should be the innermost binding
379 for ID. */
381 void
382 pop_binding (tree id, tree decl)
384 cxx_binding *binding;
386 if (id == NULL_TREE)
387 /* It's easiest to write the loops that call this function without
388 checking whether or not the entities involved have names. We
389 get here for such an entity. */
390 return;
392 /* Get the innermost binding for ID. */
393 binding = IDENTIFIER_BINDING (id);
395 /* The name should be bound. */
396 gcc_assert (binding != NULL);
398 /* The DECL will be either the ordinary binding or the type
399 binding for this identifier. Remove that binding. */
400 if (binding->value == decl)
401 binding->value = NULL_TREE;
402 else
404 gcc_assert (binding->type == decl);
405 binding->type = NULL_TREE;
408 if (!binding->value && !binding->type)
410 /* We're completely done with the innermost binding for this
411 identifier. Unhook it from the list of bindings. */
412 IDENTIFIER_BINDING (id) = binding->previous;
414 /* Add it to the free list. */
415 cxx_binding_free (binding);
419 /* BINDING records an existing declaration for a name in the current scope.
420 But, DECL is another declaration for that same identifier in the
421 same scope. This is the `struct stat' hack whereby a non-typedef
422 class name or enum-name can be bound at the same level as some other
423 kind of entity.
424 3.3.7/1
426 A class name (9.1) or enumeration name (7.2) can be hidden by the
427 name of an object, function, or enumerator declared in the same scope.
428 If a class or enumeration name and an object, function, or enumerator
429 are declared in the same scope (in any order) with the same name, the
430 class or enumeration name is hidden wherever the object, function, or
431 enumerator name is visible.
433 It's the responsibility of the caller to check that
434 inserting this name is valid here. Returns nonzero if the new binding
435 was successful. */
437 static bool
438 supplement_binding (cxx_binding *binding, tree decl)
440 tree bval = binding->value;
441 bool ok = true;
443 timevar_push (TV_NAME_LOOKUP);
444 if (TREE_CODE (decl) == TYPE_DECL && DECL_ARTIFICIAL (decl))
445 /* The new name is the type name. */
446 binding->type = decl;
447 else if (/* BVAL is null when push_class_level_binding moves an
448 inherited type-binding out of the way to make room for a
449 new value binding. */
450 !bval
451 /* BVAL is error_mark_node when DECL's name has been used
452 in a non-class scope prior declaration. In that case,
453 we should have already issued a diagnostic; for graceful
454 error recovery purpose, pretend this was the intended
455 declaration for that name. */
456 || bval == error_mark_node
457 /* If BVAL is anticipated but has not yet been declared,
458 pretend it is not there at all. */
459 || (TREE_CODE (bval) == FUNCTION_DECL
460 && DECL_ANTICIPATED (bval)
461 && !DECL_HIDDEN_FRIEND_P (bval)))
462 binding->value = decl;
463 else if (TREE_CODE (bval) == TYPE_DECL && DECL_ARTIFICIAL (bval))
465 /* The old binding was a type name. It was placed in
466 VALUE field because it was thought, at the point it was
467 declared, to be the only entity with such a name. Move the
468 type name into the type slot; it is now hidden by the new
469 binding. */
470 binding->type = bval;
471 binding->value = decl;
472 binding->value_is_inherited = false;
474 else if (TREE_CODE (bval) == TYPE_DECL
475 && TREE_CODE (decl) == TYPE_DECL
476 && DECL_NAME (decl) == DECL_NAME (bval)
477 && binding->scope->kind != sk_class
478 && (same_type_p (TREE_TYPE (decl), TREE_TYPE (bval))
479 /* If either type involves template parameters, we must
480 wait until instantiation. */
481 || uses_template_parms (TREE_TYPE (decl))
482 || uses_template_parms (TREE_TYPE (bval))))
483 /* We have two typedef-names, both naming the same type to have
484 the same name. In general, this is OK because of:
486 [dcl.typedef]
488 In a given scope, a typedef specifier can be used to redefine
489 the name of any type declared in that scope to refer to the
490 type to which it already refers.
492 However, in class scopes, this rule does not apply due to the
493 stricter language in [class.mem] prohibiting redeclarations of
494 members. */
495 ok = false;
496 /* There can be two block-scope declarations of the same variable,
497 so long as they are `extern' declarations. However, there cannot
498 be two declarations of the same static data member:
500 [class.mem]
502 A member shall not be declared twice in the
503 member-specification. */
504 else if (TREE_CODE (decl) == VAR_DECL && TREE_CODE (bval) == VAR_DECL
505 && DECL_EXTERNAL (decl) && DECL_EXTERNAL (bval)
506 && !DECL_CLASS_SCOPE_P (decl))
508 duplicate_decls (decl, binding->value, /*newdecl_is_friend=*/false);
509 ok = false;
511 else if (TREE_CODE (decl) == NAMESPACE_DECL
512 && TREE_CODE (bval) == NAMESPACE_DECL
513 && DECL_NAMESPACE_ALIAS (decl)
514 && DECL_NAMESPACE_ALIAS (bval)
515 && ORIGINAL_NAMESPACE (bval) == ORIGINAL_NAMESPACE (decl))
516 /* [namespace.alias]
518 In a declarative region, a namespace-alias-definition can be
519 used to redefine a namespace-alias declared in that declarative
520 region to refer only to the namespace to which it already
521 refers. */
522 ok = false;
523 else
525 error ("declaration of %q#D", decl);
526 error ("conflicts with previous declaration %q+#D", bval);
527 ok = false;
530 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ok);
533 /* Add DECL to the list of things declared in B. */
535 static void
536 add_decl_to_level (tree decl, cxx_scope *b)
538 /* We used to record virtual tables as if they were ordinary
539 variables, but no longer do so. */
540 gcc_assert (!(TREE_CODE (decl) == VAR_DECL && DECL_VIRTUAL_P (decl)));
542 if (TREE_CODE (decl) == NAMESPACE_DECL
543 && !DECL_NAMESPACE_ALIAS (decl))
545 TREE_CHAIN (decl) = b->namespaces;
546 b->namespaces = decl;
548 else
550 /* We build up the list in reverse order, and reverse it later if
551 necessary. */
552 TREE_CHAIN (decl) = b->names;
553 b->names = decl;
554 b->names_size++;
556 /* If appropriate, add decl to separate list of statics. We
557 include extern variables because they might turn out to be
558 static later. It's OK for this list to contain a few false
559 positives. */
560 if (b->kind == sk_namespace)
561 if ((TREE_CODE (decl) == VAR_DECL
562 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
563 || (TREE_CODE (decl) == FUNCTION_DECL
564 && (!TREE_PUBLIC (decl) || DECL_DECLARED_INLINE_P (decl))))
565 VEC_safe_push (tree, gc, b->static_decls, decl);
569 /* Record a decl-node X as belonging to the current lexical scope.
570 Check for errors (such as an incompatible declaration for the same
571 name already seen in the same scope). IS_FRIEND is true if X is
572 declared as a friend.
574 Returns either X or an old decl for the same name.
575 If an old decl is returned, it may have been smashed
576 to agree with what X says. */
578 tree
579 pushdecl_maybe_friend (tree x, bool is_friend)
581 tree t;
582 tree name;
583 int need_new_binding;
585 timevar_push (TV_NAME_LOOKUP);
587 if (x == error_mark_node)
588 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
590 need_new_binding = 1;
592 if (DECL_TEMPLATE_PARM_P (x))
593 /* Template parameters have no context; they are not X::T even
594 when declared within a class or namespace. */
596 else
598 if (current_function_decl && x != current_function_decl
599 /* A local declaration for a function doesn't constitute
600 nesting. */
601 && TREE_CODE (x) != FUNCTION_DECL
602 /* A local declaration for an `extern' variable is in the
603 scope of the current namespace, not the current
604 function. */
605 && !(TREE_CODE (x) == VAR_DECL && DECL_EXTERNAL (x))
606 /* When parsing the parameter list of a function declarator,
607 don't set DECL_CONTEXT to an enclosing function. When we
608 push the PARM_DECLs in order to process the function body,
609 current_binding_level->this_entity will be set. */
610 && !(TREE_CODE (x) == PARM_DECL
611 && current_binding_level->kind == sk_function_parms
612 && current_binding_level->this_entity == NULL)
613 && !DECL_CONTEXT (x))
614 DECL_CONTEXT (x) = current_function_decl;
616 /* If this is the declaration for a namespace-scope function,
617 but the declaration itself is in a local scope, mark the
618 declaration. */
619 if (TREE_CODE (x) == FUNCTION_DECL
620 && DECL_NAMESPACE_SCOPE_P (x)
621 && current_function_decl
622 && x != current_function_decl)
623 DECL_LOCAL_FUNCTION_P (x) = 1;
626 name = DECL_NAME (x);
627 if (name)
629 int different_binding_level = 0;
631 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
632 name = TREE_OPERAND (name, 0);
634 /* In case this decl was explicitly namespace-qualified, look it
635 up in its namespace context. */
636 if (DECL_NAMESPACE_SCOPE_P (x) && namespace_bindings_p ())
637 t = namespace_binding (name, DECL_CONTEXT (x));
638 else
639 t = lookup_name_innermost_nonclass_level (name);
641 /* [basic.link] If there is a visible declaration of an entity
642 with linkage having the same name and type, ignoring entities
643 declared outside the innermost enclosing namespace scope, the
644 block scope declaration declares that same entity and
645 receives the linkage of the previous declaration. */
646 if (! t && current_function_decl && x != current_function_decl
647 && (TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
648 && DECL_EXTERNAL (x))
650 /* Look in block scope. */
651 t = innermost_non_namespace_value (name);
652 /* Or in the innermost namespace. */
653 if (! t)
654 t = namespace_binding (name, DECL_CONTEXT (x));
655 /* Does it have linkage? Note that if this isn't a DECL, it's an
656 OVERLOAD, which is OK. */
657 if (t && DECL_P (t) && ! (TREE_STATIC (t) || DECL_EXTERNAL (t)))
658 t = NULL_TREE;
659 if (t)
660 different_binding_level = 1;
663 /* If we are declaring a function, and the result of name-lookup
664 was an OVERLOAD, look for an overloaded instance that is
665 actually the same as the function we are declaring. (If
666 there is one, we have to merge our declaration with the
667 previous declaration.) */
668 if (t && TREE_CODE (t) == OVERLOAD)
670 tree match;
672 if (TREE_CODE (x) == FUNCTION_DECL)
673 for (match = t; match; match = OVL_NEXT (match))
675 if (decls_match (OVL_CURRENT (match), x))
676 break;
678 else
679 /* Just choose one. */
680 match = t;
682 if (match)
683 t = OVL_CURRENT (match);
684 else
685 t = NULL_TREE;
688 if (t && t != error_mark_node)
690 if (different_binding_level)
692 if (decls_match (x, t))
693 /* The standard only says that the local extern
694 inherits linkage from the previous decl; in
695 particular, default args are not shared. Add
696 the decl into a hash table to make sure only
697 the previous decl in this case is seen by the
698 middle end. */
700 struct cxx_int_tree_map *h;
701 void **loc;
703 TREE_PUBLIC (x) = TREE_PUBLIC (t);
705 if (cp_function_chain->extern_decl_map == NULL)
706 cp_function_chain->extern_decl_map
707 = htab_create_ggc (20, cxx_int_tree_map_hash,
708 cxx_int_tree_map_eq, NULL);
710 h = GGC_NEW (struct cxx_int_tree_map);
711 h->uid = DECL_UID (x);
712 h->to = t;
713 loc = htab_find_slot_with_hash
714 (cp_function_chain->extern_decl_map, h,
715 h->uid, INSERT);
716 *(struct cxx_int_tree_map **) loc = h;
719 else if (TREE_CODE (t) == PARM_DECL)
721 /* Check for duplicate params. */
722 tree d = duplicate_decls (x, t, is_friend);
723 if (d)
724 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, d);
726 else if ((DECL_EXTERN_C_FUNCTION_P (x)
727 || DECL_FUNCTION_TEMPLATE_P (x))
728 && is_overloaded_fn (t))
729 /* Don't do anything just yet. */;
730 else if (t == wchar_decl_node)
732 if (! DECL_IN_SYSTEM_HEADER (x))
733 pedwarn (input_location, OPT_pedantic, "redeclaration of %<wchar_t%> as %qT",
734 TREE_TYPE (x));
736 /* Throw away the redeclaration. */
737 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
739 else
741 tree olddecl = duplicate_decls (x, t, is_friend);
743 /* If the redeclaration failed, we can stop at this
744 point. */
745 if (olddecl == error_mark_node)
746 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
748 if (olddecl)
750 if (TREE_CODE (t) == TYPE_DECL)
751 SET_IDENTIFIER_TYPE_VALUE (name, TREE_TYPE (t));
753 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
755 else if (DECL_MAIN_P (x) && TREE_CODE (t) == FUNCTION_DECL)
757 /* A redeclaration of main, but not a duplicate of the
758 previous one.
760 [basic.start.main]
762 This function shall not be overloaded. */
763 error ("invalid redeclaration of %q+D", t);
764 error ("as %qD", x);
765 /* We don't try to push this declaration since that
766 causes a crash. */
767 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
772 /* If x has C linkage-specification, (extern "C"),
773 lookup its binding, in case it's already bound to an object.
774 The lookup is done in all namespaces.
775 If we find an existing binding, make sure it has the same
776 exception specification as x, otherwise, bail in error [7.5, 7.6]. */
777 if ((TREE_CODE (x) == FUNCTION_DECL)
778 && DECL_EXTERN_C_P (x)
779 /* We should ignore declarations happening in system headers. */
780 && !DECL_ARTIFICIAL (x)
781 && !DECL_IN_SYSTEM_HEADER (x))
783 cxx_binding *function_binding =
784 lookup_extern_c_fun_binding_in_all_ns (x);
785 tree previous = (function_binding
786 ? function_binding->value
787 : NULL_TREE);
788 if (previous
789 && !DECL_ARTIFICIAL (previous)
790 && !DECL_IN_SYSTEM_HEADER (previous)
791 && DECL_CONTEXT (previous) != DECL_CONTEXT (x))
793 tree previous = function_binding->value;
795 /* In case either x or previous is declared to throw an exception,
796 make sure both exception specifications are equal. */
797 if (decls_match (x, previous))
799 tree x_exception_spec = NULL_TREE;
800 tree previous_exception_spec = NULL_TREE;
802 x_exception_spec =
803 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (x));
804 previous_exception_spec =
805 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (previous));
806 if (!comp_except_specs (previous_exception_spec,
807 x_exception_spec,
808 true))
810 pedwarn (input_location, 0, "declaration of %q#D with C language linkage",
812 pedwarn (input_location, 0, "conflicts with previous declaration %q+#D",
813 previous);
814 pedwarn (input_location, 0, "due to different exception specifications");
815 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
818 else
820 pedwarn (input_location, 0,
821 "declaration of %q#D with C language linkage", x);
822 pedwarn (input_location, 0,
823 "conflicts with previous declaration %q+#D",
824 previous);
829 check_template_shadow (x);
831 /* If this is a function conjured up by the back end, massage it
832 so it looks friendly. */
833 if (DECL_NON_THUNK_FUNCTION_P (x) && ! DECL_LANG_SPECIFIC (x))
835 retrofit_lang_decl (x);
836 SET_DECL_LANGUAGE (x, lang_c);
839 t = x;
840 if (DECL_NON_THUNK_FUNCTION_P (x) && ! DECL_FUNCTION_MEMBER_P (x))
842 t = push_overloaded_decl (x, PUSH_LOCAL, is_friend);
843 if (!namespace_bindings_p ())
844 /* We do not need to create a binding for this name;
845 push_overloaded_decl will have already done so if
846 necessary. */
847 need_new_binding = 0;
849 else if (DECL_FUNCTION_TEMPLATE_P (x) && DECL_NAMESPACE_SCOPE_P (x))
851 t = push_overloaded_decl (x, PUSH_GLOBAL, is_friend);
852 if (t == x)
853 add_decl_to_level (x, NAMESPACE_LEVEL (CP_DECL_CONTEXT (t)));
856 if (TREE_CODE (t) == FUNCTION_DECL || DECL_FUNCTION_TEMPLATE_P (t))
857 check_default_args (t);
859 if (t != x || DECL_FUNCTION_TEMPLATE_P (t))
860 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
862 /* If declaring a type as a typedef, copy the type (unless we're
863 at line 0), and install this TYPE_DECL as the new type's typedef
864 name. See the extensive comment of set_underlying_type (). */
865 if (TREE_CODE (x) == TYPE_DECL)
867 tree type = TREE_TYPE (x);
869 if (DECL_IS_BUILTIN (x)
870 || (TREE_TYPE (x) != error_mark_node
871 && TYPE_NAME (type) != x
872 /* We don't want to copy the type when all we're
873 doing is making a TYPE_DECL for the purposes of
874 inlining. */
875 && (!TYPE_NAME (type)
876 || TYPE_NAME (type) != DECL_ABSTRACT_ORIGIN (x))))
877 cp_set_underlying_type (x);
879 if (type != error_mark_node
880 && TYPE_NAME (type)
881 && TYPE_IDENTIFIER (type))
882 set_identifier_type_value (DECL_NAME (x), x);
885 /* Multiple external decls of the same identifier ought to match.
887 We get warnings about inline functions where they are defined.
888 We get warnings about other functions from push_overloaded_decl.
890 Avoid duplicate warnings where they are used. */
891 if (TREE_PUBLIC (x) && TREE_CODE (x) != FUNCTION_DECL)
893 tree decl;
895 decl = IDENTIFIER_NAMESPACE_VALUE (name);
896 if (decl && TREE_CODE (decl) == OVERLOAD)
897 decl = OVL_FUNCTION (decl);
899 if (decl && decl != error_mark_node
900 && (DECL_EXTERNAL (decl) || TREE_PUBLIC (decl))
901 /* If different sort of thing, we already gave an error. */
902 && TREE_CODE (decl) == TREE_CODE (x)
903 && !same_type_p (TREE_TYPE (x), TREE_TYPE (decl)))
905 permerror (input_location, "type mismatch with previous external decl of %q#D", x);
906 permerror (input_location, "previous external decl of %q+#D", decl);
910 if (TREE_CODE (x) == FUNCTION_DECL
911 && is_friend
912 && !flag_friend_injection)
914 /* This is a new declaration of a friend function, so hide
915 it from ordinary function lookup. */
916 DECL_ANTICIPATED (x) = 1;
917 DECL_HIDDEN_FRIEND_P (x) = 1;
920 /* This name is new in its binding level.
921 Install the new declaration and return it. */
922 if (namespace_bindings_p ())
924 /* Install a global value. */
926 /* If the first global decl has external linkage,
927 warn if we later see static one. */
928 if (IDENTIFIER_GLOBAL_VALUE (name) == NULL_TREE && TREE_PUBLIC (x))
929 TREE_PUBLIC (name) = 1;
931 /* Bind the name for the entity. */
932 if (!(TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)
933 && t != NULL_TREE)
934 && (TREE_CODE (x) == TYPE_DECL
935 || TREE_CODE (x) == VAR_DECL
936 || TREE_CODE (x) == NAMESPACE_DECL
937 || TREE_CODE (x) == CONST_DECL
938 || TREE_CODE (x) == TEMPLATE_DECL))
939 SET_IDENTIFIER_NAMESPACE_VALUE (name, x);
941 /* If new decl is `static' and an `extern' was seen previously,
942 warn about it. */
943 if (x != NULL_TREE && t != NULL_TREE && decls_match (x, t))
944 warn_extern_redeclared_static (x, t);
946 else
948 /* Here to install a non-global value. */
949 tree oldlocal = innermost_non_namespace_value (name);
950 tree oldglobal = IDENTIFIER_NAMESPACE_VALUE (name);
952 if (need_new_binding)
954 push_local_binding (name, x, 0);
955 /* Because push_local_binding will hook X on to the
956 current_binding_level's name list, we don't want to
957 do that again below. */
958 need_new_binding = 0;
961 /* If this is a TYPE_DECL, push it into the type value slot. */
962 if (TREE_CODE (x) == TYPE_DECL)
963 set_identifier_type_value (name, x);
965 /* Clear out any TYPE_DECL shadowed by a namespace so that
966 we won't think this is a type. The C struct hack doesn't
967 go through namespaces. */
968 if (TREE_CODE (x) == NAMESPACE_DECL)
969 set_identifier_type_value (name, NULL_TREE);
971 if (oldlocal)
973 tree d = oldlocal;
975 while (oldlocal
976 && TREE_CODE (oldlocal) == VAR_DECL
977 && DECL_DEAD_FOR_LOCAL (oldlocal))
978 oldlocal = DECL_SHADOWED_FOR_VAR (oldlocal);
980 if (oldlocal == NULL_TREE)
981 oldlocal = IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (d));
984 /* If this is an extern function declaration, see if we
985 have a global definition or declaration for the function. */
986 if (oldlocal == NULL_TREE
987 && DECL_EXTERNAL (x)
988 && oldglobal != NULL_TREE
989 && TREE_CODE (x) == FUNCTION_DECL
990 && TREE_CODE (oldglobal) == FUNCTION_DECL)
992 /* We have one. Their types must agree. */
993 if (decls_match (x, oldglobal))
994 /* OK */;
995 else
997 warning (0, "extern declaration of %q#D doesn't match", x);
998 warning (0, "global declaration %q+#D", oldglobal);
1001 /* If we have a local external declaration,
1002 and no file-scope declaration has yet been seen,
1003 then if we later have a file-scope decl it must not be static. */
1004 if (oldlocal == NULL_TREE
1005 && oldglobal == NULL_TREE
1006 && DECL_EXTERNAL (x)
1007 && TREE_PUBLIC (x))
1008 TREE_PUBLIC (name) = 1;
1010 /* Don't complain about the parms we push and then pop
1011 while tentatively parsing a function declarator. */
1012 if (TREE_CODE (x) == PARM_DECL && DECL_CONTEXT (x) == NULL_TREE)
1013 /* Ignore. */;
1015 /* Warn if shadowing an argument at the top level of the body. */
1016 else if (oldlocal != NULL_TREE && !DECL_EXTERNAL (x)
1017 /* Inline decls shadow nothing. */
1018 && !DECL_FROM_INLINE (x)
1019 && TREE_CODE (oldlocal) == PARM_DECL
1020 /* Don't check the `this' parameter. */
1021 && !DECL_ARTIFICIAL (oldlocal))
1023 bool err = false;
1025 /* Don't complain if it's from an enclosing function. */
1026 if (DECL_CONTEXT (oldlocal) == current_function_decl
1027 && TREE_CODE (x) != PARM_DECL)
1029 /* Go to where the parms should be and see if we find
1030 them there. */
1031 struct cp_binding_level *b = current_binding_level->level_chain;
1033 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
1034 /* Skip the ctor/dtor cleanup level. */
1035 b = b->level_chain;
1037 /* ARM $8.3 */
1038 if (b->kind == sk_function_parms)
1040 error ("declaration of %q#D shadows a parameter", x);
1041 err = true;
1045 if (warn_shadow && !err)
1047 warning_at (input_location, OPT_Wshadow,
1048 "declaration of %q#D shadows a parameter", x);
1049 warning_at (DECL_SOURCE_LOCATION (oldlocal), OPT_Wshadow,
1050 "shadowed declaration is here");
1054 /* Maybe warn if shadowing something else. */
1055 else if (warn_shadow && !DECL_EXTERNAL (x)
1056 /* No shadow warnings for internally generated vars. */
1057 && ! DECL_ARTIFICIAL (x)
1058 /* No shadow warnings for vars made for inlining. */
1059 && ! DECL_FROM_INLINE (x))
1061 tree member;
1063 if (current_class_ptr)
1064 member = lookup_member (current_class_type,
1065 name,
1066 /*protect=*/0,
1067 /*want_type=*/false);
1068 else
1069 member = NULL_TREE;
1071 if (member && !TREE_STATIC (member))
1073 /* Location of previous decl is not useful in this case. */
1074 warning (OPT_Wshadow, "declaration of %qD shadows a member of 'this'",
1077 else if (oldlocal != NULL_TREE
1078 && TREE_CODE (oldlocal) == VAR_DECL)
1080 warning_at (input_location, OPT_Wshadow,
1081 "declaration of %qD shadows a previous local", x);
1082 warning_at (DECL_SOURCE_LOCATION (oldlocal), OPT_Wshadow,
1083 "shadowed declaration is here");
1085 else if (oldglobal != NULL_TREE
1086 && TREE_CODE (oldglobal) == VAR_DECL)
1087 /* XXX shadow warnings in outer-more namespaces */
1089 warning_at (input_location, OPT_Wshadow,
1090 "declaration of %qD shadows a global declaration", x);
1091 warning_at (DECL_SOURCE_LOCATION (oldglobal), OPT_Wshadow,
1092 "shadowed declaration is here");
1097 if (TREE_CODE (x) == VAR_DECL)
1098 maybe_register_incomplete_var (x);
1101 if (need_new_binding)
1102 add_decl_to_level (x,
1103 DECL_NAMESPACE_SCOPE_P (x)
1104 ? NAMESPACE_LEVEL (CP_DECL_CONTEXT (x))
1105 : current_binding_level);
1107 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
1110 /* Record a decl-node X as belonging to the current lexical scope. */
1112 tree
1113 pushdecl (tree x)
1115 return pushdecl_maybe_friend (x, false);
1118 /* Enter DECL into the symbol table, if that's appropriate. Returns
1119 DECL, or a modified version thereof. */
1121 tree
1122 maybe_push_decl (tree decl)
1124 tree type = TREE_TYPE (decl);
1126 /* Add this decl to the current binding level, but not if it comes
1127 from another scope, e.g. a static member variable. TEM may equal
1128 DECL or it may be a previous decl of the same name. */
1129 if (decl == error_mark_node
1130 || (TREE_CODE (decl) != PARM_DECL
1131 && DECL_CONTEXT (decl) != NULL_TREE
1132 /* Definitions of namespace members outside their namespace are
1133 possible. */
1134 && TREE_CODE (DECL_CONTEXT (decl)) != NAMESPACE_DECL)
1135 || (TREE_CODE (decl) == TEMPLATE_DECL && !namespace_bindings_p ())
1136 || TREE_CODE (type) == UNKNOWN_TYPE
1137 /* The declaration of a template specialization does not affect
1138 the functions available for overload resolution, so we do not
1139 call pushdecl. */
1140 || (TREE_CODE (decl) == FUNCTION_DECL
1141 && DECL_TEMPLATE_SPECIALIZATION (decl)))
1142 return decl;
1143 else
1144 return pushdecl (decl);
1147 /* Bind DECL to ID in the current_binding_level, assumed to be a local
1148 binding level. If PUSH_USING is set in FLAGS, we know that DECL
1149 doesn't really belong to this binding level, that it got here
1150 through a using-declaration. */
1152 void
1153 push_local_binding (tree id, tree decl, int flags)
1155 struct cp_binding_level *b;
1157 /* Skip over any local classes. This makes sense if we call
1158 push_local_binding with a friend decl of a local class. */
1159 b = innermost_nonclass_level ();
1161 if (lookup_name_innermost_nonclass_level (id))
1163 /* Supplement the existing binding. */
1164 if (!supplement_binding (IDENTIFIER_BINDING (id), decl))
1165 /* It didn't work. Something else must be bound at this
1166 level. Do not add DECL to the list of things to pop
1167 later. */
1168 return;
1170 else
1171 /* Create a new binding. */
1172 push_binding (id, decl, b);
1174 if (TREE_CODE (decl) == OVERLOAD || (flags & PUSH_USING))
1175 /* We must put the OVERLOAD into a TREE_LIST since the
1176 TREE_CHAIN of an OVERLOAD is already used. Similarly for
1177 decls that got here through a using-declaration. */
1178 decl = build_tree_list (NULL_TREE, decl);
1180 /* And put DECL on the list of things declared by the current
1181 binding level. */
1182 add_decl_to_level (decl, b);
1185 /* Check to see whether or not DECL is a variable that would have been
1186 in scope under the ARM, but is not in scope under the ANSI/ISO
1187 standard. If so, issue an error message. If name lookup would
1188 work in both cases, but return a different result, this function
1189 returns the result of ANSI/ISO lookup. Otherwise, it returns
1190 DECL. */
1192 tree
1193 check_for_out_of_scope_variable (tree decl)
1195 tree shadowed;
1197 /* We only care about out of scope variables. */
1198 if (!(TREE_CODE (decl) == VAR_DECL && DECL_DEAD_FOR_LOCAL (decl)))
1199 return decl;
1201 shadowed = DECL_HAS_SHADOWED_FOR_VAR_P (decl)
1202 ? DECL_SHADOWED_FOR_VAR (decl) : NULL_TREE ;
1203 while (shadowed != NULL_TREE && TREE_CODE (shadowed) == VAR_DECL
1204 && DECL_DEAD_FOR_LOCAL (shadowed))
1205 shadowed = DECL_HAS_SHADOWED_FOR_VAR_P (shadowed)
1206 ? DECL_SHADOWED_FOR_VAR (shadowed) : NULL_TREE;
1207 if (!shadowed)
1208 shadowed = IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (decl));
1209 if (shadowed)
1211 if (!DECL_ERROR_REPORTED (decl))
1213 warning (0, "name lookup of %qD changed", DECL_NAME (decl));
1214 warning (0, " matches this %q+D under ISO standard rules",
1215 shadowed);
1216 warning (0, " matches this %q+D under old rules", decl);
1217 DECL_ERROR_REPORTED (decl) = 1;
1219 return shadowed;
1222 /* If we have already complained about this declaration, there's no
1223 need to do it again. */
1224 if (DECL_ERROR_REPORTED (decl))
1225 return decl;
1227 DECL_ERROR_REPORTED (decl) = 1;
1229 if (TREE_TYPE (decl) == error_mark_node)
1230 return decl;
1232 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
1234 error ("name lookup of %qD changed for ISO %<for%> scoping",
1235 DECL_NAME (decl));
1236 error (" cannot use obsolete binding at %q+D because "
1237 "it has a destructor", decl);
1238 return error_mark_node;
1240 else
1242 permerror (input_location, "name lookup of %qD changed for ISO %<for%> scoping",
1243 DECL_NAME (decl));
1244 if (flag_permissive)
1245 permerror (input_location, " using obsolete binding at %q+D", decl);
1246 else
1248 static bool hint;
1249 if (!hint)
1251 inform (input_location, "(if you use %<-fpermissive%> G++ will accept your code)");
1252 hint = true;
1257 return decl;
1260 /* true means unconditionally make a BLOCK for the next level pushed. */
1262 static bool keep_next_level_flag;
1264 static int binding_depth = 0;
1266 static void
1267 indent (int depth)
1269 int i;
1271 for (i = 0; i < depth * 2; i++)
1272 putc (' ', stderr);
1275 /* Return a string describing the kind of SCOPE we have. */
1276 static const char *
1277 cxx_scope_descriptor (cxx_scope *scope)
1279 /* The order of this table must match the "scope_kind"
1280 enumerators. */
1281 static const char* scope_kind_names[] = {
1282 "block-scope",
1283 "cleanup-scope",
1284 "try-scope",
1285 "catch-scope",
1286 "for-scope",
1287 "function-parameter-scope",
1288 "class-scope",
1289 "namespace-scope",
1290 "template-parameter-scope",
1291 "template-explicit-spec-scope"
1293 const scope_kind kind = scope->explicit_spec_p
1294 ? sk_template_spec : scope->kind;
1296 return scope_kind_names[kind];
1299 /* Output a debugging information about SCOPE when performing
1300 ACTION at LINE. */
1301 static void
1302 cxx_scope_debug (cxx_scope *scope, int line, const char *action)
1304 const char *desc = cxx_scope_descriptor (scope);
1305 if (scope->this_entity)
1306 verbatim ("%s %s(%E) %p %d\n", action, desc,
1307 scope->this_entity, (void *) scope, line);
1308 else
1309 verbatim ("%s %s %p %d\n", action, desc, (void *) scope, line);
1312 /* Return the estimated initial size of the hashtable of a NAMESPACE
1313 scope. */
1315 static inline size_t
1316 namespace_scope_ht_size (tree ns)
1318 tree name = DECL_NAME (ns);
1320 return name == std_identifier
1321 ? NAMESPACE_STD_HT_SIZE
1322 : (name == global_scope_name
1323 ? GLOBAL_SCOPE_HT_SIZE
1324 : NAMESPACE_ORDINARY_HT_SIZE);
1327 /* A chain of binding_level structures awaiting reuse. */
1329 static GTY((deletable)) struct cp_binding_level *free_binding_level;
1331 /* Insert SCOPE as the innermost binding level. */
1333 void
1334 push_binding_level (struct cp_binding_level *scope)
1336 /* Add it to the front of currently active scopes stack. */
1337 scope->level_chain = current_binding_level;
1338 current_binding_level = scope;
1339 keep_next_level_flag = false;
1341 if (ENABLE_SCOPE_CHECKING)
1343 scope->binding_depth = binding_depth;
1344 indent (binding_depth);
1345 cxx_scope_debug (scope, input_line, "push");
1346 binding_depth++;
1350 /* Create a new KIND scope and make it the top of the active scopes stack.
1351 ENTITY is the scope of the associated C++ entity (namespace, class,
1352 function, C++0x enumeration); it is NULL otherwise. */
1354 cxx_scope *
1355 begin_scope (scope_kind kind, tree entity)
1357 cxx_scope *scope;
1359 /* Reuse or create a struct for this binding level. */
1360 if (!ENABLE_SCOPE_CHECKING && free_binding_level)
1362 scope = free_binding_level;
1363 memset (scope, 0, sizeof (cxx_scope));
1364 free_binding_level = scope->level_chain;
1366 else
1367 scope = GGC_CNEW (cxx_scope);
1369 scope->this_entity = entity;
1370 scope->more_cleanups_ok = true;
1371 switch (kind)
1373 case sk_cleanup:
1374 scope->keep = true;
1375 break;
1377 case sk_template_spec:
1378 scope->explicit_spec_p = true;
1379 kind = sk_template_parms;
1380 /* Fall through. */
1381 case sk_template_parms:
1382 case sk_block:
1383 case sk_try:
1384 case sk_catch:
1385 case sk_for:
1386 case sk_class:
1387 case sk_scoped_enum:
1388 case sk_function_parms:
1389 case sk_omp:
1390 scope->keep = keep_next_level_flag;
1391 break;
1393 case sk_namespace:
1394 NAMESPACE_LEVEL (entity) = scope;
1395 scope->static_decls =
1396 VEC_alloc (tree, gc,
1397 DECL_NAME (entity) == std_identifier
1398 || DECL_NAME (entity) == global_scope_name
1399 ? 200 : 10);
1400 break;
1402 default:
1403 /* Should not happen. */
1404 gcc_unreachable ();
1405 break;
1407 scope->kind = kind;
1409 push_binding_level (scope);
1411 return scope;
1414 /* We're about to leave current scope. Pop the top of the stack of
1415 currently active scopes. Return the enclosing scope, now active. */
1417 cxx_scope *
1418 leave_scope (void)
1420 cxx_scope *scope = current_binding_level;
1422 if (scope->kind == sk_namespace && class_binding_level)
1423 current_binding_level = class_binding_level;
1425 /* We cannot leave a scope, if there are none left. */
1426 if (NAMESPACE_LEVEL (global_namespace))
1427 gcc_assert (!global_scope_p (scope));
1429 if (ENABLE_SCOPE_CHECKING)
1431 indent (--binding_depth);
1432 cxx_scope_debug (scope, input_line, "leave");
1435 /* Move one nesting level up. */
1436 current_binding_level = scope->level_chain;
1438 /* Namespace-scopes are left most probably temporarily, not
1439 completely; they can be reopened later, e.g. in namespace-extension
1440 or any name binding activity that requires us to resume a
1441 namespace. For classes, we cache some binding levels. For other
1442 scopes, we just make the structure available for reuse. */
1443 if (scope->kind != sk_namespace
1444 && scope->kind != sk_class)
1446 scope->level_chain = free_binding_level;
1447 gcc_assert (!ENABLE_SCOPE_CHECKING
1448 || scope->binding_depth == binding_depth);
1449 free_binding_level = scope;
1452 /* Find the innermost enclosing class scope, and reset
1453 CLASS_BINDING_LEVEL appropriately. */
1454 if (scope->kind == sk_class)
1456 class_binding_level = NULL;
1457 for (scope = current_binding_level; scope; scope = scope->level_chain)
1458 if (scope->kind == sk_class)
1460 class_binding_level = scope;
1461 break;
1465 return current_binding_level;
1468 static void
1469 resume_scope (struct cp_binding_level* b)
1471 /* Resuming binding levels is meant only for namespaces,
1472 and those cannot nest into classes. */
1473 gcc_assert (!class_binding_level);
1474 /* Also, resuming a non-directly nested namespace is a no-no. */
1475 gcc_assert (b->level_chain == current_binding_level);
1476 current_binding_level = b;
1477 if (ENABLE_SCOPE_CHECKING)
1479 b->binding_depth = binding_depth;
1480 indent (binding_depth);
1481 cxx_scope_debug (b, input_line, "resume");
1482 binding_depth++;
1486 /* Return the innermost binding level that is not for a class scope. */
1488 static cxx_scope *
1489 innermost_nonclass_level (void)
1491 cxx_scope *b;
1493 b = current_binding_level;
1494 while (b->kind == sk_class)
1495 b = b->level_chain;
1497 return b;
1500 /* We're defining an object of type TYPE. If it needs a cleanup, but
1501 we're not allowed to add any more objects with cleanups to the current
1502 scope, create a new binding level. */
1504 void
1505 maybe_push_cleanup_level (tree type)
1507 if (type != error_mark_node
1508 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
1509 && current_binding_level->more_cleanups_ok == 0)
1511 begin_scope (sk_cleanup, NULL);
1512 current_binding_level->statement_list = push_stmt_list ();
1516 /* Nonzero if we are currently in the global binding level. */
1519 global_bindings_p (void)
1521 return global_scope_p (current_binding_level);
1524 /* True if we are currently in a toplevel binding level. This
1525 means either the global binding level or a namespace in a toplevel
1526 binding level. Since there are no non-toplevel namespace levels,
1527 this really means any namespace or template parameter level. We
1528 also include a class whose context is toplevel. */
1530 bool
1531 toplevel_bindings_p (void)
1533 struct cp_binding_level *b = innermost_nonclass_level ();
1535 return b->kind == sk_namespace || b->kind == sk_template_parms;
1538 /* True if this is a namespace scope, or if we are defining a class
1539 which is itself at namespace scope, or whose enclosing class is
1540 such a class, etc. */
1542 bool
1543 namespace_bindings_p (void)
1545 struct cp_binding_level *b = innermost_nonclass_level ();
1547 return b->kind == sk_namespace;
1550 /* True if the current level needs to have a BLOCK made. */
1552 bool
1553 kept_level_p (void)
1555 return (current_binding_level->blocks != NULL_TREE
1556 || current_binding_level->keep
1557 || current_binding_level->kind == sk_cleanup
1558 || current_binding_level->names != NULL_TREE
1559 || current_binding_level->using_directives);
1562 /* Returns the kind of the innermost scope. */
1564 scope_kind
1565 innermost_scope_kind (void)
1567 return current_binding_level->kind;
1570 /* Returns true if this scope was created to store template parameters. */
1572 bool
1573 template_parm_scope_p (void)
1575 return innermost_scope_kind () == sk_template_parms;
1578 /* If KEEP is true, make a BLOCK node for the next binding level,
1579 unconditionally. Otherwise, use the normal logic to decide whether
1580 or not to create a BLOCK. */
1582 void
1583 keep_next_level (bool keep)
1585 keep_next_level_flag = keep;
1588 /* Return the list of declarations of the current level.
1589 Note that this list is in reverse order unless/until
1590 you nreverse it; and when you do nreverse it, you must
1591 store the result back using `storedecls' or you will lose. */
1593 tree
1594 getdecls (void)
1596 return current_binding_level->names;
1599 /* For debugging. */
1600 static int no_print_functions = 0;
1601 static int no_print_builtins = 0;
1603 static void
1604 print_binding_level (struct cp_binding_level* lvl)
1606 tree t;
1607 int i = 0, len;
1608 fprintf (stderr, " blocks=%p", (void *) lvl->blocks);
1609 if (lvl->more_cleanups_ok)
1610 fprintf (stderr, " more-cleanups-ok");
1611 if (lvl->have_cleanups)
1612 fprintf (stderr, " have-cleanups");
1613 fprintf (stderr, "\n");
1614 if (lvl->names)
1616 fprintf (stderr, " names:\t");
1617 /* We can probably fit 3 names to a line? */
1618 for (t = lvl->names; t; t = TREE_CHAIN (t))
1620 if (no_print_functions && (TREE_CODE (t) == FUNCTION_DECL))
1621 continue;
1622 if (no_print_builtins
1623 && (TREE_CODE (t) == TYPE_DECL)
1624 && DECL_IS_BUILTIN (t))
1625 continue;
1627 /* Function decls tend to have longer names. */
1628 if (TREE_CODE (t) == FUNCTION_DECL)
1629 len = 3;
1630 else
1631 len = 2;
1632 i += len;
1633 if (i > 6)
1635 fprintf (stderr, "\n\t");
1636 i = len;
1638 print_node_brief (stderr, "", t, 0);
1639 if (t == error_mark_node)
1640 break;
1642 if (i)
1643 fprintf (stderr, "\n");
1645 if (VEC_length (cp_class_binding, lvl->class_shadowed))
1647 size_t i;
1648 cp_class_binding *b;
1649 fprintf (stderr, " class-shadowed:");
1650 for (i = 0;
1651 VEC_iterate(cp_class_binding, lvl->class_shadowed, i, b);
1652 ++i)
1653 fprintf (stderr, " %s ", IDENTIFIER_POINTER (b->identifier));
1654 fprintf (stderr, "\n");
1656 if (lvl->type_shadowed)
1658 fprintf (stderr, " type-shadowed:");
1659 for (t = lvl->type_shadowed; t; t = TREE_CHAIN (t))
1661 fprintf (stderr, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t)));
1663 fprintf (stderr, "\n");
1667 void
1668 print_other_binding_stack (struct cp_binding_level *stack)
1670 struct cp_binding_level *level;
1671 for (level = stack; !global_scope_p (level); level = level->level_chain)
1673 fprintf (stderr, "binding level %p\n", (void *) level);
1674 print_binding_level (level);
1678 void
1679 print_binding_stack (void)
1681 struct cp_binding_level *b;
1682 fprintf (stderr, "current_binding_level=%p\n"
1683 "class_binding_level=%p\n"
1684 "NAMESPACE_LEVEL (global_namespace)=%p\n",
1685 (void *) current_binding_level, (void *) class_binding_level,
1686 (void *) NAMESPACE_LEVEL (global_namespace));
1687 if (class_binding_level)
1689 for (b = class_binding_level; b; b = b->level_chain)
1690 if (b == current_binding_level)
1691 break;
1692 if (b)
1693 b = class_binding_level;
1694 else
1695 b = current_binding_level;
1697 else
1698 b = current_binding_level;
1699 print_other_binding_stack (b);
1700 fprintf (stderr, "global:\n");
1701 print_binding_level (NAMESPACE_LEVEL (global_namespace));
1704 /* Return the type associated with id. */
1706 tree
1707 identifier_type_value (tree id)
1709 timevar_push (TV_NAME_LOOKUP);
1710 /* There is no type with that name, anywhere. */
1711 if (REAL_IDENTIFIER_TYPE_VALUE (id) == NULL_TREE)
1712 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
1713 /* This is not the type marker, but the real thing. */
1714 if (REAL_IDENTIFIER_TYPE_VALUE (id) != global_type_node)
1715 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, REAL_IDENTIFIER_TYPE_VALUE (id));
1716 /* Have to search for it. It must be on the global level, now.
1717 Ask lookup_name not to return non-types. */
1718 id = lookup_name_real (id, 2, 1, /*block_p=*/true, 0, LOOKUP_COMPLAIN);
1719 if (id)
1720 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, TREE_TYPE (id));
1721 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
1724 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
1725 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
1727 tree
1728 identifier_global_value (tree t)
1730 return IDENTIFIER_GLOBAL_VALUE (t);
1733 /* Push a definition of struct, union or enum tag named ID. into
1734 binding_level B. DECL is a TYPE_DECL for the type. We assume that
1735 the tag ID is not already defined. */
1737 static void
1738 set_identifier_type_value_with_scope (tree id, tree decl, cxx_scope *b)
1740 tree type;
1742 if (b->kind != sk_namespace)
1744 /* Shadow the marker, not the real thing, so that the marker
1745 gets restored later. */
1746 tree old_type_value = REAL_IDENTIFIER_TYPE_VALUE (id);
1747 b->type_shadowed
1748 = tree_cons (id, old_type_value, b->type_shadowed);
1749 type = decl ? TREE_TYPE (decl) : NULL_TREE;
1750 TREE_TYPE (b->type_shadowed) = type;
1752 else
1754 cxx_binding *binding =
1755 binding_for_name (NAMESPACE_LEVEL (current_namespace), id);
1756 gcc_assert (decl);
1757 if (binding->value)
1758 supplement_binding (binding, decl);
1759 else
1760 binding->value = decl;
1762 /* Store marker instead of real type. */
1763 type = global_type_node;
1765 SET_IDENTIFIER_TYPE_VALUE (id, type);
1768 /* As set_identifier_type_value_with_scope, but using
1769 current_binding_level. */
1771 void
1772 set_identifier_type_value (tree id, tree decl)
1774 set_identifier_type_value_with_scope (id, decl, current_binding_level);
1777 /* Return the name for the constructor (or destructor) for the
1778 specified class TYPE. When given a template, this routine doesn't
1779 lose the specialization. */
1781 static inline tree
1782 constructor_name_full (tree type)
1784 return TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
1787 /* Return the name for the constructor (or destructor) for the
1788 specified class. When given a template, return the plain
1789 unspecialized name. */
1791 tree
1792 constructor_name (tree type)
1794 tree name;
1795 name = constructor_name_full (type);
1796 if (IDENTIFIER_TEMPLATE (name))
1797 name = IDENTIFIER_TEMPLATE (name);
1798 return name;
1801 /* Returns TRUE if NAME is the name for the constructor for TYPE,
1802 which must be a class type. */
1804 bool
1805 constructor_name_p (tree name, tree type)
1807 tree ctor_name;
1809 gcc_assert (MAYBE_CLASS_TYPE_P (type));
1811 if (!name)
1812 return false;
1814 if (TREE_CODE (name) != IDENTIFIER_NODE)
1815 return false;
1817 ctor_name = constructor_name_full (type);
1818 if (name == ctor_name)
1819 return true;
1820 if (IDENTIFIER_TEMPLATE (ctor_name)
1821 && name == IDENTIFIER_TEMPLATE (ctor_name))
1822 return true;
1823 return false;
1826 /* Counter used to create anonymous type names. */
1828 static GTY(()) int anon_cnt;
1830 /* Return an IDENTIFIER which can be used as a name for
1831 anonymous structs and unions. */
1833 tree
1834 make_anon_name (void)
1836 char buf[32];
1838 sprintf (buf, ANON_AGGRNAME_FORMAT, anon_cnt++);
1839 return get_identifier (buf);
1842 /* This code is practically identical to that for creating
1843 anonymous names, but is just used for lambdas instead. This is necessary
1844 because anonymous names are recognized and cannot be passed to template
1845 functions. */
1846 /* FIXME is this still necessary? */
1848 static GTY(()) int lambda_cnt = 0;
1850 tree
1851 make_lambda_name (void)
1853 char buf[32];
1855 sprintf (buf, LAMBDANAME_FORMAT, lambda_cnt++);
1856 return get_identifier (buf);
1859 /* Return (from the stack of) the BINDING, if any, established at SCOPE. */
1861 static inline cxx_binding *
1862 find_binding (cxx_scope *scope, cxx_binding *binding)
1864 timevar_push (TV_NAME_LOOKUP);
1866 for (; binding != NULL; binding = binding->previous)
1867 if (binding->scope == scope)
1868 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, binding);
1870 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, (cxx_binding *)0);
1873 /* Return the binding for NAME in SCOPE, if any. Otherwise, return NULL. */
1875 static inline cxx_binding *
1876 cxx_scope_find_binding_for_name (cxx_scope *scope, tree name)
1878 cxx_binding *b = IDENTIFIER_NAMESPACE_BINDINGS (name);
1879 if (b)
1881 /* Fold-in case where NAME is used only once. */
1882 if (scope == b->scope && b->previous == NULL)
1883 return b;
1884 return find_binding (scope, b);
1886 return NULL;
1889 /* Always returns a binding for name in scope. If no binding is
1890 found, make a new one. */
1892 static cxx_binding *
1893 binding_for_name (cxx_scope *scope, tree name)
1895 cxx_binding *result;
1897 result = cxx_scope_find_binding_for_name (scope, name);
1898 if (result)
1899 return result;
1900 /* Not found, make a new one. */
1901 result = cxx_binding_make (NULL, NULL);
1902 result->previous = IDENTIFIER_NAMESPACE_BINDINGS (name);
1903 result->scope = scope;
1904 result->is_local = false;
1905 result->value_is_inherited = false;
1906 IDENTIFIER_NAMESPACE_BINDINGS (name) = result;
1907 return result;
1910 /* Walk through the bindings associated to the name of FUNCTION,
1911 and return the first binding that declares a function with a
1912 "C" linkage specification, a.k.a 'extern "C"'.
1913 This function looks for the binding, regardless of which scope it
1914 has been defined in. It basically looks in all the known scopes.
1915 Note that this function does not lookup for bindings of builtin functions
1916 or for functions declared in system headers. */
1917 static cxx_binding*
1918 lookup_extern_c_fun_binding_in_all_ns (tree function)
1920 tree name;
1921 cxx_binding *iter;
1923 gcc_assert (function && TREE_CODE (function) == FUNCTION_DECL);
1925 name = DECL_NAME (function);
1926 gcc_assert (name && TREE_CODE (name) == IDENTIFIER_NODE);
1928 for (iter = IDENTIFIER_NAMESPACE_BINDINGS (name);
1929 iter;
1930 iter = iter->previous)
1932 if (iter->value
1933 && TREE_CODE (iter->value) == FUNCTION_DECL
1934 && DECL_EXTERN_C_P (iter->value)
1935 && !DECL_ARTIFICIAL (iter->value))
1937 return iter;
1940 return NULL;
1943 /* Insert another USING_DECL into the current binding level, returning
1944 this declaration. If this is a redeclaration, do nothing, and
1945 return NULL_TREE if this not in namespace scope (in namespace
1946 scope, a using decl might extend any previous bindings). */
1948 static tree
1949 push_using_decl (tree scope, tree name)
1951 tree decl;
1953 timevar_push (TV_NAME_LOOKUP);
1954 gcc_assert (TREE_CODE (scope) == NAMESPACE_DECL);
1955 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
1956 for (decl = current_binding_level->usings; decl; decl = TREE_CHAIN (decl))
1957 if (USING_DECL_SCOPE (decl) == scope && DECL_NAME (decl) == name)
1958 break;
1959 if (decl)
1960 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP,
1961 namespace_bindings_p () ? decl : NULL_TREE);
1962 decl = build_lang_decl (USING_DECL, name, NULL_TREE);
1963 USING_DECL_SCOPE (decl) = scope;
1964 TREE_CHAIN (decl) = current_binding_level->usings;
1965 current_binding_level->usings = decl;
1966 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
1969 /* Same as pushdecl, but define X in binding-level LEVEL. We rely on the
1970 caller to set DECL_CONTEXT properly. */
1972 tree
1973 pushdecl_with_scope (tree x, cxx_scope *level, bool is_friend)
1975 struct cp_binding_level *b;
1976 tree function_decl = current_function_decl;
1978 timevar_push (TV_NAME_LOOKUP);
1979 current_function_decl = NULL_TREE;
1980 if (level->kind == sk_class)
1982 b = class_binding_level;
1983 class_binding_level = level;
1984 pushdecl_class_level (x);
1985 class_binding_level = b;
1987 else
1989 b = current_binding_level;
1990 current_binding_level = level;
1991 x = pushdecl_maybe_friend (x, is_friend);
1992 current_binding_level = b;
1994 current_function_decl = function_decl;
1995 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
1998 /* DECL is a FUNCTION_DECL for a non-member function, which may have
1999 other definitions already in place. We get around this by making
2000 the value of the identifier point to a list of all the things that
2001 want to be referenced by that name. It is then up to the users of
2002 that name to decide what to do with that list.
2004 DECL may also be a TEMPLATE_DECL, with a FUNCTION_DECL in its
2005 DECL_TEMPLATE_RESULT. It is dealt with the same way.
2007 FLAGS is a bitwise-or of the following values:
2008 PUSH_LOCAL: Bind DECL in the current scope, rather than at
2009 namespace scope.
2010 PUSH_USING: DECL is being pushed as the result of a using
2011 declaration.
2013 IS_FRIEND is true if this is a friend declaration.
2015 The value returned may be a previous declaration if we guessed wrong
2016 about what language DECL should belong to (C or C++). Otherwise,
2017 it's always DECL (and never something that's not a _DECL). */
2019 static tree
2020 push_overloaded_decl (tree decl, int flags, bool is_friend)
2022 tree name = DECL_NAME (decl);
2023 tree old;
2024 tree new_binding;
2025 int doing_global = (namespace_bindings_p () || !(flags & PUSH_LOCAL));
2027 timevar_push (TV_NAME_LOOKUP);
2028 if (doing_global)
2029 old = namespace_binding (name, DECL_CONTEXT (decl));
2030 else
2031 old = lookup_name_innermost_nonclass_level (name);
2033 if (old)
2035 if (TREE_CODE (old) == TYPE_DECL && DECL_ARTIFICIAL (old))
2037 tree t = TREE_TYPE (old);
2038 if (MAYBE_CLASS_TYPE_P (t) && warn_shadow
2039 && (! DECL_IN_SYSTEM_HEADER (decl)
2040 || ! DECL_IN_SYSTEM_HEADER (old)))
2041 warning (OPT_Wshadow, "%q#D hides constructor for %q#T", decl, t);
2042 old = NULL_TREE;
2044 else if (is_overloaded_fn (old))
2046 tree tmp;
2048 for (tmp = old; tmp; tmp = OVL_NEXT (tmp))
2050 tree fn = OVL_CURRENT (tmp);
2051 tree dup;
2053 if (TREE_CODE (tmp) == OVERLOAD && OVL_USED (tmp)
2054 && !(flags & PUSH_USING)
2055 && compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2056 TYPE_ARG_TYPES (TREE_TYPE (decl)))
2057 && ! decls_match (fn, decl))
2058 error ("%q#D conflicts with previous using declaration %q#D",
2059 decl, fn);
2061 dup = duplicate_decls (decl, fn, is_friend);
2062 /* If DECL was a redeclaration of FN -- even an invalid
2063 one -- pass that information along to our caller. */
2064 if (dup == fn || dup == error_mark_node)
2065 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, dup);
2068 /* We don't overload implicit built-ins. duplicate_decls()
2069 may fail to merge the decls if the new decl is e.g. a
2070 template function. */
2071 if (TREE_CODE (old) == FUNCTION_DECL
2072 && DECL_ANTICIPATED (old)
2073 && !DECL_HIDDEN_FRIEND_P (old))
2074 old = NULL;
2076 else if (old == error_mark_node)
2077 /* Ignore the undefined symbol marker. */
2078 old = NULL_TREE;
2079 else
2081 error ("previous non-function declaration %q+#D", old);
2082 error ("conflicts with function declaration %q#D", decl);
2083 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2087 if (old || TREE_CODE (decl) == TEMPLATE_DECL
2088 /* If it's a using declaration, we always need to build an OVERLOAD,
2089 because it's the only way to remember that the declaration comes
2090 from 'using', and have the lookup behave correctly. */
2091 || (flags & PUSH_USING))
2093 if (old && TREE_CODE (old) != OVERLOAD)
2094 new_binding = ovl_cons (decl, ovl_cons (old, NULL_TREE));
2095 else
2096 new_binding = ovl_cons (decl, old);
2097 if (flags & PUSH_USING)
2098 OVL_USED (new_binding) = 1;
2100 else
2101 /* NAME is not ambiguous. */
2102 new_binding = decl;
2104 if (doing_global)
2105 set_namespace_binding (name, current_namespace, new_binding);
2106 else
2108 /* We only create an OVERLOAD if there was a previous binding at
2109 this level, or if decl is a template. In the former case, we
2110 need to remove the old binding and replace it with the new
2111 binding. We must also run through the NAMES on the binding
2112 level where the name was bound to update the chain. */
2114 if (TREE_CODE (new_binding) == OVERLOAD && old)
2116 tree *d;
2118 for (d = &IDENTIFIER_BINDING (name)->scope->names;
2120 d = &TREE_CHAIN (*d))
2121 if (*d == old
2122 || (TREE_CODE (*d) == TREE_LIST
2123 && TREE_VALUE (*d) == old))
2125 if (TREE_CODE (*d) == TREE_LIST)
2126 /* Just replace the old binding with the new. */
2127 TREE_VALUE (*d) = new_binding;
2128 else
2129 /* Build a TREE_LIST to wrap the OVERLOAD. */
2130 *d = tree_cons (NULL_TREE, new_binding,
2131 TREE_CHAIN (*d));
2133 /* And update the cxx_binding node. */
2134 IDENTIFIER_BINDING (name)->value = new_binding;
2135 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2138 /* We should always find a previous binding in this case. */
2139 gcc_unreachable ();
2142 /* Install the new binding. */
2143 push_local_binding (name, new_binding, flags);
2146 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2149 /* Check a non-member using-declaration. Return the name and scope
2150 being used, and the USING_DECL, or NULL_TREE on failure. */
2152 static tree
2153 validate_nonmember_using_decl (tree decl, tree scope, tree name)
2155 /* [namespace.udecl]
2156 A using-declaration for a class member shall be a
2157 member-declaration. */
2158 if (TYPE_P (scope))
2160 error ("%qT is not a namespace", scope);
2161 return NULL_TREE;
2163 else if (scope == error_mark_node)
2164 return NULL_TREE;
2166 if (TREE_CODE (decl) == TEMPLATE_ID_EXPR)
2168 /* 7.3.3/5
2169 A using-declaration shall not name a template-id. */
2170 error ("a using-declaration cannot specify a template-id. "
2171 "Try %<using %D%>", name);
2172 return NULL_TREE;
2175 if (TREE_CODE (decl) == NAMESPACE_DECL)
2177 error ("namespace %qD not allowed in using-declaration", decl);
2178 return NULL_TREE;
2181 if (TREE_CODE (decl) == SCOPE_REF)
2183 /* It's a nested name with template parameter dependent scope.
2184 This can only be using-declaration for class member. */
2185 error ("%qT is not a namespace", TREE_OPERAND (decl, 0));
2186 return NULL_TREE;
2189 if (is_overloaded_fn (decl))
2190 decl = get_first_fn (decl);
2192 gcc_assert (DECL_P (decl));
2194 /* Make a USING_DECL. */
2195 return push_using_decl (scope, name);
2198 /* Process local and global using-declarations. */
2200 static void
2201 do_nonmember_using_decl (tree scope, tree name, tree oldval, tree oldtype,
2202 tree *newval, tree *newtype)
2204 struct scope_binding decls = EMPTY_SCOPE_BINDING;
2206 *newval = *newtype = NULL_TREE;
2207 if (!qualified_lookup_using_namespace (name, scope, &decls, 0))
2208 /* Lookup error */
2209 return;
2211 if (!decls.value && !decls.type)
2213 error ("%qD not declared", name);
2214 return;
2217 /* Shift the old and new bindings around so we're comparing class and
2218 enumeration names to each other. */
2219 if (oldval && DECL_IMPLICIT_TYPEDEF_P (oldval))
2221 oldtype = oldval;
2222 oldval = NULL_TREE;
2225 if (decls.value && DECL_IMPLICIT_TYPEDEF_P (decls.value))
2227 decls.type = decls.value;
2228 decls.value = NULL_TREE;
2231 /* It is impossible to overload a built-in function; any explicit
2232 declaration eliminates the built-in declaration. So, if OLDVAL
2233 is a built-in, then we can just pretend it isn't there. */
2234 if (oldval
2235 && TREE_CODE (oldval) == FUNCTION_DECL
2236 && DECL_ANTICIPATED (oldval)
2237 && !DECL_HIDDEN_FRIEND_P (oldval))
2238 oldval = NULL_TREE;
2240 if (decls.value)
2242 /* Check for using functions. */
2243 if (is_overloaded_fn (decls.value))
2245 tree tmp, tmp1;
2247 if (oldval && !is_overloaded_fn (oldval))
2249 error ("%qD is already declared in this scope", name);
2250 oldval = NULL_TREE;
2253 *newval = oldval;
2254 for (tmp = decls.value; tmp; tmp = OVL_NEXT (tmp))
2256 tree new_fn = OVL_CURRENT (tmp);
2258 /* [namespace.udecl]
2260 If a function declaration in namespace scope or block
2261 scope has the same name and the same parameter types as a
2262 function introduced by a using declaration the program is
2263 ill-formed. */
2264 for (tmp1 = oldval; tmp1; tmp1 = OVL_NEXT (tmp1))
2266 tree old_fn = OVL_CURRENT (tmp1);
2268 if (new_fn == old_fn)
2269 /* The function already exists in the current namespace. */
2270 break;
2271 else if (OVL_USED (tmp1))
2272 continue; /* this is a using decl */
2273 else if (compparms (TYPE_ARG_TYPES (TREE_TYPE (new_fn)),
2274 TYPE_ARG_TYPES (TREE_TYPE (old_fn))))
2276 gcc_assert (!DECL_ANTICIPATED (old_fn)
2277 || DECL_HIDDEN_FRIEND_P (old_fn));
2279 /* There was already a non-using declaration in
2280 this scope with the same parameter types. If both
2281 are the same extern "C" functions, that's ok. */
2282 if (decls_match (new_fn, old_fn))
2283 break;
2284 else
2286 error ("%qD is already declared in this scope", name);
2287 break;
2292 /* If we broke out of the loop, there's no reason to add
2293 this function to the using declarations for this
2294 scope. */
2295 if (tmp1)
2296 continue;
2298 /* If we are adding to an existing OVERLOAD, then we no
2299 longer know the type of the set of functions. */
2300 if (*newval && TREE_CODE (*newval) == OVERLOAD)
2301 TREE_TYPE (*newval) = unknown_type_node;
2302 /* Add this new function to the set. */
2303 *newval = build_overload (OVL_CURRENT (tmp), *newval);
2304 /* If there is only one function, then we use its type. (A
2305 using-declaration naming a single function can be used in
2306 contexts where overload resolution cannot be
2307 performed.) */
2308 if (TREE_CODE (*newval) != OVERLOAD)
2310 *newval = ovl_cons (*newval, NULL_TREE);
2311 TREE_TYPE (*newval) = TREE_TYPE (OVL_CURRENT (tmp));
2313 OVL_USED (*newval) = 1;
2316 else
2318 *newval = decls.value;
2319 if (oldval && !decls_match (*newval, oldval))
2320 error ("%qD is already declared in this scope", name);
2323 else
2324 *newval = oldval;
2326 if (decls.type && TREE_CODE (decls.type) == TREE_LIST)
2328 error ("reference to %qD is ambiguous", name);
2329 print_candidates (decls.type);
2331 else
2333 *newtype = decls.type;
2334 if (oldtype && *newtype && !decls_match (oldtype, *newtype))
2335 error ("%qD is already declared in this scope", name);
2338 /* If *newval is empty, shift any class or enumeration name down. */
2339 if (!*newval)
2341 *newval = *newtype;
2342 *newtype = NULL_TREE;
2346 /* Process a using-declaration at function scope. */
2348 void
2349 do_local_using_decl (tree decl, tree scope, tree name)
2351 tree oldval, oldtype, newval, newtype;
2352 tree orig_decl = decl;
2354 decl = validate_nonmember_using_decl (decl, scope, name);
2355 if (decl == NULL_TREE)
2356 return;
2358 if (building_stmt_tree ()
2359 && at_function_scope_p ())
2360 add_decl_expr (decl);
2362 oldval = lookup_name_innermost_nonclass_level (name);
2363 oldtype = lookup_type_current_level (name);
2365 do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype);
2367 if (newval)
2369 if (is_overloaded_fn (newval))
2371 tree fn, term;
2373 /* We only need to push declarations for those functions
2374 that were not already bound in the current level.
2375 The old value might be NULL_TREE, it might be a single
2376 function, or an OVERLOAD. */
2377 if (oldval && TREE_CODE (oldval) == OVERLOAD)
2378 term = OVL_FUNCTION (oldval);
2379 else
2380 term = oldval;
2381 for (fn = newval; fn && OVL_CURRENT (fn) != term;
2382 fn = OVL_NEXT (fn))
2383 push_overloaded_decl (OVL_CURRENT (fn),
2384 PUSH_LOCAL | PUSH_USING,
2385 false);
2387 else
2388 push_local_binding (name, newval, PUSH_USING);
2390 if (newtype)
2392 push_local_binding (name, newtype, PUSH_USING);
2393 set_identifier_type_value (name, newtype);
2396 /* Emit debug info. */
2397 if (!processing_template_decl)
2398 cp_emit_debug_info_for_using (orig_decl, current_scope());
2401 /* Returns true if ROOT (a namespace, class, or function) encloses
2402 CHILD. CHILD may be either a class type or a namespace. */
2404 bool
2405 is_ancestor (tree root, tree child)
2407 gcc_assert ((TREE_CODE (root) == NAMESPACE_DECL
2408 || TREE_CODE (root) == FUNCTION_DECL
2409 || CLASS_TYPE_P (root)));
2410 gcc_assert ((TREE_CODE (child) == NAMESPACE_DECL
2411 || CLASS_TYPE_P (child)));
2413 /* The global namespace encloses everything. */
2414 if (root == global_namespace)
2415 return true;
2417 while (true)
2419 /* If we've run out of scopes, stop. */
2420 if (!child)
2421 return false;
2422 /* If we've reached the ROOT, it encloses CHILD. */
2423 if (root == child)
2424 return true;
2425 /* Go out one level. */
2426 if (TYPE_P (child))
2427 child = TYPE_NAME (child);
2428 child = DECL_CONTEXT (child);
2432 /* Enter the class or namespace scope indicated by T suitable for name
2433 lookup. T can be arbitrary scope, not necessary nested inside the
2434 current scope. Returns a non-null scope to pop iff pop_scope
2435 should be called later to exit this scope. */
2437 tree
2438 push_scope (tree t)
2440 if (TREE_CODE (t) == NAMESPACE_DECL)
2441 push_decl_namespace (t);
2442 else if (CLASS_TYPE_P (t))
2444 if (!at_class_scope_p ()
2445 || !same_type_p (current_class_type, t))
2446 push_nested_class (t);
2447 else
2448 /* T is the same as the current scope. There is therefore no
2449 need to re-enter the scope. Since we are not actually
2450 pushing a new scope, our caller should not call
2451 pop_scope. */
2452 t = NULL_TREE;
2455 return t;
2458 /* Leave scope pushed by push_scope. */
2460 void
2461 pop_scope (tree t)
2463 if (TREE_CODE (t) == NAMESPACE_DECL)
2464 pop_decl_namespace ();
2465 else if CLASS_TYPE_P (t)
2466 pop_nested_class ();
2469 /* Subroutine of push_inner_scope. */
2471 static void
2472 push_inner_scope_r (tree outer, tree inner)
2474 tree prev;
2476 if (outer == inner
2477 || (TREE_CODE (inner) != NAMESPACE_DECL && !CLASS_TYPE_P (inner)))
2478 return;
2480 prev = CP_DECL_CONTEXT (TREE_CODE (inner) == NAMESPACE_DECL ? inner : TYPE_NAME (inner));
2481 if (outer != prev)
2482 push_inner_scope_r (outer, prev);
2483 if (TREE_CODE (inner) == NAMESPACE_DECL)
2485 struct cp_binding_level *save_template_parm = 0;
2486 /* Temporary take out template parameter scopes. They are saved
2487 in reversed order in save_template_parm. */
2488 while (current_binding_level->kind == sk_template_parms)
2490 struct cp_binding_level *b = current_binding_level;
2491 current_binding_level = b->level_chain;
2492 b->level_chain = save_template_parm;
2493 save_template_parm = b;
2496 resume_scope (NAMESPACE_LEVEL (inner));
2497 current_namespace = inner;
2499 /* Restore template parameter scopes. */
2500 while (save_template_parm)
2502 struct cp_binding_level *b = save_template_parm;
2503 save_template_parm = b->level_chain;
2504 b->level_chain = current_binding_level;
2505 current_binding_level = b;
2508 else
2509 pushclass (inner);
2512 /* Enter the scope INNER from current scope. INNER must be a scope
2513 nested inside current scope. This works with both name lookup and
2514 pushing name into scope. In case a template parameter scope is present,
2515 namespace is pushed under the template parameter scope according to
2516 name lookup rule in 14.6.1/6.
2518 Return the former current scope suitable for pop_inner_scope. */
2520 tree
2521 push_inner_scope (tree inner)
2523 tree outer = current_scope ();
2524 if (!outer)
2525 outer = current_namespace;
2527 push_inner_scope_r (outer, inner);
2528 return outer;
2531 /* Exit the current scope INNER back to scope OUTER. */
2533 void
2534 pop_inner_scope (tree outer, tree inner)
2536 if (outer == inner
2537 || (TREE_CODE (inner) != NAMESPACE_DECL && !CLASS_TYPE_P (inner)))
2538 return;
2540 while (outer != inner)
2542 if (TREE_CODE (inner) == NAMESPACE_DECL)
2544 struct cp_binding_level *save_template_parm = 0;
2545 /* Temporary take out template parameter scopes. They are saved
2546 in reversed order in save_template_parm. */
2547 while (current_binding_level->kind == sk_template_parms)
2549 struct cp_binding_level *b = current_binding_level;
2550 current_binding_level = b->level_chain;
2551 b->level_chain = save_template_parm;
2552 save_template_parm = b;
2555 pop_namespace ();
2557 /* Restore template parameter scopes. */
2558 while (save_template_parm)
2560 struct cp_binding_level *b = save_template_parm;
2561 save_template_parm = b->level_chain;
2562 b->level_chain = current_binding_level;
2563 current_binding_level = b;
2566 else
2567 popclass ();
2569 inner = CP_DECL_CONTEXT (TREE_CODE (inner) == NAMESPACE_DECL ? inner : TYPE_NAME (inner));
2573 /* Do a pushlevel for class declarations. */
2575 void
2576 pushlevel_class (void)
2578 class_binding_level = begin_scope (sk_class, current_class_type);
2581 /* ...and a poplevel for class declarations. */
2583 void
2584 poplevel_class (void)
2586 struct cp_binding_level *level = class_binding_level;
2587 cp_class_binding *cb;
2588 size_t i;
2589 tree shadowed;
2591 timevar_push (TV_NAME_LOOKUP);
2592 gcc_assert (level != 0);
2594 /* If we're leaving a toplevel class, cache its binding level. */
2595 if (current_class_depth == 1)
2596 previous_class_level = level;
2597 for (shadowed = level->type_shadowed;
2598 shadowed;
2599 shadowed = TREE_CHAIN (shadowed))
2600 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (shadowed), TREE_VALUE (shadowed));
2602 /* Remove the bindings for all of the class-level declarations. */
2603 if (level->class_shadowed)
2605 for (i = 0;
2606 VEC_iterate (cp_class_binding, level->class_shadowed, i, cb);
2607 ++i)
2608 IDENTIFIER_BINDING (cb->identifier) = cb->base.previous;
2609 ggc_free (level->class_shadowed);
2610 level->class_shadowed = NULL;
2613 /* Now, pop out of the binding level which we created up in the
2614 `pushlevel_class' routine. */
2615 gcc_assert (current_binding_level == level);
2616 leave_scope ();
2617 timevar_pop (TV_NAME_LOOKUP);
2620 /* Set INHERITED_VALUE_BINDING_P on BINDING to true or false, as
2621 appropriate. DECL is the value to which a name has just been
2622 bound. CLASS_TYPE is the class in which the lookup occurred. */
2624 static void
2625 set_inherited_value_binding_p (cxx_binding *binding, tree decl,
2626 tree class_type)
2628 if (binding->value == decl && TREE_CODE (decl) != TREE_LIST)
2630 tree context;
2632 if (TREE_CODE (decl) == OVERLOAD)
2633 context = CP_DECL_CONTEXT (OVL_CURRENT (decl));
2634 else
2636 gcc_assert (DECL_P (decl));
2637 context = context_for_name_lookup (decl);
2640 if (is_properly_derived_from (class_type, context))
2641 INHERITED_VALUE_BINDING_P (binding) = 1;
2642 else
2643 INHERITED_VALUE_BINDING_P (binding) = 0;
2645 else if (binding->value == decl)
2646 /* We only encounter a TREE_LIST when there is an ambiguity in the
2647 base classes. Such an ambiguity can be overridden by a
2648 definition in this class. */
2649 INHERITED_VALUE_BINDING_P (binding) = 1;
2650 else
2651 INHERITED_VALUE_BINDING_P (binding) = 0;
2654 /* Make the declaration of X appear in CLASS scope. */
2656 bool
2657 pushdecl_class_level (tree x)
2659 tree name;
2660 bool is_valid = true;
2662 /* Do nothing if we're adding to an outer lambda closure type,
2663 outer_binding will add it later if it's needed. */
2664 if (current_class_type != class_binding_level->this_entity)
2665 return true;
2667 timevar_push (TV_NAME_LOOKUP);
2668 /* Get the name of X. */
2669 if (TREE_CODE (x) == OVERLOAD)
2670 name = DECL_NAME (get_first_fn (x));
2671 else
2672 name = DECL_NAME (x);
2674 if (name)
2676 is_valid = push_class_level_binding (name, x);
2677 if (TREE_CODE (x) == TYPE_DECL)
2678 set_identifier_type_value (name, x);
2680 else if (ANON_AGGR_TYPE_P (TREE_TYPE (x)))
2682 /* If X is an anonymous aggregate, all of its members are
2683 treated as if they were members of the class containing the
2684 aggregate, for naming purposes. */
2685 tree f;
2687 for (f = TYPE_FIELDS (TREE_TYPE (x)); f; f = TREE_CHAIN (f))
2689 location_t save_location = input_location;
2690 input_location = DECL_SOURCE_LOCATION (f);
2691 if (!pushdecl_class_level (f))
2692 is_valid = false;
2693 input_location = save_location;
2696 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, is_valid);
2699 /* Return the BINDING (if any) for NAME in SCOPE, which is a class
2700 scope. If the value returned is non-NULL, and the PREVIOUS field
2701 is not set, callers must set the PREVIOUS field explicitly. */
2703 static cxx_binding *
2704 get_class_binding (tree name, cxx_scope *scope)
2706 tree class_type;
2707 tree type_binding;
2708 tree value_binding;
2709 cxx_binding *binding;
2711 class_type = scope->this_entity;
2713 /* Get the type binding. */
2714 type_binding = lookup_member (class_type, name,
2715 /*protect=*/2, /*want_type=*/true);
2716 /* Get the value binding. */
2717 value_binding = lookup_member (class_type, name,
2718 /*protect=*/2, /*want_type=*/false);
2720 if (value_binding
2721 && (TREE_CODE (value_binding) == TYPE_DECL
2722 || DECL_CLASS_TEMPLATE_P (value_binding)
2723 || (TREE_CODE (value_binding) == TREE_LIST
2724 && TREE_TYPE (value_binding) == error_mark_node
2725 && (TREE_CODE (TREE_VALUE (value_binding))
2726 == TYPE_DECL))))
2727 /* We found a type binding, even when looking for a non-type
2728 binding. This means that we already processed this binding
2729 above. */
2731 else if (value_binding)
2733 if (TREE_CODE (value_binding) == TREE_LIST
2734 && TREE_TYPE (value_binding) == error_mark_node)
2735 /* NAME is ambiguous. */
2737 else if (BASELINK_P (value_binding))
2738 /* NAME is some overloaded functions. */
2739 value_binding = BASELINK_FUNCTIONS (value_binding);
2742 /* If we found either a type binding or a value binding, create a
2743 new binding object. */
2744 if (type_binding || value_binding)
2746 binding = new_class_binding (name,
2747 value_binding,
2748 type_binding,
2749 scope);
2750 /* This is a class-scope binding, not a block-scope binding. */
2751 LOCAL_BINDING_P (binding) = 0;
2752 set_inherited_value_binding_p (binding, value_binding, class_type);
2754 else
2755 binding = NULL;
2757 return binding;
2760 /* Make the declaration(s) of X appear in CLASS scope under the name
2761 NAME. Returns true if the binding is valid. */
2763 bool
2764 push_class_level_binding (tree name, tree x)
2766 cxx_binding *binding;
2767 tree decl = x;
2768 bool ok;
2770 timevar_push (TV_NAME_LOOKUP);
2771 /* The class_binding_level will be NULL if x is a template
2772 parameter name in a member template. */
2773 if (!class_binding_level)
2774 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2776 if (name == error_mark_node)
2777 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, false);
2779 /* Check for invalid member names. */
2780 gcc_assert (TYPE_BEING_DEFINED (current_class_type));
2781 /* Check that we're pushing into the right binding level. */
2782 gcc_assert (current_class_type == class_binding_level->this_entity);
2784 /* We could have been passed a tree list if this is an ambiguous
2785 declaration. If so, pull the declaration out because
2786 check_template_shadow will not handle a TREE_LIST. */
2787 if (TREE_CODE (decl) == TREE_LIST
2788 && TREE_TYPE (decl) == error_mark_node)
2789 decl = TREE_VALUE (decl);
2791 if (!check_template_shadow (decl))
2792 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, false);
2794 /* [class.mem]
2796 If T is the name of a class, then each of the following shall
2797 have a name different from T:
2799 -- every static data member of class T;
2801 -- every member of class T that is itself a type;
2803 -- every enumerator of every member of class T that is an
2804 enumerated type;
2806 -- every member of every anonymous union that is a member of
2807 class T.
2809 (Non-static data members were also forbidden to have the same
2810 name as T until TC1.) */
2811 if ((TREE_CODE (x) == VAR_DECL
2812 || TREE_CODE (x) == CONST_DECL
2813 || (TREE_CODE (x) == TYPE_DECL
2814 && !DECL_SELF_REFERENCE_P (x))
2815 /* A data member of an anonymous union. */
2816 || (TREE_CODE (x) == FIELD_DECL
2817 && DECL_CONTEXT (x) != current_class_type))
2818 && DECL_NAME (x) == constructor_name (current_class_type))
2820 tree scope = context_for_name_lookup (x);
2821 if (TYPE_P (scope) && same_type_p (scope, current_class_type))
2823 error ("%qD has the same name as the class in which it is "
2824 "declared",
2826 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, false);
2830 /* Get the current binding for NAME in this class, if any. */
2831 binding = IDENTIFIER_BINDING (name);
2832 if (!binding || binding->scope != class_binding_level)
2834 binding = get_class_binding (name, class_binding_level);
2835 /* If a new binding was created, put it at the front of the
2836 IDENTIFIER_BINDING list. */
2837 if (binding)
2839 binding->previous = IDENTIFIER_BINDING (name);
2840 IDENTIFIER_BINDING (name) = binding;
2844 /* If there is already a binding, then we may need to update the
2845 current value. */
2846 if (binding && binding->value)
2848 tree bval = binding->value;
2849 tree old_decl = NULL_TREE;
2851 if (INHERITED_VALUE_BINDING_P (binding))
2853 /* If the old binding was from a base class, and was for a
2854 tag name, slide it over to make room for the new binding.
2855 The old binding is still visible if explicitly qualified
2856 with a class-key. */
2857 if (TREE_CODE (bval) == TYPE_DECL && DECL_ARTIFICIAL (bval)
2858 && !(TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)))
2860 old_decl = binding->type;
2861 binding->type = bval;
2862 binding->value = NULL_TREE;
2863 INHERITED_VALUE_BINDING_P (binding) = 0;
2865 else
2867 old_decl = bval;
2868 /* Any inherited type declaration is hidden by the type
2869 declaration in the derived class. */
2870 if (TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x))
2871 binding->type = NULL_TREE;
2874 else if (TREE_CODE (x) == OVERLOAD && is_overloaded_fn (bval))
2875 old_decl = bval;
2876 else if (TREE_CODE (x) == USING_DECL && TREE_CODE (bval) == USING_DECL)
2877 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2878 else if (TREE_CODE (x) == USING_DECL && is_overloaded_fn (bval))
2879 old_decl = bval;
2880 else if (TREE_CODE (bval) == USING_DECL && is_overloaded_fn (x))
2881 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2883 if (old_decl && binding->scope == class_binding_level)
2885 binding->value = x;
2886 /* It is always safe to clear INHERITED_VALUE_BINDING_P
2887 here. This function is only used to register bindings
2888 from with the class definition itself. */
2889 INHERITED_VALUE_BINDING_P (binding) = 0;
2890 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
2894 /* Note that we declared this value so that we can issue an error if
2895 this is an invalid redeclaration of a name already used for some
2896 other purpose. */
2897 note_name_declared_in_class (name, decl);
2899 /* If we didn't replace an existing binding, put the binding on the
2900 stack of bindings for the identifier, and update the shadowed
2901 list. */
2902 if (binding && binding->scope == class_binding_level)
2903 /* Supplement the existing binding. */
2904 ok = supplement_binding (binding, decl);
2905 else
2907 /* Create a new binding. */
2908 push_binding (name, decl, class_binding_level);
2909 ok = true;
2912 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ok);
2915 /* Process "using SCOPE::NAME" in a class scope. Return the
2916 USING_DECL created. */
2918 tree
2919 do_class_using_decl (tree scope, tree name)
2921 /* The USING_DECL returned by this function. */
2922 tree value;
2923 /* The declaration (or declarations) name by this using
2924 declaration. NULL if we are in a template and cannot figure out
2925 what has been named. */
2926 tree decl;
2927 /* True if SCOPE is a dependent type. */
2928 bool scope_dependent_p;
2929 /* True if SCOPE::NAME is dependent. */
2930 bool name_dependent_p;
2931 /* True if any of the bases of CURRENT_CLASS_TYPE are dependent. */
2932 bool bases_dependent_p;
2933 tree binfo;
2934 tree base_binfo;
2935 int i;
2937 if (name == error_mark_node)
2938 return NULL_TREE;
2940 if (!scope || !TYPE_P (scope))
2942 error ("using-declaration for non-member at class scope");
2943 return NULL_TREE;
2946 /* Make sure the name is not invalid */
2947 if (TREE_CODE (name) == BIT_NOT_EXPR)
2949 error ("%<%T::%D%> names destructor", scope, name);
2950 return NULL_TREE;
2952 if (MAYBE_CLASS_TYPE_P (scope) && constructor_name_p (name, scope))
2954 error ("%<%T::%D%> names constructor", scope, name);
2955 return NULL_TREE;
2957 if (constructor_name_p (name, current_class_type))
2959 error ("%<%T::%D%> names constructor in %qT",
2960 scope, name, current_class_type);
2961 return NULL_TREE;
2964 scope_dependent_p = dependent_type_p (scope);
2965 name_dependent_p = (scope_dependent_p
2966 || (IDENTIFIER_TYPENAME_P (name)
2967 && dependent_type_p (TREE_TYPE (name))));
2969 bases_dependent_p = false;
2970 if (processing_template_decl)
2971 for (binfo = TYPE_BINFO (current_class_type), i = 0;
2972 BINFO_BASE_ITERATE (binfo, i, base_binfo);
2973 i++)
2974 if (dependent_type_p (TREE_TYPE (base_binfo)))
2976 bases_dependent_p = true;
2977 break;
2980 decl = NULL_TREE;
2982 /* From [namespace.udecl]:
2984 A using-declaration used as a member-declaration shall refer to a
2985 member of a base class of the class being defined.
2987 In general, we cannot check this constraint in a template because
2988 we do not know the entire set of base classes of the current
2989 class type. However, if all of the base classes are
2990 non-dependent, then we can avoid delaying the check until
2991 instantiation. */
2992 if (!scope_dependent_p)
2994 base_kind b_kind;
2995 binfo = lookup_base (current_class_type, scope, ba_any, &b_kind);
2996 if (b_kind < bk_proper_base)
2998 if (!bases_dependent_p)
3000 error_not_base_type (scope, current_class_type);
3001 return NULL_TREE;
3004 else if (!name_dependent_p)
3006 decl = lookup_member (binfo, name, 0, false);
3007 if (!decl)
3009 error ("no members matching %<%T::%D%> in %q#T", scope, name,
3010 scope);
3011 return NULL_TREE;
3013 /* The binfo from which the functions came does not matter. */
3014 if (BASELINK_P (decl))
3015 decl = BASELINK_FUNCTIONS (decl);
3019 value = build_lang_decl (USING_DECL, name, NULL_TREE);
3020 USING_DECL_DECLS (value) = decl;
3021 USING_DECL_SCOPE (value) = scope;
3022 DECL_DEPENDENT_P (value) = !decl;
3024 return value;
3028 /* Return the binding value for name in scope. */
3030 tree
3031 namespace_binding (tree name, tree scope)
3033 cxx_binding *binding;
3035 if (scope == NULL)
3036 scope = global_namespace;
3037 else
3038 /* Unnecessary for the global namespace because it can't be an alias. */
3039 scope = ORIGINAL_NAMESPACE (scope);
3041 binding = cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name);
3043 return binding ? binding->value : NULL_TREE;
3046 /* Set the binding value for name in scope. */
3048 void
3049 set_namespace_binding (tree name, tree scope, tree val)
3051 cxx_binding *b;
3053 timevar_push (TV_NAME_LOOKUP);
3054 if (scope == NULL_TREE)
3055 scope = global_namespace;
3056 b = binding_for_name (NAMESPACE_LEVEL (scope), name);
3057 if (!b->value || TREE_CODE (val) == OVERLOAD || val == error_mark_node)
3058 b->value = val;
3059 else
3060 supplement_binding (b, val);
3061 timevar_pop (TV_NAME_LOOKUP);
3064 /* Set the context of a declaration to scope. Complain if we are not
3065 outside scope. */
3067 void
3068 set_decl_namespace (tree decl, tree scope, bool friendp)
3070 tree old;
3072 /* Get rid of namespace aliases. */
3073 scope = ORIGINAL_NAMESPACE (scope);
3075 /* It is ok for friends to be qualified in parallel space. */
3076 if (!friendp && !is_ancestor (current_namespace, scope))
3077 error ("declaration of %qD not in a namespace surrounding %qD",
3078 decl, scope);
3079 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
3081 /* Writing "int N::i" to declare a variable within "N" is invalid. */
3082 if (scope == current_namespace)
3084 if (at_namespace_scope_p ())
3085 error ("explicit qualification in declaration of %qD",
3086 decl);
3087 return;
3090 /* See whether this has been declared in the namespace. */
3091 old = lookup_qualified_name (scope, DECL_NAME (decl), false, true);
3092 if (old == error_mark_node)
3093 /* No old declaration at all. */
3094 goto complain;
3095 /* If it's a TREE_LIST, the result of the lookup was ambiguous. */
3096 if (TREE_CODE (old) == TREE_LIST)
3098 error ("reference to %qD is ambiguous", decl);
3099 print_candidates (old);
3100 return;
3102 if (!is_overloaded_fn (decl))
3104 /* We might have found OLD in an inline namespace inside SCOPE. */
3105 if (TREE_CODE (decl) == TREE_CODE (old))
3106 DECL_CONTEXT (decl) = DECL_CONTEXT (old);
3107 /* Don't compare non-function decls with decls_match here, since
3108 it can't check for the correct constness at this
3109 point. pushdecl will find those errors later. */
3110 return;
3112 /* Since decl is a function, old should contain a function decl. */
3113 if (!is_overloaded_fn (old))
3114 goto complain;
3115 /* A template can be explicitly specialized in any namespace. */
3116 if (processing_explicit_instantiation)
3117 return;
3118 if (processing_template_decl || processing_specialization)
3119 /* We have not yet called push_template_decl to turn a
3120 FUNCTION_DECL into a TEMPLATE_DECL, so the declarations won't
3121 match. But, we'll check later, when we construct the
3122 template. */
3123 return;
3124 /* Instantiations or specializations of templates may be declared as
3125 friends in any namespace. */
3126 if (friendp && DECL_USE_TEMPLATE (decl))
3127 return;
3128 if (is_overloaded_fn (old))
3130 tree found = NULL_TREE;
3131 tree elt = old;
3132 for (; elt; elt = OVL_NEXT (elt))
3134 tree ofn = OVL_CURRENT (elt);
3135 /* Adjust DECL_CONTEXT first so decls_match will return true
3136 if DECL will match a declaration in an inline namespace. */
3137 DECL_CONTEXT (decl) = DECL_CONTEXT (ofn);
3138 if (decls_match (decl, ofn))
3140 if (found && !decls_match (found, ofn))
3142 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
3143 error ("reference to %qD is ambiguous", decl);
3144 print_candidates (old);
3145 return;
3147 found = ofn;
3150 if (found)
3152 if (!is_associated_namespace (scope, CP_DECL_CONTEXT (found)))
3153 goto complain;
3154 DECL_CONTEXT (decl) = DECL_CONTEXT (found);
3155 return;
3158 else
3160 DECL_CONTEXT (decl) = DECL_CONTEXT (old);
3161 if (decls_match (decl, old))
3162 return;
3165 /* It didn't work, go back to the explicit scope. */
3166 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
3167 complain:
3168 error ("%qD should have been declared inside %qD", decl, scope);
3171 /* Return the namespace where the current declaration is declared. */
3173 static tree
3174 current_decl_namespace (void)
3176 tree result;
3177 /* If we have been pushed into a different namespace, use it. */
3178 if (decl_namespace_list)
3179 return TREE_PURPOSE (decl_namespace_list);
3181 if (current_class_type)
3182 result = decl_namespace_context (current_class_type);
3183 else if (current_function_decl)
3184 result = decl_namespace_context (current_function_decl);
3185 else
3186 result = current_namespace;
3187 return result;
3190 /* Process any ATTRIBUTES on a namespace definition. Currently only
3191 attribute visibility is meaningful, which is a property of the syntactic
3192 block rather than the namespace as a whole, so we don't touch the
3193 NAMESPACE_DECL at all. Returns true if attribute visibility is seen. */
3195 bool
3196 handle_namespace_attrs (tree ns, tree attributes)
3198 tree d;
3199 bool saw_vis = false;
3201 for (d = attributes; d; d = TREE_CHAIN (d))
3203 tree name = TREE_PURPOSE (d);
3204 tree args = TREE_VALUE (d);
3206 #ifdef HANDLE_PRAGMA_VISIBILITY
3207 if (is_attribute_p ("visibility", name))
3209 tree x = args ? TREE_VALUE (args) : NULL_TREE;
3210 if (x == NULL_TREE || TREE_CODE (x) != STRING_CST || TREE_CHAIN (args))
3212 warning (OPT_Wattributes,
3213 "%qD attribute requires a single NTBS argument",
3214 name);
3215 continue;
3218 if (!TREE_PUBLIC (ns))
3219 warning (OPT_Wattributes,
3220 "%qD attribute is meaningless since members of the "
3221 "anonymous namespace get local symbols", name);
3223 push_visibility (TREE_STRING_POINTER (x), 1);
3224 saw_vis = true;
3226 else
3227 #endif
3229 warning (OPT_Wattributes, "%qD attribute directive ignored",
3230 name);
3231 continue;
3235 return saw_vis;
3238 /* Push into the scope of the NAME namespace. If NAME is NULL_TREE, then we
3239 select a name that is unique to this compilation unit. */
3241 void
3242 push_namespace (tree name)
3244 tree d = NULL_TREE;
3245 int need_new = 1;
3246 int implicit_use = 0;
3247 bool anon = !name;
3249 timevar_push (TV_NAME_LOOKUP);
3251 /* We should not get here if the global_namespace is not yet constructed
3252 nor if NAME designates the global namespace: The global scope is
3253 constructed elsewhere. */
3254 gcc_assert (global_namespace != NULL && name != global_scope_name);
3256 if (anon)
3258 name = get_anonymous_namespace_name();
3259 d = IDENTIFIER_NAMESPACE_VALUE (name);
3260 if (d)
3261 /* Reopening anonymous namespace. */
3262 need_new = 0;
3263 implicit_use = 1;
3265 else
3267 /* Check whether this is an extended namespace definition. */
3268 d = IDENTIFIER_NAMESPACE_VALUE (name);
3269 if (d != NULL_TREE && TREE_CODE (d) == NAMESPACE_DECL)
3271 need_new = 0;
3272 if (DECL_NAMESPACE_ALIAS (d))
3274 error ("namespace alias %qD not allowed here, assuming %qD",
3275 d, DECL_NAMESPACE_ALIAS (d));
3276 d = DECL_NAMESPACE_ALIAS (d);
3281 if (need_new)
3283 /* Make a new namespace, binding the name to it. */
3284 d = build_lang_decl (NAMESPACE_DECL, name, void_type_node);
3285 DECL_CONTEXT (d) = FROB_CONTEXT (current_namespace);
3286 /* The name of this namespace is not visible to other translation
3287 units if it is an anonymous namespace or member thereof. */
3288 if (anon || decl_anon_ns_mem_p (current_namespace))
3289 TREE_PUBLIC (d) = 0;
3290 else
3291 TREE_PUBLIC (d) = 1;
3292 pushdecl (d);
3293 if (anon)
3295 /* Clear DECL_NAME for the benefit of debugging back ends. */
3296 SET_DECL_ASSEMBLER_NAME (d, name);
3297 DECL_NAME (d) = NULL_TREE;
3299 begin_scope (sk_namespace, d);
3301 else
3302 resume_scope (NAMESPACE_LEVEL (d));
3304 if (implicit_use)
3305 do_using_directive (d);
3306 /* Enter the name space. */
3307 current_namespace = d;
3309 timevar_pop (TV_NAME_LOOKUP);
3312 /* Pop from the scope of the current namespace. */
3314 void
3315 pop_namespace (void)
3317 gcc_assert (current_namespace != global_namespace);
3318 current_namespace = CP_DECL_CONTEXT (current_namespace);
3319 /* The binding level is not popped, as it might be re-opened later. */
3320 leave_scope ();
3323 /* Push into the scope of the namespace NS, even if it is deeply
3324 nested within another namespace. */
3326 void
3327 push_nested_namespace (tree ns)
3329 if (ns == global_namespace)
3330 push_to_top_level ();
3331 else
3333 push_nested_namespace (CP_DECL_CONTEXT (ns));
3334 push_namespace (DECL_NAME (ns));
3338 /* Pop back from the scope of the namespace NS, which was previously
3339 entered with push_nested_namespace. */
3341 void
3342 pop_nested_namespace (tree ns)
3344 timevar_push (TV_NAME_LOOKUP);
3345 while (ns != global_namespace)
3347 pop_namespace ();
3348 ns = CP_DECL_CONTEXT (ns);
3351 pop_from_top_level ();
3352 timevar_pop (TV_NAME_LOOKUP);
3355 /* Temporarily set the namespace for the current declaration. */
3357 void
3358 push_decl_namespace (tree decl)
3360 if (TREE_CODE (decl) != NAMESPACE_DECL)
3361 decl = decl_namespace_context (decl);
3362 decl_namespace_list = tree_cons (ORIGINAL_NAMESPACE (decl),
3363 NULL_TREE, decl_namespace_list);
3366 /* [namespace.memdef]/2 */
3368 void
3369 pop_decl_namespace (void)
3371 decl_namespace_list = TREE_CHAIN (decl_namespace_list);
3374 /* Return the namespace that is the common ancestor
3375 of two given namespaces. */
3377 static tree
3378 namespace_ancestor (tree ns1, tree ns2)
3380 timevar_push (TV_NAME_LOOKUP);
3381 if (is_ancestor (ns1, ns2))
3382 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ns1);
3383 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP,
3384 namespace_ancestor (CP_DECL_CONTEXT (ns1), ns2));
3387 /* Process a namespace-alias declaration. */
3389 void
3390 do_namespace_alias (tree alias, tree name_space)
3392 if (name_space == error_mark_node)
3393 return;
3395 gcc_assert (TREE_CODE (name_space) == NAMESPACE_DECL);
3397 name_space = ORIGINAL_NAMESPACE (name_space);
3399 /* Build the alias. */
3400 alias = build_lang_decl (NAMESPACE_DECL, alias, void_type_node);
3401 DECL_NAMESPACE_ALIAS (alias) = name_space;
3402 DECL_EXTERNAL (alias) = 1;
3403 DECL_CONTEXT (alias) = FROB_CONTEXT (current_scope ());
3404 pushdecl (alias);
3406 /* Emit debug info for namespace alias. */
3407 if (!building_stmt_tree ())
3408 (*debug_hooks->global_decl) (alias);
3411 /* Like pushdecl, only it places X in the current namespace,
3412 if appropriate. */
3414 tree
3415 pushdecl_namespace_level (tree x, bool is_friend)
3417 struct cp_binding_level *b = current_binding_level;
3418 tree t;
3420 timevar_push (TV_NAME_LOOKUP);
3421 t = pushdecl_with_scope (x, NAMESPACE_LEVEL (current_namespace), is_friend);
3423 /* Now, the type_shadowed stack may screw us. Munge it so it does
3424 what we want. */
3425 if (TREE_CODE (t) == TYPE_DECL)
3427 tree name = DECL_NAME (t);
3428 tree newval;
3429 tree *ptr = (tree *)0;
3430 for (; !global_scope_p (b); b = b->level_chain)
3432 tree shadowed = b->type_shadowed;
3433 for (; shadowed; shadowed = TREE_CHAIN (shadowed))
3434 if (TREE_PURPOSE (shadowed) == name)
3436 ptr = &TREE_VALUE (shadowed);
3437 /* Can't break out of the loop here because sometimes
3438 a binding level will have duplicate bindings for
3439 PT names. It's gross, but I haven't time to fix it. */
3442 newval = TREE_TYPE (t);
3443 if (ptr == (tree *)0)
3445 /* @@ This shouldn't be needed. My test case "zstring.cc" trips
3446 up here if this is changed to an assertion. --KR */
3447 SET_IDENTIFIER_TYPE_VALUE (name, t);
3449 else
3451 *ptr = newval;
3454 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
3457 /* Insert USED into the using list of USER. Set INDIRECT_flag if this
3458 directive is not directly from the source. Also find the common
3459 ancestor and let our users know about the new namespace */
3460 static void
3461 add_using_namespace (tree user, tree used, bool indirect)
3463 tree t;
3464 timevar_push (TV_NAME_LOOKUP);
3465 /* Using oneself is a no-op. */
3466 if (user == used)
3468 timevar_pop (TV_NAME_LOOKUP);
3469 return;
3471 gcc_assert (TREE_CODE (user) == NAMESPACE_DECL);
3472 gcc_assert (TREE_CODE (used) == NAMESPACE_DECL);
3473 /* Check if we already have this. */
3474 t = purpose_member (used, DECL_NAMESPACE_USING (user));
3475 if (t != NULL_TREE)
3477 if (!indirect)
3478 /* Promote to direct usage. */
3479 TREE_INDIRECT_USING (t) = 0;
3480 timevar_pop (TV_NAME_LOOKUP);
3481 return;
3484 /* Add used to the user's using list. */
3485 DECL_NAMESPACE_USING (user)
3486 = tree_cons (used, namespace_ancestor (user, used),
3487 DECL_NAMESPACE_USING (user));
3489 TREE_INDIRECT_USING (DECL_NAMESPACE_USING (user)) = indirect;
3491 /* Add user to the used's users list. */
3492 DECL_NAMESPACE_USERS (used)
3493 = tree_cons (user, 0, DECL_NAMESPACE_USERS (used));
3495 /* Recursively add all namespaces used. */
3496 for (t = DECL_NAMESPACE_USING (used); t; t = TREE_CHAIN (t))
3497 /* indirect usage */
3498 add_using_namespace (user, TREE_PURPOSE (t), 1);
3500 /* Tell everyone using us about the new used namespaces. */
3501 for (t = DECL_NAMESPACE_USERS (user); t; t = TREE_CHAIN (t))
3502 add_using_namespace (TREE_PURPOSE (t), used, 1);
3503 timevar_pop (TV_NAME_LOOKUP);
3506 /* Process a using-declaration not appearing in class or local scope. */
3508 void
3509 do_toplevel_using_decl (tree decl, tree scope, tree name)
3511 tree oldval, oldtype, newval, newtype;
3512 tree orig_decl = decl;
3513 cxx_binding *binding;
3515 decl = validate_nonmember_using_decl (decl, scope, name);
3516 if (decl == NULL_TREE)
3517 return;
3519 binding = binding_for_name (NAMESPACE_LEVEL (current_namespace), name);
3521 oldval = binding->value;
3522 oldtype = binding->type;
3524 do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype);
3526 /* Emit debug info. */
3527 if (!processing_template_decl)
3528 cp_emit_debug_info_for_using (orig_decl, current_namespace);
3530 /* Copy declarations found. */
3531 if (newval)
3532 binding->value = newval;
3533 if (newtype)
3534 binding->type = newtype;
3537 /* Process a using-directive. */
3539 void
3540 do_using_directive (tree name_space)
3542 tree context = NULL_TREE;
3544 if (name_space == error_mark_node)
3545 return;
3547 gcc_assert (TREE_CODE (name_space) == NAMESPACE_DECL);
3549 if (building_stmt_tree ())
3550 add_stmt (build_stmt (input_location, USING_STMT, name_space));
3551 name_space = ORIGINAL_NAMESPACE (name_space);
3553 if (!toplevel_bindings_p ())
3555 push_using_directive (name_space);
3557 else
3559 /* direct usage */
3560 add_using_namespace (current_namespace, name_space, 0);
3561 if (current_namespace != global_namespace)
3562 context = current_namespace;
3564 /* Emit debugging info. */
3565 if (!processing_template_decl)
3566 (*debug_hooks->imported_module_or_decl) (name_space, NULL_TREE,
3567 context, false);
3571 /* Deal with a using-directive seen by the parser. Currently we only
3572 handle attributes here, since they cannot appear inside a template. */
3574 void
3575 parse_using_directive (tree name_space, tree attribs)
3577 tree a;
3579 do_using_directive (name_space);
3581 for (a = attribs; a; a = TREE_CHAIN (a))
3583 tree name = TREE_PURPOSE (a);
3584 if (is_attribute_p ("strong", name))
3586 if (!toplevel_bindings_p ())
3587 error ("strong using only meaningful at namespace scope");
3588 else if (name_space != error_mark_node)
3590 if (!is_ancestor (current_namespace, name_space))
3591 error ("current namespace %qD does not enclose strongly used namespace %qD",
3592 current_namespace, name_space);
3593 DECL_NAMESPACE_ASSOCIATIONS (name_space)
3594 = tree_cons (current_namespace, 0,
3595 DECL_NAMESPACE_ASSOCIATIONS (name_space));
3598 else
3599 warning (OPT_Wattributes, "%qD attribute directive ignored", name);
3603 /* Like pushdecl, only it places X in the global scope if appropriate.
3604 Calls cp_finish_decl to register the variable, initializing it with
3605 *INIT, if INIT is non-NULL. */
3607 static tree
3608 pushdecl_top_level_1 (tree x, tree *init, bool is_friend)
3610 timevar_push (TV_NAME_LOOKUP);
3611 push_to_top_level ();
3612 x = pushdecl_namespace_level (x, is_friend);
3613 if (init)
3614 cp_finish_decl (x, *init, false, NULL_TREE, 0);
3615 pop_from_top_level ();
3616 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
3619 /* Like pushdecl, only it places X in the global scope if appropriate. */
3621 tree
3622 pushdecl_top_level (tree x)
3624 return pushdecl_top_level_1 (x, NULL, false);
3627 /* Like pushdecl_top_level, but adding the IS_FRIEND parameter. */
3629 tree
3630 pushdecl_top_level_maybe_friend (tree x, bool is_friend)
3632 return pushdecl_top_level_1 (x, NULL, is_friend);
3635 /* Like pushdecl, only it places X in the global scope if
3636 appropriate. Calls cp_finish_decl to register the variable,
3637 initializing it with INIT. */
3639 tree
3640 pushdecl_top_level_and_finish (tree x, tree init)
3642 return pushdecl_top_level_1 (x, &init, false);
3645 /* Combines two sets of overloaded functions into an OVERLOAD chain, removing
3646 duplicates. The first list becomes the tail of the result.
3648 The algorithm is O(n^2). We could get this down to O(n log n) by
3649 doing a sort on the addresses of the functions, if that becomes
3650 necessary. */
3652 static tree
3653 merge_functions (tree s1, tree s2)
3655 for (; s2; s2 = OVL_NEXT (s2))
3657 tree fn2 = OVL_CURRENT (s2);
3658 tree fns1;
3660 for (fns1 = s1; fns1; fns1 = OVL_NEXT (fns1))
3662 tree fn1 = OVL_CURRENT (fns1);
3664 /* If the function from S2 is already in S1, there is no
3665 need to add it again. For `extern "C"' functions, we
3666 might have two FUNCTION_DECLs for the same function, in
3667 different namespaces, but let's leave them in in case
3668 they have different default arguments. */
3669 if (fn1 == fn2)
3670 break;
3673 /* If we exhausted all of the functions in S1, FN2 is new. */
3674 if (!fns1)
3675 s1 = build_overload (fn2, s1);
3677 return s1;
3680 /* This should return an error not all definitions define functions.
3681 It is not an error if we find two functions with exactly the
3682 same signature, only if these are selected in overload resolution.
3683 old is the current set of bindings, new_binding the freshly-found binding.
3684 XXX Do we want to give *all* candidates in case of ambiguity?
3685 XXX In what way should I treat extern declarations?
3686 XXX I don't want to repeat the entire duplicate_decls here */
3688 static void
3689 ambiguous_decl (struct scope_binding *old, cxx_binding *new_binding, int flags)
3691 tree val, type;
3692 gcc_assert (old != NULL);
3694 /* Copy the type. */
3695 type = new_binding->type;
3696 if (LOOKUP_NAMESPACES_ONLY (flags)
3697 || (type && hidden_name_p (type) && !(flags & LOOKUP_HIDDEN)))
3698 type = NULL_TREE;
3700 /* Copy the value. */
3701 val = new_binding->value;
3702 if (val)
3704 if (hidden_name_p (val) && !(flags & LOOKUP_HIDDEN))
3705 val = NULL_TREE;
3706 else
3707 switch (TREE_CODE (val))
3709 case TEMPLATE_DECL:
3710 /* If we expect types or namespaces, and not templates,
3711 or this is not a template class. */
3712 if ((LOOKUP_QUALIFIERS_ONLY (flags)
3713 && !DECL_CLASS_TEMPLATE_P (val)))
3714 val = NULL_TREE;
3715 break;
3716 case TYPE_DECL:
3717 if (LOOKUP_NAMESPACES_ONLY (flags)
3718 || (type && (flags & LOOKUP_PREFER_TYPES)))
3719 val = NULL_TREE;
3720 break;
3721 case NAMESPACE_DECL:
3722 if (LOOKUP_TYPES_ONLY (flags))
3723 val = NULL_TREE;
3724 break;
3725 case FUNCTION_DECL:
3726 /* Ignore built-in functions that are still anticipated. */
3727 if (LOOKUP_QUALIFIERS_ONLY (flags))
3728 val = NULL_TREE;
3729 break;
3730 default:
3731 if (LOOKUP_QUALIFIERS_ONLY (flags))
3732 val = NULL_TREE;
3736 /* If val is hidden, shift down any class or enumeration name. */
3737 if (!val)
3739 val = type;
3740 type = NULL_TREE;
3743 if (!old->value)
3744 old->value = val;
3745 else if (val && val != old->value)
3747 if (is_overloaded_fn (old->value) && is_overloaded_fn (val))
3748 old->value = merge_functions (old->value, val);
3749 else
3751 old->value = tree_cons (NULL_TREE, old->value,
3752 build_tree_list (NULL_TREE, val));
3753 TREE_TYPE (old->value) = error_mark_node;
3757 if (!old->type)
3758 old->type = type;
3759 else if (type && old->type != type)
3761 old->type = tree_cons (NULL_TREE, old->type,
3762 build_tree_list (NULL_TREE, type));
3763 TREE_TYPE (old->type) = error_mark_node;
3767 /* Return the declarations that are members of the namespace NS. */
3769 tree
3770 cp_namespace_decls (tree ns)
3772 return NAMESPACE_LEVEL (ns)->names;
3775 /* Combine prefer_type and namespaces_only into flags. */
3777 static int
3778 lookup_flags (int prefer_type, int namespaces_only)
3780 if (namespaces_only)
3781 return LOOKUP_PREFER_NAMESPACES;
3782 if (prefer_type > 1)
3783 return LOOKUP_PREFER_TYPES;
3784 if (prefer_type > 0)
3785 return LOOKUP_PREFER_BOTH;
3786 return 0;
3789 /* Given a lookup that returned VAL, use FLAGS to decide if we want to
3790 ignore it or not. Subroutine of lookup_name_real and
3791 lookup_type_scope. */
3793 static bool
3794 qualify_lookup (tree val, int flags)
3796 if (val == NULL_TREE)
3797 return false;
3798 if ((flags & LOOKUP_PREFER_NAMESPACES) && TREE_CODE (val) == NAMESPACE_DECL)
3799 return true;
3800 if ((flags & LOOKUP_PREFER_TYPES)
3801 && (TREE_CODE (val) == TYPE_DECL || TREE_CODE (val) == TEMPLATE_DECL))
3802 return true;
3803 if (flags & (LOOKUP_PREFER_NAMESPACES | LOOKUP_PREFER_TYPES))
3804 return false;
3805 /* In unevaluated context, look past normal capture fields. */
3806 if (cp_unevaluated_operand && TREE_CODE (val) == FIELD_DECL
3807 && DECL_NORMAL_CAPTURE_P (val))
3808 return false;
3809 return true;
3812 /* Given a lookup that returned VAL, decide if we want to ignore it or
3813 not based on DECL_ANTICIPATED. */
3815 bool
3816 hidden_name_p (tree val)
3818 if (DECL_P (val)
3819 && DECL_LANG_SPECIFIC (val)
3820 && DECL_ANTICIPATED (val))
3821 return true;
3822 return false;
3825 /* Remove any hidden friend functions from a possibly overloaded set
3826 of functions. */
3828 tree
3829 remove_hidden_names (tree fns)
3831 if (!fns)
3832 return fns;
3834 if (TREE_CODE (fns) == FUNCTION_DECL && hidden_name_p (fns))
3835 fns = NULL_TREE;
3836 else if (TREE_CODE (fns) == OVERLOAD)
3838 tree o;
3840 for (o = fns; o; o = OVL_NEXT (o))
3841 if (hidden_name_p (OVL_CURRENT (o)))
3842 break;
3843 if (o)
3845 tree n = NULL_TREE;
3847 for (o = fns; o; o = OVL_NEXT (o))
3848 if (!hidden_name_p (OVL_CURRENT (o)))
3849 n = build_overload (OVL_CURRENT (o), n);
3850 fns = n;
3854 return fns;
3857 /* Unscoped lookup of a global: iterate over current namespaces,
3858 considering using-directives. */
3860 static tree
3861 unqualified_namespace_lookup (tree name, int flags)
3863 tree initial = current_decl_namespace ();
3864 tree scope = initial;
3865 tree siter;
3866 struct cp_binding_level *level;
3867 tree val = NULL_TREE;
3869 timevar_push (TV_NAME_LOOKUP);
3871 for (; !val; scope = CP_DECL_CONTEXT (scope))
3873 struct scope_binding binding = EMPTY_SCOPE_BINDING;
3874 cxx_binding *b =
3875 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name);
3877 if (b)
3878 ambiguous_decl (&binding, b, flags);
3880 /* Add all _DECLs seen through local using-directives. */
3881 for (level = current_binding_level;
3882 level->kind != sk_namespace;
3883 level = level->level_chain)
3884 if (!lookup_using_namespace (name, &binding, level->using_directives,
3885 scope, flags))
3886 /* Give up because of error. */
3887 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3889 /* Add all _DECLs seen through global using-directives. */
3890 /* XXX local and global using lists should work equally. */
3891 siter = initial;
3892 while (1)
3894 if (!lookup_using_namespace (name, &binding,
3895 DECL_NAMESPACE_USING (siter),
3896 scope, flags))
3897 /* Give up because of error. */
3898 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3899 if (siter == scope) break;
3900 siter = CP_DECL_CONTEXT (siter);
3903 val = binding.value;
3904 if (scope == global_namespace)
3905 break;
3907 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3910 /* Look up NAME (an IDENTIFIER_NODE) in SCOPE (either a NAMESPACE_DECL
3911 or a class TYPE). If IS_TYPE_P is TRUE, then ignore non-type
3912 bindings.
3914 Returns a DECL (or OVERLOAD, or BASELINK) representing the
3915 declaration found. If no suitable declaration can be found,
3916 ERROR_MARK_NODE is returned. If COMPLAIN is true and SCOPE is
3917 neither a class-type nor a namespace a diagnostic is issued. */
3919 tree
3920 lookup_qualified_name (tree scope, tree name, bool is_type_p, bool complain)
3922 int flags = 0;
3923 tree t = NULL_TREE;
3925 if (TREE_CODE (scope) == NAMESPACE_DECL)
3927 struct scope_binding binding = EMPTY_SCOPE_BINDING;
3929 flags |= LOOKUP_COMPLAIN;
3930 if (is_type_p)
3931 flags |= LOOKUP_PREFER_TYPES;
3932 if (qualified_lookup_using_namespace (name, scope, &binding, flags))
3933 t = binding.value;
3935 else if (cxx_dialect != cxx98 && TREE_CODE (scope) == ENUMERAL_TYPE)
3936 t = lookup_enumerator (scope, name);
3937 else if (is_class_type (scope, complain))
3938 t = lookup_member (scope, name, 2, is_type_p);
3940 if (!t)
3941 return error_mark_node;
3942 return t;
3945 /* Subroutine of unqualified_namespace_lookup:
3946 Add the bindings of NAME in used namespaces to VAL.
3947 We are currently looking for names in namespace SCOPE, so we
3948 look through USINGS for using-directives of namespaces
3949 which have SCOPE as a common ancestor with the current scope.
3950 Returns false on errors. */
3952 static bool
3953 lookup_using_namespace (tree name, struct scope_binding *val,
3954 tree usings, tree scope, int flags)
3956 tree iter;
3957 timevar_push (TV_NAME_LOOKUP);
3958 /* Iterate over all used namespaces in current, searching for using
3959 directives of scope. */
3960 for (iter = usings; iter; iter = TREE_CHAIN (iter))
3961 if (TREE_VALUE (iter) == scope)
3963 tree used = ORIGINAL_NAMESPACE (TREE_PURPOSE (iter));
3964 cxx_binding *val1 =
3965 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (used), name);
3966 /* Resolve ambiguities. */
3967 if (val1)
3968 ambiguous_decl (val, val1, flags);
3970 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val->value != error_mark_node);
3973 /* Returns true iff VEC contains TARGET. */
3975 static bool
3976 tree_vec_contains (VEC(tree,gc)* vec, tree target)
3978 unsigned int i;
3979 tree elt;
3980 for (i = 0; VEC_iterate(tree,vec,i,elt); ++i)
3981 if (elt == target)
3982 return true;
3983 return false;
3986 /* [namespace.qual]
3987 Accepts the NAME to lookup and its qualifying SCOPE.
3988 Returns the name/type pair found into the cxx_binding *RESULT,
3989 or false on error. */
3991 static bool
3992 qualified_lookup_using_namespace (tree name, tree scope,
3993 struct scope_binding *result, int flags)
3995 /* Maintain a list of namespaces visited... */
3996 VEC(tree,gc) *seen = NULL;
3997 VEC(tree,gc) *seen_inline = NULL;
3998 /* ... and a list of namespace yet to see. */
3999 VEC(tree,gc) *todo = NULL;
4000 VEC(tree,gc) *todo_maybe = NULL;
4001 VEC(tree,gc) *todo_inline = NULL;
4002 tree usings;
4003 timevar_push (TV_NAME_LOOKUP);
4004 /* Look through namespace aliases. */
4005 scope = ORIGINAL_NAMESPACE (scope);
4007 /* Algorithm: Starting with SCOPE, walk through the the set of used
4008 namespaces. For each used namespace, look through its inline
4009 namespace set for any bindings and usings. If no bindings are found,
4010 add any usings seen to the set of used namespaces. */
4011 VEC_safe_push (tree, gc, todo, scope);
4013 while (VEC_length (tree, todo))
4015 bool found_here;
4016 scope = VEC_pop (tree, todo);
4017 if (tree_vec_contains (seen, scope))
4018 continue;
4019 VEC_safe_push (tree, gc, seen, scope);
4020 VEC_safe_push (tree, gc, todo_inline, scope);
4022 found_here = false;
4023 while (VEC_length (tree, todo_inline))
4025 cxx_binding *binding;
4027 scope = VEC_pop (tree, todo_inline);
4028 if (tree_vec_contains (seen_inline, scope))
4029 continue;
4030 VEC_safe_push (tree, gc, seen_inline, scope);
4032 binding =
4033 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name);
4034 if (binding)
4036 found_here = true;
4037 ambiguous_decl (result, binding, flags);
4040 for (usings = DECL_NAMESPACE_USING (scope); usings;
4041 usings = TREE_CHAIN (usings))
4042 if (!TREE_INDIRECT_USING (usings))
4044 if (is_associated_namespace (scope, TREE_PURPOSE (usings)))
4045 VEC_safe_push (tree, gc, todo_inline, TREE_PURPOSE (usings));
4046 else
4047 VEC_safe_push (tree, gc, todo_maybe, TREE_PURPOSE (usings));
4051 if (found_here)
4052 VEC_truncate (tree, todo_maybe, 0);
4053 else
4054 while (VEC_length (tree, todo_maybe))
4055 VEC_safe_push (tree, gc, todo, VEC_pop (tree, todo_maybe));
4057 VEC_free (tree,gc,todo);
4058 VEC_free (tree,gc,todo_maybe);
4059 VEC_free (tree,gc,todo_inline);
4060 VEC_free (tree,gc,seen);
4061 VEC_free (tree,gc,seen_inline);
4062 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, result->value != error_mark_node);
4065 /* Subroutine of outer_binding.
4066 Returns TRUE if BINDING is a binding to a template parameter of SCOPE,
4067 FALSE otherwise. */
4069 static bool
4070 binding_to_template_parms_of_scope_p (cxx_binding *binding,
4071 cxx_scope *scope)
4073 tree binding_value;
4075 if (!binding || !scope)
4076 return false;
4078 binding_value = binding->value ? binding->value : binding->type;
4080 return (scope
4081 && scope->this_entity
4082 && get_template_info (scope->this_entity)
4083 && parameter_of_template_p (binding_value,
4084 TI_TEMPLATE (get_template_info \
4085 (scope->this_entity))));
4088 /* Return the innermost non-namespace binding for NAME from a scope
4089 containing BINDING, or, if BINDING is NULL, the current scope.
4090 Please note that for a given template, the template parameters are
4091 considered to be in the scope containing the current scope.
4092 If CLASS_P is false, then class bindings are ignored. */
4094 cxx_binding *
4095 outer_binding (tree name,
4096 cxx_binding *binding,
4097 bool class_p)
4099 cxx_binding *outer;
4100 cxx_scope *scope;
4101 cxx_scope *outer_scope;
4103 if (binding)
4105 scope = binding->scope->level_chain;
4106 outer = binding->previous;
4108 else
4110 scope = current_binding_level;
4111 outer = IDENTIFIER_BINDING (name);
4113 outer_scope = outer ? outer->scope : NULL;
4115 /* Because we create class bindings lazily, we might be missing a
4116 class binding for NAME. If there are any class binding levels
4117 between the LAST_BINDING_LEVEL and the scope in which OUTER was
4118 declared, we must lookup NAME in those class scopes. */
4119 if (class_p)
4120 while (scope && scope != outer_scope && scope->kind != sk_namespace)
4122 if (scope->kind == sk_class)
4124 cxx_binding *class_binding;
4126 class_binding = get_class_binding (name, scope);
4127 if (class_binding)
4129 /* Thread this new class-scope binding onto the
4130 IDENTIFIER_BINDING list so that future lookups
4131 find it quickly. */
4132 class_binding->previous = outer;
4133 if (binding)
4134 binding->previous = class_binding;
4135 else
4136 IDENTIFIER_BINDING (name) = class_binding;
4137 return class_binding;
4140 /* If we are in a member template, the template parms of the member
4141 template are considered to be inside the scope of the containing
4142 class, but within G++ the class bindings are all pushed between the
4143 template parms and the function body. So if the outer binding is
4144 a template parm for the current scope, return it now rather than
4145 look for a class binding. */
4146 if (outer_scope && outer_scope->kind == sk_template_parms
4147 && binding_to_template_parms_of_scope_p (outer, scope))
4148 return outer;
4150 scope = scope->level_chain;
4153 return outer;
4156 /* Return the innermost block-scope or class-scope value binding for
4157 NAME, or NULL_TREE if there is no such binding. */
4159 tree
4160 innermost_non_namespace_value (tree name)
4162 cxx_binding *binding;
4163 binding = outer_binding (name, /*binding=*/NULL, /*class_p=*/true);
4164 return binding ? binding->value : NULL_TREE;
4167 /* Look up NAME in the current binding level and its superiors in the
4168 namespace of variables, functions and typedefs. Return a ..._DECL
4169 node of some kind representing its definition if there is only one
4170 such declaration, or return a TREE_LIST with all the overloaded
4171 definitions if there are many, or return 0 if it is undefined.
4172 Hidden name, either friend declaration or built-in function, are
4173 not ignored.
4175 If PREFER_TYPE is > 0, we prefer TYPE_DECLs or namespaces.
4176 If PREFER_TYPE is > 1, we reject non-type decls (e.g. namespaces).
4177 Otherwise we prefer non-TYPE_DECLs.
4179 If NONCLASS is nonzero, bindings in class scopes are ignored. If
4180 BLOCK_P is false, bindings in block scopes are ignored. */
4182 tree
4183 lookup_name_real (tree name, int prefer_type, int nonclass, bool block_p,
4184 int namespaces_only, int flags)
4186 cxx_binding *iter;
4187 tree val = NULL_TREE;
4189 timevar_push (TV_NAME_LOOKUP);
4190 /* Conversion operators are handled specially because ordinary
4191 unqualified name lookup will not find template conversion
4192 operators. */
4193 if (IDENTIFIER_TYPENAME_P (name))
4195 struct cp_binding_level *level;
4197 for (level = current_binding_level;
4198 level && level->kind != sk_namespace;
4199 level = level->level_chain)
4201 tree class_type;
4202 tree operators;
4204 /* A conversion operator can only be declared in a class
4205 scope. */
4206 if (level->kind != sk_class)
4207 continue;
4209 /* Lookup the conversion operator in the class. */
4210 class_type = level->this_entity;
4211 operators = lookup_fnfields (class_type, name, /*protect=*/0);
4212 if (operators)
4213 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, operators);
4216 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
4219 flags |= lookup_flags (prefer_type, namespaces_only);
4221 /* First, look in non-namespace scopes. */
4223 if (current_class_type == NULL_TREE)
4224 nonclass = 1;
4226 if (block_p || !nonclass)
4227 for (iter = outer_binding (name, NULL, !nonclass);
4228 iter;
4229 iter = outer_binding (name, iter, !nonclass))
4231 tree binding;
4233 /* Skip entities we don't want. */
4234 if (LOCAL_BINDING_P (iter) ? !block_p : nonclass)
4235 continue;
4237 /* If this is the kind of thing we're looking for, we're done. */
4238 if (qualify_lookup (iter->value, flags))
4239 binding = iter->value;
4240 else if ((flags & LOOKUP_PREFER_TYPES)
4241 && qualify_lookup (iter->type, flags))
4242 binding = iter->type;
4243 else
4244 binding = NULL_TREE;
4246 if (binding)
4248 if (hidden_name_p (binding))
4250 /* A non namespace-scope binding can only be hidden in the
4251 presence of a local class, due to friend declarations.
4253 In particular, consider:
4255 struct C;
4256 void f() {
4257 struct A {
4258 friend struct B;
4259 friend struct C;
4260 void g() {
4261 B* b; // error: B is hidden
4262 C* c; // OK, finds ::C
4265 B *b; // error: B is hidden
4266 C *c; // OK, finds ::C
4267 struct B {};
4268 B *bb; // OK
4271 The standard says that "B" is a local class in "f"
4272 (but not nested within "A") -- but that name lookup
4273 for "B" does not find this declaration until it is
4274 declared directly with "f".
4276 In particular:
4278 [class.friend]
4280 If a friend declaration appears in a local class and
4281 the name specified is an unqualified name, a prior
4282 declaration is looked up without considering scopes
4283 that are outside the innermost enclosing non-class
4284 scope. For a friend function declaration, if there is
4285 no prior declaration, the program is ill-formed. For a
4286 friend class declaration, if there is no prior
4287 declaration, the class that is specified belongs to the
4288 innermost enclosing non-class scope, but if it is
4289 subsequently referenced, its name is not found by name
4290 lookup until a matching declaration is provided in the
4291 innermost enclosing nonclass scope.
4293 So just keep looking for a non-hidden binding.
4295 gcc_assert (TREE_CODE (binding) == TYPE_DECL);
4296 continue;
4298 val = binding;
4299 break;
4303 /* Now lookup in namespace scopes. */
4304 if (!val)
4305 val = unqualified_namespace_lookup (name, flags);
4307 /* If we have a single function from a using decl, pull it out. */
4308 if (val && TREE_CODE (val) == OVERLOAD && !really_overloaded_fn (val))
4309 val = OVL_FUNCTION (val);
4311 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
4314 tree
4315 lookup_name_nonclass (tree name)
4317 return lookup_name_real (name, 0, 1, /*block_p=*/true, 0, LOOKUP_COMPLAIN);
4320 tree
4321 lookup_function_nonclass (tree name, VEC(tree,gc) *args, bool block_p)
4323 return
4324 lookup_arg_dependent (name,
4325 lookup_name_real (name, 0, 1, block_p, 0,
4326 LOOKUP_COMPLAIN),
4327 args);
4330 tree
4331 lookup_name (tree name)
4333 return lookup_name_real (name, 0, 0, /*block_p=*/true, 0, LOOKUP_COMPLAIN);
4336 tree
4337 lookup_name_prefer_type (tree name, int prefer_type)
4339 return lookup_name_real (name, prefer_type, 0, /*block_p=*/true,
4340 0, LOOKUP_COMPLAIN);
4343 /* Look up NAME for type used in elaborated name specifier in
4344 the scopes given by SCOPE. SCOPE can be either TS_CURRENT or
4345 TS_WITHIN_ENCLOSING_NON_CLASS. Although not implied by the
4346 name, more scopes are checked if cleanup or template parameter
4347 scope is encountered.
4349 Unlike lookup_name_real, we make sure that NAME is actually
4350 declared in the desired scope, not from inheritance, nor using
4351 directive. For using declaration, there is DR138 still waiting
4352 to be resolved. Hidden name coming from an earlier friend
4353 declaration is also returned.
4355 A TYPE_DECL best matching the NAME is returned. Catching error
4356 and issuing diagnostics are caller's responsibility. */
4358 tree
4359 lookup_type_scope (tree name, tag_scope scope)
4361 cxx_binding *iter = NULL;
4362 tree val = NULL_TREE;
4364 timevar_push (TV_NAME_LOOKUP);
4366 /* Look in non-namespace scope first. */
4367 if (current_binding_level->kind != sk_namespace)
4368 iter = outer_binding (name, NULL, /*class_p=*/ true);
4369 for (; iter; iter = outer_binding (name, iter, /*class_p=*/ true))
4371 /* Check if this is the kind of thing we're looking for.
4372 If SCOPE is TS_CURRENT, also make sure it doesn't come from
4373 base class. For ITER->VALUE, we can simply use
4374 INHERITED_VALUE_BINDING_P. For ITER->TYPE, we have to use
4375 our own check.
4377 We check ITER->TYPE before ITER->VALUE in order to handle
4378 typedef struct C {} C;
4379 correctly. */
4381 if (qualify_lookup (iter->type, LOOKUP_PREFER_TYPES)
4382 && (scope != ts_current
4383 || LOCAL_BINDING_P (iter)
4384 || DECL_CONTEXT (iter->type) == iter->scope->this_entity))
4385 val = iter->type;
4386 else if ((scope != ts_current
4387 || !INHERITED_VALUE_BINDING_P (iter))
4388 && qualify_lookup (iter->value, LOOKUP_PREFER_TYPES))
4389 val = iter->value;
4391 if (val)
4392 break;
4395 /* Look in namespace scope. */
4396 if (!val)
4398 iter = cxx_scope_find_binding_for_name
4399 (NAMESPACE_LEVEL (current_decl_namespace ()), name);
4401 if (iter)
4403 /* If this is the kind of thing we're looking for, we're done. */
4404 if (qualify_lookup (iter->type, LOOKUP_PREFER_TYPES))
4405 val = iter->type;
4406 else if (qualify_lookup (iter->value, LOOKUP_PREFER_TYPES))
4407 val = iter->value;
4412 /* Type found, check if it is in the allowed scopes, ignoring cleanup
4413 and template parameter scopes. */
4414 if (val)
4416 struct cp_binding_level *b = current_binding_level;
4417 while (b)
4419 if (iter->scope == b)
4420 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
4422 if (b->kind == sk_cleanup || b->kind == sk_template_parms
4423 || b->kind == sk_function_parms)
4424 b = b->level_chain;
4425 else if (b->kind == sk_class
4426 && scope == ts_within_enclosing_non_class)
4427 b = b->level_chain;
4428 else
4429 break;
4433 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
4436 /* Similar to `lookup_name' but look only in the innermost non-class
4437 binding level. */
4439 tree
4440 lookup_name_innermost_nonclass_level (tree name)
4442 struct cp_binding_level *b;
4443 tree t = NULL_TREE;
4445 timevar_push (TV_NAME_LOOKUP);
4446 b = innermost_nonclass_level ();
4448 if (b->kind == sk_namespace)
4450 t = IDENTIFIER_NAMESPACE_VALUE (name);
4452 /* extern "C" function() */
4453 if (t != NULL_TREE && TREE_CODE (t) == TREE_LIST)
4454 t = TREE_VALUE (t);
4456 else if (IDENTIFIER_BINDING (name)
4457 && LOCAL_BINDING_P (IDENTIFIER_BINDING (name)))
4459 cxx_binding *binding;
4460 binding = IDENTIFIER_BINDING (name);
4461 while (1)
4463 if (binding->scope == b
4464 && !(TREE_CODE (binding->value) == VAR_DECL
4465 && DECL_DEAD_FOR_LOCAL (binding->value)))
4466 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, binding->value);
4468 if (b->kind == sk_cleanup)
4469 b = b->level_chain;
4470 else
4471 break;
4475 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
4478 /* Returns true iff DECL is a block-scope extern declaration of a function
4479 or variable. */
4481 bool
4482 is_local_extern (tree decl)
4484 cxx_binding *binding;
4486 /* For functions, this is easy. */
4487 if (TREE_CODE (decl) == FUNCTION_DECL)
4488 return DECL_LOCAL_FUNCTION_P (decl);
4490 if (TREE_CODE (decl) != VAR_DECL)
4491 return false;
4492 if (!current_function_decl)
4493 return false;
4495 /* For variables, this is not easy. We need to look at the binding stack
4496 for the identifier to see whether the decl we have is a local. */
4497 for (binding = IDENTIFIER_BINDING (DECL_NAME (decl));
4498 binding && binding->scope->kind != sk_namespace;
4499 binding = binding->previous)
4500 if (binding->value == decl)
4501 return LOCAL_BINDING_P (binding);
4503 return false;
4506 /* Like lookup_name_innermost_nonclass_level, but for types. */
4508 static tree
4509 lookup_type_current_level (tree name)
4511 tree t = NULL_TREE;
4513 timevar_push (TV_NAME_LOOKUP);
4514 gcc_assert (current_binding_level->kind != sk_namespace);
4516 if (REAL_IDENTIFIER_TYPE_VALUE (name) != NULL_TREE
4517 && REAL_IDENTIFIER_TYPE_VALUE (name) != global_type_node)
4519 struct cp_binding_level *b = current_binding_level;
4520 while (1)
4522 if (purpose_member (name, b->type_shadowed))
4523 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP,
4524 REAL_IDENTIFIER_TYPE_VALUE (name));
4525 if (b->kind == sk_cleanup)
4526 b = b->level_chain;
4527 else
4528 break;
4532 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
4535 /* [basic.lookup.koenig] */
4536 /* A nonzero return value in the functions below indicates an error. */
4538 struct arg_lookup
4540 tree name;
4541 VEC(tree,gc) *args;
4542 tree namespaces;
4543 tree classes;
4544 tree functions;
4547 static bool arg_assoc (struct arg_lookup*, tree);
4548 static bool arg_assoc_args (struct arg_lookup*, tree);
4549 static bool arg_assoc_args_vec (struct arg_lookup*, VEC(tree,gc) *);
4550 static bool arg_assoc_type (struct arg_lookup*, tree);
4551 static bool add_function (struct arg_lookup *, tree);
4552 static bool arg_assoc_namespace (struct arg_lookup *, tree);
4553 static bool arg_assoc_class_only (struct arg_lookup *, tree);
4554 static bool arg_assoc_bases (struct arg_lookup *, tree);
4555 static bool arg_assoc_class (struct arg_lookup *, tree);
4556 static bool arg_assoc_template_arg (struct arg_lookup*, tree);
4558 /* Add a function to the lookup structure.
4559 Returns true on error. */
4561 static bool
4562 add_function (struct arg_lookup *k, tree fn)
4564 /* We used to check here to see if the function was already in the list,
4565 but that's O(n^2), which is just too expensive for function lookup.
4566 Now we deal with the occasional duplicate in joust. In doing this, we
4567 assume that the number of duplicates will be small compared to the
4568 total number of functions being compared, which should usually be the
4569 case. */
4571 if (!is_overloaded_fn (fn))
4572 /* All names except those of (possibly overloaded) functions and
4573 function templates are ignored. */;
4574 else if (!k->functions)
4575 k->functions = fn;
4576 else if (fn == k->functions)
4578 else
4579 k->functions = build_overload (fn, k->functions);
4581 return false;
4584 /* Returns true iff CURRENT has declared itself to be an associated
4585 namespace of SCOPE via a strong using-directive (or transitive chain
4586 thereof). Both are namespaces. */
4588 bool
4589 is_associated_namespace (tree current, tree scope)
4591 tree seen = NULL_TREE;
4592 tree todo = NULL_TREE;
4593 tree t;
4594 while (1)
4596 if (scope == current)
4597 return true;
4598 seen = tree_cons (scope, NULL_TREE, seen);
4599 for (t = DECL_NAMESPACE_ASSOCIATIONS (scope); t; t = TREE_CHAIN (t))
4600 if (!purpose_member (TREE_PURPOSE (t), seen))
4601 todo = tree_cons (TREE_PURPOSE (t), NULL_TREE, todo);
4602 if (todo)
4604 scope = TREE_PURPOSE (todo);
4605 todo = TREE_CHAIN (todo);
4607 else
4608 return false;
4612 /* Add functions of a namespace to the lookup structure.
4613 Returns true on error. */
4615 static bool
4616 arg_assoc_namespace (struct arg_lookup *k, tree scope)
4618 tree value;
4620 if (purpose_member (scope, k->namespaces))
4621 return 0;
4622 k->namespaces = tree_cons (scope, NULL_TREE, k->namespaces);
4624 /* Check out our super-users. */
4625 for (value = DECL_NAMESPACE_ASSOCIATIONS (scope); value;
4626 value = TREE_CHAIN (value))
4627 if (arg_assoc_namespace (k, TREE_PURPOSE (value)))
4628 return true;
4630 /* Also look down into inline namespaces. */
4631 for (value = DECL_NAMESPACE_USING (scope); value;
4632 value = TREE_CHAIN (value))
4633 if (is_associated_namespace (scope, TREE_PURPOSE (value)))
4634 if (arg_assoc_namespace (k, TREE_PURPOSE (value)))
4635 return true;
4637 value = namespace_binding (k->name, scope);
4638 if (!value)
4639 return false;
4641 for (; value; value = OVL_NEXT (value))
4643 /* We don't want to find arbitrary hidden functions via argument
4644 dependent lookup. We only want to find friends of associated
4645 classes, which we'll do via arg_assoc_class. */
4646 if (hidden_name_p (OVL_CURRENT (value)))
4647 continue;
4649 if (add_function (k, OVL_CURRENT (value)))
4650 return true;
4653 return false;
4656 /* Adds everything associated with a template argument to the lookup
4657 structure. Returns true on error. */
4659 static bool
4660 arg_assoc_template_arg (struct arg_lookup *k, tree arg)
4662 /* [basic.lookup.koenig]
4664 If T is a template-id, its associated namespaces and classes are
4665 ... the namespaces and classes associated with the types of the
4666 template arguments provided for template type parameters
4667 (excluding template template parameters); the namespaces in which
4668 any template template arguments are defined; and the classes in
4669 which any member templates used as template template arguments
4670 are defined. [Note: non-type template arguments do not
4671 contribute to the set of associated namespaces. ] */
4673 /* Consider first template template arguments. */
4674 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
4675 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
4676 return false;
4677 else if (TREE_CODE (arg) == TEMPLATE_DECL)
4679 tree ctx = CP_DECL_CONTEXT (arg);
4681 /* It's not a member template. */
4682 if (TREE_CODE (ctx) == NAMESPACE_DECL)
4683 return arg_assoc_namespace (k, ctx);
4684 /* Otherwise, it must be member template. */
4685 else
4686 return arg_assoc_class_only (k, ctx);
4688 /* It's an argument pack; handle it recursively. */
4689 else if (ARGUMENT_PACK_P (arg))
4691 tree args = ARGUMENT_PACK_ARGS (arg);
4692 int i, len = TREE_VEC_LENGTH (args);
4693 for (i = 0; i < len; ++i)
4694 if (arg_assoc_template_arg (k, TREE_VEC_ELT (args, i)))
4695 return true;
4697 return false;
4699 /* It's not a template template argument, but it is a type template
4700 argument. */
4701 else if (TYPE_P (arg))
4702 return arg_assoc_type (k, arg);
4703 /* It's a non-type template argument. */
4704 else
4705 return false;
4708 /* Adds the class and its friends to the lookup structure.
4709 Returns true on error. */
4711 static bool
4712 arg_assoc_class_only (struct arg_lookup *k, tree type)
4714 tree list, friends, context;
4716 /* Backend-built structures, such as __builtin_va_list, aren't
4717 affected by all this. */
4718 if (!CLASS_TYPE_P (type))
4719 return false;
4721 context = decl_namespace_context (type);
4722 if (arg_assoc_namespace (k, context))
4723 return true;
4725 complete_type (type);
4727 /* Process friends. */
4728 for (list = DECL_FRIENDLIST (TYPE_MAIN_DECL (type)); list;
4729 list = TREE_CHAIN (list))
4730 if (k->name == FRIEND_NAME (list))
4731 for (friends = FRIEND_DECLS (list); friends;
4732 friends = TREE_CHAIN (friends))
4734 tree fn = TREE_VALUE (friends);
4736 /* Only interested in global functions with potentially hidden
4737 (i.e. unqualified) declarations. */
4738 if (CP_DECL_CONTEXT (fn) != context)
4739 continue;
4740 /* Template specializations are never found by name lookup.
4741 (Templates themselves can be found, but not template
4742 specializations.) */
4743 if (TREE_CODE (fn) == FUNCTION_DECL && DECL_USE_TEMPLATE (fn))
4744 continue;
4745 if (add_function (k, fn))
4746 return true;
4749 return false;
4752 /* Adds the class and its bases to the lookup structure.
4753 Returns true on error. */
4755 static bool
4756 arg_assoc_bases (struct arg_lookup *k, tree type)
4758 if (arg_assoc_class_only (k, type))
4759 return true;
4761 if (TYPE_BINFO (type))
4763 /* Process baseclasses. */
4764 tree binfo, base_binfo;
4765 int i;
4767 for (binfo = TYPE_BINFO (type), i = 0;
4768 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
4769 if (arg_assoc_bases (k, BINFO_TYPE (base_binfo)))
4770 return true;
4773 return false;
4776 /* Adds everything associated with a class argument type to the lookup
4777 structure. Returns true on error.
4779 If T is a class type (including unions), its associated classes are: the
4780 class itself; the class of which it is a member, if any; and its direct
4781 and indirect base classes. Its associated namespaces are the namespaces
4782 of which its associated classes are members. Furthermore, if T is a
4783 class template specialization, its associated namespaces and classes
4784 also include: the namespaces and classes associated with the types of
4785 the template arguments provided for template type parameters (excluding
4786 template template parameters); the namespaces of which any template
4787 template arguments are members; and the classes of which any member
4788 templates used as template template arguments are members. [ Note:
4789 non-type template arguments do not contribute to the set of associated
4790 namespaces. --end note] */
4792 static bool
4793 arg_assoc_class (struct arg_lookup *k, tree type)
4795 tree list;
4796 int i;
4798 /* Backend build structures, such as __builtin_va_list, aren't
4799 affected by all this. */
4800 if (!CLASS_TYPE_P (type))
4801 return false;
4803 if (purpose_member (type, k->classes))
4804 return false;
4805 k->classes = tree_cons (type, NULL_TREE, k->classes);
4807 if (TYPE_CLASS_SCOPE_P (type)
4808 && arg_assoc_class_only (k, TYPE_CONTEXT (type)))
4809 return true;
4811 if (arg_assoc_bases (k, type))
4812 return true;
4814 /* Process template arguments. */
4815 if (CLASSTYPE_TEMPLATE_INFO (type)
4816 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
4818 list = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
4819 for (i = 0; i < TREE_VEC_LENGTH (list); ++i)
4820 if (arg_assoc_template_arg (k, TREE_VEC_ELT (list, i)))
4821 return true;
4824 return false;
4827 /* Adds everything associated with a given type.
4828 Returns 1 on error. */
4830 static bool
4831 arg_assoc_type (struct arg_lookup *k, tree type)
4833 /* As we do not get the type of non-type dependent expressions
4834 right, we can end up with such things without a type. */
4835 if (!type)
4836 return false;
4838 if (TYPE_PTRMEM_P (type))
4840 /* Pointer to member: associate class type and value type. */
4841 if (arg_assoc_type (k, TYPE_PTRMEM_CLASS_TYPE (type)))
4842 return true;
4843 return arg_assoc_type (k, TYPE_PTRMEM_POINTED_TO_TYPE (type));
4845 else switch (TREE_CODE (type))
4847 case ERROR_MARK:
4848 return false;
4849 case VOID_TYPE:
4850 case INTEGER_TYPE:
4851 case REAL_TYPE:
4852 case COMPLEX_TYPE:
4853 case VECTOR_TYPE:
4854 case BOOLEAN_TYPE:
4855 case FIXED_POINT_TYPE:
4856 case DECLTYPE_TYPE:
4857 return false;
4858 case RECORD_TYPE:
4859 if (TYPE_PTRMEMFUNC_P (type))
4860 return arg_assoc_type (k, TYPE_PTRMEMFUNC_FN_TYPE (type));
4861 case UNION_TYPE:
4862 return arg_assoc_class (k, type);
4863 case POINTER_TYPE:
4864 case REFERENCE_TYPE:
4865 case ARRAY_TYPE:
4866 return arg_assoc_type (k, TREE_TYPE (type));
4867 case ENUMERAL_TYPE:
4868 if (TYPE_CLASS_SCOPE_P (type)
4869 && arg_assoc_class_only (k, TYPE_CONTEXT (type)))
4870 return true;
4871 return arg_assoc_namespace (k, decl_namespace_context (type));
4872 case METHOD_TYPE:
4873 /* The basetype is referenced in the first arg type, so just
4874 fall through. */
4875 case FUNCTION_TYPE:
4876 /* Associate the parameter types. */
4877 if (arg_assoc_args (k, TYPE_ARG_TYPES (type)))
4878 return true;
4879 /* Associate the return type. */
4880 return arg_assoc_type (k, TREE_TYPE (type));
4881 case TEMPLATE_TYPE_PARM:
4882 case BOUND_TEMPLATE_TEMPLATE_PARM:
4883 return false;
4884 case TYPENAME_TYPE:
4885 return false;
4886 case LANG_TYPE:
4887 gcc_assert (type == unknown_type_node
4888 || type == init_list_type_node);
4889 return false;
4890 case TYPE_PACK_EXPANSION:
4891 return arg_assoc_type (k, PACK_EXPANSION_PATTERN (type));
4893 default:
4894 gcc_unreachable ();
4896 return false;
4899 /* Adds everything associated with arguments. Returns true on error. */
4901 static bool
4902 arg_assoc_args (struct arg_lookup *k, tree args)
4904 for (; args; args = TREE_CHAIN (args))
4905 if (arg_assoc (k, TREE_VALUE (args)))
4906 return true;
4907 return false;
4910 /* Adds everything associated with an argument vector. Returns true
4911 on error. */
4913 static bool
4914 arg_assoc_args_vec (struct arg_lookup *k, VEC(tree,gc) *args)
4916 unsigned int ix;
4917 tree arg;
4919 for (ix = 0; VEC_iterate (tree, args, ix, arg); ++ix)
4920 if (arg_assoc (k, arg))
4921 return true;
4922 return false;
4925 /* Adds everything associated with a given tree_node. Returns 1 on error. */
4927 static bool
4928 arg_assoc (struct arg_lookup *k, tree n)
4930 if (n == error_mark_node)
4931 return false;
4933 if (TYPE_P (n))
4934 return arg_assoc_type (k, n);
4936 if (! type_unknown_p (n))
4937 return arg_assoc_type (k, TREE_TYPE (n));
4939 if (TREE_CODE (n) == ADDR_EXPR)
4940 n = TREE_OPERAND (n, 0);
4941 if (TREE_CODE (n) == COMPONENT_REF)
4942 n = TREE_OPERAND (n, 1);
4943 if (TREE_CODE (n) == OFFSET_REF)
4944 n = TREE_OPERAND (n, 1);
4945 while (TREE_CODE (n) == TREE_LIST)
4946 n = TREE_VALUE (n);
4947 if (TREE_CODE (n) == BASELINK)
4948 n = BASELINK_FUNCTIONS (n);
4950 if (TREE_CODE (n) == FUNCTION_DECL)
4951 return arg_assoc_type (k, TREE_TYPE (n));
4952 if (TREE_CODE (n) == TEMPLATE_ID_EXPR)
4954 /* The working paper doesn't currently say how to handle template-id
4955 arguments. The sensible thing would seem to be to handle the list
4956 of template candidates like a normal overload set, and handle the
4957 template arguments like we do for class template
4958 specializations. */
4959 tree templ = TREE_OPERAND (n, 0);
4960 tree args = TREE_OPERAND (n, 1);
4961 int ix;
4963 /* First the templates. */
4964 if (arg_assoc (k, templ))
4965 return true;
4967 /* Now the arguments. */
4968 if (args)
4969 for (ix = TREE_VEC_LENGTH (args); ix--;)
4970 if (arg_assoc_template_arg (k, TREE_VEC_ELT (args, ix)) == 1)
4971 return true;
4973 else if (TREE_CODE (n) == OVERLOAD)
4975 for (; n; n = OVL_CHAIN (n))
4976 if (arg_assoc_type (k, TREE_TYPE (OVL_FUNCTION (n))))
4977 return true;
4980 return false;
4983 /* Performs Koenig lookup depending on arguments, where fns
4984 are the functions found in normal lookup. */
4986 tree
4987 lookup_arg_dependent (tree name, tree fns, VEC(tree,gc) *args)
4989 struct arg_lookup k;
4991 timevar_push (TV_NAME_LOOKUP);
4993 /* Remove any hidden friend functions from the list of functions
4994 found so far. They will be added back by arg_assoc_class as
4995 appropriate. */
4996 fns = remove_hidden_names (fns);
4998 k.name = name;
4999 k.args = args;
5000 k.functions = fns;
5001 k.classes = NULL_TREE;
5003 /* We previously performed an optimization here by setting
5004 NAMESPACES to the current namespace when it was safe. However, DR
5005 164 says that namespaces that were already searched in the first
5006 stage of template processing are searched again (potentially
5007 picking up later definitions) in the second stage. */
5008 k.namespaces = NULL_TREE;
5010 arg_assoc_args_vec (&k, args);
5012 fns = k.functions;
5014 if (fns
5015 && TREE_CODE (fns) != VAR_DECL
5016 && !is_overloaded_fn (fns))
5018 error ("argument dependent lookup finds %q+D", fns);
5019 error (" in call to %qD", name);
5020 fns = error_mark_node;
5023 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, fns);
5026 /* Add namespace to using_directives. Return NULL_TREE if nothing was
5027 changed (i.e. there was already a directive), or the fresh
5028 TREE_LIST otherwise. */
5030 static tree
5031 push_using_directive (tree used)
5033 tree ud = current_binding_level->using_directives;
5034 tree iter, ancestor;
5036 timevar_push (TV_NAME_LOOKUP);
5037 /* Check if we already have this. */
5038 if (purpose_member (used, ud) != NULL_TREE)
5039 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
5041 ancestor = namespace_ancestor (current_decl_namespace (), used);
5042 ud = current_binding_level->using_directives;
5043 ud = tree_cons (used, ancestor, ud);
5044 current_binding_level->using_directives = ud;
5046 /* Recursively add all namespaces used. */
5047 for (iter = DECL_NAMESPACE_USING (used); iter; iter = TREE_CHAIN (iter))
5048 push_using_directive (TREE_PURPOSE (iter));
5050 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ud);
5053 /* The type TYPE is being declared. If it is a class template, or a
5054 specialization of a class template, do any processing required and
5055 perform error-checking. If IS_FRIEND is nonzero, this TYPE is
5056 being declared a friend. B is the binding level at which this TYPE
5057 should be bound.
5059 Returns the TYPE_DECL for TYPE, which may have been altered by this
5060 processing. */
5062 static tree
5063 maybe_process_template_type_declaration (tree type, int is_friend,
5064 cxx_scope *b)
5066 tree decl = TYPE_NAME (type);
5068 if (processing_template_parmlist)
5069 /* You can't declare a new template type in a template parameter
5070 list. But, you can declare a non-template type:
5072 template <class A*> struct S;
5074 is a forward-declaration of `A'. */
5076 else if (b->kind == sk_namespace
5077 && current_binding_level->kind != sk_namespace)
5078 /* If this new type is being injected into a containing scope,
5079 then it's not a template type. */
5081 else
5083 gcc_assert (MAYBE_CLASS_TYPE_P (type)
5084 || TREE_CODE (type) == ENUMERAL_TYPE);
5086 if (processing_template_decl)
5088 /* This may change after the call to
5089 push_template_decl_real, but we want the original value. */
5090 tree name = DECL_NAME (decl);
5092 decl = push_template_decl_real (decl, is_friend);
5093 if (decl == error_mark_node)
5094 return error_mark_node;
5096 /* If the current binding level is the binding level for the
5097 template parameters (see the comment in
5098 begin_template_parm_list) and the enclosing level is a class
5099 scope, and we're not looking at a friend, push the
5100 declaration of the member class into the class scope. In the
5101 friend case, push_template_decl will already have put the
5102 friend into global scope, if appropriate. */
5103 if (TREE_CODE (type) != ENUMERAL_TYPE
5104 && !is_friend && b->kind == sk_template_parms
5105 && b->level_chain->kind == sk_class)
5107 finish_member_declaration (CLASSTYPE_TI_TEMPLATE (type));
5109 if (!COMPLETE_TYPE_P (current_class_type))
5111 maybe_add_class_template_decl_list (current_class_type,
5112 type, /*friend_p=*/0);
5113 /* Put this UTD in the table of UTDs for the class. */
5114 if (CLASSTYPE_NESTED_UTDS (current_class_type) == NULL)
5115 CLASSTYPE_NESTED_UTDS (current_class_type) =
5116 binding_table_new (SCOPE_DEFAULT_HT_SIZE);
5118 binding_table_insert
5119 (CLASSTYPE_NESTED_UTDS (current_class_type), name, type);
5125 return decl;
5128 /* Push a tag name NAME for struct/class/union/enum type TYPE. In case
5129 that the NAME is a class template, the tag is processed but not pushed.
5131 The pushed scope depend on the SCOPE parameter:
5132 - When SCOPE is TS_CURRENT, put it into the inner-most non-sk_cleanup
5133 scope.
5134 - When SCOPE is TS_GLOBAL, put it in the inner-most non-class and
5135 non-template-parameter scope. This case is needed for forward
5136 declarations.
5137 - When SCOPE is TS_WITHIN_ENCLOSING_NON_CLASS, this is similar to
5138 TS_GLOBAL case except that names within template-parameter scopes
5139 are not pushed at all.
5141 Returns TYPE upon success and ERROR_MARK_NODE otherwise. */
5143 tree
5144 pushtag (tree name, tree type, tag_scope scope)
5146 struct cp_binding_level *b;
5147 tree decl;
5149 timevar_push (TV_NAME_LOOKUP);
5150 b = current_binding_level;
5151 while (/* Cleanup scopes are not scopes from the point of view of
5152 the language. */
5153 b->kind == sk_cleanup
5154 /* Neither are function parameter scopes. */
5155 || b->kind == sk_function_parms
5156 /* Neither are the scopes used to hold template parameters
5157 for an explicit specialization. For an ordinary template
5158 declaration, these scopes are not scopes from the point of
5159 view of the language. */
5160 || (b->kind == sk_template_parms
5161 && (b->explicit_spec_p || scope == ts_global))
5162 || (b->kind == sk_class
5163 && (scope != ts_current
5164 /* We may be defining a new type in the initializer
5165 of a static member variable. We allow this when
5166 not pedantic, and it is particularly useful for
5167 type punning via an anonymous union. */
5168 || COMPLETE_TYPE_P (b->this_entity))))
5169 b = b->level_chain;
5171 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
5173 /* Do C++ gratuitous typedefing. */
5174 if (IDENTIFIER_TYPE_VALUE (name) != type)
5176 tree tdef;
5177 int in_class = 0;
5178 tree context = TYPE_CONTEXT (type);
5180 if (! context)
5182 tree cs = current_scope ();
5184 if (scope == ts_current
5185 || (cs && TREE_CODE (cs) == FUNCTION_DECL))
5186 context = cs;
5187 else if (cs != NULL_TREE && TYPE_P (cs))
5188 /* When declaring a friend class of a local class, we want
5189 to inject the newly named class into the scope
5190 containing the local class, not the namespace
5191 scope. */
5192 context = decl_function_context (get_type_decl (cs));
5194 if (!context)
5195 context = current_namespace;
5197 if (b->kind == sk_class
5198 || (b->kind == sk_template_parms
5199 && b->level_chain->kind == sk_class))
5200 in_class = 1;
5202 if (current_lang_name == lang_name_java)
5203 TYPE_FOR_JAVA (type) = 1;
5205 tdef = create_implicit_typedef (name, type);
5206 DECL_CONTEXT (tdef) = FROB_CONTEXT (context);
5207 if (scope == ts_within_enclosing_non_class)
5209 /* This is a friend. Make this TYPE_DECL node hidden from
5210 ordinary name lookup. Its corresponding TEMPLATE_DECL
5211 will be marked in push_template_decl_real. */
5212 retrofit_lang_decl (tdef);
5213 DECL_ANTICIPATED (tdef) = 1;
5214 DECL_FRIEND_P (tdef) = 1;
5217 decl = maybe_process_template_type_declaration
5218 (type, scope == ts_within_enclosing_non_class, b);
5219 if (decl == error_mark_node)
5220 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
5222 if (b->kind == sk_class)
5224 if (!TYPE_BEING_DEFINED (current_class_type))
5225 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
5227 if (!PROCESSING_REAL_TEMPLATE_DECL_P ())
5228 /* Put this TYPE_DECL on the TYPE_FIELDS list for the
5229 class. But if it's a member template class, we want
5230 the TEMPLATE_DECL, not the TYPE_DECL, so this is done
5231 later. */
5232 finish_member_declaration (decl);
5233 else
5234 pushdecl_class_level (decl);
5236 else if (b->kind != sk_template_parms)
5238 decl = pushdecl_with_scope (decl, b, /*is_friend=*/false);
5239 if (decl == error_mark_node)
5240 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
5243 if (! in_class)
5244 set_identifier_type_value_with_scope (name, tdef, b);
5246 TYPE_CONTEXT (type) = DECL_CONTEXT (decl);
5248 /* If this is a local class, keep track of it. We need this
5249 information for name-mangling, and so that it is possible to
5250 find all function definitions in a translation unit in a
5251 convenient way. (It's otherwise tricky to find a member
5252 function definition it's only pointed to from within a local
5253 class.) */
5254 if (TYPE_CONTEXT (type)
5255 && TREE_CODE (TYPE_CONTEXT (type)) == FUNCTION_DECL)
5256 VEC_safe_push (tree, gc, local_classes, type);
5258 if (b->kind == sk_class
5259 && !COMPLETE_TYPE_P (current_class_type))
5261 maybe_add_class_template_decl_list (current_class_type,
5262 type, /*friend_p=*/0);
5264 if (CLASSTYPE_NESTED_UTDS (current_class_type) == NULL)
5265 CLASSTYPE_NESTED_UTDS (current_class_type)
5266 = binding_table_new (SCOPE_DEFAULT_HT_SIZE);
5268 binding_table_insert
5269 (CLASSTYPE_NESTED_UTDS (current_class_type), name, type);
5272 decl = TYPE_NAME (type);
5273 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
5275 /* Set type visibility now if this is a forward declaration. */
5276 TREE_PUBLIC (decl) = 1;
5277 determine_visibility (decl);
5279 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, type);
5282 /* Subroutines for reverting temporarily to top-level for instantiation
5283 of templates and such. We actually need to clear out the class- and
5284 local-value slots of all identifiers, so that only the global values
5285 are at all visible. Simply setting current_binding_level to the global
5286 scope isn't enough, because more binding levels may be pushed. */
5287 struct saved_scope *scope_chain;
5289 /* If ID has not already been marked, add an appropriate binding to
5290 *OLD_BINDINGS. */
5292 static void
5293 store_binding (tree id, VEC(cxx_saved_binding,gc) **old_bindings)
5295 cxx_saved_binding *saved;
5297 if (!id || !IDENTIFIER_BINDING (id))
5298 return;
5300 if (IDENTIFIER_MARKED (id))
5301 return;
5303 IDENTIFIER_MARKED (id) = 1;
5305 saved = VEC_safe_push (cxx_saved_binding, gc, *old_bindings, NULL);
5306 saved->identifier = id;
5307 saved->binding = IDENTIFIER_BINDING (id);
5308 saved->real_type_value = REAL_IDENTIFIER_TYPE_VALUE (id);
5309 IDENTIFIER_BINDING (id) = NULL;
5312 static void
5313 store_bindings (tree names, VEC(cxx_saved_binding,gc) **old_bindings)
5315 tree t;
5317 timevar_push (TV_NAME_LOOKUP);
5318 for (t = names; t; t = TREE_CHAIN (t))
5320 tree id;
5322 if (TREE_CODE (t) == TREE_LIST)
5323 id = TREE_PURPOSE (t);
5324 else
5325 id = DECL_NAME (t);
5327 store_binding (id, old_bindings);
5329 timevar_pop (TV_NAME_LOOKUP);
5332 /* Like store_bindings, but NAMES is a vector of cp_class_binding
5333 objects, rather than a TREE_LIST. */
5335 static void
5336 store_class_bindings (VEC(cp_class_binding,gc) *names,
5337 VEC(cxx_saved_binding,gc) **old_bindings)
5339 size_t i;
5340 cp_class_binding *cb;
5342 timevar_push (TV_NAME_LOOKUP);
5343 for (i = 0; VEC_iterate(cp_class_binding, names, i, cb); ++i)
5344 store_binding (cb->identifier, old_bindings);
5345 timevar_pop (TV_NAME_LOOKUP);
5348 void
5349 push_to_top_level (void)
5351 struct saved_scope *s;
5352 struct cp_binding_level *b;
5353 cxx_saved_binding *sb;
5354 size_t i;
5355 bool need_pop;
5357 timevar_push (TV_NAME_LOOKUP);
5358 s = GGC_CNEW (struct saved_scope);
5360 b = scope_chain ? current_binding_level : 0;
5362 /* If we're in the middle of some function, save our state. */
5363 if (cfun)
5365 need_pop = true;
5366 push_function_context ();
5368 else
5369 need_pop = false;
5371 if (scope_chain && previous_class_level)
5372 store_class_bindings (previous_class_level->class_shadowed,
5373 &s->old_bindings);
5375 /* Have to include the global scope, because class-scope decls
5376 aren't listed anywhere useful. */
5377 for (; b; b = b->level_chain)
5379 tree t;
5381 /* Template IDs are inserted into the global level. If they were
5382 inserted into namespace level, finish_file wouldn't find them
5383 when doing pending instantiations. Therefore, don't stop at
5384 namespace level, but continue until :: . */
5385 if (global_scope_p (b))
5386 break;
5388 store_bindings (b->names, &s->old_bindings);
5389 /* We also need to check class_shadowed to save class-level type
5390 bindings, since pushclass doesn't fill in b->names. */
5391 if (b->kind == sk_class)
5392 store_class_bindings (b->class_shadowed, &s->old_bindings);
5394 /* Unwind type-value slots back to top level. */
5395 for (t = b->type_shadowed; t; t = TREE_CHAIN (t))
5396 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (t), TREE_VALUE (t));
5399 for (i = 0; VEC_iterate (cxx_saved_binding, s->old_bindings, i, sb); ++i)
5400 IDENTIFIER_MARKED (sb->identifier) = 0;
5402 s->prev = scope_chain;
5403 s->bindings = b;
5404 s->need_pop_function_context = need_pop;
5405 s->function_decl = current_function_decl;
5406 s->unevaluated_operand = cp_unevaluated_operand;
5407 s->inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
5409 scope_chain = s;
5410 current_function_decl = NULL_TREE;
5411 current_lang_base = VEC_alloc (tree, gc, 10);
5412 current_lang_name = lang_name_cplusplus;
5413 current_namespace = global_namespace;
5414 push_class_stack ();
5415 cp_unevaluated_operand = 0;
5416 c_inhibit_evaluation_warnings = 0;
5417 timevar_pop (TV_NAME_LOOKUP);
5420 void
5421 pop_from_top_level (void)
5423 struct saved_scope *s = scope_chain;
5424 cxx_saved_binding *saved;
5425 size_t i;
5427 timevar_push (TV_NAME_LOOKUP);
5428 /* Clear out class-level bindings cache. */
5429 if (previous_class_level)
5430 invalidate_class_lookup_cache ();
5431 pop_class_stack ();
5433 current_lang_base = 0;
5435 scope_chain = s->prev;
5436 for (i = 0; VEC_iterate (cxx_saved_binding, s->old_bindings, i, saved); ++i)
5438 tree id = saved->identifier;
5440 IDENTIFIER_BINDING (id) = saved->binding;
5441 SET_IDENTIFIER_TYPE_VALUE (id, saved->real_type_value);
5444 /* If we were in the middle of compiling a function, restore our
5445 state. */
5446 if (s->need_pop_function_context)
5447 pop_function_context ();
5448 current_function_decl = s->function_decl;
5449 cp_unevaluated_operand = s->unevaluated_operand;
5450 c_inhibit_evaluation_warnings = s->inhibit_evaluation_warnings;
5451 timevar_pop (TV_NAME_LOOKUP);
5454 /* Pop off extraneous binding levels left over due to syntax errors.
5456 We don't pop past namespaces, as they might be valid. */
5458 void
5459 pop_everything (void)
5461 if (ENABLE_SCOPE_CHECKING)
5462 verbatim ("XXX entering pop_everything ()\n");
5463 while (!toplevel_bindings_p ())
5465 if (current_binding_level->kind == sk_class)
5466 pop_nested_class ();
5467 else
5468 poplevel (0, 0, 0);
5470 if (ENABLE_SCOPE_CHECKING)
5471 verbatim ("XXX leaving pop_everything ()\n");
5474 /* Emit debugging information for using declarations and directives.
5475 If input tree is overloaded fn then emit debug info for all
5476 candidates. */
5478 void
5479 cp_emit_debug_info_for_using (tree t, tree context)
5481 /* Don't try to emit any debug information if we have errors. */
5482 if (sorrycount || errorcount)
5483 return;
5485 /* Ignore this FUNCTION_DECL if it refers to a builtin declaration
5486 of a builtin function. */
5487 if (TREE_CODE (t) == FUNCTION_DECL
5488 && DECL_EXTERNAL (t)
5489 && DECL_BUILT_IN (t))
5490 return;
5492 /* Do not supply context to imported_module_or_decl, if
5493 it is a global namespace. */
5494 if (context == global_namespace)
5495 context = NULL_TREE;
5497 if (BASELINK_P (t))
5498 t = BASELINK_FUNCTIONS (t);
5500 /* FIXME: Handle TEMPLATE_DECLs. */
5501 for (t = OVL_CURRENT (t); t; t = OVL_NEXT (t))
5502 if (TREE_CODE (t) != TEMPLATE_DECL)
5504 if (building_stmt_tree ())
5505 add_stmt (build_stmt (input_location, USING_STMT, t));
5506 else
5507 (*debug_hooks->imported_module_or_decl) (t, NULL_TREE, context, false);
5511 #include "gt-cp-name-lookup.h"