| /* Definitions for C++ name lookup routines. |
| Copyright (C) 2003-2019 Free Software Foundation, Inc. |
| Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net> |
| |
| This file is part of GCC. |
| |
| GCC is free software; you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation; either version 3, or (at your option) |
| any later version. |
| |
| GCC is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License |
| along with GCC; see the file COPYING3. If not see |
| <http://www.gnu.org/licenses/>. */ |
| |
| #include "config.h" |
| #define INCLUDE_UNIQUE_PTR |
| #include "system.h" |
| #include "coretypes.h" |
| #include "cp-tree.h" |
| #include "timevar.h" |
| #include "stringpool.h" |
| #include "print-tree.h" |
| #include "attribs.h" |
| #include "debug.h" |
| #include "c-family/c-pragma.h" |
| #include "params.h" |
| #include "gcc-rich-location.h" |
| #include "spellcheck-tree.h" |
| #include "parser.h" |
| #include "c-family/name-hint.h" |
| #include "c-family/known-headers.h" |
| #include "c-family/c-spellcheck.h" |
| |
| static cxx_binding *cxx_binding_make (tree value, tree type); |
| static cp_binding_level *innermost_nonclass_level (void); |
| static void set_identifier_type_value_with_scope (tree id, tree decl, |
| cp_binding_level *b); |
| static name_hint maybe_suggest_missing_std_header (location_t location, |
| tree name); |
| static name_hint suggest_alternatives_for_1 (location_t location, tree name, |
| bool suggest_misspellings); |
| |
| /* Create an overload suitable for recording an artificial TYPE_DECL |
| and another decl. We use this machanism to implement the struct |
| stat hack within a namespace. It'd be nice to use it everywhere. */ |
| |
| #define STAT_HACK_P(N) ((N) && TREE_CODE (N) == OVERLOAD && OVL_LOOKUP_P (N)) |
| #define STAT_TYPE(N) TREE_TYPE (N) |
| #define STAT_DECL(N) OVL_FUNCTION (N) |
| #define MAYBE_STAT_DECL(N) (STAT_HACK_P (N) ? STAT_DECL (N) : N) |
| #define MAYBE_STAT_TYPE(N) (STAT_HACK_P (N) ? STAT_TYPE (N) : NULL_TREE) |
| |
| /* Create a STAT_HACK node with DECL as the value binding and TYPE as |
| the type binding. */ |
| |
| static tree |
| stat_hack (tree decl = NULL_TREE, tree type = NULL_TREE) |
| { |
| tree result = make_node (OVERLOAD); |
| |
| /* Mark this as a lookup, so we can tell this is a stat hack. */ |
| OVL_LOOKUP_P (result) = true; |
| STAT_DECL (result) = decl; |
| STAT_TYPE (result) = type; |
| return result; |
| } |
| |
| /* Create a local binding level for NAME. */ |
| |
| static cxx_binding * |
| create_local_binding (cp_binding_level *level, tree name) |
| { |
| cxx_binding *binding = cxx_binding_make (NULL, NULL); |
| |
| INHERITED_VALUE_BINDING_P (binding) = false; |
| LOCAL_BINDING_P (binding) = true; |
| binding->scope = level; |
| binding->previous = IDENTIFIER_BINDING (name); |
| |
| IDENTIFIER_BINDING (name) = binding; |
| |
| return binding; |
| } |
| |
| /* Find the binding for NAME in namespace NS. If CREATE_P is true, |
| make an empty binding if there wasn't one. */ |
| |
| static tree * |
| find_namespace_slot (tree ns, tree name, bool create_p = false) |
| { |
| tree *slot = DECL_NAMESPACE_BINDINGS (ns) |
| ->find_slot_with_hash (name, name ? IDENTIFIER_HASH_VALUE (name) : 0, |
| create_p ? INSERT : NO_INSERT); |
| return slot; |
| } |
| |
| static tree |
| find_namespace_value (tree ns, tree name) |
| { |
| tree *b = find_namespace_slot (ns, name); |
| |
| return b ? MAYBE_STAT_DECL (*b) : NULL_TREE; |
| } |
| |
| /* Add DECL to the list of things declared in B. */ |
| |
| static void |
| add_decl_to_level (cp_binding_level *b, tree decl) |
| { |
| gcc_assert (b->kind != sk_class); |
| |
| /* Make sure we don't create a circular list. xref_tag can end |
| up pushing the same artificial decl more than once. We |
| should have already detected that in update_binding. */ |
| gcc_assert (b->names != decl); |
| |
| /* We build up the list in reverse order, and reverse it later if |
| necessary. */ |
| TREE_CHAIN (decl) = b->names; |
| b->names = decl; |
| |
| /* If appropriate, add decl to separate list of statics. We |
| include extern variables because they might turn out to be |
| static later. It's OK for this list to contain a few false |
| positives. */ |
| if (b->kind == sk_namespace |
| && ((VAR_P (decl) |
| && (TREE_STATIC (decl) || DECL_EXTERNAL (decl))) |
| || (TREE_CODE (decl) == FUNCTION_DECL |
| && (!TREE_PUBLIC (decl) |
| || decl_anon_ns_mem_p (decl) |
| || DECL_DECLARED_INLINE_P (decl))))) |
| vec_safe_push (static_decls, decl); |
| } |
| |
| /* Find the binding for NAME in the local binding level B. */ |
| |
| static cxx_binding * |
| find_local_binding (cp_binding_level *b, tree name) |
| { |
| if (cxx_binding *binding = IDENTIFIER_BINDING (name)) |
| for (;; b = b->level_chain) |
| { |
| if (binding->scope == b) |
| return binding; |
| |
| /* Cleanup contours are transparent to the language. */ |
| if (b->kind != sk_cleanup) |
| break; |
| } |
| return NULL; |
| } |
| |
| struct name_lookup |
| { |
| public: |
| typedef std::pair<tree, tree> using_pair; |
| typedef vec<using_pair, va_heap, vl_embed> using_queue; |
| |
| public: |
| tree name; /* The identifier being looked for. */ |
| tree value; /* A (possibly ambiguous) set of things found. */ |
| tree type; /* A type that has been found. */ |
| int flags; /* Lookup flags. */ |
| bool deduping; /* Full deduping is needed because using declarations |
| are in play. */ |
| vec<tree, va_heap, vl_embed> *scopes; |
| name_lookup *previous; /* Previously active lookup. */ |
| |
| protected: |
| /* Marked scope stack for outermost name lookup. */ |
| static vec<tree, va_heap, vl_embed> *shared_scopes; |
| /* Currently active lookup. */ |
| static name_lookup *active; |
| |
| public: |
| name_lookup (tree n, int f = 0) |
| : name (n), value (NULL_TREE), type (NULL_TREE), flags (f), |
| deduping (false), scopes (NULL), previous (NULL) |
| { |
| preserve_state (); |
| } |
| ~name_lookup () |
| { |
| restore_state (); |
| } |
| |
| private: /* Uncopyable, unmovable, unassignable. I am a rock. */ |
| name_lookup (const name_lookup &); |
| name_lookup &operator= (const name_lookup &); |
| |
| protected: |
| static bool seen_p (tree scope) |
| { |
| return LOOKUP_SEEN_P (scope); |
| } |
| static bool found_p (tree scope) |
| { |
| return LOOKUP_FOUND_P (scope); |
| } |
| |
| void mark_seen (tree scope); /* Mark and add to scope vector. */ |
| static void mark_found (tree scope) |
| { |
| gcc_checking_assert (seen_p (scope)); |
| LOOKUP_FOUND_P (scope) = true; |
| } |
| bool see_and_mark (tree scope) |
| { |
| bool ret = seen_p (scope); |
| if (!ret) |
| mark_seen (scope); |
| return ret; |
| } |
| bool find_and_mark (tree scope); |
| |
| private: |
| void preserve_state (); |
| void restore_state (); |
| |
| private: |
| static tree ambiguous (tree thing, tree current); |
| void add_overload (tree fns); |
| void add_value (tree new_val); |
| void add_type (tree new_type); |
| bool process_binding (tree val_bind, tree type_bind); |
| |
| /* Look in only namespace. */ |
| bool search_namespace_only (tree scope); |
| /* Look in namespace and its (recursive) inlines. Ignore using |
| directives. Return true if something found (inc dups). */ |
| bool search_namespace (tree scope); |
| /* Look in the using directives of namespace + inlines using |
| qualified lookup rules. */ |
| bool search_usings (tree scope); |
| |
| private: |
| using_queue *queue_namespace (using_queue *queue, int depth, tree scope); |
| using_queue *do_queue_usings (using_queue *queue, int depth, |
| vec<tree, va_gc> *usings); |
| using_queue *queue_usings (using_queue *queue, int depth, |
| vec<tree, va_gc> *usings) |
| { |
| if (usings) |
| queue = do_queue_usings (queue, depth, usings); |
| return queue; |
| } |
| |
| private: |
| void add_fns (tree); |
| |
| void adl_expr (tree); |
| void adl_type (tree); |
| void adl_template_arg (tree); |
| void adl_class (tree); |
| void adl_bases (tree); |
| void adl_class_only (tree); |
| void adl_namespace (tree); |
| void adl_namespace_only (tree); |
| |
| public: |
| /* Search namespace + inlines + maybe usings as qualified lookup. */ |
| bool search_qualified (tree scope, bool usings = true); |
| |
| /* Search namespace + inlines + usings as unqualified lookup. */ |
| bool search_unqualified (tree scope, cp_binding_level *); |
| |
| /* ADL lookup of ARGS. */ |
| tree search_adl (tree fns, vec<tree, va_gc> *args); |
| }; |
| |
| /* Scope stack shared by all outermost lookups. This avoids us |
| allocating and freeing on every single lookup. */ |
| vec<tree, va_heap, vl_embed> *name_lookup::shared_scopes; |
| |
| /* Currently active lookup. */ |
| name_lookup *name_lookup::active; |
| |
| /* Name lookup is recursive, becase ADL can cause template |
| instatiation. This is of course a rare event, so we optimize for |
| it not happening. When we discover an active name-lookup, which |
| must be an ADL lookup, we need to unmark the marked scopes and also |
| unmark the lookup we might have been accumulating. */ |
| |
| void |
| name_lookup::preserve_state () |
| { |
| previous = active; |
| if (previous) |
| { |
| unsigned length = vec_safe_length (previous->scopes); |
| vec_safe_reserve (previous->scopes, length * 2); |
| for (unsigned ix = length; ix--;) |
| { |
| tree decl = (*previous->scopes)[ix]; |
| |
| gcc_checking_assert (LOOKUP_SEEN_P (decl)); |
| LOOKUP_SEEN_P (decl) = false; |
| |
| /* Preserve the FOUND_P state on the interrupted lookup's |
| stack. */ |
| if (LOOKUP_FOUND_P (decl)) |
| { |
| LOOKUP_FOUND_P (decl) = false; |
| previous->scopes->quick_push (decl); |
| } |
| } |
| |
| /* Unmark the outer partial lookup. */ |
| if (previous->deduping) |
| lookup_mark (previous->value, false); |
| } |
| else |
| scopes = shared_scopes; |
| active = this; |
| } |
| |
| /* Restore the marking state of a lookup we interrupted. */ |
| |
| void |
| name_lookup::restore_state () |
| { |
| if (deduping) |
| lookup_mark (value, false); |
| |
| /* Unmark and empty this lookup's scope stack. */ |
| for (unsigned ix = vec_safe_length (scopes); ix--;) |
| { |
| tree decl = scopes->pop (); |
| gcc_checking_assert (LOOKUP_SEEN_P (decl)); |
| LOOKUP_SEEN_P (decl) = false; |
| LOOKUP_FOUND_P (decl) = false; |
| } |
| |
| active = previous; |
| if (previous) |
| { |
| free (scopes); |
| |
| unsigned length = vec_safe_length (previous->scopes); |
| for (unsigned ix = 0; ix != length; ix++) |
| { |
| tree decl = (*previous->scopes)[ix]; |
| if (LOOKUP_SEEN_P (decl)) |
| { |
| /* The remainder of the scope stack must be recording |
| FOUND_P decls, which we want to pop off. */ |
| do |
| { |
| tree decl = previous->scopes->pop (); |
| gcc_checking_assert (LOOKUP_SEEN_P (decl) |
| && !LOOKUP_FOUND_P (decl)); |
| LOOKUP_FOUND_P (decl) = true; |
| } |
| while (++ix != length); |
| break; |
| } |
| |
| gcc_checking_assert (!LOOKUP_FOUND_P (decl)); |
| LOOKUP_SEEN_P (decl) = true; |
| } |
| |
| /* Remark the outer partial lookup. */ |
| if (previous->deduping) |
| lookup_mark (previous->value, true); |
| } |
| else |
| shared_scopes = scopes; |
| } |
| |
| void |
| name_lookup::mark_seen (tree scope) |
| { |
| gcc_checking_assert (!seen_p (scope)); |
| LOOKUP_SEEN_P (scope) = true; |
| vec_safe_push (scopes, scope); |
| } |
| |
| bool |
| name_lookup::find_and_mark (tree scope) |
| { |
| bool result = LOOKUP_FOUND_P (scope); |
| if (!result) |
| { |
| LOOKUP_FOUND_P (scope) = true; |
| if (!LOOKUP_SEEN_P (scope)) |
| vec_safe_push (scopes, scope); |
| } |
| |
| return result; |
| } |
| |
| /* THING and CURRENT are ambiguous, concatenate them. */ |
| |
| tree |
| name_lookup::ambiguous (tree thing, tree current) |
| { |
| if (TREE_CODE (current) != TREE_LIST) |
| { |
| current = build_tree_list (NULL_TREE, current); |
| TREE_TYPE (current) = error_mark_node; |
| } |
| current = tree_cons (NULL_TREE, thing, current); |
| TREE_TYPE (current) = error_mark_node; |
| |
| return current; |
| } |
| |
| /* FNS is a new overload set to add to the exising set. */ |
| |
| void |
| name_lookup::add_overload (tree fns) |
| { |
| if (!deduping && TREE_CODE (fns) == OVERLOAD) |
| { |
| tree probe = fns; |
| if (flags & LOOKUP_HIDDEN) |
| probe = ovl_skip_hidden (probe); |
| if (probe && TREE_CODE (probe) == OVERLOAD |
| && OVL_DEDUP_P (probe)) |
| { |
| /* We're about to add something found by a using |
| declaration, so need to engage deduping mode. */ |
| lookup_mark (value, true); |
| deduping = true; |
| } |
| } |
| |
| value = lookup_maybe_add (fns, value, deduping); |
| } |
| |
| /* Add a NEW_VAL, a found value binding into the current value binding. */ |
| |
| void |
| name_lookup::add_value (tree new_val) |
| { |
| if (OVL_P (new_val) && (!value || OVL_P (value))) |
| add_overload (new_val); |
| else if (!value) |
| value = new_val; |
| else if (value == new_val) |
| ; |
| else if ((TREE_CODE (value) == TYPE_DECL |
| && TREE_CODE (new_val) == TYPE_DECL |
| && same_type_p (TREE_TYPE (value), TREE_TYPE (new_val)))) |
| /* Typedefs to the same type. */; |
| else if (TREE_CODE (value) == NAMESPACE_DECL |
| && TREE_CODE (new_val) == NAMESPACE_DECL |
| && ORIGINAL_NAMESPACE (value) == ORIGINAL_NAMESPACE (new_val)) |
| /* Namespace (possibly aliased) to the same namespace. Locate |
| the namespace*/ |
| value = ORIGINAL_NAMESPACE (value); |
| else |
| { |
| if (deduping) |
| { |
| /* Disengage deduping mode. */ |
| lookup_mark (value, false); |
| deduping = false; |
| } |
| value = ambiguous (new_val, value); |
| } |
| } |
| |
| /* Add a NEW_TYPE, a found type binding into the current type binding. */ |
| |
| void |
| name_lookup::add_type (tree new_type) |
| { |
| if (!type) |
| type = new_type; |
| else if (TREE_CODE (type) == TREE_LIST |
| || !same_type_p (TREE_TYPE (type), TREE_TYPE (new_type))) |
| type = ambiguous (new_type, type); |
| } |
| |
| /* Process a found binding containing NEW_VAL and NEW_TYPE. Returns |
| true if we actually found something noteworthy. */ |
| |
| bool |
| name_lookup::process_binding (tree new_val, tree new_type) |
| { |
| /* Did we really see a type? */ |
| if (new_type |
| && (LOOKUP_NAMESPACES_ONLY (flags) |
| || (!(flags & LOOKUP_HIDDEN) |
| && DECL_LANG_SPECIFIC (new_type) |
| && DECL_ANTICIPATED (new_type)))) |
| new_type = NULL_TREE; |
| |
| if (new_val && !(flags & LOOKUP_HIDDEN)) |
| new_val = ovl_skip_hidden (new_val); |
| |
| /* Do we really see a value? */ |
| if (new_val) |
| switch (TREE_CODE (new_val)) |
| { |
| case TEMPLATE_DECL: |
| /* If we expect types or namespaces, and not templates, |
| or this is not a template class. */ |
| if ((LOOKUP_QUALIFIERS_ONLY (flags) |
| && !DECL_TYPE_TEMPLATE_P (new_val))) |
| new_val = NULL_TREE; |
| break; |
| case TYPE_DECL: |
| if (LOOKUP_NAMESPACES_ONLY (flags) |
| || (new_type && (flags & LOOKUP_PREFER_TYPES))) |
| new_val = NULL_TREE; |
| break; |
| case NAMESPACE_DECL: |
| if (LOOKUP_TYPES_ONLY (flags)) |
| new_val = NULL_TREE; |
| break; |
| default: |
| if (LOOKUP_QUALIFIERS_ONLY (flags)) |
| new_val = NULL_TREE; |
| } |
| |
| if (!new_val) |
| { |
| new_val = new_type; |
| new_type = NULL_TREE; |
| } |
| |
| /* Merge into the lookup */ |
| if (new_val) |
| add_value (new_val); |
| if (new_type) |
| add_type (new_type); |
| |
| return new_val != NULL_TREE; |
| } |
| |
| /* Look in exactly namespace SCOPE. */ |
| |
| bool |
| name_lookup::search_namespace_only (tree scope) |
| { |
| bool found = false; |
| |
| if (tree *binding = find_namespace_slot (scope, name)) |
| found |= process_binding (MAYBE_STAT_DECL (*binding), |
| MAYBE_STAT_TYPE (*binding)); |
| |
| return found; |
| } |
| |
| /* Conditionally look in namespace SCOPE and inline children. */ |
| |
| bool |
| name_lookup::search_namespace (tree scope) |
| { |
| if (see_and_mark (scope)) |
| /* We've visited this scope before. Return what we found then. */ |
| return found_p (scope); |
| |
| /* Look in exactly namespace. */ |
| bool found = search_namespace_only (scope); |
| |
| /* Don't look into inline children, if we're looking for an |
| anonymous name -- it must be in the current scope, if anywhere. */ |
| if (name) |
| /* Recursively look in its inline children. */ |
| if (vec<tree, va_gc> *inlinees = DECL_NAMESPACE_INLINEES (scope)) |
| for (unsigned ix = inlinees->length (); ix--;) |
| found |= search_namespace ((*inlinees)[ix]); |
| |
| if (found) |
| mark_found (scope); |
| |
| return found; |
| } |
| |
| /* Recursively follow using directives of SCOPE & its inline children. |
| Such following is essentially a flood-fill algorithm. */ |
| |
| bool |
| name_lookup::search_usings (tree scope) |
| { |
| /* We do not check seen_p here, as that was already set during the |
| namespace_only walk. */ |
| if (found_p (scope)) |
| return true; |
| |
| bool found = false; |
| if (vec<tree, va_gc> *usings = DECL_NAMESPACE_USING (scope)) |
| for (unsigned ix = usings->length (); ix--;) |
| found |= search_qualified ((*usings)[ix], true); |
| |
| /* Look in its inline children. */ |
| if (vec<tree, va_gc> *inlinees = DECL_NAMESPACE_INLINEES (scope)) |
| for (unsigned ix = inlinees->length (); ix--;) |
| found |= search_usings ((*inlinees)[ix]); |
| |
| if (found) |
| mark_found (scope); |
| |
| return found; |
| } |
| |
| /* Qualified namespace lookup in SCOPE. |
| 1) Look in SCOPE (+inlines). If found, we're done. |
| 2) Otherwise, if USINGS is true, |
| recurse for every using directive of SCOPE (+inlines). |
| |
| Trickiness is (a) loops and (b) multiple paths to same namespace. |
| In both cases we want to not repeat any lookups, and know whether |
| to stop the caller's step #2. Do this via the FOUND_P marker. */ |
| |
| bool |
| name_lookup::search_qualified (tree scope, bool usings) |
| { |
| bool found = false; |
| |
| if (seen_p (scope)) |
| found = found_p (scope); |
| else |
| { |
| found = search_namespace (scope); |
| if (!found && usings) |
| found = search_usings (scope); |
| } |
| |
| return found; |
| } |
| |
| /* Add SCOPE to the unqualified search queue, recursively add its |
| inlines and those via using directives. */ |
| |
| name_lookup::using_queue * |
| name_lookup::queue_namespace (using_queue *queue, int depth, tree scope) |
| { |
| if (see_and_mark (scope)) |
| return queue; |
| |
| /* Record it. */ |
| tree common = scope; |
| while (SCOPE_DEPTH (common) > depth) |
| common = CP_DECL_CONTEXT (common); |
| vec_safe_push (queue, using_pair (common, scope)); |
| |
| /* Queue its inline children. */ |
| if (vec<tree, va_gc> *inlinees = DECL_NAMESPACE_INLINEES (scope)) |
| for (unsigned ix = inlinees->length (); ix--;) |
| queue = queue_namespace (queue, depth, (*inlinees)[ix]); |
| |
| /* Queue its using targets. */ |
| queue = queue_usings (queue, depth, DECL_NAMESPACE_USING (scope)); |
| |
| return queue; |
| } |
| |
| /* Add the namespaces in USINGS to the unqualified search queue. */ |
| |
| name_lookup::using_queue * |
| name_lookup::do_queue_usings (using_queue *queue, int depth, |
| vec<tree, va_gc> *usings) |
| { |
| for (unsigned ix = usings->length (); ix--;) |
| queue = queue_namespace (queue, depth, (*usings)[ix]); |
| |
| return queue; |
| } |
| |
| /* Unqualified namespace lookup in SCOPE. |
| 1) add scope+inlins to worklist. |
| 2) recursively add target of every using directive |
| 3) for each worklist item where SCOPE is common ancestor, search it |
| 4) if nothing find, scope=parent, goto 1. */ |
| |
| bool |
| name_lookup::search_unqualified (tree scope, cp_binding_level *level) |
| { |
| /* Make static to avoid continual reallocation. We're not |
| recursive. */ |
| static using_queue *queue = NULL; |
| bool found = false; |
| int length = vec_safe_length (queue); |
| |
| /* Queue local using-directives. */ |
| for (; level->kind != sk_namespace; level = level->level_chain) |
| queue = queue_usings (queue, SCOPE_DEPTH (scope), level->using_directives); |
| |
| for (; !found; scope = CP_DECL_CONTEXT (scope)) |
| { |
| gcc_assert (!DECL_NAMESPACE_ALIAS (scope)); |
| int depth = SCOPE_DEPTH (scope); |
| |
| /* Queue namespaces reachable from SCOPE. */ |
| queue = queue_namespace (queue, depth, scope); |
| |
| /* Search every queued namespace where SCOPE is the common |
| ancestor. Adjust the others. */ |
| unsigned ix = length; |
| do |
| { |
| using_pair &pair = (*queue)[ix]; |
| while (pair.first == scope) |
| { |
| found |= search_namespace_only (pair.second); |
| pair = queue->pop (); |
| if (ix == queue->length ()) |
| goto done; |
| } |
| /* The depth is the same as SCOPE, find the parent scope. */ |
| if (SCOPE_DEPTH (pair.first) == depth) |
| pair.first = CP_DECL_CONTEXT (pair.first); |
| ix++; |
| } |
| while (ix < queue->length ()); |
| done:; |
| if (scope == global_namespace) |
| break; |
| |
| /* If looking for hidden names, we only look in the innermost |
| namespace scope. [namespace.memdef]/3 If a friend |
| declaration in a non-local class first declares a class, |
| function, class template or function template the friend is a |
| member of the innermost enclosing namespace. See also |
| [basic.lookup.unqual]/7 */ |
| if (flags & LOOKUP_HIDDEN) |
| break; |
| } |
| |
| vec_safe_truncate (queue, length); |
| |
| return found; |
| } |
| |
| /* FNS is a value binding. If it is a (set of overloaded) functions, |
| add them into the current value. */ |
| |
| void |
| name_lookup::add_fns (tree fns) |
| { |
| if (!fns) |
| return; |
| else if (TREE_CODE (fns) == OVERLOAD) |
| { |
| if (TREE_TYPE (fns) != unknown_type_node) |
| fns = OVL_FUNCTION (fns); |
| } |
| else if (!DECL_DECLARES_FUNCTION_P (fns)) |
| return; |
| |
| add_overload (fns); |
| } |
| |
| /* Add functions of a namespace to the lookup structure. */ |
| |
| void |
| name_lookup::adl_namespace_only (tree scope) |
| { |
| mark_seen (scope); |
| |
| /* Look down into inline namespaces. */ |
| if (vec<tree, va_gc> *inlinees = DECL_NAMESPACE_INLINEES (scope)) |
| for (unsigned ix = inlinees->length (); ix--;) |
| adl_namespace_only ((*inlinees)[ix]); |
| |
| if (tree fns = find_namespace_value (scope, name)) |
| add_fns (ovl_skip_hidden (fns)); |
| } |
| |
| /* Find the containing non-inlined namespace, add it and all its |
| inlinees. */ |
| |
| void |
| name_lookup::adl_namespace (tree scope) |
| { |
| if (seen_p (scope)) |
| return; |
| |
| /* Find the containing non-inline namespace. */ |
| while (DECL_NAMESPACE_INLINE_P (scope)) |
| scope = CP_DECL_CONTEXT (scope); |
| |
| adl_namespace_only (scope); |
| } |
| |
| /* Adds the class and its friends to the lookup structure. */ |
| |
| void |
| name_lookup::adl_class_only (tree type) |
| { |
| /* Backend-built structures, such as __builtin_va_list, aren't |
| affected by all this. */ |
| if (!CLASS_TYPE_P (type)) |
| return; |
| |
| type = TYPE_MAIN_VARIANT (type); |
| |
| if (see_and_mark (type)) |
| return; |
| |
| tree context = decl_namespace_context (type); |
| adl_namespace (context); |
| |
| complete_type (type); |
| |
| /* Add friends. */ |
| for (tree list = DECL_FRIENDLIST (TYPE_MAIN_DECL (type)); list; |
| list = TREE_CHAIN (list)) |
| if (name == FRIEND_NAME (list)) |
| for (tree friends = FRIEND_DECLS (list); friends; |
| friends = TREE_CHAIN (friends)) |
| { |
| tree fn = TREE_VALUE (friends); |
| |
| /* Only interested in global functions with potentially hidden |
| (i.e. unqualified) declarations. */ |
| if (CP_DECL_CONTEXT (fn) != context) |
| continue; |
| |
| /* Only interested in anticipated friends. (Non-anticipated |
| ones will have been inserted during the namespace |
| adl.) */ |
| if (!DECL_ANTICIPATED (fn)) |
| continue; |
| |
| /* Template specializations are never found by name lookup. |
| (Templates themselves can be found, but not template |
| specializations.) */ |
| if (TREE_CODE (fn) == FUNCTION_DECL && DECL_USE_TEMPLATE (fn)) |
| continue; |
| |
| add_fns (fn); |
| } |
| } |
| |
| /* Adds the class and its bases to the lookup structure. |
| Returns true on error. */ |
| |
| void |
| name_lookup::adl_bases (tree type) |
| { |
| adl_class_only (type); |
| |
| /* Process baseclasses. */ |
| if (tree binfo = TYPE_BINFO (type)) |
| { |
| tree base_binfo; |
| int i; |
| |
| for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++) |
| adl_bases (BINFO_TYPE (base_binfo)); |
| } |
| } |
| |
| /* Adds everything associated with a class argument type to the lookup |
| structure. Returns true on error. |
| |
| If T is a class type (including unions), its associated classes are: the |
| class itself; the class of which it is a member, if any; and its direct |
| and indirect base classes. Its associated namespaces are the namespaces |
| of which its associated classes are members. Furthermore, if T is a |
| class template specialization, its associated namespaces and classes |
| also include: the namespaces and classes associated with the types of |
| the template arguments provided for template type parameters (excluding |
| template template parameters); the namespaces of which any template |
| template arguments are members; and the classes of which any member |
| templates used as template template arguments are members. [ Note: |
| non-type template arguments do not contribute to the set of associated |
| namespaces. --end note] */ |
| |
| void |
| name_lookup::adl_class (tree type) |
| { |
| /* Backend build structures, such as __builtin_va_list, aren't |
| affected by all this. */ |
| if (!CLASS_TYPE_P (type)) |
| return; |
| |
| type = TYPE_MAIN_VARIANT (type); |
| /* We don't set found here because we have to have set seen first, |
| which is done in the adl_bases walk. */ |
| if (found_p (type)) |
| return; |
| |
| adl_bases (type); |
| mark_found (type); |
| |
| if (TYPE_CLASS_SCOPE_P (type)) |
| adl_class_only (TYPE_CONTEXT (type)); |
| |
| /* Process template arguments. */ |
| if (CLASSTYPE_TEMPLATE_INFO (type) |
| && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type))) |
| { |
| tree list = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)); |
| for (int i = 0; i < TREE_VEC_LENGTH (list); ++i) |
| adl_template_arg (TREE_VEC_ELT (list, i)); |
| } |
| } |
| |
| void |
| name_lookup::adl_expr (tree expr) |
| { |
| if (!expr) |
| return; |
| |
| gcc_assert (!TYPE_P (expr)); |
| |
| if (TREE_TYPE (expr) != unknown_type_node) |
| { |
| adl_type (unlowered_expr_type (expr)); |
| return; |
| } |
| |
| if (TREE_CODE (expr) == ADDR_EXPR) |
| expr = TREE_OPERAND (expr, 0); |
| if (TREE_CODE (expr) == COMPONENT_REF |
| || TREE_CODE (expr) == OFFSET_REF) |
| expr = TREE_OPERAND (expr, 1); |
| expr = MAYBE_BASELINK_FUNCTIONS (expr); |
| |
| if (OVL_P (expr)) |
| for (lkp_iterator iter (expr); iter; ++iter) |
| adl_type (TREE_TYPE (*iter)); |
| else if (TREE_CODE (expr) == TEMPLATE_ID_EXPR) |
| { |
| /* The working paper doesn't currently say how to handle |
| template-id arguments. The sensible thing would seem to be |
| to handle the list of template candidates like a normal |
| overload set, and handle the template arguments like we do |
| for class template specializations. */ |
| |
| /* First the templates. */ |
| adl_expr (TREE_OPERAND (expr, 0)); |
| |
| /* Now the arguments. */ |
| if (tree args = TREE_OPERAND (expr, 1)) |
| for (int ix = TREE_VEC_LENGTH (args); ix--;) |
| adl_template_arg (TREE_VEC_ELT (args, ix)); |
| } |
| } |
| |
| void |
| name_lookup::adl_type (tree type) |
| { |
| if (!type) |
| return; |
| |
| if (TYPE_PTRDATAMEM_P (type)) |
| { |
| /* Pointer to member: associate class type and value type. */ |
| adl_type (TYPE_PTRMEM_CLASS_TYPE (type)); |
| adl_type (TYPE_PTRMEM_POINTED_TO_TYPE (type)); |
| return; |
| } |
| |
| switch (TREE_CODE (type)) |
| { |
| case RECORD_TYPE: |
| if (TYPE_PTRMEMFUNC_P (type)) |
| { |
| adl_type (TYPE_PTRMEMFUNC_FN_TYPE (type)); |
| return; |
| } |
| /* FALLTHRU */ |
| case UNION_TYPE: |
| adl_class (type); |
| return; |
| |
| case METHOD_TYPE: |
| /* The basetype is referenced in the first arg type, so just |
| fall through. */ |
| case FUNCTION_TYPE: |
| /* Associate the parameter types. */ |
| for (tree args = TYPE_ARG_TYPES (type); args; args = TREE_CHAIN (args)) |
| adl_type (TREE_VALUE (args)); |
| /* FALLTHROUGH */ |
| |
| case POINTER_TYPE: |
| case REFERENCE_TYPE: |
| case ARRAY_TYPE: |
| adl_type (TREE_TYPE (type)); |
| return; |
| |
| case ENUMERAL_TYPE: |
| if (TYPE_CLASS_SCOPE_P (type)) |
| adl_class_only (TYPE_CONTEXT (type)); |
| adl_namespace (decl_namespace_context (type)); |
| return; |
| |
| case LANG_TYPE: |
| gcc_assert (type == unknown_type_node |
| || type == init_list_type_node); |
| return; |
| |
| case TYPE_PACK_EXPANSION: |
| adl_type (PACK_EXPANSION_PATTERN (type)); |
| return; |
| |
| default: |
| break; |
| } |
| } |
| |
| /* Adds everything associated with a template argument to the lookup |
| structure. */ |
| |
| void |
| name_lookup::adl_template_arg (tree arg) |
| { |
| /* [basic.lookup.koenig] |
| |
| If T is a template-id, its associated namespaces and classes are |
| ... the namespaces and classes associated with the types of the |
| template arguments provided for template type parameters |
| (excluding template template parameters); the namespaces in which |
| any template template arguments are defined; and the classes in |
| which any member templates used as template template arguments |
| are defined. [Note: non-type template arguments do not |
| contribute to the set of associated namespaces. ] */ |
| |
| /* Consider first template template arguments. */ |
| if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM |
| || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE) |
| ; |
| else if (TREE_CODE (arg) == TEMPLATE_DECL) |
| { |
| tree ctx = CP_DECL_CONTEXT (arg); |
| |
| /* It's not a member template. */ |
| if (TREE_CODE (ctx) == NAMESPACE_DECL) |
| adl_namespace (ctx); |
| /* Otherwise, it must be member template. */ |
| else |
| adl_class_only (ctx); |
| } |
| /* It's an argument pack; handle it recursively. */ |
| else if (ARGUMENT_PACK_P (arg)) |
| { |
| tree args = ARGUMENT_PACK_ARGS (arg); |
| int i, len = TREE_VEC_LENGTH (args); |
| for (i = 0; i < len; ++i) |
| adl_template_arg (TREE_VEC_ELT (args, i)); |
| } |
| /* It's not a template template argument, but it is a type template |
| argument. */ |
| else if (TYPE_P (arg)) |
| adl_type (arg); |
| } |
| |
| /* Perform ADL lookup. FNS is the existing lookup result and ARGS are |
| the call arguments. */ |
| |
| tree |
| name_lookup::search_adl (tree fns, vec<tree, va_gc> *args) |
| { |
| if (fns) |
| { |
| deduping = true; |
| lookup_mark (fns, true); |
| } |
| value = fns; |
| |
| unsigned ix; |
| tree arg; |
| |
| FOR_EACH_VEC_ELT_REVERSE (*args, ix, arg) |
| /* OMP reduction operators put an ADL-significant type as the |
| first arg. */ |
| if (TYPE_P (arg)) |
| adl_type (arg); |
| else |
| adl_expr (arg); |
| |
| fns = value; |
| |
| return fns; |
| } |
| |
| static bool qualified_namespace_lookup (tree, name_lookup *); |
| static void consider_binding_level (tree name, |
| best_match <tree, const char *> &bm, |
| cp_binding_level *lvl, |
| bool look_within_fields, |
| enum lookup_name_fuzzy_kind kind); |
| static void diagnose_name_conflict (tree, tree); |
| |
| /* ADL lookup of NAME. FNS is the result of regular lookup, and we |
| don't add duplicates to it. ARGS is the vector of call |
| arguments (which will not be empty). */ |
| |
| tree |
| lookup_arg_dependent (tree name, tree fns, vec<tree, va_gc> *args) |
| { |
| bool subtime = timevar_cond_start (TV_NAME_LOOKUP); |
| name_lookup lookup (name); |
| fns = lookup.search_adl (fns, args); |
| timevar_cond_stop (TV_NAME_LOOKUP, subtime); |
| return fns; |
| } |
| |
| /* FNS is an overload set of conversion functions. Return the |
| overloads converting to TYPE. */ |
| |
| static tree |
| extract_conversion_operator (tree fns, tree type) |
| { |
| tree convs = NULL_TREE; |
| tree tpls = NULL_TREE; |
| |
| for (ovl_iterator iter (fns); iter; ++iter) |
| { |
| if (same_type_p (DECL_CONV_FN_TYPE (*iter), type)) |
| convs = lookup_add (*iter, convs); |
| |
| if (TREE_CODE (*iter) == TEMPLATE_DECL) |
| tpls = lookup_add (*iter, tpls); |
| } |
| |
| if (!convs) |
| convs = tpls; |
| |
| return convs; |
| } |
| |
| /* Binary search of (ordered) MEMBER_VEC for NAME. */ |
| |
| static tree |
| member_vec_binary_search (vec<tree, va_gc> *member_vec, tree name) |
| { |
| for (unsigned lo = 0, hi = member_vec->length (); lo < hi;) |
| { |
| unsigned mid = (lo + hi) / 2; |
| tree binding = (*member_vec)[mid]; |
| tree binding_name = OVL_NAME (binding); |
| |
| if (binding_name > name) |
| hi = mid; |
| else if (binding_name < name) |
| lo = mid + 1; |
| else |
| return binding; |
| } |
| |
| return NULL_TREE; |
| } |
| |
| /* Linear search of (unordered) MEMBER_VEC for NAME. */ |
| |
| static tree |
| member_vec_linear_search (vec<tree, va_gc> *member_vec, tree name) |
| { |
| for (int ix = member_vec->length (); ix--;) |
| if (tree binding = (*member_vec)[ix]) |
| if (OVL_NAME (binding) == name) |
| return binding; |
| |
| return NULL_TREE; |
| } |
| |
| /* Linear search of (partially ordered) fields of KLASS for NAME. */ |
| |
| static tree |
| fields_linear_search (tree klass, tree name, bool want_type) |
| { |
| for (tree fields = TYPE_FIELDS (klass); fields; fields = DECL_CHAIN (fields)) |
| { |
| tree decl = fields; |
| |
| if (TREE_CODE (decl) == FIELD_DECL |
| && ANON_AGGR_TYPE_P (TREE_TYPE (decl))) |
| { |
| if (tree temp = search_anon_aggr (TREE_TYPE (decl), name, want_type)) |
| return temp; |
| } |
| |
| if (DECL_NAME (decl) != name) |
| continue; |
| |
| if (TREE_CODE (decl) == USING_DECL) |
| { |
| decl = strip_using_decl (decl); |
| if (is_overloaded_fn (decl)) |
| continue; |
| } |
| |
| if (DECL_DECLARES_FUNCTION_P (decl)) |
| /* Functions are found separately. */ |
| continue; |
| |
| if (!want_type || DECL_DECLARES_TYPE_P (decl)) |
| return decl; |
| } |
| |
| return NULL_TREE; |
| } |
| |
| /* Look for NAME member inside of anonymous aggregate ANON. Although |
| such things should only contain FIELD_DECLs, we check that too |
| late, and would give very confusing errors if we weren't |
| permissive here. */ |
| |
| tree |
| search_anon_aggr (tree anon, tree name, bool want_type) |
| { |
| gcc_assert (COMPLETE_TYPE_P (anon)); |
| tree ret = get_class_binding_direct (anon, name, want_type); |
| return ret; |
| } |
| |
| /* Look for NAME as an immediate member of KLASS (including |
| anon-members or unscoped enum member). TYPE_OR_FNS is zero for |
| regular search. >0 to get a type binding (if there is one) and <0 |
| if you want (just) the member function binding. |
| |
| Use this if you do not want lazy member creation. */ |
| |
| tree |
| get_class_binding_direct (tree klass, tree name, int type_or_fns) |
| { |
| gcc_checking_assert (RECORD_OR_UNION_TYPE_P (klass)); |
| |
| /* Conversion operators can only be found by the marker conversion |
| operator name. */ |
| bool conv_op = IDENTIFIER_CONV_OP_P (name); |
| tree lookup = conv_op ? conv_op_identifier : name; |
| tree val = NULL_TREE; |
| vec<tree, va_gc> *member_vec = CLASSTYPE_MEMBER_VEC (klass); |
| |
| if (COMPLETE_TYPE_P (klass) && member_vec) |
| { |
| val = member_vec_binary_search (member_vec, lookup); |
| if (!val) |
| ; |
| else if (type_or_fns > 0) |
| { |
| if (STAT_HACK_P (val)) |
| val = STAT_TYPE (val); |
| else if (!DECL_DECLARES_TYPE_P (val)) |
| val = NULL_TREE; |
| } |
| else if (STAT_HACK_P (val)) |
| val = STAT_DECL (val); |
| } |
| else |
| { |
| if (member_vec && type_or_fns <= 0) |
| val = member_vec_linear_search (member_vec, lookup); |
| |
| if (type_or_fns < 0) |
| /* Don't bother looking for field. We don't want it. */; |
| else if (!val || (TREE_CODE (val) == OVERLOAD |
| && OVL_DEDUP_P (val))) |
| /* Dependent using declarations are a 'field', make sure we |
| return that even if we saw an overload already. */ |
| if (tree field_val = fields_linear_search (klass, lookup, |
| type_or_fns > 0)) |
| if (!val || TREE_CODE (field_val) == USING_DECL) |
| val = field_val; |
| } |
| |
| /* Extract the conversion operators asked for, unless the general |
| conversion operator was requested. */ |
| if (val && conv_op) |
| { |
| gcc_checking_assert (OVL_FUNCTION (val) == conv_op_marker); |
| val = OVL_CHAIN (val); |
| if (tree type = TREE_TYPE (name)) |
| val = extract_conversion_operator (val, type); |
| } |
| |
| return val; |
| } |
| |
| /* Look for NAME's binding in exactly KLASS. See |
| get_class_binding_direct for argument description. Does lazy |
| special function creation as necessary. */ |
| |
| tree |
| get_class_binding (tree klass, tree name, int type_or_fns) |
| { |
| klass = complete_type (klass); |
| |
| if (COMPLETE_TYPE_P (klass)) |
| { |
| /* Lazily declare functions, if we're going to search these. */ |
| if (IDENTIFIER_CTOR_P (name)) |
| { |
| if (CLASSTYPE_LAZY_DEFAULT_CTOR (klass)) |
| lazily_declare_fn (sfk_constructor, klass); |
| if (CLASSTYPE_LAZY_COPY_CTOR (klass)) |
| lazily_declare_fn (sfk_copy_constructor, klass); |
| if (CLASSTYPE_LAZY_MOVE_CTOR (klass)) |
| lazily_declare_fn (sfk_move_constructor, klass); |
| } |
| else if (IDENTIFIER_DTOR_P (name)) |
| { |
| if (CLASSTYPE_LAZY_DESTRUCTOR (klass)) |
| lazily_declare_fn (sfk_destructor, klass); |
| } |
| else if (name == assign_op_identifier) |
| { |
| if (CLASSTYPE_LAZY_COPY_ASSIGN (klass)) |
| lazily_declare_fn (sfk_copy_assignment, klass); |
| if (CLASSTYPE_LAZY_MOVE_ASSIGN (klass)) |
| lazily_declare_fn (sfk_move_assignment, klass); |
| } |
| } |
| |
| return get_class_binding_direct (klass, name, type_or_fns); |
| } |
| |
| /* Find the slot containing overloads called 'NAME'. If there is no |
| such slot and the class is complete, create an empty one, at the |
| correct point in the sorted member vector. Otherwise return NULL. |
| Deals with conv_op marker handling. */ |
| |
| tree * |
| find_member_slot (tree klass, tree name) |
| { |
| bool complete_p = COMPLETE_TYPE_P (klass); |
| |
| vec<tree, va_gc> *member_vec = CLASSTYPE_MEMBER_VEC (klass); |
| if (!member_vec) |
| { |
| vec_alloc (member_vec, 8); |
| CLASSTYPE_MEMBER_VEC (klass) = member_vec; |
| if (complete_p) |
| { |
| /* If the class is complete but had no member_vec, we need |
| to add the TYPE_FIELDS into it. We're also most likely |
| to be adding ctors & dtors, so ask for 6 spare slots (the |
| abstract cdtors and their clones). */ |
| set_class_bindings (klass, 6); |
| member_vec = CLASSTYPE_MEMBER_VEC (klass); |
| } |
| } |
| |
| if (IDENTIFIER_CONV_OP_P (name)) |
| name = conv_op_identifier; |
| |
| unsigned ix, length = member_vec->length (); |
| for (ix = 0; ix < length; ix++) |
| { |
| tree *slot = &(*member_vec)[ix]; |
| tree fn_name = OVL_NAME (*slot); |
| |
| if (fn_name == name) |
| { |
| /* If we found an existing slot, it must be a function set. |
| Even with insertion after completion, because those only |
| happen with artificial fns that have unspellable names. |
| This means we do not have to deal with the stat hack |
| either. */ |
| gcc_checking_assert (OVL_P (*slot)); |
| if (name == conv_op_identifier) |
| { |
| gcc_checking_assert (OVL_FUNCTION (*slot) == conv_op_marker); |
| /* Skip the conv-op marker. */ |
| slot = &OVL_CHAIN (*slot); |
| } |
| return slot; |
| } |
| |
| if (complete_p && fn_name > name) |
| break; |
| } |
| |
| /* No slot found, add one if the class is complete. */ |
| if (complete_p) |
| { |
| /* Do exact allocation, as we don't expect to add many. */ |
| gcc_assert (name != conv_op_identifier); |
| vec_safe_reserve_exact (member_vec, 1); |
| CLASSTYPE_MEMBER_VEC (klass) = member_vec; |
| member_vec->quick_insert (ix, NULL_TREE); |
| return &(*member_vec)[ix]; |
| } |
| |
| return NULL; |
| } |
| |
| /* KLASS is an incomplete class to which we're adding a method NAME. |
| Add a slot and deal with conv_op marker handling. */ |
| |
| tree * |
| add_member_slot (tree klass, tree name) |
| { |
| gcc_assert (!COMPLETE_TYPE_P (klass)); |
| |
| vec<tree, va_gc> *member_vec = CLASSTYPE_MEMBER_VEC (klass); |
| vec_safe_push (member_vec, NULL_TREE); |
| CLASSTYPE_MEMBER_VEC (klass) = member_vec; |
| |
| tree *slot = &member_vec->last (); |
| if (IDENTIFIER_CONV_OP_P (name)) |
| { |
| /* Install the marker prefix. */ |
| *slot = ovl_make (conv_op_marker, NULL_TREE); |
| slot = &OVL_CHAIN (*slot); |
| } |
| |
| return slot; |
| } |
| |
| /* Comparison function to compare two MEMBER_VEC entries by name. |
| Because we can have duplicates during insertion of TYPE_FIELDS, we |
| do extra checking so deduping doesn't have to deal with so many |
| cases. */ |
| |
| static int |
| member_name_cmp (const void *a_p, const void *b_p) |
| { |
| tree a = *(const tree *)a_p; |
| tree b = *(const tree *)b_p; |
| tree name_a = DECL_NAME (TREE_CODE (a) == OVERLOAD ? OVL_FUNCTION (a) : a); |
| tree name_b = DECL_NAME (TREE_CODE (b) == OVERLOAD ? OVL_FUNCTION (b) : b); |
| |
| gcc_checking_assert (name_a && name_b); |
| if (name_a != name_b) |
| return name_a < name_b ? -1 : +1; |
| |
| if (name_a == conv_op_identifier) |
| { |
| /* Strip the conv-op markers. */ |
| gcc_checking_assert (OVL_FUNCTION (a) == conv_op_marker |
| && OVL_FUNCTION (b) == conv_op_marker); |
| a = OVL_CHAIN (a); |
| b = OVL_CHAIN (b); |
| } |
| |
| if (TREE_CODE (a) == OVERLOAD) |
| a = OVL_FUNCTION (a); |
| if (TREE_CODE (b) == OVERLOAD) |
| b = OVL_FUNCTION (b); |
| |
| /* We're in STAT_HACK or USING_DECL territory (or possibly error-land). */ |
| if (TREE_CODE (a) != TREE_CODE (b)) |
| { |
| /* If one of them is a TYPE_DECL, it loses. */ |
| if (TREE_CODE (a) == TYPE_DECL) |
| return +1; |
| else if (TREE_CODE (b) == TYPE_DECL) |
| return -1; |
| |
| /* If one of them is a USING_DECL, it loses. */ |
| if (TREE_CODE (a) == USING_DECL) |
| return +1; |
| else if (TREE_CODE (b) == USING_DECL) |
| return -1; |
| |
| /* There are no other cases with different kinds of decls, as |
| duplicate detection should have kicked in earlier. However, |
| some erroneous cases get though. */ |
| gcc_assert (errorcount); |
| } |
| |
| /* Using source location would be the best thing here, but we can |
| get identically-located decls in the following circumstances: |
| |
| 1) duplicate artificial type-decls for the same type. |
| |
| 2) pack expansions of using-decls. |
| |
| We should not be doing #1, but in either case it doesn't matter |
| how we order these. Use UID as a proxy for source ordering, so |
| that identically-located decls still have a well-defined stable |
| ordering. */ |
| if (DECL_UID (a) != DECL_UID (b)) |
| return DECL_UID (a) < DECL_UID (b) ? -1 : +1; |
| gcc_assert (a == b); |
| return 0; |
| } |
| |
| static struct { |
| gt_pointer_operator new_value; |
| void *cookie; |
| } resort_data; |
| |
| /* This routine compares two fields like member_name_cmp but using the |
| pointer operator in resort_field_decl_data. We don't have to deal |
| with duplicates here. */ |
| |
| static int |
| resort_member_name_cmp (const void *a_p, const void *b_p) |
| { |
| tree a = *(const tree *)a_p; |
| tree b = *(const tree *)b_p; |
| tree name_a = OVL_NAME (a); |
| tree name_b = OVL_NAME (b); |
| |
| resort_data.new_value (&name_a, resort_data.cookie); |
| resort_data.new_value (&name_b, resort_data.cookie); |
| |
| gcc_checking_assert (name_a != name_b); |
| |
| return name_a < name_b ? -1 : +1; |
| } |
| |
| /* Resort CLASSTYPE_MEMBER_VEC because pointers have been reordered. */ |
| |
| void |
| resort_type_member_vec (void *obj, void */*orig_obj*/, |
| gt_pointer_operator new_value, void* cookie) |
| { |
| if (vec<tree, va_gc> *member_vec = (vec<tree, va_gc> *) obj) |
| { |
| resort_data.new_value = new_value; |
| resort_data.cookie = cookie; |
| member_vec->qsort (resort_member_name_cmp); |
| } |
| } |
| |
| /* Recursively count the number of fields in KLASS, including anonymous |
| union members. */ |
| |
| static unsigned |
| count_class_fields (tree klass) |
| { |
| unsigned n_fields = 0; |
| |
| for (tree fields = TYPE_FIELDS (klass); fields; fields = DECL_CHAIN (fields)) |
| if (DECL_DECLARES_FUNCTION_P (fields)) |
| /* Functions are dealt with separately. */; |
| else if (TREE_CODE (fields) == FIELD_DECL |
| && ANON_AGGR_TYPE_P (TREE_TYPE (fields))) |
| n_fields += count_class_fields (TREE_TYPE (fields)); |
| else if (DECL_NAME (fields)) |
| n_fields += 1; |
| |
| return n_fields; |
| } |
| |
| /* Append all the nonfunction members fields of KLASS to MEMBER_VEC. |
| Recurse for anonymous members. MEMBER_VEC must have space. */ |
| |
| static void |
| member_vec_append_class_fields (vec<tree, va_gc> *member_vec, tree klass) |
| { |
| for (tree fields = TYPE_FIELDS (klass); fields; fields = DECL_CHAIN (fields)) |
| if (DECL_DECLARES_FUNCTION_P (fields)) |
| /* Functions are handled separately. */; |
| else if (TREE_CODE (fields) == FIELD_DECL |
| && ANON_AGGR_TYPE_P (TREE_TYPE (fields))) |
| member_vec_append_class_fields (member_vec, TREE_TYPE (fields)); |
| else if (DECL_NAME (fields)) |
| { |
| tree field = fields; |
| /* Mark a conv-op USING_DECL with the conv-op-marker. */ |
| if (TREE_CODE (field) == USING_DECL |
| && IDENTIFIER_CONV_OP_P (DECL_NAME (field))) |
| field = ovl_make (conv_op_marker, field); |
| member_vec->quick_push (field); |
| } |
| } |
| |
| /* Append all of the enum values of ENUMTYPE to MEMBER_VEC. |
| MEMBER_VEC must have space. */ |
| |
| static void |
| member_vec_append_enum_values (vec<tree, va_gc> *member_vec, tree enumtype) |
| { |
| for (tree values = TYPE_VALUES (enumtype); |
| values; values = TREE_CHAIN (values)) |
| member_vec->quick_push (TREE_VALUE (values)); |
| } |
| |
| /* MEMBER_VEC has just had new DECLs added to it, but is sorted. |
| DeDup adjacent DECLS of the same name. We already dealt with |
| conflict resolution when adding the fields or methods themselves. |
| There are three cases (which could all be combined): |
| 1) a TYPE_DECL and non TYPE_DECL. Deploy STAT_HACK as appropriate. |
| 2) a USING_DECL and an overload. If the USING_DECL is dependent, |
| it wins. Otherwise the OVERLOAD does. |
| 3) two USING_DECLS. ... |
| |
| member_name_cmp will have ordered duplicates as |
| <fns><using><type> */ |
| |
| static void |
| member_vec_dedup (vec<tree, va_gc> *member_vec) |
| { |
| unsigned len = member_vec->length (); |
| unsigned store = 0; |
| |
| if (!len) |
| return; |
| |
| tree name = OVL_NAME ((*member_vec)[0]); |
| for (unsigned jx, ix = 0; ix < len; ix = jx) |
| { |
| tree current = NULL_TREE; |
| tree to_type = NULL_TREE; |
| tree to_using = NULL_TREE; |
| tree marker = NULL_TREE; |
| |
| for (jx = ix; jx < len; jx++) |
| { |
| tree next = (*member_vec)[jx]; |
| if (jx != ix) |
| { |
| tree next_name = OVL_NAME (next); |
| if (next_name != name) |
| { |
| name = next_name; |
| break; |
| } |
| } |
| |
| if (IDENTIFIER_CONV_OP_P (name)) |
| { |
| marker = next; |
| next = OVL_CHAIN (next); |
| } |
| |
| if (TREE_CODE (next) == USING_DECL) |
| { |
| if (IDENTIFIER_CTOR_P (name)) |
| /* Dependent inherited ctor. */ |
| continue; |
| |
| next = strip_using_decl (next); |
| if (TREE_CODE (next) == USING_DECL) |
| { |
| to_using = next; |
| continue; |
| } |
| |
| if (is_overloaded_fn (next)) |
| continue; |
| } |
| |
| if (DECL_DECLARES_TYPE_P (next)) |
| { |
| to_type = next; |
| continue; |
| } |
| |
| if (!current) |
| current = next; |
| } |
| |
| if (to_using) |
| { |
| if (!current) |
| current = to_using; |
| else |
| current = ovl_make (to_using, current); |
| } |
| |
| if (to_type) |
| { |
| if (!current) |
| current = to_type; |
| else |
| current = stat_hack (current, to_type); |
| } |
| |
| if (current) |
| { |
| if (marker) |
| { |
| OVL_CHAIN (marker) = current; |
| current = marker; |
| } |
| (*member_vec)[store++] = current; |
| } |
| } |
| |
| while (store++ < len) |
| member_vec->pop (); |
| } |
| |
| /* Add the non-function members to CLASSTYPE_MEMBER_VEC. If there is |
| no existing MEMBER_VEC and fewer than 8 fields, do nothing. We |
| know there must be at least 1 field -- the self-reference |
| TYPE_DECL, except for anon aggregates, which will have at least |
| one field. */ |
| |
| void |
| set_class_bindings (tree klass, unsigned extra) |
| { |
| unsigned n_fields = count_class_fields (klass); |
| vec<tree, va_gc> *member_vec = CLASSTYPE_MEMBER_VEC (klass); |
| |
| if (member_vec || n_fields >= 8) |
| { |
| /* Append the new fields. */ |
| vec_safe_reserve_exact (member_vec, extra + n_fields); |
| member_vec_append_class_fields (member_vec, klass); |
| } |
| |
| if (member_vec) |
| { |
| CLASSTYPE_MEMBER_VEC (klass) = member_vec; |
| member_vec->qsort (member_name_cmp); |
| member_vec_dedup (member_vec); |
| } |
| } |
| |
| /* Insert lately defined enum ENUMTYPE into KLASS for the sorted case. */ |
| |
| void |
| insert_late_enum_def_bindings (tree klass, tree enumtype) |
| { |
| int n_fields; |
| vec<tree, va_gc> *member_vec = CLASSTYPE_MEMBER_VEC (klass); |
| |
| /* The enum bindings will already be on the TYPE_FIELDS, so don't |
| count them twice. */ |
| if (!member_vec) |
| n_fields = count_class_fields (klass); |
| else |
| n_fields = list_length (TYPE_VALUES (enumtype)); |
| |
| if (member_vec || n_fields >= 8) |
| { |
| vec_safe_reserve_exact (member_vec, n_fields); |
| if (CLASSTYPE_MEMBER_VEC (klass)) |
| member_vec_append_enum_values (member_vec, enumtype); |
| else |
| member_vec_append_class_fields (member_vec, klass); |
| CLASSTYPE_MEMBER_VEC (klass) = member_vec; |
| member_vec->qsort (member_name_cmp); |
| member_vec_dedup (member_vec); |
| } |
| } |
| |
| /* Compute the chain index of a binding_entry given the HASH value of its |
| name and the total COUNT of chains. COUNT is assumed to be a power |
| of 2. */ |
| |
| #define ENTRY_INDEX(HASH, COUNT) (((HASH) >> 3) & ((COUNT) - 1)) |
| |
| /* A free list of "binding_entry"s awaiting for re-use. */ |
| |
| static GTY((deletable)) binding_entry free_binding_entry = NULL; |
| |
| /* The binding oracle; see cp-tree.h. */ |
| |
| cp_binding_oracle_function *cp_binding_oracle; |
| |
| /* If we have a binding oracle, ask it for all namespace-scoped |
| definitions of NAME. */ |
| |
| static inline void |
| query_oracle (tree name) |
| { |
| if (!cp_binding_oracle) |
| return; |
| |
| /* LOOKED_UP holds the set of identifiers that we have already |
| looked up with the oracle. */ |
| static hash_set<tree> looked_up; |
| if (looked_up.add (name)) |
| return; |
| |
| cp_binding_oracle (CP_ORACLE_IDENTIFIER, name); |
| } |
| |
| /* Create a binding_entry object for (NAME, TYPE). */ |
| |
| static inline binding_entry |
| binding_entry_make (tree name, tree type) |
| { |
| binding_entry entry; |
| |
| if (free_binding_entry) |
| { |
| entry = free_binding_entry; |
| free_binding_entry = entry->chain; |
| } |
| else |
| entry = ggc_alloc<binding_entry_s> (); |
| |
| entry->name = name; |
| entry->type = type; |
| entry->chain = NULL; |
| |
| return entry; |
| } |
| |
| /* Put ENTRY back on the free list. */ |
| #if 0 |
| static inline void |
| binding_entry_free (binding_entry entry) |
| { |
| entry->name = NULL; |
| entry->type = NULL; |
| entry->chain = free_binding_entry; |
| free_binding_entry = entry; |
| } |
| #endif |
| |
| /* The datatype used to implement the mapping from names to types at |
| a given scope. */ |
| struct GTY(()) binding_table_s { |
| /* Array of chains of "binding_entry"s */ |
| binding_entry * GTY((length ("%h.chain_count"))) chain; |
| |
| /* The number of chains in this table. This is the length of the |
| member "chain" considered as an array. */ |
| size_t chain_count; |
| |
| /* Number of "binding_entry"s in this table. */ |
| size_t entry_count; |
| }; |
| |
| /* Construct TABLE with an initial CHAIN_COUNT. */ |
| |
| static inline void |
| binding_table_construct (binding_table table, size_t chain_count) |
| { |
| table->chain_count = chain_count; |
| table->entry_count = 0; |
| table->chain = ggc_cleared_vec_alloc<binding_entry> (table->chain_count); |
| } |
| |
| /* Make TABLE's entries ready for reuse. */ |
| #if 0 |
| static void |
| binding_table_free (binding_table table) |
| { |
| size_t i; |
| size_t count; |
| |
| if (table == NULL) |
| return; |
| |
| for (i = 0, count = table->chain_count; i < count; ++i) |
| { |
| binding_entry temp = table->chain[i]; |
| while (temp != NULL) |
| { |
| binding_entry entry = temp; |
| temp = entry->chain; |
| binding_entry_free (entry); |
| } |
| table->chain[i] = NULL; |
| } |
| table->entry_count = 0; |
| } |
| #endif |
| |
| /* Allocate a table with CHAIN_COUNT, assumed to be a power of two. */ |
| |
| static inline binding_table |
| binding_table_new (size_t chain_count) |
| { |
| binding_table table = ggc_alloc<binding_table_s> (); |
| table->chain = NULL; |
| binding_table_construct (table, chain_count); |
| return table; |
| } |
| |
| /* Expand TABLE to twice its current chain_count. */ |
| |
| static void |
| binding_table_expand (binding_table table) |
| { |
| const size_t old_chain_count = table->chain_count; |
| const size_t old_entry_count = table->entry_count; |
| const size_t new_chain_count = 2 * old_chain_count; |
| binding_entry *old_chains = table->chain; |
| size_t i; |
| |
| binding_table_construct (table, new_chain_count); |
| for (i = 0; i < old_chain_count; ++i) |
| { |
| binding_entry entry = old_chains[i]; |
| for (; entry != NULL; entry = old_chains[i]) |
| { |
| const unsigned int hash = IDENTIFIER_HASH_VALUE (entry->name); |
| const size_t j = ENTRY_INDEX (hash, new_chain_count); |
| |
| old_chains[i] = entry->chain; |
| entry->chain = table->chain[j]; |
| table->chain[j] = entry; |
| } |
| } |
| table->entry_count = old_entry_count; |
| } |
| |
| /* Insert a binding for NAME to TYPE into TABLE. */ |
| |
| static void |
| binding_table_insert (binding_table table, tree name, tree type) |
| { |
| const unsigned int hash = IDENTIFIER_HASH_VALUE (name); |
| const size_t i = ENTRY_INDEX (hash, table->chain_count); |
| binding_entry entry = binding_entry_make (name, type); |
| |
| entry->chain = table->chain[i]; |
| table->chain[i] = entry; |
| ++table->entry_count; |
| |
| if (3 * table->chain_count < 5 * table->entry_count) |
| binding_table_expand (table); |
| } |
| |
| /* Return the binding_entry, if any, that maps NAME. */ |
| |
| binding_entry |
| binding_table_find (binding_table table, tree name) |
| { |
| const unsigned int hash = IDENTIFIER_HASH_VALUE (name); |
| binding_entry entry = table->chain[ENTRY_INDEX (hash, table->chain_count)]; |
| |
| while (entry != NULL && entry->name != name) |
| entry = entry->chain; |
| |
| return entry; |
| } |
| |
| /* Apply PROC -- with DATA -- to all entries in TABLE. */ |
| |
| void |
| binding_table_foreach (binding_table table, bt_foreach_proc proc, void *data) |
| { |
| size_t chain_count; |
| size_t i; |
| |
| if (!table) |
| return; |
| |
| chain_count = table->chain_count; |
| for (i = 0; i < chain_count; ++i) |
| { |
| binding_entry entry = table->chain[i]; |
| for (; entry != NULL; entry = entry->chain) |
| proc (entry, data); |
| } |
| } |
| |
| #ifndef ENABLE_SCOPE_CHECKING |
| # define ENABLE_SCOPE_CHECKING 0 |
| #else |
| # define ENABLE_SCOPE_CHECKING 1 |
| #endif |
| |
| /* A free list of "cxx_binding"s, connected by their PREVIOUS. */ |
| |
| static GTY((deletable)) cxx_binding *free_bindings; |
| |
| /* Initialize VALUE and TYPE field for BINDING, and set the PREVIOUS |
| field to NULL. */ |
| |
| static inline void |
| cxx_binding_init (cxx_binding *binding, tree value, tree type) |
| { |
| binding->value = value; |
| binding->type = type; |
| binding->previous = NULL; |
| } |
| |
| /* (GC)-allocate a binding object with VALUE and TYPE member initialized. */ |
| |
| static cxx_binding * |
| cxx_binding_make (tree value, tree type) |
| { |
| cxx_binding *binding; |
| if (free_bindings) |
| { |
| binding = free_bindings; |
| free_bindings = binding->previous; |
| } |
| else |
| binding = ggc_alloc<cxx_binding> (); |
| |
| cxx_binding_init (binding, value, type); |
| |
| return binding; |
| } |
| |
| /* Put BINDING back on the free list. */ |
| |
| static inline void |
| cxx_binding_free (cxx_binding *binding) |
| { |
| binding->scope = NULL; |
| binding->previous = free_bindings; |
| free_bindings = binding; |
| } |
| |
| /* Create a new binding for NAME (with the indicated VALUE and TYPE |
| bindings) in the class scope indicated by SCOPE. */ |
| |
| static cxx_binding * |
| new_class_binding (tree name, tree value, tree type, cp_binding_level *scope) |
| { |
| cp_class_binding cb = {cxx_binding_make (value, type), name}; |
| cxx_binding *binding = cb.base; |
| vec_safe_push (scope->class_shadowed, cb); |
| binding->scope = scope; |
| return binding; |
| } |
| |
| /* Make DECL the innermost binding for ID. The LEVEL is the binding |
| level at which this declaration is being bound. */ |
| |
| void |
| push_binding (tree id, tree decl, cp_binding_level* level) |
| { |
| cxx_binding *binding; |
| |
| if (level != class_binding_level) |
| { |
| binding = cxx_binding_make (decl, NULL_TREE); |
| binding->scope = level; |
| } |
| else |
| binding = new_class_binding (id, decl, /*type=*/NULL_TREE, level); |
| |
| /* Now, fill in the binding information. */ |
| binding->previous = IDENTIFIER_BINDING (id); |
| INHERITED_VALUE_BINDING_P (binding) = 0; |
| LOCAL_BINDING_P (binding) = (level != class_binding_level); |
| |
| /* And put it on the front of the list of bindings for ID. */ |
| IDENTIFIER_BINDING (id) = binding; |
| } |
| |
| /* Remove the binding for DECL which should be the innermost binding |
| for ID. */ |
| |
| void |
| pop_local_binding (tree id, tree decl) |
| { |
| cxx_binding *binding; |
| |
| if (id == NULL_TREE) |
| /* It's easiest to write the loops that call this function without |
| checking whether or not the entities involved have names. We |
| get here for such an entity. */ |
| return; |
| |
| /* Get the innermost binding for ID. */ |
| binding = IDENTIFIER_BINDING (id); |
| |
| /* The name should be bound. */ |
| gcc_assert (binding != NULL); |
| |
| /* The DECL will be either the ordinary binding or the type |
| binding for this identifier. Remove that binding. */ |
| if (binding->value == decl) |
| binding->value = NULL_TREE; |
| else |
| { |
| gcc_assert (binding->type == decl); |
| binding->type = NULL_TREE; |
| } |
| |
| if (!binding->value && !binding->type) |
| { |
| /* We're completely done with the innermost binding for this |
| identifier. Unhook it from the list of bindings. */ |
| IDENTIFIER_BINDING (id) = binding->previous; |
| |
| /* Add it to the free list. */ |
| cxx_binding_free (binding); |
| } |
| } |
| |
| /* Remove the bindings for the decls of the current level and leave |
| the current scope. */ |
| |
| void |
| pop_bindings_and_leave_scope (void) |
| { |
| for (tree t = get_local_decls (); t; t = DECL_CHAIN (t)) |
| { |
| tree decl = TREE_CODE (t) == TREE_LIST ? TREE_VALUE (t) : t; |
| tree name = OVL_NAME (decl); |
| |
| pop_local_binding (name, decl); |
| } |
| |
| leave_scope (); |
| } |
| |
| /* Strip non dependent using declarations. If DECL is dependent, |
| surreptitiously create a typename_type and return it. */ |
| |
| tree |
| strip_using_decl (tree decl) |
| { |
| if (decl == NULL_TREE) |
| return NULL_TREE; |
| |
| while (TREE_CODE (decl) == USING_DECL && !DECL_DEPENDENT_P (decl)) |
| decl = USING_DECL_DECLS (decl); |
| |
| if (TREE_CODE (decl) == USING_DECL && DECL_DEPENDENT_P (decl) |
| && USING_DECL_TYPENAME_P (decl)) |
| { |
| /* We have found a type introduced by a using |
| declaration at class scope that refers to a dependent |
| type. |
| |
| using typename :: [opt] nested-name-specifier unqualified-id ; |
| */ |
| decl = make_typename_type (USING_DECL_SCOPE (decl), |
| DECL_NAME (decl), |
| typename_type, tf_error); |
| if (decl != error_mark_node) |
| decl = TYPE_NAME (decl); |
| } |
| |
| return decl; |
| } |
| |
| /* Return true if OVL is an overload for an anticipated builtin. */ |
| |
| static bool |
| anticipated_builtin_p (tree ovl) |
| { |
| if (TREE_CODE (ovl) != OVERLOAD) |
| return false; |
| |
| if (!OVL_HIDDEN_P (ovl)) |
| return false; |
| |
| tree fn = OVL_FUNCTION (ovl); |
| gcc_checking_assert (DECL_ANTICIPATED (fn)); |
| |
| if (DECL_HIDDEN_FRIEND_P (fn)) |
| return false; |
| |
| return true; |
| } |
| |
| /* BINDING records an existing declaration for a name in the current scope. |
| But, DECL is another declaration for that same identifier in the |
| same scope. This is the `struct stat' hack whereby a non-typedef |
| class name or enum-name can be bound at the same level as some other |
| kind of entity. |
| 3.3.7/1 |
| |
| A class name (9.1) or enumeration name (7.2) can be hidden by the |
| name of an object, function, or enumerator declared in the same scope. |
| If a class or enumeration name and an object, function, or enumerator |
| are declared in the same scope (in any order) with the same name, the |
| class or enumeration name is hidden wherever the object, function, or |
| enumerator name is visible. |
| |
| It's the responsibility of the caller to check that |
| inserting this name is valid here. Returns nonzero if the new binding |
| was successful. */ |
| |
| static bool |
| supplement_binding_1 (cxx_binding *binding, tree decl) |
| { |
| tree bval = binding->value; |
| bool ok = true; |
| tree target_bval = strip_using_decl (bval); |
| tree target_decl = strip_using_decl (decl); |
| |
| if (TREE_CODE (target_decl) == TYPE_DECL && DECL_ARTIFICIAL (target_decl) |
| && target_decl != target_bval |
| && (TREE_CODE (target_bval) != TYPE_DECL |
| /* We allow pushing an enum multiple times in a class |
| template in order to handle late matching of underlying |
| type on an opaque-enum-declaration followed by an |
| enum-specifier. */ |
| || (processing_template_decl |
| && TREE_CODE (TREE_TYPE (target_decl)) == ENUMERAL_TYPE |
| && TREE_CODE (TREE_TYPE (target_bval)) == ENUMERAL_TYPE |
| && (dependent_type_p (ENUM_UNDERLYING_TYPE |
| (TREE_TYPE (target_decl))) |
| || dependent_type_p (ENUM_UNDERLYING_TYPE |
| (TREE_TYPE (target_bval))))))) |
| /* The new name is the type name. */ |
| binding->type = decl; |
| else if (/* TARGET_BVAL is null when push_class_level_binding moves |
| an inherited type-binding out of the way to make room |
| for a new value binding. */ |
| !target_bval |
| /* TARGET_BVAL is error_mark_node when TARGET_DECL's name |
| has been used in a non-class scope prior declaration. |
| In that case, we should have already issued a |
| diagnostic; for graceful error recovery purpose, pretend |
| this was the intended declaration for that name. */ |
| || target_bval == error_mark_node |
| /* If TARGET_BVAL is anticipated but has not yet been |
| declared, pretend it is not there at all. */ |
| || anticipated_builtin_p (target_bval)) |
| binding->value = decl; |
| else if (TREE_CODE (target_bval) == TYPE_DECL |
| && DECL_ARTIFICIAL (target_bval) |
| && target_decl != target_bval |
| && (TREE_CODE (target_decl) != TYPE_DECL |
| || same_type_p (TREE_TYPE (target_decl), |
| TREE_TYPE (target_bval)))) |
| { |
| /* The old binding was a type name. It was placed in |
| VALUE field because it was thought, at the point it was |
| declared, to be the only entity with such a name. Move the |
| type name into the type slot; it is now hidden by the new |
| binding. */ |
| binding->type = bval; |
| binding->value = decl; |
| binding->value_is_inherited = false; |
| } |
| else if (TREE_CODE (target_bval) == TYPE_DECL |
| && TREE_CODE (target_decl) == TYPE_DECL |
| && DECL_NAME (target_decl) == DECL_NAME (target_bval) |
| && binding->scope->kind != sk_class |
| && (same_type_p (TREE_TYPE (target_decl), TREE_TYPE (target_bval)) |
| /* If either type involves template parameters, we must |
| wait until instantiation. */ |
| || uses_template_parms (TREE_TYPE (target_decl)) |
| || uses_template_parms (TREE_TYPE (target_bval)))) |
| /* We have two typedef-names, both naming the same type to have |
| the same name. In general, this is OK because of: |
| |
| [dcl.typedef] |
| |
| In a given scope, a typedef specifier can be used to redefine |
| the name of any type declared in that scope to refer to the |
| type to which it already refers. |
| |
| However, in class scopes, this rule does not apply due to the |
| stricter language in [class.mem] prohibiting redeclarations of |
| members. */ |
| ok = false; |
| /* There can be two block-scope declarations of the same variable, |
| so long as they are `extern' declarations. However, there cannot |
| be two declarations of the same static data member: |
| |
| [class.mem] |
| |
| A member shall not be declared twice in the |
| member-specification. */ |
| else if (VAR_P (target_decl) |
| && VAR_P (target_bval) |
| && DECL_EXTERNAL (target_decl) && DECL_EXTERNAL (target_bval) |
| && !DECL_CLASS_SCOPE_P (target_decl)) |
| { |
| duplicate_decls (decl, binding->value, /*newdecl_is_friend=*/false); |
| ok = false; |
| } |
| else if (TREE_CODE (decl) == NAMESPACE_DECL |
| && TREE_CODE (bval) == NAMESPACE_DECL |
| && DECL_NAMESPACE_ALIAS (decl) |
| && DECL_NAMESPACE_ALIAS (bval) |
| && ORIGINAL_NAMESPACE (bval) == ORIGINAL_NAMESPACE (decl)) |
| /* [namespace.alias] |
| |
| In a declarative region, a namespace-alias-definition can be |
| used to redefine a namespace-alias declared in that declarative |
| region to refer only to the namespace to which it already |
| refers. */ |
| ok = false; |
| else |
| { |
| if (!error_operand_p (bval)) |
| diagnose_name_conflict (decl, bval); |
| ok = false; |
| } |
| |
| return ok; |
| } |
| |
| /* Diagnose a name conflict between DECL and BVAL. */ |
| |
| static void |
| diagnose_name_conflict (tree decl, tree bval) |
| { |
| if (TREE_CODE (decl) == TREE_CODE (bval) |
| && TREE_CODE (decl) != NAMESPACE_DECL |
| && !DECL_DECLARES_FUNCTION_P (decl) |
| && (TREE_CODE (decl) != TYPE_DECL |
| || DECL_ARTIFICIAL (decl) == DECL_ARTIFICIAL (bval)) |
| && CP_DECL_CONTEXT (decl) == CP_DECL_CONTEXT (bval)) |
| error ("redeclaration of %q#D", decl); |
| else |
| error ("%q#D conflicts with a previous declaration", decl); |
| |
| inform (location_of (bval), "previous declaration %q#D", bval); |
| } |
| |
| /* Wrapper for supplement_binding_1. */ |
| |
| static bool |
| supplement_binding (cxx_binding *binding, tree decl) |
| { |
| bool ret; |
| bool subtime = timevar_cond_start (TV_NAME_LOOKUP); |
| ret = supplement_binding_1 (binding, decl); |
| timevar_cond_stop (TV_NAME_LOOKUP, subtime); |
| return ret; |
| } |
| |
| /* Replace BINDING's current value on its scope's name list with |
| NEWVAL. */ |
| |
| static void |
| update_local_overload (cxx_binding *binding, tree newval) |
| { |
| tree *d; |
| |
| for (d = &binding->scope->names; ; d = &TREE_CHAIN (*d)) |
| if (*d == binding->value) |
| { |
| /* Stitch new list node in. */ |
| *d = tree_cons (NULL_TREE, NULL_TREE, TREE_CHAIN (*d)); |
| break; |
| } |
| else if (TREE_CODE (*d) == TREE_LIST && TREE_VALUE (*d) == binding->value) |
| break; |
| |
| TREE_VALUE (*d) = newval; |
| } |
| |
| /* Compares the parameter-type-lists of ONE and TWO and |
| returns false if they are different. If the DECLs are template |
| functions, the return types and the template parameter lists are |
| compared too (DR 565). */ |
| |
| static bool |
| matching_fn_p (tree one, tree two) |
| { |
| if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (one)), |
| TYPE_ARG_TYPES (TREE_TYPE (two)))) |
| return false; |
| |
| if (TREE_CODE (one) == TEMPLATE_DECL |
| && TREE_CODE (two) == TEMPLATE_DECL) |
| { |
| /* Compare template parms. */ |
| if (!comp_template_parms (DECL_TEMPLATE_PARMS (one), |
| DECL_TEMPLATE_PARMS (two))) |
| return false; |
| |
| /* And return type. */ |
| if (!same_type_p (TREE_TYPE (TREE_TYPE (one)), |
| TREE_TYPE (TREE_TYPE (two)))) |
| return false; |
| } |
| |
| return true; |
| } |
| |
| /* Push DECL into nonclass LEVEL BINDING or SLOT. OLD is the current |
| binding value (possibly with anticipated builtins stripped). |
| Diagnose conflicts and return updated decl. */ |
| |
| static tree |
| update_binding (cp_binding_level *level, cxx_binding *binding, tree *slot, |
| tree old, tree decl, bool is_friend) |
| { |
| tree to_val = decl; |
| tree old_type = slot ? MAYBE_STAT_TYPE (*slot) : binding->type; |
| tree to_type = old_type; |
| |
| gcc_assert (level->kind == sk_namespace ? !binding |
| : level->kind != sk_class && !slot); |
| if (old == error_mark_node) |
| old = NULL_TREE; |
| |
| if (TREE_CODE (decl) == TYPE_DECL && DECL_ARTIFICIAL (decl)) |
| { |
| tree other = to_type; |
| |
| if (old && TREE_CODE (old) == TYPE_DECL && DECL_ARTIFICIAL (old)) |
| other = old; |
| |
| /* Pushing an artificial typedef. See if this matches either |
| the type slot or the old value slot. */ |
| if (!other) |
| ; |
| else if (same_type_p (TREE_TYPE (other), TREE_TYPE (decl))) |
| /* Two artificial decls to same type. Do nothing. */ |
| return other; |
| else |
| goto conflict; |
| |
| if (old) |
| { |
| /* Slide decl into the type slot, keep old unaltered */ |
| to_type = decl; |
| to_val = old; |
| goto done; |
| } |
| } |
| |
| if (old && TREE_CODE (old) == TYPE_DECL && DECL_ARTIFICIAL (old)) |
| { |
| /* Slide old into the type slot. */ |
| to_type = old; |
| old = NULL_TREE; |
| } |
| |
| if (DECL_DECLARES_FUNCTION_P (decl)) |
| { |
| if (!old) |
| ; |
| else if (OVL_P (old)) |
| { |
| for (ovl_iterator iter (old); iter; ++iter) |
| { |
| tree fn = *iter; |
| |
| if (iter.using_p () && matching_fn_p (fn, decl)) |
| { |
| /* If a function declaration in namespace scope or |
| block scope has the same name and the same |
| parameter-type- list (8.3.5) as a function |
| introduced by a using-declaration, and the |
| declarations do not declare the same function, |
| the program is ill-formed. [namespace.udecl]/14 */ |
| if (tree match = duplicate_decls (decl, fn, is_friend)) |
| return match; |
| else |
| /* FIXME: To preserve existing error behavior, we |
| still push the decl. This might change. */ |
| diagnose_name_conflict (decl, fn); |
| } |
| } |
| } |
| else |
| goto conflict; |
| |
| if (to_type != old_type |
| && warn_shadow |
| && MAYBE_CLASS_TYPE_P (TREE_TYPE (to_type)) |
| && !(DECL_IN_SYSTEM_HEADER (decl) |
| && DECL_IN_SYSTEM_HEADER (to_type))) |
| warning (OPT_Wshadow, "%q#D hides constructor for %q#D", |
| decl, to_type); |
| |
| to_val = ovl_insert (decl, old); |
| } |
| else if (!old) |
| ; |
| else if (TREE_CODE (old) != TREE_CODE (decl)) |
| /* Different kinds of decls conflict. */ |
| goto conflict; |
| else if (TREE_CODE (old) == TYPE_DECL) |
| { |
| if (same_type_p (TREE_TYPE (old), TREE_TYPE (decl))) |
| /* Two type decls to the same type. Do nothing. */ |
| return old; |
| else |
| goto conflict; |
| } |
| else if (TREE_CODE (old) == NAMESPACE_DECL) |
| { |
| /* Two maybe-aliased namespaces. If they're to the same target |
| namespace, that's ok. */ |
| if (ORIGINAL_NAMESPACE (old) != ORIGINAL_NAMESPACE (decl)) |
| goto conflict; |
| |
| /* The new one must be an alias at this point. */ |
| gcc_assert (DECL_NAMESPACE_ALIAS (decl)); |
| return old; |
| } |
| else if (TREE_CODE (old) == VAR_DECL) |
| { |
| /* There can be two block-scope declarations of the same |
| variable, so long as they are `extern' declarations. */ |
| if (!DECL_EXTERNAL (old) || !DECL_EXTERNAL (decl)) |
| goto conflict; |
| else if (tree match = duplicate_decls (decl, old, false)) |
| return match; |
| else |
| goto conflict; |
| } |
| else |
| { |
| conflict: |
| diagnose_name_conflict (decl, old); |
| to_val = NULL_TREE; |
| } |
| |
| done: |
| if (to_val) |
| { |
| if (level->kind == sk_namespace || to_type == decl || to_val == decl) |
| add_decl_to_level (level, decl); |
| else |
| { |
| gcc_checking_assert (binding->value && OVL_P (binding->value)); |
| update_local_overload (binding, to_val); |
| } |
| |
| if (slot) |
| { |
| if (STAT_HACK_P (*slot)) |
| { |
| STAT_TYPE (*slot) = to_type; |
| STAT_DECL (*slot) = to_val; |
| } |
| else if (to_type) |
| *slot = stat_hack (to_val, to_type); |
| else |
| *slot = to_val; |
| } |
| else |
| { |
| binding->type = to_type; |
| binding->value = to_val; |
| } |
| } |
| |
| return decl; |
| } |
| |
| /* Table of identifiers to extern C declarations (or LISTS thereof). */ |
| |
| static GTY(()) hash_table<named_decl_hash> *extern_c_decls; |
| |
| /* DECL has C linkage. If we have an existing instance, make sure the |
| new one is compatible. Make sure it has the same exception |
| specification [7.5, 7.6]. Add DECL to the map. */ |
| |
| static void |
| check_extern_c_conflict (tree decl) |
| { |
| /* Ignore artificial or system header decls. */ |
| if (DECL_ARTIFICIAL (decl) || DECL_IN_SYSTEM_HEADER (decl)) |
| return; |
| |
| /* This only applies to decls at namespace scope. */ |
| if (!DECL_NAMESPACE_SCOPE_P (decl)) |
| return; |
| |
| if (!extern_c_decls) |
| extern_c_decls = hash_table<named_decl_hash>::create_ggc (127); |
| |
| tree *slot = extern_c_decls |
| ->find_slot_with_hash (DECL_NAME (decl), |
| IDENTIFIER_HASH_VALUE (DECL_NAME (decl)), INSERT); |
| if (tree old = *slot) |
| { |
| if (TREE_CODE (old) == OVERLOAD) |
| old = OVL_FUNCTION (old); |
| |
| int mismatch = 0; |
| if (DECL_CONTEXT (old) == DECL_CONTEXT (decl)) |
| ; /* If they're in the same context, we'll have already complained |
| about a (possible) mismatch, when inserting the decl. */ |
| else if (!decls_match (decl, old)) |
| mismatch = 1; |
| else if (TREE_CODE (decl) == FUNCTION_DECL |
| && !comp_except_specs (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old)), |
| TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)), |
| ce_normal)) |
| mismatch = -1; |
| else if (DECL_ASSEMBLER_NAME_SET_P (old)) |
| SET_DECL_ASSEMBLER_NAME (decl, DECL_ASSEMBLER_NAME (old)); |
| |
| if (mismatch) |
| { |
| auto_diagnostic_group d; |
| pedwarn (input_location, 0, |
| "conflicting C language linkage declaration %q#D", decl); |
| inform (DECL_SOURCE_LOCATION (old), |
| "previous declaration %q#D", old); |
| if (mismatch < 0) |
| inform (input_location, |
| "due to different exception specifications"); |
| } |
| else |
| { |
| if (old == *slot) |
| /* The hash table expects OVERLOADS, so construct one with |
| OLD as both the function and the chain. This allocate |
| an excess OVERLOAD node, but it's rare to have multiple |
| extern "C" decls of the same name. And we save |
| complicating the hash table logic (which is used |
| elsewhere). */ |
| *slot = ovl_make (old, old); |
| |
| slot = &OVL_CHAIN (*slot); |
| |
| /* Chain it on for c_linkage_binding's use. */ |
| *slot = tree_cons (NULL_TREE, decl, *slot); |
| } |
| } |
| else |
| *slot = decl; |
| } |
| |
| /* Returns a list of C-linkage decls with the name NAME. Used in |
| c-family/c-pragma.c to implement redefine_extname pragma. */ |
| |
| tree |
| c_linkage_bindings (tree name) |
| { |
| if (extern_c_decls) |
| if (tree *slot = extern_c_decls |
| ->find_slot_with_hash (name, IDENTIFIER_HASH_VALUE (name), NO_INSERT)) |
| { |
| tree result = *slot; |
| if (TREE_CODE (result) == OVERLOAD) |
| result = OVL_CHAIN (result); |
| return result; |
| } |
| |
| return NULL_TREE; |
| } |
| |
| /* Subroutine of check_local_shadow. */ |
| |
| static void |
| inform_shadowed (tree shadowed) |
| { |
| inform (DECL_SOURCE_LOCATION (shadowed), |
| "shadowed declaration is here"); |
| } |
| |
| /* DECL is being declared at a local scope. Emit suitable shadow |
| warnings. */ |
| |
| static void |
| check_local_shadow (tree decl) |
| { |
| /* Don't complain about the parms we push and then pop |
| while tentatively parsing a function declarator. */ |
| if (TREE_CODE (decl) == PARM_DECL && !DECL_CONTEXT (decl)) |
| return; |
| |
| /* External decls are something else. */ |
| if (DECL_EXTERNAL (decl)) |
| return; |
| |
| tree old = NULL_TREE; |
| cp_binding_level *old_scope = NULL; |
| if (cxx_binding *binding = outer_binding (DECL_NAME (decl), NULL, true)) |
| { |
| old = binding->value; |
| old_scope = binding->scope; |
| } |
| |
| if (old |
| && (TREE_CODE (old) == PARM_DECL |
| || VAR_P (old) |
| || (TREE_CODE (old) == TYPE_DECL |
| && (!DECL_ARTIFICIAL (old) |
| || TREE_CODE (decl) == TYPE_DECL))) |
| && DECL_FUNCTION_SCOPE_P (old) |
| && (!DECL_ARTIFICIAL (decl) |
| || is_capture_proxy (decl) |
| || DECL_IMPLICIT_TYPEDEF_P (decl) |
| || (VAR_P (decl) && DECL_ANON_UNION_VAR_P (decl)))) |
| { |
| /* DECL shadows a local thing possibly of interest. */ |
| |
| /* DR 2211: check that captures and parameters |
| do not have the same name. */ |
| if (is_capture_proxy (decl)) |
| { |
| if (current_lambda_expr () |
| && DECL_CONTEXT (old) == lambda_function (current_lambda_expr ()) |
| && TREE_CODE (old) == PARM_DECL |
| && DECL_NAME (decl) != this_identifier) |
| { |
| error_at (DECL_SOURCE_LOCATION (old), |
| "lambda parameter %qD " |
| "previously declared as a capture", old); |
| } |
| return; |
| } |
| /* Don't complain if it's from an enclosing function. */ |
| else if (DECL_CONTEXT (old) == current_function_decl |
| && TREE_CODE (decl) != PARM_DECL |
| && TREE_CODE (old) == PARM_DECL) |
| { |
| /* Go to where the parms should be and see if we find |
| them there. */ |
| cp_binding_level *b = current_binding_level->level_chain; |
| |
| if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl)) |
| /* Skip the ctor/dtor cleanup level. */ |
| b = b->level_chain; |
| |
| /* ARM $8.3 */ |
| if (b->kind == sk_function_parms) |
| { |
| error ("declaration of %q#D shadows a parameter", decl); |
| return; |
| } |
| } |
| |
| /* The local structure or class can't use parameters of |
| the containing function anyway. */ |
| if (DECL_CONTEXT (old) != current_function_decl) |
| { |
| for (cp_binding_level *scope = current_binding_level; |
| scope != old_scope; scope = scope->level_chain) |
| if (scope->kind == sk_class |
| && !LAMBDA_TYPE_P (scope->this_entity)) |
| return; |
| } |
| /* Error if redeclaring a local declared in a |
| init-statement or in the condition of an if or |
| switch statement when the new declaration is in the |
| outermost block of the controlled statement. |
| Redeclaring a variable from a for or while condition is |
| detected elsewhere. */ |
| else if (VAR_P (old) |
| && old_scope == current_binding_level->level_chain |
| && (old_scope->kind == sk_cond || old_scope->kind == sk_for)) |
| { |
| auto_diagnostic_group d; |
| error ("redeclaration of %q#D", decl); |
| inform (DECL_SOURCE_LOCATION (old), |
| "%q#D previously declared here", old); |
| return; |
| } |
| /* C++11: |
| 3.3.3/3: The name declared in an exception-declaration (...) |
| shall not be redeclared in the outermost block of the handler. |
| 3.3.3/2: A parameter name shall not be redeclared (...) in |
| the outermost block of any handler associated with a |
| function-try-block. |
| 3.4.1/15: The function parameter names shall not be redeclared |
| in the exception-declaration nor in the outermost block of a |
| handler for the function-try-block. */ |
| else if ((TREE_CODE (old) == VAR_DECL |
| && old_scope == current_binding_level->level_chain |
| && old_scope->kind == sk_catch) |
| || (TREE_CODE (old) == PARM_DECL |
| && (current_binding_level->kind == sk_catch |
| || current_binding_level->level_chain->kind == sk_catch) |
| && in_function_try_handler)) |
| { |
| auto_diagnostic_group d; |
| if (permerror (input_location, "redeclaration of %q#D", decl)) |
| inform (DECL_SOURCE_LOCATION (old), |
| "%q#D previously declared here", old); |
| return; |
| } |
| |
| /* If '-Wshadow=compatible-local' is specified without other |
| -Wshadow= flags, we will warn only when the type of the |
| shadowing variable (DECL) can be converted to that of the |
| shadowed parameter (OLD_LOCAL). The reason why we only check |
| if DECL's type can be converted to OLD_LOCAL's type (but not the |
| other way around) is because when users accidentally shadow a |
| parameter, more than often they would use the variable |
| thinking (mistakenly) it's still the parameter. It would be |
| rare that users would use the variable in the place that |
| expects the parameter but thinking it's a new decl. */ |
| |
| enum opt_code warning_code; |
| if (warn_shadow) |
| warning_code = OPT_Wshadow; |
| else if (warn_shadow_local) |
| warning_code = OPT_Wshadow_local; |
| else if (warn_shadow_compatible_local |
| && ((TREE_TYPE (old) |
| && TREE_TYPE (decl) |
| && same_type_p (TREE_TYPE (old), TREE_TYPE (decl))) |
| || (!dependent_type_p (TREE_TYPE (decl)) |
| && !dependent_type_p (TREE_TYPE (old)) |
| /* If the new decl uses auto, we don't yet know |
| its type (the old type cannot be using auto |
| at this point, without also being |
| dependent). This is an indication we're |
| (now) doing the shadow checking too |
| early. */ |
| && !type_uses_auto (TREE_TYPE (decl)) |
| && can_convert (TREE_TYPE (old), TREE_TYPE (decl), |
| tf_none)))) |
| warning_code = OPT_Wshadow_compatible_local; |
| else |
| return; |
| |
| const char *msg; |
| if (TREE_CODE (old) == PARM_DECL) |
| msg = "declaration of %q#D shadows a parameter"; |
| else if (is_capture_proxy (old)) |
| msg = "declaration of %qD shadows a lambda capture"; |
| else |
| msg = "declaration of %qD shadows a previous local"; |
| |
| auto_diagnostic_group d; |
| if (warning_at (input_location, warning_code, msg, decl)) |
| inform_shadowed (old); |
| return; |
| } |
| |
| if (!warn_shadow) |
| return; |
| |
| /* Don't warn for artificial things that are not implicit typedefs. */ |
| if (DECL_ARTIFICIAL (decl) && !DECL_IMPLICIT_TYPEDEF_P (decl)) |
| return; |
| |
| if (nonlambda_method_basetype ()) |
| if (tree member = lookup_member (current_nonlambda_class_type (), |
| DECL_NAME (decl), /*protect=*/0, |
| /*want_type=*/false, tf_warning_or_error)) |
| { |
| member = MAYBE_BASELINK_FUNCTIONS (member); |
| |
| /* Warn if a variable shadows a non-function, or the variable |
| is a function or a pointer-to-function. */ |
| if (!OVL_P (member) |
| || TREE_CODE (decl) == FUNCTION_DECL |
| || TYPE_PTRFN_P (TREE_TYPE (decl)) |
| || TYPE_PTRMEMFUNC_P (TREE_TYPE (decl))) |
| { |
| auto_diagnostic_group d; |
| if (warning_at (input_location, OPT_Wshadow, |
| "declaration of %qD shadows a member of %qT", |
| decl, current_nonlambda_class_type ()) |
| && DECL_P (member)) |
| inform_shadowed (member); |
| } |
| return; |
| } |
| |
| /* Now look for a namespace shadow. */ |
| old = find_namespace_value (current_namespace, DECL_NAME (decl)); |
| if (old |
| && (VAR_P (old) |
| || (TREE_CODE (old) == TYPE_DECL |
| && (!DECL_ARTIFICIAL (old) |
| || TREE_CODE (decl) == TYPE_DECL))) |
| && !instantiating_current_function_p ()) |
| /* XXX shadow warnings in outer-more namespaces */ |
| { |
| auto_diagnostic_group d; |
| if (warning_at (input_location, OPT_Wshadow, |
| "declaration of %qD shadows a global declaration", |
| decl)) |
| inform_shadowed (old); |
| return; |
| } |
| |
| return; |
| } |
| |
| /* DECL is being pushed inside function CTX. Set its context, if |
| needed. */ |
| |
| static void |
| set_decl_context_in_fn (tree ctx, tree decl) |
| { |
| if (!DECL_CONTEXT (decl) |
| /* A local declaration for a function doesn't constitute |
| nesting. */ |
| && TREE_CODE (decl) != FUNCTION_DECL |
| /* A local declaration for an `extern' variable is in the |
| scope of the current namespace, not the current |
| function. */ |
| && !(VAR_P (decl) && DECL_EXTERNAL (decl)) |
| /* When parsing the parameter list of a function declarator, |
| don't set DECL_CONTEXT to an enclosing function. When we |
| push the PARM_DECLs in order to process the function body, |
| current_binding_level->this_entity will be set. */ |
| && !(TREE_CODE (decl) == PARM_DECL |
| && current_binding_level->kind == sk_function_parms |
| && current_binding_level->this_entity == NULL)) |
| DECL_CONTEXT (decl) = ctx; |
| |
| /* If this is the declaration for a namespace-scope function, |
| but the declaration itself is in a local scope, mark the |
| declaration. */ |
| if (TREE_CODE (decl) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (decl)) |
| DECL_LOCAL_FUNCTION_P (decl) = 1; |
| } |
| |
| /* DECL is a local-scope decl with linkage. SHADOWED is true if the |
| name is already bound at the current level. |
| |
| [basic.link] If there is a visible declaration of an entity with |
| linkage having the same name and type, ignoring entities declared |
| outside the innermost enclosing namespace scope, the block scope |
| declaration declares that same entity and receives the linkage of |
| the previous declaration. |
| |
| Also, make sure that this decl matches any existing external decl |
| in the enclosing namespace. */ |
| |
| static void |
| set_local_extern_decl_linkage (tree decl, bool shadowed) |
| { |
| tree ns_value = decl; /* Unique marker. */ |
| |
| if (!shadowed) |
| { |
| tree loc_value = innermost_non_namespace_value (DECL_NAME (decl)); |
| if (!loc_value) |
| { |
| ns_value |
| = find_namespace_value (current_namespace, DECL_NAME (decl)); |
| loc_value = ns_value; |
| } |
| if (loc_value == error_mark_node |
| /* An ambiguous lookup. */ |
| || (loc_value && TREE_CODE (loc_value) == TREE_LIST)) |
| loc_value = NULL_TREE; |
| |
| for (ovl_iterator iter (loc_value); iter; ++iter) |
| if (!iter.hidden_p () |
| && (TREE_STATIC (*iter) || DECL_EXTERNAL (*iter)) |
| && decls_match (*iter, decl)) |
| { |
| /* The standard only says that the local extern inherits |
| linkage from the previous decl; in particular, default |
| args are not shared. Add the decl into a hash table to |
| make sure only the previous decl in this case is seen |
| by the middle end. */ |
| struct cxx_int_tree_map *h; |
| |
| /* We inherit the outer decl's linkage. But we're a |
| different decl. */ |
| TREE_PUBLIC (decl) = TREE_PUBLIC (*iter); |
| |
| if (cp_function_chain->extern_decl_map == NULL) |
| cp_function_chain->extern_decl_map |
| = hash_table<cxx_int_tree_map_hasher>::create_ggc (20); |
| |
| h = ggc_alloc<cxx_int_tree_map> (); |
| h->uid = DECL_UID (decl); |
| h->to = *iter; |
| cxx_int_tree_map **loc = cp_function_chain->extern_decl_map |
| ->find_slot (h, INSERT); |
| *loc = h; |
| break; |
| } |
| } |
| |
| if (TREE_PUBLIC (decl)) |
| { |
| /* DECL is externally visible. Make sure it matches a matching |
| decl in the namespace scope. We only really need to check |
| this when inserting the decl, not when we find an existing |
| match in the current scope. However, in practice we're |
| going to be inserting a new decl in the majority of cases -- |
| who writes multiple extern decls for the same thing in the |
| same local scope? Doing it here often avoids a duplicate |
| namespace lookup. */ |
| |
| /* Avoid repeating a lookup. */ |
| if (ns_value == decl) |
| ns_value = find_namespace_value (current_namespace, DECL_NAME (decl)); |
| |
| if (ns_value == error_mark_node |
| || (ns_value && TREE_CODE (ns_value) == TREE_LIST)) |
| ns_value = NULL_TREE; |
| |
| for (ovl_iterator iter (ns_value); iter; ++iter) |
| { |
| tree other = *iter; |
| |
| if (!(TREE_PUBLIC (other) || DECL_EXTERNAL (other))) |
| ; /* Not externally visible. */ |
| else if (DECL_EXTERN_C_P (decl) && DECL_EXTERN_C_P (other)) |
| ; /* Both are extern "C", we'll check via that mechanism. */ |
| else if (TREE_CODE (other) != TREE_CODE (decl) |
| || ((VAR_P (decl) || matching_fn_p (other, decl)) |
| && !comptypes (TREE_TYPE (decl), TREE_TYPE (other), |
| COMPARE_REDECLARATION))) |
| { |
| auto_diagnostic_group d; |
| if (permerror (DECL_SOURCE_LOCATION (decl), |
| "local external declaration %q#D", decl)) |
| inform (DECL_SOURCE_LOCATION (other), |
| "does not match previous declaration %q#D", other); |
| break; |
| } |
| } |
| } |
| } |
| |
| /* Record DECL as belonging to the current lexical scope. Check for |
| errors (such as an incompatible declaration for the same name |
| already seen in the same scope). IS_FRIEND is true if DECL is |
| declared as a friend. |
| |
| Returns either DECL or an old decl for the same name. If an old |
| decl is returned, it may have been smashed to agree with what DECL |
| says. */ |
| |
| static tree |
| do_pushdecl (tree decl, bool is_friend) |
| { |
| if (decl == error_mark_node) |
| return error_mark_node; |
| |
| if (!DECL_TEMPLATE_PARM_P (decl) && current_function_decl) |
| set_decl_context_in_fn (current_function_decl, decl); |
| |
| /* The binding level we will be pushing into. During local class |
| pushing, we want to push to the containing scope. */ |
| cp_binding_level *level = current_binding_level; |
| while (level->kind == sk_class |
| || level->kind == sk_cleanup) |
| level = level->level_chain; |
| |
| /* An anonymous namespace has a NULL DECL_NAME, but we still want to |
| insert it. Other NULL-named decls, not so much. */ |
| tree name = DECL_NAME (decl); |
| if (name || TREE_CODE (decl) == NAMESPACE_DECL) |
| { |
| cxx_binding *binding = NULL; /* Local scope binding. */ |
| tree ns = NULL_TREE; /* Searched namespace. */ |
| tree *slot = NULL; /* Binding slot in namespace. */ |
| tree old = NULL_TREE; |
| |
| if (level->kind == sk_namespace) |
| { |
| /* We look in the decl's namespace for an existing |
| declaration, even though we push into the current |
| namespace. */ |
| ns = (DECL_NAMESPACE_SCOPE_P (decl) |
| ? CP_DECL_CONTEXT (decl) : current_namespace); |
| /* Create the binding, if this is current namespace, because |
| that's where we'll be pushing anyway. */ |
| slot = find_namespace_slot (ns, name, ns == current_namespace); |
| if (slot) |
| old = MAYBE_STAT_DECL (*slot); |
| } |
| else |
| { |
| binding = find_local_binding (level, name); |
| if (binding) |
| old = binding->value; |
| } |
| |
| if (current_function_decl && VAR_OR_FUNCTION_DECL_P (decl) |
| && DECL_EXTERNAL (decl)) |
| set_local_extern_decl_linkage (decl, old != NULL_TREE); |
| |
| if (old == error_mark_node) |
| old = NULL_TREE; |
| |
| for (ovl_iterator iter (old); iter; ++iter) |
| if (iter.using_p ()) |
| ; /* Ignore using decls here. */ |
| else if (tree match = duplicate_decls (decl, *iter, is_friend)) |
| { |
| if (match == error_mark_node) |
| ; |
| else if (TREE_CODE (match) == TYPE_DECL) |
| /* The IDENTIFIER will have the type referring to the |
| now-smashed TYPE_DECL, because ...? Reset it. */ |
| SET_IDENTIFIER_TYPE_VALUE (name, TREE_TYPE (match)); |
| else if (iter.hidden_p () && !DECL_HIDDEN_P (match)) |
| { |
| /* Unhiding a previously hidden decl. */ |
| tree head = iter.reveal_node (old); |
| if (head != old) |
| { |
| if (!ns) |
| { |
| update_local_overload (binding, head); |
| binding->value = head; |
| } |
| else if (STAT_HACK_P (*slot)) |
| STAT_DECL (*slot) = head; |
| else |
| *slot = head; |
| } |
| if (DECL_EXTERN_C_P (match)) |
| /* We need to check and register the decl now. */ |
| check_extern_c_conflict (match); |
| } |
| return match; |
| } |
| |
| /* We are pushing a new decl. */ |
| |
| /* Skip a hidden builtin we failed to match already. There can |
| only be one. */ |
| if (old && anticipated_builtin_p (old)) |
| old = OVL_CHAIN (old); |
| |
| check_template_shadow (decl); |
| |
| if (DECL_DECLARES_FUNCTION_P (decl)) |
| { |
| check_default_args (decl); |
| |
| if (is_friend) |
| { |
| if (level->kind != sk_namespace) |
| { |
| /* In a local class, a friend function declaration must |
| find a matching decl in the innermost non-class scope. |
| [class.friend/11] */ |
| error ("friend declaration %qD in local class without " |
| "prior local declaration", decl); |
| /* Don't attempt to push it. */ |
| return error_mark_node; |
| } |
| /* Hide it from ordinary lookup. */ |
| DECL_ANTICIPATED (decl) = DECL_HIDDEN_FRIEND_P (decl) = true; |
| } |
| } |
| |
| if (level->kind != sk_namespace) |
| { |
| check_local_shadow (decl); |
| |
| if (TREE_CODE (decl) == NAMESPACE_DECL) |
| /* A local namespace alias. */ |
| set_identifier_type_value (name, NULL_TREE); |
| |
| if (!binding) |
| binding = create_local_binding (level, name); |
| } |
| else if (!slot) |
| { |
| ns = current_namespace; |
| slot = find_namespace_slot (ns, name, true); |
| /* Update OLD to reflect the namespace we're going to be |
| pushing into. */ |
| old = MAYBE_STAT_DECL (*slot); |
| } |
| |
| old = update_binding (level, binding, slot, old, decl, is_friend); |
| |
| if (old != decl) |
| /* An existing decl matched, use it. */ |
| decl = old; |
| else if (TREE_CODE (decl) == TYPE_DECL) |
| { |
| tree type = TREE_TYPE (decl); |
| |
| if (type != error_mark_node) |
| { |
| if (TYPE_NAME (type) != decl) |
| set_underlying_type (decl); |
| |
| if (!ns) |
| set_identifier_type_value_with_scope (name, decl, level); |
| else |
| SET_IDENTIFIER_TYPE_VALUE (name, global_type_node); |
| } |
| |
| /* If this is a locally defined typedef in a function that |
| is not a template instantation, record it to implement |
| -Wunused-local-typedefs. */ |
| if (!instantiating_current_function_p ()) |
| record_locally_defined_typedef (decl); |
| } |
| else if (VAR_P (decl)) |
| maybe_register_incomplete_var (decl); |
| |
| if ((VAR_P (decl) || TREE_CODE (decl) == FUNCTION_DECL) |
| && DECL_EXTERN_C_P (decl)) |
| check_extern_c_conflict (decl); |
| } |
| else |
| add_decl_to_level (level, decl); |
| |
| return decl; |
| } |
| |
| /* Record a decl-node X as belonging to the current lexical scope. |
| It's a friend if IS_FRIEND is true -- which affects exactly where |
| we push it. */ |
| |
| tree |
| pushdecl (tree x, bool is_friend) |
| { |
| bool subtime = timevar_cond_start (TV_NAME_LOOKUP); |
| tree ret = do_pushdecl (x, is_friend); |
| timevar_cond_stop (TV_NAME_LOOKUP, subtime); |
| return ret; |
| } |
| |
| /* Enter DECL into the symbol table, if that's appropriate. Returns |
| DECL, or a modified version thereof. */ |
| |
| tree |
| maybe_push_decl (tree decl) |
| { |
| tree type = TREE_TYPE (decl); |
| |
| /* Add this decl to the current binding level, but not if it comes |
| from another scope, e.g. a static member variable. TEM may equal |
| DECL or it may be a previous decl of the same name. */ |
| if (decl == error_mark_node |
| || (TREE_CODE (decl) != PARM_DECL |
| && DECL_CONTEXT (decl) != NULL_TREE |
| /* Definitions of namespace members outside their namespace are |
| possible. */ |
| && !DECL_NAMESPACE_SCOPE_P (decl)) |
| || (TREE_CODE (decl) == TEMPLATE_DECL && !namespace_bindings_p ()) |
| || type == unknown_type_node |
| /* The declaration of a template specialization does not affect |
| the functions available for overload resolution, so we do not |
| call pushdecl. */ |
| || (TREE_CODE (decl) == FUNCTION_DECL |
| && DECL_TEMPLATE_SPECIALIZATION (decl))) |
| return decl; |
| else |
| return pushdecl (decl); |
| } |
| |
| /* Bind DECL to ID in the current_binding_level, assumed to be a local |
| binding level. If IS_USING is true, DECL got here through a |
| using-declaration. */ |
| |
| static void |
| push_local_binding (tree id, tree decl, bool is_using) |
| { |
| /* Skip over any local classes. This makes sense if we call |
| push_local_binding with a friend decl of a local class. */ |
| cp_binding_level *b = innermost_nonclass_level (); |
| |
| gcc_assert (b->kind != sk_namespace); |
| if (find_local_binding (b, id)) |
| { |
| /* Supplement the existing binding. */ |
| if (!supplement_binding (IDENTIFIER_BINDING (id), decl)) |
| /* It didn't work. Something else must be bound at this |
| level. Do not add DECL to the list of things to pop |
| later. */ |
| return; |
| } |
| else |
| /* Create a new binding. */ |
| push_binding (id, decl, b); |
| |
| if (TREE_CODE (decl) == OVERLOAD || is_using) |
| /* We must put the OVERLOAD or using into a TREE_LIST since we |
| cannot use the decl's chain itself. */ |
| decl = build_tree_list (NULL_TREE, decl); |
| |
| /* And put DECL on the list of things declared by the current |
| binding level. */ |
| add_decl_to_level (b, decl); |
| } |
| |
| |
| /* true means unconditionally make a BLOCK for the next level pushed. */ |
| |
| static bool keep_next_level_flag; |
| |
| static int binding_depth = 0; |
| |
| static void |
| indent (int depth) |
| { |
| int i; |
| |
| for (i = 0; i < depth * 2; i++) |
| putc (' ', stderr); |
| } |
| |
| /* Return a string describing the kind of SCOPE we have. */ |
| static const char * |
| cp_binding_level_descriptor (cp_binding_level *scope) |
| { |
| /* The order of this table must match the "scope_kind" |
| enumerators. */ |
| static const char* scope_kind_names[] = { |
| "block-scope", |
| "cleanup-scope", |
| "try-scope", |
| "catch-scope", |
| "for-scope", |
| "function-parameter-scope", |
| "class-scope", |
| "namespace-scope", |
| "template-parameter-scope", |
| "template-explicit-spec-scope" |
| }; |
| const scope_kind kind = scope->explicit_spec_p |
| ? sk_template_spec : scope->kind; |
| |