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