зеркало из https://github.com/microsoft/clang-1.git
Split LookupResult into its own header.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89199 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
1c5c1a09a4
Коммит
7d384dd5ac
|
@ -0,0 +1,392 @@
|
|||
//===--- Lookup.h - Classes for name lookup ---------------------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file defines the LookupResult class, which is integral to
|
||||
// Sema's name-lookup subsystem.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_CLANG_SEMA_LOOKUP_H
|
||||
#define LLVM_CLANG_SEMA_LOOKUP_H
|
||||
|
||||
#include "Sema.h"
|
||||
|
||||
namespace clang {
|
||||
|
||||
/// @brief Represents the results of name lookup.
|
||||
///
|
||||
/// An instance of the LookupResult class captures the results of a
|
||||
/// single name lookup, which can return no result (nothing found),
|
||||
/// a single declaration, a set of overloaded functions, or an
|
||||
/// ambiguity. Use the getKind() method to determine which of these
|
||||
/// results occurred for a given lookup.
|
||||
///
|
||||
/// Any non-ambiguous lookup can be converted into a single
|
||||
/// (possibly NULL) @c NamedDecl* via the getAsSingleDecl() method.
|
||||
/// This permits the common-case usage in C and Objective-C where
|
||||
/// name lookup will always return a single declaration. Use of
|
||||
/// this is largely deprecated; callers should handle the possibility
|
||||
/// of multiple declarations.
|
||||
class LookupResult {
|
||||
public:
|
||||
enum LookupResultKind {
|
||||
/// @brief No entity found met the criteria.
|
||||
NotFound = 0,
|
||||
|
||||
/// @brief Name lookup found a single declaration that met the
|
||||
/// criteria. getAsDecl will return this declaration.
|
||||
Found,
|
||||
|
||||
/// @brief Name lookup found a set of overloaded functions that
|
||||
/// met the criteria. getAsDecl will turn this set of overloaded
|
||||
/// functions into an OverloadedFunctionDecl.
|
||||
FoundOverloaded,
|
||||
|
||||
/// @brief Name lookup found an unresolvable value declaration
|
||||
/// and cannot yet complete. This only happens in C++ dependent
|
||||
/// contexts with dependent using declarations.
|
||||
FoundUnresolvedValue,
|
||||
|
||||
/// @brief Name lookup results in an ambiguity; use
|
||||
/// getAmbiguityKind to figure out what kind of ambiguity
|
||||
/// we have.
|
||||
Ambiguous
|
||||
};
|
||||
|
||||
enum AmbiguityKind {
|
||||
/// Name lookup results in an ambiguity because multiple
|
||||
/// entities that meet the lookup criteria were found in
|
||||
/// subobjects of different types. For example:
|
||||
/// @code
|
||||
/// struct A { void f(int); }
|
||||
/// struct B { void f(double); }
|
||||
/// struct C : A, B { };
|
||||
/// void test(C c) {
|
||||
/// c.f(0); // error: A::f and B::f come from subobjects of different
|
||||
/// // types. overload resolution is not performed.
|
||||
/// }
|
||||
/// @endcode
|
||||
AmbiguousBaseSubobjectTypes,
|
||||
|
||||
/// Name lookup results in an ambiguity because multiple
|
||||
/// nonstatic entities that meet the lookup criteria were found
|
||||
/// in different subobjects of the same type. For example:
|
||||
/// @code
|
||||
/// struct A { int x; };
|
||||
/// struct B : A { };
|
||||
/// struct C : A { };
|
||||
/// struct D : B, C { };
|
||||
/// int test(D d) {
|
||||
/// return d.x; // error: 'x' is found in two A subobjects (of B and C)
|
||||
/// }
|
||||
/// @endcode
|
||||
AmbiguousBaseSubobjects,
|
||||
|
||||
/// Name lookup results in an ambiguity because multiple definitions
|
||||
/// of entity that meet the lookup criteria were found in different
|
||||
/// declaration contexts.
|
||||
/// @code
|
||||
/// namespace A {
|
||||
/// int i;
|
||||
/// namespace B { int i; }
|
||||
/// int test() {
|
||||
/// using namespace B;
|
||||
/// return i; // error 'i' is found in namespace A and A::B
|
||||
/// }
|
||||
/// }
|
||||
/// @endcode
|
||||
AmbiguousReference,
|
||||
|
||||
/// Name lookup results in an ambiguity because an entity with a
|
||||
/// tag name was hidden by an entity with an ordinary name from
|
||||
/// a different context.
|
||||
/// @code
|
||||
/// namespace A { struct Foo {}; }
|
||||
/// namespace B { void Foo(); }
|
||||
/// namespace C {
|
||||
/// using namespace A;
|
||||
/// using namespace B;
|
||||
/// }
|
||||
/// void test() {
|
||||
/// C::Foo(); // error: tag 'A::Foo' is hidden by an object in a
|
||||
/// // different namespace
|
||||
/// }
|
||||
/// @endcode
|
||||
AmbiguousTagHiding
|
||||
};
|
||||
|
||||
/// A little identifier for flagging temporary lookup results.
|
||||
enum TemporaryToken {
|
||||
Temporary
|
||||
};
|
||||
|
||||
typedef llvm::SmallVector<NamedDecl*, 4> DeclsTy;
|
||||
typedef DeclsTy::const_iterator iterator;
|
||||
|
||||
LookupResult(Sema &SemaRef, DeclarationName Name, SourceLocation NameLoc,
|
||||
Sema::LookupNameKind LookupKind,
|
||||
Sema::RedeclarationKind Redecl = Sema::NotForRedeclaration)
|
||||
: ResultKind(NotFound),
|
||||
Paths(0),
|
||||
SemaRef(SemaRef),
|
||||
Name(Name),
|
||||
NameLoc(NameLoc),
|
||||
LookupKind(LookupKind),
|
||||
IDNS(0),
|
||||
Redecl(Redecl != Sema::NotForRedeclaration),
|
||||
HideTags(true),
|
||||
Diagnose(Redecl == Sema::NotForRedeclaration)
|
||||
{}
|
||||
|
||||
/// Creates a temporary lookup result, initializing its core data
|
||||
/// using the information from another result. Diagnostics are always
|
||||
/// disabled.
|
||||
LookupResult(TemporaryToken _, const LookupResult &Other)
|
||||
: ResultKind(NotFound),
|
||||
Paths(0),
|
||||
SemaRef(Other.SemaRef),
|
||||
Name(Other.Name),
|
||||
NameLoc(Other.NameLoc),
|
||||
LookupKind(Other.LookupKind),
|
||||
IDNS(Other.IDNS),
|
||||
Redecl(Other.Redecl),
|
||||
HideTags(Other.HideTags),
|
||||
Diagnose(false)
|
||||
{}
|
||||
|
||||
~LookupResult() {
|
||||
if (Diagnose) diagnose();
|
||||
if (Paths) deletePaths(Paths);
|
||||
}
|
||||
|
||||
/// Gets the name to look up.
|
||||
DeclarationName getLookupName() const {
|
||||
return Name;
|
||||
}
|
||||
|
||||
/// Gets the kind of lookup to perform.
|
||||
Sema::LookupNameKind getLookupKind() const {
|
||||
return LookupKind;
|
||||
}
|
||||
|
||||
/// True if this lookup is just looking for an existing declaration.
|
||||
bool isForRedeclaration() const {
|
||||
return Redecl;
|
||||
}
|
||||
|
||||
/// Sets whether tag declarations should be hidden by non-tag
|
||||
/// declarations during resolution. The default is true.
|
||||
void setHideTags(bool Hide) {
|
||||
HideTags = Hide;
|
||||
}
|
||||
|
||||
/// The identifier namespace of this lookup. This information is
|
||||
/// private to the lookup routines.
|
||||
unsigned getIdentifierNamespace() const {
|
||||
assert(IDNS);
|
||||
return IDNS;
|
||||
}
|
||||
|
||||
void setIdentifierNamespace(unsigned NS) {
|
||||
IDNS = NS;
|
||||
}
|
||||
|
||||
bool isAmbiguous() const {
|
||||
return getResultKind() == Ambiguous;
|
||||
}
|
||||
|
||||
LookupResultKind getResultKind() const {
|
||||
sanity();
|
||||
return ResultKind;
|
||||
}
|
||||
|
||||
AmbiguityKind getAmbiguityKind() const {
|
||||
assert(isAmbiguous());
|
||||
return Ambiguity;
|
||||
}
|
||||
|
||||
iterator begin() const { return Decls.begin(); }
|
||||
iterator end() const { return Decls.end(); }
|
||||
|
||||
/// \brief Return true if no decls were found
|
||||
bool empty() const { return Decls.empty(); }
|
||||
|
||||
/// \brief Return the base paths structure that's associated with
|
||||
/// these results, or null if none is.
|
||||
CXXBasePaths *getBasePaths() const {
|
||||
return Paths;
|
||||
}
|
||||
|
||||
/// \brief Add a declaration to these results.
|
||||
void addDecl(NamedDecl *D) {
|
||||
Decls.push_back(D);
|
||||
ResultKind = Found;
|
||||
}
|
||||
|
||||
/// \brief Add all the declarations from another set of lookup
|
||||
/// results.
|
||||
void addAllDecls(const LookupResult &Other) {
|
||||
Decls.append(Other.begin(), Other.end());
|
||||
ResultKind = Found;
|
||||
}
|
||||
|
||||
/// \brief Hides a set of declarations.
|
||||
template <class NamedDeclSet> void hideDecls(const NamedDeclSet &Set) {
|
||||
unsigned I = 0, N = Decls.size();
|
||||
while (I < N) {
|
||||
if (Set.count(Decls[I]))
|
||||
Decls[I] = Decls[--N];
|
||||
else
|
||||
I++;
|
||||
}
|
||||
Decls.set_size(N);
|
||||
}
|
||||
|
||||
/// \brief Resolves the kind of the lookup, possibly hiding decls.
|
||||
///
|
||||
/// This should be called in any environment where lookup might
|
||||
/// generate multiple lookup results.
|
||||
void resolveKind();
|
||||
|
||||
/// \brief Fetch this as an unambiguous single declaration
|
||||
/// (possibly an overloaded one).
|
||||
///
|
||||
/// This is deprecated; users should be written to handle
|
||||
/// ambiguous and overloaded lookups.
|
||||
NamedDecl *getAsSingleDecl(ASTContext &Context) const;
|
||||
|
||||
/// \brief Fetch the unique decl found by this lookup. Asserts
|
||||
/// that one was found.
|
||||
///
|
||||
/// This is intended for users who have examined the result kind
|
||||
/// and are certain that there is only one result.
|
||||
NamedDecl *getFoundDecl() const {
|
||||
assert(getResultKind() == Found
|
||||
&& "getFoundDecl called on non-unique result");
|
||||
return Decls[0]->getUnderlyingDecl();
|
||||
}
|
||||
|
||||
/// \brief Asks if the result is a single tag decl.
|
||||
bool isSingleTagDecl() const {
|
||||
return getResultKind() == Found && isa<TagDecl>(getFoundDecl());
|
||||
}
|
||||
|
||||
/// \brief Make these results show that the name was found in
|
||||
/// base classes of different types.
|
||||
///
|
||||
/// The given paths object is copied and invalidated.
|
||||
void setAmbiguousBaseSubobjectTypes(CXXBasePaths &P);
|
||||
|
||||
/// \brief Make these results show that the name was found in
|
||||
/// distinct base classes of the same type.
|
||||
///
|
||||
/// The given paths object is copied and invalidated.
|
||||
void setAmbiguousBaseSubobjects(CXXBasePaths &P);
|
||||
|
||||
/// \brief Make these results show that the name was found in
|
||||
/// different contexts and a tag decl was hidden by an ordinary
|
||||
/// decl in a different context.
|
||||
void setAmbiguousQualifiedTagHiding() {
|
||||
setAmbiguous(AmbiguousTagHiding);
|
||||
}
|
||||
|
||||
/// \brief Clears out any current state.
|
||||
void clear() {
|
||||
ResultKind = NotFound;
|
||||
Decls.clear();
|
||||
if (Paths) deletePaths(Paths);
|
||||
Paths = NULL;
|
||||
}
|
||||
|
||||
/// \brief Clears out any current state and re-initializes for a
|
||||
/// different kind of lookup.
|
||||
void clear(Sema::LookupNameKind Kind) {
|
||||
clear();
|
||||
LookupKind = Kind;
|
||||
}
|
||||
|
||||
void print(llvm::raw_ostream &);
|
||||
|
||||
/// Suppress the diagnostics that would normally fire because of this
|
||||
/// lookup. This happens during (e.g.) redeclaration lookups.
|
||||
void suppressDiagnostics() {
|
||||
Diagnose = false;
|
||||
}
|
||||
|
||||
/// Sets a 'context' source range.
|
||||
void setContextRange(SourceRange SR) {
|
||||
NameContextRange = SR;
|
||||
}
|
||||
|
||||
/// Gets the source range of the context of this name; for C++
|
||||
/// qualified lookups, this is the source range of the scope
|
||||
/// specifier.
|
||||
SourceRange getContextRange() const {
|
||||
return NameContextRange;
|
||||
}
|
||||
|
||||
/// Gets the location of the identifier. This isn't always defined:
|
||||
/// sometimes we're doing lookups on synthesized names.
|
||||
SourceLocation getNameLoc() const {
|
||||
return NameLoc;
|
||||
}
|
||||
|
||||
private:
|
||||
void diagnose() {
|
||||
if (isAmbiguous())
|
||||
SemaRef.DiagnoseAmbiguousLookup(*this);
|
||||
}
|
||||
|
||||
void setAmbiguous(AmbiguityKind AK) {
|
||||
ResultKind = Ambiguous;
|
||||
Ambiguity = AK;
|
||||
}
|
||||
|
||||
void addDeclsFromBasePaths(const CXXBasePaths &P);
|
||||
|
||||
// Sanity checks.
|
||||
void sanity() const {
|
||||
assert(ResultKind != NotFound || Decls.size() == 0);
|
||||
assert(ResultKind != Found || Decls.size() == 1);
|
||||
assert(ResultKind == NotFound || ResultKind == Found ||
|
||||
ResultKind == FoundUnresolvedValue ||
|
||||
(ResultKind == Ambiguous && Ambiguity == AmbiguousBaseSubobjects)
|
||||
|| Decls.size() > 1);
|
||||
assert((Paths != NULL) == (ResultKind == Ambiguous &&
|
||||
(Ambiguity == AmbiguousBaseSubobjectTypes ||
|
||||
Ambiguity == AmbiguousBaseSubobjects)));
|
||||
}
|
||||
|
||||
static void deletePaths(CXXBasePaths *);
|
||||
|
||||
// Results.
|
||||
LookupResultKind ResultKind;
|
||||
AmbiguityKind Ambiguity; // ill-defined unless ambiguous
|
||||
DeclsTy Decls;
|
||||
CXXBasePaths *Paths;
|
||||
|
||||
// Parameters.
|
||||
Sema &SemaRef;
|
||||
DeclarationName Name;
|
||||
SourceLocation NameLoc;
|
||||
SourceRange NameContextRange;
|
||||
Sema::LookupNameKind LookupKind;
|
||||
unsigned IDNS; // ill-defined until set by lookup
|
||||
bool Redecl;
|
||||
|
||||
/// \brief True if tag declarations should be hidden if non-tags
|
||||
/// are present
|
||||
bool HideTags;
|
||||
|
||||
bool Diagnose;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
386
lib/Sema/Sema.h
386
lib/Sema/Sema.h
|
@ -93,6 +93,7 @@ namespace clang {
|
|||
class FunctionProtoType;
|
||||
class CXXBasePaths;
|
||||
class CXXTemporary;
|
||||
class LookupResult;
|
||||
|
||||
/// BlockSemaInfo - When a block is being parsed, this contains information
|
||||
/// about the block. It is pointed to from Sema::CurBlock.
|
||||
|
@ -1081,382 +1082,12 @@ public:
|
|||
LookupObjCCategoryImplName
|
||||
};
|
||||
|
||||
/// @brief Represents the results of name lookup.
|
||||
///
|
||||
/// An instance of the LookupResult class captures the results of a
|
||||
/// single name lookup, which can return no result (nothing found),
|
||||
/// a single declaration, a set of overloaded functions, or an
|
||||
/// ambiguity. Use the getKind() method to determine which of these
|
||||
/// results occurred for a given lookup.
|
||||
///
|
||||
/// Any non-ambiguous lookup can be converted into a single
|
||||
/// (possibly NULL) @c NamedDecl* via the getAsSingleDecl() method.
|
||||
/// This permits the common-case usage in C and Objective-C where
|
||||
/// name lookup will always return a single declaration. Use of
|
||||
/// this is largely deprecated; callers should handle the possibility
|
||||
/// of multiple declarations.
|
||||
class LookupResult {
|
||||
public:
|
||||
enum LookupResultKind {
|
||||
/// @brief No entity found met the criteria.
|
||||
NotFound = 0,
|
||||
|
||||
/// @brief Name lookup found a single declaration that met the
|
||||
/// criteria. getAsDecl will return this declaration.
|
||||
Found,
|
||||
|
||||
/// @brief Name lookup found a set of overloaded functions that
|
||||
/// met the criteria. getAsDecl will turn this set of overloaded
|
||||
/// functions into an OverloadedFunctionDecl.
|
||||
FoundOverloaded,
|
||||
|
||||
/// @brief Name lookup found an unresolvable value declaration
|
||||
/// and cannot yet complete. This only happens in C++ dependent
|
||||
/// contexts with dependent using declarations.
|
||||
FoundUnresolvedValue,
|
||||
|
||||
/// @brief Name lookup results in an ambiguity; use
|
||||
/// getAmbiguityKind to figure out what kind of ambiguity
|
||||
/// we have.
|
||||
Ambiguous
|
||||
};
|
||||
|
||||
enum AmbiguityKind {
|
||||
/// Name lookup results in an ambiguity because multiple
|
||||
/// entities that meet the lookup criteria were found in
|
||||
/// subobjects of different types. For example:
|
||||
/// @code
|
||||
/// struct A { void f(int); }
|
||||
/// struct B { void f(double); }
|
||||
/// struct C : A, B { };
|
||||
/// void test(C c) {
|
||||
/// c.f(0); // error: A::f and B::f come from subobjects of different
|
||||
/// // types. overload resolution is not performed.
|
||||
/// }
|
||||
/// @endcode
|
||||
AmbiguousBaseSubobjectTypes,
|
||||
|
||||
/// Name lookup results in an ambiguity because multiple
|
||||
/// nonstatic entities that meet the lookup criteria were found
|
||||
/// in different subobjects of the same type. For example:
|
||||
/// @code
|
||||
/// struct A { int x; };
|
||||
/// struct B : A { };
|
||||
/// struct C : A { };
|
||||
/// struct D : B, C { };
|
||||
/// int test(D d) {
|
||||
/// return d.x; // error: 'x' is found in two A subobjects (of B and C)
|
||||
/// }
|
||||
/// @endcode
|
||||
AmbiguousBaseSubobjects,
|
||||
|
||||
/// Name lookup results in an ambiguity because multiple definitions
|
||||
/// of entity that meet the lookup criteria were found in different
|
||||
/// declaration contexts.
|
||||
/// @code
|
||||
/// namespace A {
|
||||
/// int i;
|
||||
/// namespace B { int i; }
|
||||
/// int test() {
|
||||
/// using namespace B;
|
||||
/// return i; // error 'i' is found in namespace A and A::B
|
||||
/// }
|
||||
/// }
|
||||
/// @endcode
|
||||
AmbiguousReference,
|
||||
|
||||
/// Name lookup results in an ambiguity because an entity with a
|
||||
/// tag name was hidden by an entity with an ordinary name from
|
||||
/// a different context.
|
||||
/// @code
|
||||
/// namespace A { struct Foo {}; }
|
||||
/// namespace B { void Foo(); }
|
||||
/// namespace C {
|
||||
/// using namespace A;
|
||||
/// using namespace B;
|
||||
/// }
|
||||
/// void test() {
|
||||
/// C::Foo(); // error: tag 'A::Foo' is hidden by an object in a
|
||||
/// // different namespace
|
||||
/// }
|
||||
/// @endcode
|
||||
AmbiguousTagHiding
|
||||
};
|
||||
|
||||
enum RedeclarationKind {
|
||||
NotForRedeclaration,
|
||||
ForRedeclaration
|
||||
};
|
||||
|
||||
/// A little identifier for flagging temporary lookup results.
|
||||
enum TemporaryToken {
|
||||
Temporary
|
||||
};
|
||||
|
||||
typedef llvm::SmallVector<NamedDecl*, 4> DeclsTy;
|
||||
typedef DeclsTy::const_iterator iterator;
|
||||
|
||||
LookupResult(Sema &SemaRef, DeclarationName Name, SourceLocation NameLoc,
|
||||
LookupNameKind LookupKind,
|
||||
RedeclarationKind Redecl = NotForRedeclaration)
|
||||
: ResultKind(NotFound),
|
||||
Paths(0),
|
||||
SemaRef(SemaRef),
|
||||
Name(Name),
|
||||
NameLoc(NameLoc),
|
||||
LookupKind(LookupKind),
|
||||
IDNS(0),
|
||||
Redecl(Redecl != NotForRedeclaration),
|
||||
HideTags(true),
|
||||
Diagnose(Redecl == NotForRedeclaration)
|
||||
{}
|
||||
|
||||
/// Creates a temporary lookup result, initializing its core data
|
||||
/// using the information from another result. Diagnostics are always
|
||||
/// disabled.
|
||||
LookupResult(TemporaryToken _, const LookupResult &Other)
|
||||
: ResultKind(NotFound),
|
||||
Paths(0),
|
||||
SemaRef(Other.SemaRef),
|
||||
Name(Other.Name),
|
||||
NameLoc(Other.NameLoc),
|
||||
LookupKind(Other.LookupKind),
|
||||
IDNS(Other.IDNS),
|
||||
Redecl(Other.Redecl),
|
||||
HideTags(Other.HideTags),
|
||||
Diagnose(false)
|
||||
{}
|
||||
|
||||
~LookupResult() {
|
||||
if (Diagnose) diagnose();
|
||||
if (Paths) deletePaths(Paths);
|
||||
}
|
||||
|
||||
/// Gets the name to look up.
|
||||
DeclarationName getLookupName() const {
|
||||
return Name;
|
||||
}
|
||||
|
||||
/// Gets the kind of lookup to perform.
|
||||
LookupNameKind getLookupKind() const {
|
||||
return LookupKind;
|
||||
}
|
||||
|
||||
/// True if this lookup is just looking for an existing declaration.
|
||||
bool isForRedeclaration() const {
|
||||
return Redecl;
|
||||
}
|
||||
|
||||
/// Sets whether tag declarations should be hidden by non-tag
|
||||
/// declarations during resolution. The default is true.
|
||||
void setHideTags(bool Hide) {
|
||||
HideTags = Hide;
|
||||
}
|
||||
|
||||
/// The identifier namespace of this lookup. This information is
|
||||
/// private to the lookup routines.
|
||||
unsigned getIdentifierNamespace() const {
|
||||
assert(IDNS);
|
||||
return IDNS;
|
||||
}
|
||||
|
||||
void setIdentifierNamespace(unsigned NS) {
|
||||
IDNS = NS;
|
||||
}
|
||||
|
||||
bool isAmbiguous() const {
|
||||
return getResultKind() == Ambiguous;
|
||||
}
|
||||
|
||||
LookupResultKind getResultKind() const {
|
||||
sanity();
|
||||
return ResultKind;
|
||||
}
|
||||
|
||||
AmbiguityKind getAmbiguityKind() const {
|
||||
assert(isAmbiguous());
|
||||
return Ambiguity;
|
||||
}
|
||||
|
||||
iterator begin() const { return Decls.begin(); }
|
||||
iterator end() const { return Decls.end(); }
|
||||
|
||||
/// \brief Return true if no decls were found
|
||||
bool empty() const { return Decls.empty(); }
|
||||
|
||||
/// \brief Return the base paths structure that's associated with
|
||||
/// these results, or null if none is.
|
||||
CXXBasePaths *getBasePaths() const {
|
||||
return Paths;
|
||||
}
|
||||
|
||||
/// \brief Add a declaration to these results.
|
||||
void addDecl(NamedDecl *D) {
|
||||
Decls.push_back(D);
|
||||
ResultKind = Found;
|
||||
}
|
||||
|
||||
/// \brief Add all the declarations from another set of lookup
|
||||
/// results.
|
||||
void addAllDecls(const LookupResult &Other) {
|
||||
Decls.append(Other.begin(), Other.end());
|
||||
ResultKind = Found;
|
||||
}
|
||||
|
||||
/// \brief Hides a set of declarations.
|
||||
template <class NamedDeclSet> void hideDecls(const NamedDeclSet &Set) {
|
||||
unsigned I = 0, N = Decls.size();
|
||||
while (I < N) {
|
||||
if (Set.count(Decls[I]))
|
||||
Decls[I] = Decls[--N];
|
||||
else
|
||||
I++;
|
||||
}
|
||||
Decls.set_size(N);
|
||||
}
|
||||
|
||||
/// \brief Resolves the kind of the lookup, possibly hiding decls.
|
||||
///
|
||||
/// This should be called in any environment where lookup might
|
||||
/// generate multiple lookup results.
|
||||
void resolveKind();
|
||||
|
||||
/// \brief Fetch this as an unambiguous single declaration
|
||||
/// (possibly an overloaded one).
|
||||
///
|
||||
/// This is deprecated; users should be written to handle
|
||||
/// ambiguous and overloaded lookups.
|
||||
NamedDecl *getAsSingleDecl(ASTContext &Context) const;
|
||||
|
||||
/// \brief Fetch the unique decl found by this lookup. Asserts
|
||||
/// that one was found.
|
||||
///
|
||||
/// This is intended for users who have examined the result kind
|
||||
/// and are certain that there is only one result.
|
||||
NamedDecl *getFoundDecl() const {
|
||||
assert(getResultKind() == Found
|
||||
&& "getFoundDecl called on non-unique result");
|
||||
return Decls[0]->getUnderlyingDecl();
|
||||
}
|
||||
|
||||
/// \brief Asks if the result is a single tag decl.
|
||||
bool isSingleTagDecl() const {
|
||||
return getResultKind() == Found && isa<TagDecl>(getFoundDecl());
|
||||
}
|
||||
|
||||
/// \brief Make these results show that the name was found in
|
||||
/// base classes of different types.
|
||||
///
|
||||
/// The given paths object is copied and invalidated.
|
||||
void setAmbiguousBaseSubobjectTypes(CXXBasePaths &P);
|
||||
|
||||
/// \brief Make these results show that the name was found in
|
||||
/// distinct base classes of the same type.
|
||||
///
|
||||
/// The given paths object is copied and invalidated.
|
||||
void setAmbiguousBaseSubobjects(CXXBasePaths &P);
|
||||
|
||||
/// \brief Make these results show that the name was found in
|
||||
/// different contexts and a tag decl was hidden by an ordinary
|
||||
/// decl in a different context.
|
||||
void setAmbiguousQualifiedTagHiding() {
|
||||
setAmbiguous(AmbiguousTagHiding);
|
||||
}
|
||||
|
||||
/// \brief Clears out any current state.
|
||||
void clear() {
|
||||
ResultKind = NotFound;
|
||||
Decls.clear();
|
||||
if (Paths) deletePaths(Paths);
|
||||
Paths = NULL;
|
||||
}
|
||||
|
||||
/// \brief Clears out any current state and re-initializes for a
|
||||
/// different kind of lookup.
|
||||
void clear(LookupNameKind Kind) {
|
||||
clear();
|
||||
LookupKind = Kind;
|
||||
}
|
||||
|
||||
void print(llvm::raw_ostream &);
|
||||
|
||||
/// Suppress the diagnostics that would normally fire because of this
|
||||
/// lookup. This happens during (e.g.) redeclaration lookups.
|
||||
void suppressDiagnostics() {
|
||||
Diagnose = false;
|
||||
}
|
||||
|
||||
/// Sets a 'context' source range.
|
||||
void setContextRange(SourceRange SR) {
|
||||
NameContextRange = SR;
|
||||
}
|
||||
|
||||
/// Gets the source range of the context of this name; for C++
|
||||
/// qualified lookups, this is the source range of the scope
|
||||
/// specifier.
|
||||
SourceRange getContextRange() const {
|
||||
return NameContextRange;
|
||||
}
|
||||
|
||||
/// Gets the location of the identifier. This isn't always defined:
|
||||
/// sometimes we're doing lookups on synthesized names.
|
||||
SourceLocation getNameLoc() const {
|
||||
return NameLoc;
|
||||
}
|
||||
|
||||
private:
|
||||
void diagnose() {
|
||||
if (isAmbiguous())
|
||||
SemaRef.DiagnoseAmbiguousLookup(*this);
|
||||
}
|
||||
|
||||
void setAmbiguous(AmbiguityKind AK) {
|
||||
ResultKind = Ambiguous;
|
||||
Ambiguity = AK;
|
||||
}
|
||||
|
||||
void addDeclsFromBasePaths(const CXXBasePaths &P);
|
||||
|
||||
// Sanity checks.
|
||||
void sanity() const {
|
||||
assert(ResultKind != NotFound || Decls.size() == 0);
|
||||
assert(ResultKind != Found || Decls.size() == 1);
|
||||
assert(ResultKind == NotFound || ResultKind == Found ||
|
||||
ResultKind == FoundUnresolvedValue ||
|
||||
(ResultKind == Ambiguous && Ambiguity == AmbiguousBaseSubobjects)
|
||||
|| Decls.size() > 1);
|
||||
assert((Paths != NULL) == (ResultKind == Ambiguous &&
|
||||
(Ambiguity == AmbiguousBaseSubobjectTypes ||
|
||||
Ambiguity == AmbiguousBaseSubobjects)));
|
||||
}
|
||||
|
||||
static void deletePaths(CXXBasePaths *);
|
||||
|
||||
// Results.
|
||||
LookupResultKind ResultKind;
|
||||
AmbiguityKind Ambiguity; // ill-defined unless ambiguous
|
||||
DeclsTy Decls;
|
||||
CXXBasePaths *Paths;
|
||||
|
||||
// Parameters.
|
||||
Sema &SemaRef;
|
||||
DeclarationName Name;
|
||||
SourceLocation NameLoc;
|
||||
SourceRange NameContextRange;
|
||||
LookupNameKind LookupKind;
|
||||
unsigned IDNS; // ill-defined until set by lookup
|
||||
bool Redecl;
|
||||
|
||||
/// \brief True if tag declarations should be hidden if non-tags
|
||||
/// are present
|
||||
bool HideTags;
|
||||
|
||||
bool Diagnose;
|
||||
enum RedeclarationKind {
|
||||
NotForRedeclaration,
|
||||
ForRedeclaration
|
||||
};
|
||||
|
||||
private:
|
||||
typedef llvm::SmallVector<LookupResult, 3> LookupResultsVecTy;
|
||||
|
||||
bool CppLookupName(LookupResult &R, Scope *S);
|
||||
|
||||
public:
|
||||
|
@ -1497,12 +1128,8 @@ public:
|
|||
/// ambiguity and overloaded.
|
||||
NamedDecl *LookupSingleName(Scope *S, DeclarationName Name,
|
||||
LookupNameKind NameKind,
|
||||
LookupResult::RedeclarationKind Redecl
|
||||
= LookupResult::NotForRedeclaration) {
|
||||
LookupResult R(*this, Name, SourceLocation(), NameKind, Redecl);
|
||||
LookupName(R, S);
|
||||
return R.getAsSingleDecl(Context);
|
||||
}
|
||||
RedeclarationKind Redecl
|
||||
= NotForRedeclaration);
|
||||
bool LookupName(LookupResult &R, Scope *S,
|
||||
bool AllowBuiltinCreation = false);
|
||||
bool LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx);
|
||||
|
@ -4063,7 +3690,6 @@ private:
|
|||
void CheckFloatComparison(SourceLocation loc, Expr* lex, Expr* rex);
|
||||
};
|
||||
|
||||
|
||||
//===--------------------------------------------------------------------===//
|
||||
// Typed version of Parser::ExprArg (smart pointer for wrapping Expr pointers).
|
||||
template <typename T>
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "Sema.h"
|
||||
#include "Lookup.h"
|
||||
#include "clang/AST/Expr.h"
|
||||
using namespace clang;
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "Sema.h"
|
||||
#include "Lookup.h"
|
||||
#include "clang/AST/ASTContext.h"
|
||||
#include "clang/AST/DeclTemplate.h"
|
||||
#include "clang/AST/ExprCXX.h"
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "Sema.h"
|
||||
#include "Lookup.h"
|
||||
#include "clang/AST/APValue.h"
|
||||
#include "clang/AST/ASTConsumer.h"
|
||||
#include "clang/AST/ASTContext.h"
|
||||
|
@ -1426,7 +1427,7 @@ bool Sema::InjectAnonymousStructOrUnionMembers(Scope *S, DeclContext *Owner,
|
|||
F != FEnd; ++F) {
|
||||
if ((*F)->getDeclName()) {
|
||||
LookupResult R(*this, (*F)->getDeclName(), SourceLocation(),
|
||||
LookupOrdinaryName, LookupResult::ForRedeclaration);
|
||||
LookupOrdinaryName, ForRedeclaration);
|
||||
LookupQualifiedName(R, Owner);
|
||||
NamedDecl *PrevDecl = R.getAsSingleDecl(Context);
|
||||
if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
|
||||
|
@ -1795,7 +1796,7 @@ Sema::HandleDeclarator(Scope *S, Declarator &D,
|
|||
|
||||
DC = CurContext;
|
||||
LookupResult R(*this, Name, D.getIdentifierLoc(), NameKind,
|
||||
LookupResult::ForRedeclaration);
|
||||
ForRedeclaration);
|
||||
|
||||
LookupName(R, S, NameKind == LookupRedeclarationWithLinkage);
|
||||
PrevDecl = R.getAsSingleDecl(Context);
|
||||
|
@ -1819,7 +1820,7 @@ Sema::HandleDeclarator(Scope *S, Declarator &D,
|
|||
return DeclPtrTy();
|
||||
|
||||
LookupResult Res(*this, Name, D.getIdentifierLoc(), LookupOrdinaryName,
|
||||
LookupResult::ForRedeclaration);
|
||||
ForRedeclaration);
|
||||
LookupQualifiedName(Res, DC);
|
||||
PrevDecl = Res.getAsSingleDecl(Context);
|
||||
|
||||
|
@ -2937,7 +2938,7 @@ Sema::ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC,
|
|||
NewFD->setInvalidDecl();
|
||||
|
||||
LookupResult Prev(*this, Name, D.getIdentifierLoc(), LookupOrdinaryName,
|
||||
LookupResult::ForRedeclaration);
|
||||
ForRedeclaration);
|
||||
LookupQualifiedName(Prev, DC);
|
||||
assert(!Prev.isAmbiguous() &&
|
||||
"Cannot have an ambiguity in previous-declaration lookup");
|
||||
|
@ -4316,8 +4317,7 @@ Sema::DeclPtrTy Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
|
|||
bool isStdBadAlloc = false;
|
||||
bool Invalid = false;
|
||||
|
||||
LookupResult::RedeclarationKind Redecl =
|
||||
(LookupResult::RedeclarationKind) (TUK != TUK_Reference);
|
||||
RedeclarationKind Redecl = (RedeclarationKind) (TUK != TUK_Reference);
|
||||
|
||||
if (Name && SS.isNotEmpty()) {
|
||||
// We have a nested-name tag ('struct foo::bar').
|
||||
|
@ -4631,7 +4631,7 @@ CreateNewDecl:
|
|||
// that is declared in that scope and refers to a type other
|
||||
// than the class or enumeration itself.
|
||||
LookupResult Lookup(*this, Name, NameLoc, LookupOrdinaryName,
|
||||
LookupResult::ForRedeclaration);
|
||||
ForRedeclaration);
|
||||
LookupName(Lookup, S);
|
||||
TypedefDecl *PrevTypedef = 0;
|
||||
if (NamedDecl *Prev = Lookup.getAsSingleDecl(Context))
|
||||
|
@ -4852,7 +4852,7 @@ FieldDecl *Sema::HandleField(Scope *S, RecordDecl *Record,
|
|||
Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_invalid_thread);
|
||||
|
||||
NamedDecl *PrevDecl = LookupSingleName(S, II, LookupMemberName,
|
||||
LookupResult::ForRedeclaration);
|
||||
ForRedeclaration);
|
||||
|
||||
if (PrevDecl && PrevDecl->isTemplateParameter()) {
|
||||
// Maybe we will complain about the shadowed template parameter.
|
||||
|
@ -5238,7 +5238,7 @@ Sema::DeclPtrTy Sema::ActOnIvar(Scope *S,
|
|||
|
||||
if (II) {
|
||||
NamedDecl *PrevDecl = LookupSingleName(S, II, LookupMemberName,
|
||||
LookupResult::ForRedeclaration);
|
||||
ForRedeclaration);
|
||||
if (PrevDecl && isDeclInScope(PrevDecl, EnclosingContext, S)
|
||||
&& !isa<TagDecl>(PrevDecl)) {
|
||||
Diag(Loc, diag::err_duplicate_member) << II;
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "Sema.h"
|
||||
#include "Lookup.h"
|
||||
#include "clang/AST/ASTConsumer.h"
|
||||
#include "clang/AST/ASTContext.h"
|
||||
#include "clang/AST/CXXInheritance.h"
|
||||
|
@ -2639,7 +2640,7 @@ Sema::DeclPtrTy Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
|
|||
|
||||
NamedDecl *PrevDecl
|
||||
= LookupSingleName(DeclRegionScope, II, LookupOrdinaryName,
|
||||
LookupResult::ForRedeclaration);
|
||||
ForRedeclaration);
|
||||
|
||||
if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
|
||||
// This is an extended namespace definition.
|
||||
|
@ -3028,8 +3029,7 @@ Sema::DeclPtrTy Sema::ActOnNamespaceAliasDef(Scope *S,
|
|||
|
||||
// Check if we have a previous declaration with the same name.
|
||||
if (NamedDecl *PrevDecl
|
||||
= LookupSingleName(S, Alias, LookupOrdinaryName,
|
||||
LookupResult::ForRedeclaration)) {
|
||||
= LookupSingleName(S, Alias, LookupOrdinaryName, ForRedeclaration)) {
|
||||
if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
|
||||
// We already have an alias with the same name that points to the same
|
||||
// namespace, so don't create a new one.
|
||||
|
@ -4676,8 +4676,7 @@ Sema::ActOnFriendFunctionDecl(Scope *S,
|
|||
// FIXME: handle dependent contexts
|
||||
if (!DC) return DeclPtrTy();
|
||||
|
||||
LookupResult R(*this, Name, Loc, LookupOrdinaryName,
|
||||
LookupResult::ForRedeclaration);
|
||||
LookupResult R(*this, Name, Loc, LookupOrdinaryName, ForRedeclaration);
|
||||
LookupQualifiedName(R, DC);
|
||||
PrevDecl = R.getAsSingleDecl(Context);
|
||||
|
||||
|
@ -4712,8 +4711,7 @@ Sema::ActOnFriendFunctionDecl(Scope *S,
|
|||
while (DC->isRecord())
|
||||
DC = DC->getParent();
|
||||
|
||||
LookupResult R(*this, Name, Loc, LookupOrdinaryName,
|
||||
LookupResult::ForRedeclaration);
|
||||
LookupResult R(*this, Name, Loc, LookupOrdinaryName, ForRedeclaration);
|
||||
LookupQualifiedName(R, DC);
|
||||
PrevDecl = R.getAsSingleDecl(Context);
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "Sema.h"
|
||||
#include "Lookup.h"
|
||||
#include "clang/AST/ASTContext.h"
|
||||
#include "clang/AST/DeclObjC.h"
|
||||
#include "clang/AST/DeclTemplate.h"
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "Sema.h"
|
||||
#include "Lookup.h"
|
||||
#include "clang/AST/ASTContext.h"
|
||||
#include "clang/AST/CXXInheritance.h"
|
||||
#include "clang/AST/ExprCXX.h"
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
#include "Sema.h"
|
||||
#include "Lookup.h"
|
||||
#include "clang/AST/ASTContext.h"
|
||||
#include "clang/AST/CXXInheritance.h"
|
||||
#include "clang/AST/Decl.h"
|
||||
|
@ -237,11 +238,11 @@ getIdentifierNamespacesFromLookupNameKind(Sema::LookupNameKind NameKind,
|
|||
}
|
||||
|
||||
// Necessary because CXXBasePaths is not complete in Sema.h
|
||||
void Sema::LookupResult::deletePaths(CXXBasePaths *Paths) {
|
||||
void LookupResult::deletePaths(CXXBasePaths *Paths) {
|
||||
delete Paths;
|
||||
}
|
||||
|
||||
void Sema::LookupResult::resolveKind() {
|
||||
void LookupResult::resolveKind() {
|
||||
unsigned N = Decls.size();
|
||||
|
||||
// Fast case: no possible ambiguity.
|
||||
|
@ -337,7 +338,7 @@ void Sema::LookupResult::resolveKind() {
|
|||
/// solution, since it causes the OverloadedFunctionDecl to be
|
||||
/// leaked. FIXME: Eventually, there will be a better way to iterate
|
||||
/// over the set of overloaded functions returned by name lookup.
|
||||
NamedDecl *Sema::LookupResult::getAsSingleDecl(ASTContext &C) const {
|
||||
NamedDecl *LookupResult::getAsSingleDecl(ASTContext &C) const {
|
||||
size_t size = Decls.size();
|
||||
if (size == 0) return 0;
|
||||
if (size == 1) return (*begin())->getUnderlyingDecl();
|
||||
|
@ -362,7 +363,7 @@ NamedDecl *Sema::LookupResult::getAsSingleDecl(ASTContext &C) const {
|
|||
return Ovl;
|
||||
}
|
||||
|
||||
void Sema::LookupResult::addDeclsFromBasePaths(const CXXBasePaths &P) {
|
||||
void LookupResult::addDeclsFromBasePaths(const CXXBasePaths &P) {
|
||||
CXXBasePaths::paths_iterator I, E;
|
||||
DeclContext::lookup_iterator DI, DE;
|
||||
for (I = P.begin(), E = P.end(); I != E; ++I)
|
||||
|
@ -370,7 +371,7 @@ void Sema::LookupResult::addDeclsFromBasePaths(const CXXBasePaths &P) {
|
|||
addDecl(*DI);
|
||||
}
|
||||
|
||||
void Sema::LookupResult::setAmbiguousBaseSubobjects(CXXBasePaths &P) {
|
||||
void LookupResult::setAmbiguousBaseSubobjects(CXXBasePaths &P) {
|
||||
Paths = new CXXBasePaths;
|
||||
Paths->swap(P);
|
||||
addDeclsFromBasePaths(*Paths);
|
||||
|
@ -378,7 +379,7 @@ void Sema::LookupResult::setAmbiguousBaseSubobjects(CXXBasePaths &P) {
|
|||
setAmbiguous(AmbiguousBaseSubobjects);
|
||||
}
|
||||
|
||||
void Sema::LookupResult::setAmbiguousBaseSubobjectTypes(CXXBasePaths &P) {
|
||||
void LookupResult::setAmbiguousBaseSubobjectTypes(CXXBasePaths &P) {
|
||||
Paths = new CXXBasePaths;
|
||||
Paths->swap(P);
|
||||
addDeclsFromBasePaths(*Paths);
|
||||
|
@ -386,7 +387,7 @@ void Sema::LookupResult::setAmbiguousBaseSubobjectTypes(CXXBasePaths &P) {
|
|||
setAmbiguous(AmbiguousBaseSubobjectTypes);
|
||||
}
|
||||
|
||||
void Sema::LookupResult::print(llvm::raw_ostream &Out) {
|
||||
void LookupResult::print(llvm::raw_ostream &Out) {
|
||||
Out << Decls.size() << " result(s)";
|
||||
if (isAmbiguous()) Out << ", ambiguous";
|
||||
if (Paths) Out << ", base paths present";
|
||||
|
@ -399,8 +400,7 @@ void Sema::LookupResult::print(llvm::raw_ostream &Out) {
|
|||
|
||||
// Adds all qualifying matches for a name within a decl context to the
|
||||
// given lookup result. Returns true if any matches were found.
|
||||
static bool LookupDirect(Sema::LookupResult &R,
|
||||
const DeclContext *DC) {
|
||||
static bool LookupDirect(LookupResult &R, const DeclContext *DC) {
|
||||
bool Found = false;
|
||||
|
||||
DeclContext::lookup_const_iterator I, E;
|
||||
|
@ -414,7 +414,7 @@ static bool LookupDirect(Sema::LookupResult &R,
|
|||
|
||||
// Performs C++ unqualified lookup into the given file context.
|
||||
static bool
|
||||
CppNamespaceLookup(Sema::LookupResult &R, ASTContext &Context, DeclContext *NS,
|
||||
CppNamespaceLookup(LookupResult &R, ASTContext &Context, DeclContext *NS,
|
||||
UnqualUsingDirectiveSet &UDirs) {
|
||||
|
||||
assert(NS && NS->isFileContext() && "CppNamespaceLookup() requires namespace!");
|
||||
|
@ -768,7 +768,7 @@ bool Sema::LookupName(LookupResult &R, Scope *S, bool AllowBuiltinCreation) {
|
|||
/// class or enumeration name if and only if the declarations are
|
||||
/// from the same namespace; otherwise (the declarations are from
|
||||
/// different namespaces), the program is ill-formed.
|
||||
static bool LookupQualifiedNameInUsingDirectives(Sema::LookupResult &R,
|
||||
static bool LookupQualifiedNameInUsingDirectives(LookupResult &R,
|
||||
DeclContext *StartDC) {
|
||||
assert(StartDC->isFileContext() && "start context is not a file context");
|
||||
|
||||
|
@ -800,7 +800,7 @@ static bool LookupQualifiedNameInUsingDirectives(Sema::LookupResult &R,
|
|||
bool FoundTag = false;
|
||||
bool FoundNonTag = false;
|
||||
|
||||
Sema::LookupResult LocalR(Sema::LookupResult::Temporary, R);
|
||||
LookupResult LocalR(LookupResult::Temporary, R);
|
||||
|
||||
bool Found = false;
|
||||
while (!Queue.empty()) {
|
||||
|
@ -810,7 +810,7 @@ static bool LookupQualifiedNameInUsingDirectives(Sema::LookupResult &R,
|
|||
// We go through some convolutions here to avoid copying results
|
||||
// between LookupResults.
|
||||
bool UseLocal = !R.empty();
|
||||
Sema::LookupResult &DirectR = UseLocal ? LocalR : R;
|
||||
LookupResult &DirectR = UseLocal ? LocalR : R;
|
||||
bool FoundDirect = LookupDirect(DirectR, ND);
|
||||
|
||||
if (FoundDirect) {
|
||||
|
@ -1601,6 +1601,14 @@ IsAcceptableNonMemberOperatorCandidate(FunctionDecl *Fn,
|
|||
return false;
|
||||
}
|
||||
|
||||
NamedDecl *Sema::LookupSingleName(Scope *S, DeclarationName Name,
|
||||
LookupNameKind NameKind,
|
||||
RedeclarationKind Redecl) {
|
||||
LookupResult R(*this, Name, SourceLocation(), NameKind, Redecl);
|
||||
LookupName(R, S);
|
||||
return R.getAsSingleDecl(Context);
|
||||
}
|
||||
|
||||
/// \brief Find the protocol with the given name, if any.
|
||||
ObjCProtocolDecl *Sema::LookupProtocol(IdentifierInfo *II) {
|
||||
Decl *D = LookupSingleName(TUScope, II, LookupObjCProtocolName);
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "Sema.h"
|
||||
#include "Lookup.h"
|
||||
#include "clang/Basic/Diagnostic.h"
|
||||
#include "clang/Lex/Preprocessor.h"
|
||||
#include "clang/AST/ASTContext.h"
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
//===----------------------------------------------------------------------===/
|
||||
|
||||
#include "Sema.h"
|
||||
#include "Lookup.h"
|
||||
#include "TreeTransform.h"
|
||||
#include "clang/AST/ASTContext.h"
|
||||
#include "clang/AST/Expr.h"
|
||||
|
@ -629,7 +630,7 @@ Sema::CheckClassTemplate(Scope *S, unsigned TagSpec, TagUseKind TUK,
|
|||
// Find any previous declaration with this name.
|
||||
DeclContext *SemanticContext;
|
||||
LookupResult Previous(*this, Name, NameLoc, LookupOrdinaryName,
|
||||
LookupResult::ForRedeclaration);
|
||||
ForRedeclaration);
|
||||
if (SS.isNotEmpty() && !SS.isInvalid()) {
|
||||
if (RequireCompleteDeclContext(SS))
|
||||
return true;
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===/
|
||||
#include "Sema.h"
|
||||
#include "Lookup.h"
|
||||
#include "clang/AST/ASTConsumer.h"
|
||||
#include "clang/AST/ASTContext.h"
|
||||
#include "clang/AST/DeclTemplate.h"
|
||||
|
@ -684,9 +685,9 @@ Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
|
|||
// Look only into the namespace where the friend would be declared to
|
||||
// find a previous declaration. This is the innermost enclosing namespace,
|
||||
// as described in ActOnFriendFunctionDecl.
|
||||
Sema::LookupResult R(SemaRef, Function->getDeclName(), SourceLocation(),
|
||||
Sema::LookupOrdinaryName,
|
||||
Sema::LookupResult::ForRedeclaration);
|
||||
LookupResult R(SemaRef, Function->getDeclName(), SourceLocation(),
|
||||
Sema::LookupOrdinaryName,
|
||||
Sema::ForRedeclaration);
|
||||
SemaRef.LookupQualifiedName(R, DC);
|
||||
|
||||
PrevDecl = R.getAsSingleDecl(SemaRef.Context);
|
||||
|
@ -845,9 +846,9 @@ TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
|
|||
NamedDecl *PrevDecl = 0;
|
||||
|
||||
if (!FunctionTemplate || TemplateParams) {
|
||||
Sema::LookupResult R(SemaRef, Name, SourceLocation(),
|
||||
Sema::LookupOrdinaryName,
|
||||
Sema::LookupResult::ForRedeclaration);
|
||||
LookupResult R(SemaRef, Name, SourceLocation(),
|
||||
Sema::LookupOrdinaryName,
|
||||
Sema::ForRedeclaration);
|
||||
SemaRef.LookupQualifiedName(R, Owner);
|
||||
PrevDecl = R.getAsSingleDecl(SemaRef.Context);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче