OSDN Git Service

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