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