]> gcc.gnu.org Git - gcc.git/blame - gcc/cp/name-lookup.c
bfin-protos.h (bfin_dsp_memref_p): Declare.
[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
820cc88f
DB
1103 shadowed = DECL_HAS_SHADOWED_FOR_VAR_P (decl)
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))
820cc88f
DB
1107 shadowed = DECL_HAS_SHADOWED_FOR_VAR_P (shadowed)
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
MM
2776 scope_dependent_p = dependent_type_p (scope);
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;
2784 BINFO_BASE_ITERATE (binfo, i, base_binfo);
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
MM
2796 A using-declaration used as a member-declaration shall refer to a
2797 member of a base class of the class being defined.
2798
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 {
2820 error ("no members matching %<%T::%D%> in %q#T", scope, name,
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;
3049
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;
3058 if (x == NULL_TREE || TREE_CODE (x) != STRING_CST)
3059 {
3060 warning (OPT_Wattributes, "%qs attribute requires an NTBS argument",
3061 IDENTIFIER_POINTER (name));
3062 continue;
3063 }
3064
3065 current_binding_level->has_visibility = 1;
3066 push_visibility (TREE_STRING_POINTER (x));
3067 }
3068#endif
3069
00e8de68
GDR
3070 timevar_pop (TV_NAME_LOOKUP);
3071}
3072
3073/* Pop from the scope of the current namespace. */
3074
3075void
3076pop_namespace (void)
3077{
50bc768d 3078 gcc_assert (current_namespace != global_namespace);
00e8de68
GDR
3079 current_namespace = CP_DECL_CONTEXT (current_namespace);
3080 /* The binding level is not popped, as it might be re-opened later. */
3081 leave_scope ();
3082}
3083
3084/* Push into the scope of the namespace NS, even if it is deeply
3085 nested within another namespace. */
3086
3087void
3088push_nested_namespace (tree ns)
3089{
3090 if (ns == global_namespace)
3091 push_to_top_level ();
3092 else
3093 {
3094 push_nested_namespace (CP_DECL_CONTEXT (ns));
3095 push_namespace (DECL_NAME (ns));
3096 }
3097}
3098
3099/* Pop back from the scope of the namespace NS, which was previously
3100 entered with push_nested_namespace. */
3101
3102void
3103pop_nested_namespace (tree ns)
3104{
3105 timevar_push (TV_NAME_LOOKUP);
3106 while (ns != global_namespace)
3107 {
3108 pop_namespace ();
3109 ns = CP_DECL_CONTEXT (ns);
3110 }
3111
3112 pop_from_top_level ();
3113 timevar_pop (TV_NAME_LOOKUP);
3114}
3115
5a167978
GDR
3116/* Temporarily set the namespace for the current declaration. */
3117
3118void
3119push_decl_namespace (tree decl)
3120{
3121 if (TREE_CODE (decl) != NAMESPACE_DECL)
b1cc95ce 3122 decl = decl_namespace_context (decl);
5a167978 3123 decl_namespace_list = tree_cons (ORIGINAL_NAMESPACE (decl),
0cbd7506 3124 NULL_TREE, decl_namespace_list);
5a167978
GDR
3125}
3126
3127/* [namespace.memdef]/2 */
3128
3129void
3130pop_decl_namespace (void)
3131{
3132 decl_namespace_list = TREE_CHAIN (decl_namespace_list);
3133}
3134
c8094d83 3135/* Return the namespace that is the common ancestor
5a167978
GDR
3136 of two given namespaces. */
3137
a5e6b29b 3138static tree
5a167978
GDR
3139namespace_ancestor (tree ns1, tree ns2)
3140{
3141 timevar_push (TV_NAME_LOOKUP);
3142 if (is_ancestor (ns1, ns2))
3143 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ns1);
3144 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP,
0cbd7506 3145 namespace_ancestor (CP_DECL_CONTEXT (ns1), ns2));
5a167978
GDR
3146}
3147
3148/* Process a namespace-alias declaration. */
3149
3150void
3151do_namespace_alias (tree alias, tree namespace)
3152{
166206ce
VR
3153 if (namespace == error_mark_node)
3154 return;
3155
3156 gcc_assert (TREE_CODE (namespace) == NAMESPACE_DECL);
5a167978
GDR
3157
3158 namespace = ORIGINAL_NAMESPACE (namespace);
3159
3160 /* Build the alias. */
c8094d83 3161 alias = build_lang_decl (NAMESPACE_DECL, alias, void_type_node);
5a167978
GDR
3162 DECL_NAMESPACE_ALIAS (alias) = namespace;
3163 DECL_EXTERNAL (alias) = 1;
6ac1920d 3164 DECL_CONTEXT (alias) = FROB_CONTEXT (current_scope ());
5a167978 3165 pushdecl (alias);
6097b0c3
DP
3166
3167 /* Emit debug info for namespace alias. */
3168 (*debug_hooks->global_decl) (alias);
5a167978
GDR
3169}
3170
00e8de68
GDR
3171/* Like pushdecl, only it places X in the current namespace,
3172 if appropriate. */
3173
3174tree
d63d5d0c 3175pushdecl_namespace_level (tree x, bool is_friend)
00e8de68 3176{
926ce8bd
KH
3177 struct cp_binding_level *b = current_binding_level;
3178 tree t;
00e8de68
GDR
3179
3180 timevar_push (TV_NAME_LOOKUP);
d63d5d0c 3181 t = pushdecl_with_scope (x, NAMESPACE_LEVEL (current_namespace), is_friend);
00e8de68
GDR
3182
3183 /* Now, the type_shadowed stack may screw us. Munge it so it does
3184 what we want. */
6fc98adf 3185 if (TREE_CODE (t) == TYPE_DECL)
00e8de68 3186 {
6fc98adf 3187 tree name = DECL_NAME (t);
00e8de68
GDR
3188 tree newval;
3189 tree *ptr = (tree *)0;
3190 for (; !global_scope_p (b); b = b->level_chain)
0cbd7506
MS
3191 {
3192 tree shadowed = b->type_shadowed;
3193 for (; shadowed; shadowed = TREE_CHAIN (shadowed))
3194 if (TREE_PURPOSE (shadowed) == name)
3195 {
00e8de68
GDR
3196 ptr = &TREE_VALUE (shadowed);
3197 /* Can't break out of the loop here because sometimes
3198 a binding level will have duplicate bindings for
3199 PT names. It's gross, but I haven't time to fix it. */
0cbd7506
MS
3200 }
3201 }
6fc98adf 3202 newval = TREE_TYPE (t);
00e8de68 3203 if (ptr == (tree *)0)
0cbd7506
MS
3204 {
3205 /* @@ This shouldn't be needed. My test case "zstring.cc" trips
3206 up here if this is changed to an assertion. --KR */
6fc98adf 3207 SET_IDENTIFIER_TYPE_VALUE (name, t);
00e8de68
GDR
3208 }
3209 else
0cbd7506 3210 {
00e8de68 3211 *ptr = newval;
0cbd7506 3212 }
00e8de68
GDR
3213 }
3214 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
3215}
3216
5a167978
GDR
3217/* Insert USED into the using list of USER. Set INDIRECT_flag if this
3218 directive is not directly from the source. Also find the common
3219 ancestor and let our users know about the new namespace */
c8094d83 3220static void
5a167978
GDR
3221add_using_namespace (tree user, tree used, bool indirect)
3222{
3223 tree t;
3224 timevar_push (TV_NAME_LOOKUP);
3225 /* Using oneself is a no-op. */
3226 if (user == used)
3227 {
3228 timevar_pop (TV_NAME_LOOKUP);
3229 return;
3230 }
50bc768d
NS
3231 gcc_assert (TREE_CODE (user) == NAMESPACE_DECL);
3232 gcc_assert (TREE_CODE (used) == NAMESPACE_DECL);
5a167978
GDR
3233 /* Check if we already have this. */
3234 t = purpose_member (used, DECL_NAMESPACE_USING (user));
3235 if (t != NULL_TREE)
3236 {
3237 if (!indirect)
3238 /* Promote to direct usage. */
3239 TREE_INDIRECT_USING (t) = 0;
3240 timevar_pop (TV_NAME_LOOKUP);
3241 return;
3242 }
3243
3244 /* Add used to the user's using list. */
c8094d83
MS
3245 DECL_NAMESPACE_USING (user)
3246 = tree_cons (used, namespace_ancestor (user, used),
5a167978
GDR
3247 DECL_NAMESPACE_USING (user));
3248
3249 TREE_INDIRECT_USING (DECL_NAMESPACE_USING (user)) = indirect;
3250
3251 /* Add user to the used's users list. */
3252 DECL_NAMESPACE_USERS (used)
3253 = tree_cons (user, 0, DECL_NAMESPACE_USERS (used));
3254
3255 /* Recursively add all namespaces used. */
3256 for (t = DECL_NAMESPACE_USING (used); t; t = TREE_CHAIN (t))
3257 /* indirect usage */
3258 add_using_namespace (user, TREE_PURPOSE (t), 1);
3259
3260 /* Tell everyone using us about the new used namespaces. */
3261 for (t = DECL_NAMESPACE_USERS (user); t; t = TREE_CHAIN (t))
3262 add_using_namespace (TREE_PURPOSE (t), used, 1);
3263 timevar_pop (TV_NAME_LOOKUP);
3264}
3265
3266/* Process a using-declaration not appearing in class or local scope. */
3267
3268void
ed5f054f 3269do_toplevel_using_decl (tree decl, tree scope, tree name)
5a167978 3270{
5a167978 3271 tree oldval, oldtype, newval, newtype;
6097b0c3 3272 tree orig_decl = decl;
5a167978
GDR
3273 cxx_binding *binding;
3274
ed5f054f 3275 decl = validate_nonmember_using_decl (decl, scope, name);
5a167978
GDR
3276 if (decl == NULL_TREE)
3277 return;
c8094d83 3278
5a167978
GDR
3279 binding = binding_for_name (NAMESPACE_LEVEL (current_namespace), name);
3280
3281 oldval = binding->value;
3282 oldtype = binding->type;
3283
3284 do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype);
3285
6097b0c3
DP
3286 /* Emit debug info. */
3287 if (!processing_template_decl)
3288 cp_emit_debug_info_for_using (orig_decl, current_namespace);
3289
5a167978
GDR
3290 /* Copy declarations found. */
3291 if (newval)
3292 binding->value = newval;
3293 if (newtype)
3294 binding->type = newtype;
5a167978
GDR
3295}
3296
3297/* Process a using-directive. */
3298
3299void
3300do_using_directive (tree namespace)
3301{
6097b0c3
DP
3302 tree context = NULL_TREE;
3303
166206ce
VR
3304 if (namespace == error_mark_node)
3305 return;
3306
3307 gcc_assert (TREE_CODE (namespace) == NAMESPACE_DECL);
3308
5a167978
GDR
3309 if (building_stmt_tree ())
3310 add_stmt (build_stmt (USING_STMT, namespace));
5a167978 3311 namespace = ORIGINAL_NAMESPACE (namespace);
166206ce 3312
5a167978 3313 if (!toplevel_bindings_p ())
6097b0c3
DP
3314 {
3315 push_using_directive (namespace);
3316 context = current_scope ();
3317 }
5a167978 3318 else
6097b0c3
DP
3319 {
3320 /* direct usage */
3321 add_using_namespace (current_namespace, namespace, 0);
3322 if (current_namespace != global_namespace)
3323 context = current_namespace;
3324 }
c8094d83 3325
6097b0c3
DP
3326 /* Emit debugging info. */
3327 if (!processing_template_decl)
3328 (*debug_hooks->imported_module_or_decl) (namespace, context);
5a167978
GDR
3329}
3330
86098eb8
JM
3331/* Deal with a using-directive seen by the parser. Currently we only
3332 handle attributes here, since they cannot appear inside a template. */
3333
3334void
3335parse_using_directive (tree namespace, tree attribs)
3336{
3337 tree a;
3338
3339 do_using_directive (namespace);
3340
3341 for (a = attribs; a; a = TREE_CHAIN (a))
3342 {
3343 tree name = TREE_PURPOSE (a);
3344 if (is_attribute_p ("strong", name))
3345 {
3346 if (!toplevel_bindings_p ())
3347 error ("strong using only meaningful at namespace scope");
db3a9519 3348 else if (namespace != error_mark_node)
9deb204a
JM
3349 {
3350 if (!is_ancestor (current_namespace, namespace))
3351 error ("current namespace %qD does not enclose strongly used namespace %qD",
3352 current_namespace, namespace);
3353 DECL_NAMESPACE_ASSOCIATIONS (namespace)
3354 = tree_cons (current_namespace, 0,
3355 DECL_NAMESPACE_ASSOCIATIONS (namespace));
3356 }
86098eb8
JM
3357 }
3358 else
5c498b10 3359 warning (OPT_Wattributes, "%qD attribute directive ignored", name);
86098eb8
JM
3360 }
3361}
3362
a5e6b29b
GDR
3363/* Like pushdecl, only it places X in the global scope if appropriate.
3364 Calls cp_finish_decl to register the variable, initializing it with
3365 *INIT, if INIT is non-NULL. */
3366
3367static tree
d63d5d0c 3368pushdecl_top_level_1 (tree x, tree *init, bool is_friend)
a5e6b29b
GDR
3369{
3370 timevar_push (TV_NAME_LOOKUP);
3371 push_to_top_level ();
d63d5d0c 3372 x = pushdecl_namespace_level (x, is_friend);
a5e6b29b 3373 if (init)
d174af6c 3374 finish_decl (x, *init, NULL_TREE);
a5e6b29b
GDR
3375 pop_from_top_level ();
3376 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, x);
3377}
3378
3379/* Like pushdecl, only it places X in the global scope if appropriate. */
3380
3381tree
3382pushdecl_top_level (tree x)
3383{
d63d5d0c
ILT
3384 return pushdecl_top_level_1 (x, NULL, false);
3385}
3386
3387/* Like pushdecl_top_level, but adding the IS_FRIEND parameter. */
3388
3389tree
3390pushdecl_top_level_maybe_friend (tree x, bool is_friend)
3391{
3392 return pushdecl_top_level_1 (x, NULL, is_friend);
a5e6b29b
GDR
3393}
3394
3395/* Like pushdecl, only it places X in the global scope if
3396 appropriate. Calls cp_finish_decl to register the variable,
3397 initializing it with INIT. */
3398
3399tree
3400pushdecl_top_level_and_finish (tree x, tree init)
3401{
d63d5d0c 3402 return pushdecl_top_level_1 (x, &init, false);
a5e6b29b
GDR
3403}
3404
5a167978
GDR
3405/* Combines two sets of overloaded functions into an OVERLOAD chain, removing
3406 duplicates. The first list becomes the tail of the result.
3407
3408 The algorithm is O(n^2). We could get this down to O(n log n) by
3409 doing a sort on the addresses of the functions, if that becomes
3410 necessary. */
3411
3412static tree
3413merge_functions (tree s1, tree s2)
3414{
3415 for (; s2; s2 = OVL_NEXT (s2))
3416 {
3417 tree fn2 = OVL_CURRENT (s2);
3418 tree fns1;
3419
3420 for (fns1 = s1; fns1; fns1 = OVL_NEXT (fns1))
3421 {
3422 tree fn1 = OVL_CURRENT (fns1);
3423
3424 /* If the function from S2 is already in S1, there is no
3425 need to add it again. For `extern "C"' functions, we
3426 might have two FUNCTION_DECLs for the same function, in
3427 different namespaces; again, we only need one of them. */
c8094d83 3428 if (fn1 == fn2
5a167978
GDR
3429 || (DECL_EXTERN_C_P (fn1) && DECL_EXTERN_C_P (fn2)
3430 && DECL_NAME (fn1) == DECL_NAME (fn2)))
3431 break;
3432 }
c8094d83 3433
5a167978
GDR
3434 /* If we exhausted all of the functions in S1, FN2 is new. */
3435 if (!fns1)
3436 s1 = build_overload (fn2, s1);
3437 }
3438 return s1;
3439}
3440
3441/* This should return an error not all definitions define functions.
3442 It is not an error if we find two functions with exactly the
3443 same signature, only if these are selected in overload resolution.
3444 old is the current set of bindings, new the freshly-found binding.
3445 XXX Do we want to give *all* candidates in case of ambiguity?
3446 XXX In what way should I treat extern declarations?
3447 XXX I don't want to repeat the entire duplicate_decls here */
3448
15f8ac7f
GK
3449static void
3450ambiguous_decl (tree name, struct scope_binding *old, cxx_binding *new,
3451 int flags)
5a167978
GDR
3452{
3453 tree val, type;
50bc768d 3454 gcc_assert (old != NULL);
5a167978
GDR
3455 /* Copy the value. */
3456 val = new->value;
3457 if (val)
3458 switch (TREE_CODE (val))
3459 {
3460 case TEMPLATE_DECL:
0cbd7506
MS
3461 /* If we expect types or namespaces, and not templates,
3462 or this is not a template class. */
3463 if ((LOOKUP_QUALIFIERS_ONLY (flags)
bd3d082e
KL
3464 && !DECL_CLASS_TEMPLATE_P (val))
3465 || hidden_name_p (val))
0cbd7506
MS
3466 val = NULL_TREE;
3467 break;
5a167978 3468 case TYPE_DECL:
0cbd7506
MS
3469 if (LOOKUP_NAMESPACES_ONLY (flags) || hidden_name_p (val))
3470 val = NULL_TREE;
3471 break;
5a167978 3472 case NAMESPACE_DECL:
0cbd7506
MS
3473 if (LOOKUP_TYPES_ONLY (flags))
3474 val = NULL_TREE;
3475 break;
5a167978 3476 case FUNCTION_DECL:
0cbd7506
MS
3477 /* Ignore built-in functions that are still anticipated. */
3478 if (LOOKUP_QUALIFIERS_ONLY (flags) || hidden_name_p (val))
3479 val = NULL_TREE;
3480 break;
5a167978 3481 default:
0cbd7506
MS
3482 if (LOOKUP_QUALIFIERS_ONLY (flags))
3483 val = NULL_TREE;
5a167978 3484 }
c8094d83 3485
5a167978
GDR
3486 if (!old->value)
3487 old->value = val;
3488 else if (val && val != old->value)
3489 {
3490 if (is_overloaded_fn (old->value) && is_overloaded_fn (val))
0cbd7506 3491 old->value = merge_functions (old->value, val);
5a167978
GDR
3492 else
3493 {
91b1ca65
MM
3494 old->value = tree_cons (NULL_TREE, old->value,
3495 build_tree_list (NULL_TREE, new->value));
3496 TREE_TYPE (old->value) = error_mark_node;
5a167978
GDR
3497 }
3498 }
3499 /* ... and copy the type. */
3500 type = new->type;
3501 if (LOOKUP_NAMESPACES_ONLY (flags))
3502 type = NULL_TREE;
3503 if (!old->type)
3504 old->type = type;
3505 else if (type && old->type != type)
3506 {
3507 if (flags & LOOKUP_COMPLAIN)
0cbd7506
MS
3508 {
3509 error ("%qD denotes an ambiguous type",name);
3510 error ("%J first type here", TYPE_MAIN_DECL (old->type));
3511 error ("%J other type here", TYPE_MAIN_DECL (type));
3512 }
5a167978 3513 }
5a167978
GDR
3514}
3515
00e8de68
GDR
3516/* Return the declarations that are members of the namespace NS. */
3517
3518tree
3519cp_namespace_decls (tree ns)
3520{
3521 return NAMESPACE_LEVEL (ns)->names;
3522}
3523
3524/* Combine prefer_type and namespaces_only into flags. */
3525
3526static int
3527lookup_flags (int prefer_type, int namespaces_only)
3528{
3529 if (namespaces_only)
3530 return LOOKUP_PREFER_NAMESPACES;
3531 if (prefer_type > 1)
3532 return LOOKUP_PREFER_TYPES;
3533 if (prefer_type > 0)
3534 return LOOKUP_PREFER_BOTH;
3535 return 0;
3536}
3537
3538/* Given a lookup that returned VAL, use FLAGS to decide if we want to
bd3d082e
KL
3539 ignore it or not. Subroutine of lookup_name_real and
3540 lookup_type_scope. */
00e8de68 3541
bd3d082e 3542static bool
00e8de68
GDR
3543qualify_lookup (tree val, int flags)
3544{
3545 if (val == NULL_TREE)
bd3d082e 3546 return false;
00e8de68 3547 if ((flags & LOOKUP_PREFER_NAMESPACES) && TREE_CODE (val) == NAMESPACE_DECL)
bd3d082e 3548 return true;
00e8de68
GDR
3549 if ((flags & LOOKUP_PREFER_TYPES)
3550 && (TREE_CODE (val) == TYPE_DECL || TREE_CODE (val) == TEMPLATE_DECL))
bd3d082e 3551 return true;
00e8de68 3552 if (flags & (LOOKUP_PREFER_NAMESPACES | LOOKUP_PREFER_TYPES))
bd3d082e
KL
3553 return false;
3554 return true;
3555}
3556
c8094d83 3557/* Given a lookup that returned VAL, decide if we want to ignore it or
d63d5d0c 3558 not based on DECL_ANTICIPATED. */
bd3d082e
KL
3559
3560bool
3561hidden_name_p (tree val)
3562{
3563 if (DECL_P (val)
3564 && DECL_LANG_SPECIFIC (val)
3565 && DECL_ANTICIPATED (val))
3566 return true;
3567 return false;
00e8de68
GDR
3568}
3569
d63d5d0c
ILT
3570/* Remove any hidden friend functions from a possibly overloaded set
3571 of functions. */
3572
3573tree
3574remove_hidden_names (tree fns)
3575{
3576 if (!fns)
3577 return fns;
3578
3579 if (TREE_CODE (fns) == FUNCTION_DECL && hidden_name_p (fns))
3580 fns = NULL_TREE;
3581 else if (TREE_CODE (fns) == OVERLOAD)
3582 {
3583 tree o;
3584
3585 for (o = fns; o; o = OVL_NEXT (o))
3586 if (hidden_name_p (OVL_CURRENT (o)))
3587 break;
3588 if (o)
3589 {
3590 tree n = NULL_TREE;
3591
3592 for (o = fns; o; o = OVL_NEXT (o))
3593 if (!hidden_name_p (OVL_CURRENT (o)))
3594 n = build_overload (OVL_CURRENT (o), n);
3595 fns = n;
3596 }
3597 }
3598
3599 return fns;
3600}
3601
00e8de68
GDR
3602/* Select the right _DECL from multiple choices. */
3603
3604static tree
15f8ac7f 3605select_decl (const struct scope_binding *binding, int flags)
00e8de68
GDR
3606{
3607 tree val;
3608 val = binding->value;
3609
3610 timevar_push (TV_NAME_LOOKUP);
3611 if (LOOKUP_NAMESPACES_ONLY (flags))
3612 {
3613 /* We are not interested in types. */
91b1ca65
MM
3614 if (val && (TREE_CODE (val) == NAMESPACE_DECL
3615 || TREE_CODE (val) == TREE_LIST))
0cbd7506 3616 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
00e8de68
GDR
3617 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
3618 }
3619
3620 /* If looking for a type, or if there is no non-type binding, select
3621 the value binding. */
3622 if (binding->type && (!val || (flags & LOOKUP_PREFER_TYPES)))
3623 val = binding->type;
3624 /* Don't return non-types if we really prefer types. */
c8094d83 3625 else if (val && LOOKUP_TYPES_ONLY (flags)
15f8ac7f 3626 && ! DECL_DECLARES_TYPE_P (val))
00e8de68
GDR
3627 val = NULL_TREE;
3628
3629 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3630}
3631
3632/* Unscoped lookup of a global: iterate over current namespaces,
543ebd4a 3633 considering using-directives. */
00e8de68 3634
a5e6b29b 3635static tree
543ebd4a 3636unqualified_namespace_lookup (tree name, int flags)
00e8de68
GDR
3637{
3638 tree initial = current_decl_namespace ();
3639 tree scope = initial;
3640 tree siter;
3641 struct cp_binding_level *level;
3642 tree val = NULL_TREE;
15f8ac7f 3643 struct scope_binding binding = EMPTY_SCOPE_BINDING;
00e8de68
GDR
3644
3645 timevar_push (TV_NAME_LOOKUP);
00e8de68
GDR
3646
3647 for (; !val; scope = CP_DECL_CONTEXT (scope))
3648 {
3649 cxx_binding *b =
0cbd7506 3650 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name);
00e8de68 3651
ba18e4db
MM
3652 if (b)
3653 {
bd3d082e
KL
3654 if (b->value && hidden_name_p (b->value))
3655 /* Ignore anticipated built-in functions and friends. */
ba18e4db
MM
3656 ;
3657 else
3658 binding.value = b->value;
3659 binding.type = b->type;
3660 }
00e8de68
GDR
3661
3662 /* Add all _DECLs seen through local using-directives. */
3663 for (level = current_binding_level;
3664 level->kind != sk_namespace;
3665 level = level->level_chain)
3666 if (!lookup_using_namespace (name, &binding, level->using_directives,
0cbd7506 3667 scope, flags))
00e8de68
GDR
3668 /* Give up because of error. */
3669 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3670
3671 /* Add all _DECLs seen through global using-directives. */
3672 /* XXX local and global using lists should work equally. */
3673 siter = initial;
3674 while (1)
3675 {
3676 if (!lookup_using_namespace (name, &binding,
0cbd7506 3677 DECL_NAMESPACE_USING (siter),
543ebd4a 3678 scope, flags))
00e8de68
GDR
3679 /* Give up because of error. */
3680 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
3681 if (siter == scope) break;
3682 siter = CP_DECL_CONTEXT (siter);
3683 }
3684
3685 val = select_decl (&binding, flags);
3686 if (scope == global_namespace)
3687 break;
3688 }
3689 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3690}
3691
3692/* Look up NAME (an IDENTIFIER_NODE) in SCOPE (either a NAMESPACE_DECL
3693 or a class TYPE). If IS_TYPE_P is TRUE, then ignore non-type
c8094d83 3694 bindings.
00e8de68
GDR
3695
3696 Returns a DECL (or OVERLOAD, or BASELINK) representing the
3697 declaration found. If no suitable declaration can be found,
8f78f01f 3698 ERROR_MARK_NODE is returned. If COMPLAIN is true and SCOPE is
00e8de68
GDR
3699 neither a class-type nor a namespace a diagnostic is issued. */
3700
3701tree
3702lookup_qualified_name (tree scope, tree name, bool is_type_p, bool complain)
3703{
3704 int flags = 0;
3705
3706 if (TREE_CODE (scope) == NAMESPACE_DECL)
3707 {
15f8ac7f 3708 struct scope_binding binding = EMPTY_SCOPE_BINDING;
00e8de68 3709
00e8de68
GDR
3710 flags |= LOOKUP_COMPLAIN;
3711 if (is_type_p)
3712 flags |= LOOKUP_PREFER_TYPES;
543ebd4a 3713 if (qualified_lookup_using_namespace (name, scope, &binding, flags))
00e8de68
GDR
3714 return select_decl (&binding, flags);
3715 }
3716 else if (is_aggr_type (scope, complain))
3717 {
3718 tree t;
8f78f01f 3719 t = lookup_member (scope, name, 2, is_type_p);
00e8de68
GDR
3720 if (t)
3721 return t;
3722 }
3723
3724 return error_mark_node;
3725}
3726
cd0be382 3727/* Subroutine of unqualified_namespace_lookup:
5a167978
GDR
3728 Add the bindings of NAME in used namespaces to VAL.
3729 We are currently looking for names in namespace SCOPE, so we
3730 look through USINGS for using-directives of namespaces
3731 which have SCOPE as a common ancestor with the current scope.
3732 Returns false on errors. */
3733
a5e6b29b 3734static bool
15f8ac7f
GK
3735lookup_using_namespace (tree name, struct scope_binding *val,
3736 tree usings, tree scope, int flags)
5a167978
GDR
3737{
3738 tree iter;
3739 timevar_push (TV_NAME_LOOKUP);
3740 /* Iterate over all used namespaces in current, searching for using
3741 directives of scope. */
3742 for (iter = usings; iter; iter = TREE_CHAIN (iter))
3743 if (TREE_VALUE (iter) == scope)
3744 {
0cbd7506
MS
3745 tree used = ORIGINAL_NAMESPACE (TREE_PURPOSE (iter));
3746 cxx_binding *val1 =
3747 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (used), name);
3748 /* Resolve ambiguities. */
3749 if (val1)
3750 ambiguous_decl (name, val, val1, flags);
5a167978
GDR
3751 }
3752 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val->value != error_mark_node);
3753}
3754
3755/* [namespace.qual]
3756 Accepts the NAME to lookup and its qualifying SCOPE.
3757 Returns the name/type pair found into the cxx_binding *RESULT,
3758 or false on error. */
3759
a5e6b29b 3760static bool
15f8ac7f
GK
3761qualified_lookup_using_namespace (tree name, tree scope,
3762 struct scope_binding *result, int flags)
5a167978
GDR
3763{
3764 /* Maintain a list of namespaces visited... */
3765 tree seen = NULL_TREE;
3766 /* ... and a list of namespace yet to see. */
3767 tree todo = NULL_TREE;
dc55c941 3768 tree todo_maybe = NULL_TREE;
5a167978
GDR
3769 tree usings;
3770 timevar_push (TV_NAME_LOOKUP);
3771 /* Look through namespace aliases. */
3772 scope = ORIGINAL_NAMESPACE (scope);
3773 while (scope && result->value != error_mark_node)
3774 {
3775 cxx_binding *binding =
dc55c941 3776 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope), name);
5a167978
GDR
3777 seen = tree_cons (scope, NULL_TREE, seen);
3778 if (binding)
0cbd7506 3779 ambiguous_decl (name, result, binding, flags);
c404ab02
AO
3780
3781 /* Consider strong using directives always, and non-strong ones
3782 if we haven't found a binding yet. ??? Shouldn't we consider
3783 non-strong ones if the initial RESULT is non-NULL, but the
3784 binding in the given namespace is? */
3785 for (usings = DECL_NAMESPACE_USING (scope); usings;
3786 usings = TREE_CHAIN (usings))
3787 /* If this was a real directive, and we have not seen it. */
dc55c941
AO
3788 if (!TREE_INDIRECT_USING (usings))
3789 {
3790 /* Try to avoid queuing the same namespace more than once,
3791 the exception being when a namespace was already
3792 enqueued for todo_maybe and then a strong using is
3793 found for it. We could try to remove it from
3794 todo_maybe, but it's probably not worth the effort. */
3795 if (is_associated_namespace (scope, TREE_PURPOSE (usings))
3796 && !purpose_member (TREE_PURPOSE (usings), seen)
3797 && !purpose_member (TREE_PURPOSE (usings), todo))
3798 todo = tree_cons (TREE_PURPOSE (usings), NULL_TREE, todo);
3799 else if ((!result->value && !result->type)
3800 && !purpose_member (TREE_PURPOSE (usings), seen)
3801 && !purpose_member (TREE_PURPOSE (usings), todo)
3802 && !purpose_member (TREE_PURPOSE (usings), todo_maybe))
3803 todo_maybe = tree_cons (TREE_PURPOSE (usings), NULL_TREE,
3804 todo_maybe);
3805 }
5a167978
GDR
3806 if (todo)
3807 {
3808 scope = TREE_PURPOSE (todo);
3809 todo = TREE_CHAIN (todo);
3810 }
dc55c941
AO
3811 else if (todo_maybe
3812 && (!result->value && !result->type))
3813 {
3814 scope = TREE_PURPOSE (todo_maybe);
3815 todo = TREE_CHAIN (todo_maybe);
3816 todo_maybe = NULL_TREE;
3817 }
5a167978
GDR
3818 else
3819 scope = NULL_TREE; /* If there never was a todo list. */
3820 }
3821 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, result->value != error_mark_node);
3822}
3823
90ea9897
MM
3824/* Return the innermost non-namespace binding for NAME from a scope
3825 containing BINDING, or, if BINDING is NULL, the current scope. If
3826 CLASS_P is false, then class bindings are ignored. */
3827
3828cxx_binding *
c8094d83 3829outer_binding (tree name,
90ea9897
MM
3830 cxx_binding *binding,
3831 bool class_p)
3832{
3833 cxx_binding *outer;
3834 cxx_scope *scope;
3835 cxx_scope *outer_scope;
3836
3837 if (binding)
3838 {
3839 scope = binding->scope->level_chain;
3840 outer = binding->previous;
3841 }
3842 else
3843 {
3844 scope = current_binding_level;
3845 outer = IDENTIFIER_BINDING (name);
3846 }
3847 outer_scope = outer ? outer->scope : NULL;
3848
3849 /* Because we create class bindings lazily, we might be missing a
3850 class binding for NAME. If there are any class binding levels
3851 between the LAST_BINDING_LEVEL and the scope in which OUTER was
3852 declared, we must lookup NAME in those class scopes. */
3853 if (class_p)
3854 while (scope && scope != outer_scope && scope->kind != sk_namespace)
3855 {
c8094d83 3856 if (scope->kind == sk_class)
90ea9897
MM
3857 {
3858 cxx_binding *class_binding;
c8094d83 3859
90ea9897
MM
3860 class_binding = get_class_binding (name, scope);
3861 if (class_binding)
3862 {
3863 /* Thread this new class-scope binding onto the
3864 IDENTIFIER_BINDING list so that future lookups
3865 find it quickly. */
3866 class_binding->previous = outer;
3867 if (binding)
3868 binding->previous = class_binding;
3869 else
3870 IDENTIFIER_BINDING (name) = class_binding;
3871 return class_binding;
3872 }
3873 }
3874 scope = scope->level_chain;
3875 }
3876
3877 return outer;
3878}
3879
3880/* Return the innermost block-scope or class-scope value binding for
3881 NAME, or NULL_TREE if there is no such binding. */
3882
3883tree
3884innermost_non_namespace_value (tree name)
3885{
3886 cxx_binding *binding;
3887 binding = outer_binding (name, /*binding=*/NULL, /*class_p=*/true);
3888 return binding ? binding->value : NULL_TREE;
3889}
3890
00e8de68
GDR
3891/* Look up NAME in the current binding level and its superiors in the
3892 namespace of variables, functions and typedefs. Return a ..._DECL
3893 node of some kind representing its definition if there is only one
3894 such declaration, or return a TREE_LIST with all the overloaded
3895 definitions if there are many, or return 0 if it is undefined.
bd3d082e
KL
3896 Hidden name, either friend declaration or built-in function, are
3897 not ignored.
00e8de68
GDR
3898
3899 If PREFER_TYPE is > 0, we prefer TYPE_DECLs or namespaces.
3900 If PREFER_TYPE is > 1, we reject non-type decls (e.g. namespaces).
3901 Otherwise we prefer non-TYPE_DECLs.
3902
39fb05d0
MM
3903 If NONCLASS is nonzero, bindings in class scopes are ignored. If
3904 BLOCK_P is false, bindings in block scopes are ignored. */
00e8de68
GDR
3905
3906tree
12cf89fa 3907lookup_name_real (tree name, int prefer_type, int nonclass, bool block_p,
00e8de68
GDR
3908 int namespaces_only, int flags)
3909{
3910 cxx_binding *iter;
3911 tree val = NULL_TREE;
3912
3913 timevar_push (TV_NAME_LOOKUP);
3914 /* Conversion operators are handled specially because ordinary
3915 unqualified name lookup will not find template conversion
3916 operators. */
c8094d83 3917 if (IDENTIFIER_TYPENAME_P (name))
00e8de68
GDR
3918 {
3919 struct cp_binding_level *level;
3920
c8094d83 3921 for (level = current_binding_level;
00e8de68
GDR
3922 level && level->kind != sk_namespace;
3923 level = level->level_chain)
3924 {
3925 tree class_type;
3926 tree operators;
c8094d83
MS
3927
3928 /* A conversion operator can only be declared in a class
00e8de68
GDR
3929 scope. */
3930 if (level->kind != sk_class)
3931 continue;
c8094d83 3932
00e8de68
GDR
3933 /* Lookup the conversion operator in the class. */
3934 class_type = level->this_entity;
3935 operators = lookup_fnfields (class_type, name, /*protect=*/0);
3936 if (operators)
3937 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, operators);
3938 }
3939
3940 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
3941 }
3942
3943 flags |= lookup_flags (prefer_type, namespaces_only);
3944
3945 /* First, look in non-namespace scopes. */
3946
3947 if (current_class_type == NULL_TREE)
3948 nonclass = 1;
3949
12cf89fa 3950 if (block_p || !nonclass)
90ea9897
MM
3951 for (iter = outer_binding (name, NULL, !nonclass);
3952 iter;
3953 iter = outer_binding (name, iter, !nonclass))
12cf89fa
MM
3954 {
3955 tree binding;
c8094d83 3956
12cf89fa
MM
3957 /* Skip entities we don't want. */
3958 if (LOCAL_BINDING_P (iter) ? !block_p : nonclass)
3959 continue;
c8094d83 3960
12cf89fa 3961 /* If this is the kind of thing we're looking for, we're done. */
bd3d082e
KL
3962 if (qualify_lookup (iter->value, flags)
3963 && !hidden_name_p (iter->value))
12cf89fa
MM
3964 binding = iter->value;
3965 else if ((flags & LOOKUP_PREFER_TYPES)
bd3d082e
KL
3966 && qualify_lookup (iter->type, flags)
3967 && !hidden_name_p (iter->type))
12cf89fa
MM
3968 binding = iter->type;
3969 else
3970 binding = NULL_TREE;
c8094d83 3971
12cf89fa
MM
3972 if (binding)
3973 {
3974 val = binding;
3975 break;
3976 }
3977 }
00e8de68
GDR
3978
3979 /* Now lookup in namespace scopes. */
3980 if (!val)
29ef83de 3981 val = unqualified_namespace_lookup (name, flags);
00e8de68 3982
0c8ce11b
VR
3983 /* If we have a single function from a using decl, pull it out. */
3984 if (val && TREE_CODE (val) == OVERLOAD && !really_overloaded_fn (val))
3985 val = OVL_FUNCTION (val);
00e8de68
GDR
3986
3987 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
3988}
3989
3990tree
3991lookup_name_nonclass (tree name)
3992{
12cf89fa 3993 return lookup_name_real (name, 0, 1, /*block_p=*/true, 0, LOOKUP_COMPLAIN);
00e8de68
GDR
3994}
3995
3996tree
12cf89fa 3997lookup_function_nonclass (tree name, tree args, bool block_p)
00e8de68 3998{
c8094d83
MS
3999 return
4000 lookup_arg_dependent (name,
4001 lookup_name_real (name, 0, 1, block_p, 0,
12cf89fa
MM
4002 LOOKUP_COMPLAIN),
4003 args);
00e8de68
GDR
4004}
4005
4006tree
10e6657a 4007lookup_name (tree name)
00e8de68 4008{
10e6657a 4009 return lookup_name_real (name, 0, 0, /*block_p=*/true, 0, LOOKUP_COMPLAIN);
00e8de68
GDR
4010}
4011
98803730 4012tree
10e6657a 4013lookup_name_prefer_type (tree name, int prefer_type)
98803730 4014{
10e6657a
RH
4015 return lookup_name_real (name, prefer_type, 0, /*block_p=*/true,
4016 0, LOOKUP_COMPLAIN);
98803730
MS
4017}
4018
461c6fce 4019/* Look up NAME for type used in elaborated name specifier in
29ef83de 4020 the scopes given by SCOPE. SCOPE can be either TS_CURRENT or
87c465f5
KL
4021 TS_WITHIN_ENCLOSING_NON_CLASS. Although not implied by the
4022 name, more scopes are checked if cleanup or template parameter
4023 scope is encountered.
29ef83de
KL
4024
4025 Unlike lookup_name_real, we make sure that NAME is actually
87c465f5
KL
4026 declared in the desired scope, not from inheritance, nor using
4027 directive. For using declaration, there is DR138 still waiting
13a44ee0 4028 to be resolved. Hidden name coming from an earlier friend
bd3d082e 4029 declaration is also returned.
87c465f5
KL
4030
4031 A TYPE_DECL best matching the NAME is returned. Catching error
4032 and issuing diagnostics are caller's responsibility. */
461c6fce
KL
4033
4034tree
29ef83de 4035lookup_type_scope (tree name, tag_scope scope)
461c6fce
KL
4036{
4037 cxx_binding *iter = NULL;
4038 tree val = NULL_TREE;
4039
4040 timevar_push (TV_NAME_LOOKUP);
4041
4042 /* Look in non-namespace scope first. */
4043 if (current_binding_level->kind != sk_namespace)
4044 iter = outer_binding (name, NULL, /*class_p=*/ true);
4045 for (; iter; iter = outer_binding (name, iter, /*class_p=*/ true))
4046 {
4047 /* Check if this is the kind of thing we're looking for.
c8094d83 4048 If SCOPE is TS_CURRENT, also make sure it doesn't come from
29ef83de 4049 base class. For ITER->VALUE, we can simply use
c8094d83 4050 INHERITED_VALUE_BINDING_P. For ITER->TYPE, we have to use
29ef83de 4051 our own check.
461c6fce
KL
4052
4053 We check ITER->TYPE before ITER->VALUE in order to handle
4054 typedef struct C {} C;
4055 correctly. */
4056
4057 if (qualify_lookup (iter->type, LOOKUP_PREFER_TYPES)
29ef83de
KL
4058 && (scope != ts_current
4059 || LOCAL_BINDING_P (iter)
461c6fce
KL
4060 || DECL_CONTEXT (iter->type) == iter->scope->this_entity))
4061 val = iter->type;
29ef83de
KL
4062 else if ((scope != ts_current
4063 || !INHERITED_VALUE_BINDING_P (iter))
461c6fce
KL
4064 && qualify_lookup (iter->value, LOOKUP_PREFER_TYPES))
4065 val = iter->value;
4066
4067 if (val)
4068 break;
4069 }
4070
4071 /* Look in namespace scope. */
4072 if (!val)
4073 {
4074 iter = cxx_scope_find_binding_for_name
4075 (NAMESPACE_LEVEL (current_decl_namespace ()), name);
4076
4077 if (iter)
4078 {
bd3d082e 4079 /* If this is the kind of thing we're looking for, we're done. */
87c465f5 4080 if (qualify_lookup (iter->type, LOOKUP_PREFER_TYPES))
461c6fce 4081 val = iter->type;
87c465f5 4082 else if (qualify_lookup (iter->value, LOOKUP_PREFER_TYPES))
461c6fce
KL
4083 val = iter->value;
4084 }
c8094d83 4085
461c6fce
KL
4086 }
4087
29ef83de 4088 /* Type found, check if it is in the allowed scopes, ignoring cleanup
461c6fce
KL
4089 and template parameter scopes. */
4090 if (val)
4091 {
4092 struct cp_binding_level *b = current_binding_level;
4093 while (b)
4094 {
4095 if (iter->scope == b)
4096 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, val);
4097
4098 if (b->kind == sk_cleanup || b->kind == sk_template_parms)
4099 b = b->level_chain;
29ef83de
KL
4100 else if (b->kind == sk_class
4101 && scope == ts_within_enclosing_non_class)
4102 b = b->level_chain;
461c6fce
KL
4103 else
4104 break;
4105 }
4106 }
4107
4108 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
4109}
4110
00e8de68
GDR
4111/* Similar to `lookup_name' but look only in the innermost non-class
4112 binding level. */
4113
a5e6b29b 4114static tree
461c6fce 4115lookup_name_innermost_nonclass_level (tree name)
00e8de68
GDR
4116{
4117 struct cp_binding_level *b;
4118 tree t = NULL_TREE;
4119
4120 timevar_push (TV_NAME_LOOKUP);
4121 b = innermost_nonclass_level ();
4122
4123 if (b->kind == sk_namespace)
4124 {
4125 t = IDENTIFIER_NAMESPACE_VALUE (name);
4126
4127 /* extern "C" function() */
4128 if (t != NULL_TREE && TREE_CODE (t) == TREE_LIST)
4129 t = TREE_VALUE (t);
4130 }
4131 else if (IDENTIFIER_BINDING (name)
4132 && LOCAL_BINDING_P (IDENTIFIER_BINDING (name)))
4133 {
90ea9897
MM
4134 cxx_binding *binding;
4135 binding = IDENTIFIER_BINDING (name);
00e8de68
GDR
4136 while (1)
4137 {
90ea9897
MM
4138 if (binding->scope == b
4139 && !(TREE_CODE (binding->value) == VAR_DECL
4140 && DECL_DEAD_FOR_LOCAL (binding->value)))
4141 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, binding->value);
00e8de68
GDR
4142
4143 if (b->kind == sk_cleanup)
4144 b = b->level_chain;
4145 else
4146 break;
4147 }
4148 }
4149
4150 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
4151}
4152
461c6fce 4153/* Like lookup_name_innermost_nonclass_level, but for types. */
00e8de68 4154
a5e6b29b 4155static tree
00e8de68
GDR
4156lookup_type_current_level (tree name)
4157{
926ce8bd 4158 tree t = NULL_TREE;
00e8de68
GDR
4159
4160 timevar_push (TV_NAME_LOOKUP);
50bc768d 4161 gcc_assert (current_binding_level->kind != sk_namespace);
00e8de68
GDR
4162
4163 if (REAL_IDENTIFIER_TYPE_VALUE (name) != NULL_TREE
4164 && REAL_IDENTIFIER_TYPE_VALUE (name) != global_type_node)
4165 {
4166 struct cp_binding_level *b = current_binding_level;
4167 while (1)
4168 {
4169 if (purpose_member (name, b->type_shadowed))
4170 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP,
0cbd7506 4171 REAL_IDENTIFIER_TYPE_VALUE (name));
00e8de68
GDR
4172 if (b->kind == sk_cleanup)
4173 b = b->level_chain;
4174 else
4175 break;
4176 }
4177 }
4178
4179 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
4180}
4181
5a167978
GDR
4182/* [basic.lookup.koenig] */
4183/* A nonzero return value in the functions below indicates an error. */
4184
4185struct arg_lookup
4186{
4187 tree name;
d63d5d0c 4188 tree args;
5a167978
GDR
4189 tree namespaces;
4190 tree classes;
4191 tree functions;
4192};
4193
4194static bool arg_assoc (struct arg_lookup*, tree);
4195static bool arg_assoc_args (struct arg_lookup*, tree);
4196static bool arg_assoc_type (struct arg_lookup*, tree);
4197static bool add_function (struct arg_lookup *, tree);
4198static bool arg_assoc_namespace (struct arg_lookup *, tree);
4199static bool arg_assoc_class (struct arg_lookup *, tree);
4200static bool arg_assoc_template_arg (struct arg_lookup*, tree);
4201
4202/* Add a function to the lookup structure.
4203 Returns true on error. */
4204
4205static bool
4206add_function (struct arg_lookup *k, tree fn)
4207{
4208 /* We used to check here to see if the function was already in the list,
4209 but that's O(n^2), which is just too expensive for function lookup.
4210 Now we deal with the occasional duplicate in joust. In doing this, we
4211 assume that the number of duplicates will be small compared to the
4212 total number of functions being compared, which should usually be the
4213 case. */
4214
4215 /* We must find only functions, or exactly one non-function. */
c8094d83 4216 if (!k->functions)
5a167978
GDR
4217 k->functions = fn;
4218 else if (fn == k->functions)
4219 ;
4220 else if (is_overloaded_fn (k->functions) && is_overloaded_fn (fn))
4221 k->functions = build_overload (fn, k->functions);
4222 else
4223 {
4224 tree f1 = OVL_CURRENT (k->functions);
4225 tree f2 = fn;
4226 if (is_overloaded_fn (f1))
4227 {
4228 fn = f1; f1 = f2; f2 = fn;
4229 }
dee15844
JM
4230 error ("%q+D is not a function,", f1);
4231 error (" conflict with %q+D", f2);
2a13a625 4232 error (" in call to %qD", k->name);
5a167978
GDR
4233 return true;
4234 }
4235
4236 return false;
4237}
4238
86098eb8
JM
4239/* Returns true iff CURRENT has declared itself to be an associated
4240 namespace of SCOPE via a strong using-directive (or transitive chain
4241 thereof). Both are namespaces. */
4242
4243bool
4244is_associated_namespace (tree current, tree scope)
4245{
4246 tree seen = NULL_TREE;
4247 tree todo = NULL_TREE;
4248 tree t;
4249 while (1)
4250 {
4251 if (scope == current)
4252 return true;
4253 seen = tree_cons (scope, NULL_TREE, seen);
4254 for (t = DECL_NAMESPACE_ASSOCIATIONS (scope); t; t = TREE_CHAIN (t))
4255 if (!purpose_member (TREE_PURPOSE (t), seen))
4256 todo = tree_cons (TREE_PURPOSE (t), NULL_TREE, todo);
4257 if (todo)
4258 {
4259 scope = TREE_PURPOSE (todo);
4260 todo = TREE_CHAIN (todo);
4261 }
4262 else
4263 return false;
4264 }
4265}
4266
d63d5d0c
ILT
4267/* Return whether FN is a friend of an associated class of ARG. */
4268
4269static bool
4270friend_of_associated_class_p (tree arg, tree fn)
4271{
4272 tree type;
4273
4274 if (TYPE_P (arg))
4275 type = arg;
4276 else if (type_unknown_p (arg))
4277 return false;
4278 else
4279 type = TREE_TYPE (arg);
4280
4281 /* If TYPE is a class, the class itself and all base classes are
4282 associated classes. */
4283 if (CLASS_TYPE_P (type))
4284 {
4285 if (is_friend (type, fn))
4286 return true;
4287
4288 if (TYPE_BINFO (type))
4289 {
4290 tree binfo, base_binfo;
4291 int i;
4292
4293 for (binfo = TYPE_BINFO (type), i = 0;
4294 BINFO_BASE_ITERATE (binfo, i, base_binfo);
4295 i++)
4296 if (is_friend (BINFO_TYPE (base_binfo), fn))
4297 return true;
4298 }
4299 }
4300
4301 /* If TYPE is a class member, the class of which it is a member is
4302 an associated class. */
4303 if ((CLASS_TYPE_P (type)
4304 || TREE_CODE (type) == UNION_TYPE
4305 || TREE_CODE (type) == ENUMERAL_TYPE)
4306 && TYPE_CONTEXT (type)
4307 && CLASS_TYPE_P (TYPE_CONTEXT (type))
4308 && is_friend (TYPE_CONTEXT (type), fn))
4309 return true;
4310
4311 return false;
4312}
4313
5a167978
GDR
4314/* Add functions of a namespace to the lookup structure.
4315 Returns true on error. */
4316
4317static bool
4318arg_assoc_namespace (struct arg_lookup *k, tree scope)
4319{
4320 tree value;
4321
4322 if (purpose_member (scope, k->namespaces))
4323 return 0;
4324 k->namespaces = tree_cons (scope, NULL_TREE, k->namespaces);
86098eb8
JM
4325
4326 /* Check out our super-users. */
4327 for (value = DECL_NAMESPACE_ASSOCIATIONS (scope); value;
4328 value = TREE_CHAIN (value))
4329 if (arg_assoc_namespace (k, TREE_PURPOSE (value)))
4330 return true;
c8094d83 4331
5a167978
GDR
4332 value = namespace_binding (k->name, scope);
4333 if (!value)
4334 return false;
4335
4336 for (; value; value = OVL_NEXT (value))
d63d5d0c
ILT
4337 {
4338 /* We don't want to find arbitrary hidden functions via argument
4339 dependent lookup. We only want to find friends of associated
4340 classes. */
4341 if (hidden_name_p (OVL_CURRENT (value)))
4342 {
4343 tree args;
4344
4345 for (args = k->args; args; args = TREE_CHAIN (args))
4346 if (friend_of_associated_class_p (TREE_VALUE (args),
4347 OVL_CURRENT (value)))
4348 break;
4349 if (!args)
4350 continue;
4351 }
4352
4353 if (add_function (k, OVL_CURRENT (value)))
4354 return true;
4355 }
c8094d83 4356
5a167978
GDR
4357 return false;
4358}
4359
4360/* Adds everything associated with a template argument to the lookup
4361 structure. Returns true on error. */
4362
4363static bool
4364arg_assoc_template_arg (struct arg_lookup *k, tree arg)
4365{
4366 /* [basic.lookup.koenig]
4367
4368 If T is a template-id, its associated namespaces and classes are
4369 ... the namespaces and classes associated with the types of the
4370 template arguments provided for template type parameters
4371 (excluding template template parameters); the namespaces in which
4372 any template template arguments are defined; and the classes in
4373 which any member templates used as template template arguments
4374 are defined. [Note: non-type template arguments do not
4375 contribute to the set of associated namespaces. ] */
4376
4377 /* Consider first template template arguments. */
4378 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
4379 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
4380 return false;
4381 else if (TREE_CODE (arg) == TEMPLATE_DECL)
4382 {
4383 tree ctx = CP_DECL_CONTEXT (arg);
4384
4385 /* It's not a member template. */
4386 if (TREE_CODE (ctx) == NAMESPACE_DECL)
0cbd7506 4387 return arg_assoc_namespace (k, ctx);
5a167978 4388 /* Otherwise, it must be member template. */
c8094d83 4389 else
0cbd7506 4390 return arg_assoc_class (k, ctx);
5a167978
GDR
4391 }
4392 /* It's not a template template argument, but it is a type template
4393 argument. */
4394 else if (TYPE_P (arg))
4395 return arg_assoc_type (k, arg);
4396 /* It's a non-type template argument. */
4397 else
4398 return false;
4399}
4400
4401/* Adds everything associated with class to the lookup structure.
4402 Returns true on error. */
4403
4404static bool
4405arg_assoc_class (struct arg_lookup *k, tree type)
4406{
4407 tree list, friends, context;
4408 int i;
c8094d83 4409
5a167978
GDR
4410 /* Backend build structures, such as __builtin_va_list, aren't
4411 affected by all this. */
4412 if (!CLASS_TYPE_P (type))
4413 return false;
4414
4415 if (purpose_member (type, k->classes))
4416 return false;
4417 k->classes = tree_cons (type, NULL_TREE, k->classes);
c8094d83 4418
b1cc95ce 4419 context = decl_namespace_context (type);
5a167978
GDR
4420 if (arg_assoc_namespace (k, context))
4421 return true;
ccb14335
NS
4422
4423 if (TYPE_BINFO (type))
fa743e8c
NS
4424 {
4425 /* Process baseclasses. */
4426 tree binfo, base_binfo;
c8094d83 4427
fa743e8c
NS
4428 for (binfo = TYPE_BINFO (type), i = 0;
4429 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
4430 if (arg_assoc_class (k, BINFO_TYPE (base_binfo)))
4431 return true;
4432 }
c8094d83 4433
5a167978 4434 /* Process friends. */
c8094d83 4435 for (list = DECL_FRIENDLIST (TYPE_MAIN_DECL (type)); list;
5a167978
GDR
4436 list = TREE_CHAIN (list))
4437 if (k->name == FRIEND_NAME (list))
c8094d83 4438 for (friends = FRIEND_DECLS (list); friends;
5a167978 4439 friends = TREE_CHAIN (friends))
c8b2e872
MM
4440 {
4441 tree fn = TREE_VALUE (friends);
4442
4443 /* Only interested in global functions with potentially hidden
4444 (i.e. unqualified) declarations. */
4445 if (CP_DECL_CONTEXT (fn) != context)
4446 continue;
4447 /* Template specializations are never found by name lookup.
4448 (Templates themselves can be found, but not template
4449 specializations.) */
4450 if (TREE_CODE (fn) == FUNCTION_DECL && DECL_USE_TEMPLATE (fn))
4451 continue;
4452 if (add_function (k, fn))
5a167978 4453 return true;
c8b2e872 4454 }
5a167978
GDR
4455
4456 /* Process template arguments. */
c8094d83 4457 if (CLASSTYPE_TEMPLATE_INFO (type)
146d3c99 4458 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
5a167978
GDR
4459 {
4460 list = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
c8094d83 4461 for (i = 0; i < TREE_VEC_LENGTH (list); ++i)
0cbd7506 4462 arg_assoc_template_arg (k, TREE_VEC_ELT (list, i));
5a167978
GDR
4463 }
4464
4465 return false;
4466}
4467
4468/* Adds everything associated with a given type.
4469 Returns 1 on error. */
4470
4471static bool
4472arg_assoc_type (struct arg_lookup *k, tree type)
4473{
4474 /* As we do not get the type of non-type dependent expressions
4475 right, we can end up with such things without a type. */
4476 if (!type)
4477 return false;
4478
4479 if (TYPE_PTRMEM_P (type))
4480 {
4481 /* Pointer to member: associate class type and value type. */
4482 if (arg_assoc_type (k, TYPE_PTRMEM_CLASS_TYPE (type)))
4483 return true;
4484 return arg_assoc_type (k, TYPE_PTRMEM_POINTED_TO_TYPE (type));
4485 }
4486 else switch (TREE_CODE (type))
4487 {
4488 case ERROR_MARK:
4489 return false;
4490 case VOID_TYPE:
4491 case INTEGER_TYPE:
4492 case REAL_TYPE:
4493 case COMPLEX_TYPE:
4494 case VECTOR_TYPE:
5a167978
GDR
4495 case BOOLEAN_TYPE:
4496 return false;
4497 case RECORD_TYPE:
4498 if (TYPE_PTRMEMFUNC_P (type))
4499 return arg_assoc_type (k, TYPE_PTRMEMFUNC_FN_TYPE (type));
4500 return arg_assoc_class (k, type);
4501 case POINTER_TYPE:
4502 case REFERENCE_TYPE:
4503 case ARRAY_TYPE:
4504 return arg_assoc_type (k, TREE_TYPE (type));
4505 case UNION_TYPE:
4506 case ENUMERAL_TYPE:
b1cc95ce 4507 return arg_assoc_namespace (k, decl_namespace_context (type));
5a167978
GDR
4508 case METHOD_TYPE:
4509 /* The basetype is referenced in the first arg type, so just
4510 fall through. */
4511 case FUNCTION_TYPE:
4512 /* Associate the parameter types. */
4513 if (arg_assoc_args (k, TYPE_ARG_TYPES (type)))
4514 return true;
4515 /* Associate the return type. */
4516 return arg_assoc_type (k, TREE_TYPE (type));
4517 case TEMPLATE_TYPE_PARM:
4518 case BOUND_TEMPLATE_TEMPLATE_PARM:
4519 return false;
4520 case TYPENAME_TYPE:
4521 return false;
4522 case LANG_TYPE:
315fb5db
NS
4523 gcc_assert (type == unknown_type_node);
4524 return false;
5a167978 4525 default:
315fb5db 4526 gcc_unreachable ();
5a167978
GDR
4527 }
4528 return false;
4529}
4530
4531/* Adds everything associated with arguments. Returns true on error. */
4532
4533static bool
4534arg_assoc_args (struct arg_lookup *k, tree args)
4535{
4536 for (; args; args = TREE_CHAIN (args))
4537 if (arg_assoc (k, TREE_VALUE (args)))
4538 return true;
4539 return false;
4540}
4541
4542/* Adds everything associated with a given tree_node. Returns 1 on error. */
4543
4544static bool
4545arg_assoc (struct arg_lookup *k, tree n)
4546{
4547 if (n == error_mark_node)
4548 return false;
4549
4550 if (TYPE_P (n))
4551 return arg_assoc_type (k, n);
4552
4553 if (! type_unknown_p (n))
4554 return arg_assoc_type (k, TREE_TYPE (n));
4555
4556 if (TREE_CODE (n) == ADDR_EXPR)
4557 n = TREE_OPERAND (n, 0);
4558 if (TREE_CODE (n) == COMPONENT_REF)
4559 n = TREE_OPERAND (n, 1);
4560 if (TREE_CODE (n) == OFFSET_REF)
4561 n = TREE_OPERAND (n, 1);
4562 while (TREE_CODE (n) == TREE_LIST)
4563 n = TREE_VALUE (n);
4564 if (TREE_CODE (n) == BASELINK)
4565 n = BASELINK_FUNCTIONS (n);
4566
4567 if (TREE_CODE (n) == FUNCTION_DECL)
4568 return arg_assoc_type (k, TREE_TYPE (n));
4569 if (TREE_CODE (n) == TEMPLATE_ID_EXPR)
4570 {
4571 /* [basic.lookup.koenig]
4572
4573 If T is a template-id, its associated namespaces and classes
4574 are the namespace in which the template is defined; for
4575 member templates, the member template's class... */
4576 tree template = TREE_OPERAND (n, 0);
4577 tree args = TREE_OPERAND (n, 1);
4578 tree ctx;
4579 int ix;
4580
4581 if (TREE_CODE (template) == COMPONENT_REF)
0cbd7506 4582 template = TREE_OPERAND (template, 1);
c8094d83 4583
5a167978
GDR
4584 /* First, the template. There may actually be more than one if
4585 this is an overloaded function template. But, in that case,
4586 we only need the first; all the functions will be in the same
4587 namespace. */
4588 template = OVL_CURRENT (template);
4589
4590 ctx = CP_DECL_CONTEXT (template);
c8094d83 4591
5a167978
GDR
4592 if (TREE_CODE (ctx) == NAMESPACE_DECL)
4593 {
4594 if (arg_assoc_namespace (k, ctx) == 1)
4595 return true;
4596 }
4597 /* It must be a member template. */
4598 else if (arg_assoc_class (k, ctx) == 1)
4599 return true;
4600
4601 /* Now the arguments. */
c19aaba5
NS
4602 if (args)
4603 for (ix = TREE_VEC_LENGTH (args); ix--;)
4604 if (arg_assoc_template_arg (k, TREE_VEC_ELT (args, ix)) == 1)
4605 return true;
5a167978 4606 }
c1cca8d4 4607 else if (TREE_CODE (n) == OVERLOAD)
5a167978 4608 {
5a167978
GDR
4609 for (; n; n = OVL_CHAIN (n))
4610 if (arg_assoc_type (k, TREE_TYPE (OVL_FUNCTION (n))))
4611 return true;
4612 }
4613
4614 return false;
4615}
4616
4617/* Performs Koenig lookup depending on arguments, where fns
4618 are the functions found in normal lookup. */
4619
4620tree
4621lookup_arg_dependent (tree name, tree fns, tree args)
4622{
4623 struct arg_lookup k;
5a167978
GDR
4624
4625 timevar_push (TV_NAME_LOOKUP);
d63d5d0c
ILT
4626
4627 /* Remove any hidden friend functions from the list of functions
4628 found so far. They will be added back by arg_assoc_class as
4629 appropriate. */
4630 fns = remove_hidden_names (fns);
4631
5a167978 4632 k.name = name;
d63d5d0c 4633 k.args = args;
5a167978
GDR
4634 k.functions = fns;
4635 k.classes = NULL_TREE;
4636
20ac1e03
DG
4637 /* We previously performed an optimization here by setting
4638 NAMESPACES to the current namespace when it was safe. However, DR
4639 164 says that namespaces that were already searched in the first
4640 stage of template processing are searched again (potentially
4641 picking up later definitions) in the second stage. */
4642 k.namespaces = NULL_TREE;
5a167978
GDR
4643
4644 arg_assoc_args (&k, args);
4645 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, k.functions);
4646}
4647
00e8de68
GDR
4648/* Add namespace to using_directives. Return NULL_TREE if nothing was
4649 changed (i.e. there was already a directive), or the fresh
4650 TREE_LIST otherwise. */
4651
a5e6b29b 4652static tree
00e8de68
GDR
4653push_using_directive (tree used)
4654{
4655 tree ud = current_binding_level->using_directives;
4656 tree iter, ancestor;
4657
4658 timevar_push (TV_NAME_LOOKUP);
4659 /* Check if we already have this. */
4660 if (purpose_member (used, ud) != NULL_TREE)
4661 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
4662
4663 ancestor = namespace_ancestor (current_decl_namespace (), used);
4664 ud = current_binding_level->using_directives;
4665 ud = tree_cons (used, ancestor, ud);
4666 current_binding_level->using_directives = ud;
4667
4668 /* Recursively add all namespaces used. */
4669 for (iter = DECL_NAMESPACE_USING (used); iter; iter = TREE_CHAIN (iter))
4670 push_using_directive (TREE_PURPOSE (iter));
4671
4672 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ud);
4673}
4674
4675/* The type TYPE is being declared. If it is a class template, or a
4676 specialization of a class template, do any processing required and
4677 perform error-checking. If IS_FRIEND is nonzero, this TYPE is
4678 being declared a friend. B is the binding level at which this TYPE
4679 should be bound.
4680
4681 Returns the TYPE_DECL for TYPE, which may have been altered by this
4682 processing. */
4683
4684static tree
bd3d082e 4685maybe_process_template_type_declaration (tree type, int is_friend,
0cbd7506 4686 cxx_scope *b)
00e8de68
GDR
4687{
4688 tree decl = TYPE_NAME (type);
4689
4690 if (processing_template_parmlist)
4691 /* You can't declare a new template type in a template parameter
4692 list. But, you can declare a non-template type:
4693
0cbd7506 4694 template <class A*> struct S;
00e8de68
GDR
4695
4696 is a forward-declaration of `A'. */
4697 ;
c43e95f8
MM
4698 else if (b->kind == sk_namespace
4699 && current_binding_level->kind != sk_namespace)
4700 /* If this new type is being injected into a containing scope,
4701 then it's not a template type. */
4702 ;
00e8de68
GDR
4703 else
4704 {
50bc768d 4705 gcc_assert (IS_AGGR_TYPE (type) || TREE_CODE (type) == ENUMERAL_TYPE);
00e8de68
GDR
4706
4707 if (processing_template_decl)
4708 {
4709 /* This may change after the call to
4710 push_template_decl_real, but we want the original value. */
4711 tree name = DECL_NAME (decl);
4712
bd3d082e 4713 decl = push_template_decl_real (decl, is_friend);
00e8de68
GDR
4714 /* If the current binding level is the binding level for the
4715 template parameters (see the comment in
4716 begin_template_parm_list) and the enclosing level is a class
4717 scope, and we're not looking at a friend, push the
4718 declaration of the member class into the class scope. In the
4719 friend case, push_template_decl will already have put the
4720 friend into global scope, if appropriate. */
4721 if (TREE_CODE (type) != ENUMERAL_TYPE
bd3d082e 4722 && !is_friend && b->kind == sk_template_parms
00e8de68
GDR
4723 && b->level_chain->kind == sk_class)
4724 {
4725 finish_member_declaration (CLASSTYPE_TI_TEMPLATE (type));
e57df6fe 4726
00e8de68
GDR
4727 if (!COMPLETE_TYPE_P (current_class_type))
4728 {
4729 maybe_add_class_template_decl_list (current_class_type,
4730 type, /*friend_p=*/0);
c72a1a86 4731 /* Put this UTD in the table of UTDs for the class. */
e57df6fe
KL
4732 if (CLASSTYPE_NESTED_UTDS (current_class_type) == NULL)
4733 CLASSTYPE_NESTED_UTDS (current_class_type) =
4734 binding_table_new (SCOPE_DEFAULT_HT_SIZE);
4735
4736 binding_table_insert
4737 (CLASSTYPE_NESTED_UTDS (current_class_type), name, type);
00e8de68
GDR
4738 }
4739 }
4740 }
4741 }
4742
4743 return decl;
4744}
4745
5a24482e
KL
4746/* Push a tag name NAME for struct/class/union/enum type TYPE. In case
4747 that the NAME is a class template, the tag is processed but not pushed.
4748
4749 The pushed scope depend on the SCOPE parameter:
4750 - When SCOPE is TS_CURRENT, put it into the inner-most non-sk_cleanup
4751 scope.
4752 - When SCOPE is TS_GLOBAL, put it in the inner-most non-class and
4753 non-template-parameter scope. This case is needed for forward
4754 declarations.
4755 - When SCOPE is TS_WITHIN_ENCLOSING_NON_CLASS, this is similar to
4756 TS_GLOBAL case except that names within template-parameter scopes
4757 are not pushed at all.
4758
c6f9f83b 4759 Returns TYPE upon success and ERROR_MARK_NODE otherwise. */
00e8de68 4760
c6f9f83b 4761tree
bd3d082e 4762pushtag (tree name, tree type, tag_scope scope)
00e8de68 4763{
926ce8bd 4764 struct cp_binding_level *b;
6a000704 4765 tree decl;
00e8de68
GDR
4766
4767 timevar_push (TV_NAME_LOOKUP);
4768 b = current_binding_level;
7c82a41e
MM
4769 while (/* Cleanup scopes are not scopes from the point of view of
4770 the language. */
4771 b->kind == sk_cleanup
4772 /* Neither are the scopes used to hold template parameters
4773 for an explicit specialization. For an ordinary template
4774 declaration, these scopes are not scopes from the point of
5a24482e
KL
4775 view of the language. */
4776 || (b->kind == sk_template_parms
4777 && (b->explicit_spec_p || scope == ts_global))
00e8de68 4778 || (b->kind == sk_class
bd3d082e 4779 && (scope != ts_current
00e8de68
GDR
4780 /* We may be defining a new type in the initializer
4781 of a static member variable. We allow this when
4782 not pedantic, and it is particularly useful for
4783 type punning via an anonymous union. */
4784 || COMPLETE_TYPE_P (b->this_entity))))
4785 b = b->level_chain;
4786
6a000704
NS
4787 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
4788
4789 /* Do C++ gratuitous typedefing. */
4790 if (IDENTIFIER_TYPE_VALUE (name) != type)
00e8de68 4791 {
6a000704
NS
4792 tree tdef;
4793 int in_class = 0;
4794 tree context = TYPE_CONTEXT (type);
00e8de68 4795
6a000704
NS
4796 if (! context)
4797 {
4798 tree cs = current_scope ();
4799
4800 if (scope == ts_current)
4801 context = cs;
4802 else if (cs != NULL_TREE && TYPE_P (cs))
4803 /* When declaring a friend class of a local class, we want
4804 to inject the newly named class into the scope
4805 containing the local class, not the namespace
4806 scope. */
4807 context = decl_function_context (get_type_decl (cs));
4808 }
4809 if (!context)
4810 context = current_namespace;
bd3d082e 4811
6a000704
NS
4812 if (b->kind == sk_class
4813 || (b->kind == sk_template_parms
4814 && b->level_chain->kind == sk_class))
4815 in_class = 1;
00e8de68 4816
6a000704
NS
4817 if (current_lang_name == lang_name_java)
4818 TYPE_FOR_JAVA (type) = 1;
00e8de68 4819
6a000704
NS
4820 tdef = create_implicit_typedef (name, type);
4821 DECL_CONTEXT (tdef) = FROB_CONTEXT (context);
4822 if (scope == ts_within_enclosing_non_class)
00e8de68 4823 {
6a000704
NS
4824 /* This is a friend. Make this TYPE_DECL node hidden from
4825 ordinary name lookup. Its corresponding TEMPLATE_DECL
4826 will be marked in push_template_decl_real. */
4827 retrofit_lang_decl (tdef);
4828 DECL_ANTICIPATED (tdef) = 1;
4829 DECL_FRIEND_P (tdef) = 1;
4830 }
e57df6fe 4831
6a000704
NS
4832 decl = maybe_process_template_type_declaration
4833 (type, scope == ts_within_enclosing_non_class, b);
4834 if (decl == error_mark_node)
4835 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
4836
4837 if (! in_class)
4838 set_identifier_type_value_with_scope (name, tdef, b);
e57df6fe 4839
6a000704
NS
4840 if (b->kind == sk_class)
4841 {
4842 if (!PROCESSING_REAL_TEMPLATE_DECL_P ())
4843 /* Put this TYPE_DECL on the TYPE_FIELDS list for the
4844 class. But if it's a member template class, we want
4845 the TEMPLATE_DECL, not the TYPE_DECL, so this is done
4846 later. */
4847 finish_member_declaration (decl);
4848 else
4849 pushdecl_class_level (decl);
00e8de68 4850 }
6a000704 4851 else if (b->kind != sk_template_parms)
d63d5d0c 4852 decl = pushdecl_with_scope (decl, b, /*is_friend=*/false);
6a000704
NS
4853
4854 TYPE_CONTEXT (type) = DECL_CONTEXT (decl);
4855
4856 /* If this is a local class, keep track of it. We need this
4857 information for name-mangling, and so that it is possible to
4858 find all function definitions in a translation unit in a
4859 convenient way. (It's otherwise tricky to find a member
4860 function definition it's only pointed to from within a local
4861 class.) */
4862 if (TYPE_CONTEXT (type)
4863 && TREE_CODE (TYPE_CONTEXT (type)) == FUNCTION_DECL)
4864 VEC_safe_push (tree, gc, local_classes, type);
00e8de68 4865 }
6a000704
NS
4866 if (b->kind == sk_class
4867 && !COMPLETE_TYPE_P (current_class_type))
00e8de68 4868 {
6a000704
NS
4869 maybe_add_class_template_decl_list (current_class_type,
4870 type, /*friend_p=*/0);
4871
4872 if (CLASSTYPE_NESTED_UTDS (current_class_type) == NULL)
4873 CLASSTYPE_NESTED_UTDS (current_class_type)
4874 = binding_table_new (SCOPE_DEFAULT_HT_SIZE);
4875
4876 binding_table_insert
4877 (CLASSTYPE_NESTED_UTDS (current_class_type), name, type);
00e8de68 4878 }
6a000704
NS
4879
4880 decl = TYPE_NAME (type);
4881 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
4882 TYPE_STUB_DECL (type) = decl;
4883
c6f9f83b 4884 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, type);
00e8de68
GDR
4885}
4886\f
00e8de68
GDR
4887/* Subroutines for reverting temporarily to top-level for instantiation
4888 of templates and such. We actually need to clear out the class- and
4889 local-value slots of all identifiers, so that only the global values
4890 are at all visible. Simply setting current_binding_level to the global
4891 scope isn't enough, because more binding levels may be pushed. */
4892struct saved_scope *scope_chain;
4893
f44b0c8e
MM
4894/* If ID has not already been marked, add an appropriate binding to
4895 *OLD_BINDINGS. */
89b578be 4896
f44b0c8e 4897static void
d4e6fecb 4898store_binding (tree id, VEC(cxx_saved_binding,gc) **old_bindings)
89b578be
MM
4899{
4900 cxx_saved_binding *saved;
89b578be 4901
39fb05d0 4902 if (!id || !IDENTIFIER_BINDING (id))
f44b0c8e 4903 return;
89b578be 4904
f44b0c8e
MM
4905 if (IDENTIFIER_MARKED (id))
4906 return;
c8094d83 4907
f44b0c8e 4908 IDENTIFIER_MARKED (id) = 1;
89b578be 4909
d4e6fecb 4910 saved = VEC_safe_push (cxx_saved_binding, gc, *old_bindings, NULL);
89b578be
MM
4911 saved->identifier = id;
4912 saved->binding = IDENTIFIER_BINDING (id);
89b578be
MM
4913 saved->real_type_value = REAL_IDENTIFIER_TYPE_VALUE (id);
4914 IDENTIFIER_BINDING (id) = NULL;
89b578be
MM
4915}
4916
f44b0c8e 4917static void
d4e6fecb 4918store_bindings (tree names, VEC(cxx_saved_binding,gc) **old_bindings)
00e8de68
GDR
4919{
4920 tree t;
00e8de68
GDR
4921
4922 timevar_push (TV_NAME_LOOKUP);
4923 for (t = names; t; t = TREE_CHAIN (t))
4924 {
4925 tree id;
00e8de68
GDR
4926
4927 if (TREE_CODE (t) == TREE_LIST)
4928 id = TREE_PURPOSE (t);
4929 else
4930 id = DECL_NAME (t);
4931
f44b0c8e 4932 store_binding (id, old_bindings);
00e8de68 4933 }
f44b0c8e 4934 timevar_pop (TV_NAME_LOOKUP);
00e8de68
GDR
4935}
4936
89b578be
MM
4937/* Like store_bindings, but NAMES is a vector of cp_class_binding
4938 objects, rather than a TREE_LIST. */
4939
f44b0c8e 4940static void
c8094d83 4941store_class_bindings (VEC(cp_class_binding,gc) *names,
d4e6fecb 4942 VEC(cxx_saved_binding,gc) **old_bindings)
89b578be
MM
4943{
4944 size_t i;
4945 cp_class_binding *cb;
89b578be
MM
4946
4947 timevar_push (TV_NAME_LOOKUP);
9ba5ff0f 4948 for (i = 0; VEC_iterate(cp_class_binding, names, i, cb); ++i)
f44b0c8e
MM
4949 store_binding (cb->identifier, old_bindings);
4950 timevar_pop (TV_NAME_LOOKUP);
89b578be
MM
4951}
4952
00e8de68 4953void
c353b8e3 4954push_to_top_level (void)
00e8de68
GDR
4955{
4956 struct saved_scope *s;
4957 struct cp_binding_level *b;
f44b0c8e
MM
4958 cxx_saved_binding *sb;
4959 size_t i;
00e8de68
GDR
4960 int need_pop;
4961
4962 timevar_push (TV_NAME_LOOKUP);
99dd239f 4963 s = GGC_CNEW (struct saved_scope);
00e8de68
GDR
4964
4965 b = scope_chain ? current_binding_level : 0;
4966
4967 /* If we're in the middle of some function, save our state. */
4968 if (cfun)
4969 {
4970 need_pop = 1;
4971 push_function_context_to (NULL_TREE);
4972 }
4973 else
4974 need_pop = 0;
4975
89b578be 4976 if (scope_chain && previous_class_level)
f44b0c8e
MM
4977 store_class_bindings (previous_class_level->class_shadowed,
4978 &s->old_bindings);
00e8de68
GDR
4979
4980 /* Have to include the global scope, because class-scope decls
4981 aren't listed anywhere useful. */
4982 for (; b; b = b->level_chain)
4983 {
4984 tree t;
4985
4986 /* Template IDs are inserted into the global level. If they were
4987 inserted into namespace level, finish_file wouldn't find them
4988 when doing pending instantiations. Therefore, don't stop at
4989 namespace level, but continue until :: . */
c353b8e3 4990 if (global_scope_p (b))
00e8de68
GDR
4991 break;
4992
f44b0c8e 4993 store_bindings (b->names, &s->old_bindings);
00e8de68
GDR
4994 /* We also need to check class_shadowed to save class-level type
4995 bindings, since pushclass doesn't fill in b->names. */
4996 if (b->kind == sk_class)
f44b0c8e 4997 store_class_bindings (b->class_shadowed, &s->old_bindings);
00e8de68
GDR
4998
4999 /* Unwind type-value slots back to top level. */
5000 for (t = b->type_shadowed; t; t = TREE_CHAIN (t))
5001 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (t), TREE_VALUE (t));
5002 }
f44b0c8e 5003
9ba5ff0f 5004 for (i = 0; VEC_iterate (cxx_saved_binding, s->old_bindings, i, sb); ++i)
f44b0c8e
MM
5005 IDENTIFIER_MARKED (sb->identifier) = 0;
5006
00e8de68 5007 s->prev = scope_chain;
00e8de68
GDR
5008 s->bindings = b;
5009 s->need_pop_function_context = need_pop;
5010 s->function_decl = current_function_decl;
b794e321 5011 s->skip_evaluation = skip_evaluation;
00e8de68
GDR
5012
5013 scope_chain = s;
5014 current_function_decl = NULL_TREE;
aff44741 5015 current_lang_base = VEC_alloc (tree, gc, 10);
00e8de68
GDR
5016 current_lang_name = lang_name_cplusplus;
5017 current_namespace = global_namespace;
c888c93b 5018 push_class_stack ();
b794e321 5019 skip_evaluation = 0;
00e8de68
GDR
5020 timevar_pop (TV_NAME_LOOKUP);
5021}
5022
00e8de68
GDR
5023void
5024pop_from_top_level (void)
5025{
5026 struct saved_scope *s = scope_chain;
5027 cxx_saved_binding *saved;
f44b0c8e 5028 size_t i;
00e8de68 5029
c8094d83 5030 timevar_push (TV_NAME_LOOKUP);
00e8de68 5031 /* Clear out class-level bindings cache. */
89b578be 5032 if (previous_class_level)
00e8de68 5033 invalidate_class_lookup_cache ();
c888c93b 5034 pop_class_stack ();
00e8de68
GDR
5035
5036 current_lang_base = 0;
5037
5038 scope_chain = s->prev;
9ba5ff0f 5039 for (i = 0; VEC_iterate (cxx_saved_binding, s->old_bindings, i, saved); ++i)
00e8de68
GDR
5040 {
5041 tree id = saved->identifier;
5042
5043 IDENTIFIER_BINDING (id) = saved->binding;
00e8de68
GDR
5044 SET_IDENTIFIER_TYPE_VALUE (id, saved->real_type_value);
5045 }
5046
5047 /* If we were in the middle of compiling a function, restore our
5048 state. */
5049 if (s->need_pop_function_context)
5050 pop_function_context_from (NULL_TREE);
5051 current_function_decl = s->function_decl;
b794e321 5052 skip_evaluation = s->skip_evaluation;
00e8de68
GDR
5053 timevar_pop (TV_NAME_LOOKUP);
5054}
5055
5056/* Pop off extraneous binding levels left over due to syntax errors.
5057
5058 We don't pop past namespaces, as they might be valid. */
5059
5060void
5061pop_everything (void)
5062{
5063 if (ENABLE_SCOPE_CHECKING)
5064 verbatim ("XXX entering pop_everything ()\n");
5065 while (!toplevel_bindings_p ())
5066 {
5067 if (current_binding_level->kind == sk_class)
5068 pop_nested_class ();
5069 else
5070 poplevel (0, 0, 0);
5071 }
5072 if (ENABLE_SCOPE_CHECKING)
5073 verbatim ("XXX leaving pop_everything ()\n");
5074}
5075
6097b0c3 5076/* Emit debugging information for using declarations and directives.
c8094d83 5077 If input tree is overloaded fn then emit debug info for all
6097b0c3
DP
5078 candidates. */
5079
98ed9dae 5080void
6097b0c3
DP
5081cp_emit_debug_info_for_using (tree t, tree context)
5082{
099f36ab
JM
5083 /* Don't try to emit any debug information if we have errors. */
5084 if (sorrycount || errorcount)
5085 return;
5086
c8094d83 5087 /* Ignore this FUNCTION_DECL if it refers to a builtin declaration
6097b0c3 5088 of a builtin function. */
c8094d83 5089 if (TREE_CODE (t) == FUNCTION_DECL
6097b0c3
DP
5090 && DECL_EXTERNAL (t)
5091 && DECL_BUILT_IN (t))
5092 return;
5093
5094 /* Do not supply context to imported_module_or_decl, if
5095 it is a global namespace. */
5096 if (context == global_namespace)
5097 context = NULL_TREE;
c8094d83 5098
6097b0c3
DP
5099 if (BASELINK_P (t))
5100 t = BASELINK_FUNCTIONS (t);
c8094d83 5101
6097b0c3
DP
5102 /* FIXME: Handle TEMPLATE_DECLs. */
5103 for (t = OVL_CURRENT (t); t; t = OVL_NEXT (t))
5104 if (TREE_CODE (t) != TEMPLATE_DECL)
5105 (*debug_hooks->imported_module_or_decl) (t, context);
98ed9dae 5106}
6097b0c3 5107
28ea4c88 5108#include "gt-cp-name-lookup.h"
This page took 1.506411 seconds and 5 git commands to generate.