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