OSDN Git Service

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