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