1 /* Definitions for C++ name lookup routines.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
4 Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
29 #include "name-lookup.h"
32 #include "diagnostic.h"
36 /* The bindings for a particular name in a particular scope. */
38 struct scope_binding
{
42 #define EMPTY_SCOPE_BINDING { NULL_TREE, NULL_TREE }
44 static cxx_scope
*innermost_nonclass_level (void);
45 static cxx_binding
*binding_for_name (cxx_scope
*, tree
);
46 static tree
lookup_name_innermost_nonclass_level (tree
);
47 static tree
push_overloaded_decl (tree
, int, bool);
48 static bool lookup_using_namespace (tree
, struct scope_binding
*, tree
,
50 static bool qualified_lookup_using_namespace (tree
, tree
,
51 struct scope_binding
*, int);
52 static tree
lookup_type_current_level (tree
);
53 static tree
push_using_directive (tree
);
55 /* The :: namespace. */
57 tree global_namespace
;
59 /* The name of the anonymous namespace, throughout this translation
61 static GTY(()) tree anonymous_namespace_name
;
63 /* Initialize anonymous_namespace_name if necessary, and return it. */
66 get_anonymous_namespace_name(void)
68 if (!anonymous_namespace_name
)
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");
75 /* The demangler expects anonymous namespaces to be called
76 something starting with '_GLOBAL__N_'. */
77 anonymous_namespace_name
= get_identifier ("_GLOBAL__N_1");
79 return anonymous_namespace_name
;
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
86 #define ENTRY_INDEX(HASH, COUNT) (((HASH) >> 3) & ((COUNT) - 1))
88 /* A free list of "binding_entry"s awaiting for re-use. */
90 static GTY((deletable
)) binding_entry free_binding_entry
= NULL
;
92 /* Create a binding_entry object for (NAME, TYPE). */
94 static inline binding_entry
95 binding_entry_make (tree name
, tree type
)
99 if (free_binding_entry
)
101 entry
= free_binding_entry
;
102 free_binding_entry
= entry
->chain
;
105 entry
= GGC_NEW (struct binding_entry_s
);
114 /* Put ENTRY back on the free list. */
117 binding_entry_free (binding_entry entry
)
121 entry
->chain
= free_binding_entry
;
122 free_binding_entry
= entry
;
126 /* The datatype used to implement the mapping from names to types at
128 struct binding_table_s
GTY(())
130 /* Array of chains of "binding_entry"s */
131 binding_entry
* GTY((length ("%h.chain_count"))) chain
;
133 /* The number of chains in this table. This is the length of the
134 the member "chain" considered as an array. */
137 /* Number of "binding_entry"s in this table. */
141 /* Construct TABLE with an initial CHAIN_COUNT. */
144 binding_table_construct (binding_table table
, size_t chain_count
)
146 table
->chain_count
= chain_count
;
147 table
->entry_count
= 0;
148 table
->chain
= GGC_CNEWVEC (binding_entry
, table
->chain_count
);
151 /* Make TABLE's entries ready for reuse. */
154 binding_table_free (binding_table table
)
162 for (i
= 0, count
= table
->chain_count
; i
< count
; ++i
)
164 binding_entry temp
= table
->chain
[i
];
167 binding_entry entry
= temp
;
169 binding_entry_free (entry
);
171 table
->chain
[i
] = NULL
;
173 table
->entry_count
= 0;
177 /* Allocate a table with CHAIN_COUNT, assumed to be a power of two. */
179 static inline binding_table
180 binding_table_new (size_t chain_count
)
182 binding_table table
= GGC_NEW (struct binding_table_s
);
184 binding_table_construct (table
, chain_count
);
188 /* Expand TABLE to twice its current chain_count. */
191 binding_table_expand (binding_table table
)
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
;
199 binding_table_construct (table
, new_chain_count
);
200 for (i
= 0; i
< old_chain_count
; ++i
)
202 binding_entry entry
= old_chains
[i
];
203 for (; entry
!= NULL
; entry
= old_chains
[i
])
205 const unsigned int hash
= IDENTIFIER_HASH_VALUE (entry
->name
);
206 const size_t j
= ENTRY_INDEX (hash
, new_chain_count
);
208 old_chains
[i
] = entry
->chain
;
209 entry
->chain
= table
->chain
[j
];
210 table
->chain
[j
] = entry
;
213 table
->entry_count
= old_entry_count
;
216 /* Insert a binding for NAME to TYPE into TABLE. */
219 binding_table_insert (binding_table table
, tree name
, tree type
)
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
);
225 entry
->chain
= table
->chain
[i
];
226 table
->chain
[i
] = entry
;
227 ++table
->entry_count
;
229 if (3 * table
->chain_count
< 5 * table
->entry_count
)
230 binding_table_expand (table
);
233 /* Return the binding_entry, if any, that maps NAME. */
236 binding_table_find (binding_table table
, tree name
)
238 const unsigned int hash
= IDENTIFIER_HASH_VALUE (name
);
239 binding_entry entry
= table
->chain
[ENTRY_INDEX (hash
, table
->chain_count
)];
241 while (entry
!= NULL
&& entry
->name
!= name
)
242 entry
= entry
->chain
;
247 /* Apply PROC -- with DATA -- to all entries in TABLE. */
250 binding_table_foreach (binding_table table
, bt_foreach_proc proc
, void *data
)
252 const size_t chain_count
= table
->chain_count
;
255 for (i
= 0; i
< chain_count
; ++i
)
257 binding_entry entry
= table
->chain
[i
];
258 for (; entry
!= NULL
; entry
= entry
->chain
)
263 #ifndef ENABLE_SCOPE_CHECKING
264 # define ENABLE_SCOPE_CHECKING 0
266 # define ENABLE_SCOPE_CHECKING 1
269 /* A free list of "cxx_binding"s, connected by their PREVIOUS. */
271 static GTY((deletable
)) cxx_binding
*free_bindings
;
273 /* Initialize VALUE and TYPE field for BINDING, and set the PREVIOUS
277 cxx_binding_init (cxx_binding
*binding
, tree value
, tree type
)
279 binding
->value
= value
;
280 binding
->type
= type
;
281 binding
->previous
= NULL
;
284 /* (GC)-allocate a binding object with VALUE and TYPE member initialized. */
287 cxx_binding_make (tree value
, tree type
)
289 cxx_binding
*binding
;
292 binding
= free_bindings
;
293 free_bindings
= binding
->previous
;
296 binding
= GGC_NEW (cxx_binding
);
298 cxx_binding_init (binding
, value
, type
);
303 /* Put BINDING back on the free list. */
306 cxx_binding_free (cxx_binding
*binding
)
308 binding
->scope
= NULL
;
309 binding
->previous
= free_bindings
;
310 free_bindings
= binding
;
313 /* Create a new binding for NAME (with the indicated VALUE and TYPE
314 bindings) in the class scope indicated by SCOPE. */
317 new_class_binding (tree name
, tree value
, tree type
, cxx_scope
*scope
)
319 cp_class_binding
*cb
;
320 cxx_binding
*binding
;
322 if (VEC_length (cp_class_binding
, scope
->class_shadowed
))
324 cp_class_binding
*old_base
;
325 old_base
= VEC_index (cp_class_binding
, scope
->class_shadowed
, 0);
326 if (VEC_reserve (cp_class_binding
, gc
, scope
->class_shadowed
, 1))
328 /* Fixup the current bindings, as they might have moved. */
332 VEC_iterate (cp_class_binding
, scope
->class_shadowed
, i
, cb
);
336 b
= &IDENTIFIER_BINDING (cb
->identifier
);
337 while (*b
!= &old_base
[i
].base
)
338 b
= &((*b
)->previous
);
342 cb
= VEC_quick_push (cp_class_binding
, scope
->class_shadowed
, NULL
);
345 cb
= VEC_safe_push (cp_class_binding
, gc
, scope
->class_shadowed
, NULL
);
347 cb
->identifier
= name
;
349 binding
->scope
= scope
;
350 cxx_binding_init (binding
, value
, type
);
354 /* Make DECL the innermost binding for ID. The LEVEL is the binding
355 level at which this declaration is being bound. */
358 push_binding (tree id
, tree decl
, cxx_scope
* level
)
360 cxx_binding
*binding
;
362 if (level
!= class_binding_level
)
364 binding
= cxx_binding_make (decl
, NULL_TREE
);
365 binding
->scope
= level
;
368 binding
= new_class_binding (id
, decl
, /*type=*/NULL_TREE
, level
);
370 /* Now, fill in the binding information. */
371 binding
->previous
= IDENTIFIER_BINDING (id
);
372 INHERITED_VALUE_BINDING_P (binding
) = 0;
373 LOCAL_BINDING_P (binding
) = (level
!= class_binding_level
);
375 /* And put it on the front of the list of bindings for ID. */
376 IDENTIFIER_BINDING (id
) = binding
;
379 /* Remove the binding for DECL which should be the innermost binding
383 pop_binding (tree id
, tree decl
)
385 cxx_binding
*binding
;
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. */
393 /* Get the innermost binding for ID. */
394 binding
= IDENTIFIER_BINDING (id
);
396 /* The name should be bound. */
397 gcc_assert (binding
!= NULL
);
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
;
405 gcc_assert (binding
->type
== decl
);
406 binding
->type
= NULL_TREE
;
409 if (!binding
->value
&& !binding
->type
)
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
;
415 /* Add it to the free list. */
416 cxx_binding_free (binding
);
420 /* BINDING records an existing declaration for a name in the current scope.
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
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.
434 It's the responsibility of the caller to check that
435 inserting this name is valid here. Returns nonzero if the new binding
439 supplement_binding (cxx_binding
*binding
, tree decl
)
441 tree bval
= binding
->value
;
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
;
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. */
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
458 /* If BVAL is anticipated but has not yet been declared,
459 pretend it is not there at all. */
460 || (TREE_CODE (bval
) == FUNCTION_DECL
461 && DECL_ANTICIPATED (bval
)
462 && !DECL_HIDDEN_FRIEND_P (bval
)))
463 binding
->value
= decl
;
464 else if (TREE_CODE (bval
) == TYPE_DECL
&& DECL_ARTIFICIAL (bval
))
466 /* The old binding was a type name. It was placed in
467 VALUE field because it was thought, at the point it was
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
471 binding
->type
= bval
;
472 binding
->value
= decl
;
473 binding
->value_is_inherited
= false;
475 else if (TREE_CODE (bval
) == TYPE_DECL
476 && TREE_CODE (decl
) == TYPE_DECL
477 && DECL_NAME (decl
) == DECL_NAME (bval
)
478 && binding
->scope
->kind
!= sk_class
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
485 the same name. In general, this is OK because of:
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
491 type to which it already refers.
493 However, in class scopes, this rule does not apply due to the
494 stricter language in [class.mem] prohibiting redeclarations of
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:
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
))
509 duplicate_decls (decl
, binding
->value
, /*newdecl_is_friend=*/false);
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
))
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
526 error ("declaration of %q#D", decl
);
527 error ("conflicts with previous declaration %q+#D", bval
);
531 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, ok
);
534 /* Add DECL to the list of things declared in B. */
537 add_decl_to_level (tree decl
, cxx_scope
*b
)
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
)));
543 if (TREE_CODE (decl
) == NAMESPACE_DECL
544 && !DECL_NAMESPACE_ALIAS (decl
))
546 TREE_CHAIN (decl
) = b
->namespaces
;
547 b
->namespaces
= decl
;
551 /* We build up the list in reverse order, and reverse it later if
553 TREE_CHAIN (decl
) = b
->names
;
557 /* If appropriate, add decl to separate list of statics. We
558 include extern variables because they might turn out to be
559 static later. It's OK for this list to contain a few false
561 if (b
->kind
== sk_namespace
)
562 if ((TREE_CODE (decl
) == VAR_DECL
563 && (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
)))
564 || (TREE_CODE (decl
) == FUNCTION_DECL
565 && (!TREE_PUBLIC (decl
) || DECL_DECLARED_INLINE_P (decl
))))
566 VEC_safe_push (tree
, gc
, b
->static_decls
, decl
);
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
572 name already seen in the same scope). IS_FRIEND is true if X is
573 declared as a friend.
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. */
580 pushdecl_maybe_friend (tree x
, bool is_friend
)
584 int need_new_binding
;
586 timevar_push (TV_NAME_LOOKUP
);
588 if (x
== error_mark_node
)
589 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, error_mark_node
);
591 need_new_binding
= 1;
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. */
599 if (current_function_decl
&& x
!= current_function_decl
600 /* A local declaration for a function doesn't constitute
602 && TREE_CODE (x
) != FUNCTION_DECL
603 /* A local declaration for an `extern' variable is in the
604 scope of the current namespace, not the current
606 && !(TREE_CODE (x
) == VAR_DECL
&& DECL_EXTERNAL (x
))
607 && !DECL_CONTEXT (x
))
608 DECL_CONTEXT (x
) = current_function_decl
;
610 /* If this is the declaration for a namespace-scope function,
611 but the declaration itself is in a local scope, mark the
613 if (TREE_CODE (x
) == FUNCTION_DECL
614 && DECL_NAMESPACE_SCOPE_P (x
)
615 && current_function_decl
616 && x
!= current_function_decl
)
617 DECL_LOCAL_FUNCTION_P (x
) = 1;
620 name
= DECL_NAME (x
);
623 int different_binding_level
= 0;
625 if (TREE_CODE (name
) == TEMPLATE_ID_EXPR
)
626 name
= TREE_OPERAND (name
, 0);
628 /* In case this decl was explicitly namespace-qualified, look it
629 up in its namespace context. */
630 if (DECL_NAMESPACE_SCOPE_P (x
) && namespace_bindings_p ())
631 t
= namespace_binding (name
, DECL_CONTEXT (x
));
633 t
= lookup_name_innermost_nonclass_level (name
);
635 /* [basic.link] If there is a visible declaration of an entity
636 with linkage having the same name and type, ignoring entities
637 declared outside the innermost enclosing namespace scope, the
638 block scope declaration declares that same entity and
639 receives the linkage of the previous declaration. */
640 if (! t
&& current_function_decl
&& x
!= current_function_decl
641 && (TREE_CODE (x
) == FUNCTION_DECL
|| TREE_CODE (x
) == VAR_DECL
)
642 && DECL_EXTERNAL (x
))
644 /* Look in block scope. */
645 t
= innermost_non_namespace_value (name
);
646 /* Or in the innermost namespace. */
648 t
= namespace_binding (name
, DECL_CONTEXT (x
));
649 /* Does it have linkage? Note that if this isn't a DECL, it's an
650 OVERLOAD, which is OK. */
651 if (t
&& DECL_P (t
) && ! (TREE_STATIC (t
) || DECL_EXTERNAL (t
)))
654 different_binding_level
= 1;
657 /* If we are declaring a function, and the result of name-lookup
658 was an OVERLOAD, look for an overloaded instance that is
659 actually the same as the function we are declaring. (If
660 there is one, we have to merge our declaration with the
661 previous declaration.) */
662 if (t
&& TREE_CODE (t
) == OVERLOAD
)
666 if (TREE_CODE (x
) == FUNCTION_DECL
)
667 for (match
= t
; match
; match
= OVL_NEXT (match
))
669 if (decls_match (OVL_CURRENT (match
), x
))
673 /* Just choose one. */
677 t
= OVL_CURRENT (match
);
682 if (t
&& t
!= error_mark_node
)
684 if (different_binding_level
)
686 if (decls_match (x
, t
))
687 /* The standard only says that the local extern
688 inherits linkage from the previous decl; in
689 particular, default args are not shared. Add
690 the decl into a hash table to make sure only
691 the previous decl in this case is seen by the
694 struct cxx_int_tree_map
*h
;
697 TREE_PUBLIC (x
) = TREE_PUBLIC (t
);
699 if (cp_function_chain
->extern_decl_map
== NULL
)
700 cp_function_chain
->extern_decl_map
701 = htab_create_ggc (20, cxx_int_tree_map_hash
,
702 cxx_int_tree_map_eq
, NULL
);
704 h
= GGC_NEW (struct cxx_int_tree_map
);
705 h
->uid
= DECL_UID (x
);
707 loc
= htab_find_slot_with_hash
708 (cp_function_chain
->extern_decl_map
, h
,
710 *(struct cxx_int_tree_map
**) loc
= h
;
713 else if (TREE_CODE (t
) == PARM_DECL
)
715 gcc_assert (DECL_CONTEXT (t
));
717 /* Check for duplicate params. */
718 if (duplicate_decls (x
, t
, is_friend
))
719 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, t
);
721 else if ((DECL_EXTERN_C_FUNCTION_P (x
)
722 || DECL_FUNCTION_TEMPLATE_P (x
))
723 && is_overloaded_fn (t
))
724 /* Don't do anything just yet. */;
725 else if (t
== wchar_decl_node
)
727 if (pedantic
&& ! DECL_IN_SYSTEM_HEADER (x
))
728 pedwarn ("redeclaration of %<wchar_t%> as %qT",
731 /* Throw away the redeclaration. */
732 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, t
);
736 tree olddecl
= duplicate_decls (x
, t
, is_friend
);
738 /* If the redeclaration failed, we can stop at this
740 if (olddecl
== error_mark_node
)
741 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, error_mark_node
);
745 if (TREE_CODE (t
) == TYPE_DECL
)
746 SET_IDENTIFIER_TYPE_VALUE (name
, TREE_TYPE (t
));
748 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, t
);
750 else if (DECL_MAIN_P (x
) && TREE_CODE (t
) == FUNCTION_DECL
)
752 /* A redeclaration of main, but not a duplicate of the
757 This function shall not be overloaded. */
758 error ("invalid redeclaration of %q+D", t
);
760 /* We don't try to push this declaration since that
762 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, x
);
767 if (TREE_CODE (x
) == FUNCTION_DECL
|| DECL_FUNCTION_TEMPLATE_P (x
))
768 check_default_args (x
);
770 check_template_shadow (x
);
772 /* If this is a function conjured up by the back end, massage it
773 so it looks friendly. */
774 if (DECL_NON_THUNK_FUNCTION_P (x
) && ! DECL_LANG_SPECIFIC (x
))
776 retrofit_lang_decl (x
);
777 SET_DECL_LANGUAGE (x
, lang_c
);
780 if (DECL_NON_THUNK_FUNCTION_P (x
) && ! DECL_FUNCTION_MEMBER_P (x
))
782 t
= push_overloaded_decl (x
, PUSH_LOCAL
, is_friend
);
784 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, t
);
785 if (!namespace_bindings_p ())
786 /* We do not need to create a binding for this name;
787 push_overloaded_decl will have already done so if
789 need_new_binding
= 0;
791 else if (DECL_FUNCTION_TEMPLATE_P (x
) && DECL_NAMESPACE_SCOPE_P (x
))
793 t
= push_overloaded_decl (x
, PUSH_GLOBAL
, is_friend
);
795 add_decl_to_level (x
, NAMESPACE_LEVEL (CP_DECL_CONTEXT (t
)));
796 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, t
);
799 /* If declaring a type as a typedef, copy the type (unless we're
800 at line 0), and install this TYPE_DECL as the new type's typedef
801 name. See the extensive comment in ../c-decl.c (pushdecl). */
802 if (TREE_CODE (x
) == TYPE_DECL
)
804 tree type
= TREE_TYPE (x
);
805 if (DECL_IS_BUILTIN (x
))
807 if (TYPE_NAME (type
) == 0)
808 TYPE_NAME (type
) = x
;
810 else if (type
!= error_mark_node
&& TYPE_NAME (type
) != x
811 /* We don't want to copy the type when all we're
812 doing is making a TYPE_DECL for the purposes of
814 && (!TYPE_NAME (type
)
815 || TYPE_NAME (type
) != DECL_ABSTRACT_ORIGIN (x
)))
817 DECL_ORIGINAL_TYPE (x
) = type
;
818 type
= build_variant_type_copy (type
);
819 TYPE_STUB_DECL (type
) = TYPE_STUB_DECL (DECL_ORIGINAL_TYPE (x
));
820 TYPE_NAME (type
) = x
;
821 TREE_TYPE (x
) = type
;
824 if (type
!= error_mark_node
826 && TYPE_IDENTIFIER (type
))
827 set_identifier_type_value (DECL_NAME (x
), x
);
830 /* Multiple external decls of the same identifier ought to match.
832 We get warnings about inline functions where they are defined.
833 We get warnings about other functions from push_overloaded_decl.
835 Avoid duplicate warnings where they are used. */
836 if (TREE_PUBLIC (x
) && TREE_CODE (x
) != FUNCTION_DECL
)
840 decl
= IDENTIFIER_NAMESPACE_VALUE (name
);
841 if (decl
&& TREE_CODE (decl
) == OVERLOAD
)
842 decl
= OVL_FUNCTION (decl
);
844 if (decl
&& decl
!= error_mark_node
845 && (DECL_EXTERNAL (decl
) || TREE_PUBLIC (decl
))
846 /* If different sort of thing, we already gave an error. */
847 && TREE_CODE (decl
) == TREE_CODE (x
)
848 && !same_type_p (TREE_TYPE (x
), TREE_TYPE (decl
)))
850 pedwarn ("type mismatch with previous external decl of %q#D", x
);
851 pedwarn ("previous external decl of %q+#D", decl
);
855 if (TREE_CODE (x
) == FUNCTION_DECL
857 && !flag_friend_injection
)
859 /* This is a new declaration of a friend function, so hide
860 it from ordinary function lookup. */
861 DECL_ANTICIPATED (x
) = 1;
862 DECL_HIDDEN_FRIEND_P (x
) = 1;
865 /* This name is new in its binding level.
866 Install the new declaration and return it. */
867 if (namespace_bindings_p ())
869 /* Install a global value. */
871 /* If the first global decl has external linkage,
872 warn if we later see static one. */
873 if (IDENTIFIER_GLOBAL_VALUE (name
) == NULL_TREE
&& TREE_PUBLIC (x
))
874 TREE_PUBLIC (name
) = 1;
876 /* Bind the name for the entity. */
877 if (!(TREE_CODE (x
) == TYPE_DECL
&& DECL_ARTIFICIAL (x
)
879 && (TREE_CODE (x
) == TYPE_DECL
880 || TREE_CODE (x
) == VAR_DECL
881 || TREE_CODE (x
) == NAMESPACE_DECL
882 || TREE_CODE (x
) == CONST_DECL
883 || TREE_CODE (x
) == TEMPLATE_DECL
))
884 SET_IDENTIFIER_NAMESPACE_VALUE (name
, x
);
886 /* If new decl is `static' and an `extern' was seen previously,
888 if (x
!= NULL_TREE
&& t
!= NULL_TREE
&& decls_match (x
, t
))
889 warn_extern_redeclared_static (x
, t
);
893 /* Here to install a non-global value. */
894 tree oldlocal
= innermost_non_namespace_value (name
);
895 tree oldglobal
= IDENTIFIER_NAMESPACE_VALUE (name
);
897 if (need_new_binding
)
899 push_local_binding (name
, x
, 0);
900 /* Because push_local_binding will hook X on to the
901 current_binding_level's name list, we don't want to
902 do that again below. */
903 need_new_binding
= 0;
906 /* If this is a TYPE_DECL, push it into the type value slot. */
907 if (TREE_CODE (x
) == TYPE_DECL
)
908 set_identifier_type_value (name
, x
);
910 /* Clear out any TYPE_DECL shadowed by a namespace so that
911 we won't think this is a type. The C struct hack doesn't
912 go through namespaces. */
913 if (TREE_CODE (x
) == NAMESPACE_DECL
)
914 set_identifier_type_value (name
, NULL_TREE
);
921 && TREE_CODE (oldlocal
) == VAR_DECL
922 && DECL_DEAD_FOR_LOCAL (oldlocal
))
923 oldlocal
= DECL_SHADOWED_FOR_VAR (oldlocal
);
925 if (oldlocal
== NULL_TREE
)
926 oldlocal
= IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (d
));
929 /* If this is an extern function declaration, see if we
930 have a global definition or declaration for the function. */
931 if (oldlocal
== NULL_TREE
933 && oldglobal
!= NULL_TREE
934 && TREE_CODE (x
) == FUNCTION_DECL
935 && TREE_CODE (oldglobal
) == FUNCTION_DECL
)
937 /* We have one. Their types must agree. */
938 if (decls_match (x
, oldglobal
))
942 warning (0, "extern declaration of %q#D doesn't match", x
);
943 warning (0, "global declaration %q+#D", oldglobal
);
946 /* If we have a local external declaration,
947 and no file-scope declaration has yet been seen,
948 then if we later have a file-scope decl it must not be static. */
949 if (oldlocal
== NULL_TREE
950 && oldglobal
== NULL_TREE
953 TREE_PUBLIC (name
) = 1;
955 /* Warn if shadowing an argument at the top level of the body. */
956 if (oldlocal
!= NULL_TREE
&& !DECL_EXTERNAL (x
)
957 /* Inline decls shadow nothing. */
958 && !DECL_FROM_INLINE (x
)
959 && TREE_CODE (oldlocal
) == PARM_DECL
960 /* Don't check the `this' parameter. */
961 && !DECL_ARTIFICIAL (oldlocal
))
965 /* Don't complain if it's from an enclosing function. */
966 if (DECL_CONTEXT (oldlocal
) == current_function_decl
967 && TREE_CODE (x
) != PARM_DECL
)
969 /* Go to where the parms should be and see if we find
971 struct cp_binding_level
*b
= current_binding_level
->level_chain
;
973 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl
))
974 /* Skip the ctor/dtor cleanup level. */
978 if (b
->kind
== sk_function_parms
)
980 error ("declaration of %q#D shadows a parameter", x
);
985 if (warn_shadow
&& !err
)
987 warning (OPT_Wshadow
, "declaration of %q#D shadows a parameter", x
);
988 warning (OPT_Wshadow
, "%Jshadowed declaration is here", oldlocal
);
992 /* Maybe warn if shadowing something else. */
993 else if (warn_shadow
&& !DECL_EXTERNAL (x
)
994 /* No shadow warnings for internally generated vars. */
995 && ! DECL_ARTIFICIAL (x
)
996 /* No shadow warnings for vars made for inlining. */
997 && ! DECL_FROM_INLINE (x
))
1001 if (current_class_ptr
)
1002 member
= lookup_member (current_class_type
,
1005 /*want_type=*/false);
1009 if (member
&& !TREE_STATIC (member
))
1011 /* Location of previous decl is not useful in this case. */
1012 warning (OPT_Wshadow
, "declaration of %qD shadows a member of 'this'",
1015 else if (oldlocal
!= NULL_TREE
1016 && TREE_CODE (oldlocal
) == VAR_DECL
)
1018 warning (OPT_Wshadow
, "declaration of %qD shadows a previous local", x
);
1019 warning (OPT_Wshadow
, "%Jshadowed declaration is here", oldlocal
);
1021 else if (oldglobal
!= NULL_TREE
1022 && TREE_CODE (oldglobal
) == VAR_DECL
)
1023 /* XXX shadow warnings in outer-more namespaces */
1025 warning (OPT_Wshadow
, "declaration of %qD shadows a global declaration",
1027 warning (OPT_Wshadow
, "%Jshadowed declaration is here", oldglobal
);
1032 if (TREE_CODE (x
) == VAR_DECL
)
1033 maybe_register_incomplete_var (x
);
1036 if (need_new_binding
)
1037 add_decl_to_level (x
,
1038 DECL_NAMESPACE_SCOPE_P (x
)
1039 ? NAMESPACE_LEVEL (CP_DECL_CONTEXT (x
))
1040 : current_binding_level
);
1042 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, x
);
1045 /* Record a decl-node X as belonging to the current lexical scope. */
1050 return pushdecl_maybe_friend (x
, false);
1053 /* Enter DECL into the symbol table, if that's appropriate. Returns
1054 DECL, or a modified version thereof. */
1057 maybe_push_decl (tree decl
)
1059 tree type
= TREE_TYPE (decl
);
1061 /* Add this decl to the current binding level, but not if it comes
1062 from another scope, e.g. a static member variable. TEM may equal
1063 DECL or it may be a previous decl of the same name. */
1064 if (decl
== error_mark_node
1065 || (TREE_CODE (decl
) != PARM_DECL
1066 && DECL_CONTEXT (decl
) != NULL_TREE
1067 /* Definitions of namespace members outside their namespace are
1069 && TREE_CODE (DECL_CONTEXT (decl
)) != NAMESPACE_DECL
)
1070 || (TREE_CODE (decl
) == TEMPLATE_DECL
&& !namespace_bindings_p ())
1071 || TREE_CODE (type
) == UNKNOWN_TYPE
1072 /* The declaration of a template specialization does not affect
1073 the functions available for overload resolution, so we do not
1075 || (TREE_CODE (decl
) == FUNCTION_DECL
1076 && DECL_TEMPLATE_SPECIALIZATION (decl
)))
1079 return pushdecl (decl
);
1082 /* Bind DECL to ID in the current_binding_level, assumed to be a local
1083 binding level. If PUSH_USING is set in FLAGS, we know that DECL
1084 doesn't really belong to this binding level, that it got here
1085 through a using-declaration. */
1088 push_local_binding (tree id
, tree decl
, int flags
)
1090 struct cp_binding_level
*b
;
1092 /* Skip over any local classes. This makes sense if we call
1093 push_local_binding with a friend decl of a local class. */
1094 b
= innermost_nonclass_level ();
1096 if (lookup_name_innermost_nonclass_level (id
))
1098 /* Supplement the existing binding. */
1099 if (!supplement_binding (IDENTIFIER_BINDING (id
), decl
))
1100 /* It didn't work. Something else must be bound at this
1101 level. Do not add DECL to the list of things to pop
1106 /* Create a new binding. */
1107 push_binding (id
, decl
, b
);
1109 if (TREE_CODE (decl
) == OVERLOAD
|| (flags
& PUSH_USING
))
1110 /* We must put the OVERLOAD into a TREE_LIST since the
1111 TREE_CHAIN of an OVERLOAD is already used. Similarly for
1112 decls that got here through a using-declaration. */
1113 decl
= build_tree_list (NULL_TREE
, decl
);
1115 /* And put DECL on the list of things declared by the current
1117 add_decl_to_level (decl
, b
);
1120 /* Check to see whether or not DECL is a variable that would have been
1121 in scope under the ARM, but is not in scope under the ANSI/ISO
1122 standard. If so, issue an error message. If name lookup would
1123 work in both cases, but return a different result, this function
1124 returns the result of ANSI/ISO lookup. Otherwise, it returns
1128 check_for_out_of_scope_variable (tree decl
)
1132 /* We only care about out of scope variables. */
1133 if (!(TREE_CODE (decl
) == VAR_DECL
&& DECL_DEAD_FOR_LOCAL (decl
)))
1136 shadowed
= DECL_HAS_SHADOWED_FOR_VAR_P (decl
)
1137 ? DECL_SHADOWED_FOR_VAR (decl
) : NULL_TREE
;
1138 while (shadowed
!= NULL_TREE
&& TREE_CODE (shadowed
) == VAR_DECL
1139 && DECL_DEAD_FOR_LOCAL (shadowed
))
1140 shadowed
= DECL_HAS_SHADOWED_FOR_VAR_P (shadowed
)
1141 ? DECL_SHADOWED_FOR_VAR (shadowed
) : NULL_TREE
;
1143 shadowed
= IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (decl
));
1146 if (!DECL_ERROR_REPORTED (decl
))
1148 warning (0, "name lookup of %qD changed", DECL_NAME (decl
));
1149 warning (0, " matches this %q+D under ISO standard rules",
1151 warning (0, " matches this %q+D under old rules", decl
);
1152 DECL_ERROR_REPORTED (decl
) = 1;
1157 /* If we have already complained about this declaration, there's no
1158 need to do it again. */
1159 if (DECL_ERROR_REPORTED (decl
))
1162 DECL_ERROR_REPORTED (decl
) = 1;
1164 if (TREE_TYPE (decl
) == error_mark_node
)
1167 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl
)))
1169 error ("name lookup of %qD changed for new ISO %<for%> scoping",
1171 error (" cannot use obsolete binding at %q+D because "
1172 "it has a destructor", decl
);
1173 return error_mark_node
;
1177 pedwarn ("name lookup of %qD changed for new ISO %<for%> scoping",
1179 pedwarn (" using obsolete binding at %q+D", decl
);
1185 /* true means unconditionally make a BLOCK for the next level pushed. */
1187 static bool keep_next_level_flag
;
1189 static int binding_depth
= 0;
1190 static int is_class_level
= 0;
1197 for (i
= 0; i
< depth
* 2; i
++)
1201 /* Return a string describing the kind of SCOPE we have. */
1203 cxx_scope_descriptor (cxx_scope
*scope
)
1205 /* The order of this table must match the "scope_kind"
1207 static const char* scope_kind_names
[] = {
1213 "function-parameter-scope",
1216 "template-parameter-scope",
1217 "template-explicit-spec-scope"
1219 const scope_kind kind
= scope
->explicit_spec_p
1220 ? sk_template_spec
: scope
->kind
;
1222 return scope_kind_names
[kind
];
1225 /* Output a debugging information about SCOPE when performing
1228 cxx_scope_debug (cxx_scope
*scope
, int line
, const char *action
)
1230 const char *desc
= cxx_scope_descriptor (scope
);
1231 if (scope
->this_entity
)
1232 verbatim ("%s %s(%E) %p %d\n", action
, desc
,
1233 scope
->this_entity
, (void *) scope
, line
);
1235 verbatim ("%s %s %p %d\n", action
, desc
, (void *) scope
, line
);
1238 /* Return the estimated initial size of the hashtable of a NAMESPACE
1241 static inline size_t
1242 namespace_scope_ht_size (tree ns
)
1244 tree name
= DECL_NAME (ns
);
1246 return name
== std_identifier
1247 ? NAMESPACE_STD_HT_SIZE
1248 : (name
== global_scope_name
1249 ? GLOBAL_SCOPE_HT_SIZE
1250 : NAMESPACE_ORDINARY_HT_SIZE
);
1253 /* A chain of binding_level structures awaiting reuse. */
1255 static GTY((deletable
)) struct cp_binding_level
*free_binding_level
;
1257 /* Insert SCOPE as the innermost binding level. */
1260 push_binding_level (struct cp_binding_level
*scope
)
1262 /* Add it to the front of currently active scopes stack. */
1263 scope
->level_chain
= current_binding_level
;
1264 current_binding_level
= scope
;
1265 keep_next_level_flag
= false;
1267 if (ENABLE_SCOPE_CHECKING
)
1269 scope
->binding_depth
= binding_depth
;
1270 indent (binding_depth
);
1271 cxx_scope_debug (scope
, input_line
, "push");
1277 /* Create a new KIND scope and make it the top of the active scopes stack.
1278 ENTITY is the scope of the associated C++ entity (namespace, class,
1279 function); it is NULL otherwise. */
1282 begin_scope (scope_kind kind
, tree entity
)
1286 /* Reuse or create a struct for this binding level. */
1287 if (!ENABLE_SCOPE_CHECKING
&& free_binding_level
)
1289 scope
= free_binding_level
;
1290 memset (scope
, 0, sizeof (cxx_scope
));
1291 free_binding_level
= scope
->level_chain
;
1294 scope
= GGC_CNEW (cxx_scope
);
1296 scope
->this_entity
= entity
;
1297 scope
->more_cleanups_ok
= true;
1304 case sk_template_spec
:
1305 scope
->explicit_spec_p
= true;
1306 kind
= sk_template_parms
;
1308 case sk_template_parms
:
1314 case sk_function_parms
:
1316 scope
->keep
= keep_next_level_flag
;
1320 NAMESPACE_LEVEL (entity
) = scope
;
1321 scope
->static_decls
=
1322 VEC_alloc (tree
, gc
,
1323 DECL_NAME (entity
) == std_identifier
1324 || DECL_NAME (entity
) == global_scope_name
1329 /* Should not happen. */
1335 push_binding_level (scope
);
1340 /* We're about to leave current scope. Pop the top of the stack of
1341 currently active scopes. Return the enclosing scope, now active. */
1346 cxx_scope
*scope
= current_binding_level
;
1348 if (scope
->kind
== sk_namespace
&& class_binding_level
)
1349 current_binding_level
= class_binding_level
;
1351 /* We cannot leave a scope, if there are none left. */
1352 if (NAMESPACE_LEVEL (global_namespace
))
1353 gcc_assert (!global_scope_p (scope
));
1355 if (ENABLE_SCOPE_CHECKING
)
1357 indent (--binding_depth
);
1358 cxx_scope_debug (scope
, input_line
, "leave");
1359 if (is_class_level
!= (scope
== class_binding_level
))
1361 indent (binding_depth
);
1362 verbatim ("XXX is_class_level != (current_scope == class_scope)\n");
1367 #ifdef HANDLE_PRAGMA_VISIBILITY
1368 if (scope
->has_visibility
)
1372 /* Move one nesting level up. */
1373 current_binding_level
= scope
->level_chain
;
1375 /* Namespace-scopes are left most probably temporarily, not
1376 completely; they can be reopened later, e.g. in namespace-extension
1377 or any name binding activity that requires us to resume a
1378 namespace. For classes, we cache some binding levels. For other
1379 scopes, we just make the structure available for reuse. */
1380 if (scope
->kind
!= sk_namespace
1381 && scope
->kind
!= sk_class
)
1383 scope
->level_chain
= free_binding_level
;
1384 gcc_assert (!ENABLE_SCOPE_CHECKING
1385 || scope
->binding_depth
== binding_depth
);
1386 free_binding_level
= scope
;
1389 /* Find the innermost enclosing class scope, and reset
1390 CLASS_BINDING_LEVEL appropriately. */
1391 if (scope
->kind
== sk_class
)
1393 class_binding_level
= NULL
;
1394 for (scope
= current_binding_level
; scope
; scope
= scope
->level_chain
)
1395 if (scope
->kind
== sk_class
)
1397 class_binding_level
= scope
;
1402 return current_binding_level
;
1406 resume_scope (struct cp_binding_level
* b
)
1408 /* Resuming binding levels is meant only for namespaces,
1409 and those cannot nest into classes. */
1410 gcc_assert (!class_binding_level
);
1411 /* Also, resuming a non-directly nested namespace is a no-no. */
1412 gcc_assert (b
->level_chain
== current_binding_level
);
1413 current_binding_level
= b
;
1414 if (ENABLE_SCOPE_CHECKING
)
1416 b
->binding_depth
= binding_depth
;
1417 indent (binding_depth
);
1418 cxx_scope_debug (b
, input_line
, "resume");
1424 /* Return the innermost binding level that is not for a class scope. */
1427 innermost_nonclass_level (void)
1431 b
= current_binding_level
;
1432 while (b
->kind
== sk_class
)
1438 /* We're defining an object of type TYPE. If it needs a cleanup, but
1439 we're not allowed to add any more objects with cleanups to the current
1440 scope, create a new binding level. */
1443 maybe_push_cleanup_level (tree type
)
1445 if (type
!= error_mark_node
1446 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
)
1447 && current_binding_level
->more_cleanups_ok
== 0)
1449 begin_scope (sk_cleanup
, NULL
);
1450 current_binding_level
->statement_list
= push_stmt_list ();
1454 /* Nonzero if we are currently in the global binding level. */
1457 global_bindings_p (void)
1459 return global_scope_p (current_binding_level
);
1462 /* True if we are currently in a toplevel binding level. This
1463 means either the global binding level or a namespace in a toplevel
1464 binding level. Since there are no non-toplevel namespace levels,
1465 this really means any namespace or template parameter level. We
1466 also include a class whose context is toplevel. */
1469 toplevel_bindings_p (void)
1471 struct cp_binding_level
*b
= innermost_nonclass_level ();
1473 return b
->kind
== sk_namespace
|| b
->kind
== sk_template_parms
;
1476 /* True if this is a namespace scope, or if we are defining a class
1477 which is itself at namespace scope, or whose enclosing class is
1478 such a class, etc. */
1481 namespace_bindings_p (void)
1483 struct cp_binding_level
*b
= innermost_nonclass_level ();
1485 return b
->kind
== sk_namespace
;
1488 /* True if the current level needs to have a BLOCK made. */
1493 return (current_binding_level
->blocks
!= NULL_TREE
1494 || current_binding_level
->keep
1495 || current_binding_level
->kind
== sk_cleanup
1496 || current_binding_level
->names
!= NULL_TREE
);
1499 /* Returns the kind of the innermost scope. */
1502 innermost_scope_kind (void)
1504 return current_binding_level
->kind
;
1507 /* Returns true if this scope was created to store template parameters. */
1510 template_parm_scope_p (void)
1512 return innermost_scope_kind () == sk_template_parms
;
1515 /* If KEEP is true, make a BLOCK node for the next binding level,
1516 unconditionally. Otherwise, use the normal logic to decide whether
1517 or not to create a BLOCK. */
1520 keep_next_level (bool keep
)
1522 keep_next_level_flag
= keep
;
1525 /* Return the list of declarations of the current level.
1526 Note that this list is in reverse order unless/until
1527 you nreverse it; and when you do nreverse it, you must
1528 store the result back using `storedecls' or you will lose. */
1533 return current_binding_level
->names
;
1536 /* For debugging. */
1537 static int no_print_functions
= 0;
1538 static int no_print_builtins
= 0;
1541 print_binding_level (struct cp_binding_level
* lvl
)
1545 fprintf (stderr
, " blocks=%p", (void *) lvl
->blocks
);
1546 if (lvl
->more_cleanups_ok
)
1547 fprintf (stderr
, " more-cleanups-ok");
1548 if (lvl
->have_cleanups
)
1549 fprintf (stderr
, " have-cleanups");
1550 fprintf (stderr
, "\n");
1553 fprintf (stderr
, " names:\t");
1554 /* We can probably fit 3 names to a line? */
1555 for (t
= lvl
->names
; t
; t
= TREE_CHAIN (t
))
1557 if (no_print_functions
&& (TREE_CODE (t
) == FUNCTION_DECL
))
1559 if (no_print_builtins
1560 && (TREE_CODE (t
) == TYPE_DECL
)
1561 && DECL_IS_BUILTIN (t
))
1564 /* Function decls tend to have longer names. */
1565 if (TREE_CODE (t
) == FUNCTION_DECL
)
1572 fprintf (stderr
, "\n\t");
1575 print_node_brief (stderr
, "", t
, 0);
1576 if (t
== error_mark_node
)
1580 fprintf (stderr
, "\n");
1582 if (VEC_length (cp_class_binding
, lvl
->class_shadowed
))
1585 cp_class_binding
*b
;
1586 fprintf (stderr
, " class-shadowed:");
1588 VEC_iterate(cp_class_binding
, lvl
->class_shadowed
, i
, b
);
1590 fprintf (stderr
, " %s ", IDENTIFIER_POINTER (b
->identifier
));
1591 fprintf (stderr
, "\n");
1593 if (lvl
->type_shadowed
)
1595 fprintf (stderr
, " type-shadowed:");
1596 for (t
= lvl
->type_shadowed
; t
; t
= TREE_CHAIN (t
))
1598 fprintf (stderr
, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t
)));
1600 fprintf (stderr
, "\n");
1605 print_other_binding_stack (struct cp_binding_level
*stack
)
1607 struct cp_binding_level
*level
;
1608 for (level
= stack
; !global_scope_p (level
); level
= level
->level_chain
)
1610 fprintf (stderr
, "binding level %p\n", (void *) level
);
1611 print_binding_level (level
);
1616 print_binding_stack (void)
1618 struct cp_binding_level
*b
;
1619 fprintf (stderr
, "current_binding_level=%p\n"
1620 "class_binding_level=%p\n"
1621 "NAMESPACE_LEVEL (global_namespace)=%p\n",
1622 (void *) current_binding_level
, (void *) class_binding_level
,
1623 (void *) NAMESPACE_LEVEL (global_namespace
));
1624 if (class_binding_level
)
1626 for (b
= class_binding_level
; b
; b
= b
->level_chain
)
1627 if (b
== current_binding_level
)
1630 b
= class_binding_level
;
1632 b
= current_binding_level
;
1635 b
= current_binding_level
;
1636 print_other_binding_stack (b
);
1637 fprintf (stderr
, "global:\n");
1638 print_binding_level (NAMESPACE_LEVEL (global_namespace
));
1641 /* Return the type associated with id. */
1644 identifier_type_value (tree id
)
1646 timevar_push (TV_NAME_LOOKUP
);
1647 /* There is no type with that name, anywhere. */
1648 if (REAL_IDENTIFIER_TYPE_VALUE (id
) == NULL_TREE
)
1649 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, NULL_TREE
);
1650 /* This is not the type marker, but the real thing. */
1651 if (REAL_IDENTIFIER_TYPE_VALUE (id
) != global_type_node
)
1652 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, REAL_IDENTIFIER_TYPE_VALUE (id
));
1653 /* Have to search for it. It must be on the global level, now.
1654 Ask lookup_name not to return non-types. */
1655 id
= lookup_name_real (id
, 2, 1, /*block_p=*/true, 0, LOOKUP_COMPLAIN
);
1657 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, TREE_TYPE (id
));
1658 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, NULL_TREE
);
1661 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
1662 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
1665 identifier_global_value (tree t
)
1667 return IDENTIFIER_GLOBAL_VALUE (t
);
1670 /* Push a definition of struct, union or enum tag named ID. into
1671 binding_level B. DECL is a TYPE_DECL for the type. We assume that
1672 the tag ID is not already defined. */
1675 set_identifier_type_value_with_scope (tree id
, tree decl
, cxx_scope
*b
)
1679 if (b
->kind
!= sk_namespace
)
1681 /* Shadow the marker, not the real thing, so that the marker
1682 gets restored later. */
1683 tree old_type_value
= REAL_IDENTIFIER_TYPE_VALUE (id
);
1685 = tree_cons (id
, old_type_value
, b
->type_shadowed
);
1686 type
= decl
? TREE_TYPE (decl
) : NULL_TREE
;
1687 TREE_TYPE (b
->type_shadowed
) = type
;
1691 cxx_binding
*binding
=
1692 binding_for_name (NAMESPACE_LEVEL (current_namespace
), id
);
1695 supplement_binding (binding
, decl
);
1697 binding
->value
= decl
;
1699 /* Store marker instead of real type. */
1700 type
= global_type_node
;
1702 SET_IDENTIFIER_TYPE_VALUE (id
, type
);
1705 /* As set_identifier_type_value_with_scope, but using
1706 current_binding_level. */
1709 set_identifier_type_value (tree id
, tree decl
)
1711 set_identifier_type_value_with_scope (id
, decl
, current_binding_level
);
1714 /* Return the name for the constructor (or destructor) for the
1715 specified class TYPE. When given a template, this routine doesn't
1716 lose the specialization. */
1719 constructor_name_full (tree type
)
1721 return TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type
));
1724 /* Return the name for the constructor (or destructor) for the
1725 specified class. When given a template, return the plain
1726 unspecialized name. */
1729 constructor_name (tree type
)
1732 name
= constructor_name_full (type
);
1733 if (IDENTIFIER_TEMPLATE (name
))
1734 name
= IDENTIFIER_TEMPLATE (name
);
1738 /* Returns TRUE if NAME is the name for the constructor for TYPE. */
1741 constructor_name_p (tree name
, tree type
)
1748 if (TREE_CODE (name
) != IDENTIFIER_NODE
)
1751 ctor_name
= constructor_name_full (type
);
1752 if (name
== ctor_name
)
1754 if (IDENTIFIER_TEMPLATE (ctor_name
)
1755 && name
== IDENTIFIER_TEMPLATE (ctor_name
))
1760 /* Counter used to create anonymous type names. */
1762 static GTY(()) int anon_cnt
;
1764 /* Return an IDENTIFIER which can be used as a name for
1765 anonymous structs and unions. */
1768 make_anon_name (void)
1772 sprintf (buf
, ANON_AGGRNAME_FORMAT
, anon_cnt
++);
1773 return get_identifier (buf
);
1776 /* Return (from the stack of) the BINDING, if any, established at SCOPE. */
1778 static inline cxx_binding
*
1779 find_binding (cxx_scope
*scope
, cxx_binding
*binding
)
1781 timevar_push (TV_NAME_LOOKUP
);
1783 for (; binding
!= NULL
; binding
= binding
->previous
)
1784 if (binding
->scope
== scope
)
1785 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, binding
);
1787 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, (cxx_binding
*)0);
1790 /* Return the binding for NAME in SCOPE, if any. Otherwise, return NULL. */
1792 static inline cxx_binding
*
1793 cxx_scope_find_binding_for_name (cxx_scope
*scope
, tree name
)
1795 cxx_binding
*b
= IDENTIFIER_NAMESPACE_BINDINGS (name
);
1798 /* Fold-in case where NAME is used only once. */
1799 if (scope
== b
->scope
&& b
->previous
== NULL
)
1801 return find_binding (scope
, b
);
1806 /* Always returns a binding for name in scope. If no binding is
1807 found, make a new one. */
1809 static cxx_binding
*
1810 binding_for_name (cxx_scope
*scope
, tree name
)
1812 cxx_binding
*result
;
1814 result
= cxx_scope_find_binding_for_name (scope
, name
);
1817 /* Not found, make a new one. */
1818 result
= cxx_binding_make (NULL
, NULL
);
1819 result
->previous
= IDENTIFIER_NAMESPACE_BINDINGS (name
);
1820 result
->scope
= scope
;
1821 result
->is_local
= false;
1822 result
->value_is_inherited
= false;
1823 IDENTIFIER_NAMESPACE_BINDINGS (name
) = result
;
1827 /* Insert another USING_DECL into the current binding level, returning
1828 this declaration. If this is a redeclaration, do nothing, and
1829 return NULL_TREE if this not in namespace scope (in namespace
1830 scope, a using decl might extend any previous bindings). */
1833 push_using_decl (tree scope
, tree name
)
1837 timevar_push (TV_NAME_LOOKUP
);
1838 gcc_assert (TREE_CODE (scope
) == NAMESPACE_DECL
);
1839 gcc_assert (TREE_CODE (name
) == IDENTIFIER_NODE
);
1840 for (decl
= current_binding_level
->usings
; decl
; decl
= TREE_CHAIN (decl
))
1841 if (USING_DECL_SCOPE (decl
) == scope
&& DECL_NAME (decl
) == name
)
1844 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
,
1845 namespace_bindings_p () ? decl
: NULL_TREE
);
1846 decl
= build_lang_decl (USING_DECL
, name
, NULL_TREE
);
1847 USING_DECL_SCOPE (decl
) = scope
;
1848 TREE_CHAIN (decl
) = current_binding_level
->usings
;
1849 current_binding_level
->usings
= decl
;
1850 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, decl
);
1853 /* Same as pushdecl, but define X in binding-level LEVEL. We rely on the
1854 caller to set DECL_CONTEXT properly. */
1857 pushdecl_with_scope (tree x
, cxx_scope
*level
, bool is_friend
)
1859 struct cp_binding_level
*b
;
1860 tree function_decl
= current_function_decl
;
1862 timevar_push (TV_NAME_LOOKUP
);
1863 current_function_decl
= NULL_TREE
;
1864 if (level
->kind
== sk_class
)
1866 b
= class_binding_level
;
1867 class_binding_level
= level
;
1868 pushdecl_class_level (x
);
1869 class_binding_level
= b
;
1873 b
= current_binding_level
;
1874 current_binding_level
= level
;
1875 x
= pushdecl_maybe_friend (x
, is_friend
);
1876 current_binding_level
= b
;
1878 current_function_decl
= function_decl
;
1879 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, x
);
1882 /* DECL is a FUNCTION_DECL for a non-member function, which may have
1883 other definitions already in place. We get around this by making
1884 the value of the identifier point to a list of all the things that
1885 want to be referenced by that name. It is then up to the users of
1886 that name to decide what to do with that list.
1888 DECL may also be a TEMPLATE_DECL, with a FUNCTION_DECL in its
1889 DECL_TEMPLATE_RESULT. It is dealt with the same way.
1891 FLAGS is a bitwise-or of the following values:
1892 PUSH_LOCAL: Bind DECL in the current scope, rather than at
1894 PUSH_USING: DECL is being pushed as the result of a using
1897 IS_FRIEND is true if this is a friend declaration.
1899 The value returned may be a previous declaration if we guessed wrong
1900 about what language DECL should belong to (C or C++). Otherwise,
1901 it's always DECL (and never something that's not a _DECL). */
1904 push_overloaded_decl (tree decl
, int flags
, bool is_friend
)
1906 tree name
= DECL_NAME (decl
);
1909 int doing_global
= (namespace_bindings_p () || !(flags
& PUSH_LOCAL
));
1911 timevar_push (TV_NAME_LOOKUP
);
1913 old
= namespace_binding (name
, DECL_CONTEXT (decl
));
1915 old
= lookup_name_innermost_nonclass_level (name
);
1919 if (TREE_CODE (old
) == TYPE_DECL
&& DECL_ARTIFICIAL (old
))
1921 tree t
= TREE_TYPE (old
);
1922 if (IS_AGGR_TYPE (t
) && warn_shadow
1923 && (! DECL_IN_SYSTEM_HEADER (decl
)
1924 || ! DECL_IN_SYSTEM_HEADER (old
)))
1925 warning (0, "%q#D hides constructor for %q#T", decl
, t
);
1928 else if (is_overloaded_fn (old
))
1932 for (tmp
= old
; tmp
; tmp
= OVL_NEXT (tmp
))
1934 tree fn
= OVL_CURRENT (tmp
);
1937 if (TREE_CODE (tmp
) == OVERLOAD
&& OVL_USED (tmp
)
1938 && !(flags
& PUSH_USING
)
1939 && compparms (TYPE_ARG_TYPES (TREE_TYPE (fn
)),
1940 TYPE_ARG_TYPES (TREE_TYPE (decl
)))
1941 && ! decls_match (fn
, decl
))
1942 error ("%q#D conflicts with previous using declaration %q#D",
1945 dup
= duplicate_decls (decl
, fn
, is_friend
);
1946 /* If DECL was a redeclaration of FN -- even an invalid
1947 one -- pass that information along to our caller. */
1948 if (dup
== fn
|| dup
== error_mark_node
)
1949 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, dup
);
1952 /* We don't overload implicit built-ins. duplicate_decls()
1953 may fail to merge the decls if the new decl is e.g. a
1954 template function. */
1955 if (TREE_CODE (old
) == FUNCTION_DECL
1956 && DECL_ANTICIPATED (old
)
1957 && !DECL_HIDDEN_FRIEND_P (old
))
1960 else if (old
== error_mark_node
)
1961 /* Ignore the undefined symbol marker. */
1965 error ("previous non-function declaration %q+#D", old
);
1966 error ("conflicts with function declaration %q#D", decl
);
1967 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, decl
);
1971 if (old
|| TREE_CODE (decl
) == TEMPLATE_DECL
1972 /* If it's a using declaration, we always need to build an OVERLOAD,
1973 because it's the only way to remember that the declaration comes
1974 from 'using', and have the lookup behave correctly. */
1975 || (flags
& PUSH_USING
))
1977 if (old
&& TREE_CODE (old
) != OVERLOAD
)
1978 new_binding
= ovl_cons (decl
, ovl_cons (old
, NULL_TREE
));
1980 new_binding
= ovl_cons (decl
, old
);
1981 if (flags
& PUSH_USING
)
1982 OVL_USED (new_binding
) = 1;
1985 /* NAME is not ambiguous. */
1989 set_namespace_binding (name
, current_namespace
, new_binding
);
1992 /* We only create an OVERLOAD if there was a previous binding at
1993 this level, or if decl is a template. In the former case, we
1994 need to remove the old binding and replace it with the new
1995 binding. We must also run through the NAMES on the binding
1996 level where the name was bound to update the chain. */
1998 if (TREE_CODE (new_binding
) == OVERLOAD
&& old
)
2002 for (d
= &IDENTIFIER_BINDING (name
)->scope
->names
;
2004 d
= &TREE_CHAIN (*d
))
2006 || (TREE_CODE (*d
) == TREE_LIST
2007 && TREE_VALUE (*d
) == old
))
2009 if (TREE_CODE (*d
) == TREE_LIST
)
2010 /* Just replace the old binding with the new. */
2011 TREE_VALUE (*d
) = new_binding
;
2013 /* Build a TREE_LIST to wrap the OVERLOAD. */
2014 *d
= tree_cons (NULL_TREE
, new_binding
,
2017 /* And update the cxx_binding node. */
2018 IDENTIFIER_BINDING (name
)->value
= new_binding
;
2019 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, decl
);
2022 /* We should always find a previous binding in this case. */
2026 /* Install the new binding. */
2027 push_local_binding (name
, new_binding
, flags
);
2030 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, decl
);
2033 /* Check a non-member using-declaration. Return the name and scope
2034 being used, and the USING_DECL, or NULL_TREE on failure. */
2037 validate_nonmember_using_decl (tree decl
, tree scope
, tree name
)
2039 /* [namespace.udecl]
2040 A using-declaration for a class member shall be a
2041 member-declaration. */
2044 error ("%qT is not a namespace", scope
);
2047 else if (scope
== error_mark_node
)
2050 if (TREE_CODE (decl
) == TEMPLATE_ID_EXPR
)
2053 A using-declaration shall not name a template-id. */
2054 error ("a using-declaration cannot specify a template-id. "
2055 "Try %<using %D%>", name
);
2059 if (TREE_CODE (decl
) == NAMESPACE_DECL
)
2061 error ("namespace %qD not allowed in using-declaration", decl
);
2065 if (TREE_CODE (decl
) == SCOPE_REF
)
2067 /* It's a nested name with template parameter dependent scope.
2068 This can only be using-declaration for class member. */
2069 error ("%qT is not a namespace", TREE_OPERAND (decl
, 0));
2073 if (is_overloaded_fn (decl
))
2074 decl
= get_first_fn (decl
);
2076 gcc_assert (DECL_P (decl
));
2078 /* Make a USING_DECL. */
2079 return push_using_decl (scope
, name
);
2082 /* Process local and global using-declarations. */
2085 do_nonmember_using_decl (tree scope
, tree name
, tree oldval
, tree oldtype
,
2086 tree
*newval
, tree
*newtype
)
2088 struct scope_binding decls
= EMPTY_SCOPE_BINDING
;
2090 *newval
= *newtype
= NULL_TREE
;
2091 if (!qualified_lookup_using_namespace (name
, scope
, &decls
, 0))
2095 if (!decls
.value
&& !decls
.type
)
2097 error ("%qD not declared", name
);
2101 /* Shift the old and new bindings around so we're comparing class and
2102 enumeration names to each other. */
2103 if (oldval
&& DECL_IMPLICIT_TYPEDEF_P (oldval
))
2109 if (decls
.value
&& DECL_IMPLICIT_TYPEDEF_P (decls
.value
))
2111 decls
.type
= decls
.value
;
2112 decls
.value
= NULL_TREE
;
2115 /* It is impossible to overload a built-in function; any explicit
2116 declaration eliminates the built-in declaration. So, if OLDVAL
2117 is a built-in, then we can just pretend it isn't there. */
2119 && TREE_CODE (oldval
) == FUNCTION_DECL
2120 && DECL_ANTICIPATED (oldval
)
2121 && !DECL_HIDDEN_FRIEND_P (oldval
))
2126 /* Check for using functions. */
2127 if (is_overloaded_fn (decls
.value
))
2131 if (oldval
&& !is_overloaded_fn (oldval
))
2133 error ("%qD is already declared in this scope", name
);
2138 for (tmp
= decls
.value
; tmp
; tmp
= OVL_NEXT (tmp
))
2140 tree new_fn
= OVL_CURRENT (tmp
);
2142 /* [namespace.udecl]
2144 If a function declaration in namespace scope or block
2145 scope has the same name and the same parameter types as a
2146 function introduced by a using declaration the program is
2148 for (tmp1
= oldval
; tmp1
; tmp1
= OVL_NEXT (tmp1
))
2150 tree old_fn
= OVL_CURRENT (tmp1
);
2152 if (new_fn
== old_fn
)
2153 /* The function already exists in the current namespace. */
2155 else if (OVL_USED (tmp1
))
2156 continue; /* this is a using decl */
2157 else if (compparms (TYPE_ARG_TYPES (TREE_TYPE (new_fn
)),
2158 TYPE_ARG_TYPES (TREE_TYPE (old_fn
))))
2160 gcc_assert (!DECL_ANTICIPATED (old_fn
)
2161 || DECL_HIDDEN_FRIEND_P (old_fn
));
2163 /* There was already a non-using declaration in
2164 this scope with the same parameter types. If both
2165 are the same extern "C" functions, that's ok. */
2166 if (decls_match (new_fn
, old_fn
))
2170 error ("%qD is already declared in this scope", name
);
2176 /* If we broke out of the loop, there's no reason to add
2177 this function to the using declarations for this
2182 /* If we are adding to an existing OVERLOAD, then we no
2183 longer know the type of the set of functions. */
2184 if (*newval
&& TREE_CODE (*newval
) == OVERLOAD
)
2185 TREE_TYPE (*newval
) = unknown_type_node
;
2186 /* Add this new function to the set. */
2187 *newval
= build_overload (OVL_CURRENT (tmp
), *newval
);
2188 /* If there is only one function, then we use its type. (A
2189 using-declaration naming a single function can be used in
2190 contexts where overload resolution cannot be
2192 if (TREE_CODE (*newval
) != OVERLOAD
)
2194 *newval
= ovl_cons (*newval
, NULL_TREE
);
2195 TREE_TYPE (*newval
) = TREE_TYPE (OVL_CURRENT (tmp
));
2197 OVL_USED (*newval
) = 1;
2202 *newval
= decls
.value
;
2203 if (oldval
&& !decls_match (*newval
, oldval
))
2204 error ("%qD is already declared in this scope", name
);
2210 if (decls
.type
&& TREE_CODE (decls
.type
) == TREE_LIST
)
2212 error ("reference to %qD is ambiguous", name
);
2213 print_candidates (decls
.type
);
2217 *newtype
= decls
.type
;
2218 if (oldtype
&& *newtype
&& !decls_match (oldtype
, *newtype
))
2219 error ("%qD is already declared in this scope", name
);
2222 /* If *newval is empty, shift any class or enumeration name down. */
2226 *newtype
= NULL_TREE
;
2230 /* Process a using-declaration at function scope. */
2233 do_local_using_decl (tree decl
, tree scope
, tree name
)
2235 tree oldval
, oldtype
, newval
, newtype
;
2236 tree orig_decl
= decl
;
2238 decl
= validate_nonmember_using_decl (decl
, scope
, name
);
2239 if (decl
== NULL_TREE
)
2242 if (building_stmt_tree ()
2243 && at_function_scope_p ())
2244 add_decl_expr (decl
);
2246 oldval
= lookup_name_innermost_nonclass_level (name
);
2247 oldtype
= lookup_type_current_level (name
);
2249 do_nonmember_using_decl (scope
, name
, oldval
, oldtype
, &newval
, &newtype
);
2253 if (is_overloaded_fn (newval
))
2257 /* We only need to push declarations for those functions
2258 that were not already bound in the current level.
2259 The old value might be NULL_TREE, it might be a single
2260 function, or an OVERLOAD. */
2261 if (oldval
&& TREE_CODE (oldval
) == OVERLOAD
)
2262 term
= OVL_FUNCTION (oldval
);
2265 for (fn
= newval
; fn
&& OVL_CURRENT (fn
) != term
;
2267 push_overloaded_decl (OVL_CURRENT (fn
),
2268 PUSH_LOCAL
| PUSH_USING
,
2272 push_local_binding (name
, newval
, PUSH_USING
);
2276 push_local_binding (name
, newtype
, PUSH_USING
);
2277 set_identifier_type_value (name
, newtype
);
2280 /* Emit debug info. */
2281 if (!processing_template_decl
)
2282 cp_emit_debug_info_for_using (orig_decl
, current_scope());
2285 /* Returns true if ROOT (a namespace, class, or function) encloses
2286 CHILD. CHILD may be either a class type or a namespace. */
2289 is_ancestor (tree root
, tree child
)
2291 gcc_assert ((TREE_CODE (root
) == NAMESPACE_DECL
2292 || TREE_CODE (root
) == FUNCTION_DECL
2293 || CLASS_TYPE_P (root
)));
2294 gcc_assert ((TREE_CODE (child
) == NAMESPACE_DECL
2295 || CLASS_TYPE_P (child
)));
2297 /* The global namespace encloses everything. */
2298 if (root
== global_namespace
)
2303 /* If we've run out of scopes, stop. */
2306 /* If we've reached the ROOT, it encloses CHILD. */
2309 /* Go out one level. */
2311 child
= TYPE_NAME (child
);
2312 child
= DECL_CONTEXT (child
);
2316 /* Enter the class or namespace scope indicated by T suitable for name
2317 lookup. T can be arbitrary scope, not necessary nested inside the
2318 current scope. Returns a non-null scope to pop iff pop_scope
2319 should be called later to exit this scope. */
2324 if (TREE_CODE (t
) == NAMESPACE_DECL
)
2325 push_decl_namespace (t
);
2326 else if (CLASS_TYPE_P (t
))
2328 if (!at_class_scope_p ()
2329 || !same_type_p (current_class_type
, t
))
2330 push_nested_class (t
);
2332 /* T is the same as the current scope. There is therefore no
2333 need to re-enter the scope. Since we are not actually
2334 pushing a new scope, our caller should not call
2342 /* Leave scope pushed by push_scope. */
2347 if (TREE_CODE (t
) == NAMESPACE_DECL
)
2348 pop_decl_namespace ();
2349 else if CLASS_TYPE_P (t
)
2350 pop_nested_class ();
2353 /* Subroutine of push_inner_scope. */
2356 push_inner_scope_r (tree outer
, tree inner
)
2361 || (TREE_CODE (inner
) != NAMESPACE_DECL
&& !CLASS_TYPE_P (inner
)))
2364 prev
= CP_DECL_CONTEXT (TREE_CODE (inner
) == NAMESPACE_DECL
? inner
: TYPE_NAME (inner
));
2366 push_inner_scope_r (outer
, prev
);
2367 if (TREE_CODE (inner
) == NAMESPACE_DECL
)
2369 struct cp_binding_level
*save_template_parm
= 0;
2370 /* Temporary take out template parameter scopes. They are saved
2371 in reversed order in save_template_parm. */
2372 while (current_binding_level
->kind
== sk_template_parms
)
2374 struct cp_binding_level
*b
= current_binding_level
;
2375 current_binding_level
= b
->level_chain
;
2376 b
->level_chain
= save_template_parm
;
2377 save_template_parm
= b
;
2380 resume_scope (NAMESPACE_LEVEL (inner
));
2381 current_namespace
= inner
;
2383 /* Restore template parameter scopes. */
2384 while (save_template_parm
)
2386 struct cp_binding_level
*b
= save_template_parm
;
2387 save_template_parm
= b
->level_chain
;
2388 b
->level_chain
= current_binding_level
;
2389 current_binding_level
= b
;
2396 /* Enter the scope INNER from current scope. INNER must be a scope
2397 nested inside current scope. This works with both name lookup and
2398 pushing name into scope. In case a template parameter scope is present,
2399 namespace is pushed under the template parameter scope according to
2400 name lookup rule in 14.6.1/6.
2402 Return the former current scope suitable for pop_inner_scope. */
2405 push_inner_scope (tree inner
)
2407 tree outer
= current_scope ();
2409 outer
= current_namespace
;
2411 push_inner_scope_r (outer
, inner
);
2415 /* Exit the current scope INNER back to scope OUTER. */
2418 pop_inner_scope (tree outer
, tree inner
)
2421 || (TREE_CODE (inner
) != NAMESPACE_DECL
&& !CLASS_TYPE_P (inner
)))
2424 while (outer
!= inner
)
2426 if (TREE_CODE (inner
) == NAMESPACE_DECL
)
2428 struct cp_binding_level
*save_template_parm
= 0;
2429 /* Temporary take out template parameter scopes. They are saved
2430 in reversed order in save_template_parm. */
2431 while (current_binding_level
->kind
== sk_template_parms
)
2433 struct cp_binding_level
*b
= current_binding_level
;
2434 current_binding_level
= b
->level_chain
;
2435 b
->level_chain
= save_template_parm
;
2436 save_template_parm
= b
;
2441 /* Restore template parameter scopes. */
2442 while (save_template_parm
)
2444 struct cp_binding_level
*b
= save_template_parm
;
2445 save_template_parm
= b
->level_chain
;
2446 b
->level_chain
= current_binding_level
;
2447 current_binding_level
= b
;
2453 inner
= CP_DECL_CONTEXT (TREE_CODE (inner
) == NAMESPACE_DECL
? inner
: TYPE_NAME (inner
));
2457 /* Do a pushlevel for class declarations. */
2460 pushlevel_class (void)
2462 if (ENABLE_SCOPE_CHECKING
)
2465 class_binding_level
= begin_scope (sk_class
, current_class_type
);
2468 /* ...and a poplevel for class declarations. */
2471 poplevel_class (void)
2473 struct cp_binding_level
*level
= class_binding_level
;
2474 cp_class_binding
*cb
;
2478 timevar_push (TV_NAME_LOOKUP
);
2479 gcc_assert (level
!= 0);
2481 /* If we're leaving a toplevel class, cache its binding level. */
2482 if (current_class_depth
== 1)
2483 previous_class_level
= level
;
2484 for (shadowed
= level
->type_shadowed
;
2486 shadowed
= TREE_CHAIN (shadowed
))
2487 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (shadowed
), TREE_VALUE (shadowed
));
2489 /* Remove the bindings for all of the class-level declarations. */
2490 if (level
->class_shadowed
)
2493 VEC_iterate (cp_class_binding
, level
->class_shadowed
, i
, cb
);
2495 IDENTIFIER_BINDING (cb
->identifier
) = cb
->base
.previous
;
2496 ggc_free (level
->class_shadowed
);
2497 level
->class_shadowed
= NULL
;
2500 /* Now, pop out of the binding level which we created up in the
2501 `pushlevel_class' routine. */
2502 if (ENABLE_SCOPE_CHECKING
)
2506 timevar_pop (TV_NAME_LOOKUP
);
2509 /* Set INHERITED_VALUE_BINDING_P on BINDING to true or false, as
2510 appropriate. DECL is the value to which a name has just been
2511 bound. CLASS_TYPE is the class in which the lookup occurred. */
2514 set_inherited_value_binding_p (cxx_binding
*binding
, tree decl
,
2517 if (binding
->value
== decl
&& TREE_CODE (decl
) != TREE_LIST
)
2521 if (TREE_CODE (decl
) == OVERLOAD
)
2522 context
= CP_DECL_CONTEXT (OVL_CURRENT (decl
));
2525 gcc_assert (DECL_P (decl
));
2526 context
= context_for_name_lookup (decl
);
2529 if (is_properly_derived_from (class_type
, context
))
2530 INHERITED_VALUE_BINDING_P (binding
) = 1;
2532 INHERITED_VALUE_BINDING_P (binding
) = 0;
2534 else if (binding
->value
== decl
)
2535 /* We only encounter a TREE_LIST when there is an ambiguity in the
2536 base classes. Such an ambiguity can be overridden by a
2537 definition in this class. */
2538 INHERITED_VALUE_BINDING_P (binding
) = 1;
2540 INHERITED_VALUE_BINDING_P (binding
) = 0;
2543 /* Make the declaration of X appear in CLASS scope. */
2546 pushdecl_class_level (tree x
)
2549 bool is_valid
= true;
2551 timevar_push (TV_NAME_LOOKUP
);
2552 /* Get the name of X. */
2553 if (TREE_CODE (x
) == OVERLOAD
)
2554 name
= DECL_NAME (get_first_fn (x
));
2556 name
= DECL_NAME (x
);
2560 is_valid
= push_class_level_binding (name
, x
);
2561 if (TREE_CODE (x
) == TYPE_DECL
)
2562 set_identifier_type_value (name
, x
);
2564 else if (ANON_AGGR_TYPE_P (TREE_TYPE (x
)))
2566 /* If X is an anonymous aggregate, all of its members are
2567 treated as if they were members of the class containing the
2568 aggregate, for naming purposes. */
2571 for (f
= TYPE_FIELDS (TREE_TYPE (x
)); f
; f
= TREE_CHAIN (f
))
2573 location_t save_location
= input_location
;
2574 input_location
= DECL_SOURCE_LOCATION (f
);
2575 if (!pushdecl_class_level (f
))
2577 input_location
= save_location
;
2580 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, is_valid
);
2583 /* Return the BINDING (if any) for NAME in SCOPE, which is a class
2584 scope. If the value returned is non-NULL, and the PREVIOUS field
2585 is not set, callers must set the PREVIOUS field explicitly. */
2587 static cxx_binding
*
2588 get_class_binding (tree name
, cxx_scope
*scope
)
2593 cxx_binding
*binding
;
2595 class_type
= scope
->this_entity
;
2597 /* Get the type binding. */
2598 type_binding
= lookup_member (class_type
, name
,
2599 /*protect=*/2, /*want_type=*/true);
2600 /* Get the value binding. */
2601 value_binding
= lookup_member (class_type
, name
,
2602 /*protect=*/2, /*want_type=*/false);
2605 && (TREE_CODE (value_binding
) == TYPE_DECL
2606 || DECL_CLASS_TEMPLATE_P (value_binding
)
2607 || (TREE_CODE (value_binding
) == TREE_LIST
2608 && TREE_TYPE (value_binding
) == error_mark_node
2609 && (TREE_CODE (TREE_VALUE (value_binding
))
2611 /* We found a type binding, even when looking for a non-type
2612 binding. This means that we already processed this binding
2615 else if (value_binding
)
2617 if (TREE_CODE (value_binding
) == TREE_LIST
2618 && TREE_TYPE (value_binding
) == error_mark_node
)
2619 /* NAME is ambiguous. */
2621 else if (BASELINK_P (value_binding
))
2622 /* NAME is some overloaded functions. */
2623 value_binding
= BASELINK_FUNCTIONS (value_binding
);
2626 /* If we found either a type binding or a value binding, create a
2627 new binding object. */
2628 if (type_binding
|| value_binding
)
2630 binding
= new_class_binding (name
,
2634 /* This is a class-scope binding, not a block-scope binding. */
2635 LOCAL_BINDING_P (binding
) = 0;
2636 set_inherited_value_binding_p (binding
, value_binding
, class_type
);
2644 /* Make the declaration(s) of X appear in CLASS scope under the name
2645 NAME. Returns true if the binding is valid. */
2648 push_class_level_binding (tree name
, tree x
)
2650 cxx_binding
*binding
;
2654 timevar_push (TV_NAME_LOOKUP
);
2655 /* The class_binding_level will be NULL if x is a template
2656 parameter name in a member template. */
2657 if (!class_binding_level
)
2658 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, true);
2660 if (name
== error_mark_node
)
2661 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, false);
2663 /* Check for invalid member names. */
2664 gcc_assert (TYPE_BEING_DEFINED (current_class_type
));
2665 /* We could have been passed a tree list if this is an ambiguous
2666 declaration. If so, pull the declaration out because
2667 check_template_shadow will not handle a TREE_LIST. */
2668 if (TREE_CODE (decl
) == TREE_LIST
2669 && TREE_TYPE (decl
) == error_mark_node
)
2670 decl
= TREE_VALUE (decl
);
2672 check_template_shadow (decl
);
2676 If T is the name of a class, then each of the following shall
2677 have a name different from T:
2679 -- every static data member of class T;
2681 -- every member of class T that is itself a type;
2683 -- every enumerator of every member of class T that is an
2686 -- every member of every anonymous union that is a member of
2689 (Non-static data members were also forbidden to have the same
2690 name as T until TC1.) */
2691 if ((TREE_CODE (x
) == VAR_DECL
2692 || TREE_CODE (x
) == CONST_DECL
2693 || (TREE_CODE (x
) == TYPE_DECL
2694 && !DECL_SELF_REFERENCE_P (x
))
2695 /* A data member of an anonymous union. */
2696 || (TREE_CODE (x
) == FIELD_DECL
2697 && DECL_CONTEXT (x
) != current_class_type
))
2698 && DECL_NAME (x
) == constructor_name (current_class_type
))
2700 tree scope
= context_for_name_lookup (x
);
2701 if (TYPE_P (scope
) && same_type_p (scope
, current_class_type
))
2703 error ("%qD has the same name as the class in which it is "
2706 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, false);
2710 /* Get the current binding for NAME in this class, if any. */
2711 binding
= IDENTIFIER_BINDING (name
);
2712 if (!binding
|| binding
->scope
!= class_binding_level
)
2714 binding
= get_class_binding (name
, class_binding_level
);
2715 /* If a new binding was created, put it at the front of the
2716 IDENTIFIER_BINDING list. */
2719 binding
->previous
= IDENTIFIER_BINDING (name
);
2720 IDENTIFIER_BINDING (name
) = binding
;
2724 /* If there is already a binding, then we may need to update the
2726 if (binding
&& binding
->value
)
2728 tree bval
= binding
->value
;
2729 tree old_decl
= NULL_TREE
;
2731 if (INHERITED_VALUE_BINDING_P (binding
))
2733 /* If the old binding was from a base class, and was for a
2734 tag name, slide it over to make room for the new binding.
2735 The old binding is still visible if explicitly qualified
2736 with a class-key. */
2737 if (TREE_CODE (bval
) == TYPE_DECL
&& DECL_ARTIFICIAL (bval
)
2738 && !(TREE_CODE (x
) == TYPE_DECL
&& DECL_ARTIFICIAL (x
)))
2740 old_decl
= binding
->type
;
2741 binding
->type
= bval
;
2742 binding
->value
= NULL_TREE
;
2743 INHERITED_VALUE_BINDING_P (binding
) = 0;
2748 /* Any inherited type declaration is hidden by the type
2749 declaration in the derived class. */
2750 if (TREE_CODE (x
) == TYPE_DECL
&& DECL_ARTIFICIAL (x
))
2751 binding
->type
= NULL_TREE
;
2754 else if (TREE_CODE (x
) == OVERLOAD
&& is_overloaded_fn (bval
))
2756 else if (TREE_CODE (x
) == USING_DECL
&& TREE_CODE (bval
) == USING_DECL
)
2757 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, true);
2758 else if (TREE_CODE (x
) == USING_DECL
&& is_overloaded_fn (bval
))
2760 else if (TREE_CODE (bval
) == USING_DECL
&& is_overloaded_fn (x
))
2761 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, true);
2763 if (old_decl
&& binding
->scope
== class_binding_level
)
2766 /* It is always safe to clear INHERITED_VALUE_BINDING_P
2767 here. This function is only used to register bindings
2768 from with the class definition itself. */
2769 INHERITED_VALUE_BINDING_P (binding
) = 0;
2770 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, true);
2774 /* Note that we declared this value so that we can issue an error if
2775 this is an invalid redeclaration of a name already used for some
2777 note_name_declared_in_class (name
, decl
);
2779 /* If we didn't replace an existing binding, put the binding on the
2780 stack of bindings for the identifier, and update the shadowed
2782 if (binding
&& binding
->scope
== class_binding_level
)
2783 /* Supplement the existing binding. */
2784 ok
= supplement_binding (binding
, decl
);
2787 /* Create a new binding. */
2788 push_binding (name
, decl
, class_binding_level
);
2792 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, ok
);
2795 /* Process "using SCOPE::NAME" in a class scope. Return the
2796 USING_DECL created. */
2799 do_class_using_decl (tree scope
, tree name
)
2801 /* The USING_DECL returned by this function. */
2803 /* The declaration (or declarations) name by this using
2804 declaration. NULL if we are in a template and cannot figure out
2805 what has been named. */
2807 /* True if SCOPE is a dependent type. */
2808 bool scope_dependent_p
;
2809 /* True if SCOPE::NAME is dependent. */
2810 bool name_dependent_p
;
2811 /* True if any of the bases of CURRENT_CLASS_TYPE are dependent. */
2812 bool bases_dependent_p
;
2817 if (name
== error_mark_node
)
2820 if (!scope
|| !TYPE_P (scope
))
2822 error ("using-declaration for non-member at class scope");
2826 /* Make sure the name is not invalid */
2827 if (TREE_CODE (name
) == BIT_NOT_EXPR
)
2829 error ("%<%T::%D%> names destructor", scope
, name
);
2832 if (constructor_name_p (name
, scope
))
2834 error ("%<%T::%D%> names constructor", scope
, name
);
2837 if (constructor_name_p (name
, current_class_type
))
2839 error ("%<%T::%D%> names constructor in %qT",
2840 scope
, name
, current_class_type
);
2844 scope_dependent_p
= dependent_type_p (scope
);
2845 name_dependent_p
= (scope_dependent_p
2846 || (IDENTIFIER_TYPENAME_P (name
)
2847 && dependent_type_p (TREE_TYPE (name
))));
2849 bases_dependent_p
= false;
2850 if (processing_template_decl
)
2851 for (binfo
= TYPE_BINFO (current_class_type
), i
= 0;
2852 BINFO_BASE_ITERATE (binfo
, i
, base_binfo
);
2854 if (dependent_type_p (TREE_TYPE (base_binfo
)))
2856 bases_dependent_p
= true;
2862 /* From [namespace.udecl]:
2864 A using-declaration used as a member-declaration shall refer to a
2865 member of a base class of the class being defined.
2867 In general, we cannot check this constraint in a template because
2868 we do not know the entire set of base classes of the current
2869 class type. However, if all of the base classes are
2870 non-dependent, then we can avoid delaying the check until
2872 if (!scope_dependent_p
)
2875 binfo
= lookup_base (current_class_type
, scope
, ba_any
, &b_kind
);
2876 if (b_kind
< bk_proper_base
)
2878 if (!bases_dependent_p
)
2880 error_not_base_type (scope
, current_class_type
);
2884 else if (!name_dependent_p
)
2886 decl
= lookup_member (binfo
, name
, 0, false);
2889 error ("no members matching %<%T::%D%> in %q#T", scope
, name
,
2893 /* The binfo from which the functions came does not matter. */
2894 if (BASELINK_P (decl
))
2895 decl
= BASELINK_FUNCTIONS (decl
);
2899 value
= build_lang_decl (USING_DECL
, name
, NULL_TREE
);
2900 USING_DECL_DECLS (value
) = decl
;
2901 USING_DECL_SCOPE (value
) = scope
;
2902 DECL_DEPENDENT_P (value
) = !decl
;
2908 /* Return the binding value for name in scope. */
2911 namespace_binding (tree name
, tree scope
)
2913 cxx_binding
*binding
;
2916 scope
= global_namespace
;
2918 /* Unnecessary for the global namespace because it can't be an alias. */
2919 scope
= ORIGINAL_NAMESPACE (scope
);
2921 binding
= cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope
), name
);
2923 return binding
? binding
->value
: NULL_TREE
;
2926 /* Set the binding value for name in scope. */
2929 set_namespace_binding (tree name
, tree scope
, tree val
)
2933 timevar_push (TV_NAME_LOOKUP
);
2934 if (scope
== NULL_TREE
)
2935 scope
= global_namespace
;
2936 b
= binding_for_name (NAMESPACE_LEVEL (scope
), name
);
2937 if (!b
->value
|| TREE_CODE (val
) == OVERLOAD
|| val
== error_mark_node
)
2940 supplement_binding (b
, val
);
2941 timevar_pop (TV_NAME_LOOKUP
);
2944 /* Set the context of a declaration to scope. Complain if we are not
2948 set_decl_namespace (tree decl
, tree scope
, bool friendp
)
2952 /* Get rid of namespace aliases. */
2953 scope
= ORIGINAL_NAMESPACE (scope
);
2955 /* It is ok for friends to be qualified in parallel space. */
2956 if (!friendp
&& !is_ancestor (current_namespace
, scope
))
2957 error ("declaration of %qD not in a namespace surrounding %qD",
2959 DECL_CONTEXT (decl
) = FROB_CONTEXT (scope
);
2961 /* Writing "int N::i" to declare a variable within "N" is invalid. */
2962 if (scope
== current_namespace
)
2964 if (at_namespace_scope_p ())
2965 error ("explicit qualification in declaration of %qD",
2970 /* See whether this has been declared in the namespace. */
2971 old
= lookup_qualified_name (scope
, DECL_NAME (decl
), false, true);
2972 if (old
== error_mark_node
)
2973 /* No old declaration at all. */
2975 if (!is_overloaded_fn (decl
))
2976 /* Don't compare non-function decls with decls_match here, since
2977 it can't check for the correct constness at this
2978 point. pushdecl will find those errors later. */
2980 /* Since decl is a function, old should contain a function decl. */
2981 if (!is_overloaded_fn (old
))
2983 fn
= OVL_CURRENT (old
);
2984 if (!is_associated_namespace (scope
, CP_DECL_CONTEXT (fn
)))
2986 /* A template can be explicitly specialized in any namespace. */
2987 if (processing_explicit_instantiation
)
2989 if (processing_template_decl
|| processing_specialization
)
2990 /* We have not yet called push_template_decl to turn a
2991 FUNCTION_DECL into a TEMPLATE_DECL, so the declarations won't
2992 match. But, we'll check later, when we construct the
2995 /* Instantiations or specializations of templates may be declared as
2996 friends in any namespace. */
2997 if (friendp
&& DECL_USE_TEMPLATE (decl
))
2999 if (is_overloaded_fn (old
))
3001 for (; old
; old
= OVL_NEXT (old
))
3002 if (decls_match (decl
, OVL_CURRENT (old
)))
3005 else if (decls_match (decl
, old
))
3008 error ("%qD should have been declared inside %qD", decl
, scope
);
3011 /* Return the namespace where the current declaration is declared. */
3014 current_decl_namespace (void)
3017 /* If we have been pushed into a different namespace, use it. */
3018 if (decl_namespace_list
)
3019 return TREE_PURPOSE (decl_namespace_list
);
3021 if (current_class_type
)
3022 result
= decl_namespace_context (current_class_type
);
3023 else if (current_function_decl
)
3024 result
= decl_namespace_context (current_function_decl
);
3026 result
= current_namespace
;
3030 /* Push into the scope of the NAME namespace. If NAME is NULL_TREE, then we
3031 select a name that is unique to this compilation unit. */
3034 push_namespace (tree name
)
3036 push_namespace_with_attribs (name
, NULL_TREE
);
3039 /* Same, but specify attributes to apply to the namespace. The attributes
3040 only apply to the current namespace-body, not to any later extensions. */
3043 push_namespace_with_attribs (tree name
, tree attributes
)
3047 int implicit_use
= 0;
3050 timevar_push (TV_NAME_LOOKUP
);
3052 /* We should not get here if the global_namespace is not yet constructed
3053 nor if NAME designates the global namespace: The global scope is
3054 constructed elsewhere. */
3055 gcc_assert (global_namespace
!= NULL
&& name
!= global_scope_name
);
3059 name
= get_anonymous_namespace_name();
3060 d
= IDENTIFIER_NAMESPACE_VALUE (name
);
3062 /* Reopening anonymous namespace. */
3068 /* Check whether this is an extended namespace definition. */
3069 d
= IDENTIFIER_NAMESPACE_VALUE (name
);
3070 if (d
!= NULL_TREE
&& TREE_CODE (d
) == NAMESPACE_DECL
)
3073 if (DECL_NAMESPACE_ALIAS (d
))
3075 error ("namespace alias %qD not allowed here, assuming %qD",
3076 d
, DECL_NAMESPACE_ALIAS (d
));
3077 d
= DECL_NAMESPACE_ALIAS (d
);
3084 /* Make a new namespace, binding the name to it. */
3085 d
= build_lang_decl (NAMESPACE_DECL
, name
, void_type_node
);
3086 DECL_CONTEXT (d
) = FROB_CONTEXT (current_namespace
);
3087 /* The name of this namespace is not visible to other translation
3088 units if it is an anonymous namespace or member thereof. */
3089 if (anon
|| decl_anon_ns_mem_p (current_namespace
))
3090 TREE_PUBLIC (d
) = 0;
3092 TREE_PUBLIC (d
) = 1;
3096 /* Clear DECL_NAME for the benefit of debugging back ends. */
3097 SET_DECL_ASSEMBLER_NAME (d
, name
);
3098 DECL_NAME (d
) = NULL_TREE
;
3100 begin_scope (sk_namespace
, d
);
3103 resume_scope (NAMESPACE_LEVEL (d
));
3106 do_using_directive (d
);
3107 /* Enter the name space. */
3108 current_namespace
= d
;
3110 #ifdef HANDLE_PRAGMA_VISIBILITY
3111 /* Clear has_visibility in case a previous namespace-definition had a
3112 visibility attribute and this one doesn't. */
3113 current_binding_level
->has_visibility
= 0;
3114 for (d
= attributes
; d
; d
= TREE_CHAIN (d
))
3116 tree name
= TREE_PURPOSE (d
);
3117 tree args
= TREE_VALUE (d
);
3120 if (! is_attribute_p ("visibility", name
))
3122 warning (OPT_Wattributes
, "%qs attribute directive ignored",
3123 IDENTIFIER_POINTER (name
));
3127 x
= args
? TREE_VALUE (args
) : NULL_TREE
;
3128 if (x
== NULL_TREE
|| TREE_CODE (x
) != STRING_CST
|| TREE_CHAIN (args
))
3130 warning (OPT_Wattributes
, "%qs attribute requires a single NTBS argument",
3131 IDENTIFIER_POINTER (name
));
3135 current_binding_level
->has_visibility
= 1;
3136 push_visibility (TREE_STRING_POINTER (x
));
3142 timevar_pop (TV_NAME_LOOKUP
);
3145 /* Pop from the scope of the current namespace. */
3148 pop_namespace (void)
3150 gcc_assert (current_namespace
!= global_namespace
);
3151 current_namespace
= CP_DECL_CONTEXT (current_namespace
);
3152 /* The binding level is not popped, as it might be re-opened later. */
3156 /* Push into the scope of the namespace NS, even if it is deeply
3157 nested within another namespace. */
3160 push_nested_namespace (tree ns
)
3162 if (ns
== global_namespace
)
3163 push_to_top_level ();
3166 push_nested_namespace (CP_DECL_CONTEXT (ns
));
3167 push_namespace (DECL_NAME (ns
));
3171 /* Pop back from the scope of the namespace NS, which was previously
3172 entered with push_nested_namespace. */
3175 pop_nested_namespace (tree ns
)
3177 timevar_push (TV_NAME_LOOKUP
);
3178 while (ns
!= global_namespace
)
3181 ns
= CP_DECL_CONTEXT (ns
);
3184 pop_from_top_level ();
3185 timevar_pop (TV_NAME_LOOKUP
);
3188 /* Temporarily set the namespace for the current declaration. */
3191 push_decl_namespace (tree decl
)
3193 if (TREE_CODE (decl
) != NAMESPACE_DECL
)
3194 decl
= decl_namespace_context (decl
);
3195 decl_namespace_list
= tree_cons (ORIGINAL_NAMESPACE (decl
),
3196 NULL_TREE
, decl_namespace_list
);
3199 /* [namespace.memdef]/2 */
3202 pop_decl_namespace (void)
3204 decl_namespace_list
= TREE_CHAIN (decl_namespace_list
);
3207 /* Return the namespace that is the common ancestor
3208 of two given namespaces. */
3211 namespace_ancestor (tree ns1
, tree ns2
)
3213 timevar_push (TV_NAME_LOOKUP
);
3214 if (is_ancestor (ns1
, ns2
))
3215 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, ns1
);
3216 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
,
3217 namespace_ancestor (CP_DECL_CONTEXT (ns1
), ns2
));
3220 /* Process a namespace-alias declaration. */
3223 do_namespace_alias (tree alias
, tree
namespace)
3225 if (namespace == error_mark_node
)
3228 gcc_assert (TREE_CODE (namespace) == NAMESPACE_DECL
);
3230 namespace = ORIGINAL_NAMESPACE (namespace);
3232 /* Build the alias. */
3233 alias
= build_lang_decl (NAMESPACE_DECL
, alias
, void_type_node
);
3234 DECL_NAMESPACE_ALIAS (alias
) = namespace;
3235 DECL_EXTERNAL (alias
) = 1;
3236 DECL_CONTEXT (alias
) = FROB_CONTEXT (current_scope ());
3239 /* Emit debug info for namespace alias. */
3240 (*debug_hooks
->global_decl
) (alias
);
3243 /* Like pushdecl, only it places X in the current namespace,
3247 pushdecl_namespace_level (tree x
, bool is_friend
)
3249 struct cp_binding_level
*b
= current_binding_level
;
3252 timevar_push (TV_NAME_LOOKUP
);
3253 t
= pushdecl_with_scope (x
, NAMESPACE_LEVEL (current_namespace
), is_friend
);
3255 /* Now, the type_shadowed stack may screw us. Munge it so it does
3257 if (TREE_CODE (t
) == TYPE_DECL
)
3259 tree name
= DECL_NAME (t
);
3261 tree
*ptr
= (tree
*)0;
3262 for (; !global_scope_p (b
); b
= b
->level_chain
)
3264 tree shadowed
= b
->type_shadowed
;
3265 for (; shadowed
; shadowed
= TREE_CHAIN (shadowed
))
3266 if (TREE_PURPOSE (shadowed
) == name
)
3268 ptr
= &TREE_VALUE (shadowed
);
3269 /* Can't break out of the loop here because sometimes
3270 a binding level will have duplicate bindings for
3271 PT names. It's gross, but I haven't time to fix it. */
3274 newval
= TREE_TYPE (t
);
3275 if (ptr
== (tree
*)0)
3277 /* @@ This shouldn't be needed. My test case "zstring.cc" trips
3278 up here if this is changed to an assertion. --KR */
3279 SET_IDENTIFIER_TYPE_VALUE (name
, t
);
3286 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, t
);
3289 /* Insert USED into the using list of USER. Set INDIRECT_flag if this
3290 directive is not directly from the source. Also find the common
3291 ancestor and let our users know about the new namespace */
3293 add_using_namespace (tree user
, tree used
, bool indirect
)
3296 timevar_push (TV_NAME_LOOKUP
);
3297 /* Using oneself is a no-op. */
3300 timevar_pop (TV_NAME_LOOKUP
);
3303 gcc_assert (TREE_CODE (user
) == NAMESPACE_DECL
);
3304 gcc_assert (TREE_CODE (used
) == NAMESPACE_DECL
);
3305 /* Check if we already have this. */
3306 t
= purpose_member (used
, DECL_NAMESPACE_USING (user
));
3310 /* Promote to direct usage. */
3311 TREE_INDIRECT_USING (t
) = 0;
3312 timevar_pop (TV_NAME_LOOKUP
);
3316 /* Add used to the user's using list. */
3317 DECL_NAMESPACE_USING (user
)
3318 = tree_cons (used
, namespace_ancestor (user
, used
),
3319 DECL_NAMESPACE_USING (user
));
3321 TREE_INDIRECT_USING (DECL_NAMESPACE_USING (user
)) = indirect
;
3323 /* Add user to the used's users list. */
3324 DECL_NAMESPACE_USERS (used
)
3325 = tree_cons (user
, 0, DECL_NAMESPACE_USERS (used
));
3327 /* Recursively add all namespaces used. */
3328 for (t
= DECL_NAMESPACE_USING (used
); t
; t
= TREE_CHAIN (t
))
3329 /* indirect usage */
3330 add_using_namespace (user
, TREE_PURPOSE (t
), 1);
3332 /* Tell everyone using us about the new used namespaces. */
3333 for (t
= DECL_NAMESPACE_USERS (user
); t
; t
= TREE_CHAIN (t
))
3334 add_using_namespace (TREE_PURPOSE (t
), used
, 1);
3335 timevar_pop (TV_NAME_LOOKUP
);
3338 /* Process a using-declaration not appearing in class or local scope. */
3341 do_toplevel_using_decl (tree decl
, tree scope
, tree name
)
3343 tree oldval
, oldtype
, newval
, newtype
;
3344 tree orig_decl
= decl
;
3345 cxx_binding
*binding
;
3347 decl
= validate_nonmember_using_decl (decl
, scope
, name
);
3348 if (decl
== NULL_TREE
)
3351 binding
= binding_for_name (NAMESPACE_LEVEL (current_namespace
), name
);
3353 oldval
= binding
->value
;
3354 oldtype
= binding
->type
;
3356 do_nonmember_using_decl (scope
, name
, oldval
, oldtype
, &newval
, &newtype
);
3358 /* Emit debug info. */
3359 if (!processing_template_decl
)
3360 cp_emit_debug_info_for_using (orig_decl
, current_namespace
);
3362 /* Copy declarations found. */
3364 binding
->value
= newval
;
3366 binding
->type
= newtype
;
3369 /* Process a using-directive. */
3372 do_using_directive (tree
namespace)
3374 tree context
= NULL_TREE
;
3376 if (namespace == error_mark_node
)
3379 gcc_assert (TREE_CODE (namespace) == NAMESPACE_DECL
);
3381 if (building_stmt_tree ())
3382 add_stmt (build_stmt (USING_STMT
, namespace));
3383 namespace = ORIGINAL_NAMESPACE (namespace);
3385 if (!toplevel_bindings_p ())
3387 push_using_directive (namespace);
3388 context
= current_scope ();
3393 add_using_namespace (current_namespace
, namespace, 0);
3394 if (current_namespace
!= global_namespace
)
3395 context
= current_namespace
;
3398 /* Emit debugging info. */
3399 if (!processing_template_decl
)
3400 (*debug_hooks
->imported_module_or_decl
) (namespace, context
);
3403 /* Deal with a using-directive seen by the parser. Currently we only
3404 handle attributes here, since they cannot appear inside a template. */
3407 parse_using_directive (tree
namespace, tree attribs
)
3411 do_using_directive (namespace);
3413 for (a
= attribs
; a
; a
= TREE_CHAIN (a
))
3415 tree name
= TREE_PURPOSE (a
);
3416 if (is_attribute_p ("strong", name
))
3418 if (!toplevel_bindings_p ())
3419 error ("strong using only meaningful at namespace scope");
3420 else if (namespace != error_mark_node
)
3422 if (!is_ancestor (current_namespace
, namespace))
3423 error ("current namespace %qD does not enclose strongly used namespace %qD",
3424 current_namespace
, namespace);
3425 DECL_NAMESPACE_ASSOCIATIONS (namespace)
3426 = tree_cons (current_namespace
, 0,
3427 DECL_NAMESPACE_ASSOCIATIONS (namespace));
3431 warning (OPT_Wattributes
, "%qD attribute directive ignored", name
);
3435 /* Like pushdecl, only it places X in the global scope if appropriate.
3436 Calls cp_finish_decl to register the variable, initializing it with
3437 *INIT, if INIT is non-NULL. */
3440 pushdecl_top_level_1 (tree x
, tree
*init
, bool is_friend
)
3442 timevar_push (TV_NAME_LOOKUP
);
3443 push_to_top_level ();
3444 x
= pushdecl_namespace_level (x
, is_friend
);
3446 finish_decl (x
, *init
, NULL_TREE
);
3447 pop_from_top_level ();
3448 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, x
);
3451 /* Like pushdecl, only it places X in the global scope if appropriate. */
3454 pushdecl_top_level (tree x
)
3456 return pushdecl_top_level_1 (x
, NULL
, false);
3459 /* Like pushdecl_top_level, but adding the IS_FRIEND parameter. */
3462 pushdecl_top_level_maybe_friend (tree x
, bool is_friend
)
3464 return pushdecl_top_level_1 (x
, NULL
, is_friend
);
3467 /* Like pushdecl, only it places X in the global scope if
3468 appropriate. Calls cp_finish_decl to register the variable,
3469 initializing it with INIT. */
3472 pushdecl_top_level_and_finish (tree x
, tree init
)
3474 return pushdecl_top_level_1 (x
, &init
, false);
3477 /* Combines two sets of overloaded functions into an OVERLOAD chain, removing
3478 duplicates. The first list becomes the tail of the result.
3480 The algorithm is O(n^2). We could get this down to O(n log n) by
3481 doing a sort on the addresses of the functions, if that becomes
3485 merge_functions (tree s1
, tree s2
)
3487 for (; s2
; s2
= OVL_NEXT (s2
))
3489 tree fn2
= OVL_CURRENT (s2
);
3492 for (fns1
= s1
; fns1
; fns1
= OVL_NEXT (fns1
))
3494 tree fn1
= OVL_CURRENT (fns1
);
3496 /* If the function from S2 is already in S1, there is no
3497 need to add it again. For `extern "C"' functions, we
3498 might have two FUNCTION_DECLs for the same function, in
3499 different namespaces; again, we only need one of them. */
3501 || (DECL_EXTERN_C_P (fn1
) && DECL_EXTERN_C_P (fn2
)
3502 && DECL_NAME (fn1
) == DECL_NAME (fn2
)))
3506 /* If we exhausted all of the functions in S1, FN2 is new. */
3508 s1
= build_overload (fn2
, s1
);
3513 /* This should return an error not all definitions define functions.
3514 It is not an error if we find two functions with exactly the
3515 same signature, only if these are selected in overload resolution.
3516 old is the current set of bindings, new the freshly-found binding.
3517 XXX Do we want to give *all* candidates in case of ambiguity?
3518 XXX In what way should I treat extern declarations?
3519 XXX I don't want to repeat the entire duplicate_decls here */
3522 ambiguous_decl (struct scope_binding
*old
, cxx_binding
*new, int flags
)
3525 gcc_assert (old
!= NULL
);
3527 /* Copy the type. */
3529 if (LOOKUP_NAMESPACES_ONLY (flags
)
3530 || (type
&& hidden_name_p (type
) && !(flags
& LOOKUP_HIDDEN
)))
3533 /* Copy the value. */
3537 if (hidden_name_p (val
) && !(flags
& LOOKUP_HIDDEN
))
3540 switch (TREE_CODE (val
))
3543 /* If we expect types or namespaces, and not templates,
3544 or this is not a template class. */
3545 if ((LOOKUP_QUALIFIERS_ONLY (flags
)
3546 && !DECL_CLASS_TEMPLATE_P (val
)))
3550 if (LOOKUP_NAMESPACES_ONLY (flags
)
3551 || (type
&& (flags
& LOOKUP_PREFER_TYPES
)))
3554 case NAMESPACE_DECL
:
3555 if (LOOKUP_TYPES_ONLY (flags
))
3559 /* Ignore built-in functions that are still anticipated. */
3560 if (LOOKUP_QUALIFIERS_ONLY (flags
))
3564 if (LOOKUP_QUALIFIERS_ONLY (flags
))
3569 /* If val is hidden, shift down any class or enumeration name. */
3578 else if (val
&& val
!= old
->value
)
3580 if (is_overloaded_fn (old
->value
) && is_overloaded_fn (val
))
3581 old
->value
= merge_functions (old
->value
, val
);
3584 old
->value
= tree_cons (NULL_TREE
, old
->value
,
3585 build_tree_list (NULL_TREE
, val
));
3586 TREE_TYPE (old
->value
) = error_mark_node
;
3592 else if (type
&& old
->type
!= type
)
3594 old
->type
= tree_cons (NULL_TREE
, old
->type
,
3595 build_tree_list (NULL_TREE
, type
));
3596 TREE_TYPE (old
->type
) = error_mark_node
;
3600 /* Return the declarations that are members of the namespace NS. */
3603 cp_namespace_decls (tree ns
)
3605 return NAMESPACE_LEVEL (ns
)->names
;
3608 /* Combine prefer_type and namespaces_only into flags. */
3611 lookup_flags (int prefer_type
, int namespaces_only
)
3613 if (namespaces_only
)
3614 return LOOKUP_PREFER_NAMESPACES
;
3615 if (prefer_type
> 1)
3616 return LOOKUP_PREFER_TYPES
;
3617 if (prefer_type
> 0)
3618 return LOOKUP_PREFER_BOTH
;
3622 /* Given a lookup that returned VAL, use FLAGS to decide if we want to
3623 ignore it or not. Subroutine of lookup_name_real and
3624 lookup_type_scope. */
3627 qualify_lookup (tree val
, int flags
)
3629 if (val
== NULL_TREE
)
3631 if ((flags
& LOOKUP_PREFER_NAMESPACES
) && TREE_CODE (val
) == NAMESPACE_DECL
)
3633 if ((flags
& LOOKUP_PREFER_TYPES
)
3634 && (TREE_CODE (val
) == TYPE_DECL
|| TREE_CODE (val
) == TEMPLATE_DECL
))
3636 if (flags
& (LOOKUP_PREFER_NAMESPACES
| LOOKUP_PREFER_TYPES
))
3641 /* Given a lookup that returned VAL, decide if we want to ignore it or
3642 not based on DECL_ANTICIPATED. */
3645 hidden_name_p (tree val
)
3648 && DECL_LANG_SPECIFIC (val
)
3649 && DECL_ANTICIPATED (val
))
3654 /* Remove any hidden friend functions from a possibly overloaded set
3658 remove_hidden_names (tree fns
)
3663 if (TREE_CODE (fns
) == FUNCTION_DECL
&& hidden_name_p (fns
))
3665 else if (TREE_CODE (fns
) == OVERLOAD
)
3669 for (o
= fns
; o
; o
= OVL_NEXT (o
))
3670 if (hidden_name_p (OVL_CURRENT (o
)))
3676 for (o
= fns
; o
; o
= OVL_NEXT (o
))
3677 if (!hidden_name_p (OVL_CURRENT (o
)))
3678 n
= build_overload (OVL_CURRENT (o
), n
);
3686 /* Unscoped lookup of a global: iterate over current namespaces,
3687 considering using-directives. */
3690 unqualified_namespace_lookup (tree name
, int flags
)
3692 tree initial
= current_decl_namespace ();
3693 tree scope
= initial
;
3695 struct cp_binding_level
*level
;
3696 tree val
= NULL_TREE
;
3698 timevar_push (TV_NAME_LOOKUP
);
3700 for (; !val
; scope
= CP_DECL_CONTEXT (scope
))
3702 struct scope_binding binding
= EMPTY_SCOPE_BINDING
;
3704 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope
), name
);
3707 ambiguous_decl (&binding
, b
, flags
);
3709 /* Add all _DECLs seen through local using-directives. */
3710 for (level
= current_binding_level
;
3711 level
->kind
!= sk_namespace
;
3712 level
= level
->level_chain
)
3713 if (!lookup_using_namespace (name
, &binding
, level
->using_directives
,
3715 /* Give up because of error. */
3716 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, error_mark_node
);
3718 /* Add all _DECLs seen through global using-directives. */
3719 /* XXX local and global using lists should work equally. */
3723 if (!lookup_using_namespace (name
, &binding
,
3724 DECL_NAMESPACE_USING (siter
),
3726 /* Give up because of error. */
3727 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, error_mark_node
);
3728 if (siter
== scope
) break;
3729 siter
= CP_DECL_CONTEXT (siter
);
3732 val
= binding
.value
;
3733 if (scope
== global_namespace
)
3736 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, val
);
3739 /* Look up NAME (an IDENTIFIER_NODE) in SCOPE (either a NAMESPACE_DECL
3740 or a class TYPE). If IS_TYPE_P is TRUE, then ignore non-type
3743 Returns a DECL (or OVERLOAD, or BASELINK) representing the
3744 declaration found. If no suitable declaration can be found,
3745 ERROR_MARK_NODE is returned. If COMPLAIN is true and SCOPE is
3746 neither a class-type nor a namespace a diagnostic is issued. */
3749 lookup_qualified_name (tree scope
, tree name
, bool is_type_p
, bool complain
)
3754 if (TREE_CODE (scope
) == NAMESPACE_DECL
)
3756 struct scope_binding binding
= EMPTY_SCOPE_BINDING
;
3758 flags
|= LOOKUP_COMPLAIN
;
3760 flags
|= LOOKUP_PREFER_TYPES
;
3761 if (qualified_lookup_using_namespace (name
, scope
, &binding
, flags
))
3764 else if (is_aggr_type (scope
, complain
))
3765 t
= lookup_member (scope
, name
, 2, is_type_p
);
3768 return error_mark_node
;
3772 /* Subroutine of unqualified_namespace_lookup:
3773 Add the bindings of NAME in used namespaces to VAL.
3774 We are currently looking for names in namespace SCOPE, so we
3775 look through USINGS for using-directives of namespaces
3776 which have SCOPE as a common ancestor with the current scope.
3777 Returns false on errors. */
3780 lookup_using_namespace (tree name
, struct scope_binding
*val
,
3781 tree usings
, tree scope
, int flags
)
3784 timevar_push (TV_NAME_LOOKUP
);
3785 /* Iterate over all used namespaces in current, searching for using
3786 directives of scope. */
3787 for (iter
= usings
; iter
; iter
= TREE_CHAIN (iter
))
3788 if (TREE_VALUE (iter
) == scope
)
3790 tree used
= ORIGINAL_NAMESPACE (TREE_PURPOSE (iter
));
3792 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (used
), name
);
3793 /* Resolve ambiguities. */
3795 ambiguous_decl (val
, val1
, flags
);
3797 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, val
->value
!= error_mark_node
);
3801 Accepts the NAME to lookup and its qualifying SCOPE.
3802 Returns the name/type pair found into the cxx_binding *RESULT,
3803 or false on error. */
3806 qualified_lookup_using_namespace (tree name
, tree scope
,
3807 struct scope_binding
*result
, int flags
)
3809 /* Maintain a list of namespaces visited... */
3810 tree seen
= NULL_TREE
;
3811 /* ... and a list of namespace yet to see. */
3812 tree todo
= NULL_TREE
;
3813 tree todo_maybe
= NULL_TREE
;
3815 timevar_push (TV_NAME_LOOKUP
);
3816 /* Look through namespace aliases. */
3817 scope
= ORIGINAL_NAMESPACE (scope
);
3818 while (scope
&& result
->value
!= error_mark_node
)
3820 cxx_binding
*binding
=
3821 cxx_scope_find_binding_for_name (NAMESPACE_LEVEL (scope
), name
);
3822 seen
= tree_cons (scope
, NULL_TREE
, seen
);
3824 ambiguous_decl (result
, binding
, flags
);
3826 /* Consider strong using directives always, and non-strong ones
3827 if we haven't found a binding yet. ??? Shouldn't we consider
3828 non-strong ones if the initial RESULT is non-NULL, but the
3829 binding in the given namespace is? */
3830 for (usings
= DECL_NAMESPACE_USING (scope
); usings
;
3831 usings
= TREE_CHAIN (usings
))
3832 /* If this was a real directive, and we have not seen it. */
3833 if (!TREE_INDIRECT_USING (usings
))
3835 /* Try to avoid queuing the same namespace more than once,
3836 the exception being when a namespace was already
3837 enqueued for todo_maybe and then a strong using is
3838 found for it. We could try to remove it from
3839 todo_maybe, but it's probably not worth the effort. */
3840 if (is_associated_namespace (scope
, TREE_PURPOSE (usings
))
3841 && !purpose_member (TREE_PURPOSE (usings
), seen
)
3842 && !purpose_member (TREE_PURPOSE (usings
), todo
))
3843 todo
= tree_cons (TREE_PURPOSE (usings
), NULL_TREE
, todo
);
3844 else if ((!result
->value
&& !result
->type
)
3845 && !purpose_member (TREE_PURPOSE (usings
), seen
)
3846 && !purpose_member (TREE_PURPOSE (usings
), todo
)
3847 && !purpose_member (TREE_PURPOSE (usings
), todo_maybe
))
3848 todo_maybe
= tree_cons (TREE_PURPOSE (usings
), NULL_TREE
,
3853 scope
= TREE_PURPOSE (todo
);
3854 todo
= TREE_CHAIN (todo
);
3857 && (!result
->value
&& !result
->type
))
3859 scope
= TREE_PURPOSE (todo_maybe
);
3860 todo
= TREE_CHAIN (todo_maybe
);
3861 todo_maybe
= NULL_TREE
;
3864 scope
= NULL_TREE
; /* If there never was a todo list. */
3866 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, result
->value
!= error_mark_node
);
3869 /* Return the innermost non-namespace binding for NAME from a scope
3870 containing BINDING, or, if BINDING is NULL, the current scope. If
3871 CLASS_P is false, then class bindings are ignored. */
3874 outer_binding (tree name
,
3875 cxx_binding
*binding
,
3880 cxx_scope
*outer_scope
;
3884 scope
= binding
->scope
->level_chain
;
3885 outer
= binding
->previous
;
3889 scope
= current_binding_level
;
3890 outer
= IDENTIFIER_BINDING (name
);
3892 outer_scope
= outer
? outer
->scope
: NULL
;
3894 /* Because we create class bindings lazily, we might be missing a
3895 class binding for NAME. If there are any class binding levels
3896 between the LAST_BINDING_LEVEL and the scope in which OUTER was
3897 declared, we must lookup NAME in those class scopes. */
3899 while (scope
&& scope
!= outer_scope
&& scope
->kind
!= sk_namespace
)
3901 if (scope
->kind
== sk_class
)
3903 cxx_binding
*class_binding
;
3905 class_binding
= get_class_binding (name
, scope
);
3908 /* Thread this new class-scope binding onto the
3909 IDENTIFIER_BINDING list so that future lookups
3911 class_binding
->previous
= outer
;
3913 binding
->previous
= class_binding
;
3915 IDENTIFIER_BINDING (name
) = class_binding
;
3916 return class_binding
;
3919 scope
= scope
->level_chain
;
3925 /* Return the innermost block-scope or class-scope value binding for
3926 NAME, or NULL_TREE if there is no such binding. */
3929 innermost_non_namespace_value (tree name
)
3931 cxx_binding
*binding
;
3932 binding
= outer_binding (name
, /*binding=*/NULL
, /*class_p=*/true);
3933 return binding
? binding
->value
: NULL_TREE
;
3936 /* Look up NAME in the current binding level and its superiors in the
3937 namespace of variables, functions and typedefs. Return a ..._DECL
3938 node of some kind representing its definition if there is only one
3939 such declaration, or return a TREE_LIST with all the overloaded
3940 definitions if there are many, or return 0 if it is undefined.
3941 Hidden name, either friend declaration or built-in function, are
3944 If PREFER_TYPE is > 0, we prefer TYPE_DECLs or namespaces.
3945 If PREFER_TYPE is > 1, we reject non-type decls (e.g. namespaces).
3946 Otherwise we prefer non-TYPE_DECLs.
3948 If NONCLASS is nonzero, bindings in class scopes are ignored. If
3949 BLOCK_P is false, bindings in block scopes are ignored. */
3952 lookup_name_real (tree name
, int prefer_type
, int nonclass
, bool block_p
,
3953 int namespaces_only
, int flags
)
3956 tree val
= NULL_TREE
;
3958 timevar_push (TV_NAME_LOOKUP
);
3959 /* Conversion operators are handled specially because ordinary
3960 unqualified name lookup will not find template conversion
3962 if (IDENTIFIER_TYPENAME_P (name
))
3964 struct cp_binding_level
*level
;
3966 for (level
= current_binding_level
;
3967 level
&& level
->kind
!= sk_namespace
;
3968 level
= level
->level_chain
)
3973 /* A conversion operator can only be declared in a class
3975 if (level
->kind
!= sk_class
)
3978 /* Lookup the conversion operator in the class. */
3979 class_type
= level
->this_entity
;
3980 operators
= lookup_fnfields (class_type
, name
, /*protect=*/0);
3982 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, operators
);
3985 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, NULL_TREE
);
3988 flags
|= lookup_flags (prefer_type
, namespaces_only
);
3990 /* First, look in non-namespace scopes. */
3992 if (current_class_type
== NULL_TREE
)
3995 if (block_p
|| !nonclass
)
3996 for (iter
= outer_binding (name
, NULL
, !nonclass
);
3998 iter
= outer_binding (name
, iter
, !nonclass
))
4002 /* Skip entities we don't want. */
4003 if (LOCAL_BINDING_P (iter
) ? !block_p
: nonclass
)
4006 /* If this is the kind of thing we're looking for, we're done. */
4007 if (qualify_lookup (iter
->value
, flags
))
4008 binding
= iter
->value
;
4009 else if ((flags
& LOOKUP_PREFER_TYPES
)
4010 && qualify_lookup (iter
->type
, flags
))
4011 binding
= iter
->type
;
4013 binding
= NULL_TREE
;
4017 if (hidden_name_p (binding
))
4019 /* A non namespace-scope binding can only be hidden if
4020 we are in a local class, due to friend declarations.
4021 In particular, consider:
4026 void g() { B* b; } // error: B is hidden
4031 The standard says that "B" is a local class in "f"
4032 (but not nested within "A") -- but that name lookup
4033 for "B" does not find this declaration until it is
4034 declared directly with "f".
4040 If a friend declaration appears in a local class and
4041 the name specified is an unqualified name, a prior
4042 declaration is looked up without considering scopes
4043 that are outside the innermost enclosing non-class
4044 scope. For a friend class declaration, if there is no
4045 prior declaration, the class that is specified
4046 belongs to the innermost enclosing non-class scope,
4047 but if it is subsequently referenced, its name is not
4048 found by name lookup until a matching declaration is
4049 provided in the innermost enclosing nonclass scope.
4051 gcc_assert (current_class_type
&&
4052 LOCAL_CLASS_P (current_class_type
));
4054 /* This binding comes from a friend declaration in the local
4055 class. The standard (11.4.8) states that the lookup can
4056 only succeed if there is a non-hidden declaration in the
4057 current scope, which is not the case here. */
4058 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, NULL_TREE
);
4065 /* Now lookup in namespace scopes. */
4067 val
= unqualified_namespace_lookup (name
, flags
);
4069 /* If we have a single function from a using decl, pull it out. */
4070 if (val
&& TREE_CODE (val
) == OVERLOAD
&& !really_overloaded_fn (val
))
4071 val
= OVL_FUNCTION (val
);
4073 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, val
);
4077 lookup_name_nonclass (tree name
)
4079 return lookup_name_real (name
, 0, 1, /*block_p=*/true, 0, LOOKUP_COMPLAIN
);
4083 lookup_function_nonclass (tree name
, tree args
, bool block_p
)
4086 lookup_arg_dependent (name
,
4087 lookup_name_real (name
, 0, 1, block_p
, 0,
4093 lookup_name (tree name
)
4095 return lookup_name_real (name
, 0, 0, /*block_p=*/true, 0, LOOKUP_COMPLAIN
);
4099 lookup_name_prefer_type (tree name
, int prefer_type
)
4101 return lookup_name_real (name
, prefer_type
, 0, /*block_p=*/true,
4102 0, LOOKUP_COMPLAIN
);
4105 /* Look up NAME for type used in elaborated name specifier in
4106 the scopes given by SCOPE. SCOPE can be either TS_CURRENT or
4107 TS_WITHIN_ENCLOSING_NON_CLASS. Although not implied by the
4108 name, more scopes are checked if cleanup or template parameter
4109 scope is encountered.
4111 Unlike lookup_name_real, we make sure that NAME is actually
4112 declared in the desired scope, not from inheritance, nor using
4113 directive. For using declaration, there is DR138 still waiting
4114 to be resolved. Hidden name coming from an earlier friend
4115 declaration is also returned.
4117 A TYPE_DECL best matching the NAME is returned. Catching error
4118 and issuing diagnostics are caller's responsibility. */
4121 lookup_type_scope (tree name
, tag_scope scope
)
4123 cxx_binding
*iter
= NULL
;
4124 tree val
= NULL_TREE
;
4126 timevar_push (TV_NAME_LOOKUP
);
4128 /* Look in non-namespace scope first. */
4129 if (current_binding_level
->kind
!= sk_namespace
)
4130 iter
= outer_binding (name
, NULL
, /*class_p=*/ true);
4131 for (; iter
; iter
= outer_binding (name
, iter
, /*class_p=*/ true))
4133 /* Check if this is the kind of thing we're looking for.
4134 If SCOPE is TS_CURRENT, also make sure it doesn't come from
4135 base class. For ITER->VALUE, we can simply use
4136 INHERITED_VALUE_BINDING_P. For ITER->TYPE, we have to use
4139 We check ITER->TYPE before ITER->VALUE in order to handle
4140 typedef struct C {} C;
4143 if (qualify_lookup (iter
->type
, LOOKUP_PREFER_TYPES
)
4144 && (scope
!= ts_current
4145 || LOCAL_BINDING_P (iter
)
4146 || DECL_CONTEXT (iter
->type
) == iter
->scope
->this_entity
))
4148 else if ((scope
!= ts_current
4149 || !INHERITED_VALUE_BINDING_P (iter
))
4150 && qualify_lookup (iter
->value
, LOOKUP_PREFER_TYPES
))
4157 /* Look in namespace scope. */
4160 iter
= cxx_scope_find_binding_for_name
4161 (NAMESPACE_LEVEL (current_decl_namespace ()), name
);
4165 /* If this is the kind of thing we're looking for, we're done. */
4166 if (qualify_lookup (iter
->type
, LOOKUP_PREFER_TYPES
))
4168 else if (qualify_lookup (iter
->value
, LOOKUP_PREFER_TYPES
))
4174 /* Type found, check if it is in the allowed scopes, ignoring cleanup
4175 and template parameter scopes. */
4178 struct cp_binding_level
*b
= current_binding_level
;
4181 if (iter
->scope
== b
)
4182 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, val
);
4184 if (b
->kind
== sk_cleanup
|| b
->kind
== sk_template_parms
)
4186 else if (b
->kind
== sk_class
4187 && scope
== ts_within_enclosing_non_class
)
4194 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, NULL_TREE
);
4197 /* Similar to `lookup_name' but look only in the innermost non-class
4201 lookup_name_innermost_nonclass_level (tree name
)
4203 struct cp_binding_level
*b
;
4206 timevar_push (TV_NAME_LOOKUP
);
4207 b
= innermost_nonclass_level ();
4209 if (b
->kind
== sk_namespace
)
4211 t
= IDENTIFIER_NAMESPACE_VALUE (name
);
4213 /* extern "C" function() */
4214 if (t
!= NULL_TREE
&& TREE_CODE (t
) == TREE_LIST
)
4217 else if (IDENTIFIER_BINDING (name
)
4218 && LOCAL_BINDING_P (IDENTIFIER_BINDING (name
)))
4220 cxx_binding
*binding
;
4221 binding
= IDENTIFIER_BINDING (name
);
4224 if (binding
->scope
== b
4225 && !(TREE_CODE (binding
->value
) == VAR_DECL
4226 && DECL_DEAD_FOR_LOCAL (binding
->value
)))
4227 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, binding
->value
);
4229 if (b
->kind
== sk_cleanup
)
4236 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, t
);
4239 /* Like lookup_name_innermost_nonclass_level, but for types. */
4242 lookup_type_current_level (tree name
)
4246 timevar_push (TV_NAME_LOOKUP
);
4247 gcc_assert (current_binding_level
->kind
!= sk_namespace
);
4249 if (REAL_IDENTIFIER_TYPE_VALUE (name
) != NULL_TREE
4250 && REAL_IDENTIFIER_TYPE_VALUE (name
) != global_type_node
)
4252 struct cp_binding_level
*b
= current_binding_level
;
4255 if (purpose_member (name
, b
->type_shadowed
))
4256 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
,
4257 REAL_IDENTIFIER_TYPE_VALUE (name
));
4258 if (b
->kind
== sk_cleanup
)
4265 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, t
);
4268 /* [basic.lookup.koenig] */
4269 /* A nonzero return value in the functions below indicates an error. */
4280 static bool arg_assoc (struct arg_lookup
*, tree
);
4281 static bool arg_assoc_args (struct arg_lookup
*, tree
);
4282 static bool arg_assoc_type (struct arg_lookup
*, tree
);
4283 static bool add_function (struct arg_lookup
*, tree
);
4284 static bool arg_assoc_namespace (struct arg_lookup
*, tree
);
4285 static bool arg_assoc_class (struct arg_lookup
*, tree
);
4286 static bool arg_assoc_template_arg (struct arg_lookup
*, tree
);
4288 /* Add a function to the lookup structure.
4289 Returns true on error. */
4292 add_function (struct arg_lookup
*k
, tree fn
)
4294 /* We used to check here to see if the function was already in the list,
4295 but that's O(n^2), which is just too expensive for function lookup.
4296 Now we deal with the occasional duplicate in joust. In doing this, we
4297 assume that the number of duplicates will be small compared to the
4298 total number of functions being compared, which should usually be the
4301 /* We must find only functions, or exactly one non-function. */
4304 else if (fn
== k
->functions
)
4306 else if (is_overloaded_fn (k
->functions
) && is_overloaded_fn (fn
))
4307 k
->functions
= build_overload (fn
, k
->functions
);
4310 tree f1
= OVL_CURRENT (k
->functions
);
4312 if (is_overloaded_fn (f1
))
4314 fn
= f1
; f1
= f2
; f2
= fn
;
4316 error ("%q+D is not a function,", f1
);
4317 error (" conflict with %q+D", f2
);
4318 error (" in call to %qD", k
->name
);
4325 /* Returns true iff CURRENT has declared itself to be an associated
4326 namespace of SCOPE via a strong using-directive (or transitive chain
4327 thereof). Both are namespaces. */
4330 is_associated_namespace (tree current
, tree scope
)
4332 tree seen
= NULL_TREE
;
4333 tree todo
= NULL_TREE
;
4337 if (scope
== current
)
4339 seen
= tree_cons (scope
, NULL_TREE
, seen
);
4340 for (t
= DECL_NAMESPACE_ASSOCIATIONS (scope
); t
; t
= TREE_CHAIN (t
))
4341 if (!purpose_member (TREE_PURPOSE (t
), seen
))
4342 todo
= tree_cons (TREE_PURPOSE (t
), NULL_TREE
, todo
);
4345 scope
= TREE_PURPOSE (todo
);
4346 todo
= TREE_CHAIN (todo
);
4353 /* Return whether FN is a friend of an associated class of ARG. */
4356 friend_of_associated_class_p (tree arg
, tree fn
)
4362 else if (type_unknown_p (arg
))
4365 type
= TREE_TYPE (arg
);
4367 /* If TYPE is a class, the class itself and all base classes are
4368 associated classes. */
4369 if (CLASS_TYPE_P (type
))
4371 if (is_friend (type
, fn
))
4374 if (TYPE_BINFO (type
))
4376 tree binfo
, base_binfo
;
4379 for (binfo
= TYPE_BINFO (type
), i
= 0;
4380 BINFO_BASE_ITERATE (binfo
, i
, base_binfo
);
4382 if (is_friend (BINFO_TYPE (base_binfo
), fn
))
4387 /* If TYPE is a class member, the class of which it is a member is
4388 an associated class. */
4389 if ((CLASS_TYPE_P (type
)
4390 || TREE_CODE (type
) == UNION_TYPE
4391 || TREE_CODE (type
) == ENUMERAL_TYPE
)
4392 && TYPE_CONTEXT (type
)
4393 && CLASS_TYPE_P (TYPE_CONTEXT (type
))
4394 && is_friend (TYPE_CONTEXT (type
), fn
))
4400 /* Add functions of a namespace to the lookup structure.
4401 Returns true on error. */
4404 arg_assoc_namespace (struct arg_lookup
*k
, tree scope
)
4408 if (purpose_member (scope
, k
->namespaces
))
4410 k
->namespaces
= tree_cons (scope
, NULL_TREE
, k
->namespaces
);
4412 /* Check out our super-users. */
4413 for (value
= DECL_NAMESPACE_ASSOCIATIONS (scope
); value
;
4414 value
= TREE_CHAIN (value
))
4415 if (arg_assoc_namespace (k
, TREE_PURPOSE (value
)))
4418 value
= namespace_binding (k
->name
, scope
);
4422 for (; value
; value
= OVL_NEXT (value
))
4424 /* We don't want to find arbitrary hidden functions via argument
4425 dependent lookup. We only want to find friends of associated
4427 if (hidden_name_p (OVL_CURRENT (value
)))
4431 for (args
= k
->args
; args
; args
= TREE_CHAIN (args
))
4432 if (friend_of_associated_class_p (TREE_VALUE (args
),
4433 OVL_CURRENT (value
)))
4439 if (add_function (k
, OVL_CURRENT (value
)))
4446 /* Adds everything associated with a template argument to the lookup
4447 structure. Returns true on error. */
4450 arg_assoc_template_arg (struct arg_lookup
*k
, tree arg
)
4452 /* [basic.lookup.koenig]
4454 If T is a template-id, its associated namespaces and classes are
4455 ... the namespaces and classes associated with the types of the
4456 template arguments provided for template type parameters
4457 (excluding template template parameters); the namespaces in which
4458 any template template arguments are defined; and the classes in
4459 which any member templates used as template template arguments
4460 are defined. [Note: non-type template arguments do not
4461 contribute to the set of associated namespaces. ] */
4463 /* Consider first template template arguments. */
4464 if (TREE_CODE (arg
) == TEMPLATE_TEMPLATE_PARM
4465 || TREE_CODE (arg
) == UNBOUND_CLASS_TEMPLATE
)
4467 else if (TREE_CODE (arg
) == TEMPLATE_DECL
)
4469 tree ctx
= CP_DECL_CONTEXT (arg
);
4471 /* It's not a member template. */
4472 if (TREE_CODE (ctx
) == NAMESPACE_DECL
)
4473 return arg_assoc_namespace (k
, ctx
);
4474 /* Otherwise, it must be member template. */
4476 return arg_assoc_class (k
, ctx
);
4478 /* It's not a template template argument, but it is a type template
4480 else if (TYPE_P (arg
))
4481 return arg_assoc_type (k
, arg
);
4482 /* It's a non-type template argument. */
4487 /* Adds everything associated with class to the lookup structure.
4488 Returns true on error. */
4491 arg_assoc_class (struct arg_lookup
*k
, tree type
)
4493 tree list
, friends
, context
;
4496 /* Backend build structures, such as __builtin_va_list, aren't
4497 affected by all this. */
4498 if (!CLASS_TYPE_P (type
))
4501 if (purpose_member (type
, k
->classes
))
4503 k
->classes
= tree_cons (type
, NULL_TREE
, k
->classes
);
4505 context
= decl_namespace_context (type
);
4506 if (arg_assoc_namespace (k
, context
))
4509 if (TYPE_BINFO (type
))
4511 /* Process baseclasses. */
4512 tree binfo
, base_binfo
;
4514 for (binfo
= TYPE_BINFO (type
), i
= 0;
4515 BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
4516 if (arg_assoc_class (k
, BINFO_TYPE (base_binfo
)))
4520 /* Process friends. */
4521 for (list
= DECL_FRIENDLIST (TYPE_MAIN_DECL (type
)); list
;
4522 list
= TREE_CHAIN (list
))
4523 if (k
->name
== FRIEND_NAME (list
))
4524 for (friends
= FRIEND_DECLS (list
); friends
;
4525 friends
= TREE_CHAIN (friends
))
4527 tree fn
= TREE_VALUE (friends
);
4529 /* Only interested in global functions with potentially hidden
4530 (i.e. unqualified) declarations. */
4531 if (CP_DECL_CONTEXT (fn
) != context
)
4533 /* Template specializations are never found by name lookup.
4534 (Templates themselves can be found, but not template
4535 specializations.) */
4536 if (TREE_CODE (fn
) == FUNCTION_DECL
&& DECL_USE_TEMPLATE (fn
))
4538 if (add_function (k
, fn
))
4542 /* Process template arguments. */
4543 if (CLASSTYPE_TEMPLATE_INFO (type
)
4544 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type
)))
4546 list
= INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type
));
4547 for (i
= 0; i
< TREE_VEC_LENGTH (list
); ++i
)
4548 arg_assoc_template_arg (k
, TREE_VEC_ELT (list
, i
));
4554 /* Adds everything associated with a given type.
4555 Returns 1 on error. */
4558 arg_assoc_type (struct arg_lookup
*k
, tree type
)
4560 /* As we do not get the type of non-type dependent expressions
4561 right, we can end up with such things without a type. */
4565 if (TYPE_PTRMEM_P (type
))
4567 /* Pointer to member: associate class type and value type. */
4568 if (arg_assoc_type (k
, TYPE_PTRMEM_CLASS_TYPE (type
)))
4570 return arg_assoc_type (k
, TYPE_PTRMEM_POINTED_TO_TYPE (type
));
4572 else switch (TREE_CODE (type
))
4584 if (TYPE_PTRMEMFUNC_P (type
))
4585 return arg_assoc_type (k
, TYPE_PTRMEMFUNC_FN_TYPE (type
));
4586 return arg_assoc_class (k
, type
);
4588 case REFERENCE_TYPE
:
4590 return arg_assoc_type (k
, TREE_TYPE (type
));
4593 return arg_assoc_namespace (k
, decl_namespace_context (type
));
4595 /* The basetype is referenced in the first arg type, so just
4598 /* Associate the parameter types. */
4599 if (arg_assoc_args (k
, TYPE_ARG_TYPES (type
)))
4601 /* Associate the return type. */
4602 return arg_assoc_type (k
, TREE_TYPE (type
));
4603 case TEMPLATE_TYPE_PARM
:
4604 case BOUND_TEMPLATE_TEMPLATE_PARM
:
4609 gcc_assert (type
== unknown_type_node
);
4611 case TYPE_PACK_EXPANSION
:
4612 return arg_assoc_type (k
, PACK_EXPANSION_PATTERN (type
));
4613 case TYPE_ARGUMENT_PACK
:
4615 tree args
= ARGUMENT_PACK_ARGS (type
);
4616 int i
, len
= TREE_VEC_LENGTH (args
);
4617 for (i
= 0; i
< len
; i
++)
4618 if (arg_assoc_type (k
, TREE_VEC_ELT (args
, i
)))
4629 /* Adds everything associated with arguments. Returns true on error. */
4632 arg_assoc_args (struct arg_lookup
*k
, tree args
)
4634 for (; args
; args
= TREE_CHAIN (args
))
4635 if (arg_assoc (k
, TREE_VALUE (args
)))
4640 /* Adds everything associated with a given tree_node. Returns 1 on error. */
4643 arg_assoc (struct arg_lookup
*k
, tree n
)
4645 if (n
== error_mark_node
)
4649 return arg_assoc_type (k
, n
);
4651 if (! type_unknown_p (n
))
4652 return arg_assoc_type (k
, TREE_TYPE (n
));
4654 if (TREE_CODE (n
) == ADDR_EXPR
)
4655 n
= TREE_OPERAND (n
, 0);
4656 if (TREE_CODE (n
) == COMPONENT_REF
)
4657 n
= TREE_OPERAND (n
, 1);
4658 if (TREE_CODE (n
) == OFFSET_REF
)
4659 n
= TREE_OPERAND (n
, 1);
4660 while (TREE_CODE (n
) == TREE_LIST
)
4662 if (TREE_CODE (n
) == BASELINK
)
4663 n
= BASELINK_FUNCTIONS (n
);
4665 if (TREE_CODE (n
) == FUNCTION_DECL
)
4666 return arg_assoc_type (k
, TREE_TYPE (n
));
4667 if (TREE_CODE (n
) == TEMPLATE_ID_EXPR
)
4669 /* [basic.lookup.koenig]
4671 If T is a template-id, its associated namespaces and classes
4672 are the namespace in which the template is defined; for
4673 member templates, the member template's class... */
4674 tree
template = TREE_OPERAND (n
, 0);
4675 tree args
= TREE_OPERAND (n
, 1);
4679 if (TREE_CODE (template) == COMPONENT_REF
)
4680 template = TREE_OPERAND (template, 1);
4682 /* First, the template. There may actually be more than one if
4683 this is an overloaded function template. But, in that case,
4684 we only need the first; all the functions will be in the same
4686 template = OVL_CURRENT (template);
4688 ctx
= CP_DECL_CONTEXT (template);
4690 if (TREE_CODE (ctx
) == NAMESPACE_DECL
)
4692 if (arg_assoc_namespace (k
, ctx
) == 1)
4695 /* It must be a member template. */
4696 else if (arg_assoc_class (k
, ctx
) == 1)
4699 /* Now the arguments. */
4701 for (ix
= TREE_VEC_LENGTH (args
); ix
--;)
4702 if (arg_assoc_template_arg (k
, TREE_VEC_ELT (args
, ix
)) == 1)
4705 else if (TREE_CODE (n
) == OVERLOAD
)
4707 for (; n
; n
= OVL_CHAIN (n
))
4708 if (arg_assoc_type (k
, TREE_TYPE (OVL_FUNCTION (n
))))
4715 /* Performs Koenig lookup depending on arguments, where fns
4716 are the functions found in normal lookup. */
4719 lookup_arg_dependent (tree name
, tree fns
, tree args
)
4721 struct arg_lookup k
;
4723 timevar_push (TV_NAME_LOOKUP
);
4725 /* Remove any hidden friend functions from the list of functions
4726 found so far. They will be added back by arg_assoc_class as
4728 fns
= remove_hidden_names (fns
);
4733 k
.classes
= NULL_TREE
;
4735 /* We previously performed an optimization here by setting
4736 NAMESPACES to the current namespace when it was safe. However, DR
4737 164 says that namespaces that were already searched in the first
4738 stage of template processing are searched again (potentially
4739 picking up later definitions) in the second stage. */
4740 k
.namespaces
= NULL_TREE
;
4742 arg_assoc_args (&k
, args
);
4747 && TREE_CODE (fns
) != VAR_DECL
4748 && !is_overloaded_fn (fns
))
4750 error ("argument dependent lookup finds %q+D", fns
);
4751 error (" in call to %qD", name
);
4752 fns
= error_mark_node
;
4755 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, fns
);
4758 /* Add namespace to using_directives. Return NULL_TREE if nothing was
4759 changed (i.e. there was already a directive), or the fresh
4760 TREE_LIST otherwise. */
4763 push_using_directive (tree used
)
4765 tree ud
= current_binding_level
->using_directives
;
4766 tree iter
, ancestor
;
4768 timevar_push (TV_NAME_LOOKUP
);
4769 /* Check if we already have this. */
4770 if (purpose_member (used
, ud
) != NULL_TREE
)
4771 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, NULL_TREE
);
4773 ancestor
= namespace_ancestor (current_decl_namespace (), used
);
4774 ud
= current_binding_level
->using_directives
;
4775 ud
= tree_cons (used
, ancestor
, ud
);
4776 current_binding_level
->using_directives
= ud
;
4778 /* Recursively add all namespaces used. */
4779 for (iter
= DECL_NAMESPACE_USING (used
); iter
; iter
= TREE_CHAIN (iter
))
4780 push_using_directive (TREE_PURPOSE (iter
));
4782 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, ud
);
4785 /* The type TYPE is being declared. If it is a class template, or a
4786 specialization of a class template, do any processing required and
4787 perform error-checking. If IS_FRIEND is nonzero, this TYPE is
4788 being declared a friend. B is the binding level at which this TYPE
4791 Returns the TYPE_DECL for TYPE, which may have been altered by this
4795 maybe_process_template_type_declaration (tree type
, int is_friend
,
4798 tree decl
= TYPE_NAME (type
);
4800 if (processing_template_parmlist
)
4801 /* You can't declare a new template type in a template parameter
4802 list. But, you can declare a non-template type:
4804 template <class A*> struct S;
4806 is a forward-declaration of `A'. */
4808 else if (b
->kind
== sk_namespace
4809 && current_binding_level
->kind
!= sk_namespace
)
4810 /* If this new type is being injected into a containing scope,
4811 then it's not a template type. */
4815 gcc_assert (IS_AGGR_TYPE (type
) || TREE_CODE (type
) == ENUMERAL_TYPE
);
4817 if (processing_template_decl
)
4819 /* This may change after the call to
4820 push_template_decl_real, but we want the original value. */
4821 tree name
= DECL_NAME (decl
);
4823 decl
= push_template_decl_real (decl
, is_friend
);
4824 /* If the current binding level is the binding level for the
4825 template parameters (see the comment in
4826 begin_template_parm_list) and the enclosing level is a class
4827 scope, and we're not looking at a friend, push the
4828 declaration of the member class into the class scope. In the
4829 friend case, push_template_decl will already have put the
4830 friend into global scope, if appropriate. */
4831 if (TREE_CODE (type
) != ENUMERAL_TYPE
4832 && !is_friend
&& b
->kind
== sk_template_parms
4833 && b
->level_chain
->kind
== sk_class
)
4835 finish_member_declaration (CLASSTYPE_TI_TEMPLATE (type
));
4837 if (!COMPLETE_TYPE_P (current_class_type
))
4839 maybe_add_class_template_decl_list (current_class_type
,
4840 type
, /*friend_p=*/0);
4841 /* Put this UTD in the table of UTDs for the class. */
4842 if (CLASSTYPE_NESTED_UTDS (current_class_type
) == NULL
)
4843 CLASSTYPE_NESTED_UTDS (current_class_type
) =
4844 binding_table_new (SCOPE_DEFAULT_HT_SIZE
);
4846 binding_table_insert
4847 (CLASSTYPE_NESTED_UTDS (current_class_type
), name
, type
);
4856 /* Push a tag name NAME for struct/class/union/enum type TYPE. In case
4857 that the NAME is a class template, the tag is processed but not pushed.
4859 The pushed scope depend on the SCOPE parameter:
4860 - When SCOPE is TS_CURRENT, put it into the inner-most non-sk_cleanup
4862 - When SCOPE is TS_GLOBAL, put it in the inner-most non-class and
4863 non-template-parameter scope. This case is needed for forward
4865 - When SCOPE is TS_WITHIN_ENCLOSING_NON_CLASS, this is similar to
4866 TS_GLOBAL case except that names within template-parameter scopes
4867 are not pushed at all.
4869 Returns TYPE upon success and ERROR_MARK_NODE otherwise. */
4872 pushtag (tree name
, tree type
, tag_scope scope
)
4874 struct cp_binding_level
*b
;
4877 timevar_push (TV_NAME_LOOKUP
);
4878 b
= current_binding_level
;
4879 while (/* Cleanup scopes are not scopes from the point of view of
4881 b
->kind
== sk_cleanup
4882 /* Neither are the scopes used to hold template parameters
4883 for an explicit specialization. For an ordinary template
4884 declaration, these scopes are not scopes from the point of
4885 view of the language. */
4886 || (b
->kind
== sk_template_parms
4887 && (b
->explicit_spec_p
|| scope
== ts_global
))
4888 || (b
->kind
== sk_class
4889 && (scope
!= ts_current
4890 /* We may be defining a new type in the initializer
4891 of a static member variable. We allow this when
4892 not pedantic, and it is particularly useful for
4893 type punning via an anonymous union. */
4894 || COMPLETE_TYPE_P (b
->this_entity
))))
4897 gcc_assert (TREE_CODE (name
) == IDENTIFIER_NODE
);
4899 /* Do C++ gratuitous typedefing. */
4900 if (IDENTIFIER_TYPE_VALUE (name
) != type
)
4904 tree context
= TYPE_CONTEXT (type
);
4908 tree cs
= current_scope ();
4910 if (scope
== ts_current
)
4912 else if (cs
!= NULL_TREE
&& TYPE_P (cs
))
4913 /* When declaring a friend class of a local class, we want
4914 to inject the newly named class into the scope
4915 containing the local class, not the namespace
4917 context
= decl_function_context (get_type_decl (cs
));
4920 context
= current_namespace
;
4922 if (b
->kind
== sk_class
4923 || (b
->kind
== sk_template_parms
4924 && b
->level_chain
->kind
== sk_class
))
4927 if (current_lang_name
== lang_name_java
)
4928 TYPE_FOR_JAVA (type
) = 1;
4930 tdef
= create_implicit_typedef (name
, type
);
4931 DECL_CONTEXT (tdef
) = FROB_CONTEXT (context
);
4932 if (scope
== ts_within_enclosing_non_class
)
4934 /* This is a friend. Make this TYPE_DECL node hidden from
4935 ordinary name lookup. Its corresponding TEMPLATE_DECL
4936 will be marked in push_template_decl_real. */
4937 retrofit_lang_decl (tdef
);
4938 DECL_ANTICIPATED (tdef
) = 1;
4939 DECL_FRIEND_P (tdef
) = 1;
4942 decl
= maybe_process_template_type_declaration
4943 (type
, scope
== ts_within_enclosing_non_class
, b
);
4944 if (decl
== error_mark_node
)
4945 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, decl
);
4947 if (b
->kind
== sk_class
)
4949 if (!PROCESSING_REAL_TEMPLATE_DECL_P ())
4950 /* Put this TYPE_DECL on the TYPE_FIELDS list for the
4951 class. But if it's a member template class, we want
4952 the TEMPLATE_DECL, not the TYPE_DECL, so this is done
4954 finish_member_declaration (decl
);
4956 pushdecl_class_level (decl
);
4958 else if (b
->kind
!= sk_template_parms
)
4960 decl
= pushdecl_with_scope (decl
, b
, /*is_friend=*/false);
4961 if (decl
== error_mark_node
)
4962 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, decl
);
4966 set_identifier_type_value_with_scope (name
, tdef
, b
);
4968 TYPE_CONTEXT (type
) = DECL_CONTEXT (decl
);
4970 /* If this is a local class, keep track of it. We need this
4971 information for name-mangling, and so that it is possible to
4972 find all function definitions in a translation unit in a
4973 convenient way. (It's otherwise tricky to find a member
4974 function definition it's only pointed to from within a local
4976 if (TYPE_CONTEXT (type
)
4977 && TREE_CODE (TYPE_CONTEXT (type
)) == FUNCTION_DECL
)
4978 VEC_safe_push (tree
, gc
, local_classes
, type
);
4980 if (b
->kind
== sk_class
4981 && !COMPLETE_TYPE_P (current_class_type
))
4983 maybe_add_class_template_decl_list (current_class_type
,
4984 type
, /*friend_p=*/0);
4986 if (CLASSTYPE_NESTED_UTDS (current_class_type
) == NULL
)
4987 CLASSTYPE_NESTED_UTDS (current_class_type
)
4988 = binding_table_new (SCOPE_DEFAULT_HT_SIZE
);
4990 binding_table_insert
4991 (CLASSTYPE_NESTED_UTDS (current_class_type
), name
, type
);
4994 decl
= TYPE_NAME (type
);
4995 gcc_assert (TREE_CODE (decl
) == TYPE_DECL
);
4996 TYPE_STUB_DECL (type
) = decl
;
4998 /* Set type visibility now if this is a forward declaration. */
4999 TREE_PUBLIC (decl
) = 1;
5000 determine_visibility (decl
);
5002 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP
, type
);
5005 /* Subroutines for reverting temporarily to top-level for instantiation
5006 of templates and such. We actually need to clear out the class- and
5007 local-value slots of all identifiers, so that only the global values
5008 are at all visible. Simply setting current_binding_level to the global
5009 scope isn't enough, because more binding levels may be pushed. */
5010 struct saved_scope
*scope_chain
;
5012 /* If ID has not already been marked, add an appropriate binding to
5016 store_binding (tree id
, VEC(cxx_saved_binding
,gc
) **old_bindings
)
5018 cxx_saved_binding
*saved
;
5020 if (!id
|| !IDENTIFIER_BINDING (id
))
5023 if (IDENTIFIER_MARKED (id
))
5026 IDENTIFIER_MARKED (id
) = 1;
5028 saved
= VEC_safe_push (cxx_saved_binding
, gc
, *old_bindings
, NULL
);
5029 saved
->identifier
= id
;
5030 saved
->binding
= IDENTIFIER_BINDING (id
);
5031 saved
->real_type_value
= REAL_IDENTIFIER_TYPE_VALUE (id
);
5032 IDENTIFIER_BINDING (id
) = NULL
;
5036 store_bindings (tree names
, VEC(cxx_saved_binding
,gc
) **old_bindings
)
5040 timevar_push (TV_NAME_LOOKUP
);
5041 for (t
= names
; t
; t
= TREE_CHAIN (t
))
5045 if (TREE_CODE (t
) == TREE_LIST
)
5046 id
= TREE_PURPOSE (t
);
5050 store_binding (id
, old_bindings
);
5052 timevar_pop (TV_NAME_LOOKUP
);
5055 /* Like store_bindings, but NAMES is a vector of cp_class_binding
5056 objects, rather than a TREE_LIST. */
5059 store_class_bindings (VEC(cp_class_binding
,gc
) *names
,
5060 VEC(cxx_saved_binding
,gc
) **old_bindings
)
5063 cp_class_binding
*cb
;
5065 timevar_push (TV_NAME_LOOKUP
);
5066 for (i
= 0; VEC_iterate(cp_class_binding
, names
, i
, cb
); ++i
)
5067 store_binding (cb
->identifier
, old_bindings
);
5068 timevar_pop (TV_NAME_LOOKUP
);
5072 push_to_top_level (void)
5074 struct saved_scope
*s
;
5075 struct cp_binding_level
*b
;
5076 cxx_saved_binding
*sb
;
5080 timevar_push (TV_NAME_LOOKUP
);
5081 s
= GGC_CNEW (struct saved_scope
);
5083 b
= scope_chain
? current_binding_level
: 0;
5085 /* If we're in the middle of some function, save our state. */
5089 push_function_context_to (NULL_TREE
);
5094 if (scope_chain
&& previous_class_level
)
5095 store_class_bindings (previous_class_level
->class_shadowed
,
5098 /* Have to include the global scope, because class-scope decls
5099 aren't listed anywhere useful. */
5100 for (; b
; b
= b
->level_chain
)
5104 /* Template IDs are inserted into the global level. If they were
5105 inserted into namespace level, finish_file wouldn't find them
5106 when doing pending instantiations. Therefore, don't stop at
5107 namespace level, but continue until :: . */
5108 if (global_scope_p (b
))
5111 store_bindings (b
->names
, &s
->old_bindings
);
5112 /* We also need to check class_shadowed to save class-level type
5113 bindings, since pushclass doesn't fill in b->names. */
5114 if (b
->kind
== sk_class
)
5115 store_class_bindings (b
->class_shadowed
, &s
->old_bindings
);
5117 /* Unwind type-value slots back to top level. */
5118 for (t
= b
->type_shadowed
; t
; t
= TREE_CHAIN (t
))
5119 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (t
), TREE_VALUE (t
));
5122 for (i
= 0; VEC_iterate (cxx_saved_binding
, s
->old_bindings
, i
, sb
); ++i
)
5123 IDENTIFIER_MARKED (sb
->identifier
) = 0;
5125 s
->prev
= scope_chain
;
5127 s
->need_pop_function_context
= need_pop
;
5128 s
->function_decl
= current_function_decl
;
5129 s
->skip_evaluation
= skip_evaluation
;
5132 current_function_decl
= NULL_TREE
;
5133 current_lang_base
= VEC_alloc (tree
, gc
, 10);
5134 current_lang_name
= lang_name_cplusplus
;
5135 current_namespace
= global_namespace
;
5136 push_class_stack ();
5137 skip_evaluation
= 0;
5138 timevar_pop (TV_NAME_LOOKUP
);
5142 pop_from_top_level (void)
5144 struct saved_scope
*s
= scope_chain
;
5145 cxx_saved_binding
*saved
;
5148 timevar_push (TV_NAME_LOOKUP
);
5149 /* Clear out class-level bindings cache. */
5150 if (previous_class_level
)
5151 invalidate_class_lookup_cache ();
5154 current_lang_base
= 0;
5156 scope_chain
= s
->prev
;
5157 for (i
= 0; VEC_iterate (cxx_saved_binding
, s
->old_bindings
, i
, saved
); ++i
)
5159 tree id
= saved
->identifier
;
5161 IDENTIFIER_BINDING (id
) = saved
->binding
;
5162 SET_IDENTIFIER_TYPE_VALUE (id
, saved
->real_type_value
);
5165 /* If we were in the middle of compiling a function, restore our
5167 if (s
->need_pop_function_context
)
5168 pop_function_context_from (NULL_TREE
);
5169 current_function_decl
= s
->function_decl
;
5170 skip_evaluation
= s
->skip_evaluation
;
5171 timevar_pop (TV_NAME_LOOKUP
);
5174 /* Pop off extraneous binding levels left over due to syntax errors.
5176 We don't pop past namespaces, as they might be valid. */
5179 pop_everything (void)
5181 if (ENABLE_SCOPE_CHECKING
)
5182 verbatim ("XXX entering pop_everything ()\n");
5183 while (!toplevel_bindings_p ())
5185 if (current_binding_level
->kind
== sk_class
)
5186 pop_nested_class ();
5190 if (ENABLE_SCOPE_CHECKING
)
5191 verbatim ("XXX leaving pop_everything ()\n");
5194 /* Emit debugging information for using declarations and directives.
5195 If input tree is overloaded fn then emit debug info for all
5199 cp_emit_debug_info_for_using (tree t
, tree context
)
5201 /* Don't try to emit any debug information if we have errors. */
5202 if (sorrycount
|| errorcount
)
5205 /* Ignore this FUNCTION_DECL if it refers to a builtin declaration
5206 of a builtin function. */
5207 if (TREE_CODE (t
) == FUNCTION_DECL
5208 && DECL_EXTERNAL (t
)
5209 && DECL_BUILT_IN (t
))
5212 /* Do not supply context to imported_module_or_decl, if
5213 it is a global namespace. */
5214 if (context
== global_namespace
)
5215 context
= NULL_TREE
;
5218 t
= BASELINK_FUNCTIONS (t
);
5220 /* FIXME: Handle TEMPLATE_DECLs. */
5221 for (t
= OVL_CURRENT (t
); t
; t
= OVL_NEXT (t
))
5222 if (TREE_CODE (t
) != TEMPLATE_DECL
)
5223 (*debug_hooks
->imported_module_or_decl
) (t
, context
);
5226 #include "gt-cp-name-lookup.h"