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