1 /* Definitions for C++ name lookup routines.
2 Copyright (C) 2003-2014 Free Software Foundation, Inc.
3 Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
27 #include "stringpool.h"
28 #include "print-tree.h"
31 #include "name-lookup.h"
33 #include "diagnostic-core.h"
36 #include "c-family/c-pragma.h"
38 #include "pointer-set.h"
40 /* The bindings for a particular name in a particular scope. */
42 struct scope_binding
{
46 #define EMPTY_SCOPE_BINDING { NULL_TREE, NULL_TREE }
48 static cp_binding_level
*innermost_nonclass_level (void);
49 static cxx_binding
*binding_for_name (cp_binding_level
*, tree
);
50 static tree
push_overloaded_decl (tree
, int, bool);
51 static bool lookup_using_namespace (tree
, struct scope_binding
*, tree
,
53 static bool qualified_lookup_using_namespace (tree
, tree
,
54 struct scope_binding
*, int);
55 static tree
lookup_type_current_level (tree
);
56 static tree
push_using_directive (tree
);
57 static tree
lookup_extern_c_fun_in_all_ns (tree
);
58 static void diagnose_name_conflict (tree
, tree
);
60 /* The :: namespace. */
62 tree global_namespace
;
64 /* The name of the anonymous namespace, throughout this translation
66 static GTY(()) tree anonymous_namespace_name
;
68 /* Initialize anonymous_namespace_name if necessary, and return it. */
71 get_anonymous_namespace_name (void)
73 if (!anonymous_namespace_name
)
75 /* We used to use get_file_function_name here, but that isn't
76 necessary now that anonymous namespace typeinfos
77 are !TREE_PUBLIC, and thus compared by address. */
78 /* The demangler expects anonymous namespaces to be called
79 something starting with '_GLOBAL__N_'. */
80 anonymous_namespace_name
= get_identifier ("_GLOBAL__N_1");
82 return anonymous_namespace_name
;
85 /* Compute the chain index of a binding_entry given the HASH value of its
86 name and the total COUNT of chains. COUNT is assumed to be a power
89 #define ENTRY_INDEX(HASH, COUNT) (((HASH) >> 3) & ((COUNT) - 1))
91 /* A free list of "binding_entry"s awaiting for re-use. */
93 static GTY((deletable
)) binding_entry free_binding_entry
= NULL
;
95 /* Create a binding_entry object for (NAME, TYPE). */
97 static inline binding_entry
98 binding_entry_make (tree name
, tree type
)
102 if (free_binding_entry
)
104 entry
= free_binding_entry
;
105 free_binding_entry
= entry
->chain
;
108 entry
= ggc_alloc_binding_entry_s ();
117 /* Put ENTRY back on the free list. */
120 binding_entry_free (binding_entry entry
)
124 entry
->chain
= free_binding_entry
;
125 free_binding_entry
= entry
;
129 /* The datatype used to implement the mapping from names to types at
131 struct GTY(()) binding_table_s
{
132 /* Array of chains of "binding_entry"s */
133 binding_entry
* GTY((length ("%h.chain_count"))) chain
;
135 /* The number of chains in this table. This is the length of the
136 member "chain" considered as an array. */
139 /* Number of "binding_entry"s in this table. */
143 /* Construct TABLE with an initial CHAIN_COUNT. */
146 binding_table_construct (binding_table table
, size_t chain_count
)
148 table
->chain_count
= chain_count
;
149 table
->entry_count
= 0;
150 table
->chain
= ggc_alloc_cleared_vec_binding_entry (table
->chain_count
);
153 /* Make TABLE's entries ready for reuse. */
156 binding_table_free (binding_table table
)
164 for (i
= 0, count
= table
->chain_count
; i
< count
; ++i
)
166 binding_entry temp
= table
->chain
[i
];
169 binding_entry entry
= temp
;
171 binding_entry_free (entry
);
173 table
->chain
[i
] = NULL
;
175 table
->entry_count
= 0;
179 /* Allocate a table with CHAIN_COUNT, assumed to be a power of two. */
181 static inline binding_table
182 binding_table_new (size_t chain_count
)
184 binding_table table
= ggc_alloc_binding_table_s ();
186 binding_table_construct (table
, chain_count
);
190 /* Expand TABLE to twice its current chain_count. */
193 binding_table_expand (binding_table table
)
195 const size_t old_chain_count
= table
->chain_count
;
196 const size_t old_entry_count
= table
->entry_count
;
197 const size_t new_chain_count
= 2 * old_chain_count
;
198 binding_entry
*old_chains
= table
->chain
;
201 binding_table_construct (table
, new_chain_count
);
202 for (i
= 0; i
< old_chain_count
; ++i
)
204 binding_entry entry
= old_chains
[i
];
205 for (; entry
!= NULL
; entry
= old_chains
[i
])
207 const unsigned int hash
= IDENTIFIER_HASH_VALUE (entry
->name
);
208 const size_t j
= ENTRY_INDEX (hash
, new_chain_count
);
210 old_chains
[i
] = entry
->chain
;
211 entry
->chain
= table
->chain
[j
];
212 table
->chain
[j
] = entry
;
215 table
->entry_count
= old_entry_count
;
218 /* Insert a binding for NAME to TYPE into TABLE. */
221 binding_table_insert (binding_table table
, tree name
, tree type
)
223 const unsigned int hash
= IDENTIFIER_HASH_VALUE (name
);
224 const size_t i
= ENTRY_INDEX (hash
, table
->chain_count
);
225 binding_entry entry
= binding_entry_make (name
, type
);
227 entry
->chain
= table
->chain
[i
];
228 table
->chain
[i
] = entry
;
229 ++table
->entry_count
;
231 if (3 * table
->chain_count
< 5 * table
->entry_count
)
232 binding_table_expand (table
);
235 /* Return the binding_entry, if any, that maps NAME. */
238 binding_table_find (binding_table table
, tree name
)
240 const unsigned int hash
= IDENTIFIER_HASH_VALUE (name
);
241 binding_entry entry
= table
->chain
[ENTRY_INDEX (hash
, table
->chain_count
)];
243 while (entry
!= NULL
&& entry
->name
!= name
)
244 entry
= entry
->chain
;
249 /* Apply PROC -- with DATA -- to all entries in TABLE. */
252 binding_table_foreach (binding_table table
, bt_foreach_proc proc
, void *data
)
260 chain_count
= table
->chain_count
;
261 for (i
= 0; i
< chain_count
; ++i
)
263 binding_entry entry
= table
->chain
[i
];
264 for (; entry
!= NULL
; entry
= entry
->chain
)
269 #ifndef ENABLE_SCOPE_CHECKING
270 # define ENABLE_SCOPE_CHECKING 0
272 # define ENABLE_SCOPE_CHECKING 1
275 /* A free list of "cxx_binding"s, connected by their PREVIOUS. */
277 static GTY((deletable
)) cxx_binding
*free_bindings
;
279 /* Initialize VALUE and TYPE field for BINDING, and set the PREVIOUS
283 cxx_binding_init (cxx_binding
*binding
, tree value
, tree type
)
285 binding
->value
= value
;
286 binding
->type
= type
;
287 binding
->previous
= NULL
;
290 /* (GC)-allocate a binding object with VALUE and TYPE member initialized. */
293 cxx_binding_make (tree value
, tree type
)
295 cxx_binding
*binding
;
298 binding
= free_bindings
;
299 free_bindings
= binding
->previous
;
302 binding
= ggc_alloc_cxx_binding ();
304 cxx_binding_init (binding
, value
, type
);
309 /* Put BINDING back on the free list. */
312 cxx_binding_free (cxx_binding
*binding
)
314 binding
->scope
= NULL
;
315 binding
->previous
= free_bindings
;
316 free_bindings
= binding
;
319 /* Create a new binding for NAME (with the indicated VALUE and TYPE
320 bindings) in the class scope indicated by SCOPE. */
323 new_class_binding (tree name
, tree value
, tree type
, cp_binding_level
*scope
)
325 cp_class_binding cb
= {cxx_binding_make (value
, type
), name
};
326 cxx_binding
*binding
= cb
.base
;
327 vec_safe_push (scope
->class_shadowed
, cb
);
328 binding
->scope
= scope
;
332 /* Make DECL the innermost binding for ID. The LEVEL is the binding
333 level at which this declaration is being bound. */
336 push_binding (tree id
, tree decl
, cp_binding_level
* level
)
338 cxx_binding
*binding
;
340 if (level
!= class_binding_level
)
342 binding
= cxx_binding_make (decl
, NULL_TREE
);
343 binding
->scope
= level
;
346 binding
= new_class_binding (id
, decl
, /*type=*/NULL_TREE
, level
);
348 /* Now, fill in the binding information. */
349 binding
->previous
= IDENTIFIER_BINDING (id
);
350 INHERITED_VALUE_BINDING_P (binding
) = 0;
351 LOCAL_BINDING_P (binding
) = (level
!= class_binding_level
);
353 /* And put it on the front of the list of bindings for ID. */
354 IDENTIFIER_BINDING (id
) = binding
;
357 /* Remove the binding for DECL which should be the innermost binding
361 pop_binding (tree id
, tree decl
)
363 cxx_binding
*binding
;
366 /* It's easiest to write the loops that call this function without
367 checking whether or not the entities involved have names. We
368 get here for such an entity. */
371 /* Get the innermost binding for ID. */
372 binding
= IDENTIFIER_BINDING (id
);
374 /* The name should be bound. */
375 gcc_assert (binding
!= NULL
);
377 /* The DECL will be either the ordinary binding or the type
378 binding for this identifier. Remove that binding. */
379 if (binding
->value
== decl
)
380 binding
->value
= NULL_TREE
;
383 gcc_assert (binding
->type
== decl
);
384 binding
->type
= NULL_TREE
;
387 if (!binding
->value
&& !binding
->type
)
389 /* We're completely done with the innermost binding for this
390 identifier. Unhook it from the list of bindings. */
391 IDENTIFIER_BINDING (id
) = binding
->previous
;
393 /* Add it to the free list. */
394 cxx_binding_free (binding
);
398 /* Remove the bindings for the decls of the current level and leave
399 the current scope. */
402 pop_bindings_and_leave_scope (void)
404 for (tree t
= getdecls (); t
; t
= DECL_CHAIN (t
))
405 pop_binding (DECL_NAME (t
), t
);
409 /* Strip non dependent using declarations. */
412 strip_using_decl (tree decl
)
414 if (decl
== NULL_TREE
)
417 while (TREE_CODE (decl
) == USING_DECL
&& !DECL_DEPENDENT_P (decl
))
418 decl
= USING_DECL_DECLS (decl
);
422 /* BINDING records an existing declaration for a name in the current scope.
423 But, DECL is another declaration for that same identifier in the
424 same scope. This is the `struct stat' hack whereby a non-typedef
425 class name or enum-name can be bound at the same level as some other
429 A class name (9.1) or enumeration name (7.2) can be hidden by the
430 name of an object, function, or enumerator declared in the same scope.
431 If a class or enumeration name and an object, function, or enumerator
432 are declared in the same scope (in any order) with the same name, the
433 class or enumeration name is hidden wherever the object, function, or
434 enumerator name is visible.
436 It's the responsibility of the caller to check that
437 inserting this name is valid here. Returns nonzero if the new binding
441 supplement_binding_1 (cxx_binding
*binding
, tree decl
)
443 tree bval
= binding
->value
;
445 tree target_bval
= strip_using_decl (bval
);
446 tree target_decl
= strip_using_decl (decl
);
448 if (TREE_CODE (target_decl
) == TYPE_DECL
&& DECL_ARTIFICIAL (target_decl
)
449 && target_decl
!= target_bval
450 && (TREE_CODE (target_bval
) != TYPE_DECL
451 /* We allow pushing an enum multiple times in a class
452 template in order to handle late matching of underlying
453 type on an opaque-enum-declaration followed by an
455 || (processing_template_decl
456 && TREE_CODE (TREE_TYPE (target_decl
)) == ENUMERAL_TYPE
457 && TREE_CODE (TREE_TYPE (target_bval
)) == ENUMERAL_TYPE
458 && (dependent_type_p (ENUM_UNDERLYING_TYPE
459 (TREE_TYPE (target_decl
)))
460 || dependent_type_p (ENUM_UNDERLYING_TYPE
461 (TREE_TYPE (target_bval
)))))))
462 /* The new name is the type name. */
463 binding
->type
= decl
;
464 else if (/* TARGET_BVAL is null when push_class_level_binding moves
465 an inherited type-binding out of the way to make room
466 for a new value binding. */
468 /* TARGET_BVAL is error_mark_node when TARGET_DECL's name
469 has been used in a non-class scope prior declaration.
470 In that case, we should have already issued a
471 diagnostic; for graceful error recovery purpose, pretend
472 this was the intended declaration for that name. */
473 || target_bval
== error_mark_node
474 /* If TARGET_BVAL is anticipated but has not yet been
475 declared, pretend it is not there at all. */
476 || (TREE_CODE (target_bval
) == FUNCTION_DECL
477 && DECL_ANTICIPATED (target_bval
)
478 && !DECL_HIDDEN_FRIEND_P (target_bval
)))
479 binding
->value
= decl
;
480 else if (TREE_CODE (target_bval
) == TYPE_DECL
481 && DECL_ARTIFICIAL (target_bval
)
482 && target_decl
!= target_bval
483 && (TREE_CODE (target_decl
) != TYPE_DECL
484 || same_type_p (TREE_TYPE (target_decl
),
485 TREE_TYPE (target_bval
))))
487 /* The old binding was a type name. It was placed in
488 VALUE field because it was thought, at the point it was
489 declared, to be the only entity with such a name. Move the
490 type name into the type slot; it is now hidden by the new
492 binding
->type
= bval
;
493 binding
->value
= decl
;
494 binding
->value_is_inherited
= false;
496 else if (TREE_CODE (target_bval
) == TYPE_DECL
497 && TREE_CODE (target_decl
) == TYPE_DECL
498 && DECL_NAME (target_decl
) == DECL_NAME (target_bval
)
499 && binding
->scope
->kind
!= sk_class
500 && (same_type_p (TREE_TYPE (target_decl
), TREE_TYPE (target_bval
))
501 /* If either type involves template parameters, we must
502 wait until instantiation. */
503 || uses_template_parms (TREE_TYPE (target_decl
))
504 || uses_template_parms (TREE_TYPE (target_bval
))))
505 /* We have two typedef-names, both naming the same type to have
506 the same name. In general, this is OK because of:
510 In a given scope, a typedef specifier can be used to redefine
511 the name of any type declared in that scope to refer to the
512 type to which it already refers.
514 However, in class scopes, this rule does not apply due to the
515 stricter language in [class.mem] prohibiting redeclarations of
518 /* There can be two block-scope declarations of the same variable,
519 so long as they are `extern' declarations. However, there cannot
520 be two declarations of the same static data member:
524 A member shall not be declared twice in the
525 member-specification. */
526 else if (VAR_P (target_decl
)
527 && VAR_P (target_bval
)
528 && DECL_EXTERNAL (target_decl
) && DECL_EXTERNAL (target_bval
)
529 && !DECL_CLASS_SCOPE_P (target_decl
))
531 duplicate_decls (decl
, binding
->value
, /*newdecl_is_friend=*/false);
534 else if (TREE_CODE (decl
) == NAMESPACE_DECL
535 && TREE_CODE (bval
) == NAMESPACE_DECL
536 && DECL_NAMESPACE_ALIAS (decl
)
537 && DECL_NAMESPACE_ALIAS (bval
)
538 && ORIGINAL_NAMESPACE (bval
) == ORIGINAL_NAMESPACE (decl
))
541 In a declarative region, a namespace-alias-definition can be
542 used to redefine a namespace-alias declared in that declarative
543 region to refer only to the namespace to which it already
548 diagnose_name_conflict (decl
, bval
);
555 /* Diagnose a name conflict between DECL and BVAL. */
558 diagnose_name_conflict (tree decl
, tree bval
)
560 if (TREE_CODE (decl
) == TREE_CODE (bval
)
561 && (TREE_CODE (decl
) != TYPE_DECL
562 || (DECL_ARTIFICIAL (decl
) && DECL_ARTIFICIAL (bval
))
563 || (!DECL_ARTIFICIAL (decl
) && !DECL_ARTIFICIAL (bval
)))
564 && !is_overloaded_fn (decl
))
565 error ("redeclaration of %q#D", decl
);
567 error ("%q#D conflicts with a previous declaration", decl
);
569 inform (input_location
, "previous declaration %q+#D", bval
);
572 /* Wrapper for supplement_binding_1. */
575 supplement_binding (cxx_binding
*binding
, tree decl
)
578 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
579 ret
= supplement_binding_1 (binding
, decl
);
580 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
584 /* Add DECL to the list of things declared in B. */
587 add_decl_to_level (tree decl
, cp_binding_level
*b
)
589 /* We used to record virtual tables as if they were ordinary
590 variables, but no longer do so. */
591 gcc_assert (!(VAR_P (decl
) && DECL_VIRTUAL_P (decl
)));
593 if (TREE_CODE (decl
) == NAMESPACE_DECL
594 && !DECL_NAMESPACE_ALIAS (decl
))
596 DECL_CHAIN (decl
) = b
->namespaces
;
597 b
->namespaces
= decl
;
601 /* We build up the list in reverse order, and reverse it later if
603 TREE_CHAIN (decl
) = b
->names
;
606 /* If appropriate, add decl to separate list of statics. We
607 include extern variables because they might turn out to be
608 static later. It's OK for this list to contain a few false
610 if (b
->kind
== sk_namespace
)
612 && (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
)))
613 || (TREE_CODE (decl
) == FUNCTION_DECL
614 && (!TREE_PUBLIC (decl
)
615 || decl_anon_ns_mem_p (decl
)
616 || DECL_DECLARED_INLINE_P (decl
))))
617 vec_safe_push (b
->static_decls
, decl
);
621 /* Record a decl-node X as belonging to the current lexical scope.
622 Check for errors (such as an incompatible declaration for the same
623 name already seen in the same scope). IS_FRIEND is true if X is
624 declared as a friend.
626 Returns either X or an old decl for the same name.
627 If an old decl is returned, it may have been smashed
628 to agree with what X says. */
631 pushdecl_maybe_friend_1 (tree x
, bool is_friend
)
635 int need_new_binding
;
637 if (x
== error_mark_node
)
638 return error_mark_node
;
640 need_new_binding
= 1;
642 if (DECL_TEMPLATE_PARM_P (x
))
643 /* Template parameters have no context; they are not X::T even
644 when declared within a class or namespace. */
648 if (current_function_decl
&& x
!= current_function_decl
649 /* A local declaration for a function doesn't constitute
651 && TREE_CODE (x
) != FUNCTION_DECL
652 /* A local declaration for an `extern' variable is in the
653 scope of the current namespace, not the current
655 && !(VAR_P (x
) && DECL_EXTERNAL (x
))
656 /* When parsing the parameter list of a function declarator,
657 don't set DECL_CONTEXT to an enclosing function. When we
658 push the PARM_DECLs in order to process the function body,
659 current_binding_level->this_entity will be set. */
660 && !(TREE_CODE (x
) == PARM_DECL
661 && current_binding_level
->kind
== sk_function_parms
662 && current_binding_level
->this_entity
== NULL
)
663 && !DECL_CONTEXT (x
))
664 DECL_CONTEXT (x
) = current_function_decl
;
666 /* If this is the declaration for a namespace-scope function,
667 but the declaration itself is in a local scope, mark the
669 if (TREE_CODE (x
) == FUNCTION_DECL
670 && DECL_NAMESPACE_SCOPE_P (x
)
671 && current_function_decl
672 && x
!= current_function_decl
)
673 DECL_LOCAL_FUNCTION_P (x
) = 1;
676 name
= DECL_NAME (x
);
679 int different_binding_level
= 0;
681 if (TREE_CODE (name
) == TEMPLATE_ID_EXPR
)
682 name
= TREE_OPERAND (name
, 0);
684 /* In case this decl was explicitly namespace-qualified, look it
685 up in its namespace context. */
686 if (DECL_NAMESPACE_SCOPE_P (x
) && namespace_bindings_p ())
687 t
= namespace_binding (name
, DECL_CONTEXT (x
));
689 t
= lookup_name_innermost_nonclass_level (name
);
691 /* [basic.link] If there is a visible declaration of an entity
692 with linkage having the same name and type, ignoring entities
693 declared outside the innermost enclosing namespace scope, the
694 block scope declaration declares that same entity and
695 receives the linkage of the previous declaration. */
696 if (! t
&& current_function_decl
&& x
!= current_function_decl
697 && VAR_OR_FUNCTION_DECL_P (x
)
698 && DECL_EXTERNAL (x
))
700 /* Look in block scope. */
701 t
= innermost_non_namespace_value (name
);
702 /* Or in the innermost namespace. */
704 t
= namespace_binding (name
, DECL_CONTEXT (x
));
705 /* Does it have linkage? Note that if this isn't a DECL, it's an
706 OVERLOAD, which is OK. */
707 if (t
&& DECL_P (t
) && ! (TREE_STATIC (t
) || DECL_EXTERNAL (t
)))
710 different_binding_level
= 1;
713 /* If we are declaring a function, and the result of name-lookup
714 was an OVERLOAD, look for an overloaded instance that is
715 actually the same as the function we are declaring. (If
716 there is one, we have to merge our declaration with the
717 previous declaration.) */
718 if (t
&& TREE_CODE (t
) == OVERLOAD
)
722 if (TREE_CODE (x
) == FUNCTION_DECL
)
723 for (match
= t
; match
; match
= OVL_NEXT (match
))
725 if (decls_match (OVL_CURRENT (match
), x
))
729 /* Just choose one. */
733 t
= OVL_CURRENT (match
);
738 if (t
&& t
!= error_mark_node
)
740 if (different_binding_level
)
742 if (decls_match (x
, t
))
743 /* The standard only says that the local extern
744 inherits linkage from the previous decl; in
745 particular, default args are not shared. Add
746 the decl into a hash table to make sure only
747 the previous decl in this case is seen by the
750 struct cxx_int_tree_map
*h
;
753 TREE_PUBLIC (x
) = TREE_PUBLIC (t
);
755 if (cp_function_chain
->extern_decl_map
== NULL
)
756 cp_function_chain
->extern_decl_map
757 = htab_create_ggc (20, cxx_int_tree_map_hash
,
758 cxx_int_tree_map_eq
, NULL
);
760 h
= ggc_alloc_cxx_int_tree_map ();
761 h
->uid
= DECL_UID (x
);
763 loc
= htab_find_slot_with_hash
764 (cp_function_chain
->extern_decl_map
, h
,
766 *(struct cxx_int_tree_map
**) loc
= h
;
769 else if (TREE_CODE (t
) == PARM_DECL
)
771 /* Check for duplicate params. */
772 tree d
= duplicate_decls (x
, t
, is_friend
);
776 else if ((DECL_EXTERN_C_FUNCTION_P (x
)
777 || DECL_FUNCTION_TEMPLATE_P (x
))
778 && is_overloaded_fn (t
))
779 /* Don't do anything just yet. */;
780 else if (t
== wchar_decl_node
)
782 if (! DECL_IN_SYSTEM_HEADER (x
))
783 pedwarn (input_location
, OPT_Wpedantic
, "redeclaration of %<wchar_t%> as %qT",
786 /* Throw away the redeclaration. */
791 tree olddecl
= duplicate_decls (x
, t
, is_friend
);
793 /* If the redeclaration failed, we can stop at this
795 if (olddecl
== error_mark_node
)
796 return error_mark_node
;
800 if (TREE_CODE (t
) == TYPE_DECL
)
801 SET_IDENTIFIER_TYPE_VALUE (name
, TREE_TYPE (t
));
805 else if (DECL_MAIN_P (x
) && TREE_CODE (t
) == FUNCTION_DECL
)
807 /* A redeclaration of main, but not a duplicate of the
812 This function shall not be overloaded. */
813 error ("invalid redeclaration of %q+D", t
);
815 /* We don't try to push this declaration since that
822 /* If x has C linkage-specification, (extern "C"),
823 lookup its binding, in case it's already bound to an object.
824 The lookup is done in all namespaces.
825 If we find an existing binding, make sure it has the same
826 exception specification as x, otherwise, bail in error [7.5, 7.6]. */
827 if ((TREE_CODE (x
) == FUNCTION_DECL
)
828 && DECL_EXTERN_C_P (x
)
829 /* We should ignore declarations happening in system headers. */
830 && !DECL_ARTIFICIAL (x
)
831 && !DECL_IN_SYSTEM_HEADER (x
))
833 tree previous
= lookup_extern_c_fun_in_all_ns (x
);
835 && !DECL_ARTIFICIAL (previous
)
836 && !DECL_IN_SYSTEM_HEADER (previous
)
837 && DECL_CONTEXT (previous
) != DECL_CONTEXT (x
))
839 /* In case either x or previous is declared to throw an exception,
840 make sure both exception specifications are equal. */
841 if (decls_match (x
, previous
))
843 tree x_exception_spec
= NULL_TREE
;
844 tree previous_exception_spec
= NULL_TREE
;
847 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (x
));
848 previous_exception_spec
=
849 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (previous
));
850 if (!comp_except_specs (previous_exception_spec
,
854 pedwarn (input_location
, 0,
855 "declaration of %q#D with C language linkage",
857 pedwarn (input_location
, 0,
858 "conflicts with previous declaration %q+#D",
860 pedwarn (input_location
, 0,
861 "due to different exception specifications");
862 return error_mark_node
;
864 if (DECL_ASSEMBLER_NAME_SET_P (previous
))
865 SET_DECL_ASSEMBLER_NAME (x
,
866 DECL_ASSEMBLER_NAME (previous
));
870 pedwarn (input_location
, 0,
871 "declaration of %q#D with C language linkage", x
);
872 pedwarn (input_location
, 0,
873 "conflicts with previous declaration %q+#D",
879 check_template_shadow (x
);
881 /* If this is a function conjured up by the back end, massage it
882 so it looks friendly. */
883 if (DECL_NON_THUNK_FUNCTION_P (x
) && ! DECL_LANG_SPECIFIC (x
))
885 retrofit_lang_decl (x
);
886 SET_DECL_LANGUAGE (x
, lang_c
);
890 if (DECL_NON_THUNK_FUNCTION_P (x
) && ! DECL_FUNCTION_MEMBER_P (x
))
892 t
= push_overloaded_decl (x
, PUSH_LOCAL
, is_friend
);
893 if (!namespace_bindings_p ())
894 /* We do not need to create a binding for this name;
895 push_overloaded_decl will have already done so if
897 need_new_binding
= 0;
899 else if (DECL_FUNCTION_TEMPLATE_P (x
) && DECL_NAMESPACE_SCOPE_P (x
))
901 t
= push_overloaded_decl (x
, PUSH_GLOBAL
, is_friend
);
903 add_decl_to_level (x
, NAMESPACE_LEVEL (CP_DECL_CONTEXT (t
)));
906 if (DECL_DECLARES_FUNCTION_P (t
))
907 check_default_args (t
);
909 if (t
!= x
|| DECL_FUNCTION_TEMPLATE_P (t
))
912 /* If declaring a type as a typedef, copy the type (unless we're
913 at line 0), and install this TYPE_DECL as the new type's typedef
914 name. See the extensive comment of set_underlying_type (). */
915 if (TREE_CODE (x
) == TYPE_DECL
)
917 tree type
= TREE_TYPE (x
);
919 if (DECL_IS_BUILTIN (x
)
920 || (TREE_TYPE (x
) != error_mark_node
921 && TYPE_NAME (type
) != x
922 /* We don't want to copy the type when all we're
923 doing is making a TYPE_DECL for the purposes of
925 && (!TYPE_NAME (type
)
926 || TYPE_NAME (type
) != DECL_ABSTRACT_ORIGIN (x
))))
927 set_underlying_type (x
);
929 if (type
!= error_mark_node
931 && TYPE_IDENTIFIER (type
))
932 set_identifier_type_value (DECL_NAME (x
), x
);
934 /* If this is a locally defined typedef in a function that
935 is not a template instantation, record it to implement
936 -Wunused-local-typedefs. */
937 if (current_instantiation () == NULL
938 || (current_instantiation ()->decl
!= current_function_decl
))
939 record_locally_defined_typedef (x
);
942 /* Multiple external decls of the same identifier ought to match.
944 We get warnings about inline functions where they are defined.
945 We get warnings about other functions from push_overloaded_decl.
947 Avoid duplicate warnings where they are used. */
948 if (TREE_PUBLIC (x
) && TREE_CODE (x
) != FUNCTION_DECL
)
952 decl
= IDENTIFIER_NAMESPACE_VALUE (name
);
953 if (decl
&& TREE_CODE (decl
) == OVERLOAD
)
954 decl
= OVL_FUNCTION (decl
);
956 if (decl
&& decl
!= error_mark_node
957 && (DECL_EXTERNAL (decl
) || TREE_PUBLIC (decl
))
958 /* If different sort of thing, we already gave an error. */
959 && TREE_CODE (decl
) == TREE_CODE (x
)
960 && !same_type_p (TREE_TYPE (x
), TREE_TYPE (decl
)))
962 if (permerror (input_location
, "type mismatch with previous "
963 "external decl of %q#D", x
))
964 inform (input_location
, "previous external decl of %q+#D",
969 if (TREE_CODE (x
) == FUNCTION_DECL
971 && !flag_friend_injection
)
973 /* This is a new declaration of a friend function, so hide
974 it from ordinary function lookup. */
975 DECL_ANTICIPATED (x
) = 1;
976 DECL_HIDDEN_FRIEND_P (x
) = 1;
979 /* This name is new in its binding level.
980 Install the new declaration and return it. */
981 if (namespace_bindings_p ())
983 /* Install a global value. */
985 /* If the first global decl has external linkage,
986 warn if we later see static one. */
987 if (IDENTIFIER_GLOBAL_VALUE (name
) == NULL_TREE
&& TREE_PUBLIC (x
))
988 TREE_PUBLIC (name
) = 1;
990 /* Bind the name for the entity. */
991 if (!(TREE_CODE (x
) == TYPE_DECL
&& DECL_ARTIFICIAL (x
)
993 && (TREE_CODE (x
) == TYPE_DECL
995 || TREE_CODE (x
) == NAMESPACE_DECL
996 || TREE_CODE (x
) == CONST_DECL
997 || TREE_CODE (x
) == TEMPLATE_DECL
))
998 SET_IDENTIFIER_NAMESPACE_VALUE (name
, x
);
1000 /* If new decl is `static' and an `extern' was seen previously,
1002 if (x
!= NULL_TREE
&& t
!= NULL_TREE
&& decls_match (x
, t
))
1003 warn_extern_redeclared_static (x
, t
);
1007 /* Here to install a non-global value. */
1008 tree oldglobal
= IDENTIFIER_NAMESPACE_VALUE (name
);
1009 tree oldlocal
= NULL_TREE
;
1010 cp_binding_level
*oldscope
= NULL
;
1011 cxx_binding
*oldbinding
= outer_binding (name
, NULL
, true);
1014 oldlocal
= oldbinding
->value
;
1015 oldscope
= oldbinding
->scope
;
1018 if (need_new_binding
)
1020 push_local_binding (name
, x
, 0);
1021 /* Because push_local_binding will hook X on to the
1022 current_binding_level's name list, we don't want to
1023 do that again below. */
1024 need_new_binding
= 0;
1027 /* If this is a TYPE_DECL, push it into the type value slot. */
1028 if (TREE_CODE (x
) == TYPE_DECL
)
1029 set_identifier_type_value (name
, x
);
1031 /* Clear out any TYPE_DECL shadowed by a namespace so that
1032 we won't think this is a type. The C struct hack doesn't
1033 go through namespaces. */
1034 if (TREE_CODE (x
) == NAMESPACE_DECL
)
1035 set_identifier_type_value (name
, NULL_TREE
);
1043 && DECL_DEAD_FOR_LOCAL (oldlocal
))
1044 oldlocal
= DECL_SHADOWED_FOR_VAR (oldlocal
);
1046 if (oldlocal
== NULL_TREE
)
1047 oldlocal
= IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (d
));
1050 /* If this is an extern function declaration, see if we
1051 have a global definition or declaration for the function. */
1052 if (oldlocal
== NULL_TREE
1053 && DECL_EXTERNAL (x
)
1054 && oldglobal
!= NULL_TREE
1055 && TREE_CODE (x
) == FUNCTION_DECL
1056 && TREE_CODE (oldglobal
) == FUNCTION_DECL
)
1058 /* We have one. Their types must agree. */
1059 if (decls_match (x
, oldglobal
))
1063 warning (0, "extern declaration of %q#D doesn%'t match", x
);
1064 warning (0, "global declaration %q+#D", oldglobal
);
1067 /* If we have a local external declaration,
1068 and no file-scope declaration has yet been seen,
1069 then if we later have a file-scope decl it must not be static. */
1070 if (oldlocal
== NULL_TREE
1071 && oldglobal
== NULL_TREE
1072 && DECL_EXTERNAL (x
)
1074 TREE_PUBLIC (name
) = 1;
1076 /* Don't complain about the parms we push and then pop
1077 while tentatively parsing a function declarator. */
1078 if (TREE_CODE (x
) == PARM_DECL
&& DECL_CONTEXT (x
) == NULL_TREE
)
1081 /* Warn if shadowing an argument at the top level of the body. */
1082 else if (oldlocal
!= NULL_TREE
&& !DECL_EXTERNAL (x
)
1083 /* Inline decls shadow nothing. */
1084 && !DECL_FROM_INLINE (x
)
1085 && (TREE_CODE (oldlocal
) == PARM_DECL
1087 /* If the old decl is a type decl, only warn if the
1088 old decl is an explicit typedef or if both the old
1089 and new decls are type decls. */
1090 || (TREE_CODE (oldlocal
) == TYPE_DECL
1091 && (!DECL_ARTIFICIAL (oldlocal
)
1092 || TREE_CODE (x
) == TYPE_DECL
)))
1093 /* Don't check for internally generated vars unless
1094 it's an implicit typedef (see create_implicit_typedef
1096 && (!DECL_ARTIFICIAL (x
) || DECL_IMPLICIT_TYPEDEF_P (x
)))
1098 bool nowarn
= false;
1100 /* Don't complain if it's from an enclosing function. */
1101 if (DECL_CONTEXT (oldlocal
) == current_function_decl
1102 && TREE_CODE (x
) != PARM_DECL
1103 && TREE_CODE (oldlocal
) == PARM_DECL
)
1105 /* Go to where the parms should be and see if we find
1107 cp_binding_level
*b
= current_binding_level
->level_chain
;
1109 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl
))
1110 /* Skip the ctor/dtor cleanup level. */
1114 if (b
->kind
== sk_function_parms
)
1116 error ("declaration of %q#D shadows a parameter", x
);
1121 /* The local structure or class can't use parameters of
1122 the containing function anyway. */
1123 if (DECL_CONTEXT (oldlocal
) != current_function_decl
)
1125 cp_binding_level
*scope
= current_binding_level
;
1126 tree context
= DECL_CONTEXT (oldlocal
);
1127 for (; scope
; scope
= scope
->level_chain
)
1129 if (scope
->kind
== sk_function_parms
1130 && scope
->this_entity
== context
)
1132 if (scope
->kind
== sk_class
1133 && !LAMBDA_TYPE_P (scope
->this_entity
))
1140 /* Error if redeclaring a local declared in a
1141 for-init-statement or in the condition of an if or
1142 switch statement when the new declaration is in the
1143 outermost block of the controlled statement.
1144 Redeclaring a variable from a for or while condition is
1145 detected elsewhere. */
1146 else if (VAR_P (oldlocal
)
1147 && oldscope
== current_binding_level
->level_chain
1148 && (oldscope
->kind
== sk_cond
1149 || oldscope
->kind
== sk_for
))
1151 error ("redeclaration of %q#D", x
);
1152 inform (input_location
, "%q+#D previously declared here",
1157 3.3.3/3: The name declared in an exception-declaration (...)
1158 shall not be redeclared in the outermost block of the handler.
1159 3.3.3/2: A parameter name shall not be redeclared (...) in
1160 the outermost block of any handler associated with a
1162 3.4.1/15: The function parameter names shall not be redeclared
1163 in the exception-declaration nor in the outermost block of a
1164 handler for the function-try-block. */
1165 else if ((VAR_P (oldlocal
)
1166 && oldscope
== current_binding_level
->level_chain
1167 && oldscope
->kind
== sk_catch
)
1168 || (TREE_CODE (oldlocal
) == PARM_DECL
1169 && (current_binding_level
->kind
== sk_catch
1170 || (current_binding_level
->level_chain
->kind
1172 && in_function_try_handler
))
1174 if (permerror (input_location
, "redeclaration of %q#D", x
))
1175 inform (input_location
, "%q+#D previously declared here",
1180 if (warn_shadow
&& !nowarn
)
1184 if (TREE_CODE (oldlocal
) == PARM_DECL
)
1185 warned
= warning_at (input_location
, OPT_Wshadow
,
1186 "declaration of %q#D shadows a parameter", x
);
1187 else if (is_capture_proxy (oldlocal
))
1188 warned
= warning_at (input_location
, OPT_Wshadow
,
1189 "declaration of %qD shadows a lambda capture",
1192 warned
= warning_at (input_location
, OPT_Wshadow
,
1193 "declaration of %qD shadows a previous local",
1197 inform (DECL_SOURCE_LOCATION (oldlocal
),
1198 "shadowed declaration is here");
1202 /* Maybe warn if shadowing something else. */
1203 else if (warn_shadow
&& !DECL_EXTERNAL (x
)
1204 /* No shadow warnings for internally generated vars unless
1205 it's an implicit typedef (see create_implicit_typedef
1207 && (! DECL_ARTIFICIAL (x
) || DECL_IMPLICIT_TYPEDEF_P (x
))
1208 /* No shadow warnings for vars made for inlining. */
1209 && ! DECL_FROM_INLINE (x
))
1213 if (nonlambda_method_basetype ())
1214 member
= lookup_member (current_nonlambda_class_type (),
1217 /*want_type=*/false,
1218 tf_warning_or_error
);
1222 if (member
&& !TREE_STATIC (member
))
1224 /* Location of previous decl is not useful in this case. */
1225 warning (OPT_Wshadow
, "declaration of %qD shadows a member of 'this'",
1228 else if (oldglobal
!= NULL_TREE
1229 && (VAR_P (oldglobal
)
1230 /* If the old decl is a type decl, only warn if the
1231 old decl is an explicit typedef or if both the
1232 old and new decls are type decls. */
1233 || (TREE_CODE (oldglobal
) == TYPE_DECL
1234 && (!DECL_ARTIFICIAL (oldglobal
)
1235 || TREE_CODE (x
) == TYPE_DECL
))))
1236 /* XXX shadow warnings in outer-more namespaces */
1238 if (warning_at (input_location
, OPT_Wshadow
,
1239 "declaration of %qD shadows a "
1240 "global declaration", x
))
1241 inform (DECL_SOURCE_LOCATION (oldglobal
),
1242 "shadowed declaration is here");
1248 maybe_register_incomplete_var (x
);
1251 if (need_new_binding
)
1252 add_decl_to_level (x
,
1253 DECL_NAMESPACE_SCOPE_P (x
)
1254 ? NAMESPACE_LEVEL (CP_DECL_CONTEXT (x
))
1255 : current_binding_level
);
1260 /* Wrapper for pushdecl_maybe_friend_1. */
1263 pushdecl_maybe_friend (tree x
, bool is_friend
)
1266 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
1267 ret
= pushdecl_maybe_friend_1 (x
, is_friend
);
1268 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
1272 /* Record a decl-node X as belonging to the current lexical scope. */
1277 return pushdecl_maybe_friend (x
, false);
1280 /* Enter DECL into the symbol table, if that's appropriate. Returns
1281 DECL, or a modified version thereof. */
1284 maybe_push_decl (tree decl
)
1286 tree type
= TREE_TYPE (decl
);
1288 /* Add this decl to the current binding level, but not if it comes
1289 from another scope, e.g. a static member variable. TEM may equal
1290 DECL or it may be a previous decl of the same name. */
1291 if (decl
== error_mark_node
1292 || (TREE_CODE (decl
) != PARM_DECL
1293 && DECL_CONTEXT (decl
) != NULL_TREE
1294 /* Definitions of namespace members outside their namespace are
1296 && !DECL_NAMESPACE_SCOPE_P (decl
))
1297 || (TREE_CODE (decl
) == TEMPLATE_DECL
&& !namespace_bindings_p ())
1298 || type
== unknown_type_node
1299 /* The declaration of a template specialization does not affect
1300 the functions available for overload resolution, so we do not
1302 || (TREE_CODE (decl
) == FUNCTION_DECL
1303 && DECL_TEMPLATE_SPECIALIZATION (decl
)))
1306 return pushdecl (decl
);
1309 /* Bind DECL to ID in the current_binding_level, assumed to be a local
1310 binding level. If PUSH_USING is set in FLAGS, we know that DECL
1311 doesn't really belong to this binding level, that it got here
1312 through a using-declaration. */
1315 push_local_binding (tree id
, tree decl
, int flags
)
1317 cp_binding_level
*b
;
1319 /* Skip over any local classes. This makes sense if we call
1320 push_local_binding with a friend decl of a local class. */
1321 b
= innermost_nonclass_level ();
1323 if (lookup_name_innermost_nonclass_level (id
))
1325 /* Supplement the existing binding. */
1326 if (!supplement_binding (IDENTIFIER_BINDING (id
), decl
))
1327 /* It didn't work. Something else must be bound at this
1328 level. Do not add DECL to the list of things to pop
1333 /* Create a new binding. */
1334 push_binding (id
, decl
, b
);
1336 if (TREE_CODE (decl
) == OVERLOAD
|| (flags
& PUSH_USING
))
1337 /* We must put the OVERLOAD into a TREE_LIST since the
1338 TREE_CHAIN of an OVERLOAD is already used. Similarly for
1339 decls that got here through a using-declaration. */
1340 decl
= build_tree_list (NULL_TREE
, decl
);
1342 /* And put DECL on the list of things declared by the current
1344 add_decl_to_level (decl
, b
);
1347 /* Check to see whether or not DECL is a variable that would have been
1348 in scope under the ARM, but is not in scope under the ANSI/ISO
1349 standard. If so, issue an error message. If name lookup would
1350 work in both cases, but return a different result, this function
1351 returns the result of ANSI/ISO lookup. Otherwise, it returns
1355 check_for_out_of_scope_variable (tree decl
)
1359 /* We only care about out of scope variables. */
1360 if (!(VAR_P (decl
) && DECL_DEAD_FOR_LOCAL (decl
)))
1363 shadowed
= DECL_HAS_SHADOWED_FOR_VAR_P (decl
)
1364 ? DECL_SHADOWED_FOR_VAR (decl
) : NULL_TREE
;
1365 while (shadowed
!= NULL_TREE
&& VAR_P (shadowed
)
1366 && DECL_DEAD_FOR_LOCAL (shadowed
))
1367 shadowed
= DECL_HAS_SHADOWED_FOR_VAR_P (shadowed
)
1368 ? DECL_SHADOWED_FOR_VAR (shadowed
) : NULL_TREE
;
1370 shadowed
= IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (decl
));
1373 if (!DECL_ERROR_REPORTED (decl
))
1375 warning (0, "name lookup of %qD changed", DECL_NAME (decl
));
1376 warning (0, " matches this %q+D under ISO standard rules",
1378 warning (0, " matches this %q+D under old rules", decl
);
1379 DECL_ERROR_REPORTED (decl
) = 1;
1384 /* If we have already complained about this declaration, there's no
1385 need to do it again. */
1386 if (DECL_ERROR_REPORTED (decl
))
1389 DECL_ERROR_REPORTED (decl
) = 1;
1391 if (TREE_TYPE (decl
) == error_mark_node
)
1394 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl
)))
1396 error ("name lookup of %qD changed for ISO %<for%> scoping",
1398 error (" cannot use obsolete binding at %q+D because "
1399 "it has a destructor", decl
);
1400 return error_mark_node
;
1404 permerror (input_location
, "name lookup of %qD changed for ISO %<for%> scoping",
1406 if (flag_permissive
)
1407 permerror (input_location
, " using obsolete binding at %q+D", decl
);
1413 inform (input_location
, "(if you use %<-fpermissive%> G++ will accept your code)");
1422 /* true means unconditionally make a BLOCK for the next level pushed. */
1424 static bool keep_next_level_flag
;
1426 static int binding_depth
= 0;
1433 for (i
= 0; i
< depth
* 2; i
++)
1437 /* Return a string describing the kind of SCOPE we have. */
1439 cp_binding_level_descriptor (cp_binding_level
*scope
)
1441 /* The order of this table must match the "scope_kind"
1443 static const char* scope_kind_names
[] = {
1449 "function-parameter-scope",
1452 "template-parameter-scope",
1453 "template-explicit-spec-scope"
1455 const scope_kind kind
= scope
->explicit_spec_p
1456 ? sk_template_spec
: scope
->kind
;
1458 return scope_kind_names
[kind
];
1461 /* Output a debugging information about SCOPE when performing
1464 cp_binding_level_debug (cp_binding_level
*scope
, int line
, const char *action
)
1466 const char *desc
= cp_binding_level_descriptor (scope
);
1467 if (scope
->this_entity
)
1468 verbatim ("%s %s(%E) %p %d\n", action
, desc
,
1469 scope
->this_entity
, (void *) scope
, line
);
1471 verbatim ("%s %s %p %d\n", action
, desc
, (void *) scope
, line
);
1474 /* Return the estimated initial size of the hashtable of a NAMESPACE
1477 static inline size_t
1478 namespace_scope_ht_size (tree ns
)
1480 tree name
= DECL_NAME (ns
);
1482 return name
== std_identifier
1483 ? NAMESPACE_STD_HT_SIZE
1484 : (name
== global_scope_name
1485 ? GLOBAL_SCOPE_HT_SIZE
1486 : NAMESPACE_ORDINARY_HT_SIZE
);
1489 /* A chain of binding_level structures awaiting reuse. */
1491 static GTY((deletable
)) cp_binding_level
*free_binding_level
;
1493 /* Insert SCOPE as the innermost binding level. */
1496 push_binding_level (cp_binding_level
*scope
)
1498 /* Add it to the front of currently active scopes stack. */
1499 scope
->level_chain
= current_binding_level
;
1500 current_binding_level
= scope
;
1501 keep_next_level_flag
= false;
1503 if (ENABLE_SCOPE_CHECKING
)
1505 scope
->binding_depth
= binding_depth
;
1506 indent (binding_depth
);
1507 cp_binding_level_debug (scope
, LOCATION_LINE (input_location
),
1513 /* Create a new KIND scope and make it the top of the active scopes stack.
1514 ENTITY is the scope of the associated C++ entity (namespace, class,
1515 function, C++0x enumeration); it is NULL otherwise. */
1518 begin_scope (scope_kind kind
, tree entity
)
1520 cp_binding_level
*scope
;
1522 /* Reuse or create a struct for this binding level. */
1523 if (!ENABLE_SCOPE_CHECKING
&& free_binding_level
)
1525 scope
= free_binding_level
;
1526 memset (scope
, 0, sizeof (cp_binding_level
));
1527 free_binding_level
= scope
->level_chain
;
1530 scope
= ggc_alloc_cleared_cp_binding_level ();
1532 scope
->this_entity
= entity
;
1533 scope
->more_cleanups_ok
= true;
1540 case sk_template_spec
:
1541 scope
->explicit_spec_p
= true;
1542 kind
= sk_template_parms
;
1544 case sk_template_parms
:
1551 case sk_scoped_enum
:
1552 case sk_function_parms
:
1554 scope
->keep
= keep_next_level_flag
;
1558 NAMESPACE_LEVEL (entity
) = scope
;
1559 vec_alloc (scope
->static_decls
,
1560 (DECL_NAME (entity
) == std_identifier
1561 || DECL_NAME (entity
) == global_scope_name
) ? 200 : 10);
1565 /* Should not happen. */
1571 push_binding_level (scope
);
1576 /* We're about to leave current scope. Pop the top of the stack of
1577 currently active scopes. Return the enclosing scope, now active. */
1582 cp_binding_level
*scope
= current_binding_level
;
1584 if (scope
->kind
== sk_namespace
&& class_binding_level
)
1585 current_binding_level
= class_binding_level
;
1587 /* We cannot leave a scope, if there are none left. */
1588 if (NAMESPACE_LEVEL (global_namespace
))
1589 gcc_assert (!global_scope_p (scope
));
1591 if (ENABLE_SCOPE_CHECKING
)
1593 indent (--binding_depth
);
1594 cp_binding_level_debug (scope
, LOCATION_LINE (input_location
),
1598 /* Move one nesting level up. */
1599 current_binding_level
= scope
->level_chain
;
1601 /* Namespace-scopes are left most probably temporarily, not
1602 completely; they can be reopened later, e.g. in namespace-extension
1603 or any name binding activity that requires us to resume a
1604 namespace. For classes, we cache some binding levels. For other
1605 scopes, we just make the structure available for reuse. */
1606 if (scope
->kind
!= sk_namespace
1607 && scope
->kind
!= sk_class
)
1609 scope
->level_chain
= free_binding_level
;
1610 gcc_assert (!ENABLE_SCOPE_CHECKING
1611 || scope
->binding_depth
== binding_depth
);
1612 free_binding_level
= scope
;
1615 /* Find the innermost enclosing class scope, and reset
1616 CLASS_BINDING_LEVEL appropriately. */
1617 if (scope
->kind
== sk_class
)
1619 class_binding_level
= NULL
;
1620 for (scope
= current_binding_level
; scope
; scope
= scope
->level_chain
)
1621 if (scope
->kind
== sk_class
)
1623 class_binding_level
= scope
;
1628 return current_binding_level
;
1632 resume_scope (cp_binding_level
* b
)
1634 /* Resuming binding levels is meant only for namespaces,
1635 and those cannot nest into classes. */
1636 gcc_assert (!class_binding_level
);
1637 /* Also, resuming a non-directly nested namespace is a no-no. */
1638 gcc_assert (b
->level_chain
== current_binding_level
);
1639 current_binding_level
= b
;
1640 if (ENABLE_SCOPE_CHECKING
)
1642 b
->binding_depth
= binding_depth
;
1643 indent (binding_depth
);
1644 cp_binding_level_debug (b
, LOCATION_LINE (input_location
), "resume");
1649 /* Return the innermost binding level that is not for a class scope. */
1651 static cp_binding_level
*
1652 innermost_nonclass_level (void)
1654 cp_binding_level
*b
;
1656 b
= current_binding_level
;
1657 while (b
->kind
== sk_class
)
1663 /* We're defining an object of type TYPE. If it needs a cleanup, but
1664 we're not allowed to add any more objects with cleanups to the current
1665 scope, create a new binding level. */
1668 maybe_push_cleanup_level (tree type
)
1670 if (type
!= error_mark_node
1671 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
)
1672 && current_binding_level
->more_cleanups_ok
== 0)
1674 begin_scope (sk_cleanup
, NULL
);
1675 current_binding_level
->statement_list
= push_stmt_list ();
1679 /* Return true if we are in the global binding level. */
1682 global_bindings_p (void)
1684 return global_scope_p (current_binding_level
);
1687 /* True if we are currently in a toplevel binding level. This
1688 means either the global binding level or a namespace in a toplevel
1689 binding level. Since there are no non-toplevel namespace levels,
1690 this really means any namespace or template parameter level. We
1691 also include a class whose context is toplevel. */
1694 toplevel_bindings_p (void)
1696 cp_binding_level
*b
= innermost_nonclass_level ();
1698 return b
->kind
== sk_namespace
|| b
->kind
== sk_template_parms
;
1701 /* True if this is a namespace scope, or if we are defining a class
1702 which is itself at namespace scope, or whose enclosing class is
1703 such a class, etc. */
1706 namespace_bindings_p (void)
1708 cp_binding_level
*b
= innermost_nonclass_level ();
1710 return b
->kind
== sk_namespace
;
1713 /* True if the innermost non-class scope is a block scope. */
1716 local_bindings_p (void)
1718 cp_binding_level
*b
= innermost_nonclass_level ();
1719 return b
->kind
< sk_function_parms
|| b
->kind
== sk_omp
;
1722 /* True if the current level needs to have a BLOCK made. */
1727 return (current_binding_level
->blocks
!= NULL_TREE
1728 || current_binding_level
->keep
1729 || current_binding_level
->kind
== sk_cleanup
1730 || current_binding_level
->names
!= NULL_TREE
1731 || current_binding_level
->using_directives
);
1734 /* Returns the kind of the innermost scope. */
1737 innermost_scope_kind (void)
1739 return current_binding_level
->kind
;
1742 /* Returns true if this scope was created to store template parameters. */
1745 template_parm_scope_p (void)
1747 return innermost_scope_kind () == sk_template_parms
;
1750 /* If KEEP is true, make a BLOCK node for the next binding level,
1751 unconditionally. Otherwise, use the normal logic to decide whether
1752 or not to create a BLOCK. */
1755 keep_next_level (bool keep
)
1757 keep_next_level_flag
= keep
;
1760 /* Return the list of declarations of the current level.
1761 Note that this list is in reverse order unless/until
1762 you nreverse it; and when you do nreverse it, you must
1763 store the result back using `storedecls' or you will lose. */
1768 return current_binding_level
->names
;
1771 /* Return how many function prototypes we are currently nested inside. */
1774 function_parm_depth (void)
1777 cp_binding_level
*b
;
1779 for (b
= current_binding_level
;
1780 b
->kind
== sk_function_parms
;
1787 /* For debugging. */
1788 static int no_print_functions
= 0;
1789 static int no_print_builtins
= 0;
1792 print_binding_level (cp_binding_level
* lvl
)
1796 fprintf (stderr
, " blocks=%p", (void *) lvl
->blocks
);
1797 if (lvl
->more_cleanups_ok
)
1798 fprintf (stderr
, " more-cleanups-ok");
1799 if (lvl
->have_cleanups
)
1800 fprintf (stderr
, " have-cleanups");
1801 fprintf (stderr
, "\n");
1804 fprintf (stderr
, " names:\t");
1805 /* We can probably fit 3 names to a line? */
1806 for (t
= lvl
->names
; t
; t
= TREE_CHAIN (t
))
1808 if (no_print_functions
&& (TREE_CODE (t
) == FUNCTION_DECL
))
1810 if (no_print_builtins
1811 && (TREE_CODE (t
) == TYPE_DECL
)
1812 && DECL_IS_BUILTIN (t
))
1815 /* Function decls tend to have longer names. */
1816 if (TREE_CODE (t
) == FUNCTION_DECL
)
1823 fprintf (stderr
, "\n\t");
1826 print_node_brief (stderr
, "", t
, 0);
1827 if (t
== error_mark_node
)
1831 fprintf (stderr
, "\n");
1833 if (vec_safe_length (lvl
->class_shadowed
))
1836 cp_class_binding
*b
;
1837 fprintf (stderr
, " class-shadowed:");
1838 FOR_EACH_VEC_ELT (*lvl
->class_shadowed
, i
, b
)
1839 fprintf (stderr
, " %s ", IDENTIFIER_POINTER (b
->identifier
));
1840 fprintf (stderr
, "\n");
1842 if (lvl
->type_shadowed
)
1844 fprintf (stderr
, " type-shadowed:");
1845 for (t
= lvl
->type_shadowed
; t
; t
= TREE_CHAIN (t
))
1847 fprintf (stderr
, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t
)));
1849 fprintf (stderr
, "\n");
1854 debug (cp_binding_level
&ref
)
1856 print_binding_level (&ref
);
1860 debug (cp_binding_level
*ptr
)
1865 fprintf (stderr
, "<nil>\n");
1870 print_other_binding_stack (cp_binding_level
*stack
)
1872 cp_binding_level
*level
;
1873 for (level
= stack
; !global_scope_p (level
); level
= level
->level_chain
)
1875 fprintf (stderr
, "binding level %p\n", (void *) level
);
1876 print_binding_level (level
);
1881 print_binding_stack (void)
1883 cp_binding_level
*b
;
1884 fprintf (stderr
, "current_binding_level=%p\n"
1885 "class_binding_level=%p\n"
1886 "NAMESPACE_LEVEL (global_namespace)=%p\n",
1887 (void *) current_binding_level
, (void *) class_binding_level
,
1888 (void *) NAMESPACE_LEVEL (global_namespace
));
1889 if (class_binding_level
)
1891 for (b
= class_binding_level
; b
; b
= b
->level_chain
)
1892 if (b
== current_binding_level
)
1895 b
= class_binding_level
;
1897 b
= current_binding_level
;
1900 b
= current_binding_level
;
1901 print_other_binding_stack (b
);
1902 fprintf (stderr
, "global:\n");
1903 print_binding_level (NAMESPACE_LEVEL (global_namespace
));
1906 /* Return the type associated with ID. */
1909 identifier_type_value_1 (tree id
)
1911 /* There is no type with that name, anywhere. */
1912 if (REAL_IDENTIFIER_TYPE_VALUE (id
) == NULL_TREE
)
1914 /* This is not the type marker, but the real thing. */
1915 if (REAL_IDENTIFIER_TYPE_VALUE (id
) != global_type_node
)
1916 return REAL_IDENTIFIER_TYPE_VALUE (id
);
1917 /* Have to search for it. It must be on the global level, now.
1918 Ask lookup_name not to return non-types. */
1919 id
= lookup_name_real (id
, 2, 1, /*block_p=*/true, 0, 0);
1921 return TREE_TYPE (id
);
1925 /* Wrapper for identifier_type_value_1. */
1928 identifier_type_value (tree id
)
1931 timevar_start (TV_NAME_LOOKUP
);
1932 ret
= identifier_type_value_1 (id
);
1933 timevar_stop (TV_NAME_LOOKUP
);
1938 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
1939 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
1942 identifier_global_value (tree t
)
1944 return IDENTIFIER_GLOBAL_VALUE (t
);
1947 /* Push a definition of struct, union or enum tag named ID. into
1948 binding_level B. DECL is a TYPE_DECL for the type. We assume that
1949 the tag ID is not already defined. */
1952 set_identifier_type_value_with_scope (tree id
, tree decl
, cp_binding_level
*b
)
1956 if (b
->kind
!= sk_namespace
)
1958 /* Shadow the marker, not the real thing, so that the marker
1959 gets restored later. */
1960 tree old_type_value
= REAL_IDENTIFIER_TYPE_VALUE (id
);
1962 = tree_cons (id
, old_type_value
, b
->type_shadowed
);
1963 type
= decl
? TREE_TYPE (decl
) : NULL_TREE
;
1964 TREE_TYPE (b
->type_shadowed
) = type
;
1968 cxx_binding
*binding
=
1969 binding_for_name (NAMESPACE_LEVEL (current_namespace
), id
);
1972 supplement_binding (binding
, decl
);
1974 binding
->value
= decl
;
1976 /* Store marker instead of real type. */
1977 type
= global_type_node
;
1979 SET_IDENTIFIER_TYPE_VALUE (id
, type
);
1982 /* As set_identifier_type_value_with_scope, but using
1983 current_binding_level. */
1986 set_identifier_type_value (tree id
, tree decl
)
1988 set_identifier_type_value_with_scope (id
, decl
, current_binding_level
);
1991 /* Return the name for the constructor (or destructor) for the
1992 specified class TYPE. When given a template, this routine doesn't
1993 lose the specialization. */
1996 constructor_name_full (tree type
)
1998 return TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type
));
2001 /* Return the name for the constructor (or destructor) for the
2002 specified class. When given a template, return the plain
2003 unspecialized name. */
2006 constructor_name (tree type
)
2009 name
= constructor_name_full (type
);
2010 if (IDENTIFIER_TEMPLATE (name
))
2011 name
= IDENTIFIER_TEMPLATE (name
);
2015 /* Returns TRUE if NAME is the name for the constructor for TYPE,
2016 which must be a class type. */
2019 constructor_name_p (tree name
, tree type
)
2023 gcc_assert (MAYBE_CLASS_TYPE_P (type
));
2028 if (!identifier_p (name
))
2031 /* These don't have names. */
2032 if (TREE_CODE (type
) == DECLTYPE_TYPE
2033 || TREE_CODE (type
) == TYPEOF_TYPE
)
2036 ctor_name
= constructor_name_full (type
);
2037 if (name
== ctor_name
)
2039 if (IDENTIFIER_TEMPLATE (ctor_name
)
2040 && name
== IDENTIFIER_TEMPLATE (ctor_name
))
2045 /* Counter used to create anonymous type names. */
2047 static GTY(()) int anon_cnt
;
2049 /* Return an IDENTIFIER which can be used as a name for
2050 anonymous structs and unions. */
2053 make_anon_name (void)
2057 sprintf (buf
, ANON_AGGRNAME_FORMAT
, anon_cnt
++);
2058 return get_identifier (buf
);
2061 /* This code is practically identical to that for creating
2062 anonymous names, but is just used for lambdas instead. This isn't really
2063 necessary, but it's convenient to avoid treating lambdas like other
2066 static GTY(()) int lambda_cnt
= 0;
2069 make_lambda_name (void)
2073 sprintf (buf
, LAMBDANAME_FORMAT
, lambda_cnt
++);
2074 return get_identifier (buf
);
2077 /* Return (from the stack of) the BINDING, if any, established at SCOPE. */
2079 static inline cxx_binding
*
2080 find_binding (cp_binding_level
*scope
, cxx_binding
*binding
)
2082 for (; binding
!= NULL
; binding
= binding
->previous
)
2083 if (binding
->scope
== scope
)
2086 return (cxx_binding
*)0;
2089 /* Return the binding for NAME in SCOPE, if any. Otherwise, return NULL. */
2091 static inline cxx_binding
*
2092 cp_binding_level_find_binding_for_name (cp_binding_level
*scope
, tree name
)
2094 cxx_binding
*b
= IDENTIFIER_NAMESPACE_BINDINGS (name
);
2097 /* Fold-in case where NAME is used only once. */
2098 if (scope
== b
->scope
&& b
->previous
== NULL
)
2100 return find_binding (scope
, b
);
2105 /* Always returns a binding for name in scope. If no binding is
2106 found, make a new one. */
2108 static cxx_binding
*
2109 binding_for_name (cp_binding_level
*scope
, tree name
)
2111 cxx_binding
*result
;
2113 result
= cp_binding_level_find_binding_for_name (scope
, name
);
2116 /* Not found, make a new one. */
2117 result
= cxx_binding_make (NULL
, NULL
);
2118 result
->previous
= IDENTIFIER_NAMESPACE_BINDINGS (name
);
2119 result
->scope
= scope
;
2120 result
->is_local
= false;
2121 result
->value_is_inherited
= false;
2122 IDENTIFIER_NAMESPACE_BINDINGS (name
) = result
;
2126 /* Walk through the bindings associated to the name of FUNCTION,
2127 and return the first declaration of a function with a
2128 "C" linkage specification, a.k.a 'extern "C"'.
2129 This function looks for the binding, regardless of which scope it
2130 has been defined in. It basically looks in all the known scopes.
2131 Note that this function does not lookup for bindings of builtin functions
2132 or for functions declared in system headers. */
2134 lookup_extern_c_fun_in_all_ns (tree function
)
2139 gcc_assert (function
&& TREE_CODE (function
) == FUNCTION_DECL
);
2141 name
= DECL_NAME (function
);
2142 gcc_assert (name
&& identifier_p (name
));
2144 for (iter
= IDENTIFIER_NAMESPACE_BINDINGS (name
);
2146 iter
= iter
->previous
)
2149 for (ovl
= iter
->value
; ovl
; ovl
= OVL_NEXT (ovl
))
2151 tree decl
= OVL_CURRENT (ovl
);
2153 && TREE_CODE (decl
) == FUNCTION_DECL
2154 && DECL_EXTERN_C_P (decl
)
2155 && !DECL_ARTIFICIAL (decl
))
2164 /* Returns a list of C-linkage decls with the name NAME. */
2167 c_linkage_bindings (tree name
)
2169 tree decls
= NULL_TREE
;
2172 for (iter
= IDENTIFIER_NAMESPACE_BINDINGS (name
);
2174 iter
= iter
->previous
)
2177 for (ovl
= iter
->value
; ovl
; ovl
= OVL_NEXT (ovl
))
2179 tree decl
= OVL_CURRENT (ovl
);
2181 && DECL_EXTERN_C_P (decl
)
2182 && !DECL_ARTIFICIAL (decl
))
2184 if (decls
== NULL_TREE
)
2187 decls
= tree_cons (NULL_TREE
, decl
, decls
);
2194 /* Insert another USING_DECL into the current binding level, returning
2195 this declaration. If this is a redeclaration, do nothing, and
2196 return NULL_TREE if this not in namespace scope (in namespace
2197 scope, a using decl might extend any previous bindings). */
2200 push_using_decl_1 (tree scope
, tree name
)
2204 gcc_assert (TREE_CODE (scope
) == NAMESPACE_DECL
);
2205 gcc_assert (identifier_p (name
));
2206 for (decl
= current_binding_level
->usings
; decl
; decl
= DECL_CHAIN (decl
))
2207 if (USING_DECL_SCOPE (decl
) == scope
&& DECL_NAME (decl
) == name
)
2210 return namespace_bindings_p () ? decl
: NULL_TREE
;
2211 decl
= build_lang_decl (USING_DECL
, name
, NULL_TREE
);
2212 USING_DECL_SCOPE (decl
) = scope
;
2213 DECL_CHAIN (decl
) = current_binding_level
->usings
;
2214 current_binding_level
->usings
= decl
;
2218 /* Wrapper for push_using_decl_1. */
2221 push_using_decl (tree scope
, tree name
)
2224 timevar_start (TV_NAME_LOOKUP
);
2225 ret
= push_using_decl_1 (scope
, name
);
2226 timevar_stop (TV_NAME_LOOKUP
);
2230 /* Same as pushdecl, but define X in binding-level LEVEL. We rely on the
2231 caller to set DECL_CONTEXT properly.
2233 Note that this must only be used when X will be the new innermost
2234 binding for its name, as we tack it onto the front of IDENTIFIER_BINDING
2235 without checking to see if the current IDENTIFIER_BINDING comes from a
2236 closer binding level than LEVEL. */
2239 pushdecl_with_scope_1 (tree x
, cp_binding_level
*level
, bool is_friend
)
2241 cp_binding_level
*b
;
2242 tree function_decl
= current_function_decl
;
2244 current_function_decl
= NULL_TREE
;
2245 if (level
->kind
== sk_class
)
2247 b
= class_binding_level
;
2248 class_binding_level
= level
;
2249 pushdecl_class_level (x
);
2250 class_binding_level
= b
;
2254 b
= current_binding_level
;
2255 current_binding_level
= level
;
2256 x
= pushdecl_maybe_friend (x
, is_friend
);
2257 current_binding_level
= b
;
2259 current_function_decl
= function_decl
;
2263 /* Wrapper for pushdecl_with_scope_1. */
2266 pushdecl_with_scope (tree x
, cp_binding_level
*level
, bool is_friend
)
2269 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
2270 ret
= pushdecl_with_scope_1 (x
, level
, is_friend
);
2271 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
2275 /* Helper function for push_overloaded_decl_1 and do_nonmember_using_decl.
2276 Compares the parameter-type-lists of DECL1 and DECL2 and returns false
2277 if they are different. If the DECLs are template functions, the return
2278 types and the template parameter lists are compared too (DR 565). */
2281 compparms_for_decl_and_using_decl (tree decl1
, tree decl2
)
2283 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (decl1
)),
2284 TYPE_ARG_TYPES (TREE_TYPE (decl2
))))
2287 if (! DECL_FUNCTION_TEMPLATE_P (decl1
)
2288 || ! DECL_FUNCTION_TEMPLATE_P (decl2
))
2291 return (comp_template_parms (DECL_TEMPLATE_PARMS (decl1
),
2292 DECL_TEMPLATE_PARMS (decl2
))
2293 && same_type_p (TREE_TYPE (TREE_TYPE (decl1
)),
2294 TREE_TYPE (TREE_TYPE (decl2
))));
2297 /* DECL is a FUNCTION_DECL for a non-member function, which may have
2298 other definitions already in place. We get around this by making
2299 the value of the identifier point to a list of all the things that
2300 want to be referenced by that name. It is then up to the users of
2301 that name to decide what to do with that list.
2303 DECL may also be a TEMPLATE_DECL, with a FUNCTION_DECL in its
2304 DECL_TEMPLATE_RESULT. It is dealt with the same way.
2306 FLAGS is a bitwise-or of the following values:
2307 PUSH_LOCAL: Bind DECL in the current scope, rather than at
2309 PUSH_USING: DECL is being pushed as the result of a using
2312 IS_FRIEND is true if this is a friend declaration.
2314 The value returned may be a previous declaration if we guessed wrong
2315 about what language DECL should belong to (C or C++). Otherwise,
2316 it's always DECL (and never something that's not a _DECL). */
2319 push_overloaded_decl_1 (tree decl
, int flags
, bool is_friend
)
2321 tree name
= DECL_NAME (decl
);
2324 int doing_global
= (namespace_bindings_p () || !(flags
& PUSH_LOCAL
));
2327 old
= namespace_binding (name
, DECL_CONTEXT (decl
));
2329 old
= lookup_name_innermost_nonclass_level (name
);
2333 if (TREE_CODE (old
) == TYPE_DECL
&& DECL_ARTIFICIAL (old
))
2335 tree t
= TREE_TYPE (old
);
2336 if (MAYBE_CLASS_TYPE_P (t
) && warn_shadow
2337 && (! DECL_IN_SYSTEM_HEADER (decl
)
2338 || ! DECL_IN_SYSTEM_HEADER (old
)))
2339 warning (OPT_Wshadow
, "%q#D hides constructor for %q#T", decl
, t
);
2342 else if (is_overloaded_fn (old
))
2346 for (tmp
= old
; tmp
; tmp
= OVL_NEXT (tmp
))
2348 tree fn
= OVL_CURRENT (tmp
);
2351 if (TREE_CODE (tmp
) == OVERLOAD
&& OVL_USED (tmp
)
2352 && !(flags
& PUSH_USING
)
2353 && compparms_for_decl_and_using_decl (fn
, decl
)
2354 && ! decls_match (fn
, decl
))
2355 diagnose_name_conflict (decl
, fn
);
2357 dup
= duplicate_decls (decl
, fn
, is_friend
);
2358 /* If DECL was a redeclaration of FN -- even an invalid
2359 one -- pass that information along to our caller. */
2360 if (dup
== fn
|| dup
== error_mark_node
)
2364 /* We don't overload implicit built-ins. duplicate_decls()
2365 may fail to merge the decls if the new decl is e.g. a
2366 template function. */
2367 if (TREE_CODE (old
) == FUNCTION_DECL
2368 && DECL_ANTICIPATED (old
)
2369 && !DECL_HIDDEN_FRIEND_P (old
))
2372 else if (old
== error_mark_node
)
2373 /* Ignore the undefined symbol marker. */
2377 error ("previous non-function declaration %q+#D", old
);
2378 error ("conflicts with function declaration %q#D", decl
);
2383 if (old
|| TREE_CODE (decl
) == TEMPLATE_DECL
2384 /* If it's a using declaration, we always need to build an OVERLOAD,
2385 because it's the only way to remember that the declaration comes
2386 from 'using', and have the lookup behave correctly. */
2387 || (flags
& PUSH_USING
))
2389 if (old
&& TREE_CODE (old
) != OVERLOAD
)
2390 new_binding
= ovl_cons (decl
, ovl_cons (old
, NULL_TREE
));
2392 new_binding
= ovl_cons (decl
, old
);
2393 if (flags
& PUSH_USING
)
2394 OVL_USED (new_binding
) = 1;
2397 /* NAME is not ambiguous. */
2401 set_namespace_binding (name
, current_namespace
, new_binding
);
2404 /* We only create an OVERLOAD if there was a previous binding at
2405 this level, or if decl is a template. In the former case, we
2406 need to remove the old binding and replace it with the new
2407 binding. We must also run through the NAMES on the binding
2408 level where the name was bound to update the chain. */
2410 if (TREE_CODE (new_binding
) == OVERLOAD
&& old
)
2414 for (d
= &IDENTIFIER_BINDING (name
)->scope
->names
;
2416 d
= &TREE_CHAIN (*d
))
2418 || (TREE_CODE (*d
) == TREE_LIST
2419 && TREE_VALUE (*d
) == old
))
2421 if (TREE_CODE (*d
) == TREE_LIST
)
2422 /* Just replace the old binding with the new. */
2423 TREE_VALUE (*d
) = new_binding
;
2425 /* Build a TREE_LIST to wrap the OVERLOAD. */
2426 *d
= tree_cons (NULL_TREE
, new_binding
,
2429 /* And update the cxx_binding node. */
2430 IDENTIFIER_BINDING (name
)->value
= new_binding
;
2434 /* We should always find a previous binding in this case. */
2438 /* Install the new binding. */
2439 push_local_binding (name
, new_binding
, flags
);
2445 /* Wrapper for push_overloaded_decl_1. */
2448 push_overloaded_decl (tree decl
, int flags
, bool is_friend
)
2451 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
2452 ret
= push_overloaded_decl_1 (decl
, flags
, is_friend
);
2453 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
2457 /* Check a non-member using-declaration. Return the name and scope
2458 being used, and the USING_DECL, or NULL_TREE on failure. */
2461 validate_nonmember_using_decl (tree decl
, tree scope
, tree name
)
2463 /* [namespace.udecl]
2464 A using-declaration for a class member shall be a
2465 member-declaration. */
2468 error ("%qT is not a namespace", scope
);
2471 else if (scope
== error_mark_node
)
2474 if (TREE_CODE (decl
) == TEMPLATE_ID_EXPR
)
2477 A using-declaration shall not name a template-id. */
2478 error ("a using-declaration cannot specify a template-id. "
2479 "Try %<using %D%>", name
);
2483 if (TREE_CODE (decl
) == NAMESPACE_DECL
)
2485 error ("namespace %qD not allowed in using-declaration", decl
);
2489 if (TREE_CODE (decl
) == SCOPE_REF
)
2491 /* It's a nested name with template parameter dependent scope.
2492 This can only be using-declaration for class member. */
2493 error ("%qT is not a namespace", TREE_OPERAND (decl
, 0));
2497 if (is_overloaded_fn (decl
))
2498 decl
= get_first_fn (decl
);
2500 gcc_assert (DECL_P (decl
));
2502 /* Make a USING_DECL. */
2503 tree using_decl
= push_using_decl (scope
, name
);
2505 if (using_decl
== NULL_TREE
2506 && at_function_scope_p ()
2508 /* C++11 7.3.3/10. */
2509 error ("%qD is already declared in this scope", name
);
2514 /* Process local and global using-declarations. */
2517 do_nonmember_using_decl (tree scope
, tree name
, tree oldval
, tree oldtype
,
2518 tree
*newval
, tree
*newtype
)
2520 struct scope_binding decls
= EMPTY_SCOPE_BINDING
;
2522 *newval
= *newtype
= NULL_TREE
;
2523 if (!qualified_lookup_using_namespace (name
, scope
, &decls
, 0))
2527 if (!decls
.value
&& !decls
.type
)
2529 error ("%qD not declared", name
);
2533 /* Shift the old and new bindings around so we're comparing class and
2534 enumeration names to each other. */
2535 if (oldval
&& DECL_IMPLICIT_TYPEDEF_P (oldval
))
2541 if (decls
.value
&& DECL_IMPLICIT_TYPEDEF_P (decls
.value
))
2543 decls
.type
= decls
.value
;
2544 decls
.value
= NULL_TREE
;
2547 /* It is impossible to overload a built-in function; any explicit
2548 declaration eliminates the built-in declaration. So, if OLDVAL
2549 is a built-in, then we can just pretend it isn't there. */
2551 && TREE_CODE (oldval
) == FUNCTION_DECL
2552 && DECL_ANTICIPATED (oldval
)
2553 && !DECL_HIDDEN_FRIEND_P (oldval
))
2558 /* Check for using functions. */
2559 if (is_overloaded_fn (decls
.value
))
2563 if (oldval
&& !is_overloaded_fn (oldval
))
2565 error ("%qD is already declared in this scope", name
);
2570 for (tmp
= decls
.value
; tmp
; tmp
= OVL_NEXT (tmp
))
2572 tree new_fn
= OVL_CURRENT (tmp
);
2574 /* [namespace.udecl]
2576 If a function declaration in namespace scope or block
2577 scope has the same name and the same parameter types as a
2578 function introduced by a using declaration the program is
2580 for (tmp1
= oldval
; tmp1
; tmp1
= OVL_NEXT (tmp1
))
2582 tree old_fn
= OVL_CURRENT (tmp1
);
2584 if (new_fn
== old_fn
)
2585 /* The function already exists in the current namespace. */
2587 else if (TREE_CODE (tmp1
) == OVERLOAD
&& OVL_USED (tmp1
))
2588 continue; /* this is a using decl */
2589 else if (compparms_for_decl_and_using_decl (new_fn
, old_fn
))
2591 gcc_assert (!DECL_ANTICIPATED (old_fn
)
2592 || DECL_HIDDEN_FRIEND_P (old_fn
));
2594 /* There was already a non-using declaration in
2595 this scope with the same parameter types. If both
2596 are the same extern "C" functions, that's ok. */
2597 if (decls_match (new_fn
, old_fn
))
2601 diagnose_name_conflict (new_fn
, old_fn
);
2607 /* If we broke out of the loop, there's no reason to add
2608 this function to the using declarations for this
2613 /* If we are adding to an existing OVERLOAD, then we no
2614 longer know the type of the set of functions. */
2615 if (*newval
&& TREE_CODE (*newval
) == OVERLOAD
)
2616 TREE_TYPE (*newval
) = unknown_type_node
;
2617 /* Add this new function to the set. */
2618 *newval
= build_overload (OVL_CURRENT (tmp
), *newval
);
2619 /* If there is only one function, then we use its type. (A
2620 using-declaration naming a single function can be used in
2621 contexts where overload resolution cannot be
2623 if (TREE_CODE (*newval
) != OVERLOAD
)
2625 *newval
= ovl_cons (*newval
, NULL_TREE
);
2626 TREE_TYPE (*newval
) = TREE_TYPE (OVL_CURRENT (tmp
));
2628 OVL_USED (*newval
) = 1;
2633 *newval
= decls
.value
;
2634 if (oldval
&& !decls_match (*newval
, oldval
))
2635 error ("%qD is already declared in this scope", name
);
2641 if (decls
.type
&& TREE_CODE (decls
.type
) == TREE_LIST
)
2643 error ("reference to %qD is ambiguous", name
);
2644 print_candidates (decls
.type
);
2648 *newtype
= decls
.type
;
2649 if (oldtype
&& *newtype
&& !decls_match (oldtype
, *newtype
))
2650 error ("%qD is already declared in this scope", name
);
2653 /* If *newval is empty, shift any class or enumeration name down. */
2657 *newtype
= NULL_TREE
;
2661 /* Process a using-declaration at function scope. */
2664 do_local_using_decl (tree decl
, tree scope
, tree name
)
2666 tree oldval
, oldtype
, newval
, newtype
;
2667 tree orig_decl
= decl
;
2669 decl
= validate_nonmember_using_decl (decl
, scope
, name
);
2670 if (decl
== NULL_TREE
)
2673 if (building_stmt_list_p ()
2674 && at_function_scope_p ())
2675 add_decl_expr (decl
);
2677 oldval
= lookup_name_innermost_nonclass_level (name
);
2678 oldtype
= lookup_type_current_level (name
);
2680 do_nonmember_using_decl (scope
, name
, oldval
, oldtype
, &newval
, &newtype
);
2684 if (is_overloaded_fn (newval
))
2688 /* We only need to push declarations for those functions
2689 that were not already bound in the current level.
2690 The old value might be NULL_TREE, it might be a single
2691 function, or an OVERLOAD. */
2692 if (oldval
&& TREE_CODE (oldval
) == OVERLOAD
)
2693 term
= OVL_FUNCTION (oldval
);
2696 for (fn
= newval
; fn
&& OVL_CURRENT (fn
) != term
;
2698 push_overloaded_decl (OVL_CURRENT (fn
),
2699 PUSH_LOCAL
| PUSH_USING
,
2703 push_local_binding (name
, newval
, PUSH_USING
);
2707 push_local_binding (name
, newtype
, PUSH_USING
);
2708 set_identifier_type_value (name
, newtype
);
2711 /* Emit debug info. */
2712 if (!processing_template_decl
)
2713 cp_emit_debug_info_for_using (orig_decl
, current_scope());
2716 /* Returns true if ROOT (a namespace, class, or function) encloses
2717 CHILD. CHILD may be either a class type or a namespace. */
2720 is_ancestor (tree root
, tree child
)
2722 gcc_assert ((TREE_CODE (root
) == NAMESPACE_DECL
2723 || TREE_CODE (root
) == FUNCTION_DECL
2724 || CLASS_TYPE_P (root
)));
2725 gcc_assert ((TREE_CODE (child
) == NAMESPACE_DECL
2726 || CLASS_TYPE_P (child
)));
2728 /* The global namespace encloses everything. */
2729 if (root
== global_namespace
)
2734 /* If we've run out of scopes, stop. */
2737 /* If we've reached the ROOT, it encloses CHILD. */
2740 /* Go out one level. */
2742 child
= TYPE_NAME (child
);
2743 child
= DECL_CONTEXT (child
);
2747 /* Enter the class or namespace scope indicated by T suitable for name
2748 lookup. T can be arbitrary scope, not necessary nested inside the
2749 current scope. Returns a non-null scope to pop iff pop_scope
2750 should be called later to exit this scope. */
2755 if (TREE_CODE (t
) == NAMESPACE_DECL
)
2756 push_decl_namespace (t
);
2757 else if (CLASS_TYPE_P (t
))
2759 if (!at_class_scope_p ()
2760 || !same_type_p (current_class_type
, t
))
2761 push_nested_class (t
);
2763 /* T is the same as the current scope. There is therefore no
2764 need to re-enter the scope. Since we are not actually
2765 pushing a new scope, our caller should not call
2773 /* Leave scope pushed by push_scope. */
2780 if (TREE_CODE (t
) == NAMESPACE_DECL
)
2781 pop_decl_namespace ();
2782 else if CLASS_TYPE_P (t
)
2783 pop_nested_class ();
2786 /* Subroutine of push_inner_scope. */
2789 push_inner_scope_r (tree outer
, tree inner
)
2794 || (TREE_CODE (inner
) != NAMESPACE_DECL
&& !CLASS_TYPE_P (inner
)))
2797 prev
= CP_DECL_CONTEXT (TREE_CODE (inner
) == NAMESPACE_DECL
? inner
: TYPE_NAME (inner
));
2799 push_inner_scope_r (outer
, prev
);
2800 if (TREE_CODE (inner
) == NAMESPACE_DECL
)
2802 cp_binding_level
*save_template_parm
= 0;
2803 /* Temporary take out template parameter scopes. They are saved
2804 in reversed order in save_template_parm. */
2805 while (current_binding_level
->kind
== sk_template_parms
)
2807 cp_binding_level
*b
= current_binding_level
;
2808 current_binding_level
= b
->level_chain
;
2809 b
->level_chain
= save_template_parm
;
2810 save_template_parm
= b
;
2813 resume_scope (NAMESPACE_LEVEL (inner
));
2814 current_namespace
= inner
;
2816 /* Restore template parameter scopes. */
2817 while (save_template_parm
)
2819 cp_binding_level
*b
= save_template_parm
;
2820 save_template_parm
= b
->level_chain
;
2821 b
->level_chain
= current_binding_level
;
2822 current_binding_level
= b
;
2829 /* Enter the scope INNER from current scope. INNER must be a scope
2830 nested inside current scope. This works with both name lookup and
2831 pushing name into scope. In case a template parameter scope is present,
2832 namespace is pushed under the template parameter scope according to
2833 name lookup rule in 14.6.1/6.
2835 Return the former current scope suitable for pop_inner_scope. */
2838 push_inner_scope (tree inner
)
2840 tree outer
= current_scope ();
2842 outer
= current_namespace
;
2844 push_inner_scope_r (outer
, inner
);
2848 /* Exit the current scope INNER back to scope OUTER. */
2851 pop_inner_scope (tree outer
, tree inner
)
2854 || (TREE_CODE (inner
) != NAMESPACE_DECL
&& !CLASS_TYPE_P (inner
)))
2857 while (outer
!= inner
)
2859 if (TREE_CODE (inner
) == NAMESPACE_DECL
)
2861 cp_binding_level
*save_template_parm
= 0;
2862 /* Temporary take out template parameter scopes. They are saved
2863 in reversed order in save_template_parm. */
2864 while (current_binding_level
->kind
== sk_template_parms
)
2866 cp_binding_level
*b
= current_binding_level
;
2867 current_binding_level
= b
->level_chain
;
2868 b
->level_chain
= save_template_parm
;
2869 save_template_parm
= b
;
2874 /* Restore template parameter scopes. */
2875 while (save_template_parm
)
2877 cp_binding_level
*b
= save_template_parm
;
2878 save_template_parm
= b
->level_chain
;
2879 b
->level_chain
= current_binding_level
;
2880 current_binding_level
= b
;
2886 inner
= CP_DECL_CONTEXT (TREE_CODE (inner
) == NAMESPACE_DECL
? inner
: TYPE_NAME (inner
));
2890 /* Do a pushlevel for class declarations. */
2893 pushlevel_class (void)
2895 class_binding_level
= begin_scope (sk_class
, current_class_type
);
2898 /* ...and a poplevel for class declarations. */
2901 poplevel_class (void)
2903 cp_binding_level
*level
= class_binding_level
;
2904 cp_class_binding
*cb
;
2908 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
2909 gcc_assert (level
!= 0);
2911 /* If we're leaving a toplevel class, cache its binding level. */
2912 if (current_class_depth
== 1)
2913 previous_class_level
= level
;
2914 for (shadowed
= level
->type_shadowed
;
2916 shadowed
= TREE_CHAIN (shadowed
))
2917 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (shadowed
), TREE_VALUE (shadowed
));
2919 /* Remove the bindings for all of the class-level declarations. */
2920 if (level
->class_shadowed
)
2922 FOR_EACH_VEC_ELT (*level
->class_shadowed
, i
, cb
)
2924 IDENTIFIER_BINDING (cb
->identifier
) = cb
->base
->previous
;
2925 cxx_binding_free (cb
->base
);
2927 ggc_free (level
->class_shadowed
);
2928 level
->class_shadowed
= NULL
;
2931 /* Now, pop out of the binding level which we created up in the
2932 `pushlevel_class' routine. */
2933 gcc_assert (current_binding_level
== level
);
2935 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
2938 /* Set INHERITED_VALUE_BINDING_P on BINDING to true or false, as
2939 appropriate. DECL is the value to which a name has just been
2940 bound. CLASS_TYPE is the class in which the lookup occurred. */
2943 set_inherited_value_binding_p (cxx_binding
*binding
, tree decl
,
2946 if (binding
->value
== decl
&& TREE_CODE (decl
) != TREE_LIST
)
2950 if (TREE_CODE (decl
) == OVERLOAD
)
2951 context
= ovl_scope (decl
);
2954 gcc_assert (DECL_P (decl
));
2955 context
= context_for_name_lookup (decl
);
2958 if (is_properly_derived_from (class_type
, context
))
2959 INHERITED_VALUE_BINDING_P (binding
) = 1;
2961 INHERITED_VALUE_BINDING_P (binding
) = 0;
2963 else if (binding
->value
== decl
)
2964 /* We only encounter a TREE_LIST when there is an ambiguity in the
2965 base classes. Such an ambiguity can be overridden by a
2966 definition in this class. */
2967 INHERITED_VALUE_BINDING_P (binding
) = 1;
2969 INHERITED_VALUE_BINDING_P (binding
) = 0;
2972 /* Make the declaration of X appear in CLASS scope. */
2975 pushdecl_class_level (tree x
)
2978 bool is_valid
= true;
2981 /* Do nothing if we're adding to an outer lambda closure type,
2982 outer_binding will add it later if it's needed. */
2983 if (current_class_type
!= class_binding_level
->this_entity
)
2986 subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
2987 /* Get the name of X. */
2988 if (TREE_CODE (x
) == OVERLOAD
)
2989 name
= DECL_NAME (get_first_fn (x
));
2991 name
= DECL_NAME (x
);
2995 is_valid
= push_class_level_binding (name
, x
);
2996 if (TREE_CODE (x
) == TYPE_DECL
)
2997 set_identifier_type_value (name
, x
);
2999 else if (ANON_AGGR_TYPE_P (TREE_TYPE (x
)))
3001 /* If X is an anonymous aggregate, all of its members are
3002 treated as if they were members of the class containing the
3003 aggregate, for naming purposes. */
3006 for (f
= TYPE_FIELDS (TREE_TYPE (x
)); f
; f
= DECL_CHAIN (f
))
3008 location_t save_location
= input_location
;
3009 input_location
= DECL_SOURCE_LOCATION (f
);
3010 if (!pushdecl_class_level (f
))
3012 input_location
= save_location
;
3015 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
3019 /* Return the BINDING (if any) for NAME in SCOPE, which is a class
3020 scope. If the value returned is non-NULL, and the PREVIOUS field
3021 is not set, callers must set the PREVIOUS field explicitly. */
3023 static cxx_binding
*
3024 get_class_binding (tree name
, cp_binding_level
*scope
)
3029 cxx_binding
*binding
;
3031 class_type
= scope
->this_entity
;
3033 /* Get the type binding. */
3034 type_binding
= lookup_member (class_type
, name
,
3035 /*protect=*/2, /*want_type=*/true,
3036 tf_warning_or_error
);
3037 /* Get the value binding. */
3038 value_binding
= lookup_member (class_type
, name
,
3039 /*protect=*/2, /*want_type=*/false,
3040 tf_warning_or_error
);
3043 && (TREE_CODE (value_binding
) == TYPE_DECL
3044 || DECL_CLASS_TEMPLATE_P (value_binding
)
3045 || (TREE_CODE (value_binding
) == TREE_LIST
3046 && TREE_TYPE (value_binding
) == error_mark_node
3047 && (TREE_CODE (TREE_VALUE (value_binding
))
3049 /* We found a type binding, even when looking for a non-type
3050 binding. This means that we already processed this binding
3053 else if (value_binding
)
3055 if (TREE_CODE (value_binding
) == TREE_LIST
3056 && TREE_TYPE (value_binding
) == error_mark_node
)
3057 /* NAME is ambiguous. */
3059 else if (BASELINK_P (value_binding
))
3060 /* NAME is some overloaded functions. */
3061 value_binding
= BASELINK_FUNCTIONS (value_binding
);
3064 /* If we found either a type binding or a value binding, create a
3065 new binding object. */
3066 if (type_binding
|| value_binding
)
3068 binding
= new_class_binding (name
,
3072 /* This is a class-scope binding, not a block-scope binding. */
3073 LOCAL_BINDING_P (binding
) = 0;
3074 set_inherited_value_binding_p (binding
, value_binding
, class_type
);
3082 /* Make the declaration(s) of X appear in CLASS scope under the name
3083 NAME. Returns true if the binding is valid. */
3086 push_class_level_binding_1 (tree name
, tree x
)
3088 cxx_binding
*binding
;
3092 /* The class_binding_level will be NULL if x is a template
3093 parameter name in a member template. */
3094 if (!class_binding_level
)
3097 if (name
== error_mark_node
)
3100 /* Check for invalid member names. But don't worry about a default
3101 argument-scope lambda being pushed after the class is complete. */
3102 gcc_assert (TYPE_BEING_DEFINED (current_class_type
)
3103 || LAMBDA_TYPE_P (TREE_TYPE (decl
)));
3104 /* Check that we're pushing into the right binding level. */
3105 gcc_assert (current_class_type
== class_binding_level
->this_entity
);
3107 /* We could have been passed a tree list if this is an ambiguous
3108 declaration. If so, pull the declaration out because
3109 check_template_shadow will not handle a TREE_LIST. */
3110 if (TREE_CODE (decl
) == TREE_LIST
3111 && TREE_TYPE (decl
) == error_mark_node
)
3112 decl
= TREE_VALUE (decl
);
3114 if (!check_template_shadow (decl
))
3119 If T is the name of a class, then each of the following shall
3120 have a name different from T:
3122 -- every static data member of class T;
3124 -- every member of class T that is itself a type;
3126 -- every enumerator of every member of class T that is an
3129 -- every member of every anonymous union that is a member of
3132 (Non-static data members were also forbidden to have the same
3133 name as T until TC1.) */
3135 || TREE_CODE (x
) == CONST_DECL
3136 || (TREE_CODE (x
) == TYPE_DECL
3137 && !DECL_SELF_REFERENCE_P (x
))
3138 /* A data member of an anonymous union. */
3139 || (TREE_CODE (x
) == FIELD_DECL
3140 && DECL_CONTEXT (x
) != current_class_type
))
3141 && DECL_NAME (x
) == constructor_name (current_class_type
))
3143 tree scope
= context_for_name_lookup (x
);
3144 if (TYPE_P (scope
) && same_type_p (scope
, current_class_type
))
3146 error ("%qD has the same name as the class in which it is "
3153 /* Get the current binding for NAME in this class, if any. */
3154 binding
= IDENTIFIER_BINDING (name
);
3155 if (!binding
|| binding
->scope
!= class_binding_level
)
3157 binding
= get_class_binding (name
, class_binding_level
);
3158 /* If a new binding was created, put it at the front of the
3159 IDENTIFIER_BINDING list. */
3162 binding
->previous
= IDENTIFIER_BINDING (name
);
3163 IDENTIFIER_BINDING (name
) = binding
;
3167 /* If there is already a binding, then we may need to update the
3169 if (binding
&& binding
->value
)
3171 tree bval
= binding
->value
;
3172 tree old_decl
= NULL_TREE
;
3173 tree target_decl
= strip_using_decl (decl
);
3174 tree target_bval
= strip_using_decl (bval
);
3176 if (INHERITED_VALUE_BINDING_P (binding
))
3178 /* If the old binding was from a base class, and was for a
3179 tag name, slide it over to make room for the new binding.
3180 The old binding is still visible if explicitly qualified
3181 with a class-key. */
3182 if (TREE_CODE (target_bval
) == TYPE_DECL
3183 && DECL_ARTIFICIAL (target_bval
)
3184 && !(TREE_CODE (target_decl
) == TYPE_DECL
3185 && DECL_ARTIFICIAL (target_decl
)))
3187 old_decl
= binding
->type
;
3188 binding
->type
= bval
;
3189 binding
->value
= NULL_TREE
;
3190 INHERITED_VALUE_BINDING_P (binding
) = 0;
3195 /* Any inherited type declaration is hidden by the type
3196 declaration in the derived class. */
3197 if (TREE_CODE (target_decl
) == TYPE_DECL
3198 && DECL_ARTIFICIAL (target_decl
))
3199 binding
->type
= NULL_TREE
;
3202 else if (TREE_CODE (target_decl
) == OVERLOAD
3203 && is_overloaded_fn (target_bval
))
3205 else if (TREE_CODE (decl
) == USING_DECL
3206 && TREE_CODE (bval
) == USING_DECL
3207 && same_type_p (USING_DECL_SCOPE (decl
),
3208 USING_DECL_SCOPE (bval
)))
3209 /* This is a using redeclaration that will be diagnosed later
3210 in supplement_binding */
3212 else if (TREE_CODE (decl
) == USING_DECL
3213 && TREE_CODE (bval
) == USING_DECL
3214 && DECL_DEPENDENT_P (decl
)
3215 && DECL_DEPENDENT_P (bval
))
3217 else if (TREE_CODE (decl
) == USING_DECL
3218 && is_overloaded_fn (target_bval
))
3220 else if (TREE_CODE (bval
) == USING_DECL
3221 && is_overloaded_fn (target_decl
))
3224 if (old_decl
&& binding
->scope
== class_binding_level
)
3227 /* It is always safe to clear INHERITED_VALUE_BINDING_P
3228 here. This function is only used to register bindings
3229 from with the class definition itself. */
3230 INHERITED_VALUE_BINDING_P (binding
) = 0;
3235 /* Note that we declared this value so that we can issue an error if
3236 this is an invalid redeclaration of a name already used for some
3238 note_name_declared_in_class (name
, decl
);
3240 /* If we didn't replace an existing binding, put the binding on the
3241 stack of bindings for the identifier, and update the shadowed
3243 if (binding
&& binding
->scope
== class_binding_level
)
3244 /* Supplement the existing binding. */
3245 ok
= supplement_binding (binding
, decl
);
3248 /* Create a new binding. */
3249 push_binding (name
, decl
, class_binding_level
);
3256 /* Wrapper for push_class_level_binding_1. */
3259 push_class_level_binding (tree name
, tree x
)
3262 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
3263 ret
= push_class_level_binding_1 (name
, x
);
3264 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
3268 /* Process "using SCOPE::NAME" in a class scope. Return the
3269 USING_DECL created. */
3272 do_class_using_decl (tree scope
, tree name
)
3274 /* The USING_DECL returned by this function. */
3276 /* The declaration (or declarations) name by this using
3277 declaration. NULL if we are in a template and cannot figure out
3278 what has been named. */
3280 /* True if SCOPE is a dependent type. */
3281 bool scope_dependent_p
;
3282 /* True if SCOPE::NAME is dependent. */
3283 bool name_dependent_p
;
3284 /* True if any of the bases of CURRENT_CLASS_TYPE are dependent. */
3285 bool bases_dependent_p
;
3290 if (name
== error_mark_node
)
3293 if (!scope
|| !TYPE_P (scope
))
3295 error ("using-declaration for non-member at class scope");
3299 /* Make sure the name is not invalid */
3300 if (TREE_CODE (name
) == BIT_NOT_EXPR
)
3302 error ("%<%T::%D%> names destructor", scope
, name
);
3305 /* Using T::T declares inheriting ctors, even if T is a typedef. */
3306 if (MAYBE_CLASS_TYPE_P (scope
)
3307 && ((TYPE_NAME (scope
) && name
== TYPE_IDENTIFIER (scope
))
3308 || constructor_name_p (name
, scope
)))
3310 maybe_warn_cpp0x (CPP0X_INHERITING_CTORS
);
3311 name
= ctor_identifier
;
3313 if (constructor_name_p (name
, current_class_type
))
3315 error ("%<%T::%D%> names constructor in %qT",
3316 scope
, name
, current_class_type
);
3320 scope_dependent_p
= dependent_scope_p (scope
);
3321 name_dependent_p
= (scope_dependent_p
3322 || (IDENTIFIER_TYPENAME_P (name
)
3323 && dependent_type_p (TREE_TYPE (name
))));
3325 bases_dependent_p
= false;
3326 if (processing_template_decl
)
3327 for (binfo
= TYPE_BINFO (current_class_type
), i
= 0;
3328 BINFO_BASE_ITERATE (binfo
, i
, base_binfo
);
3330 if (dependent_type_p (TREE_TYPE (base_binfo
)))
3332 bases_dependent_p
= true;
3338 /* From [namespace.udecl]:
3340 A using-declaration used as a member-declaration shall refer to a
3341 member of a base class of the class being defined.
3343 In general, we cannot check this constraint in a template because
3344 we do not know the entire set of base classes of the current
3345 class type. Morover, if SCOPE is dependent, it might match a
3346 non-dependent base. */
3348 if (!scope_dependent_p
)
3351 binfo
= lookup_base (current_class_type
, scope
, ba_any
, &b_kind
,
3352 tf_warning_or_error
);
3353 if (b_kind
< bk_proper_base
)
3355 if (!bases_dependent_p
)
3357 error_not_base_type (scope
, current_class_type
);
3361 else if (!name_dependent_p
)
3363 decl
= lookup_member (binfo
, name
, 0, false, tf_warning_or_error
);
3366 error ("no members matching %<%T::%D%> in %q#T", scope
, name
,
3370 /* The binfo from which the functions came does not matter. */
3371 if (BASELINK_P (decl
))
3372 decl
= BASELINK_FUNCTIONS (decl
);
3376 value
= build_lang_decl (USING_DECL
, name
, NULL_TREE
);
3377 USING_DECL_DECLS (value
) = decl
;
3378 USING_DECL_SCOPE (value
) = scope
;
3379 DECL_DEPENDENT_P (value
) = !decl
;
3385 /* Return the binding value for name in scope. */
3389 namespace_binding_1 (tree name
, tree scope
)
3391 cxx_binding
*binding
;
3393 if (SCOPE_FILE_SCOPE_P (scope
))
3394 scope
= global_namespace
;
3396 /* Unnecessary for the global namespace because it can't be an alias. */
3397 scope
= ORIGINAL_NAMESPACE (scope
);
3399 binding
= cp_binding_level_find_binding_for_name (NAMESPACE_LEVEL (scope
), name
);
3401 return binding
? binding
->value
: NULL_TREE
;
3405 namespace_binding (tree name
, tree scope
)
3408 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
3409 ret
= namespace_binding_1 (name
, scope
);
3410 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
3414 /* Set the binding value for name in scope. */
3417 set_namespace_binding_1 (tree name
, tree scope
, tree val
)
3421 if (scope
== NULL_TREE
)
3422 scope
= global_namespace
;
3423 b
= binding_for_name (NAMESPACE_LEVEL (scope
), name
);
3424 if (!b
->value
|| TREE_CODE (val
) == OVERLOAD
|| val
== error_mark_node
)
3427 supplement_binding (b
, val
);
3430 /* Wrapper for set_namespace_binding_1. */
3433 set_namespace_binding (tree name
, tree scope
, tree val
)
3435 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
3436 set_namespace_binding_1 (name
, scope
, val
);
3437 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
3440 /* Set the context of a declaration to scope. Complain if we are not
3444 set_decl_namespace (tree decl
, tree scope
, bool friendp
)
3448 /* Get rid of namespace aliases. */
3449 scope
= ORIGINAL_NAMESPACE (scope
);
3451 /* It is ok for friends to be qualified in parallel space. */
3452 if (!friendp
&& !is_ancestor (current_namespace
, scope
))
3453 error ("declaration of %qD not in a namespace surrounding %qD",
3455 DECL_CONTEXT (decl
) = FROB_CONTEXT (scope
);
3457 /* Writing "int N::i" to declare a variable within "N" is invalid. */
3458 if (scope
== current_namespace
)
3460 if (at_namespace_scope_p ())
3461 error ("explicit qualification in declaration of %qD",
3466 /* See whether this has been declared in the namespace. */
3467 old
= lookup_qualified_name (scope
, DECL_NAME (decl
), false, true);
3468 if (old
== error_mark_node
)
3469 /* No old declaration at all. */
3471 /* If it's a TREE_LIST, the result of the lookup was ambiguous. */
3472 if (TREE_CODE (old
) == TREE_LIST
)
3474 error ("reference to %qD is ambiguous", decl
);
3475 print_candidates (old
);
3478 if (!is_overloaded_fn (decl
))
3480 /* We might have found OLD in an inline namespace inside SCOPE. */
3481 if (TREE_CODE (decl
) == TREE_CODE (old
))
3482 DECL_CONTEXT (decl
) = DECL_CONTEXT (old
);
3483 /* Don't compare non-function decls with decls_match here, since
3484 it can't check for the correct constness at this
3485 point. pushdecl will find those errors later. */
3488 /* Since decl is a function, old should contain a function decl. */
3489 if (!is_overloaded_fn (old
))
3491 /* A template can be explicitly specialized in any namespace. */
3492 if (processing_explicit_instantiation
)
3494 if (processing_template_decl
|| processing_specialization
)
3495 /* We have not yet called push_template_decl to turn a
3496 FUNCTION_DECL into a TEMPLATE_DECL, so the declarations won't
3497 match. But, we'll check later, when we construct the
3500 /* Instantiations or specializations of templates may be declared as
3501 friends in any namespace. */
3502 if (friendp
&& DECL_USE_TEMPLATE (decl
))
3504 if (is_overloaded_fn (old
))
3506 tree found
= NULL_TREE
;
3508 for (; elt
; elt
= OVL_NEXT (elt
))
3510 tree ofn
= OVL_CURRENT (elt
);
3511 /* Adjust DECL_CONTEXT first so decls_match will return true
3512 if DECL will match a declaration in an inline namespace. */
3513 DECL_CONTEXT (decl
) = DECL_CONTEXT (ofn
);
3514 if (decls_match (decl
, ofn
))
3516 if (found
&& !decls_match (found
, ofn
))
3518 DECL_CONTEXT (decl
) = FROB_CONTEXT (scope
);
3519 error ("reference to %qD is ambiguous", decl
);
3520 print_candidates (old
);
3528 if (!is_associated_namespace (scope
, CP_DECL_CONTEXT (found
)))
3530 DECL_CONTEXT (decl
) = DECL_CONTEXT (found
);
3536 DECL_CONTEXT (decl
) = DECL_CONTEXT (old
);
3537 if (decls_match (decl
, old
))
3541 /* It didn't work, go back to the explicit scope. */
3542 DECL_CONTEXT (decl
) = FROB_CONTEXT (scope
);
3544 error ("%qD should have been declared inside %qD", decl
, scope
);
3547 /* Return the namespace where the current declaration is declared. */
3550 current_decl_namespace (void)
3553 /* If we have been pushed into a different namespace, use it. */
3554 if (!vec_safe_is_empty (decl_namespace_list
))
3555 return decl_namespace_list
->last ();
3557 if (current_class_type
)
3558 result
= decl_namespace_context (current_class_type
);
3559 else if (current_function_decl
)
3560 result
= decl_namespace_context (current_function_decl
);
3562 result
= current_namespace
;
3566 /* Process any ATTRIBUTES on a namespace definition. Currently only
3567 attribute visibility is meaningful, which is a property of the syntactic
3568 block rather than the namespace as a whole, so we don't touch the
3569 NAMESPACE_DECL at all. Returns true if attribute visibility is seen. */
3572 handle_namespace_attrs (tree ns
, tree attributes
)
3575 bool saw_vis
= false;
3577 for (d
= attributes
; d
; d
= TREE_CHAIN (d
))
3579 tree name
= get_attribute_name (d
);
3580 tree args
= TREE_VALUE (d
);
3582 if (is_attribute_p ("visibility", name
))
3584 tree x
= args
? TREE_VALUE (args
) : NULL_TREE
;
3585 if (x
== NULL_TREE
|| TREE_CODE (x
) != STRING_CST
|| TREE_CHAIN (args
))
3587 warning (OPT_Wattributes
,
3588 "%qD attribute requires a single NTBS argument",
3593 if (!TREE_PUBLIC (ns
))
3594 warning (OPT_Wattributes
,
3595 "%qD attribute is meaningless since members of the "
3596 "anonymous namespace get local symbols", name
);
3598 push_visibility (TREE_STRING_POINTER (x
), 1);
3603 warning (OPT_Wattributes
, "%qD attribute directive ignored",
3612 /* Push into the scope of the NAME namespace. If NAME is NULL_TREE, then we
3613 select a name that is unique to this compilation unit. */
3616 push_namespace (tree name
)
3619 bool need_new
= true;
3620 bool implicit_use
= false;
3623 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
3625 /* We should not get here if the global_namespace is not yet constructed
3626 nor if NAME designates the global namespace: The global scope is
3627 constructed elsewhere. */
3628 gcc_assert (global_namespace
!= NULL
&& name
!= global_scope_name
);
3632 name
= get_anonymous_namespace_name();
3633 d
= IDENTIFIER_NAMESPACE_VALUE (name
);
3635 /* Reopening anonymous namespace. */
3637 implicit_use
= true;
3641 /* Check whether this is an extended namespace definition. */
3642 d
= IDENTIFIER_NAMESPACE_VALUE (name
);
3643 if (d
!= NULL_TREE
&& TREE_CODE (d
) == NAMESPACE_DECL
)
3645 tree dna
= DECL_NAMESPACE_ALIAS (d
);
3648 /* We do some error recovery for, eg, the redeclaration
3655 However, in nasty cases like:
3663 we just error out below, in duplicate_decls. */
3664 if (NAMESPACE_LEVEL (dna
)->level_chain
3665 == current_binding_level
)
3667 error ("namespace alias %qD not allowed here, "
3668 "assuming %qD", d
, dna
);
3680 /* Make a new namespace, binding the name to it. */
3681 d
= build_lang_decl (NAMESPACE_DECL
, name
, void_type_node
);
3682 DECL_CONTEXT (d
) = FROB_CONTEXT (current_namespace
);
3683 /* The name of this namespace is not visible to other translation
3684 units if it is an anonymous namespace or member thereof. */
3685 if (anon
|| decl_anon_ns_mem_p (current_namespace
))
3686 TREE_PUBLIC (d
) = 0;
3688 TREE_PUBLIC (d
) = 1;
3692 /* Clear DECL_NAME for the benefit of debugging back ends. */
3693 SET_DECL_ASSEMBLER_NAME (d
, name
);
3694 DECL_NAME (d
) = NULL_TREE
;
3696 begin_scope (sk_namespace
, d
);
3699 resume_scope (NAMESPACE_LEVEL (d
));
3702 do_using_directive (d
);
3703 /* Enter the name space. */
3704 current_namespace
= d
;
3706 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
3709 /* Pop from the scope of the current namespace. */
3712 pop_namespace (void)
3714 gcc_assert (current_namespace
!= global_namespace
);
3715 current_namespace
= CP_DECL_CONTEXT (current_namespace
);
3716 /* The binding level is not popped, as it might be re-opened later. */
3720 /* Push into the scope of the namespace NS, even if it is deeply
3721 nested within another namespace. */
3724 push_nested_namespace (tree ns
)
3726 if (ns
== global_namespace
)
3727 push_to_top_level ();
3730 push_nested_namespace (CP_DECL_CONTEXT (ns
));
3731 push_namespace (DECL_NAME (ns
));
3735 /* Pop back from the scope of the namespace NS, which was previously
3736 entered with push_nested_namespace. */
3739 pop_nested_namespace (tree ns
)
3741 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
3742 gcc_assert (current_namespace
== ns
);
3743 while (ns
!= global_namespace
)
3746 ns
= CP_DECL_CONTEXT (ns
);
3749 pop_from_top_level ();
3750 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
3753 /* Temporarily set the namespace for the current declaration. */
3756 push_decl_namespace (tree decl
)
3758 if (TREE_CODE (decl
) != NAMESPACE_DECL
)
3759 decl
= decl_namespace_context (decl
);
3760 vec_safe_push (decl_namespace_list
, ORIGINAL_NAMESPACE (decl
));
3763 /* [namespace.memdef]/2 */
3766 pop_decl_namespace (void)
3768 decl_namespace_list
->pop ();
3771 /* Return the namespace that is the common ancestor
3772 of two given namespaces. */
3775 namespace_ancestor_1 (tree ns1
, tree ns2
)
3778 if (is_ancestor (ns1
, ns2
))
3781 nsr
= namespace_ancestor_1 (CP_DECL_CONTEXT (ns1
), ns2
);
3785 /* Wrapper for namespace_ancestor_1. */
3788 namespace_ancestor (tree ns1
, tree ns2
)
3791 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
3792 nsr
= namespace_ancestor_1 (ns1
, ns2
);
3793 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
3797 /* Process a namespace-alias declaration. */
3800 do_namespace_alias (tree alias
, tree name_space
)
3802 if (name_space
== error_mark_node
)
3805 gcc_assert (TREE_CODE (name_space
) == NAMESPACE_DECL
);
3807 name_space
= ORIGINAL_NAMESPACE (name_space
);
3809 /* Build the alias. */
3810 alias
= build_lang_decl (NAMESPACE_DECL
, alias
, void_type_node
);
3811 DECL_NAMESPACE_ALIAS (alias
) = name_space
;
3812 DECL_EXTERNAL (alias
) = 1;
3813 DECL_CONTEXT (alias
) = FROB_CONTEXT (current_scope ());
3816 /* Emit debug info for namespace alias. */
3817 if (!building_stmt_list_p ())
3818 (*debug_hooks
->global_decl
) (alias
);
3821 /* Like pushdecl, only it places X in the current namespace,
3825 pushdecl_namespace_level (tree x
, bool is_friend
)
3827 cp_binding_level
*b
= current_binding_level
;
3830 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
3831 t
= pushdecl_with_scope (x
, NAMESPACE_LEVEL (current_namespace
), is_friend
);
3833 /* Now, the type_shadowed stack may screw us. Munge it so it does
3835 if (TREE_CODE (t
) == TYPE_DECL
)
3837 tree name
= DECL_NAME (t
);
3839 tree
*ptr
= (tree
*)0;
3840 for (; !global_scope_p (b
); b
= b
->level_chain
)
3842 tree shadowed
= b
->type_shadowed
;
3843 for (; shadowed
; shadowed
= TREE_CHAIN (shadowed
))
3844 if (TREE_PURPOSE (shadowed
) == name
)
3846 ptr
= &TREE_VALUE (shadowed
);
3847 /* Can't break out of the loop here because sometimes
3848 a binding level will have duplicate bindings for
3849 PT names. It's gross, but I haven't time to fix it. */
3852 newval
= TREE_TYPE (t
);
3853 if (ptr
== (tree
*)0)
3855 /* @@ This shouldn't be needed. My test case "zstring.cc" trips
3856 up here if this is changed to an assertion. --KR */
3857 SET_IDENTIFIER_TYPE_VALUE (name
, t
);
3864 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
3868 /* Insert USED into the using list of USER. Set INDIRECT_flag if this
3869 directive is not directly from the source. Also find the common
3870 ancestor and let our users know about the new namespace */
3873 add_using_namespace_1 (tree user
, tree used
, bool indirect
)
3876 /* Using oneself is a no-op. */
3879 gcc_assert (TREE_CODE (user
) == NAMESPACE_DECL
);
3880 gcc_assert (TREE_CODE (used
) == NAMESPACE_DECL
);
3881 /* Check if we already have this. */
3882 t
= purpose_member (used
, DECL_NAMESPACE_USING (user
));
3886 /* Promote to direct usage. */
3887 TREE_INDIRECT_USING (t
) = 0;
3891 /* Add used to the user's using list. */
3892 DECL_NAMESPACE_USING (user
)
3893 = tree_cons (used
, namespace_ancestor (user
, used
),
3894 DECL_NAMESPACE_USING (user
));
3896 TREE_INDIRECT_USING (DECL_NAMESPACE_USING (user
)) = indirect
;
3898 /* Add user to the used's users list. */
3899 DECL_NAMESPACE_USERS (used
)
3900 = tree_cons (user
, 0, DECL_NAMESPACE_USERS (used
));
3902 /* Recursively add all namespaces used. */
3903 for (t
= DECL_NAMESPACE_USING (used
); t
; t
= TREE_CHAIN (t
))
3904 /* indirect usage */
3905 add_using_namespace_1 (user
, TREE_PURPOSE (t
), 1);
3907 /* Tell everyone using us about the new used namespaces. */
3908 for (t
= DECL_NAMESPACE_USERS (user
); t
; t
= TREE_CHAIN (t
))
3909 add_using_namespace_1 (TREE_PURPOSE (t
), used
, 1);
3912 /* Wrapper for add_using_namespace_1. */
3915 add_using_namespace (tree user
, tree used
, bool indirect
)
3917 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
3918 add_using_namespace_1 (user
, used
, indirect
);
3919 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
3922 /* Process a using-declaration not appearing in class or local scope. */
3925 do_toplevel_using_decl (tree decl
, tree scope
, tree name
)
3927 tree oldval
, oldtype
, newval
, newtype
;
3928 tree orig_decl
= decl
;
3929 cxx_binding
*binding
;
3931 decl
= validate_nonmember_using_decl (decl
, scope
, name
);
3932 if (decl
== NULL_TREE
)
3935 binding
= binding_for_name (NAMESPACE_LEVEL (current_namespace
), name
);
3937 oldval
= binding
->value
;
3938 oldtype
= binding
->type
;
3940 do_nonmember_using_decl (scope
, name
, oldval
, oldtype
, &newval
, &newtype
);
3942 /* Emit debug info. */
3943 if (!processing_template_decl
)
3944 cp_emit_debug_info_for_using (orig_decl
, current_namespace
);
3946 /* Copy declarations found. */
3948 binding
->value
= newval
;
3950 binding
->type
= newtype
;
3953 /* Process a using-directive. */
3956 do_using_directive (tree name_space
)
3958 tree context
= NULL_TREE
;
3960 if (name_space
== error_mark_node
)
3963 gcc_assert (TREE_CODE (name_space
) == NAMESPACE_DECL
);
3965 if (building_stmt_list_p ())
3966 add_stmt (build_stmt (input_location
, USING_STMT
, name_space
));
3967 name_space
= ORIGINAL_NAMESPACE (name_space
);
3969 if (!toplevel_bindings_p ())
3971 push_using_directive (name_space
);
3976 add_using_namespace (current_namespace
, name_space
, 0);
3977 if (current_namespace
!= global_namespace
)
3978 context
= current_namespace
;
3980 /* Emit debugging info. */
3981 if (!processing_template_decl
)
3982 (*debug_hooks
->imported_module_or_decl
) (name_space
, NULL_TREE
,
3987 /* Deal with a using-directive seen by the parser. Currently we only
3988 handle attributes here, since they cannot appear inside a template. */
3991 parse_using_directive (tree name_space
, tree attribs
)
3995 do_using_directive (name_space
);
3997 for (a
= attribs
; a
; a
= TREE_CHAIN (a
))
3999 tree name
= TREE_PURPOSE (a
);
4000 if (is_attribute_p ("strong", name
))
4002 if (!toplevel_bindings_p ())
4003 error ("strong using only meaningful at namespace scope");
4004 else if (name_space
!= error_mark_node
)
4006 if (!is_ancestor (current_namespace
, name_space
))
4007 error ("current namespace %qD does not enclose strongly used namespace %qD",
4008 current_namespace
, name_space
);
4009 DECL_NAMESPACE_ASSOCIATIONS (name_space
)
4010 = tree_cons (current_namespace
, 0,
4011 DECL_NAMESPACE_ASSOCIATIONS (name_space
));
4015 warning (OPT_Wattributes
, "%qD attribute directive ignored", name
);
4019 /* Like pushdecl, only it places X in the global scope if appropriate.
4020 Calls cp_finish_decl to register the variable, initializing it with
4021 *INIT, if INIT is non-NULL. */
4024 pushdecl_top_level_1 (tree x
, tree
*init
, bool is_friend
)
4026 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
4027 push_to_top_level ();
4028 x
= pushdecl_namespace_level (x
, is_friend
);
4030 cp_finish_decl (x
, *init
, false, NULL_TREE
, 0);
4031 pop_from_top_level ();
4032 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
4036 /* Like pushdecl, only it places X in the global scope if appropriate. */
4039 pushdecl_top_level (tree x
)
4041 return pushdecl_top_level_1 (x
, NULL
, false);
4044 /* Like pushdecl_top_level, but adding the IS_FRIEND parameter. */
4047 pushdecl_top_level_maybe_friend (tree x
, bool is_friend
)
4049 return pushdecl_top_level_1 (x
, NULL
, is_friend
);
4052 /* Like pushdecl, only it places X in the global scope if
4053 appropriate. Calls cp_finish_decl to register the variable,
4054 initializing it with INIT. */
4057 pushdecl_top_level_and_finish (tree x
, tree init
)
4059 return pushdecl_top_level_1 (x
, &init
, false);
4062 /* Combines two sets of overloaded functions into an OVERLOAD chain, removing
4063 duplicates. The first list becomes the tail of the result.
4065 The algorithm is O(n^2). We could get this down to O(n log n) by
4066 doing a sort on the addresses of the functions, if that becomes
4070 merge_functions (tree s1
, tree s2
)
4072 for (; s2
; s2
= OVL_NEXT (s2
))
4074 tree fn2
= OVL_CURRENT (s2
);
4077 for (fns1
= s1
; fns1
; fns1
= OVL_NEXT (fns1
))
4079 tree fn1
= OVL_CURRENT (fns1
);
4081 /* If the function from S2 is already in S1, there is no
4082 need to add it again. For `extern "C"' functions, we
4083 might have two FUNCTION_DECLs for the same function, in
4084 different namespaces, but let's leave them in in case
4085 they have different default arguments. */
4090 /* If we exhausted all of the functions in S1, FN2 is new. */
4092 s1
= build_overload (fn2
, s1
);
4097 /* Returns TRUE iff OLD and NEW are the same entity.
4099 3 [basic]/3: An entity is a value, object, reference, function,
4100 enumerator, type, class member, template, template specialization,
4101 namespace, parameter pack, or this.
4103 7.3.4 [namespace.udir]/4: If name lookup finds a declaration for a name
4104 in two different namespaces, and the declarations do not declare the
4105 same entity and do not declare functions, the use of the name is
4109 same_entity_p (tree one
, tree two
)
4115 if (TREE_CODE (one
) == TYPE_DECL
4116 && TREE_CODE (two
) == TYPE_DECL
4117 && same_type_p (TREE_TYPE (one
), TREE_TYPE (two
)))
4122 /* This should return an error not all definitions define functions.
4123 It is not an error if we find two functions with exactly the
4124 same signature, only if these are selected in overload resolution.
4125 old is the current set of bindings, new_binding the freshly-found binding.
4126 XXX Do we want to give *all* candidates in case of ambiguity?
4127 XXX In what way should I treat extern declarations?
4128 XXX I don't want to repeat the entire duplicate_decls here */
4131 ambiguous_decl (struct scope_binding
*old
, cxx_binding
*new_binding
, int flags
)
4134 gcc_assert (old
!= NULL
);
4136 /* Copy the type. */
4137 type
= new_binding
->type
;
4138 if (LOOKUP_NAMESPACES_ONLY (flags
)
4139 || (type
&& hidden_name_p (type
) && !(flags
& LOOKUP_HIDDEN
)))
4142 /* Copy the value. */
4143 val
= new_binding
->value
;
4146 if (hidden_name_p (val
) && !(flags
& LOOKUP_HIDDEN
))
4149 switch (TREE_CODE (val
))
4152 /* If we expect types or namespaces, and not templates,
4153 or this is not a template class. */
4154 if ((LOOKUP_QUALIFIERS_ONLY (flags
)
4155 && !DECL_TYPE_TEMPLATE_P (val
)))
4159 if (LOOKUP_NAMESPACES_ONLY (flags
)
4160 || (type
&& (flags
& LOOKUP_PREFER_TYPES
)))
4163 case NAMESPACE_DECL
:
4164 if (LOOKUP_TYPES_ONLY (flags
))
4168 /* Ignore built-in functions that are still anticipated. */
4169 if (LOOKUP_QUALIFIERS_ONLY (flags
))
4173 if (LOOKUP_QUALIFIERS_ONLY (flags
))
4178 /* If val is hidden, shift down any class or enumeration name. */
4187 else if (val
&& !same_entity_p (val
, old
->value
))
4189 if (is_overloaded_fn (old
->value
) && is_overloaded_fn (val
))
4190 old
->value
= merge_functions (old
->value
, val
);
4193 old
->value
= tree_cons (NULL_TREE
, old
->value
,
4194 build_tree_list (NULL_TREE
, val
));
4195 TREE_TYPE (old
->value
) = error_mark_node
;
4201 else if (type
&& old
->type
!= type
)
4203 old
->type
= tree_cons (NULL_TREE
, old
->type
,
4204 build_tree_list (NULL_TREE
, type
));
4205 TREE_TYPE (old
->type
) = error_mark_node
;
4209 /* Return the declarations that are members of the namespace NS. */
4212 cp_namespace_decls (tree ns
)
4214 return NAMESPACE_LEVEL (ns
)->names
;
4217 /* Combine prefer_type and namespaces_only into flags. */
4220 lookup_flags (int prefer_type
, int namespaces_only
)
4222 if (namespaces_only
)
4223 return LOOKUP_PREFER_NAMESPACES
;
4224 if (prefer_type
> 1)
4225 return LOOKUP_PREFER_TYPES
;
4226 if (prefer_type
> 0)
4227 return LOOKUP_PREFER_BOTH
;
4231 /* Given a lookup that returned VAL, use FLAGS to decide if we want to
4232 ignore it or not. Subroutine of lookup_name_real and
4233 lookup_type_scope. */
4236 qualify_lookup (tree val
, int flags
)
4238 if (val
== NULL_TREE
)
4240 if ((flags
& LOOKUP_PREFER_NAMESPACES
) && TREE_CODE (val
) == NAMESPACE_DECL
)
4242 if (flags
& LOOKUP_PREFER_TYPES
)
4244 tree target_val
= strip_using_decl (val
);
4245 if (TREE_CODE (target_val
) == TYPE_DECL
4246 || TREE_CODE (target_val
) == TEMPLATE_DECL
)
4249 if (flags
& (LOOKUP_PREFER_NAMESPACES
| LOOKUP_PREFER_TYPES
))
4251 /* Look through lambda things that we shouldn't be able to see. */
4252 if (is_lambda_ignored_entity (val
))
4257 /* Given a lookup that returned VAL, decide if we want to ignore it or
4258 not based on DECL_ANTICIPATED. */
4261 hidden_name_p (tree val
)
4264 && DECL_LANG_SPECIFIC (val
)
4265 && TYPE_FUNCTION_OR_TEMPLATE_DECL_P (val
)
4266 && DECL_ANTICIPATED (val
))
4271 /* Remove any hidden friend functions from a possibly overloaded set
4275 remove_hidden_names (tree fns
)
4280 if (TREE_CODE (fns
) == FUNCTION_DECL
&& hidden_name_p (fns
))
4282 else if (TREE_CODE (fns
) == OVERLOAD
)
4286 for (o
= fns
; o
; o
= OVL_NEXT (o
))
4287 if (hidden_name_p (OVL_CURRENT (o
)))
4293 for (o
= fns
; o
; o
= OVL_NEXT (o
))
4294 if (!hidden_name_p (OVL_CURRENT (o
)))
4295 n
= build_overload (OVL_CURRENT (o
), n
);
4303 /* Suggest alternatives for NAME, an IDENTIFIER_NODE for which name
4304 lookup failed. Search through all available namespaces and print out
4305 possible candidates. */
4308 suggest_alternatives_for (location_t location
, tree name
)
4310 vec
<tree
> candidates
= vNULL
;
4311 vec
<tree
> namespaces_to_search
= vNULL
;
4312 int max_to_search
= PARAM_VALUE (CXX_MAX_NAMESPACES_FOR_DIAGNOSTIC_HELP
);
4317 namespaces_to_search
.safe_push (global_namespace
);
4319 while (!namespaces_to_search
.is_empty ()
4320 && n_searched
< max_to_search
)
4322 tree scope
= namespaces_to_search
.pop ();
4323 struct scope_binding binding
= EMPTY_SCOPE_BINDING
;
4324 cp_binding_level
*level
= NAMESPACE_LEVEL (scope
);
4326 /* Look in this namespace. */
4327 qualified_lookup_using_namespace (name
, scope
, &binding
, 0);
4332 candidates
.safe_push (binding
.value
);
4334 /* Add child namespaces. */
4335 for (t
= level
->namespaces
; t
; t
= DECL_CHAIN (t
))
4336 namespaces_to_search
.safe_push (t
);
4339 /* If we stopped before we could examine all namespaces, inform the
4340 user. Do this even if we don't have any candidates, since there
4341 might be more candidates further down that we weren't able to
4343 if (n_searched
>= max_to_search
4344 && !namespaces_to_search
.is_empty ())
4346 "maximum limit of %d namespaces searched for %qE",
4347 max_to_search
, name
);
4349 namespaces_to_search
.release ();
4351 /* Nothing useful to report. */
4352 if (candidates
.is_empty ())
4355 inform_n (location
, candidates
.length (),
4356 "suggested alternative:",
4357 "suggested alternatives:");
4359 FOR_EACH_VEC_ELT (candidates
, ix
, t
)
4360 inform (location_of (t
), " %qE", t
);
4362 candidates
.release ();
4365 /* Unscoped lookup of a global: iterate over current namespaces,
4366 considering using-directives. */
4369 unqualified_namespace_lookup_1 (tree name
, int flags
)
4371 tree initial
= current_decl_namespace ();
4372 tree scope
= initial
;
4374 cp_binding_level
*level
;
4375 tree val
= NULL_TREE
;
4377 for (; !val
; scope
= CP_DECL_CONTEXT (scope
))
4379 struct scope_binding binding
= EMPTY_SCOPE_BINDING
;
4381 cp_binding_level_find_binding_for_name (NAMESPACE_LEVEL (scope
), name
);
4384 ambiguous_decl (&binding
, b
, flags
);
4386 /* Add all _DECLs seen through local using-directives. */
4387 for (level
= current_binding_level
;
4388 level
->kind
!= sk_namespace
;
4389 level
= level
->level_chain
)
4390 if (!lookup_using_namespace (name
, &binding
, level
->using_directives
,
4392 /* Give up because of error. */
4393 return error_mark_node
;
4395 /* Add all _DECLs seen through global using-directives. */
4396 /* XXX local and global using lists should work equally. */
4400 if (!lookup_using_namespace (name
, &binding
,
4401 DECL_NAMESPACE_USING (siter
),
4403 /* Give up because of error. */
4404 return error_mark_node
;
4405 if (siter
== scope
) break;
4406 siter
= CP_DECL_CONTEXT (siter
);
4409 val
= binding
.value
;
4410 if (scope
== global_namespace
)
4416 /* Wrapper for unqualified_namespace_lookup_1. */
4419 unqualified_namespace_lookup (tree name
, int flags
)
4422 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
4423 ret
= unqualified_namespace_lookup_1 (name
, flags
);
4424 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
4428 /* Look up NAME (an IDENTIFIER_NODE) in SCOPE (either a NAMESPACE_DECL
4429 or a class TYPE). If IS_TYPE_P is TRUE, then ignore non-type
4432 Returns a DECL (or OVERLOAD, or BASELINK) representing the
4433 declaration found. If no suitable declaration can be found,
4434 ERROR_MARK_NODE is returned. If COMPLAIN is true and SCOPE is
4435 neither a class-type nor a namespace a diagnostic is issued. */
4438 lookup_qualified_name (tree scope
, tree name
, bool is_type_p
, bool complain
)
4443 if (TREE_CODE (scope
) == NAMESPACE_DECL
)
4445 struct scope_binding binding
= EMPTY_SCOPE_BINDING
;
4448 flags
|= LOOKUP_PREFER_TYPES
;
4449 if (qualified_lookup_using_namespace (name
, scope
, &binding
, flags
))
4452 else if (cxx_dialect
!= cxx98
&& TREE_CODE (scope
) == ENUMERAL_TYPE
)
4453 t
= lookup_enumerator (scope
, name
);
4454 else if (is_class_type (scope
, complain
))
4455 t
= lookup_member (scope
, name
, 2, is_type_p
, tf_warning_or_error
);
4458 return error_mark_node
;
4462 /* Subroutine of unqualified_namespace_lookup:
4463 Add the bindings of NAME in used namespaces to VAL.
4464 We are currently looking for names in namespace SCOPE, so we
4465 look through USINGS for using-directives of namespaces
4466 which have SCOPE as a common ancestor with the current scope.
4467 Returns false on errors. */
4470 lookup_using_namespace (tree name
, struct scope_binding
*val
,
4471 tree usings
, tree scope
, int flags
)
4474 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
4475 /* Iterate over all used namespaces in current, searching for using
4476 directives of scope. */
4477 for (iter
= usings
; iter
; iter
= TREE_CHAIN (iter
))
4478 if (TREE_VALUE (iter
) == scope
)
4480 tree used
= ORIGINAL_NAMESPACE (TREE_PURPOSE (iter
));
4482 cp_binding_level_find_binding_for_name (NAMESPACE_LEVEL (used
), name
);
4483 /* Resolve ambiguities. */
4485 ambiguous_decl (val
, val1
, flags
);
4487 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
4488 return val
->value
!= error_mark_node
;
4491 /* Returns true iff VEC contains TARGET. */
4494 tree_vec_contains (vec
<tree
, va_gc
> *vec
, tree target
)
4498 FOR_EACH_VEC_SAFE_ELT (vec
,i
,elt
)
4505 Accepts the NAME to lookup and its qualifying SCOPE.
4506 Returns the name/type pair found into the cxx_binding *RESULT,
4507 or false on error. */
4510 qualified_lookup_using_namespace (tree name
, tree scope
,
4511 struct scope_binding
*result
, int flags
)
4513 /* Maintain a list of namespaces visited... */
4514 vec
<tree
, va_gc
> *seen
= NULL
;
4515 vec
<tree
, va_gc
> *seen_inline
= NULL
;
4516 /* ... and a list of namespace yet to see. */
4517 vec
<tree
, va_gc
> *todo
= NULL
;
4518 vec
<tree
, va_gc
> *todo_maybe
= NULL
;
4519 vec
<tree
, va_gc
> *todo_inline
= NULL
;
4521 timevar_start (TV_NAME_LOOKUP
);
4522 /* Look through namespace aliases. */
4523 scope
= ORIGINAL_NAMESPACE (scope
);
4525 /* Algorithm: Starting with SCOPE, walk through the set of used
4526 namespaces. For each used namespace, look through its inline
4527 namespace set for any bindings and usings. If no bindings are
4528 found, add any usings seen to the set of used namespaces. */
4529 vec_safe_push (todo
, scope
);
4531 while (todo
->length ())
4534 scope
= todo
->pop ();
4535 if (tree_vec_contains (seen
, scope
))
4537 vec_safe_push (seen
, scope
);
4538 vec_safe_push (todo_inline
, scope
);
4541 while (todo_inline
->length ())
4543 cxx_binding
*binding
;
4545 scope
= todo_inline
->pop ();
4546 if (tree_vec_contains (seen_inline
, scope
))
4548 vec_safe_push (seen_inline
, scope
);
4551 cp_binding_level_find_binding_for_name (NAMESPACE_LEVEL (scope
), name
);
4555 ambiguous_decl (result
, binding
, flags
);
4558 for (usings
= DECL_NAMESPACE_USING (scope
); usings
;
4559 usings
= TREE_CHAIN (usings
))
4560 if (!TREE_INDIRECT_USING (usings
))
4562 if (is_associated_namespace (scope
, TREE_PURPOSE (usings
)))
4563 vec_safe_push (todo_inline
, TREE_PURPOSE (usings
));
4565 vec_safe_push (todo_maybe
, TREE_PURPOSE (usings
));
4570 vec_safe_truncate (todo_maybe
, 0);
4572 while (vec_safe_length (todo_maybe
))
4573 vec_safe_push (todo
, todo_maybe
->pop ());
4576 vec_free (todo_maybe
);
4577 vec_free (todo_inline
);
4579 vec_free (seen_inline
);
4580 timevar_stop (TV_NAME_LOOKUP
);
4581 return result
->value
!= error_mark_node
;
4584 /* Subroutine of outer_binding.
4586 Returns TRUE if BINDING is a binding to a template parameter of
4587 SCOPE. In that case SCOPE is the scope of a primary template
4588 parameter -- in the sense of G++, i.e, a template that has its own
4591 Returns FALSE otherwise. */
4594 binding_to_template_parms_of_scope_p (cxx_binding
*binding
,
4595 cp_binding_level
*scope
)
4597 tree binding_value
, tmpl
, tinfo
;
4600 if (!binding
|| !scope
|| !scope
->this_entity
)
4603 binding_value
= binding
->value
? binding
->value
: binding
->type
;
4604 tinfo
= get_template_info (scope
->this_entity
);
4606 /* BINDING_VALUE must be a template parm. */
4607 if (binding_value
== NULL_TREE
4608 || (!DECL_P (binding_value
)
4609 || !DECL_TEMPLATE_PARM_P (binding_value
)))
4612 /* The level of BINDING_VALUE. */
4614 template_type_parameter_p (binding_value
)
4615 ? TEMPLATE_PARM_LEVEL (TEMPLATE_TYPE_PARM_INDEX
4616 (TREE_TYPE (binding_value
)))
4617 : TEMPLATE_PARM_LEVEL (DECL_INITIAL (binding_value
));
4619 /* The template of the current scope, iff said scope is a primary
4622 && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo
))
4623 ? TI_TEMPLATE (tinfo
)
4626 /* If the level of the parm BINDING_VALUE equals the depth of TMPL,
4627 then BINDING_VALUE is a parameter of TMPL. */
4628 return (tmpl
&& level
== TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl
)));
4631 /* Return the innermost non-namespace binding for NAME from a scope
4632 containing BINDING, or, if BINDING is NULL, the current scope.
4633 Please note that for a given template, the template parameters are
4634 considered to be in the scope containing the current scope.
4635 If CLASS_P is false, then class bindings are ignored. */
4638 outer_binding (tree name
,
4639 cxx_binding
*binding
,
4643 cp_binding_level
*scope
;
4644 cp_binding_level
*outer_scope
;
4648 scope
= binding
->scope
->level_chain
;
4649 outer
= binding
->previous
;
4653 scope
= current_binding_level
;
4654 outer
= IDENTIFIER_BINDING (name
);
4656 outer_scope
= outer
? outer
->scope
: NULL
;
4658 /* Because we create class bindings lazily, we might be missing a
4659 class binding for NAME. If there are any class binding levels
4660 between the LAST_BINDING_LEVEL and the scope in which OUTER was
4661 declared, we must lookup NAME in those class scopes. */
4663 while (scope
&& scope
!= outer_scope
&& scope
->kind
!= sk_namespace
)
4665 if (scope
->kind
== sk_class
)
4667 cxx_binding
*class_binding
;
4669 class_binding
= get_class_binding (name
, scope
);
4672 /* Thread this new class-scope binding onto the
4673 IDENTIFIER_BINDING list so that future lookups
4675 class_binding
->previous
= outer
;
4677 binding
->previous
= class_binding
;
4679 IDENTIFIER_BINDING (name
) = class_binding
;
4680 return class_binding
;
4683 /* If we are in a member template, the template parms of the member
4684 template are considered to be inside the scope of the containing
4685 class, but within G++ the class bindings are all pushed between the
4686 template parms and the function body. So if the outer binding is
4687 a template parm for the current scope, return it now rather than
4688 look for a class binding. */
4689 if (outer_scope
&& outer_scope
->kind
== sk_template_parms
4690 && binding_to_template_parms_of_scope_p (outer
, scope
))
4693 scope
= scope
->level_chain
;
4699 /* Return the innermost block-scope or class-scope value binding for
4700 NAME, or NULL_TREE if there is no such binding. */
4703 innermost_non_namespace_value (tree name
)
4705 cxx_binding
*binding
;
4706 binding
= outer_binding (name
, /*binding=*/NULL
, /*class_p=*/true);
4707 return binding
? binding
->value
: NULL_TREE
;
4710 /* Look up NAME in the current binding level and its superiors in the
4711 namespace of variables, functions and typedefs. Return a ..._DECL
4712 node of some kind representing its definition if there is only one
4713 such declaration, or return a TREE_LIST with all the overloaded
4714 definitions if there are many, or return 0 if it is undefined.
4715 Hidden name, either friend declaration or built-in function, are
4718 If PREFER_TYPE is > 0, we prefer TYPE_DECLs or namespaces.
4719 If PREFER_TYPE is > 1, we reject non-type decls (e.g. namespaces).
4720 Otherwise we prefer non-TYPE_DECLs.
4722 If NONCLASS is nonzero, bindings in class scopes are ignored. If
4723 BLOCK_P is false, bindings in block scopes are ignored. */
4726 lookup_name_real_1 (tree name
, int prefer_type
, int nonclass
, bool block_p
,
4727 int namespaces_only
, int flags
)
4730 tree val
= NULL_TREE
;
4732 /* Conversion operators are handled specially because ordinary
4733 unqualified name lookup will not find template conversion
4735 if (IDENTIFIER_TYPENAME_P (name
))
4737 cp_binding_level
*level
;
4739 for (level
= current_binding_level
;
4740 level
&& level
->kind
!= sk_namespace
;
4741 level
= level
->level_chain
)
4746 /* A conversion operator can only be declared in a class
4748 if (level
->kind
!= sk_class
)
4751 /* Lookup the conversion operator in the class. */
4752 class_type
= level
->this_entity
;
4753 operators
= lookup_fnfields (class_type
, name
, /*protect=*/0);
4761 flags
|= lookup_flags (prefer_type
, namespaces_only
);
4763 /* First, look in non-namespace scopes. */
4765 if (current_class_type
== NULL_TREE
)
4768 if (block_p
|| !nonclass
)
4769 for (iter
= outer_binding (name
, NULL
, !nonclass
);
4771 iter
= outer_binding (name
, iter
, !nonclass
))
4775 /* Skip entities we don't want. */
4776 if (LOCAL_BINDING_P (iter
) ? !block_p
: nonclass
)
4779 /* If this is the kind of thing we're looking for, we're done. */
4780 if (qualify_lookup (iter
->value
, flags
))
4781 binding
= iter
->value
;
4782 else if ((flags
& LOOKUP_PREFER_TYPES
)
4783 && qualify_lookup (iter
->type
, flags
))
4784 binding
= iter
->type
;
4786 binding
= NULL_TREE
;
4790 if (hidden_name_p (binding
))
4792 /* A non namespace-scope binding can only be hidden in the
4793 presence of a local class, due to friend declarations.
4795 In particular, consider:
4803 B* b; // error: B is hidden
4804 C* c; // OK, finds ::C
4807 B *b; // error: B is hidden
4808 C *c; // OK, finds ::C
4813 The standard says that "B" is a local class in "f"
4814 (but not nested within "A") -- but that name lookup
4815 for "B" does not find this declaration until it is
4816 declared directly with "f".
4822 If a friend declaration appears in a local class and
4823 the name specified is an unqualified name, a prior
4824 declaration is looked up without considering scopes
4825 that are outside the innermost enclosing non-class
4826 scope. For a friend function declaration, if there is
4827 no prior declaration, the program is ill-formed. For a
4828 friend class declaration, if there is no prior
4829 declaration, the class that is specified belongs to the
4830 innermost enclosing non-class scope, but if it is
4831 subsequently referenced, its name is not found by name
4832 lookup until a matching declaration is provided in the
4833 innermost enclosing nonclass scope.
4835 So just keep looking for a non-hidden binding.
4837 gcc_assert (TREE_CODE (binding
) == TYPE_DECL
);
4845 /* Now lookup in namespace scopes. */
4847 val
= unqualified_namespace_lookup (name
, flags
);
4849 /* If we have a single function from a using decl, pull it out. */
4850 if (val
&& TREE_CODE (val
) == OVERLOAD
&& !really_overloaded_fn (val
))
4851 val
= OVL_FUNCTION (val
);
4856 /* Wrapper for lookup_name_real_1. */
4859 lookup_name_real (tree name
, int prefer_type
, int nonclass
, bool block_p
,
4860 int namespaces_only
, int flags
)
4863 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
4864 ret
= lookup_name_real_1 (name
, prefer_type
, nonclass
, block_p
,
4865 namespaces_only
, flags
);
4866 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
4871 lookup_name_nonclass (tree name
)
4873 return lookup_name_real (name
, 0, 1, /*block_p=*/true, 0, 0);
4877 lookup_function_nonclass (tree name
, vec
<tree
, va_gc
> *args
, bool block_p
)
4880 lookup_arg_dependent (name
,
4881 lookup_name_real (name
, 0, 1, block_p
, 0, 0),
4886 lookup_name (tree name
)
4888 return lookup_name_real (name
, 0, 0, /*block_p=*/true, 0, 0);
4892 lookup_name_prefer_type (tree name
, int prefer_type
)
4894 return lookup_name_real (name
, prefer_type
, 0, /*block_p=*/true, 0, 0);
4897 /* Look up NAME for type used in elaborated name specifier in
4898 the scopes given by SCOPE. SCOPE can be either TS_CURRENT or
4899 TS_WITHIN_ENCLOSING_NON_CLASS. Although not implied by the
4900 name, more scopes are checked if cleanup or template parameter
4901 scope is encountered.
4903 Unlike lookup_name_real, we make sure that NAME is actually
4904 declared in the desired scope, not from inheritance, nor using
4905 directive. For using declaration, there is DR138 still waiting
4906 to be resolved. Hidden name coming from an earlier friend
4907 declaration is also returned.
4909 A TYPE_DECL best matching the NAME is returned. Catching error
4910 and issuing diagnostics are caller's responsibility. */
4913 lookup_type_scope_1 (tree name
, tag_scope scope
)
4915 cxx_binding
*iter
= NULL
;
4916 tree val
= NULL_TREE
;
4918 /* Look in non-namespace scope first. */
4919 if (current_binding_level
->kind
!= sk_namespace
)
4920 iter
= outer_binding (name
, NULL
, /*class_p=*/ true);
4921 for (; iter
; iter
= outer_binding (name
, iter
, /*class_p=*/ true))
4923 /* Check if this is the kind of thing we're looking for.
4924 If SCOPE is TS_CURRENT, also make sure it doesn't come from
4925 base class. For ITER->VALUE, we can simply use
4926 INHERITED_VALUE_BINDING_P. For ITER->TYPE, we have to use
4929 We check ITER->TYPE before ITER->VALUE in order to handle
4930 typedef struct C {} C;
4933 if (qualify_lookup (iter
->type
, LOOKUP_PREFER_TYPES
)
4934 && (scope
!= ts_current
4935 || LOCAL_BINDING_P (iter
)
4936 || DECL_CONTEXT (iter
->type
) == iter
->scope
->this_entity
))
4938 else if ((scope
!= ts_current
4939 || !INHERITED_VALUE_BINDING_P (iter
))
4940 && qualify_lookup (iter
->value
, LOOKUP_PREFER_TYPES
))
4947 /* Look in namespace scope. */
4950 iter
= cp_binding_level_find_binding_for_name
4951 (NAMESPACE_LEVEL (current_decl_namespace ()), name
);
4955 /* If this is the kind of thing we're looking for, we're done. */
4956 if (qualify_lookup (iter
->type
, LOOKUP_PREFER_TYPES
))
4958 else if (qualify_lookup (iter
->value
, LOOKUP_PREFER_TYPES
))
4964 /* Type found, check if it is in the allowed scopes, ignoring cleanup
4965 and template parameter scopes. */
4968 cp_binding_level
*b
= current_binding_level
;
4971 if (iter
->scope
== b
)
4974 if (b
->kind
== sk_cleanup
|| b
->kind
== sk_template_parms
4975 || b
->kind
== sk_function_parms
)
4977 else if (b
->kind
== sk_class
4978 && scope
== ts_within_enclosing_non_class
)
4988 /* Wrapper for lookup_type_scope_1. */
4991 lookup_type_scope (tree name
, tag_scope scope
)
4994 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
4995 ret
= lookup_type_scope_1 (name
, scope
);
4996 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
5001 /* Similar to `lookup_name' but look only in the innermost non-class
5005 lookup_name_innermost_nonclass_level_1 (tree name
)
5007 cp_binding_level
*b
;
5010 b
= innermost_nonclass_level ();
5012 if (b
->kind
== sk_namespace
)
5014 t
= IDENTIFIER_NAMESPACE_VALUE (name
);
5016 /* extern "C" function() */
5017 if (t
!= NULL_TREE
&& TREE_CODE (t
) == TREE_LIST
)
5020 else if (IDENTIFIER_BINDING (name
)
5021 && LOCAL_BINDING_P (IDENTIFIER_BINDING (name
)))
5023 cxx_binding
*binding
;
5024 binding
= IDENTIFIER_BINDING (name
);
5027 if (binding
->scope
== b
5028 && !(VAR_P (binding
->value
)
5029 && DECL_DEAD_FOR_LOCAL (binding
->value
)))
5030 return binding
->value
;
5032 if (b
->kind
== sk_cleanup
)
5042 /* Wrapper for lookup_name_innermost_nonclass_level_1. */
5045 lookup_name_innermost_nonclass_level (tree name
)
5048 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
5049 ret
= lookup_name_innermost_nonclass_level_1 (name
);
5050 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
5055 /* Returns true iff DECL is a block-scope extern declaration of a function
5059 is_local_extern (tree decl
)
5061 cxx_binding
*binding
;
5063 /* For functions, this is easy. */
5064 if (TREE_CODE (decl
) == FUNCTION_DECL
)
5065 return DECL_LOCAL_FUNCTION_P (decl
);
5069 if (!current_function_decl
)
5072 /* For variables, this is not easy. We need to look at the binding stack
5073 for the identifier to see whether the decl we have is a local. */
5074 for (binding
= IDENTIFIER_BINDING (DECL_NAME (decl
));
5075 binding
&& binding
->scope
->kind
!= sk_namespace
;
5076 binding
= binding
->previous
)
5077 if (binding
->value
== decl
)
5078 return LOCAL_BINDING_P (binding
);
5083 /* Like lookup_name_innermost_nonclass_level, but for types. */
5086 lookup_type_current_level (tree name
)
5090 timevar_start (TV_NAME_LOOKUP
);
5091 gcc_assert (current_binding_level
->kind
!= sk_namespace
);
5093 if (REAL_IDENTIFIER_TYPE_VALUE (name
) != NULL_TREE
5094 && REAL_IDENTIFIER_TYPE_VALUE (name
) != global_type_node
)
5096 cp_binding_level
*b
= current_binding_level
;
5099 if (purpose_member (name
, b
->type_shadowed
))
5101 t
= REAL_IDENTIFIER_TYPE_VALUE (name
);
5104 if (b
->kind
== sk_cleanup
)
5111 timevar_stop (TV_NAME_LOOKUP
);
5115 /* [basic.lookup.koenig] */
5116 /* A nonzero return value in the functions below indicates an error. */
5121 vec
<tree
, va_gc
> *args
;
5122 vec
<tree
, va_gc
> *namespaces
;
5123 vec
<tree
, va_gc
> *classes
;
5125 struct pointer_set_t
*fn_set
;
5128 static bool arg_assoc (struct arg_lookup
*, tree
);
5129 static bool arg_assoc_args (struct arg_lookup
*, tree
);
5130 static bool arg_assoc_args_vec (struct arg_lookup
*, vec
<tree
, va_gc
> *);
5131 static bool arg_assoc_type (struct arg_lookup
*, tree
);
5132 static bool add_function (struct arg_lookup
*, tree
);
5133 static bool arg_assoc_namespace (struct arg_lookup
*, tree
);
5134 static bool arg_assoc_class_only (struct arg_lookup
*, tree
);
5135 static bool arg_assoc_bases (struct arg_lookup
*, tree
);
5136 static bool arg_assoc_class (struct arg_lookup
*, tree
);
5137 static bool arg_assoc_template_arg (struct arg_lookup
*, tree
);
5139 /* Add a function to the lookup structure.
5140 Returns true on error. */
5143 add_function (struct arg_lookup
*k
, tree fn
)
5145 if (!is_overloaded_fn (fn
))
5146 /* All names except those of (possibly overloaded) functions and
5147 function templates are ignored. */;
5148 else if (k
->fn_set
&& pointer_set_insert (k
->fn_set
, fn
))
5149 /* It's already in the list. */;
5150 else if (!k
->functions
)
5152 else if (fn
== k
->functions
)
5156 k
->functions
= build_overload (fn
, k
->functions
);
5157 if (TREE_CODE (k
->functions
) == OVERLOAD
)
5158 OVL_ARG_DEPENDENT (k
->functions
) = true;
5164 /* Returns true iff CURRENT has declared itself to be an associated
5165 namespace of SCOPE via a strong using-directive (or transitive chain
5166 thereof). Both are namespaces. */
5169 is_associated_namespace (tree current
, tree scope
)
5171 vec
<tree
, va_gc
> *seen
= make_tree_vector ();
5172 vec
<tree
, va_gc
> *todo
= make_tree_vector ();
5178 if (scope
== current
)
5183 vec_safe_push (seen
, scope
);
5184 for (t
= DECL_NAMESPACE_ASSOCIATIONS (scope
); t
; t
= TREE_CHAIN (t
))
5185 if (!vec_member (TREE_PURPOSE (t
), seen
))
5186 vec_safe_push (todo
, TREE_PURPOSE (t
));
5187 if (!todo
->is_empty ())
5189 scope
= todo
->last ();
5199 release_tree_vector (seen
);
5200 release_tree_vector (todo
);
5205 /* Add functions of a namespace to the lookup structure.
5206 Returns true on error. */
5209 arg_assoc_namespace (struct arg_lookup
*k
, tree scope
)
5213 if (vec_member (scope
, k
->namespaces
))
5215 vec_safe_push (k
->namespaces
, scope
);
5217 /* Check out our super-users. */
5218 for (value
= DECL_NAMESPACE_ASSOCIATIONS (scope
); value
;
5219 value
= TREE_CHAIN (value
))
5220 if (arg_assoc_namespace (k
, TREE_PURPOSE (value
)))
5223 /* Also look down into inline namespaces. */
5224 for (value
= DECL_NAMESPACE_USING (scope
); value
;
5225 value
= TREE_CHAIN (value
))
5226 if (is_associated_namespace (scope
, TREE_PURPOSE (value
)))
5227 if (arg_assoc_namespace (k
, TREE_PURPOSE (value
)))
5230 value
= namespace_binding (k
->name
, scope
);
5234 for (; value
; value
= OVL_NEXT (value
))
5236 /* We don't want to find arbitrary hidden functions via argument
5237 dependent lookup. We only want to find friends of associated
5238 classes, which we'll do via arg_assoc_class. */
5239 if (hidden_name_p (OVL_CURRENT (value
)))
5242 if (add_function (k
, OVL_CURRENT (value
)))
5249 /* Adds everything associated with a template argument to the lookup
5250 structure. Returns true on error. */
5253 arg_assoc_template_arg (struct arg_lookup
*k
, tree arg
)
5255 /* [basic.lookup.koenig]
5257 If T is a template-id, its associated namespaces and classes are
5258 ... the namespaces and classes associated with the types of the
5259 template arguments provided for template type parameters
5260 (excluding template template parameters); the namespaces in which
5261 any template template arguments are defined; and the classes in
5262 which any member templates used as template template arguments
5263 are defined. [Note: non-type template arguments do not
5264 contribute to the set of associated namespaces. ] */
5266 /* Consider first template template arguments. */
5267 if (TREE_CODE (arg
) == TEMPLATE_TEMPLATE_PARM
5268 || TREE_CODE (arg
) == UNBOUND_CLASS_TEMPLATE
)
5270 else if (TREE_CODE (arg
) == TEMPLATE_DECL
)
5272 tree ctx
= CP_DECL_CONTEXT (arg
);
5274 /* It's not a member template. */
5275 if (TREE_CODE (ctx
) == NAMESPACE_DECL
)
5276 return arg_assoc_namespace (k
, ctx
);
5277 /* Otherwise, it must be member template. */
5279 return arg_assoc_class_only (k
, ctx
);
5281 /* It's an argument pack; handle it recursively. */
5282 else if (ARGUMENT_PACK_P (arg
))
5284 tree args
= ARGUMENT_PACK_ARGS (arg
);
5285 int i
, len
= TREE_VEC_LENGTH (args
);
5286 for (i
= 0; i
< len
; ++i
)
5287 if (arg_assoc_template_arg (k
, TREE_VEC_ELT (args
, i
)))
5292 /* It's not a template template argument, but it is a type template
5294 else if (TYPE_P (arg
))
5295 return arg_assoc_type (k
, arg
);
5296 /* It's a non-type template argument. */
5301 /* Adds the class and its friends to the lookup structure.
5302 Returns true on error. */
5305 arg_assoc_class_only (struct arg_lookup
*k
, tree type
)
5307 tree list
, friends
, context
;
5309 /* Backend-built structures, such as __builtin_va_list, aren't
5310 affected by all this. */
5311 if (!CLASS_TYPE_P (type
))
5314 context
= decl_namespace_context (type
);
5315 if (arg_assoc_namespace (k
, context
))
5318 complete_type (type
);
5320 /* Process friends. */
5321 for (list
= DECL_FRIENDLIST (TYPE_MAIN_DECL (type
)); list
;
5322 list
= TREE_CHAIN (list
))
5323 if (k
->name
== FRIEND_NAME (list
))
5324 for (friends
= FRIEND_DECLS (list
); friends
;
5325 friends
= TREE_CHAIN (friends
))
5327 tree fn
= TREE_VALUE (friends
);
5329 /* Only interested in global functions with potentially hidden
5330 (i.e. unqualified) declarations. */
5331 if (CP_DECL_CONTEXT (fn
) != context
)
5333 /* Template specializations are never found by name lookup.
5334 (Templates themselves can be found, but not template
5335 specializations.) */
5336 if (TREE_CODE (fn
) == FUNCTION_DECL
&& DECL_USE_TEMPLATE (fn
))
5338 if (add_function (k
, fn
))
5345 /* Adds the class and its bases to the lookup structure.
5346 Returns true on error. */
5349 arg_assoc_bases (struct arg_lookup
*k
, tree type
)
5351 if (arg_assoc_class_only (k
, type
))
5354 if (TYPE_BINFO (type
))
5356 /* Process baseclasses. */
5357 tree binfo
, base_binfo
;
5360 for (binfo
= TYPE_BINFO (type
), i
= 0;
5361 BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
5362 if (arg_assoc_bases (k
, BINFO_TYPE (base_binfo
)))
5369 /* Adds everything associated with a class argument type to the lookup
5370 structure. Returns true on error.
5372 If T is a class type (including unions), its associated classes are: the
5373 class itself; the class of which it is a member, if any; and its direct
5374 and indirect base classes. Its associated namespaces are the namespaces
5375 of which its associated classes are members. Furthermore, if T is a
5376 class template specialization, its associated namespaces and classes
5377 also include: the namespaces and classes associated with the types of
5378 the template arguments provided for template type parameters (excluding
5379 template template parameters); the namespaces of which any template
5380 template arguments are members; and the classes of which any member
5381 templates used as template template arguments are members. [ Note:
5382 non-type template arguments do not contribute to the set of associated
5383 namespaces. --end note] */
5386 arg_assoc_class (struct arg_lookup
*k
, tree type
)
5391 /* Backend build structures, such as __builtin_va_list, aren't
5392 affected by all this. */
5393 if (!CLASS_TYPE_P (type
))
5396 if (vec_member (type
, k
->classes
))
5398 vec_safe_push (k
->classes
, type
);
5400 if (TYPE_CLASS_SCOPE_P (type
)
5401 && arg_assoc_class_only (k
, TYPE_CONTEXT (type
)))
5404 if (arg_assoc_bases (k
, type
))
5407 /* Process template arguments. */
5408 if (CLASSTYPE_TEMPLATE_INFO (type
)
5409 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type
)))
5411 list
= INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type
));
5412 for (i
= 0; i
< TREE_VEC_LENGTH (list
); ++i
)
5413 if (arg_assoc_template_arg (k
, TREE_VEC_ELT (list
, i
)))
5420 /* Adds everything associated with a given type.
5421 Returns 1 on error. */
5424 arg_assoc_type (struct arg_lookup
*k
, tree type
)
5426 /* As we do not get the type of non-type dependent expressions
5427 right, we can end up with such things without a type. */
5431 if (TYPE_PTRDATAMEM_P (type
))
5433 /* Pointer to member: associate class type and value type. */
5434 if (arg_assoc_type (k
, TYPE_PTRMEM_CLASS_TYPE (type
)))
5436 return arg_assoc_type (k
, TYPE_PTRMEM_POINTED_TO_TYPE (type
));
5438 else switch (TREE_CODE (type
))
5448 case FIXED_POINT_TYPE
:
5453 if (TYPE_PTRMEMFUNC_P (type
))
5454 return arg_assoc_type (k
, TYPE_PTRMEMFUNC_FN_TYPE (type
));
5456 return arg_assoc_class (k
, type
);
5458 case REFERENCE_TYPE
:
5460 return arg_assoc_type (k
, TREE_TYPE (type
));
5462 if (TYPE_CLASS_SCOPE_P (type
)
5463 && arg_assoc_class_only (k
, TYPE_CONTEXT (type
)))
5465 return arg_assoc_namespace (k
, decl_namespace_context (type
));
5467 /* The basetype is referenced in the first arg type, so just
5470 /* Associate the parameter types. */
5471 if (arg_assoc_args (k
, TYPE_ARG_TYPES (type
)))
5473 /* Associate the return type. */
5474 return arg_assoc_type (k
, TREE_TYPE (type
));
5475 case TEMPLATE_TYPE_PARM
:
5476 case BOUND_TEMPLATE_TEMPLATE_PARM
:
5481 gcc_assert (type
== unknown_type_node
5482 || type
== init_list_type_node
);
5484 case TYPE_PACK_EXPANSION
:
5485 return arg_assoc_type (k
, PACK_EXPANSION_PATTERN (type
));
5493 /* Adds everything associated with arguments. Returns true on error. */
5496 arg_assoc_args (struct arg_lookup
*k
, tree args
)
5498 for (; args
; args
= TREE_CHAIN (args
))
5499 if (arg_assoc (k
, TREE_VALUE (args
)))
5504 /* Adds everything associated with an argument vector. Returns true
5508 arg_assoc_args_vec (struct arg_lookup
*k
, vec
<tree
, va_gc
> *args
)
5513 FOR_EACH_VEC_SAFE_ELT (args
, ix
, arg
)
5514 if (arg_assoc (k
, arg
))
5519 /* Adds everything associated with a given tree_node. Returns 1 on error. */
5522 arg_assoc (struct arg_lookup
*k
, tree n
)
5524 if (n
== error_mark_node
)
5528 return arg_assoc_type (k
, n
);
5530 if (! type_unknown_p (n
))
5531 return arg_assoc_type (k
, TREE_TYPE (n
));
5533 if (TREE_CODE (n
) == ADDR_EXPR
)
5534 n
= TREE_OPERAND (n
, 0);
5535 if (TREE_CODE (n
) == COMPONENT_REF
)
5536 n
= TREE_OPERAND (n
, 1);
5537 if (TREE_CODE (n
) == OFFSET_REF
)
5538 n
= TREE_OPERAND (n
, 1);
5539 while (TREE_CODE (n
) == TREE_LIST
)
5542 n
= BASELINK_FUNCTIONS (n
);
5544 if (TREE_CODE (n
) == FUNCTION_DECL
)
5545 return arg_assoc_type (k
, TREE_TYPE (n
));
5546 if (TREE_CODE (n
) == TEMPLATE_ID_EXPR
)
5548 /* The working paper doesn't currently say how to handle template-id
5549 arguments. The sensible thing would seem to be to handle the list
5550 of template candidates like a normal overload set, and handle the
5551 template arguments like we do for class template
5553 tree templ
= TREE_OPERAND (n
, 0);
5554 tree args
= TREE_OPERAND (n
, 1);
5557 /* First the templates. */
5558 if (arg_assoc (k
, templ
))
5561 /* Now the arguments. */
5563 for (ix
= TREE_VEC_LENGTH (args
); ix
--;)
5564 if (arg_assoc_template_arg (k
, TREE_VEC_ELT (args
, ix
)) == 1)
5567 else if (TREE_CODE (n
) == OVERLOAD
)
5569 for (; n
; n
= OVL_NEXT (n
))
5570 if (arg_assoc_type (k
, TREE_TYPE (OVL_CURRENT (n
))))
5577 /* Performs Koenig lookup depending on arguments, where fns
5578 are the functions found in normal lookup. */
5581 lookup_arg_dependent_1 (tree name
, tree fns
, vec
<tree
, va_gc
> *args
)
5583 struct arg_lookup k
;
5585 /* Remove any hidden friend functions from the list of functions
5586 found so far. They will be added back by arg_assoc_class as
5588 fns
= remove_hidden_names (fns
);
5593 k
.classes
= make_tree_vector ();
5595 /* We previously performed an optimization here by setting
5596 NAMESPACES to the current namespace when it was safe. However, DR
5597 164 says that namespaces that were already searched in the first
5598 stage of template processing are searched again (potentially
5599 picking up later definitions) in the second stage. */
5600 k
.namespaces
= make_tree_vector ();
5602 /* We used to allow duplicates and let joust discard them, but
5603 since the above change for DR 164 we end up with duplicates of
5604 all the functions found by unqualified lookup. So keep track
5605 of which ones we've seen. */
5609 /* We shouldn't be here if lookup found something other than
5610 namespace-scope functions. */
5611 gcc_assert (DECL_NAMESPACE_SCOPE_P (OVL_CURRENT (fns
)));
5612 k
.fn_set
= pointer_set_create ();
5613 for (ovl
= fns
; ovl
; ovl
= OVL_NEXT (ovl
))
5614 pointer_set_insert (k
.fn_set
, OVL_CURRENT (ovl
));
5619 arg_assoc_args_vec (&k
, args
);
5625 && !is_overloaded_fn (fns
))
5627 error ("argument dependent lookup finds %q+D", fns
);
5628 error (" in call to %qD", name
);
5629 fns
= error_mark_node
;
5632 release_tree_vector (k
.classes
);
5633 release_tree_vector (k
.namespaces
);
5635 pointer_set_destroy (k
.fn_set
);
5640 /* Wrapper for lookup_arg_dependent_1. */
5643 lookup_arg_dependent (tree name
, tree fns
, vec
<tree
, va_gc
> *args
)
5647 subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
5648 ret
= lookup_arg_dependent_1 (name
, fns
, args
);
5649 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
5654 /* Add namespace to using_directives. Return NULL_TREE if nothing was
5655 changed (i.e. there was already a directive), or the fresh
5656 TREE_LIST otherwise. */
5659 push_using_directive_1 (tree used
)
5661 tree ud
= current_binding_level
->using_directives
;
5662 tree iter
, ancestor
;
5664 /* Check if we already have this. */
5665 if (purpose_member (used
, ud
) != NULL_TREE
)
5668 ancestor
= namespace_ancestor (current_decl_namespace (), used
);
5669 ud
= current_binding_level
->using_directives
;
5670 ud
= tree_cons (used
, ancestor
, ud
);
5671 current_binding_level
->using_directives
= ud
;
5673 /* Recursively add all namespaces used. */
5674 for (iter
= DECL_NAMESPACE_USING (used
); iter
; iter
= TREE_CHAIN (iter
))
5675 push_using_directive (TREE_PURPOSE (iter
));
5680 /* Wrapper for push_using_directive_1. */
5683 push_using_directive (tree used
)
5686 timevar_start (TV_NAME_LOOKUP
);
5687 ret
= push_using_directive_1 (used
);
5688 timevar_stop (TV_NAME_LOOKUP
);
5692 /* The type TYPE is being declared. If it is a class template, or a
5693 specialization of a class template, do any processing required and
5694 perform error-checking. If IS_FRIEND is nonzero, this TYPE is
5695 being declared a friend. B is the binding level at which this TYPE
5698 Returns the TYPE_DECL for TYPE, which may have been altered by this
5702 maybe_process_template_type_declaration (tree type
, int is_friend
,
5703 cp_binding_level
*b
)
5705 tree decl
= TYPE_NAME (type
);
5707 if (processing_template_parmlist
)
5708 /* You can't declare a new template type in a template parameter
5709 list. But, you can declare a non-template type:
5711 template <class A*> struct S;
5713 is a forward-declaration of `A'. */
5715 else if (b
->kind
== sk_namespace
5716 && current_binding_level
->kind
!= sk_namespace
)
5717 /* If this new type is being injected into a containing scope,
5718 then it's not a template type. */
5722 gcc_assert (MAYBE_CLASS_TYPE_P (type
)
5723 || TREE_CODE (type
) == ENUMERAL_TYPE
);
5725 if (processing_template_decl
)
5727 /* This may change after the call to
5728 push_template_decl_real, but we want the original value. */
5729 tree name
= DECL_NAME (decl
);
5731 decl
= push_template_decl_real (decl
, is_friend
);
5732 if (decl
== error_mark_node
)
5733 return error_mark_node
;
5735 /* If the current binding level is the binding level for the
5736 template parameters (see the comment in
5737 begin_template_parm_list) and the enclosing level is a class
5738 scope, and we're not looking at a friend, push the
5739 declaration of the member class into the class scope. In the
5740 friend case, push_template_decl will already have put the
5741 friend into global scope, if appropriate. */
5742 if (TREE_CODE (type
) != ENUMERAL_TYPE
5743 && !is_friend
&& b
->kind
== sk_template_parms
5744 && b
->level_chain
->kind
== sk_class
)
5746 finish_member_declaration (CLASSTYPE_TI_TEMPLATE (type
));
5748 if (!COMPLETE_TYPE_P (current_class_type
))
5750 maybe_add_class_template_decl_list (current_class_type
,
5751 type
, /*friend_p=*/0);
5752 /* Put this UTD in the table of UTDs for the class. */
5753 if (CLASSTYPE_NESTED_UTDS (current_class_type
) == NULL
)
5754 CLASSTYPE_NESTED_UTDS (current_class_type
) =
5755 binding_table_new (SCOPE_DEFAULT_HT_SIZE
);
5757 binding_table_insert
5758 (CLASSTYPE_NESTED_UTDS (current_class_type
), name
, type
);
5767 /* Push a tag name NAME for struct/class/union/enum type TYPE. In case
5768 that the NAME is a class template, the tag is processed but not pushed.
5770 The pushed scope depend on the SCOPE parameter:
5771 - When SCOPE is TS_CURRENT, put it into the inner-most non-sk_cleanup
5773 - When SCOPE is TS_GLOBAL, put it in the inner-most non-class and
5774 non-template-parameter scope. This case is needed for forward
5776 - When SCOPE is TS_WITHIN_ENCLOSING_NON_CLASS, this is similar to
5777 TS_GLOBAL case except that names within template-parameter scopes
5778 are not pushed at all.
5780 Returns TYPE upon success and ERROR_MARK_NODE otherwise. */
5783 pushtag_1 (tree name
, tree type
, tag_scope scope
)
5785 cp_binding_level
*b
;
5788 b
= current_binding_level
;
5789 while (/* Cleanup scopes are not scopes from the point of view of
5791 b
->kind
== sk_cleanup
5792 /* Neither are function parameter scopes. */
5793 || b
->kind
== sk_function_parms
5794 /* Neither are the scopes used to hold template parameters
5795 for an explicit specialization. For an ordinary template
5796 declaration, these scopes are not scopes from the point of
5797 view of the language. */
5798 || (b
->kind
== sk_template_parms
5799 && (b
->explicit_spec_p
|| scope
== ts_global
))
5800 || (b
->kind
== sk_class
5801 && (scope
!= ts_current
5802 /* We may be defining a new type in the initializer
5803 of a static member variable. We allow this when
5804 not pedantic, and it is particularly useful for
5805 type punning via an anonymous union. */
5806 || COMPLETE_TYPE_P (b
->this_entity
))))
5809 gcc_assert (identifier_p (name
));
5811 /* Do C++ gratuitous typedefing. */
5812 if (identifier_type_value_1 (name
) != type
)
5816 tree context
= TYPE_CONTEXT (type
);
5820 tree cs
= current_scope ();
5822 if (scope
== ts_current
5823 || (cs
&& TREE_CODE (cs
) == FUNCTION_DECL
))
5825 else if (cs
!= NULL_TREE
&& TYPE_P (cs
))
5826 /* When declaring a friend class of a local class, we want
5827 to inject the newly named class into the scope
5828 containing the local class, not the namespace
5830 context
= decl_function_context (get_type_decl (cs
));
5833 context
= current_namespace
;
5835 if (b
->kind
== sk_class
5836 || (b
->kind
== sk_template_parms
5837 && b
->level_chain
->kind
== sk_class
))
5840 if (current_lang_name
== lang_name_java
)
5841 TYPE_FOR_JAVA (type
) = 1;
5843 tdef
= create_implicit_typedef (name
, type
);
5844 DECL_CONTEXT (tdef
) = FROB_CONTEXT (context
);
5845 if (scope
== ts_within_enclosing_non_class
)
5847 /* This is a friend. Make this TYPE_DECL node hidden from
5848 ordinary name lookup. Its corresponding TEMPLATE_DECL
5849 will be marked in push_template_decl_real. */
5850 retrofit_lang_decl (tdef
);
5851 DECL_ANTICIPATED (tdef
) = 1;
5852 DECL_FRIEND_P (tdef
) = 1;
5855 decl
= maybe_process_template_type_declaration
5856 (type
, scope
== ts_within_enclosing_non_class
, b
);
5857 if (decl
== error_mark_node
)
5860 if (b
->kind
== sk_class
)
5862 if (!TYPE_BEING_DEFINED (current_class_type
))
5863 return error_mark_node
;
5865 if (!PROCESSING_REAL_TEMPLATE_DECL_P ())
5866 /* Put this TYPE_DECL on the TYPE_FIELDS list for the
5867 class. But if it's a member template class, we want
5868 the TEMPLATE_DECL, not the TYPE_DECL, so this is done
5870 finish_member_declaration (decl
);
5872 pushdecl_class_level (decl
);
5874 else if (b
->kind
!= sk_template_parms
)
5876 decl
= pushdecl_with_scope_1 (decl
, b
, /*is_friend=*/false);
5877 if (decl
== error_mark_node
)
5882 set_identifier_type_value_with_scope (name
, tdef
, b
);
5884 TYPE_CONTEXT (type
) = DECL_CONTEXT (decl
);
5886 /* If this is a local class, keep track of it. We need this
5887 information for name-mangling, and so that it is possible to
5888 find all function definitions in a translation unit in a
5889 convenient way. (It's otherwise tricky to find a member
5890 function definition it's only pointed to from within a local
5892 if (TYPE_FUNCTION_SCOPE_P (type
))
5894 if (processing_template_decl
)
5896 /* Push a DECL_EXPR so we call pushtag at the right time in
5897 template instantiation rather than in some nested context. */
5898 add_decl_expr (decl
);
5901 vec_safe_push (local_classes
, type
);
5904 if (b
->kind
== sk_class
5905 && !COMPLETE_TYPE_P (current_class_type
))
5907 maybe_add_class_template_decl_list (current_class_type
,
5908 type
, /*friend_p=*/0);
5910 if (CLASSTYPE_NESTED_UTDS (current_class_type
) == NULL
)
5911 CLASSTYPE_NESTED_UTDS (current_class_type
)
5912 = binding_table_new (SCOPE_DEFAULT_HT_SIZE
);
5914 binding_table_insert
5915 (CLASSTYPE_NESTED_UTDS (current_class_type
), name
, type
);
5918 decl
= TYPE_NAME (type
);
5919 gcc_assert (TREE_CODE (decl
) == TYPE_DECL
);
5921 /* Set type visibility now if this is a forward declaration. */
5922 TREE_PUBLIC (decl
) = 1;
5923 determine_visibility (decl
);
5928 /* Wrapper for pushtag_1. */
5931 pushtag (tree name
, tree type
, tag_scope scope
)
5934 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
5935 ret
= pushtag_1 (name
, type
, scope
);
5936 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
5940 /* Subroutines for reverting temporarily to top-level for instantiation
5941 of templates and such. We actually need to clear out the class- and
5942 local-value slots of all identifiers, so that only the global values
5943 are at all visible. Simply setting current_binding_level to the global
5944 scope isn't enough, because more binding levels may be pushed. */
5945 struct saved_scope
*scope_chain
;
5947 /* Return true if ID has not already been marked. */
5950 store_binding_p (tree id
)
5952 if (!id
|| !IDENTIFIER_BINDING (id
))
5955 if (IDENTIFIER_MARKED (id
))
5961 /* Add an appropriate binding to *OLD_BINDINGS which needs to already
5962 have enough space reserved. */
5965 store_binding (tree id
, vec
<cxx_saved_binding
, va_gc
> **old_bindings
)
5967 cxx_saved_binding saved
;
5969 gcc_checking_assert (store_binding_p (id
));
5971 IDENTIFIER_MARKED (id
) = 1;
5973 saved
.identifier
= id
;
5974 saved
.binding
= IDENTIFIER_BINDING (id
);
5975 saved
.real_type_value
= REAL_IDENTIFIER_TYPE_VALUE (id
);
5976 (*old_bindings
)->quick_push (saved
);
5977 IDENTIFIER_BINDING (id
) = NULL
;
5981 store_bindings (tree names
, vec
<cxx_saved_binding
, va_gc
> **old_bindings
)
5983 static vec
<tree
> bindings_need_stored
= vNULL
;
5987 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
5988 for (t
= names
; t
; t
= TREE_CHAIN (t
))
5990 if (TREE_CODE (t
) == TREE_LIST
)
5991 id
= TREE_PURPOSE (t
);
5995 if (store_binding_p (id
))
5996 bindings_need_stored
.safe_push (id
);
5998 if (!bindings_need_stored
.is_empty ())
6000 vec_safe_reserve_exact (*old_bindings
, bindings_need_stored
.length ());
6001 for (i
= 0; bindings_need_stored
.iterate (i
, &id
); ++i
)
6003 /* We can appearantly have duplicates in NAMES. */
6004 if (store_binding_p (id
))
6005 store_binding (id
, old_bindings
);
6007 bindings_need_stored
.truncate (0);
6009 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
6012 /* Like store_bindings, but NAMES is a vector of cp_class_binding
6013 objects, rather than a TREE_LIST. */
6016 store_class_bindings (vec
<cp_class_binding
, va_gc
> *names
,
6017 vec
<cxx_saved_binding
, va_gc
> **old_bindings
)
6019 static vec
<tree
> bindings_need_stored
= vNULL
;
6021 cp_class_binding
*cb
;
6023 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
6024 for (i
= 0; vec_safe_iterate (names
, i
, &cb
); ++i
)
6025 if (store_binding_p (cb
->identifier
))
6026 bindings_need_stored
.safe_push (cb
->identifier
);
6027 if (!bindings_need_stored
.is_empty ())
6030 vec_safe_reserve_exact (*old_bindings
, bindings_need_stored
.length ());
6031 for (i
= 0; bindings_need_stored
.iterate (i
, &id
); ++i
)
6032 store_binding (id
, old_bindings
);
6033 bindings_need_stored
.truncate (0);
6035 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
6039 push_to_top_level (void)
6041 struct saved_scope
*s
;
6042 cp_binding_level
*b
;
6043 cxx_saved_binding
*sb
;
6047 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
6048 s
= ggc_alloc_cleared_saved_scope ();
6050 b
= scope_chain
? current_binding_level
: 0;
6052 /* If we're in the middle of some function, save our state. */
6056 push_function_context ();
6061 if (scope_chain
&& previous_class_level
)
6062 store_class_bindings (previous_class_level
->class_shadowed
,
6065 /* Have to include the global scope, because class-scope decls
6066 aren't listed anywhere useful. */
6067 for (; b
; b
= b
->level_chain
)
6071 /* Template IDs are inserted into the global level. If they were
6072 inserted into namespace level, finish_file wouldn't find them
6073 when doing pending instantiations. Therefore, don't stop at
6074 namespace level, but continue until :: . */
6075 if (global_scope_p (b
))
6078 store_bindings (b
->names
, &s
->old_bindings
);
6079 /* We also need to check class_shadowed to save class-level type
6080 bindings, since pushclass doesn't fill in b->names. */
6081 if (b
->kind
== sk_class
)
6082 store_class_bindings (b
->class_shadowed
, &s
->old_bindings
);
6084 /* Unwind type-value slots back to top level. */
6085 for (t
= b
->type_shadowed
; t
; t
= TREE_CHAIN (t
))
6086 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (t
), TREE_VALUE (t
));
6089 FOR_EACH_VEC_SAFE_ELT (s
->old_bindings
, i
, sb
)
6090 IDENTIFIER_MARKED (sb
->identifier
) = 0;
6092 s
->prev
= scope_chain
;
6094 s
->need_pop_function_context
= need_pop
;
6095 s
->function_decl
= current_function_decl
;
6096 s
->unevaluated_operand
= cp_unevaluated_operand
;
6097 s
->inhibit_evaluation_warnings
= c_inhibit_evaluation_warnings
;
6098 s
->x_stmt_tree
.stmts_are_full_exprs_p
= true;
6101 current_function_decl
= NULL_TREE
;
6102 vec_alloc (current_lang_base
, 10);
6103 current_lang_name
= lang_name_cplusplus
;
6104 current_namespace
= global_namespace
;
6105 push_class_stack ();
6106 cp_unevaluated_operand
= 0;
6107 c_inhibit_evaluation_warnings
= 0;
6108 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
6112 pop_from_top_level_1 (void)
6114 struct saved_scope
*s
= scope_chain
;
6115 cxx_saved_binding
*saved
;
6118 /* Clear out class-level bindings cache. */
6119 if (previous_class_level
)
6120 invalidate_class_lookup_cache ();
6123 current_lang_base
= 0;
6125 scope_chain
= s
->prev
;
6126 FOR_EACH_VEC_SAFE_ELT (s
->old_bindings
, i
, saved
)
6128 tree id
= saved
->identifier
;
6130 IDENTIFIER_BINDING (id
) = saved
->binding
;
6131 SET_IDENTIFIER_TYPE_VALUE (id
, saved
->real_type_value
);
6134 /* If we were in the middle of compiling a function, restore our
6136 if (s
->need_pop_function_context
)
6137 pop_function_context ();
6138 current_function_decl
= s
->function_decl
;
6139 cp_unevaluated_operand
= s
->unevaluated_operand
;
6140 c_inhibit_evaluation_warnings
= s
->inhibit_evaluation_warnings
;
6143 /* Wrapper for pop_from_top_level_1. */
6146 pop_from_top_level (void)
6148 bool subtime
= timevar_cond_start (TV_NAME_LOOKUP
);
6149 pop_from_top_level_1 ();
6150 timevar_cond_stop (TV_NAME_LOOKUP
, subtime
);
6154 /* Pop off extraneous binding levels left over due to syntax errors.
6156 We don't pop past namespaces, as they might be valid. */
6159 pop_everything (void)
6161 if (ENABLE_SCOPE_CHECKING
)
6162 verbatim ("XXX entering pop_everything ()\n");
6163 while (!toplevel_bindings_p ())
6165 if (current_binding_level
->kind
== sk_class
)
6166 pop_nested_class ();
6170 if (ENABLE_SCOPE_CHECKING
)
6171 verbatim ("XXX leaving pop_everything ()\n");
6174 /* Emit debugging information for using declarations and directives.
6175 If input tree is overloaded fn then emit debug info for all
6179 cp_emit_debug_info_for_using (tree t
, tree context
)
6181 /* Don't try to emit any debug information if we have errors. */
6185 /* Ignore this FUNCTION_DECL if it refers to a builtin declaration
6186 of a builtin function. */
6187 if (TREE_CODE (t
) == FUNCTION_DECL
6188 && DECL_EXTERNAL (t
)
6189 && DECL_BUILT_IN (t
))
6192 /* Do not supply context to imported_module_or_decl, if
6193 it is a global namespace. */
6194 if (context
== global_namespace
)
6195 context
= NULL_TREE
;
6198 t
= BASELINK_FUNCTIONS (t
);
6200 /* FIXME: Handle TEMPLATE_DECLs. */
6201 for (t
= OVL_CURRENT (t
); t
; t
= OVL_NEXT (t
))
6202 if (TREE_CODE (t
) != TEMPLATE_DECL
)
6204 if (building_stmt_list_p ())
6205 add_stmt (build_stmt (input_location
, USING_STMT
, t
));
6207 (*debug_hooks
->imported_module_or_decl
) (t
, NULL_TREE
, context
, false);
6211 #include "gt-cp-name-lookup.h"