2009-01-15 06:20:51 +08:00
|
|
|
|
//===--------------------- SemaLookup.cpp - Name Lookup ------------------===//
|
|
|
|
|
//
|
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
|
//
|
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
//
|
|
|
|
|
// This file implements name lookup for C, C++, Objective-C, and
|
|
|
|
|
// Objective-C++.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
#include "Sema.h"
|
2009-11-18 15:57:50 +08:00
|
|
|
|
#include "Lookup.h"
|
2009-01-15 08:26:24 +08:00
|
|
|
|
#include "clang/AST/ASTContext.h"
|
2009-10-07 01:59:45 +08:00
|
|
|
|
#include "clang/AST/CXXInheritance.h"
|
2009-01-15 06:20:51 +08:00
|
|
|
|
#include "clang/AST/Decl.h"
|
|
|
|
|
#include "clang/AST/DeclCXX.h"
|
|
|
|
|
#include "clang/AST/DeclObjC.h"
|
2009-05-12 03:58:34 +08:00
|
|
|
|
#include "clang/AST/DeclTemplate.h"
|
2009-02-04 08:32:51 +08:00
|
|
|
|
#include "clang/AST/Expr.h"
|
2009-07-08 18:57:20 +08:00
|
|
|
|
#include "clang/AST/ExprCXX.h"
|
2009-01-15 06:20:51 +08:00
|
|
|
|
#include "clang/Parse/DeclSpec.h"
|
2009-06-14 09:54:56 +08:00
|
|
|
|
#include "clang/Basic/Builtins.h"
|
2009-01-15 06:20:51 +08:00
|
|
|
|
#include "clang/Basic/LangOptions.h"
|
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2009-02-04 08:32:51 +08:00
|
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
2009-10-10 13:48:19 +08:00
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2009-12-31 01:04:44 +08:00
|
|
|
|
#include <list>
|
2009-01-16 08:38:09 +08:00
|
|
|
|
#include <set>
|
2009-02-04 03:21:40 +08:00
|
|
|
|
#include <vector>
|
|
|
|
|
#include <iterator>
|
|
|
|
|
#include <utility>
|
|
|
|
|
#include <algorithm>
|
2009-01-15 06:20:51 +08:00
|
|
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
namespace {
|
|
|
|
|
class UnqualUsingEntry {
|
|
|
|
|
const DeclContext *Nominated;
|
|
|
|
|
const DeclContext *CommonAncestor;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
UnqualUsingEntry(const DeclContext *Nominated,
|
|
|
|
|
const DeclContext *CommonAncestor)
|
|
|
|
|
: Nominated(Nominated), CommonAncestor(CommonAncestor) {
|
|
|
|
|
}
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
const DeclContext *getCommonAncestor() const {
|
|
|
|
|
return CommonAncestor;
|
|
|
|
|
}
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
const DeclContext *getNominatedNamespace() const {
|
|
|
|
|
return Nominated;
|
|
|
|
|
}
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
// Sort by the pointer value of the common ancestor.
|
|
|
|
|
struct Comparator {
|
|
|
|
|
bool operator()(const UnqualUsingEntry &L, const UnqualUsingEntry &R) {
|
|
|
|
|
return L.getCommonAncestor() < R.getCommonAncestor();
|
|
|
|
|
}
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
bool operator()(const UnqualUsingEntry &E, const DeclContext *DC) {
|
|
|
|
|
return E.getCommonAncestor() < DC;
|
|
|
|
|
}
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
bool operator()(const DeclContext *DC, const UnqualUsingEntry &E) {
|
|
|
|
|
return DC < E.getCommonAncestor();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// A collection of using directives, as used by C++ unqualified
|
|
|
|
|
/// lookup.
|
|
|
|
|
class UnqualUsingDirectiveSet {
|
|
|
|
|
typedef llvm::SmallVector<UnqualUsingEntry, 8> ListTy;
|
|
|
|
|
|
|
|
|
|
ListTy list;
|
|
|
|
|
llvm::SmallPtrSet<DeclContext*, 8> visited;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
UnqualUsingDirectiveSet() {}
|
|
|
|
|
|
|
|
|
|
void visitScopeChain(Scope *S, Scope *InnermostFileScope) {
|
|
|
|
|
// C++ [namespace.udir]p1:
|
|
|
|
|
// During unqualified name lookup, the names appear as if they
|
|
|
|
|
// were declared in the nearest enclosing namespace which contains
|
|
|
|
|
// both the using-directive and the nominated namespace.
|
|
|
|
|
DeclContext *InnermostFileDC
|
|
|
|
|
= static_cast<DeclContext*>(InnermostFileScope->getEntity());
|
|
|
|
|
assert(InnermostFileDC && InnermostFileDC->isFileContext());
|
|
|
|
|
|
|
|
|
|
for (; S; S = S->getParent()) {
|
|
|
|
|
if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity())) {
|
|
|
|
|
DeclContext *EffectiveDC = (Ctx->isFileContext() ? Ctx : InnermostFileDC);
|
|
|
|
|
visit(Ctx, EffectiveDC);
|
|
|
|
|
} else {
|
|
|
|
|
Scope::udir_iterator I = S->using_directives_begin(),
|
|
|
|
|
End = S->using_directives_end();
|
|
|
|
|
|
|
|
|
|
for (; I != End; ++I)
|
|
|
|
|
visit(I->getAs<UsingDirectiveDecl>(), InnermostFileDC);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
// Visits a context and collect all of its using directives
|
|
|
|
|
// recursively. Treats all using directives as if they were
|
|
|
|
|
// declared in the context.
|
|
|
|
|
//
|
|
|
|
|
// A given context is only every visited once, so it is important
|
|
|
|
|
// that contexts be visited from the inside out in order to get
|
|
|
|
|
// the effective DCs right.
|
|
|
|
|
void visit(DeclContext *DC, DeclContext *EffectiveDC) {
|
|
|
|
|
if (!visited.insert(DC))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
addUsingDirectives(DC, EffectiveDC);
|
|
|
|
|
}
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
// Visits a using directive and collects all of its using
|
|
|
|
|
// directives recursively. Treats all using directives as if they
|
|
|
|
|
// were declared in the effective DC.
|
|
|
|
|
void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) {
|
|
|
|
|
DeclContext *NS = UD->getNominatedNamespace();
|
|
|
|
|
if (!visited.insert(NS))
|
|
|
|
|
return;
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
addUsingDirective(UD, EffectiveDC);
|
|
|
|
|
addUsingDirectives(NS, EffectiveDC);
|
|
|
|
|
}
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
// Adds all the using directives in a context (and those nominated
|
|
|
|
|
// by its using directives, transitively) as if they appeared in
|
|
|
|
|
// the given effective context.
|
|
|
|
|
void addUsingDirectives(DeclContext *DC, DeclContext *EffectiveDC) {
|
|
|
|
|
llvm::SmallVector<DeclContext*,4> queue;
|
|
|
|
|
while (true) {
|
|
|
|
|
DeclContext::udir_iterator I, End;
|
|
|
|
|
for (llvm::tie(I, End) = DC->getUsingDirectives(); I != End; ++I) {
|
|
|
|
|
UsingDirectiveDecl *UD = *I;
|
|
|
|
|
DeclContext *NS = UD->getNominatedNamespace();
|
|
|
|
|
if (visited.insert(NS)) {
|
|
|
|
|
addUsingDirective(UD, EffectiveDC);
|
|
|
|
|
queue.push_back(NS);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (queue.empty())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
DC = queue.back();
|
|
|
|
|
queue.pop_back();
|
2009-02-04 03:21:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-11-10 15:01:13 +08:00
|
|
|
|
|
|
|
|
|
// Add a using directive as if it had been declared in the given
|
|
|
|
|
// context. This helps implement C++ [namespace.udir]p3:
|
|
|
|
|
// The using-directive is transitive: if a scope contains a
|
|
|
|
|
// using-directive that nominates a second namespace that itself
|
|
|
|
|
// contains using-directives, the effect is as if the
|
|
|
|
|
// using-directives from the second namespace also appeared in
|
|
|
|
|
// the first.
|
|
|
|
|
void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) {
|
|
|
|
|
// Find the common ancestor between the effective context and
|
|
|
|
|
// the nominated namespace.
|
|
|
|
|
DeclContext *Common = UD->getNominatedNamespace();
|
|
|
|
|
while (!Common->Encloses(EffectiveDC))
|
|
|
|
|
Common = Common->getParent();
|
2009-11-10 17:20:04 +08:00
|
|
|
|
Common = Common->getPrimaryContext();
|
2009-11-10 15:01:13 +08:00
|
|
|
|
|
|
|
|
|
list.push_back(UnqualUsingEntry(UD->getNominatedNamespace(), Common));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void done() {
|
|
|
|
|
std::sort(list.begin(), list.end(), UnqualUsingEntry::Comparator());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
typedef ListTy::iterator iterator;
|
|
|
|
|
typedef ListTy::const_iterator const_iterator;
|
|
|
|
|
|
|
|
|
|
iterator begin() { return list.begin(); }
|
|
|
|
|
iterator end() { return list.end(); }
|
|
|
|
|
const_iterator begin() const { return list.begin(); }
|
|
|
|
|
const_iterator end() const { return list.end(); }
|
|
|
|
|
|
|
|
|
|
std::pair<const_iterator,const_iterator>
|
|
|
|
|
getNamespacesFor(DeclContext *DC) const {
|
2009-11-10 17:20:04 +08:00
|
|
|
|
return std::equal_range(begin(), end(), DC->getPrimaryContext(),
|
2009-11-10 15:01:13 +08:00
|
|
|
|
UnqualUsingEntry::Comparator());
|
|
|
|
|
}
|
|
|
|
|
};
|
2009-02-04 03:21:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Retrieve the set of identifier namespaces that correspond to a
|
|
|
|
|
// specific kind of name lookup.
|
2009-12-18 18:40:03 +08:00
|
|
|
|
static inline unsigned getIDNS(Sema::LookupNameKind NameKind,
|
|
|
|
|
bool CPlusPlus,
|
|
|
|
|
bool Redeclaration) {
|
2009-02-04 03:21:40 +08:00
|
|
|
|
unsigned IDNS = 0;
|
|
|
|
|
switch (NameKind) {
|
|
|
|
|
case Sema::LookupOrdinaryName:
|
2009-02-25 04:03:32 +08:00
|
|
|
|
case Sema::LookupRedeclarationWithLinkage:
|
2009-02-04 03:21:40 +08:00
|
|
|
|
IDNS = Decl::IDNS_Ordinary;
|
2009-12-18 18:40:03 +08:00
|
|
|
|
if (CPlusPlus) {
|
2010-04-24 02:46:30 +08:00
|
|
|
|
IDNS |= Decl::IDNS_Tag | Decl::IDNS_Member | Decl::IDNS_Namespace;
|
2009-12-18 18:40:03 +08:00
|
|
|
|
if (Redeclaration) IDNS |= Decl::IDNS_TagFriend | Decl::IDNS_OrdinaryFriend;
|
|
|
|
|
}
|
2009-02-04 03:21:40 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2010-04-24 09:30:58 +08:00
|
|
|
|
case Sema::LookupOperatorName:
|
|
|
|
|
// Operator lookup is its own crazy thing; it is not the same
|
|
|
|
|
// as (e.g.) looking up an operator name for redeclaration.
|
|
|
|
|
assert(!Redeclaration && "cannot do redeclaration operator lookup");
|
|
|
|
|
IDNS = Decl::IDNS_NonMemberOperator;
|
|
|
|
|
break;
|
|
|
|
|
|
2009-02-04 03:21:40 +08:00
|
|
|
|
case Sema::LookupTagName:
|
2010-04-24 02:46:30 +08:00
|
|
|
|
if (CPlusPlus) {
|
|
|
|
|
IDNS = Decl::IDNS_Type;
|
|
|
|
|
|
|
|
|
|
// When looking for a redeclaration of a tag name, we add:
|
|
|
|
|
// 1) TagFriend to find undeclared friend decls
|
|
|
|
|
// 2) Namespace because they can't "overload" with tag decls.
|
|
|
|
|
// 3) Tag because it includes class templates, which can't
|
|
|
|
|
// "overload" with tag decls.
|
|
|
|
|
if (Redeclaration)
|
|
|
|
|
IDNS |= Decl::IDNS_Tag | Decl::IDNS_TagFriend | Decl::IDNS_Namespace;
|
|
|
|
|
} else {
|
|
|
|
|
IDNS = Decl::IDNS_Tag;
|
|
|
|
|
}
|
2009-02-04 03:21:40 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case Sema::LookupMemberName:
|
|
|
|
|
IDNS = Decl::IDNS_Member;
|
|
|
|
|
if (CPlusPlus)
|
2009-09-09 23:08:12 +08:00
|
|
|
|
IDNS |= Decl::IDNS_Tag | Decl::IDNS_Ordinary;
|
2009-02-04 03:21:40 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case Sema::LookupNestedNameSpecifierName:
|
2010-04-24 02:46:30 +08:00
|
|
|
|
IDNS = Decl::IDNS_Type | Decl::IDNS_Namespace;
|
|
|
|
|
break;
|
|
|
|
|
|
2009-02-04 03:21:40 +08:00
|
|
|
|
case Sema::LookupNamespaceName:
|
2010-04-24 02:46:30 +08:00
|
|
|
|
IDNS = Decl::IDNS_Namespace;
|
2009-02-04 03:21:40 +08:00
|
|
|
|
break;
|
2009-04-24 07:18:26 +08:00
|
|
|
|
|
2009-12-10 17:41:52 +08:00
|
|
|
|
case Sema::LookupUsingDeclName:
|
|
|
|
|
IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Tag
|
|
|
|
|
| Decl::IDNS_Member | Decl::IDNS_Using;
|
|
|
|
|
break;
|
|
|
|
|
|
2009-04-24 08:11:27 +08:00
|
|
|
|
case Sema::LookupObjCProtocolName:
|
|
|
|
|
IDNS = Decl::IDNS_ObjCProtocol;
|
|
|
|
|
break;
|
2009-02-04 03:21:40 +08:00
|
|
|
|
}
|
|
|
|
|
return IDNS;
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-18 18:40:03 +08:00
|
|
|
|
void LookupResult::configure() {
|
|
|
|
|
IDNS = getIDNS(LookupKind,
|
|
|
|
|
SemaRef.getLangOptions().CPlusPlus,
|
|
|
|
|
isForRedeclaration());
|
2010-03-24 13:07:21 +08:00
|
|
|
|
|
|
|
|
|
// If we're looking for one of the allocation or deallocation
|
|
|
|
|
// operators, make sure that the implicitly-declared new and delete
|
|
|
|
|
// operators can be found.
|
|
|
|
|
if (!isForRedeclaration()) {
|
|
|
|
|
switch (Name.getCXXOverloadedOperator()) {
|
|
|
|
|
case OO_New:
|
|
|
|
|
case OO_Delete:
|
|
|
|
|
case OO_Array_New:
|
|
|
|
|
case OO_Array_Delete:
|
|
|
|
|
SemaRef.DeclareGlobalNewDelete();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-12-18 18:40:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-10-10 05:13:30 +08:00
|
|
|
|
// Necessary because CXXBasePaths is not complete in Sema.h
|
2009-11-18 15:57:50 +08:00
|
|
|
|
void LookupResult::deletePaths(CXXBasePaths *Paths) {
|
2009-10-10 05:13:30 +08:00
|
|
|
|
delete Paths;
|
2009-02-04 03:21:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-11-22 08:44:51 +08:00
|
|
|
|
/// Resolves the result kind of this lookup.
|
2009-11-18 15:57:50 +08:00
|
|
|
|
void LookupResult::resolveKind() {
|
2009-10-10 05:13:30 +08:00
|
|
|
|
unsigned N = Decls.size();
|
2009-12-10 17:41:52 +08:00
|
|
|
|
|
2009-10-10 05:13:30 +08:00
|
|
|
|
// Fast case: no possible ambiguity.
|
2009-11-19 06:49:29 +08:00
|
|
|
|
if (N == 0) {
|
2010-01-16 05:27:01 +08:00
|
|
|
|
assert(ResultKind == NotFound || ResultKind == NotFoundInCurrentInstantiation);
|
2009-11-19 06:49:29 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-22 08:44:51 +08:00
|
|
|
|
// If there's a single decl, we need to examine it to decide what
|
|
|
|
|
// kind of lookup this is.
|
2009-11-18 10:36:19 +08:00
|
|
|
|
if (N == 1) {
|
2010-04-26 05:15:30 +08:00
|
|
|
|
NamedDecl *D = (*Decls.begin())->getUnderlyingDecl();
|
|
|
|
|
if (isa<FunctionTemplateDecl>(D))
|
2009-11-22 08:44:51 +08:00
|
|
|
|
ResultKind = FoundOverloaded;
|
2010-04-26 05:15:30 +08:00
|
|
|
|
else if (isa<UnresolvedUsingValueDecl>(D))
|
2009-11-18 10:36:19 +08:00
|
|
|
|
ResultKind = FoundUnresolvedValue;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-06-26 11:37:05 +08:00
|
|
|
|
|
2009-10-10 13:48:19 +08:00
|
|
|
|
// Don't do any extra resolution if we've already resolved as ambiguous.
|
2009-11-17 10:14:36 +08:00
|
|
|
|
if (ResultKind == Ambiguous) return;
|
2009-10-10 13:48:19 +08:00
|
|
|
|
|
2009-10-10 05:13:30 +08:00
|
|
|
|
llvm::SmallPtrSet<NamedDecl*, 16> Unique;
|
|
|
|
|
|
|
|
|
|
bool Ambiguous = false;
|
|
|
|
|
bool HasTag = false, HasFunction = false, HasNonFunction = false;
|
2009-11-22 08:44:51 +08:00
|
|
|
|
bool HasFunctionTemplate = false, HasUnresolved = false;
|
2009-01-15 08:26:24 +08:00
|
|
|
|
|
2009-10-10 05:13:30 +08:00
|
|
|
|
unsigned UniqueTagIndex = 0;
|
|
|
|
|
|
|
|
|
|
unsigned I = 0;
|
|
|
|
|
while (I < N) {
|
2009-11-17 15:50:12 +08:00
|
|
|
|
NamedDecl *D = Decls[I]->getUnderlyingDecl();
|
|
|
|
|
D = cast<NamedDecl>(D->getCanonicalDecl());
|
2009-10-10 05:13:30 +08:00
|
|
|
|
|
2009-11-17 15:50:12 +08:00
|
|
|
|
if (!Unique.insert(D)) {
|
2009-10-10 05:13:30 +08:00
|
|
|
|
// If it's not unique, pull something off the back (and
|
|
|
|
|
// continue at this index).
|
|
|
|
|
Decls[I] = Decls[--N];
|
|
|
|
|
} else {
|
|
|
|
|
// Otherwise, do some decl type analysis and then continue.
|
2009-11-18 10:36:19 +08:00
|
|
|
|
|
|
|
|
|
if (isa<UnresolvedUsingValueDecl>(D)) {
|
|
|
|
|
HasUnresolved = true;
|
|
|
|
|
} else if (isa<TagDecl>(D)) {
|
2009-10-10 05:13:30 +08:00
|
|
|
|
if (HasTag)
|
|
|
|
|
Ambiguous = true;
|
|
|
|
|
UniqueTagIndex = I;
|
|
|
|
|
HasTag = true;
|
2009-11-22 08:44:51 +08:00
|
|
|
|
} else if (isa<FunctionTemplateDecl>(D)) {
|
|
|
|
|
HasFunction = true;
|
|
|
|
|
HasFunctionTemplate = true;
|
|
|
|
|
} else if (isa<FunctionDecl>(D)) {
|
2009-10-10 05:13:30 +08:00
|
|
|
|
HasFunction = true;
|
|
|
|
|
} else {
|
|
|
|
|
if (HasNonFunction)
|
|
|
|
|
Ambiguous = true;
|
|
|
|
|
HasNonFunction = true;
|
|
|
|
|
}
|
|
|
|
|
I++;
|
2009-01-15 08:26:24 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-04-24 10:57:34 +08:00
|
|
|
|
|
2009-10-10 05:13:30 +08:00
|
|
|
|
// C++ [basic.scope.hiding]p2:
|
|
|
|
|
// A class name or enumeration name 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.
|
|
|
|
|
// But it's still an error if there are distinct tag types found,
|
|
|
|
|
// even if they're not visible. (ref?)
|
2009-12-03 08:58:24 +08:00
|
|
|
|
if (HideTags && HasTag && !Ambiguous &&
|
|
|
|
|
(HasFunction || HasNonFunction || HasUnresolved))
|
2009-10-10 05:13:30 +08:00
|
|
|
|
Decls[UniqueTagIndex] = Decls[--N];
|
|
|
|
|
|
|
|
|
|
Decls.set_size(N);
|
|
|
|
|
|
2009-12-03 08:58:24 +08:00
|
|
|
|
if (HasNonFunction && (HasFunction || HasUnresolved))
|
2009-10-10 05:13:30 +08:00
|
|
|
|
Ambiguous = true;
|
2009-01-15 06:20:51 +08:00
|
|
|
|
|
2009-10-10 05:13:30 +08:00
|
|
|
|
if (Ambiguous)
|
2009-10-10 13:48:19 +08:00
|
|
|
|
setAmbiguous(LookupResult::AmbiguousReference);
|
2009-11-18 10:36:19 +08:00
|
|
|
|
else if (HasUnresolved)
|
|
|
|
|
ResultKind = LookupResult::FoundUnresolvedValue;
|
2009-11-22 08:44:51 +08:00
|
|
|
|
else if (N > 1 || HasFunctionTemplate)
|
2009-11-17 10:14:36 +08:00
|
|
|
|
ResultKind = LookupResult::FoundOverloaded;
|
2009-10-10 05:13:30 +08:00
|
|
|
|
else
|
2009-11-17 10:14:36 +08:00
|
|
|
|
ResultKind = LookupResult::Found;
|
2009-01-15 06:20:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-11-18 15:57:50 +08:00
|
|
|
|
void LookupResult::addDeclsFromBasePaths(const CXXBasePaths &P) {
|
2010-02-10 17:31:12 +08:00
|
|
|
|
CXXBasePaths::const_paths_iterator I, E;
|
2009-10-10 05:13:30 +08:00
|
|
|
|
DeclContext::lookup_iterator DI, DE;
|
|
|
|
|
for (I = P.begin(), E = P.end(); I != E; ++I)
|
|
|
|
|
for (llvm::tie(DI,DE) = I->Decls; DI != DE; ++DI)
|
|
|
|
|
addDecl(*DI);
|
2009-01-15 08:26:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-11-18 15:57:50 +08:00
|
|
|
|
void LookupResult::setAmbiguousBaseSubobjects(CXXBasePaths &P) {
|
2009-10-10 05:13:30 +08:00
|
|
|
|
Paths = new CXXBasePaths;
|
|
|
|
|
Paths->swap(P);
|
|
|
|
|
addDeclsFromBasePaths(*Paths);
|
|
|
|
|
resolveKind();
|
2009-10-10 13:48:19 +08:00
|
|
|
|
setAmbiguous(AmbiguousBaseSubobjects);
|
2009-02-03 05:35:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-11-18 15:57:50 +08:00
|
|
|
|
void LookupResult::setAmbiguousBaseSubobjectTypes(CXXBasePaths &P) {
|
2009-10-10 05:13:30 +08:00
|
|
|
|
Paths = new CXXBasePaths;
|
|
|
|
|
Paths->swap(P);
|
|
|
|
|
addDeclsFromBasePaths(*Paths);
|
|
|
|
|
resolveKind();
|
2009-10-10 13:48:19 +08:00
|
|
|
|
setAmbiguous(AmbiguousBaseSubobjectTypes);
|
2009-02-03 05:35:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-11-18 15:57:50 +08:00
|
|
|
|
void LookupResult::print(llvm::raw_ostream &Out) {
|
2009-10-10 05:13:30 +08:00
|
|
|
|
Out << Decls.size() << " result(s)";
|
|
|
|
|
if (isAmbiguous()) Out << ", ambiguous";
|
|
|
|
|
if (Paths) Out << ", base paths present";
|
|
|
|
|
|
|
|
|
|
for (iterator I = begin(), E = end(); I != E; ++I) {
|
|
|
|
|
Out << "\n";
|
|
|
|
|
(*I)->print(Out, 2);
|
2009-04-02 05:51:26 +08:00
|
|
|
|
}
|
2009-02-03 05:35:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2010-02-12 13:48:04 +08:00
|
|
|
|
/// \brief Lookup a builtin function, when name lookup would otherwise
|
|
|
|
|
/// fail.
|
|
|
|
|
static bool LookupBuiltin(Sema &S, LookupResult &R) {
|
|
|
|
|
Sema::LookupNameKind NameKind = R.getLookupKind();
|
|
|
|
|
|
|
|
|
|
// If we didn't find a use of this identifier, and if the identifier
|
|
|
|
|
// corresponds to a compiler builtin, create the decl object for the builtin
|
|
|
|
|
// now, injecting it into translation unit scope, and return it.
|
|
|
|
|
if (NameKind == Sema::LookupOrdinaryName ||
|
|
|
|
|
NameKind == Sema::LookupRedeclarationWithLinkage) {
|
|
|
|
|
IdentifierInfo *II = R.getLookupName().getAsIdentifierInfo();
|
|
|
|
|
if (II) {
|
|
|
|
|
// If this is a builtin on this (or all) targets, create the decl.
|
|
|
|
|
if (unsigned BuiltinID = II->getBuiltinID()) {
|
|
|
|
|
// In C++, we don't have any predefined library functions like
|
|
|
|
|
// 'malloc'. Instead, we'll just error.
|
|
|
|
|
if (S.getLangOptions().CPlusPlus &&
|
|
|
|
|
S.Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
NamedDecl *D = S.LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID,
|
|
|
|
|
S.TUScope, R.isForRedeclaration(),
|
|
|
|
|
R.getNameLoc());
|
|
|
|
|
if (D)
|
|
|
|
|
R.addDecl(D);
|
|
|
|
|
return (D != NULL);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-03 04:37:36 +08:00
|
|
|
|
/// \brief Determine whether we can declare a special member function within
|
|
|
|
|
/// the class at this point.
|
|
|
|
|
static bool CanDeclareSpecialMemberFunction(ASTContext &Context,
|
|
|
|
|
const CXXRecordDecl *Class) {
|
|
|
|
|
// We need to have a definition for the class.
|
|
|
|
|
if (!Class->getDefinition() || Class->isDependentContext())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// We can't be in the middle of defining the class.
|
|
|
|
|
if (const RecordType *RecordTy
|
|
|
|
|
= Context.getTypeDeclType(Class)->getAs<RecordType>())
|
|
|
|
|
return !RecordTy->isBeingDefined();
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Sema::ForceDeclarationOfImplicitMembers(CXXRecordDecl *Class) {
|
2010-07-03 07:41:54 +08:00
|
|
|
|
if (!CanDeclareSpecialMemberFunction(Context, Class))
|
|
|
|
|
return;
|
2010-07-03 08:47:00 +08:00
|
|
|
|
|
|
|
|
|
// If the default constructor has not yet been declared, do so now.
|
|
|
|
|
if (!Class->hasDeclaredDefaultConstructor())
|
|
|
|
|
DeclareImplicitDefaultConstructor(Class);
|
2010-07-03 07:41:54 +08:00
|
|
|
|
|
|
|
|
|
// If the copy constructor has not yet been declared, do so now.
|
|
|
|
|
if (!Class->hasDeclaredCopyConstructor())
|
|
|
|
|
DeclareImplicitCopyConstructor(Class);
|
|
|
|
|
|
2010-07-03 05:50:04 +08:00
|
|
|
|
// If the copy assignment operator has not yet been declared, do so now.
|
2010-07-03 07:41:54 +08:00
|
|
|
|
if (!Class->hasDeclaredCopyAssignment())
|
2010-07-03 05:50:04 +08:00
|
|
|
|
DeclareImplicitCopyAssignment(Class);
|
|
|
|
|
|
2010-07-03 04:37:36 +08:00
|
|
|
|
// If the destructor has not yet been declared, do so now.
|
2010-07-03 07:41:54 +08:00
|
|
|
|
if (!Class->hasDeclaredDestructor())
|
2010-07-03 04:37:36 +08:00
|
|
|
|
DeclareImplicitDestructor(Class);
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-03 05:50:04 +08:00
|
|
|
|
/// \brief Determine whether this is the name of an implicitly-declared
|
|
|
|
|
/// special member function.
|
|
|
|
|
static bool isImplicitlyDeclaredMemberFunctionName(DeclarationName Name) {
|
|
|
|
|
switch (Name.getNameKind()) {
|
2010-07-03 07:41:54 +08:00
|
|
|
|
case DeclarationName::CXXConstructorName:
|
2010-07-03 05:50:04 +08:00
|
|
|
|
case DeclarationName::CXXDestructorName:
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case DeclarationName::CXXOperatorName:
|
|
|
|
|
return Name.getCXXOverloadedOperator() == OO_Equal;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// \brief If there are any implicit member functions with the given name
|
|
|
|
|
/// that need to be declared in the given declaration context, do so.
|
|
|
|
|
static void DeclareImplicitMemberFunctionsWithName(Sema &S,
|
|
|
|
|
DeclarationName Name,
|
|
|
|
|
const DeclContext *DC) {
|
|
|
|
|
if (!DC)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
switch (Name.getNameKind()) {
|
2010-07-03 07:41:54 +08:00
|
|
|
|
case DeclarationName::CXXConstructorName:
|
|
|
|
|
if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC))
|
2010-07-03 08:47:00 +08:00
|
|
|
|
if (Record->getDefinition() &&
|
|
|
|
|
CanDeclareSpecialMemberFunction(S.Context, Record)) {
|
|
|
|
|
if (!Record->hasDeclaredDefaultConstructor())
|
|
|
|
|
S.DeclareImplicitDefaultConstructor(
|
|
|
|
|
const_cast<CXXRecordDecl *>(Record));
|
|
|
|
|
if (!Record->hasDeclaredCopyConstructor())
|
|
|
|
|
S.DeclareImplicitCopyConstructor(const_cast<CXXRecordDecl *>(Record));
|
|
|
|
|
}
|
2010-07-03 07:41:54 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2010-07-03 05:50:04 +08:00
|
|
|
|
case DeclarationName::CXXDestructorName:
|
|
|
|
|
if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC))
|
|
|
|
|
if (Record->getDefinition() && !Record->hasDeclaredDestructor() &&
|
|
|
|
|
CanDeclareSpecialMemberFunction(S.Context, Record))
|
|
|
|
|
S.DeclareImplicitDestructor(const_cast<CXXRecordDecl *>(Record));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DeclarationName::CXXOperatorName:
|
|
|
|
|
if (Name.getCXXOverloadedOperator() != OO_Equal)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC))
|
|
|
|
|
if (Record->getDefinition() && !Record->hasDeclaredCopyAssignment() &&
|
|
|
|
|
CanDeclareSpecialMemberFunction(S.Context, Record))
|
|
|
|
|
S.DeclareImplicitCopyAssignment(const_cast<CXXRecordDecl *>(Record));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-07-03 04:37:36 +08:00
|
|
|
|
|
2009-10-10 05:13:30 +08:00
|
|
|
|
// Adds all qualifying matches for a name within a decl context to the
|
|
|
|
|
// given lookup result. Returns true if any matches were found.
|
2010-02-12 13:48:04 +08:00
|
|
|
|
static bool LookupDirect(Sema &S, LookupResult &R, const DeclContext *DC) {
|
2009-10-10 05:13:30 +08:00
|
|
|
|
bool Found = false;
|
2009-04-02 05:51:26 +08:00
|
|
|
|
|
2010-07-03 04:37:36 +08:00
|
|
|
|
// Lazily declare C++ special member functions.
|
2010-07-03 05:50:04 +08:00
|
|
|
|
if (S.getLangOptions().CPlusPlus)
|
|
|
|
|
DeclareImplicitMemberFunctionsWithName(S, R.getLookupName(), DC);
|
2010-07-03 04:37:36 +08:00
|
|
|
|
|
|
|
|
|
// Perform lookup into this declaration context.
|
2009-11-10 15:01:13 +08:00
|
|
|
|
DeclContext::lookup_const_iterator I, E;
|
2010-01-12 02:40:55 +08:00
|
|
|
|
for (llvm::tie(I, E) = DC->lookup(R.getLookupName()); I != E; ++I) {
|
2010-01-21 05:53:11 +08:00
|
|
|
|
NamedDecl *D = *I;
|
|
|
|
|
if (R.isAcceptableDecl(D)) {
|
|
|
|
|
R.addDecl(D);
|
2010-01-12 02:40:55 +08:00
|
|
|
|
Found = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-04-02 05:51:26 +08:00
|
|
|
|
|
2010-02-12 13:48:04 +08:00
|
|
|
|
if (!Found && DC->isTranslationUnit() && LookupBuiltin(S, R))
|
|
|
|
|
return true;
|
|
|
|
|
|
2010-01-12 02:40:55 +08:00
|
|
|
|
if (R.getLookupName().getNameKind()
|
2010-01-31 19:44:02 +08:00
|
|
|
|
!= DeclarationName::CXXConversionFunctionName ||
|
|
|
|
|
R.getLookupName().getCXXNameType()->isDependentType() ||
|
|
|
|
|
!isa<CXXRecordDecl>(DC))
|
|
|
|
|
return Found;
|
|
|
|
|
|
|
|
|
|
// C++ [temp.mem]p6:
|
|
|
|
|
// A specialization of a conversion function template is not found by
|
|
|
|
|
// name lookup. Instead, any conversion function templates visible in the
|
|
|
|
|
// context of the use are considered. [...]
|
|
|
|
|
const CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
|
|
|
|
|
if (!Record->isDefinition())
|
|
|
|
|
return Found;
|
|
|
|
|
|
|
|
|
|
const UnresolvedSetImpl *Unresolved = Record->getConversionFunctions();
|
|
|
|
|
for (UnresolvedSetImpl::iterator U = Unresolved->begin(),
|
|
|
|
|
UEnd = Unresolved->end(); U != UEnd; ++U) {
|
|
|
|
|
FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(*U);
|
|
|
|
|
if (!ConvTemplate)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
// When we're performing lookup for the purposes of redeclaration, just
|
|
|
|
|
// add the conversion function template. When we deduce template
|
|
|
|
|
// arguments for specializations, we'll end up unifying the return
|
|
|
|
|
// type of the new declaration with the type of the function template.
|
|
|
|
|
if (R.isForRedeclaration()) {
|
|
|
|
|
R.addDecl(ConvTemplate);
|
|
|
|
|
Found = true;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-12 02:40:55 +08:00
|
|
|
|
// C++ [temp.mem]p6:
|
2010-01-31 19:44:02 +08:00
|
|
|
|
// [...] For each such operator, if argument deduction succeeds
|
|
|
|
|
// (14.9.2.3), the resulting specialization is used as if found by
|
|
|
|
|
// name lookup.
|
|
|
|
|
//
|
|
|
|
|
// When referencing a conversion function for any purpose other than
|
|
|
|
|
// a redeclaration (such that we'll be building an expression with the
|
|
|
|
|
// result), perform template argument deduction and place the
|
|
|
|
|
// specialization into the result set. We do this to avoid forcing all
|
|
|
|
|
// callers to perform special deduction for conversion functions.
|
2010-02-09 07:07:23 +08:00
|
|
|
|
Sema::TemplateDeductionInfo Info(R.getSema().Context, R.getNameLoc());
|
2010-01-31 19:44:02 +08:00
|
|
|
|
FunctionDecl *Specialization = 0;
|
|
|
|
|
|
|
|
|
|
const FunctionProtoType *ConvProto
|
|
|
|
|
= ConvTemplate->getTemplatedDecl()->getType()->getAs<FunctionProtoType>();
|
|
|
|
|
assert(ConvProto && "Nonsensical conversion function template type");
|
|
|
|
|
|
|
|
|
|
// Compute the type of the function that we would expect the conversion
|
|
|
|
|
// function to have, if it were to match the name given.
|
|
|
|
|
// FIXME: Calling convention!
|
2010-03-31 04:24:48 +08:00
|
|
|
|
FunctionType::ExtInfo ConvProtoInfo = ConvProto->getExtInfo();
|
2010-01-31 19:44:02 +08:00
|
|
|
|
QualType ExpectedType
|
|
|
|
|
= R.getSema().Context.getFunctionType(R.getLookupName().getCXXNameType(),
|
|
|
|
|
0, 0, ConvProto->isVariadic(),
|
|
|
|
|
ConvProto->getTypeQuals(),
|
|
|
|
|
false, false, 0, 0,
|
2010-03-31 04:24:48 +08:00
|
|
|
|
ConvProtoInfo.withCallingConv(CC_Default));
|
2010-01-31 19:44:02 +08:00
|
|
|
|
|
|
|
|
|
// Perform template argument deduction against the type that we would
|
|
|
|
|
// expect the function to have.
|
|
|
|
|
if (R.getSema().DeduceTemplateArguments(ConvTemplate, 0, ExpectedType,
|
|
|
|
|
Specialization, Info)
|
|
|
|
|
== Sema::TDK_Success) {
|
|
|
|
|
R.addDecl(Specialization);
|
|
|
|
|
Found = true;
|
2010-01-12 02:40:55 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2010-01-31 19:44:02 +08:00
|
|
|
|
|
2009-10-10 05:13:30 +08:00
|
|
|
|
return Found;
|
2009-02-03 05:35:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
// Performs C++ unqualified lookup into the given file context.
|
2009-10-10 05:13:30 +08:00
|
|
|
|
static bool
|
2010-02-12 13:48:04 +08:00
|
|
|
|
CppNamespaceLookup(Sema &S, LookupResult &R, ASTContext &Context,
|
|
|
|
|
DeclContext *NS, UnqualUsingDirectiveSet &UDirs) {
|
2009-02-06 03:25:20 +08:00
|
|
|
|
|
|
|
|
|
assert(NS && NS->isFileContext() && "CppNamespaceLookup() requires namespace!");
|
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
// Perform direct name lookup into the LookupCtx.
|
2010-02-12 13:48:04 +08:00
|
|
|
|
bool Found = LookupDirect(S, R, NS);
|
2009-02-06 03:25:20 +08:00
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
// Perform direct name lookup into the namespaces nominated by the
|
|
|
|
|
// using directives whose common ancestor is this namespace.
|
|
|
|
|
UnqualUsingDirectiveSet::const_iterator UI, UEnd;
|
|
|
|
|
llvm::tie(UI, UEnd) = UDirs.getNamespacesFor(NS);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
for (; UI != UEnd; ++UI)
|
2010-02-12 13:48:04 +08:00
|
|
|
|
if (LookupDirect(S, R, UI->getNominatedNamespace()))
|
2009-11-10 15:01:13 +08:00
|
|
|
|
Found = true;
|
2009-10-10 05:13:30 +08:00
|
|
|
|
|
|
|
|
|
R.resolveKind();
|
|
|
|
|
|
|
|
|
|
return Found;
|
2009-02-06 03:25:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool isNamespaceOrTranslationUnitScope(Scope *S) {
|
2009-02-04 03:21:40 +08:00
|
|
|
|
if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
|
2009-02-06 03:25:20 +08:00
|
|
|
|
return Ctx->isFileContext();
|
|
|
|
|
return false;
|
2009-02-04 03:21:40 +08:00
|
|
|
|
}
|
Eliminated LookupCriteria, whose creation was causing a bottleneck for
LookupName et al. Instead, use an enum and a bool to describe its
contents.
Optimized the C/Objective-C path through LookupName, eliminating any
unnecessarily C++isms. Simplify IdentifierResolver::iterator, removing
some code and arguments that are no longer used.
Eliminated LookupDeclInScope/LookupDeclInContext, moving all callers
over to LookupName, LookupQualifiedName, or LookupParsedName, as
appropriate.
All together, I'm seeing a 0.2% speedup on Cocoa.h with PTH and
-disable-free. Plus, we're down to three name-lookup routines.
llvm-svn: 63354
2009-01-30 09:04:22 +08:00
|
|
|
|
|
2010-03-15 22:33:29 +08:00
|
|
|
|
// Find the next outer declaration context from this scope. This
|
|
|
|
|
// routine actually returns the semantic outer context, which may
|
|
|
|
|
// differ from the lexical context (encoded directly in the Scope
|
|
|
|
|
// stack) when we are parsing a member of a class template. In this
|
|
|
|
|
// case, the second element of the pair will be true, to indicate that
|
|
|
|
|
// name lookup should continue searching in this semantic context when
|
|
|
|
|
// it leaves the current template parameter scope.
|
|
|
|
|
static std::pair<DeclContext *, bool> findOuterContext(Scope *S) {
|
|
|
|
|
DeclContext *DC = static_cast<DeclContext *>(S->getEntity());
|
|
|
|
|
DeclContext *Lexical = 0;
|
|
|
|
|
for (Scope *OuterS = S->getParent(); OuterS;
|
|
|
|
|
OuterS = OuterS->getParent()) {
|
|
|
|
|
if (OuterS->getEntity()) {
|
2010-03-15 23:26:48 +08:00
|
|
|
|
Lexical = static_cast<DeclContext *>(OuterS->getEntity());
|
2010-03-15 22:33:29 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// C++ [temp.local]p8:
|
|
|
|
|
// In the definition of a member of a class template that appears
|
|
|
|
|
// outside of the namespace containing the class template
|
|
|
|
|
// definition, the name of a template-parameter hides the name of
|
|
|
|
|
// a member of this namespace.
|
|
|
|
|
//
|
|
|
|
|
// Example:
|
|
|
|
|
//
|
|
|
|
|
// namespace N {
|
|
|
|
|
// class C { };
|
|
|
|
|
//
|
|
|
|
|
// template<class T> class B {
|
|
|
|
|
// void f(T);
|
|
|
|
|
// };
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// template<class C> void N::B<C>::f(C) {
|
|
|
|
|
// C b; // C is the template parameter, not N::C
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// In this example, the lexical context we return is the
|
|
|
|
|
// TranslationUnit, while the semantic context is the namespace N.
|
|
|
|
|
if (!Lexical || !DC || !S->getParent() ||
|
|
|
|
|
!S->getParent()->isTemplateParamScope())
|
|
|
|
|
return std::make_pair(Lexical, false);
|
|
|
|
|
|
|
|
|
|
// Find the outermost template parameter scope.
|
|
|
|
|
// For the example, this is the scope for the template parameters of
|
|
|
|
|
// template<class C>.
|
|
|
|
|
Scope *OutermostTemplateScope = S->getParent();
|
|
|
|
|
while (OutermostTemplateScope->getParent() &&
|
|
|
|
|
OutermostTemplateScope->getParent()->isTemplateParamScope())
|
|
|
|
|
OutermostTemplateScope = OutermostTemplateScope->getParent();
|
2009-09-11 00:57:35 +08:00
|
|
|
|
|
2010-03-15 22:33:29 +08:00
|
|
|
|
// Find the namespace context in which the original scope occurs. In
|
|
|
|
|
// the example, this is namespace N.
|
|
|
|
|
DeclContext *Semantic = DC;
|
|
|
|
|
while (!Semantic->isFileContext())
|
|
|
|
|
Semantic = Semantic->getParent();
|
|
|
|
|
|
|
|
|
|
// Find the declaration context just outside of the template
|
|
|
|
|
// parameter scope. This is the context in which the template is
|
|
|
|
|
// being lexically declaration (a namespace context). In the
|
|
|
|
|
// example, this is the global scope.
|
|
|
|
|
if (Lexical->isFileContext() && !Lexical->Equals(Semantic) &&
|
|
|
|
|
Lexical->Encloses(Semantic))
|
|
|
|
|
return std::make_pair(Semantic, true);
|
|
|
|
|
|
|
|
|
|
return std::make_pair(Lexical, false);
|
2009-09-11 00:57:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-11-17 10:14:36 +08:00
|
|
|
|
bool Sema::CppLookupName(LookupResult &R, Scope *S) {
|
2009-12-18 18:40:03 +08:00
|
|
|
|
assert(getLangOptions().CPlusPlus && "Can perform only C++ lookup");
|
2009-11-17 10:14:36 +08:00
|
|
|
|
|
|
|
|
|
DeclarationName Name = R.getLookupName();
|
|
|
|
|
|
2010-07-03 05:50:04 +08:00
|
|
|
|
// If this is the name of an implicitly-declared special member function,
|
|
|
|
|
// go through the scope stack to implicitly declare
|
|
|
|
|
if (isImplicitlyDeclaredMemberFunctionName(Name)) {
|
|
|
|
|
for (Scope *PreS = S; PreS; PreS = PreS->getParent())
|
|
|
|
|
if (DeclContext *DC = static_cast<DeclContext *>(PreS->getEntity()))
|
|
|
|
|
DeclareImplicitMemberFunctionsWithName(*this, Name, DC);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Implicitly declare member functions with the name we're looking for, if in
|
|
|
|
|
// fact we are in a scope where it matters.
|
|
|
|
|
|
2009-02-04 03:21:40 +08:00
|
|
|
|
Scope *Initial = S;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
IdentifierResolver::iterator
|
2009-02-04 03:21:40 +08:00
|
|
|
|
I = IdResolver.begin(Name),
|
|
|
|
|
IEnd = IdResolver.end();
|
|
|
|
|
|
|
|
|
|
// First we lookup local scope.
|
2009-02-05 03:02:06 +08:00
|
|
|
|
// We don't consider using-directives, as per 7.3.4.p1 [namespace.udir]
|
2009-02-04 03:21:40 +08:00
|
|
|
|
// ...During unqualified name lookup (3.4.1), the names appear as if
|
|
|
|
|
// they were declared in the nearest enclosing namespace which contains
|
|
|
|
|
// both the using-directive and the nominated namespace.
|
2009-08-06 03:21:58 +08:00
|
|
|
|
// [Note: in this context, "contains" means "contains directly or
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// indirectly".
|
2009-02-04 03:21:40 +08:00
|
|
|
|
//
|
|
|
|
|
// For example:
|
|
|
|
|
// namespace A { int i; }
|
|
|
|
|
// void foo() {
|
|
|
|
|
// int i;
|
|
|
|
|
// {
|
|
|
|
|
// using namespace A;
|
|
|
|
|
// ++i; // finds local 'i', A::i appears at global scope
|
|
|
|
|
// }
|
|
|
|
|
// }
|
2009-02-05 01:27:36 +08:00
|
|
|
|
//
|
2010-03-15 22:33:29 +08:00
|
|
|
|
DeclContext *OutsideOfTemplateParamDC = 0;
|
2009-02-06 03:25:20 +08:00
|
|
|
|
for (; S && !isNamespaceOrTranslationUnitScope(S); S = S->getParent()) {
|
2010-05-21 04:58:56 +08:00
|
|
|
|
DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
|
|
|
|
|
|
2009-02-04 03:21:40 +08:00
|
|
|
|
// Check whether the IdResolver has anything in this scope.
|
2009-10-10 05:13:30 +08:00
|
|
|
|
bool Found = false;
|
2009-03-29 03:18:32 +08:00
|
|
|
|
for (; I != IEnd && S->isDeclScope(DeclPtrTy::make(*I)); ++I) {
|
2009-12-18 18:40:03 +08:00
|
|
|
|
if (R.isAcceptableDecl(*I)) {
|
2009-10-10 05:13:30 +08:00
|
|
|
|
Found = true;
|
|
|
|
|
R.addDecl(*I);
|
2009-02-04 03:21:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-10-10 05:13:30 +08:00
|
|
|
|
if (Found) {
|
|
|
|
|
R.resolveKind();
|
2010-05-21 04:58:56 +08:00
|
|
|
|
if (S->isClassScope())
|
|
|
|
|
if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(Ctx))
|
|
|
|
|
R.setNamingClass(Record);
|
2009-10-10 05:13:30 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-15 22:33:29 +08:00
|
|
|
|
if (!Ctx && S->isTemplateParamScope() && OutsideOfTemplateParamDC &&
|
|
|
|
|
S->getParent() && !S->getParent()->isTemplateParamScope()) {
|
|
|
|
|
// We've just searched the last template parameter scope and
|
|
|
|
|
// found nothing, so look into the the contexts between the
|
|
|
|
|
// lexical and semantic declaration contexts returned by
|
|
|
|
|
// findOuterContext(). This implements the name lookup behavior
|
|
|
|
|
// of C++ [temp.local]p8.
|
|
|
|
|
Ctx = OutsideOfTemplateParamDC;
|
|
|
|
|
OutsideOfTemplateParamDC = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Ctx) {
|
|
|
|
|
DeclContext *OuterCtx;
|
|
|
|
|
bool SearchAfterTemplateScope;
|
|
|
|
|
llvm::tie(OuterCtx, SearchAfterTemplateScope) = findOuterContext(S);
|
|
|
|
|
if (SearchAfterTemplateScope)
|
|
|
|
|
OutsideOfTemplateParamDC = OuterCtx;
|
|
|
|
|
|
2010-03-15 23:26:48 +08:00
|
|
|
|
for (; Ctx && !Ctx->Equals(OuterCtx); Ctx = Ctx->getLookupParent()) {
|
2010-02-20 00:08:35 +08:00
|
|
|
|
// We do not directly look into transparent contexts, since
|
|
|
|
|
// those entities will be found in the nearest enclosing
|
|
|
|
|
// non-transparent context.
|
|
|
|
|
if (Ctx->isTransparentContext())
|
2009-09-11 00:57:35 +08:00
|
|
|
|
continue;
|
2010-02-20 00:08:35 +08:00
|
|
|
|
|
|
|
|
|
// We do not look directly into function or method contexts,
|
|
|
|
|
// since all of the local variables and parameters of the
|
|
|
|
|
// function/method are present within the Scope.
|
|
|
|
|
if (Ctx->isFunctionOrMethod()) {
|
|
|
|
|
// If we have an Objective-C instance method, look for ivars
|
|
|
|
|
// in the corresponding interface.
|
|
|
|
|
if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(Ctx)) {
|
|
|
|
|
if (Method->isInstanceMethod() && Name.getAsIdentifierInfo())
|
|
|
|
|
if (ObjCInterfaceDecl *Class = Method->getClassInterface()) {
|
|
|
|
|
ObjCInterfaceDecl *ClassDeclared;
|
|
|
|
|
if (ObjCIvarDecl *Ivar = Class->lookupInstanceVariable(
|
|
|
|
|
Name.getAsIdentifierInfo(),
|
|
|
|
|
ClassDeclared)) {
|
|
|
|
|
if (R.isAcceptableDecl(Ivar)) {
|
|
|
|
|
R.addDecl(Ivar);
|
|
|
|
|
R.resolveKind();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-11 00:57:35 +08:00
|
|
|
|
// Perform qualified name lookup into this context.
|
|
|
|
|
// FIXME: In some cases, we know that every name that could be found by
|
|
|
|
|
// this qualified name lookup will also be on the identifier chain. For
|
|
|
|
|
// example, inside a class without any base classes, we never need to
|
|
|
|
|
// perform qualified lookup because all of the members are on top of the
|
|
|
|
|
// identifier chain.
|
2010-01-15 09:44:47 +08:00
|
|
|
|
if (LookupQualifiedName(R, Ctx, /*InUnqualifiedLookup=*/true))
|
2009-10-10 05:13:30 +08:00
|
|
|
|
return true;
|
2009-03-27 12:21:56 +08:00
|
|
|
|
}
|
2009-02-06 03:25:20 +08:00
|
|
|
|
}
|
2009-02-04 03:21:40 +08:00
|
|
|
|
}
|
Eliminated LookupCriteria, whose creation was causing a bottleneck for
LookupName et al. Instead, use an enum and a bool to describe its
contents.
Optimized the C/Objective-C path through LookupName, eliminating any
unnecessarily C++isms. Simplify IdentifierResolver::iterator, removing
some code and arguments that are no longer used.
Eliminated LookupDeclInScope/LookupDeclInContext, moving all callers
over to LookupName, LookupQualifiedName, or LookupParsedName, as
appropriate.
All together, I'm seeing a 0.2% speedup on Cocoa.h with PTH and
-disable-free. Plus, we're down to three name-lookup routines.
llvm-svn: 63354
2009-01-30 09:04:22 +08:00
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
// Stop if we ran out of scopes.
|
|
|
|
|
// FIXME: This really, really shouldn't be happening.
|
|
|
|
|
if (!S) return false;
|
|
|
|
|
|
2009-02-06 03:25:20 +08:00
|
|
|
|
// Collect UsingDirectiveDecls in all scopes, and recursively all
|
2009-02-04 03:21:40 +08:00
|
|
|
|
// nominated namespaces by those using-directives.
|
2009-11-10 15:01:13 +08:00
|
|
|
|
//
|
2009-05-16 15:39:55 +08:00
|
|
|
|
// FIXME: Cache this sorted list in Scope structure, and DeclContext, so we
|
|
|
|
|
// don't build it for each lookup!
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2009-11-10 15:01:13 +08:00
|
|
|
|
UnqualUsingDirectiveSet UDirs;
|
|
|
|
|
UDirs.visitScopeChain(Initial, S);
|
|
|
|
|
UDirs.done();
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2009-02-06 03:25:20 +08:00
|
|
|
|
// Lookup namespace scope, and global scope.
|
2009-02-04 03:21:40 +08:00
|
|
|
|
// Unqualified name lookup in C++ requires looking into scopes
|
|
|
|
|
// that aren't strictly lexical, and therefore we walk through the
|
|
|
|
|
// context as well as walking through the scopes.
|
2009-02-06 03:25:20 +08:00
|
|
|
|
|
2009-02-04 03:21:40 +08:00
|
|
|
|
for (; S; S = S->getParent()) {
|
|
|
|
|
// Check whether the IdResolver has anything in this scope.
|
2009-10-10 05:13:30 +08:00
|
|
|
|
bool Found = false;
|
2009-03-29 03:18:32 +08:00
|
|
|
|
for (; I != IEnd && S->isDeclScope(DeclPtrTy::make(*I)); ++I) {
|
2009-12-18 18:40:03 +08:00
|
|
|
|
if (R.isAcceptableDecl(*I)) {
|
2009-02-04 03:21:40 +08:00
|
|
|
|
// We found something. Look for anything else in our scope
|
|
|
|
|
// with this same name and in an acceptable identifier
|
|
|
|
|
// namespace, so that we can construct an overload set if we
|
|
|
|
|
// need to.
|
2009-10-10 05:13:30 +08:00
|
|
|
|
Found = true;
|
|
|
|
|
R.addDecl(*I);
|
2009-02-04 03:21:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
Eliminated LookupCriteria, whose creation was causing a bottleneck for
LookupName et al. Instead, use an enum and a bool to describe its
contents.
Optimized the C/Objective-C path through LookupName, eliminating any
unnecessarily C++isms. Simplify IdentifierResolver::iterator, removing
some code and arguments that are no longer used.
Eliminated LookupDeclInScope/LookupDeclInContext, moving all callers
over to LookupName, LookupQualifiedName, or LookupParsedName, as
appropriate.
All together, I'm seeing a 0.2% speedup on Cocoa.h with PTH and
-disable-free. Plus, we're down to three name-lookup routines.
llvm-svn: 63354
2009-01-30 09:04:22 +08:00
|
|
|
|
|
2010-05-14 12:53:42 +08:00
|
|
|
|
if (Found && S->isTemplateParamScope()) {
|
|
|
|
|
R.resolveKind();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2010-02-05 15:07:10 +08:00
|
|
|
|
|
2010-05-14 12:53:42 +08:00
|
|
|
|
DeclContext *Ctx = static_cast<DeclContext *>(S->getEntity());
|
|
|
|
|
if (!Ctx && S->isTemplateParamScope() && OutsideOfTemplateParamDC &&
|
|
|
|
|
S->getParent() && !S->getParent()->isTemplateParamScope()) {
|
|
|
|
|
// We've just searched the last template parameter scope and
|
|
|
|
|
// found nothing, so look into the the contexts between the
|
|
|
|
|
// lexical and semantic declaration contexts returned by
|
|
|
|
|
// findOuterContext(). This implements the name lookup behavior
|
|
|
|
|
// of C++ [temp.local]p8.
|
|
|
|
|
Ctx = OutsideOfTemplateParamDC;
|
|
|
|
|
OutsideOfTemplateParamDC = 0;
|
2010-02-05 15:07:10 +08:00
|
|
|
|
}
|
2010-05-14 12:53:42 +08:00
|
|
|
|
|
|
|
|
|
if (Ctx) {
|
|
|
|
|
DeclContext *OuterCtx;
|
|
|
|
|
bool SearchAfterTemplateScope;
|
|
|
|
|
llvm::tie(OuterCtx, SearchAfterTemplateScope) = findOuterContext(S);
|
|
|
|
|
if (SearchAfterTemplateScope)
|
|
|
|
|
OutsideOfTemplateParamDC = OuterCtx;
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2010-05-14 12:53:42 +08:00
|
|
|
|
for (; Ctx && !Ctx->Equals(OuterCtx); Ctx = Ctx->getLookupParent()) {
|
|
|
|
|
// We do not directly look into transparent contexts, since
|
|
|
|
|
// those entities will be found in the nearest enclosing
|
|
|
|
|
// non-transparent context.
|
|
|
|
|
if (Ctx->isTransparentContext())
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
// If we have a context, and it's not a context stashed in the
|
|
|
|
|
// template parameter scope for an out-of-line definition, also
|
|
|
|
|
// look into that context.
|
|
|
|
|
if (!(Found && S && S->isTemplateParamScope())) {
|
|
|
|
|
assert(Ctx->isFileContext() &&
|
|
|
|
|
"We should have been looking only at file context here already.");
|
|
|
|
|
|
|
|
|
|
// Look into context considering using-directives.
|
|
|
|
|
if (CppNamespaceLookup(*this, R, Context, Ctx, UDirs))
|
|
|
|
|
Found = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Found) {
|
|
|
|
|
R.resolveKind();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (R.isForRedeclaration() && !Ctx->isTransparentContext())
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2009-10-10 05:13:30 +08:00
|
|
|
|
}
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2010-02-05 15:07:10 +08:00
|
|
|
|
if (R.isForRedeclaration() && Ctx && !Ctx->isTransparentContext())
|
2009-10-10 05:13:30 +08:00
|
|
|
|
return false;
|
Eliminated LookupCriteria, whose creation was causing a bottleneck for
LookupName et al. Instead, use an enum and a bool to describe its
contents.
Optimized the C/Objective-C path through LookupName, eliminating any
unnecessarily C++isms. Simplify IdentifierResolver::iterator, removing
some code and arguments that are no longer used.
Eliminated LookupDeclInScope/LookupDeclInContext, moving all callers
over to LookupName, LookupQualifiedName, or LookupParsedName, as
appropriate.
All together, I'm seeing a 0.2% speedup on Cocoa.h with PTH and
-disable-free. Plus, we're down to three name-lookup routines.
llvm-svn: 63354
2009-01-30 09:04:22 +08:00
|
|
|
|
}
|
2009-10-10 05:13:30 +08:00
|
|
|
|
|
|
|
|
|
return !R.empty();
|
Eliminated LookupCriteria, whose creation was causing a bottleneck for
LookupName et al. Instead, use an enum and a bool to describe its
contents.
Optimized the C/Objective-C path through LookupName, eliminating any
unnecessarily C++isms. Simplify IdentifierResolver::iterator, removing
some code and arguments that are no longer used.
Eliminated LookupDeclInScope/LookupDeclInContext, moving all callers
over to LookupName, LookupQualifiedName, or LookupParsedName, as
appropriate.
All together, I'm seeing a 0.2% speedup on Cocoa.h with PTH and
-disable-free. Plus, we're down to three name-lookup routines.
llvm-svn: 63354
2009-01-30 09:04:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-01-15 06:20:51 +08:00
|
|
|
|
/// @brief Perform unqualified name lookup starting from a given
|
|
|
|
|
/// scope.
|
|
|
|
|
///
|
|
|
|
|
/// Unqualified name lookup (C++ [basic.lookup.unqual], C99 6.2.1) is
|
|
|
|
|
/// used to find names within the current scope. For example, 'x' in
|
|
|
|
|
/// @code
|
|
|
|
|
/// int x;
|
|
|
|
|
/// int f() {
|
|
|
|
|
/// return x; // unqualified name look finds 'x' in the global scope
|
|
|
|
|
/// }
|
|
|
|
|
/// @endcode
|
|
|
|
|
///
|
|
|
|
|
/// Different lookup criteria can find different names. For example, a
|
|
|
|
|
/// particular scope can have both a struct and a function of the same
|
|
|
|
|
/// name, and each can be found by certain lookup criteria. For more
|
|
|
|
|
/// information about lookup criteria, see the documentation for the
|
|
|
|
|
/// class LookupCriteria.
|
|
|
|
|
///
|
|
|
|
|
/// @param S The scope from which unqualified name lookup will
|
|
|
|
|
/// begin. If the lookup criteria permits, name lookup may also search
|
|
|
|
|
/// in the parent scopes.
|
|
|
|
|
///
|
|
|
|
|
/// @param Name The name of the entity that we are searching for.
|
|
|
|
|
///
|
Implicitly declare certain C library functions (malloc, strcpy, memmove,
etc.) when we perform name lookup on them. This ensures that we
produce the correct signature for these functions, which has two
practical impacts:
1) When we're supporting the "implicit function declaration" feature
of C99, these functions will be implicitly declared with the right
signature rather than as a function returning "int" with no
prototype. See PR3541 for the reason why this is important (hint:
GCC always predeclares these functions).
2) If users attempt to redeclare one of these library functions with
an incompatible signature, we produce a hard error.
This patch does a little bit of work to give reasonable error
messages. For example, when we hit case #1 we complain that we're
implicitly declaring this function with a specific signature, and then
we give a note that asks the user to include the appropriate header
(e.g., "please include <stdlib.h> or explicitly declare 'malloc'"). In
case #2, we show the type of the implicit builtin that was incorrectly
declared, so the user can see the problem. We could do better here:
for example, when displaying this latter error message we say
something like:
'strcpy' was implicitly declared here with type 'char *(char *, char
const *)'
but we should really print out a fake code line showing the
declaration, like this:
'strcpy' was implicitly declared here as:
char *strcpy(char *, char const *)
This would also be good for printing built-in candidates with C++
operator overloading.
The set of C library functions supported by this patch includes all
functions from the C99 specification's <stdlib.h> and <string.h> that
(a) are predefined by GCC and (b) have signatures that could cause
codegen issues if they are treated as functions with no prototype
returning and int. Future work could extend this set of functions to
other C library functions that we know about.
llvm-svn: 64504
2009-02-14 07:20:09 +08:00
|
|
|
|
/// @param Loc If provided, the source location where we're performing
|
2009-09-09 23:08:12 +08:00
|
|
|
|
/// name lookup. At present, this is only used to produce diagnostics when
|
Implicitly declare certain C library functions (malloc, strcpy, memmove,
etc.) when we perform name lookup on them. This ensures that we
produce the correct signature for these functions, which has two
practical impacts:
1) When we're supporting the "implicit function declaration" feature
of C99, these functions will be implicitly declared with the right
signature rather than as a function returning "int" with no
prototype. See PR3541 for the reason why this is important (hint:
GCC always predeclares these functions).
2) If users attempt to redeclare one of these library functions with
an incompatible signature, we produce a hard error.
This patch does a little bit of work to give reasonable error
messages. For example, when we hit case #1 we complain that we're
implicitly declaring this function with a specific signature, and then
we give a note that asks the user to include the appropriate header
(e.g., "please include <stdlib.h> or explicitly declare 'malloc'"). In
case #2, we show the type of the implicit builtin that was incorrectly
declared, so the user can see the problem. We could do better here:
for example, when displaying this latter error message we say
something like:
'strcpy' was implicitly declared here with type 'char *(char *, char
const *)'
but we should really print out a fake code line showing the
declaration, like this:
'strcpy' was implicitly declared here as:
char *strcpy(char *, char const *)
This would also be good for printing built-in candidates with C++
operator overloading.
The set of C library functions supported by this patch includes all
functions from the C99 specification's <stdlib.h> and <string.h> that
(a) are predefined by GCC and (b) have signatures that could cause
codegen issues if they are treated as functions with no prototype
returning and int. Future work could extend this set of functions to
other C library functions that we know about.
llvm-svn: 64504
2009-02-14 07:20:09 +08:00
|
|
|
|
/// C library functions (like "malloc") are implicitly declared.
|
2009-01-15 06:20:51 +08:00
|
|
|
|
///
|
|
|
|
|
/// @returns The result of name lookup, which includes zero or more
|
|
|
|
|
/// declarations and possibly additional information used to diagnose
|
|
|
|
|
/// ambiguities.
|
2009-11-17 10:14:36 +08:00
|
|
|
|
bool Sema::LookupName(LookupResult &R, Scope *S, bool AllowBuiltinCreation) {
|
|
|
|
|
DeclarationName Name = R.getLookupName();
|
2009-10-10 05:13:30 +08:00
|
|
|
|
if (!Name) return false;
|
2009-01-15 06:20:51 +08:00
|
|
|
|
|
2009-11-17 10:14:36 +08:00
|
|
|
|
LookupNameKind NameKind = R.getLookupKind();
|
|
|
|
|
|
2009-01-15 06:20:51 +08:00
|
|
|
|
if (!getLangOptions().CPlusPlus) {
|
|
|
|
|
// Unqualified name lookup in C/Objective-C is purely lexical, so
|
|
|
|
|
// search in the declarations attached to the name.
|
2009-12-18 18:40:03 +08:00
|
|
|
|
|
|
|
|
|
if (NameKind == Sema::LookupRedeclarationWithLinkage) {
|
2009-02-25 04:03:32 +08:00
|
|
|
|
// Find the nearest non-transparent declaration scope.
|
|
|
|
|
while (!(S->getFlags() & Scope::DeclScope) ||
|
2009-09-09 23:08:12 +08:00
|
|
|
|
(S->getEntity() &&
|
2009-02-25 04:03:32 +08:00
|
|
|
|
static_cast<DeclContext *>(S->getEntity())
|
|
|
|
|
->isTransparentContext()))
|
|
|
|
|
S = S->getParent();
|
Eliminated LookupCriteria, whose creation was causing a bottleneck for
LookupName et al. Instead, use an enum and a bool to describe its
contents.
Optimized the C/Objective-C path through LookupName, eliminating any
unnecessarily C++isms. Simplify IdentifierResolver::iterator, removing
some code and arguments that are no longer used.
Eliminated LookupDeclInScope/LookupDeclInContext, moving all callers
over to LookupName, LookupQualifiedName, or LookupParsedName, as
appropriate.
All together, I'm seeing a 0.2% speedup on Cocoa.h with PTH and
-disable-free. Plus, we're down to three name-lookup routines.
llvm-svn: 63354
2009-01-30 09:04:22 +08:00
|
|
|
|
}
|
2009-01-15 06:20:51 +08:00
|
|
|
|
|
2009-12-18 18:40:03 +08:00
|
|
|
|
unsigned IDNS = R.getIdentifierNamespace();
|
|
|
|
|
|
2009-01-15 06:20:51 +08:00
|
|
|
|
// Scan up the scope chain looking for a decl that matches this
|
|
|
|
|
// identifier that is in the appropriate namespace. This search
|
|
|
|
|
// should not take long, as shadowing of names is uncommon, and
|
|
|
|
|
// deep shadowing is extremely uncommon.
|
2009-02-25 04:03:32 +08:00
|
|
|
|
bool LeftStartingScope = false;
|
|
|
|
|
|
Eliminated LookupCriteria, whose creation was causing a bottleneck for
LookupName et al. Instead, use an enum and a bool to describe its
contents.
Optimized the C/Objective-C path through LookupName, eliminating any
unnecessarily C++isms. Simplify IdentifierResolver::iterator, removing
some code and arguments that are no longer used.
Eliminated LookupDeclInScope/LookupDeclInContext, moving all callers
over to LookupName, LookupQualifiedName, or LookupParsedName, as
appropriate.
All together, I'm seeing a 0.2% speedup on Cocoa.h with PTH and
-disable-free. Plus, we're down to three name-lookup routines.
llvm-svn: 63354
2009-01-30 09:04:22 +08:00
|
|
|
|
for (IdentifierResolver::iterator I = IdResolver.begin(Name),
|
2009-09-09 23:08:12 +08:00
|
|
|
|
IEnd = IdResolver.end();
|
Eliminated LookupCriteria, whose creation was causing a bottleneck for
LookupName et al. Instead, use an enum and a bool to describe its
contents.
Optimized the C/Objective-C path through LookupName, eliminating any
unnecessarily C++isms. Simplify IdentifierResolver::iterator, removing
some code and arguments that are no longer used.
Eliminated LookupDeclInScope/LookupDeclInContext, moving all callers
over to LookupName, LookupQualifiedName, or LookupParsedName, as
appropriate.
All together, I'm seeing a 0.2% speedup on Cocoa.h with PTH and
-disable-free. Plus, we're down to three name-lookup routines.
llvm-svn: 63354
2009-01-30 09:04:22 +08:00
|
|
|
|
I != IEnd; ++I)
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
|
if ((*I)->isInIdentifierNamespace(IDNS)) {
|
2009-02-25 04:03:32 +08:00
|
|
|
|
if (NameKind == LookupRedeclarationWithLinkage) {
|
|
|
|
|
// Determine whether this (or a previous) declaration is
|
|
|
|
|
// out-of-scope.
|
2009-03-29 03:18:32 +08:00
|
|
|
|
if (!LeftStartingScope && !S->isDeclScope(DeclPtrTy::make(*I)))
|
2009-02-25 04:03:32 +08:00
|
|
|
|
LeftStartingScope = true;
|
|
|
|
|
|
|
|
|
|
// If we found something outside of our starting scope that
|
|
|
|
|
// does not have linkage, skip it.
|
|
|
|
|
if (LeftStartingScope && !((*I)->hasLinkage()))
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-10 05:13:30 +08:00
|
|
|
|
R.addDecl(*I);
|
|
|
|
|
|
2009-06-30 10:34:44 +08:00
|
|
|
|
if ((*I)->getAttr<OverloadableAttr>()) {
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
|
// If this declaration has the "overloadable" attribute, we
|
|
|
|
|
// might have a set of overloaded functions.
|
|
|
|
|
|
|
|
|
|
// Figure out what scope the identifier is in.
|
2009-03-29 03:18:32 +08:00
|
|
|
|
while (!(S->getFlags() & Scope::DeclScope) ||
|
|
|
|
|
!S->isDeclScope(DeclPtrTy::make(*I)))
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
|
S = S->getParent();
|
|
|
|
|
|
|
|
|
|
// Find the last declaration in this scope (with the same
|
|
|
|
|
// name, naturally).
|
|
|
|
|
IdentifierResolver::iterator LastI = I;
|
|
|
|
|
for (++LastI; LastI != IEnd; ++LastI) {
|
2009-03-29 03:18:32 +08:00
|
|
|
|
if (!S->isDeclScope(DeclPtrTy::make(*LastI)))
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
|
break;
|
2009-10-10 05:13:30 +08:00
|
|
|
|
R.addDecl(*LastI);
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-10 05:13:30 +08:00
|
|
|
|
R.resolveKind();
|
|
|
|
|
|
|
|
|
|
return true;
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
|
}
|
2009-01-15 06:20:51 +08:00
|
|
|
|
} else {
|
2009-02-04 03:21:40 +08:00
|
|
|
|
// Perform C++ unqualified name lookup.
|
2009-11-17 10:14:36 +08:00
|
|
|
|
if (CppLookupName(R, S))
|
2009-10-10 05:13:30 +08:00
|
|
|
|
return true;
|
2009-01-15 06:20:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If we didn't find a use of this identifier, and if the identifier
|
|
|
|
|
// corresponds to a compiler builtin, create the decl object for the builtin
|
|
|
|
|
// now, injecting it into translation unit scope, and return it.
|
2010-02-12 13:48:04 +08:00
|
|
|
|
if (AllowBuiltinCreation)
|
|
|
|
|
return LookupBuiltin(*this, R);
|
Implicitly declare certain C library functions (malloc, strcpy, memmove,
etc.) when we perform name lookup on them. This ensures that we
produce the correct signature for these functions, which has two
practical impacts:
1) When we're supporting the "implicit function declaration" feature
of C99, these functions will be implicitly declared with the right
signature rather than as a function returning "int" with no
prototype. See PR3541 for the reason why this is important (hint:
GCC always predeclares these functions).
2) If users attempt to redeclare one of these library functions with
an incompatible signature, we produce a hard error.
This patch does a little bit of work to give reasonable error
messages. For example, when we hit case #1 we complain that we're
implicitly declaring this function with a specific signature, and then
we give a note that asks the user to include the appropriate header
(e.g., "please include <stdlib.h> or explicitly declare 'malloc'"). In
case #2, we show the type of the implicit builtin that was incorrectly
declared, so the user can see the problem. We could do better here:
for example, when displaying this latter error message we say
something like:
'strcpy' was implicitly declared here with type 'char *(char *, char
const *)'
but we should really print out a fake code line showing the
declaration, like this:
'strcpy' was implicitly declared here as:
char *strcpy(char *, char const *)
This would also be good for printing built-in candidates with C++
operator overloading.
The set of C library functions supported by this patch includes all
functions from the C99 specification's <stdlib.h> and <string.h> that
(a) are predefined by GCC and (b) have signatures that could cause
codegen issues if they are treated as functions with no prototype
returning and int. Future work could extend this set of functions to
other C library functions that we know about.
llvm-svn: 64504
2009-02-14 07:20:09 +08:00
|
|
|
|
|
2009-10-10 05:13:30 +08:00
|
|
|
|
return false;
|
2009-01-15 06:20:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-10-10 13:48:19 +08:00
|
|
|
|
/// @brief Perform qualified name lookup in the namespaces nominated by
|
|
|
|
|
/// using directives by the given context.
|
|
|
|
|
///
|
|
|
|
|
/// C++98 [namespace.qual]p2:
|
|
|
|
|
/// Given X::m (where X is a user-declared namespace), or given ::m
|
|
|
|
|
/// (where X is the global namespace), let S be the set of all
|
|
|
|
|
/// declarations of m in X and in the transitive closure of all
|
|
|
|
|
/// namespaces nominated by using-directives in X and its used
|
|
|
|
|
/// namespaces, except that using-directives are ignored in any
|
|
|
|
|
/// namespace, including X, directly containing one or more
|
|
|
|
|
/// declarations of m. No namespace is searched more than once in
|
|
|
|
|
/// the lookup of a name. If S is the empty set, the program is
|
|
|
|
|
/// ill-formed. Otherwise, if S has exactly one member, or if the
|
|
|
|
|
/// context of the reference is a using-declaration
|
|
|
|
|
/// (namespace.udecl), S is the required set of declarations of
|
|
|
|
|
/// m. Otherwise if the use of m is not one that allows a unique
|
|
|
|
|
/// declaration to be chosen from S, the program is ill-formed.
|
|
|
|
|
/// C++98 [namespace.qual]p5:
|
|
|
|
|
/// During the lookup of a qualified namespace member name, if the
|
|
|
|
|
/// lookup finds more than one declaration of the member, and if one
|
|
|
|
|
/// declaration introduces a class name or enumeration name and the
|
|
|
|
|
/// other declarations either introduce the same object, the same
|
|
|
|
|
/// enumerator or a set of functions, the non-type name hides the
|
|
|
|
|
/// 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.
|
2010-02-12 13:48:04 +08:00
|
|
|
|
static bool LookupQualifiedNameInUsingDirectives(Sema &S, LookupResult &R,
|
2009-11-17 10:14:36 +08:00
|
|
|
|
DeclContext *StartDC) {
|
2009-10-10 13:48:19 +08:00
|
|
|
|
assert(StartDC->isFileContext() && "start context is not a file context");
|
|
|
|
|
|
|
|
|
|
DeclContext::udir_iterator I = StartDC->using_directives_begin();
|
|
|
|
|
DeclContext::udir_iterator E = StartDC->using_directives_end();
|
|
|
|
|
|
|
|
|
|
if (I == E) return false;
|
|
|
|
|
|
|
|
|
|
// We have at least added all these contexts to the queue.
|
|
|
|
|
llvm::DenseSet<DeclContext*> Visited;
|
|
|
|
|
Visited.insert(StartDC);
|
|
|
|
|
|
|
|
|
|
// We have not yet looked into these namespaces, much less added
|
|
|
|
|
// their "using-children" to the queue.
|
|
|
|
|
llvm::SmallVector<NamespaceDecl*, 8> Queue;
|
|
|
|
|
|
|
|
|
|
// We have already looked into the initial namespace; seed the queue
|
|
|
|
|
// with its using-children.
|
|
|
|
|
for (; I != E; ++I) {
|
2009-11-10 17:25:37 +08:00
|
|
|
|
NamespaceDecl *ND = (*I)->getNominatedNamespace()->getOriginalNamespace();
|
2009-10-10 13:48:19 +08:00
|
|
|
|
if (Visited.insert(ND).second)
|
|
|
|
|
Queue.push_back(ND);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// The easiest way to implement the restriction in [namespace.qual]p5
|
|
|
|
|
// is to check whether any of the individual results found a tag
|
|
|
|
|
// and, if so, to declare an ambiguity if the final result is not
|
|
|
|
|
// a tag.
|
|
|
|
|
bool FoundTag = false;
|
|
|
|
|
bool FoundNonTag = false;
|
|
|
|
|
|
2009-11-18 15:57:50 +08:00
|
|
|
|
LookupResult LocalR(LookupResult::Temporary, R);
|
2009-10-10 13:48:19 +08:00
|
|
|
|
|
|
|
|
|
bool Found = false;
|
|
|
|
|
while (!Queue.empty()) {
|
|
|
|
|
NamespaceDecl *ND = Queue.back();
|
|
|
|
|
Queue.pop_back();
|
|
|
|
|
|
|
|
|
|
// We go through some convolutions here to avoid copying results
|
|
|
|
|
// between LookupResults.
|
|
|
|
|
bool UseLocal = !R.empty();
|
2009-11-18 15:57:50 +08:00
|
|
|
|
LookupResult &DirectR = UseLocal ? LocalR : R;
|
2010-02-12 13:48:04 +08:00
|
|
|
|
bool FoundDirect = LookupDirect(S, DirectR, ND);
|
2009-10-10 13:48:19 +08:00
|
|
|
|
|
|
|
|
|
if (FoundDirect) {
|
|
|
|
|
// First do any local hiding.
|
|
|
|
|
DirectR.resolveKind();
|
|
|
|
|
|
|
|
|
|
// If the local result is a tag, remember that.
|
|
|
|
|
if (DirectR.isSingleTagDecl())
|
|
|
|
|
FoundTag = true;
|
|
|
|
|
else
|
|
|
|
|
FoundNonTag = true;
|
|
|
|
|
|
|
|
|
|
// Append the local results to the total results if necessary.
|
|
|
|
|
if (UseLocal) {
|
|
|
|
|
R.addAllDecls(LocalR);
|
|
|
|
|
LocalR.clear();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If we find names in this namespace, ignore its using directives.
|
|
|
|
|
if (FoundDirect) {
|
|
|
|
|
Found = true;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (llvm::tie(I,E) = ND->getUsingDirectives(); I != E; ++I) {
|
|
|
|
|
NamespaceDecl *Nom = (*I)->getNominatedNamespace();
|
|
|
|
|
if (Visited.insert(Nom).second)
|
|
|
|
|
Queue.push_back(Nom);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Found) {
|
|
|
|
|
if (FoundTag && FoundNonTag)
|
|
|
|
|
R.setAmbiguousQualifiedTagHiding();
|
|
|
|
|
else
|
|
|
|
|
R.resolveKind();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Found;
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-15 09:44:47 +08:00
|
|
|
|
/// \brief Perform qualified name lookup into a given context.
|
2009-01-15 06:20:51 +08:00
|
|
|
|
///
|
|
|
|
|
/// Qualified name lookup (C++ [basic.lookup.qual]) is used to find
|
|
|
|
|
/// names when the context of those names is explicit specified, e.g.,
|
2010-01-15 09:44:47 +08:00
|
|
|
|
/// "std::vector" or "x->member", or as part of unqualified name lookup.
|
2009-01-15 06:20:51 +08:00
|
|
|
|
///
|
|
|
|
|
/// Different lookup criteria can find different names. For example, a
|
|
|
|
|
/// particular scope can have both a struct and a function of the same
|
|
|
|
|
/// name, and each can be found by certain lookup criteria. For more
|
|
|
|
|
/// information about lookup criteria, see the documentation for the
|
|
|
|
|
/// class LookupCriteria.
|
|
|
|
|
///
|
2010-01-15 09:44:47 +08:00
|
|
|
|
/// \param R captures both the lookup criteria and any lookup results found.
|
|
|
|
|
///
|
|
|
|
|
/// \param LookupCtx The context in which qualified name lookup will
|
2009-01-15 06:20:51 +08:00
|
|
|
|
/// search. If the lookup criteria permits, name lookup may also search
|
|
|
|
|
/// in the parent contexts or (for C++ classes) base classes.
|
|
|
|
|
///
|
2010-01-15 09:44:47 +08:00
|
|
|
|
/// \param InUnqualifiedLookup true if this is qualified name lookup that
|
|
|
|
|
/// occurs as part of unqualified name lookup.
|
2009-01-15 06:20:51 +08:00
|
|
|
|
///
|
2010-01-15 09:44:47 +08:00
|
|
|
|
/// \returns true if lookup succeeded, false if it failed.
|
|
|
|
|
bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx,
|
|
|
|
|
bool InUnqualifiedLookup) {
|
2009-01-15 06:20:51 +08:00
|
|
|
|
assert(LookupCtx && "Sema::LookupQualifiedName requires a lookup context");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-11-17 10:14:36 +08:00
|
|
|
|
if (!R.getLookupName())
|
2009-10-10 05:13:30 +08:00
|
|
|
|
return false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-09-03 06:59:36 +08:00
|
|
|
|
// Make sure that the declaration context is complete.
|
|
|
|
|
assert((!isa<TagDecl>(LookupCtx) ||
|
|
|
|
|
LookupCtx->isDependentContext() ||
|
|
|
|
|
cast<TagDecl>(LookupCtx)->isDefinition() ||
|
|
|
|
|
Context.getTypeDeclType(cast<TagDecl>(LookupCtx))->getAs<TagType>()
|
|
|
|
|
->isBeingDefined()) &&
|
|
|
|
|
"Declaration context must already be complete!");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-01-15 06:20:51 +08:00
|
|
|
|
// Perform qualified name lookup into the LookupCtx.
|
2010-02-12 13:48:04 +08:00
|
|
|
|
if (LookupDirect(*this, R, LookupCtx)) {
|
2009-10-10 05:13:30 +08:00
|
|
|
|
R.resolveKind();
|
2010-01-23 08:46:32 +08:00
|
|
|
|
if (isa<CXXRecordDecl>(LookupCtx))
|
|
|
|
|
R.setNamingClass(cast<CXXRecordDecl>(LookupCtx));
|
2009-10-10 05:13:30 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2009-01-15 06:20:51 +08:00
|
|
|
|
|
2009-10-10 13:48:19 +08:00
|
|
|
|
// Don't descend into implied contexts for redeclarations.
|
|
|
|
|
// C++98 [namespace.qual]p6:
|
|
|
|
|
// In a declaration for a namespace member in which the
|
|
|
|
|
// declarator-id is a qualified-id, given that the qualified-id
|
|
|
|
|
// for the namespace member has the form
|
|
|
|
|
// nested-name-specifier unqualified-id
|
|
|
|
|
// the unqualified-id shall name a member of the namespace
|
|
|
|
|
// designated by the nested-name-specifier.
|
|
|
|
|
// See also [class.mfct]p5 and [class.static.data]p2.
|
2009-11-17 10:14:36 +08:00
|
|
|
|
if (R.isForRedeclaration())
|
2009-10-10 13:48:19 +08:00
|
|
|
|
return false;
|
|
|
|
|
|
2009-11-17 10:14:36 +08:00
|
|
|
|
// If this is a namespace, look it up in the implied namespaces.
|
2009-10-10 13:48:19 +08:00
|
|
|
|
if (LookupCtx->isFileContext())
|
2010-02-12 13:48:04 +08:00
|
|
|
|
return LookupQualifiedNameInUsingDirectives(*this, R, LookupCtx);
|
2009-10-10 13:48:19 +08:00
|
|
|
|
|
2009-09-03 06:59:36 +08:00
|
|
|
|
// If this isn't a C++ class, we aren't allowed to look into base
|
2009-09-12 06:57:37 +08:00
|
|
|
|
// classes, we're done.
|
2010-01-15 09:44:47 +08:00
|
|
|
|
CXXRecordDecl *LookupRec = dyn_cast<CXXRecordDecl>(LookupCtx);
|
2010-07-01 08:21:21 +08:00
|
|
|
|
if (!LookupRec || !LookupRec->getDefinition())
|
2009-10-10 05:13:30 +08:00
|
|
|
|
return false;
|
2009-01-15 08:26:24 +08:00
|
|
|
|
|
2010-01-15 09:44:47 +08:00
|
|
|
|
// If we're performing qualified name lookup into a dependent class,
|
|
|
|
|
// then we are actually looking into a current instantiation. If we have any
|
|
|
|
|
// dependent base classes, then we either have to delay lookup until
|
|
|
|
|
// template instantiation time (at which point all bases will be available)
|
|
|
|
|
// or we have to fail.
|
|
|
|
|
if (!InUnqualifiedLookup && LookupRec->isDependentContext() &&
|
|
|
|
|
LookupRec->hasAnyDependentBases()) {
|
|
|
|
|
R.setNotFoundInCurrentInstantiation();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-15 08:26:24 +08:00
|
|
|
|
// Perform lookup into our base classes.
|
2009-10-07 01:59:45 +08:00
|
|
|
|
CXXBasePaths Paths;
|
|
|
|
|
Paths.setOrigin(LookupRec);
|
2009-01-15 08:26:24 +08:00
|
|
|
|
|
|
|
|
|
// Look for this member in our base classes
|
2009-10-07 01:59:45 +08:00
|
|
|
|
CXXRecordDecl::BaseMatchesCallback *BaseCallback = 0;
|
2009-11-17 10:14:36 +08:00
|
|
|
|
switch (R.getLookupKind()) {
|
2009-10-07 01:59:45 +08:00
|
|
|
|
case LookupOrdinaryName:
|
|
|
|
|
case LookupMemberName:
|
|
|
|
|
case LookupRedeclarationWithLinkage:
|
|
|
|
|
BaseCallback = &CXXRecordDecl::FindOrdinaryMember;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LookupTagName:
|
|
|
|
|
BaseCallback = &CXXRecordDecl::FindTagMember;
|
|
|
|
|
break;
|
2009-12-10 17:41:52 +08:00
|
|
|
|
|
|
|
|
|
case LookupUsingDeclName:
|
|
|
|
|
// This lookup is for redeclarations only.
|
2009-10-07 01:59:45 +08:00
|
|
|
|
|
|
|
|
|
case LookupOperatorName:
|
|
|
|
|
case LookupNamespaceName:
|
|
|
|
|
case LookupObjCProtocolName:
|
|
|
|
|
// These lookups will never find a member in a C++ class (or base class).
|
2009-10-10 05:13:30 +08:00
|
|
|
|
return false;
|
2009-10-07 01:59:45 +08:00
|
|
|
|
|
|
|
|
|
case LookupNestedNameSpecifierName:
|
|
|
|
|
BaseCallback = &CXXRecordDecl::FindNestedNameSpecifierMember;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-17 10:14:36 +08:00
|
|
|
|
if (!LookupRec->lookupInBases(BaseCallback,
|
|
|
|
|
R.getLookupName().getAsOpaquePtr(), Paths))
|
2009-10-10 05:13:30 +08:00
|
|
|
|
return false;
|
2009-01-15 08:26:24 +08:00
|
|
|
|
|
2010-01-23 08:46:32 +08:00
|
|
|
|
R.setNamingClass(LookupRec);
|
|
|
|
|
|
2009-01-15 08:26:24 +08:00
|
|
|
|
// C++ [class.member.lookup]p2:
|
|
|
|
|
// [...] If the resulting set of declarations are not all from
|
|
|
|
|
// sub-objects of the same type, or the set has a nonstatic member
|
|
|
|
|
// and includes members from distinct sub-objects, there is an
|
|
|
|
|
// ambiguity and the program is ill-formed. Otherwise that set is
|
|
|
|
|
// the result of the lookup.
|
|
|
|
|
// FIXME: support using declarations!
|
|
|
|
|
QualType SubobjectType;
|
2009-01-16 02:32:35 +08:00
|
|
|
|
int SubobjectNumber = 0;
|
2010-03-19 07:49:19 +08:00
|
|
|
|
AccessSpecifier SubobjectAccess = AS_none;
|
2009-10-07 01:59:45 +08:00
|
|
|
|
for (CXXBasePaths::paths_iterator Path = Paths.begin(), PathEnd = Paths.end();
|
2009-01-15 08:26:24 +08:00
|
|
|
|
Path != PathEnd; ++Path) {
|
2009-10-07 01:59:45 +08:00
|
|
|
|
const CXXBasePathElement &PathElement = Path->back();
|
2009-01-15 08:26:24 +08:00
|
|
|
|
|
2010-01-21 05:53:11 +08:00
|
|
|
|
// Pick the best (i.e. most permissive i.e. numerically lowest) access
|
|
|
|
|
// across all paths.
|
|
|
|
|
SubobjectAccess = std::min(SubobjectAccess, Path->Access);
|
|
|
|
|
|
2009-01-15 08:26:24 +08:00
|
|
|
|
// Determine whether we're looking at a distinct sub-object or not.
|
|
|
|
|
if (SubobjectType.isNull()) {
|
2009-10-10 05:13:30 +08:00
|
|
|
|
// This is the first subobject we've looked at. Record its type.
|
2009-01-15 08:26:24 +08:00
|
|
|
|
SubobjectType = Context.getCanonicalType(PathElement.Base->getType());
|
|
|
|
|
SubobjectNumber = PathElement.SubobjectNumber;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
} else if (SubobjectType
|
2009-01-15 08:26:24 +08:00
|
|
|
|
!= Context.getCanonicalType(PathElement.Base->getType())) {
|
|
|
|
|
// We found members of the given name in two subobjects of
|
|
|
|
|
// different types. This lookup is ambiguous.
|
2009-10-10 05:13:30 +08:00
|
|
|
|
R.setAmbiguousBaseSubobjectTypes(Paths);
|
|
|
|
|
return true;
|
2009-01-15 08:26:24 +08:00
|
|
|
|
} else if (SubobjectNumber != PathElement.SubobjectNumber) {
|
|
|
|
|
// We have a different subobject of the same type.
|
|
|
|
|
|
|
|
|
|
// C++ [class.member.lookup]p5:
|
|
|
|
|
// A static member, a nested type or an enumerator defined in
|
|
|
|
|
// a base class T can unambiguously be found even if an object
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// has more than one base class subobject of type T.
|
2009-01-20 09:17:11 +08:00
|
|
|
|
Decl *FirstDecl = *Path->Decls.first;
|
2009-01-15 08:26:24 +08:00
|
|
|
|
if (isa<VarDecl>(FirstDecl) ||
|
|
|
|
|
isa<TypeDecl>(FirstDecl) ||
|
|
|
|
|
isa<EnumConstantDecl>(FirstDecl))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (isa<CXXMethodDecl>(FirstDecl)) {
|
|
|
|
|
// Determine whether all of the methods are static.
|
|
|
|
|
bool AllMethodsAreStatic = true;
|
|
|
|
|
for (DeclContext::lookup_iterator Func = Path->Decls.first;
|
|
|
|
|
Func != Path->Decls.second; ++Func) {
|
|
|
|
|
if (!isa<CXXMethodDecl>(*Func)) {
|
|
|
|
|
assert(isa<TagDecl>(*Func) && "Non-function must be a tag decl");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!cast<CXXMethodDecl>(*Func)->isStatic()) {
|
|
|
|
|
AllMethodsAreStatic = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (AllMethodsAreStatic)
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We have found a nonstatic member name in multiple, distinct
|
|
|
|
|
// subobjects. Name lookup is ambiguous.
|
2009-10-10 05:13:30 +08:00
|
|
|
|
R.setAmbiguousBaseSubobjects(Paths);
|
|
|
|
|
return true;
|
2009-01-15 08:26:24 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lookup in a base class succeeded; return these results.
|
|
|
|
|
|
2009-10-10 05:13:30 +08:00
|
|
|
|
DeclContext::lookup_iterator I, E;
|
2010-01-23 08:46:32 +08:00
|
|
|
|
for (llvm::tie(I,E) = Paths.front().Decls; I != E; ++I) {
|
|
|
|
|
NamedDecl *D = *I;
|
|
|
|
|
AccessSpecifier AS = CXXRecordDecl::MergeAccess(SubobjectAccess,
|
|
|
|
|
D->getAccess());
|
|
|
|
|
R.addDecl(D, AS);
|
|
|
|
|
}
|
2009-10-10 05:13:30 +08:00
|
|
|
|
R.resolveKind();
|
|
|
|
|
return true;
|
2009-01-15 06:20:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// @brief Performs name lookup for a name that was parsed in the
|
|
|
|
|
/// source code, and may contain a C++ scope specifier.
|
|
|
|
|
///
|
|
|
|
|
/// This routine is a convenience routine meant to be called from
|
|
|
|
|
/// contexts that receive a name and an optional C++ scope specifier
|
|
|
|
|
/// (e.g., "N::M::x"). It will then perform either qualified or
|
|
|
|
|
/// unqualified name lookup (with LookupQualifiedName or LookupName,
|
|
|
|
|
/// respectively) on the given name and return those results.
|
|
|
|
|
///
|
|
|
|
|
/// @param S The scope from which unqualified name lookup will
|
|
|
|
|
/// begin.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
///
|
Improve support for out-of-line definitions of nested templates and
their members, including member class template, member function
templates, and member classes and functions of member templates.
To actually parse the nested-name-specifiers that qualify the name of
an out-of-line definition of a member template, e.g.,
template<typename X> template<typename Y>
X Outer<X>::Inner1<Y>::foo(Y) {
return X();
}
we need to look for the template names (e.g., "Inner1") as a member of
the current instantiation (Outer<X>), even before we have entered the
scope of the current instantiation. Since we can't do this in general
(i.e., we should not be looking into all dependent
nested-name-specifiers as if they were the current instantiation), we
rely on the parser to tell us when it is parsing a declaration
specifier sequence, and, therefore, when we should consider the
current scope specifier to be a current instantiation.
Printing of complicated, dependent nested-name-specifiers may be
somewhat broken by this commit; I'll add tests for this issue and fix
the problem (if it still exists) in a subsequent commit.
llvm-svn: 80044
2009-08-26 06:51:20 +08:00
|
|
|
|
/// @param SS An optional C++ scope-specifier, e.g., "::N::M".
|
2009-01-15 06:20:51 +08:00
|
|
|
|
///
|
|
|
|
|
/// @param Name The name of the entity that name lookup will
|
|
|
|
|
/// search for.
|
|
|
|
|
///
|
Implicitly declare certain C library functions (malloc, strcpy, memmove,
etc.) when we perform name lookup on them. This ensures that we
produce the correct signature for these functions, which has two
practical impacts:
1) When we're supporting the "implicit function declaration" feature
of C99, these functions will be implicitly declared with the right
signature rather than as a function returning "int" with no
prototype. See PR3541 for the reason why this is important (hint:
GCC always predeclares these functions).
2) If users attempt to redeclare one of these library functions with
an incompatible signature, we produce a hard error.
This patch does a little bit of work to give reasonable error
messages. For example, when we hit case #1 we complain that we're
implicitly declaring this function with a specific signature, and then
we give a note that asks the user to include the appropriate header
(e.g., "please include <stdlib.h> or explicitly declare 'malloc'"). In
case #2, we show the type of the implicit builtin that was incorrectly
declared, so the user can see the problem. We could do better here:
for example, when displaying this latter error message we say
something like:
'strcpy' was implicitly declared here with type 'char *(char *, char
const *)'
but we should really print out a fake code line showing the
declaration, like this:
'strcpy' was implicitly declared here as:
char *strcpy(char *, char const *)
This would also be good for printing built-in candidates with C++
operator overloading.
The set of C library functions supported by this patch includes all
functions from the C99 specification's <stdlib.h> and <string.h> that
(a) are predefined by GCC and (b) have signatures that could cause
codegen issues if they are treated as functions with no prototype
returning and int. Future work could extend this set of functions to
other C library functions that we know about.
llvm-svn: 64504
2009-02-14 07:20:09 +08:00
|
|
|
|
/// @param Loc If provided, the source location where we're performing
|
2009-09-09 23:08:12 +08:00
|
|
|
|
/// name lookup. At present, this is only used to produce diagnostics when
|
Implicitly declare certain C library functions (malloc, strcpy, memmove,
etc.) when we perform name lookup on them. This ensures that we
produce the correct signature for these functions, which has two
practical impacts:
1) When we're supporting the "implicit function declaration" feature
of C99, these functions will be implicitly declared with the right
signature rather than as a function returning "int" with no
prototype. See PR3541 for the reason why this is important (hint:
GCC always predeclares these functions).
2) If users attempt to redeclare one of these library functions with
an incompatible signature, we produce a hard error.
This patch does a little bit of work to give reasonable error
messages. For example, when we hit case #1 we complain that we're
implicitly declaring this function with a specific signature, and then
we give a note that asks the user to include the appropriate header
(e.g., "please include <stdlib.h> or explicitly declare 'malloc'"). In
case #2, we show the type of the implicit builtin that was incorrectly
declared, so the user can see the problem. We could do better here:
for example, when displaying this latter error message we say
something like:
'strcpy' was implicitly declared here with type 'char *(char *, char
const *)'
but we should really print out a fake code line showing the
declaration, like this:
'strcpy' was implicitly declared here as:
char *strcpy(char *, char const *)
This would also be good for printing built-in candidates with C++
operator overloading.
The set of C library functions supported by this patch includes all
functions from the C99 specification's <stdlib.h> and <string.h> that
(a) are predefined by GCC and (b) have signatures that could cause
codegen issues if they are treated as functions with no prototype
returning and int. Future work could extend this set of functions to
other C library functions that we know about.
llvm-svn: 64504
2009-02-14 07:20:09 +08:00
|
|
|
|
/// C library functions (like "malloc") are implicitly declared.
|
|
|
|
|
///
|
Improve support for out-of-line definitions of nested templates and
their members, including member class template, member function
templates, and member classes and functions of member templates.
To actually parse the nested-name-specifiers that qualify the name of
an out-of-line definition of a member template, e.g.,
template<typename X> template<typename Y>
X Outer<X>::Inner1<Y>::foo(Y) {
return X();
}
we need to look for the template names (e.g., "Inner1") as a member of
the current instantiation (Outer<X>), even before we have entered the
scope of the current instantiation. Since we can't do this in general
(i.e., we should not be looking into all dependent
nested-name-specifiers as if they were the current instantiation), we
rely on the parser to tell us when it is parsing a declaration
specifier sequence, and, therefore, when we should consider the
current scope specifier to be a current instantiation.
Printing of complicated, dependent nested-name-specifiers may be
somewhat broken by this commit; I'll add tests for this issue and fix
the problem (if it still exists) in a subsequent commit.
llvm-svn: 80044
2009-08-26 06:51:20 +08:00
|
|
|
|
/// @param EnteringContext Indicates whether we are going to enter the
|
|
|
|
|
/// context of the scope-specifier SS (if present).
|
|
|
|
|
///
|
2009-10-10 05:13:30 +08:00
|
|
|
|
/// @returns True if any decls were found (but possibly ambiguous)
|
2010-04-09 00:38:48 +08:00
|
|
|
|
bool Sema::LookupParsedName(LookupResult &R, Scope *S, CXXScopeSpec *SS,
|
2009-11-17 10:14:36 +08:00
|
|
|
|
bool AllowBuiltinCreation, bool EnteringContext) {
|
Improve support for out-of-line definitions of nested templates and
their members, including member class template, member function
templates, and member classes and functions of member templates.
To actually parse the nested-name-specifiers that qualify the name of
an out-of-line definition of a member template, e.g.,
template<typename X> template<typename Y>
X Outer<X>::Inner1<Y>::foo(Y) {
return X();
}
we need to look for the template names (e.g., "Inner1") as a member of
the current instantiation (Outer<X>), even before we have entered the
scope of the current instantiation. Since we can't do this in general
(i.e., we should not be looking into all dependent
nested-name-specifiers as if they were the current instantiation), we
rely on the parser to tell us when it is parsing a declaration
specifier sequence, and, therefore, when we should consider the
current scope specifier to be a current instantiation.
Printing of complicated, dependent nested-name-specifiers may be
somewhat broken by this commit; I'll add tests for this issue and fix
the problem (if it still exists) in a subsequent commit.
llvm-svn: 80044
2009-08-26 06:51:20 +08:00
|
|
|
|
if (SS && SS->isInvalid()) {
|
|
|
|
|
// When the scope specifier is invalid, don't even look for
|
2009-05-12 03:58:34 +08:00
|
|
|
|
// anything.
|
2009-10-10 05:13:30 +08:00
|
|
|
|
return false;
|
Improve support for out-of-line definitions of nested templates and
their members, including member class template, member function
templates, and member classes and functions of member templates.
To actually parse the nested-name-specifiers that qualify the name of
an out-of-line definition of a member template, e.g.,
template<typename X> template<typename Y>
X Outer<X>::Inner1<Y>::foo(Y) {
return X();
}
we need to look for the template names (e.g., "Inner1") as a member of
the current instantiation (Outer<X>), even before we have entered the
scope of the current instantiation. Since we can't do this in general
(i.e., we should not be looking into all dependent
nested-name-specifiers as if they were the current instantiation), we
rely on the parser to tell us when it is parsing a declaration
specifier sequence, and, therefore, when we should consider the
current scope specifier to be a current instantiation.
Printing of complicated, dependent nested-name-specifiers may be
somewhat broken by this commit; I'll add tests for this issue and fix
the problem (if it still exists) in a subsequent commit.
llvm-svn: 80044
2009-08-26 06:51:20 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
Improve support for out-of-line definitions of nested templates and
their members, including member class template, member function
templates, and member classes and functions of member templates.
To actually parse the nested-name-specifiers that qualify the name of
an out-of-line definition of a member template, e.g.,
template<typename X> template<typename Y>
X Outer<X>::Inner1<Y>::foo(Y) {
return X();
}
we need to look for the template names (e.g., "Inner1") as a member of
the current instantiation (Outer<X>), even before we have entered the
scope of the current instantiation. Since we can't do this in general
(i.e., we should not be looking into all dependent
nested-name-specifiers as if they were the current instantiation), we
rely on the parser to tell us when it is parsing a declaration
specifier sequence, and, therefore, when we should consider the
current scope specifier to be a current instantiation.
Printing of complicated, dependent nested-name-specifiers may be
somewhat broken by this commit; I'll add tests for this issue and fix
the problem (if it still exists) in a subsequent commit.
llvm-svn: 80044
2009-08-26 06:51:20 +08:00
|
|
|
|
if (SS && SS->isSet()) {
|
|
|
|
|
if (DeclContext *DC = computeDeclContext(*SS, EnteringContext)) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// We have resolved the scope specifier to a particular declaration
|
Improve support for out-of-line definitions of nested templates and
their members, including member class template, member function
templates, and member classes and functions of member templates.
To actually parse the nested-name-specifiers that qualify the name of
an out-of-line definition of a member template, e.g.,
template<typename X> template<typename Y>
X Outer<X>::Inner1<Y>::foo(Y) {
return X();
}
we need to look for the template names (e.g., "Inner1") as a member of
the current instantiation (Outer<X>), even before we have entered the
scope of the current instantiation. Since we can't do this in general
(i.e., we should not be looking into all dependent
nested-name-specifiers as if they were the current instantiation), we
rely on the parser to tell us when it is parsing a declaration
specifier sequence, and, therefore, when we should consider the
current scope specifier to be a current instantiation.
Printing of complicated, dependent nested-name-specifiers may be
somewhat broken by this commit; I'll add tests for this issue and fix
the problem (if it still exists) in a subsequent commit.
llvm-svn: 80044
2009-08-26 06:51:20 +08:00
|
|
|
|
// contex, and will perform name lookup in that context.
|
2010-05-01 08:40:08 +08:00
|
|
|
|
if (!DC->isDependentContext() && RequireCompleteDeclContext(*SS, DC))
|
2009-10-10 05:13:30 +08:00
|
|
|
|
return false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-11-17 10:14:36 +08:00
|
|
|
|
R.setContextRange(SS->getRange());
|
|
|
|
|
|
|
|
|
|
return LookupQualifiedName(R, DC);
|
Introduce a representation for types that we referred to via a
qualified name, e.g.,
foo::x
so that we retain the nested-name-specifier as written in the source
code and can reproduce that qualified name when printing the types
back (e.g., in diagnostics). This is PR3493, which won't be complete
until finished the other tasks mentioned near the end of this commit.
The parser's representation of nested-name-specifiers, CXXScopeSpec,
is now a bit fatter, because it needs to contain the scopes that
precede each '::' and keep track of whether the global scoping
operator '::' was at the beginning. For example, we need to keep track
of the leading '::', 'foo', and 'bar' in
::foo::bar::x
The Action's CXXScopeTy * is no longer a DeclContext *. It's now the
opaque version of the new NestedNameSpecifier, which contains a single
component of a nested-name-specifier (either a DeclContext * or a Type
*, bitmangled).
The new sugar type QualifiedNameType composes a sequence of
NestedNameSpecifiers with a representation of the type we're actually
referring to. At present, we only build QualifiedNameType nodes within
Sema::getTypeName. This will be extended to other type-constructing
actions (e.g., ActOnClassTemplateId).
Also on the way: QualifiedDeclRefExprs will also store a sequence of
NestedNameSpecifiers, so that we can print out the property
nested-name-specifier. I expect to also use this for handling
dependent names like Fibonacci<I - 1>::value.
llvm-svn: 67265
2009-03-19 08:18:19 +08:00
|
|
|
|
}
|
2009-05-12 03:58:34 +08:00
|
|
|
|
|
Improve support for out-of-line definitions of nested templates and
their members, including member class template, member function
templates, and member classes and functions of member templates.
To actually parse the nested-name-specifiers that qualify the name of
an out-of-line definition of a member template, e.g.,
template<typename X> template<typename Y>
X Outer<X>::Inner1<Y>::foo(Y) {
return X();
}
we need to look for the template names (e.g., "Inner1") as a member of
the current instantiation (Outer<X>), even before we have entered the
scope of the current instantiation. Since we can't do this in general
(i.e., we should not be looking into all dependent
nested-name-specifiers as if they were the current instantiation), we
rely on the parser to tell us when it is parsing a declaration
specifier sequence, and, therefore, when we should consider the
current scope specifier to be a current instantiation.
Printing of complicated, dependent nested-name-specifiers may be
somewhat broken by this commit; I'll add tests for this issue and fix
the problem (if it still exists) in a subsequent commit.
llvm-svn: 80044
2009-08-26 06:51:20 +08:00
|
|
|
|
// We could not resolve the scope specified to a specific declaration
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// context, which means that SS refers to an unknown specialization.
|
Improve support for out-of-line definitions of nested templates and
their members, including member class template, member function
templates, and member classes and functions of member templates.
To actually parse the nested-name-specifiers that qualify the name of
an out-of-line definition of a member template, e.g.,
template<typename X> template<typename Y>
X Outer<X>::Inner1<Y>::foo(Y) {
return X();
}
we need to look for the template names (e.g., "Inner1") as a member of
the current instantiation (Outer<X>), even before we have entered the
scope of the current instantiation. Since we can't do this in general
(i.e., we should not be looking into all dependent
nested-name-specifiers as if they were the current instantiation), we
rely on the parser to tell us when it is parsing a declaration
specifier sequence, and, therefore, when we should consider the
current scope specifier to be a current instantiation.
Printing of complicated, dependent nested-name-specifiers may be
somewhat broken by this commit; I'll add tests for this issue and fix
the problem (if it still exists) in a subsequent commit.
llvm-svn: 80044
2009-08-26 06:51:20 +08:00
|
|
|
|
// Name lookup can't find anything in this case.
|
2009-10-10 05:13:30 +08:00
|
|
|
|
return false;
|
Eliminated LookupCriteria, whose creation was causing a bottleneck for
LookupName et al. Instead, use an enum and a bool to describe its
contents.
Optimized the C/Objective-C path through LookupName, eliminating any
unnecessarily C++isms. Simplify IdentifierResolver::iterator, removing
some code and arguments that are no longer used.
Eliminated LookupDeclInScope/LookupDeclInContext, moving all callers
over to LookupName, LookupQualifiedName, or LookupParsedName, as
appropriate.
All together, I'm seeing a 0.2% speedup on Cocoa.h with PTH and
-disable-free. Plus, we're down to three name-lookup routines.
llvm-svn: 63354
2009-01-30 09:04:22 +08:00
|
|
|
|
}
|
2009-01-15 06:20:51 +08:00
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// Perform unqualified name lookup starting in the given scope.
|
2009-11-17 10:14:36 +08:00
|
|
|
|
return LookupName(R, S, AllowBuiltinCreation);
|
2009-01-15 06:20:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2009-01-15 08:26:24 +08:00
|
|
|
|
/// @brief Produce a diagnostic describing the ambiguity that resulted
|
|
|
|
|
/// from name lookup.
|
|
|
|
|
///
|
|
|
|
|
/// @param Result The ambiguous name lookup result.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
///
|
2009-01-15 08:26:24 +08:00
|
|
|
|
/// @param Name The name of the entity that name lookup was
|
|
|
|
|
/// searching for.
|
|
|
|
|
///
|
|
|
|
|
/// @param NameLoc The location of the name within the source code.
|
|
|
|
|
///
|
|
|
|
|
/// @param LookupRange A source range that provides more
|
|
|
|
|
/// source-location information concerning the lookup itself. For
|
|
|
|
|
/// example, this range might highlight a nested-name-specifier that
|
|
|
|
|
/// precedes the name.
|
|
|
|
|
///
|
|
|
|
|
/// @returns true
|
2009-11-17 10:14:36 +08:00
|
|
|
|
bool Sema::DiagnoseAmbiguousLookup(LookupResult &Result) {
|
2009-01-15 08:26:24 +08:00
|
|
|
|
assert(Result.isAmbiguous() && "Lookup result must be ambiguous");
|
|
|
|
|
|
2009-11-17 10:14:36 +08:00
|
|
|
|
DeclarationName Name = Result.getLookupName();
|
|
|
|
|
SourceLocation NameLoc = Result.getNameLoc();
|
|
|
|
|
SourceRange LookupRange = Result.getContextRange();
|
|
|
|
|
|
2009-10-10 13:48:19 +08:00
|
|
|
|
switch (Result.getAmbiguityKind()) {
|
|
|
|
|
case LookupResult::AmbiguousBaseSubobjects: {
|
|
|
|
|
CXXBasePaths *Paths = Result.getBasePaths();
|
|
|
|
|
QualType SubobjectType = Paths->front().back().Base->getType();
|
|
|
|
|
Diag(NameLoc, diag::err_ambiguous_member_multiple_subobjects)
|
|
|
|
|
<< Name << SubobjectType << getAmbiguousPathsDisplayString(*Paths)
|
|
|
|
|
<< LookupRange;
|
|
|
|
|
|
|
|
|
|
DeclContext::lookup_iterator Found = Paths->front().Decls.first;
|
|
|
|
|
while (isa<CXXMethodDecl>(*Found) &&
|
|
|
|
|
cast<CXXMethodDecl>(*Found)->isStatic())
|
|
|
|
|
++Found;
|
|
|
|
|
|
|
|
|
|
Diag((*Found)->getLocation(), diag::note_ambiguous_member_found);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2009-02-04 03:21:40 +08:00
|
|
|
|
|
2009-10-10 13:48:19 +08:00
|
|
|
|
case LookupResult::AmbiguousBaseSubobjectTypes: {
|
2009-02-04 03:21:40 +08:00
|
|
|
|
Diag(NameLoc, diag::err_ambiguous_member_multiple_subobject_types)
|
|
|
|
|
<< Name << LookupRange;
|
2009-10-10 13:48:19 +08:00
|
|
|
|
|
|
|
|
|
CXXBasePaths *Paths = Result.getBasePaths();
|
2009-02-04 03:21:40 +08:00
|
|
|
|
std::set<Decl *> DeclsPrinted;
|
2009-10-10 13:48:19 +08:00
|
|
|
|
for (CXXBasePaths::paths_iterator Path = Paths->begin(),
|
|
|
|
|
PathEnd = Paths->end();
|
2009-02-04 03:21:40 +08:00
|
|
|
|
Path != PathEnd; ++Path) {
|
|
|
|
|
Decl *D = *Path->Decls.first;
|
|
|
|
|
if (DeclsPrinted.insert(D).second)
|
|
|
|
|
Diag(D->getLocation(), diag::note_ambiguous_member_found);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
2009-01-16 08:38:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-10-10 13:48:19 +08:00
|
|
|
|
case LookupResult::AmbiguousTagHiding: {
|
|
|
|
|
Diag(NameLoc, diag::err_ambiguous_tag_hiding) << Name << LookupRange;
|
2009-10-10 05:13:30 +08:00
|
|
|
|
|
2009-10-10 13:48:19 +08:00
|
|
|
|
llvm::SmallPtrSet<NamedDecl*,8> TagDecls;
|
|
|
|
|
|
|
|
|
|
LookupResult::iterator DI, DE = Result.end();
|
|
|
|
|
for (DI = Result.begin(); DI != DE; ++DI)
|
|
|
|
|
if (TagDecl *TD = dyn_cast<TagDecl>(*DI)) {
|
|
|
|
|
TagDecls.insert(TD);
|
|
|
|
|
Diag(TD->getLocation(), diag::note_hidden_tag);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (DI = Result.begin(); DI != DE; ++DI)
|
|
|
|
|
if (!isa<TagDecl>(*DI))
|
|
|
|
|
Diag((*DI)->getLocation(), diag::note_hiding_object);
|
|
|
|
|
|
|
|
|
|
// For recovery purposes, go ahead and implement the hiding.
|
2010-01-20 08:46:10 +08:00
|
|
|
|
LookupResult::Filter F = Result.makeFilter();
|
|
|
|
|
while (F.hasNext()) {
|
|
|
|
|
if (TagDecls.count(F.next()))
|
|
|
|
|
F.erase();
|
|
|
|
|
}
|
|
|
|
|
F.done();
|
2009-10-10 13:48:19 +08:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LookupResult::AmbiguousReference: {
|
|
|
|
|
Diag(NameLoc, diag::err_ambiguous_reference) << Name << LookupRange;
|
2009-10-10 05:13:30 +08:00
|
|
|
|
|
2009-10-10 13:48:19 +08:00
|
|
|
|
LookupResult::iterator DI = Result.begin(), DE = Result.end();
|
|
|
|
|
for (; DI != DE; ++DI)
|
|
|
|
|
Diag((*DI)->getLocation(), diag::note_ambiguous_candidate) << *DI;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-01-17 09:13:24 +08:00
|
|
|
|
|
2009-12-12 13:05:38 +08:00
|
|
|
|
llvm_unreachable("unknown ambiguity kind");
|
2009-01-15 08:26:24 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2009-02-04 08:32:51 +08:00
|
|
|
|
|
2010-05-29 02:45:08 +08:00
|
|
|
|
namespace {
|
|
|
|
|
struct AssociatedLookup {
|
|
|
|
|
AssociatedLookup(Sema &S,
|
|
|
|
|
Sema::AssociatedNamespaceSet &Namespaces,
|
|
|
|
|
Sema::AssociatedClassSet &Classes)
|
|
|
|
|
: S(S), Namespaces(Namespaces), Classes(Classes) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Sema &S;
|
|
|
|
|
Sema::AssociatedNamespaceSet &Namespaces;
|
|
|
|
|
Sema::AssociatedClassSet &Classes;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
static void
|
2010-05-29 02:45:08 +08:00
|
|
|
|
addAssociatedClassesAndNamespaces(AssociatedLookup &Result, QualType T);
|
2009-08-08 06:18:02 +08:00
|
|
|
|
|
2010-04-30 15:08:38 +08:00
|
|
|
|
static void CollectEnclosingNamespace(Sema::AssociatedNamespaceSet &Namespaces,
|
|
|
|
|
DeclContext *Ctx) {
|
|
|
|
|
// Add the associated namespace for this class.
|
|
|
|
|
|
|
|
|
|
// We don't use DeclContext::getEnclosingNamespaceContext() as this may
|
|
|
|
|
// be a locally scoped record.
|
|
|
|
|
|
|
|
|
|
while (Ctx->isRecord() || Ctx->isTransparentContext())
|
|
|
|
|
Ctx = Ctx->getParent();
|
|
|
|
|
|
2009-08-08 06:18:02 +08:00
|
|
|
|
if (Ctx->isFileContext())
|
2010-04-30 15:08:38 +08:00
|
|
|
|
Namespaces.insert(Ctx->getPrimaryContext());
|
2009-08-08 06:18:02 +08:00
|
|
|
|
}
|
2009-07-08 15:51:57 +08:00
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// \brief Add the associated classes and namespaces for argument-dependent
|
2009-07-08 15:51:57 +08:00
|
|
|
|
// lookup that involves a template argument (C++ [basic.lookup.koenig]p2).
|
2009-09-09 23:08:12 +08:00
|
|
|
|
static void
|
2010-05-29 02:45:08 +08:00
|
|
|
|
addAssociatedClassesAndNamespaces(AssociatedLookup &Result,
|
|
|
|
|
const TemplateArgument &Arg) {
|
2009-07-08 15:51:57 +08:00
|
|
|
|
// C++ [basic.lookup.koenig]p2, last bullet:
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// -- [...] ;
|
2009-07-08 15:51:57 +08:00
|
|
|
|
switch (Arg.getKind()) {
|
|
|
|
|
case TemplateArgument::Null:
|
|
|
|
|
break;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 15:51:57 +08:00
|
|
|
|
case TemplateArgument::Type:
|
|
|
|
|
// [...] the namespaces and classes associated with the types of the
|
|
|
|
|
// template arguments provided for template type parameters (excluding
|
|
|
|
|
// template template parameters)
|
2010-05-29 02:45:08 +08:00
|
|
|
|
addAssociatedClassesAndNamespaces(Result, Arg.getAsType());
|
2009-07-08 15:51:57 +08:00
|
|
|
|
break;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-11-11 09:00:40 +08:00
|
|
|
|
case TemplateArgument::Template: {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// [...] the namespaces in which any template template arguments are
|
|
|
|
|
// defined; and the classes in which any member templates used as
|
2009-07-08 15:51:57 +08:00
|
|
|
|
// template template arguments are defined.
|
2009-11-11 09:00:40 +08:00
|
|
|
|
TemplateName Template = Arg.getAsTemplate();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
if (ClassTemplateDecl *ClassTemplate
|
2009-11-11 09:00:40 +08:00
|
|
|
|
= dyn_cast<ClassTemplateDecl>(Template.getAsTemplateDecl())) {
|
2009-07-08 15:51:57 +08:00
|
|
|
|
DeclContext *Ctx = ClassTemplate->getDeclContext();
|
|
|
|
|
if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx))
|
2010-05-29 02:45:08 +08:00
|
|
|
|
Result.Classes.insert(EnclosingClass);
|
2009-07-08 15:51:57 +08:00
|
|
|
|
// Add the associated namespace for this class.
|
2010-05-29 02:45:08 +08:00
|
|
|
|
CollectEnclosingNamespace(Result.Namespaces, Ctx);
|
2009-07-08 15:51:57 +08:00
|
|
|
|
}
|
|
|
|
|
break;
|
2009-11-11 09:00:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case TemplateArgument::Declaration:
|
2009-07-08 15:51:57 +08:00
|
|
|
|
case TemplateArgument::Integral:
|
|
|
|
|
case TemplateArgument::Expression:
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// [Note: non-type template arguments do not contribute to the set of
|
2009-07-08 15:51:57 +08:00
|
|
|
|
// associated namespaces. ]
|
|
|
|
|
break;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 15:51:57 +08:00
|
|
|
|
case TemplateArgument::Pack:
|
|
|
|
|
for (TemplateArgument::pack_iterator P = Arg.pack_begin(),
|
|
|
|
|
PEnd = Arg.pack_end();
|
|
|
|
|
P != PEnd; ++P)
|
2010-05-29 02:45:08 +08:00
|
|
|
|
addAssociatedClassesAndNamespaces(Result, *P);
|
2009-07-08 15:51:57 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-04 08:32:51 +08:00
|
|
|
|
// \brief Add the associated classes and namespaces for
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// argument-dependent lookup with an argument of class type
|
|
|
|
|
// (C++ [basic.lookup.koenig]p2).
|
|
|
|
|
static void
|
2010-05-29 02:45:08 +08:00
|
|
|
|
addAssociatedClassesAndNamespaces(AssociatedLookup &Result,
|
|
|
|
|
CXXRecordDecl *Class) {
|
|
|
|
|
|
|
|
|
|
// Just silently ignore anything whose name is __va_list_tag.
|
|
|
|
|
if (Class->getDeclName() == Result.S.VAListTagName)
|
|
|
|
|
return;
|
|
|
|
|
|
2009-02-04 08:32:51 +08:00
|
|
|
|
// C++ [basic.lookup.koenig]p2:
|
|
|
|
|
// [...]
|
|
|
|
|
// -- 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 in
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// which its associated classes are defined.
|
2009-02-04 08:32:51 +08:00
|
|
|
|
|
|
|
|
|
// Add the class of which it is a member, if any.
|
|
|
|
|
DeclContext *Ctx = Class->getDeclContext();
|
|
|
|
|
if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx))
|
2010-05-29 02:45:08 +08:00
|
|
|
|
Result.Classes.insert(EnclosingClass);
|
2009-02-04 08:32:51 +08:00
|
|
|
|
// Add the associated namespace for this class.
|
2010-05-29 02:45:08 +08:00
|
|
|
|
CollectEnclosingNamespace(Result.Namespaces, Ctx);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-02-04 08:32:51 +08:00
|
|
|
|
// Add the class itself. If we've already seen this class, we don't
|
|
|
|
|
// need to visit base classes.
|
2010-05-29 02:45:08 +08:00
|
|
|
|
if (!Result.Classes.insert(Class))
|
2009-02-04 08:32:51 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// -- If T is a template-id, its associated namespaces and classes are
|
|
|
|
|
// the namespace in which the template is defined; for member
|
2009-07-08 15:51:57 +08:00
|
|
|
|
// templates, the member template’s class; the namespaces and classes
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// associated with the types of the template arguments provided for
|
2009-07-08 15:51:57 +08:00
|
|
|
|
// template type parameters (excluding template template parameters); the
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// 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
|
2009-07-08 15:51:57 +08:00
|
|
|
|
// contribute to the set of associated namespaces. ]
|
2009-09-09 23:08:12 +08:00
|
|
|
|
if (ClassTemplateSpecializationDecl *Spec
|
2009-07-08 15:51:57 +08:00
|
|
|
|
= dyn_cast<ClassTemplateSpecializationDecl>(Class)) {
|
|
|
|
|
DeclContext *Ctx = Spec->getSpecializedTemplate()->getDeclContext();
|
|
|
|
|
if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx))
|
2010-05-29 02:45:08 +08:00
|
|
|
|
Result.Classes.insert(EnclosingClass);
|
2009-07-08 15:51:57 +08:00
|
|
|
|
// Add the associated namespace for this class.
|
2010-05-29 02:45:08 +08:00
|
|
|
|
CollectEnclosingNamespace(Result.Namespaces, Ctx);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 15:51:57 +08:00
|
|
|
|
const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
|
|
|
|
|
for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
|
2010-05-29 02:45:08 +08:00
|
|
|
|
addAssociatedClassesAndNamespaces(Result, TemplateArgs[I]);
|
2009-07-08 15:51:57 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-02-05 06:26:26 +08:00
|
|
|
|
// Only recurse into base classes for complete types.
|
|
|
|
|
if (!Class->hasDefinition()) {
|
|
|
|
|
// FIXME: we might need to instantiate templates here
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-04 08:32:51 +08:00
|
|
|
|
// Add direct and indirect base classes along with their associated
|
|
|
|
|
// namespaces.
|
|
|
|
|
llvm::SmallVector<CXXRecordDecl *, 32> Bases;
|
|
|
|
|
Bases.push_back(Class);
|
|
|
|
|
while (!Bases.empty()) {
|
|
|
|
|
// Pop this class off the stack.
|
|
|
|
|
Class = Bases.back();
|
|
|
|
|
Bases.pop_back();
|
|
|
|
|
|
|
|
|
|
// Visit the base classes.
|
|
|
|
|
for (CXXRecordDecl::base_class_iterator Base = Class->bases_begin(),
|
|
|
|
|
BaseEnd = Class->bases_end();
|
|
|
|
|
Base != BaseEnd; ++Base) {
|
2009-07-30 05:53:49 +08:00
|
|
|
|
const RecordType *BaseType = Base->getType()->getAs<RecordType>();
|
2009-10-25 17:35:33 +08:00
|
|
|
|
// In dependent contexts, we do ADL twice, and the first time around,
|
|
|
|
|
// the base type might be a dependent TemplateSpecializationType, or a
|
|
|
|
|
// TemplateTypeParmType. If that happens, simply ignore it.
|
|
|
|
|
// FIXME: If we want to support export, we probably need to add the
|
|
|
|
|
// namespace of the template in a TemplateSpecializationType, or even
|
|
|
|
|
// the classes and namespaces of known non-dependent arguments.
|
|
|
|
|
if (!BaseType)
|
|
|
|
|
continue;
|
2009-02-04 08:32:51 +08:00
|
|
|
|
CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(BaseType->getDecl());
|
2010-05-29 02:45:08 +08:00
|
|
|
|
if (Result.Classes.insert(BaseDecl)) {
|
2009-02-04 08:32:51 +08:00
|
|
|
|
// Find the associated namespace for this base class.
|
|
|
|
|
DeclContext *BaseCtx = BaseDecl->getDeclContext();
|
2010-05-29 02:45:08 +08:00
|
|
|
|
CollectEnclosingNamespace(Result.Namespaces, BaseCtx);
|
2009-02-04 08:32:51 +08:00
|
|
|
|
|
|
|
|
|
// Make sure we visit the bases of this base class.
|
|
|
|
|
if (BaseDecl->bases_begin() != BaseDecl->bases_end())
|
|
|
|
|
Bases.push_back(BaseDecl);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// \brief Add the associated classes and namespaces for
|
|
|
|
|
// argument-dependent lookup with an argument of type T
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// (C++ [basic.lookup.koenig]p2).
|
|
|
|
|
static void
|
2010-05-29 02:45:08 +08:00
|
|
|
|
addAssociatedClassesAndNamespaces(AssociatedLookup &Result, QualType Ty) {
|
2009-02-04 08:32:51 +08:00
|
|
|
|
// C++ [basic.lookup.koenig]p2:
|
|
|
|
|
//
|
|
|
|
|
// For each argument type T in the function call, there is a set
|
|
|
|
|
// of zero or more associated namespaces and a set of zero or more
|
|
|
|
|
// associated classes to be considered. The sets of namespaces and
|
|
|
|
|
// classes is determined entirely by the types of the function
|
|
|
|
|
// arguments (and the namespace of any template template
|
|
|
|
|
// argument). Typedef names and using-declarations used to specify
|
|
|
|
|
// the types do not contribute to this set. The sets of namespaces
|
|
|
|
|
// and classes are determined in the following way:
|
|
|
|
|
|
2010-05-28 14:08:54 +08:00
|
|
|
|
llvm::SmallVector<const Type *, 16> Queue;
|
|
|
|
|
const Type *T = Ty->getCanonicalTypeInternal().getTypePtr();
|
|
|
|
|
|
2009-02-04 08:32:51 +08:00
|
|
|
|
while (true) {
|
2010-05-28 14:08:54 +08:00
|
|
|
|
switch (T->getTypeClass()) {
|
|
|
|
|
|
|
|
|
|
#define TYPE(Class, Base)
|
|
|
|
|
#define DEPENDENT_TYPE(Class, Base) case Type::Class:
|
|
|
|
|
#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
|
|
|
|
|
#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
|
|
|
|
|
#define ABSTRACT_TYPE(Class, Base)
|
|
|
|
|
#include "clang/AST/TypeNodes.def"
|
|
|
|
|
// T is canonical. We can also ignore dependent types because
|
|
|
|
|
// we don't need to do ADL at the definition point, but if we
|
|
|
|
|
// wanted to implement template export (or if we find some other
|
|
|
|
|
// use for associated classes and namespaces...) this would be
|
|
|
|
|
// wrong.
|
2009-02-04 08:32:51 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2010-05-28 14:08:54 +08:00
|
|
|
|
// -- If T is a pointer to U or an array of U, its associated
|
|
|
|
|
// namespaces and classes are those associated with U.
|
|
|
|
|
case Type::Pointer:
|
|
|
|
|
T = cast<PointerType>(T)->getPointeeType().getTypePtr();
|
|
|
|
|
continue;
|
|
|
|
|
case Type::ConstantArray:
|
|
|
|
|
case Type::IncompleteArray:
|
|
|
|
|
case Type::VariableArray:
|
|
|
|
|
T = cast<ArrayType>(T)->getElementType().getTypePtr();
|
|
|
|
|
continue;
|
2009-02-04 08:32:51 +08:00
|
|
|
|
|
2010-05-28 14:08:54 +08:00
|
|
|
|
// -- If T is a fundamental type, its associated sets of
|
|
|
|
|
// namespaces and classes are both empty.
|
|
|
|
|
case Type::Builtin:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
// -- 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 in
|
|
|
|
|
// which its associated classes are defined.
|
|
|
|
|
case Type::Record: {
|
|
|
|
|
CXXRecordDecl *Class
|
|
|
|
|
= cast<CXXRecordDecl>(cast<RecordType>(T)->getDecl());
|
2010-05-29 02:45:08 +08:00
|
|
|
|
addAssociatedClassesAndNamespaces(Result, Class);
|
2010-05-28 14:08:54 +08:00
|
|
|
|
break;
|
2009-02-28 09:32:25 +08:00
|
|
|
|
}
|
2010-05-20 10:26:51 +08:00
|
|
|
|
|
2010-05-28 14:08:54 +08:00
|
|
|
|
// -- If T is an enumeration type, its associated namespace is
|
|
|
|
|
// the namespace in which it is defined. If it is class
|
|
|
|
|
// member, its associated class is the member’s class; else
|
|
|
|
|
// it has no associated class.
|
|
|
|
|
case Type::Enum: {
|
|
|
|
|
EnumDecl *Enum = cast<EnumType>(T)->getDecl();
|
2009-02-04 08:32:51 +08:00
|
|
|
|
|
2010-05-28 14:08:54 +08:00
|
|
|
|
DeclContext *Ctx = Enum->getDeclContext();
|
|
|
|
|
if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx))
|
2010-05-29 02:45:08 +08:00
|
|
|
|
Result.Classes.insert(EnclosingClass);
|
2009-02-04 08:32:51 +08:00
|
|
|
|
|
2010-05-28 14:08:54 +08:00
|
|
|
|
// Add the associated namespace for this class.
|
2010-05-29 02:45:08 +08:00
|
|
|
|
CollectEnclosingNamespace(Result.Namespaces, Ctx);
|
2009-02-04 08:32:51 +08:00
|
|
|
|
|
2010-05-28 14:08:54 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2009-02-04 08:32:51 +08:00
|
|
|
|
|
2010-05-28 14:08:54 +08:00
|
|
|
|
// -- If T is a function type, its associated namespaces and
|
|
|
|
|
// classes are those associated with the function parameter
|
|
|
|
|
// types and those associated with the return type.
|
|
|
|
|
case Type::FunctionProto: {
|
|
|
|
|
const FunctionProtoType *Proto = cast<FunctionProtoType>(T);
|
|
|
|
|
for (FunctionProtoType::arg_type_iterator Arg = Proto->arg_type_begin(),
|
|
|
|
|
ArgEnd = Proto->arg_type_end();
|
|
|
|
|
Arg != ArgEnd; ++Arg)
|
|
|
|
|
Queue.push_back(Arg->getTypePtr());
|
|
|
|
|
// fallthrough
|
|
|
|
|
}
|
|
|
|
|
case Type::FunctionNoProto: {
|
|
|
|
|
const FunctionType *FnType = cast<FunctionType>(T);
|
|
|
|
|
T = FnType->getResultType().getTypePtr();
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-05-28 14:08:54 +08:00
|
|
|
|
// -- If T is a pointer to a member function of a class X, its
|
|
|
|
|
// associated namespaces and classes are those associated
|
|
|
|
|
// with the function parameter types and return type,
|
|
|
|
|
// together with those associated with X.
|
|
|
|
|
//
|
|
|
|
|
// -- If T is a pointer to a data member of class X, its
|
|
|
|
|
// associated namespaces and classes are those associated
|
|
|
|
|
// with the member type together with those associated with
|
|
|
|
|
// X.
|
|
|
|
|
case Type::MemberPointer: {
|
|
|
|
|
const MemberPointerType *MemberPtr = cast<MemberPointerType>(T);
|
|
|
|
|
|
|
|
|
|
// Queue up the class type into which this points.
|
|
|
|
|
Queue.push_back(MemberPtr->getClass());
|
|
|
|
|
|
|
|
|
|
// And directly continue with the pointee type.
|
|
|
|
|
T = MemberPtr->getPointeeType().getTypePtr();
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2009-02-04 08:32:51 +08:00
|
|
|
|
|
2010-05-28 14:08:54 +08:00
|
|
|
|
// As an extension, treat this like a normal pointer.
|
|
|
|
|
case Type::BlockPointer:
|
|
|
|
|
T = cast<BlockPointerType>(T)->getPointeeType().getTypePtr();
|
|
|
|
|
continue;
|
2009-02-04 08:32:51 +08:00
|
|
|
|
|
2010-05-28 14:08:54 +08:00
|
|
|
|
// References aren't covered by the standard, but that's such an
|
|
|
|
|
// obvious defect that we cover them anyway.
|
|
|
|
|
case Type::LValueReference:
|
|
|
|
|
case Type::RValueReference:
|
|
|
|
|
T = cast<ReferenceType>(T)->getPointeeType().getTypePtr();
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
// These are fundamental types.
|
|
|
|
|
case Type::Vector:
|
|
|
|
|
case Type::ExtVector:
|
|
|
|
|
case Type::Complex:
|
|
|
|
|
break;
|
2009-02-04 08:32:51 +08:00
|
|
|
|
|
2010-05-28 14:08:54 +08:00
|
|
|
|
// These are ignored by ADL.
|
|
|
|
|
case Type::ObjCObject:
|
|
|
|
|
case Type::ObjCInterface:
|
|
|
|
|
case Type::ObjCObjectPointer:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Queue.empty()) break;
|
|
|
|
|
T = Queue.back();
|
|
|
|
|
Queue.pop_back();
|
|
|
|
|
}
|
2009-02-04 08:32:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// \brief Find the associated classes and namespaces for
|
|
|
|
|
/// argument-dependent lookup for a call with the given set of
|
|
|
|
|
/// arguments.
|
|
|
|
|
///
|
|
|
|
|
/// This routine computes the sets of associated classes and associated
|
2009-09-09 23:08:12 +08:00
|
|
|
|
/// namespaces searched by argument-dependent lookup
|
2009-02-04 08:32:51 +08:00
|
|
|
|
/// (C++ [basic.lookup.argdep]) for a given set of arguments.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
void
|
2009-02-04 08:32:51 +08:00
|
|
|
|
Sema::FindAssociatedClassesAndNamespaces(Expr **Args, unsigned NumArgs,
|
|
|
|
|
AssociatedNamespaceSet &AssociatedNamespaces,
|
2009-08-08 06:18:02 +08:00
|
|
|
|
AssociatedClassSet &AssociatedClasses) {
|
2009-02-04 08:32:51 +08:00
|
|
|
|
AssociatedNamespaces.clear();
|
|
|
|
|
AssociatedClasses.clear();
|
|
|
|
|
|
2010-05-29 02:45:08 +08:00
|
|
|
|
AssociatedLookup Result(*this, AssociatedNamespaces, AssociatedClasses);
|
|
|
|
|
|
2009-02-04 08:32:51 +08:00
|
|
|
|
// C++ [basic.lookup.koenig]p2:
|
|
|
|
|
// For each argument type T in the function call, there is a set
|
|
|
|
|
// of zero or more associated namespaces and a set of zero or more
|
|
|
|
|
// associated classes to be considered. The sets of namespaces and
|
|
|
|
|
// classes is determined entirely by the types of the function
|
|
|
|
|
// arguments (and the namespace of any template template
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// argument).
|
2009-02-04 08:32:51 +08:00
|
|
|
|
for (unsigned ArgIdx = 0; ArgIdx != NumArgs; ++ArgIdx) {
|
|
|
|
|
Expr *Arg = Args[ArgIdx];
|
|
|
|
|
|
|
|
|
|
if (Arg->getType() != Context.OverloadTy) {
|
2010-05-29 02:45:08 +08:00
|
|
|
|
addAssociatedClassesAndNamespaces(Result, Arg->getType());
|
2009-02-04 08:32:51 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// [...] In addition, if the argument is the name or address of a
|
|
|
|
|
// set of overloaded functions and/or function templates, its
|
|
|
|
|
// associated classes and namespaces are the union of those
|
|
|
|
|
// associated with each of the members of the set: the namespace
|
|
|
|
|
// in which the function or function template is defined and the
|
|
|
|
|
// classes and namespaces associated with its (non-dependent)
|
|
|
|
|
// parameter types and return type.
|
2009-07-08 18:57:20 +08:00
|
|
|
|
Arg = Arg->IgnoreParens();
|
2009-11-21 16:51:07 +08:00
|
|
|
|
if (UnaryOperator *unaryOp = dyn_cast<UnaryOperator>(Arg))
|
|
|
|
|
if (unaryOp->getOpcode() == UnaryOperator::AddrOf)
|
|
|
|
|
Arg = unaryOp->getSubExpr();
|
|
|
|
|
|
2010-05-29 02:45:08 +08:00
|
|
|
|
UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(Arg);
|
|
|
|
|
if (!ULE) continue;
|
2009-02-04 08:32:51 +08:00
|
|
|
|
|
2010-05-29 02:45:08 +08:00
|
|
|
|
for (UnresolvedSetIterator I = ULE->decls_begin(), E = ULE->decls_end();
|
|
|
|
|
I != E; ++I) {
|
2009-12-29 14:17:27 +08:00
|
|
|
|
// Look through any using declarations to find the underlying function.
|
|
|
|
|
NamedDecl *Fn = (*I)->getUnderlyingDecl();
|
2009-02-04 08:32:51 +08:00
|
|
|
|
|
2009-12-29 14:17:27 +08:00
|
|
|
|
FunctionDecl *FDecl = dyn_cast<FunctionDecl>(Fn);
|
|
|
|
|
if (!FDecl)
|
|
|
|
|
FDecl = cast<FunctionTemplateDecl>(Fn)->getTemplatedDecl();
|
2009-02-04 08:32:51 +08:00
|
|
|
|
|
|
|
|
|
// Add the classes and namespaces associated with the parameter
|
|
|
|
|
// types and return type of this function.
|
2010-05-29 02:45:08 +08:00
|
|
|
|
addAssociatedClassesAndNamespaces(Result, FDecl->getType());
|
2009-02-04 08:32:51 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-03-13 08:33:25 +08:00
|
|
|
|
|
|
|
|
|
/// IsAcceptableNonMemberOperatorCandidate - Determine whether Fn is
|
|
|
|
|
/// an acceptable non-member overloaded operator for a call whose
|
|
|
|
|
/// arguments have types T1 (and, if non-empty, T2). This routine
|
|
|
|
|
/// implements the check in C++ [over.match.oper]p3b2 concerning
|
|
|
|
|
/// enumeration types.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
static bool
|
2009-03-13 08:33:25 +08:00
|
|
|
|
IsAcceptableNonMemberOperatorCandidate(FunctionDecl *Fn,
|
|
|
|
|
QualType T1, QualType T2,
|
|
|
|
|
ASTContext &Context) {
|
2009-03-14 05:01:28 +08:00
|
|
|
|
if (T1->isDependentType() || (!T2.isNull() && T2->isDependentType()))
|
|
|
|
|
return true;
|
|
|
|
|
|
2009-03-13 08:33:25 +08:00
|
|
|
|
if (T1->isRecordType() || (!T2.isNull() && T2->isRecordType()))
|
|
|
|
|
return true;
|
|
|
|
|
|
2009-09-22 07:43:11 +08:00
|
|
|
|
const FunctionProtoType *Proto = Fn->getType()->getAs<FunctionProtoType>();
|
2009-03-13 08:33:25 +08:00
|
|
|
|
if (Proto->getNumArgs() < 1)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (T1->isEnumeralType()) {
|
|
|
|
|
QualType ArgType = Proto->getArgType(0).getNonReferenceType();
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
|
if (Context.hasSameUnqualifiedType(T1, ArgType))
|
2009-03-13 08:33:25 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Proto->getNumArgs() < 2)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (!T2.isNull() && T2->isEnumeralType()) {
|
|
|
|
|
QualType ArgType = Proto->getArgType(1).getNonReferenceType();
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
|
if (Context.hasSameUnqualifiedType(T2, ArgType))
|
2009-03-13 08:33:25 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-18 15:57:50 +08:00
|
|
|
|
NamedDecl *Sema::LookupSingleName(Scope *S, DeclarationName Name,
|
2010-04-16 06:33:43 +08:00
|
|
|
|
SourceLocation Loc,
|
2009-11-18 15:57:50 +08:00
|
|
|
|
LookupNameKind NameKind,
|
|
|
|
|
RedeclarationKind Redecl) {
|
2010-04-16 06:33:43 +08:00
|
|
|
|
LookupResult R(*this, Name, Loc, NameKind, Redecl);
|
2009-11-18 15:57:50 +08:00
|
|
|
|
LookupName(R, S);
|
2009-12-02 16:25:40 +08:00
|
|
|
|
return R.getAsSingle<NamedDecl>();
|
2009-11-18 15:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-04-24 07:18:26 +08:00
|
|
|
|
/// \brief Find the protocol with the given name, if any.
|
2010-04-16 06:33:43 +08:00
|
|
|
|
ObjCProtocolDecl *Sema::LookupProtocol(IdentifierInfo *II,
|
|
|
|
|
SourceLocation IdLoc) {
|
|
|
|
|
Decl *D = LookupSingleName(TUScope, II, IdLoc,
|
|
|
|
|
LookupObjCProtocolName);
|
2009-04-24 07:18:26 +08:00
|
|
|
|
return cast_or_null<ObjCProtocolDecl>(D);
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-13 08:33:25 +08:00
|
|
|
|
void Sema::LookupOverloadedOperatorName(OverloadedOperatorKind Op, Scope *S,
|
2009-09-09 23:08:12 +08:00
|
|
|
|
QualType T1, QualType T2,
|
2010-01-26 11:27:55 +08:00
|
|
|
|
UnresolvedSetImpl &Functions) {
|
2009-03-13 08:33:25 +08:00
|
|
|
|
// C++ [over.match.oper]p3:
|
|
|
|
|
// -- The set of non-member candidates is the result of the
|
|
|
|
|
// unqualified lookup of operator@ in the context of the
|
|
|
|
|
// expression according to the usual rules for name lookup in
|
|
|
|
|
// unqualified function calls (3.4.2) except that all member
|
|
|
|
|
// functions are ignored. However, if no operand has a class
|
|
|
|
|
// type, only those non-member functions in the lookup set
|
2009-08-06 03:21:58 +08:00
|
|
|
|
// that have a first parameter of type T1 or "reference to
|
|
|
|
|
// (possibly cv-qualified) T1", when T1 is an enumeration
|
2009-03-13 08:33:25 +08:00
|
|
|
|
// type, or (if there is a right operand) a second parameter
|
2009-08-06 03:21:58 +08:00
|
|
|
|
// of type T2 or "reference to (possibly cv-qualified) T2",
|
2009-03-13 08:33:25 +08:00
|
|
|
|
// when T2 is an enumeration type, are candidate functions.
|
|
|
|
|
DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op);
|
2009-11-17 10:14:36 +08:00
|
|
|
|
LookupResult Operators(*this, OpName, SourceLocation(), LookupOperatorName);
|
|
|
|
|
LookupName(Operators, S);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-03-13 08:33:25 +08:00
|
|
|
|
assert(!Operators.isAmbiguous() && "Operator lookup cannot be ambiguous");
|
|
|
|
|
|
2009-10-10 05:13:30 +08:00
|
|
|
|
if (Operators.empty())
|
2009-03-13 08:33:25 +08:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
for (LookupResult::iterator Op = Operators.begin(), OpEnd = Operators.end();
|
|
|
|
|
Op != OpEnd; ++Op) {
|
2010-04-26 04:25:43 +08:00
|
|
|
|
NamedDecl *Found = (*Op)->getUnderlyingDecl();
|
|
|
|
|
if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Found)) {
|
2009-03-13 08:33:25 +08:00
|
|
|
|
if (IsAcceptableNonMemberOperatorCandidate(FD, T1, T2, Context))
|
2010-04-26 04:25:43 +08:00
|
|
|
|
Functions.addDecl(*Op, Op.getAccess()); // FIXME: canonical FD
|
2009-09-09 23:08:12 +08:00
|
|
|
|
} else if (FunctionTemplateDecl *FunTmpl
|
2010-04-26 04:25:43 +08:00
|
|
|
|
= dyn_cast<FunctionTemplateDecl>(Found)) {
|
2009-06-28 05:05:07 +08:00
|
|
|
|
// FIXME: friend operators?
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// FIXME: do we need to check IsAcceptableNonMemberOperatorCandidate,
|
2009-06-28 05:05:07 +08:00
|
|
|
|
// later?
|
|
|
|
|
if (!FunTmpl->getDeclContext()->isRecord())
|
2010-04-26 04:25:43 +08:00
|
|
|
|
Functions.addDecl(*Op, Op.getAccess());
|
2009-06-28 05:05:07 +08:00
|
|
|
|
}
|
2009-03-13 08:33:25 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-03 07:12:18 +08:00
|
|
|
|
/// \brief Look up the constructors for the given class.
|
|
|
|
|
DeclContext::lookup_result Sema::LookupConstructors(CXXRecordDecl *Class) {
|
2010-07-03 07:41:54 +08:00
|
|
|
|
// If the copy constructor has not yet been declared, do so now.
|
2010-07-03 08:47:00 +08:00
|
|
|
|
if (CanDeclareSpecialMemberFunction(Context, Class)) {
|
|
|
|
|
if (!Class->hasDeclaredDefaultConstructor())
|
|
|
|
|
DeclareImplicitDefaultConstructor(Class);
|
|
|
|
|
if (!Class->hasDeclaredCopyConstructor())
|
|
|
|
|
DeclareImplicitCopyConstructor(Class);
|
|
|
|
|
}
|
2010-07-03 07:41:54 +08:00
|
|
|
|
|
2010-07-03 07:12:18 +08:00
|
|
|
|
CanQualType T = Context.getCanonicalType(Context.getTypeDeclType(Class));
|
|
|
|
|
DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(T);
|
|
|
|
|
return Class->lookup(Name);
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-02 06:47:18 +08:00
|
|
|
|
/// \brief Look for the destructor of the given class.
|
|
|
|
|
///
|
|
|
|
|
/// During semantic analysis, this routine should be used in lieu of
|
|
|
|
|
/// CXXRecordDecl::getDestructor().
|
|
|
|
|
///
|
|
|
|
|
/// \returns The destructor for this class.
|
|
|
|
|
CXXDestructorDecl *Sema::LookupDestructor(CXXRecordDecl *Class) {
|
2010-07-03 04:37:36 +08:00
|
|
|
|
// If the destructor has not yet been declared, do so now.
|
|
|
|
|
if (CanDeclareSpecialMemberFunction(Context, Class) &&
|
|
|
|
|
!Class->hasDeclaredDestructor())
|
|
|
|
|
DeclareImplicitDestructor(Class);
|
|
|
|
|
|
2010-07-02 06:47:18 +08:00
|
|
|
|
return Class->getDestructor();
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-26 15:16:45 +08:00
|
|
|
|
void ADLResult::insert(NamedDecl *New) {
|
|
|
|
|
NamedDecl *&Old = Decls[cast<NamedDecl>(New->getCanonicalDecl())];
|
|
|
|
|
|
|
|
|
|
// If we haven't yet seen a decl for this key, or the last decl
|
|
|
|
|
// was exactly this one, we're done.
|
|
|
|
|
if (Old == 0 || Old == New) {
|
|
|
|
|
Old = New;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Otherwise, decide which is a more recent redeclaration.
|
|
|
|
|
FunctionDecl *OldFD, *NewFD;
|
|
|
|
|
if (isa<FunctionTemplateDecl>(New)) {
|
|
|
|
|
OldFD = cast<FunctionTemplateDecl>(Old)->getTemplatedDecl();
|
|
|
|
|
NewFD = cast<FunctionTemplateDecl>(New)->getTemplatedDecl();
|
|
|
|
|
} else {
|
|
|
|
|
OldFD = cast<FunctionDecl>(Old);
|
|
|
|
|
NewFD = cast<FunctionDecl>(New);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FunctionDecl *Cursor = NewFD;
|
|
|
|
|
while (true) {
|
|
|
|
|
Cursor = Cursor->getPreviousDeclaration();
|
|
|
|
|
|
|
|
|
|
// If we got to the end without finding OldFD, OldFD is the newer
|
|
|
|
|
// declaration; leave things as they are.
|
|
|
|
|
if (!Cursor) return;
|
|
|
|
|
|
|
|
|
|
// If we do find OldFD, then NewFD is newer.
|
|
|
|
|
if (Cursor == OldFD) break;
|
|
|
|
|
|
|
|
|
|
// Otherwise, keep looking.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Old = New;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-24 03:23:15 +08:00
|
|
|
|
void Sema::ArgumentDependentLookup(DeclarationName Name, bool Operator,
|
2009-03-13 08:33:25 +08:00
|
|
|
|
Expr **Args, unsigned NumArgs,
|
2010-01-26 15:16:45 +08:00
|
|
|
|
ADLResult &Result) {
|
2009-03-13 08:33:25 +08:00
|
|
|
|
// Find all of the associated namespaces and classes based on the
|
|
|
|
|
// arguments we have.
|
|
|
|
|
AssociatedNamespaceSet AssociatedNamespaces;
|
|
|
|
|
AssociatedClassSet AssociatedClasses;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
FindAssociatedClassesAndNamespaces(Args, NumArgs,
|
2009-08-08 06:18:02 +08:00
|
|
|
|
AssociatedNamespaces,
|
|
|
|
|
AssociatedClasses);
|
2009-03-13 08:33:25 +08:00
|
|
|
|
|
2009-10-24 03:23:15 +08:00
|
|
|
|
QualType T1, T2;
|
|
|
|
|
if (Operator) {
|
|
|
|
|
T1 = Args[0]->getType();
|
|
|
|
|
if (NumArgs >= 2)
|
|
|
|
|
T2 = Args[1]->getType();
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-13 08:33:25 +08:00
|
|
|
|
// C++ [basic.lookup.argdep]p3:
|
|
|
|
|
// Let X be the lookup set produced by unqualified lookup (3.4.1)
|
|
|
|
|
// and let Y be the lookup set produced by argument dependent
|
|
|
|
|
// lookup (defined as follows). If X contains [...] then Y is
|
|
|
|
|
// empty. Otherwise Y is the set of declarations found in the
|
|
|
|
|
// namespaces associated with the argument types as described
|
|
|
|
|
// below. The set of declarations found by the lookup of the name
|
|
|
|
|
// is the union of X and Y.
|
|
|
|
|
//
|
|
|
|
|
// Here, we compute Y and add its members to the overloaded
|
|
|
|
|
// candidate set.
|
|
|
|
|
for (AssociatedNamespaceSet::iterator NS = AssociatedNamespaces.begin(),
|
2009-09-09 23:08:12 +08:00
|
|
|
|
NSEnd = AssociatedNamespaces.end();
|
|
|
|
|
NS != NSEnd; ++NS) {
|
2009-03-13 08:33:25 +08:00
|
|
|
|
// When considering an associated namespace, the lookup is the
|
|
|
|
|
// same as the lookup performed when the associated namespace is
|
|
|
|
|
// used as a qualifier (3.4.3.2) except that:
|
|
|
|
|
//
|
|
|
|
|
// -- Any using-directives in the associated namespace are
|
|
|
|
|
// ignored.
|
|
|
|
|
//
|
2009-08-08 06:18:02 +08:00
|
|
|
|
// -- Any namespace-scope friend functions declared in
|
2009-03-13 08:33:25 +08:00
|
|
|
|
// associated classes are visible within their respective
|
|
|
|
|
// namespaces even if they are not visible during an ordinary
|
|
|
|
|
// lookup (11.4).
|
2009-06-24 04:14:09 +08:00
|
|
|
|
DeclContext::lookup_iterator I, E;
|
2009-08-11 14:59:38 +08:00
|
|
|
|
for (llvm::tie(I, E) = (*NS)->lookup(Name); I != E; ++I) {
|
2010-01-26 11:27:55 +08:00
|
|
|
|
NamedDecl *D = *I;
|
2009-08-28 15:59:38 +08:00
|
|
|
|
// If the only declaration here is an ordinary friend, consider
|
|
|
|
|
// it only if it was declared in an associated classes.
|
|
|
|
|
if (D->getIdentifierNamespace() == Decl::IDNS_OrdinaryFriend) {
|
2009-08-11 14:59:38 +08:00
|
|
|
|
DeclContext *LexDC = D->getLexicalDeclContext();
|
|
|
|
|
if (!AssociatedClasses.count(cast<CXXRecordDecl>(LexDC)))
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-01-26 14:04:06 +08:00
|
|
|
|
if (isa<UsingShadowDecl>(D))
|
|
|
|
|
D = cast<UsingShadowDecl>(D)->getTargetDecl();
|
|
|
|
|
|
|
|
|
|
if (isa<FunctionDecl>(D)) {
|
|
|
|
|
if (Operator &&
|
|
|
|
|
!IsAcceptableNonMemberOperatorCandidate(cast<FunctionDecl>(D),
|
|
|
|
|
T1, T2, Context))
|
|
|
|
|
continue;
|
2010-01-26 15:16:45 +08:00
|
|
|
|
} else if (!isa<FunctionTemplateDecl>(D))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
Result.insert(D);
|
2009-06-24 04:14:09 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-03-13 08:33:25 +08:00
|
|
|
|
}
|
2009-12-31 01:04:44 +08:00
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
// Search for all visible declarations.
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
VisibleDeclConsumer::~VisibleDeclConsumer() { }
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
class ShadowContextRAII;
|
|
|
|
|
|
|
|
|
|
class VisibleDeclsRecord {
|
|
|
|
|
public:
|
|
|
|
|
/// \brief An entry in the shadow map, which is optimized to store a
|
|
|
|
|
/// single declaration (the common case) but can also store a list
|
|
|
|
|
/// of declarations.
|
|
|
|
|
class ShadowMapEntry {
|
|
|
|
|
typedef llvm::SmallVector<NamedDecl *, 4> DeclVector;
|
|
|
|
|
|
|
|
|
|
/// \brief Contains either the solitary NamedDecl * or a vector
|
|
|
|
|
/// of declarations.
|
|
|
|
|
llvm::PointerUnion<NamedDecl *, DeclVector*> DeclOrVector;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
ShadowMapEntry() : DeclOrVector() { }
|
|
|
|
|
|
|
|
|
|
void Add(NamedDecl *ND);
|
|
|
|
|
void Destroy();
|
|
|
|
|
|
|
|
|
|
// Iteration.
|
|
|
|
|
typedef NamedDecl **iterator;
|
|
|
|
|
iterator begin();
|
|
|
|
|
iterator end();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
/// \brief A mapping from declaration names to the declarations that have
|
|
|
|
|
/// this name within a particular scope.
|
|
|
|
|
typedef llvm::DenseMap<DeclarationName, ShadowMapEntry> ShadowMap;
|
|
|
|
|
|
|
|
|
|
/// \brief A list of shadow maps, which is used to model name hiding.
|
|
|
|
|
std::list<ShadowMap> ShadowMaps;
|
|
|
|
|
|
|
|
|
|
/// \brief The declaration contexts we have already visited.
|
|
|
|
|
llvm::SmallPtrSet<DeclContext *, 8> VisitedContexts;
|
|
|
|
|
|
|
|
|
|
friend class ShadowContextRAII;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
/// \brief Determine whether we have already visited this context
|
|
|
|
|
/// (and, if not, note that we are going to visit that context now).
|
|
|
|
|
bool visitedContext(DeclContext *Ctx) {
|
|
|
|
|
return !VisitedContexts.insert(Ctx);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// \brief Determine whether the given declaration is hidden in the
|
|
|
|
|
/// current scope.
|
|
|
|
|
///
|
|
|
|
|
/// \returns the declaration that hides the given declaration, or
|
|
|
|
|
/// NULL if no such declaration exists.
|
|
|
|
|
NamedDecl *checkHidden(NamedDecl *ND);
|
|
|
|
|
|
|
|
|
|
/// \brief Add a declaration to the current shadow map.
|
|
|
|
|
void add(NamedDecl *ND) { ShadowMaps.back()[ND->getDeclName()].Add(ND); }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// \brief RAII object that records when we've entered a shadow context.
|
|
|
|
|
class ShadowContextRAII {
|
|
|
|
|
VisibleDeclsRecord &Visible;
|
|
|
|
|
|
|
|
|
|
typedef VisibleDeclsRecord::ShadowMap ShadowMap;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
ShadowContextRAII(VisibleDeclsRecord &Visible) : Visible(Visible) {
|
|
|
|
|
Visible.ShadowMaps.push_back(ShadowMap());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~ShadowContextRAII() {
|
|
|
|
|
for (ShadowMap::iterator E = Visible.ShadowMaps.back().begin(),
|
|
|
|
|
EEnd = Visible.ShadowMaps.back().end();
|
|
|
|
|
E != EEnd;
|
|
|
|
|
++E)
|
|
|
|
|
E->second.Destroy();
|
|
|
|
|
|
|
|
|
|
Visible.ShadowMaps.pop_back();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
|
|
void VisibleDeclsRecord::ShadowMapEntry::Add(NamedDecl *ND) {
|
|
|
|
|
if (DeclOrVector.isNull()) {
|
|
|
|
|
// 0 - > 1 elements: just set the single element information.
|
|
|
|
|
DeclOrVector = ND;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (NamedDecl *PrevND = DeclOrVector.dyn_cast<NamedDecl *>()) {
|
|
|
|
|
// 1 -> 2 elements: create the vector of results and push in the
|
|
|
|
|
// existing declaration.
|
|
|
|
|
DeclVector *Vec = new DeclVector;
|
|
|
|
|
Vec->push_back(PrevND);
|
|
|
|
|
DeclOrVector = Vec;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Add the new element to the end of the vector.
|
|
|
|
|
DeclOrVector.get<DeclVector*>()->push_back(ND);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VisibleDeclsRecord::ShadowMapEntry::Destroy() {
|
|
|
|
|
if (DeclVector *Vec = DeclOrVector.dyn_cast<DeclVector *>()) {
|
|
|
|
|
delete Vec;
|
|
|
|
|
DeclOrVector = ((NamedDecl *)0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VisibleDeclsRecord::ShadowMapEntry::iterator
|
|
|
|
|
VisibleDeclsRecord::ShadowMapEntry::begin() {
|
|
|
|
|
if (DeclOrVector.isNull())
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (DeclOrVector.dyn_cast<NamedDecl *>())
|
|
|
|
|
return &reinterpret_cast<NamedDecl*&>(DeclOrVector);
|
|
|
|
|
|
|
|
|
|
return DeclOrVector.get<DeclVector *>()->begin();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VisibleDeclsRecord::ShadowMapEntry::iterator
|
|
|
|
|
VisibleDeclsRecord::ShadowMapEntry::end() {
|
|
|
|
|
if (DeclOrVector.isNull())
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (DeclOrVector.dyn_cast<NamedDecl *>())
|
|
|
|
|
return &reinterpret_cast<NamedDecl*&>(DeclOrVector) + 1;
|
|
|
|
|
|
|
|
|
|
return DeclOrVector.get<DeclVector *>()->end();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NamedDecl *VisibleDeclsRecord::checkHidden(NamedDecl *ND) {
|
2010-01-14 08:06:47 +08:00
|
|
|
|
// Look through using declarations.
|
|
|
|
|
ND = ND->getUnderlyingDecl();
|
|
|
|
|
|
2009-12-31 01:04:44 +08:00
|
|
|
|
unsigned IDNS = ND->getIdentifierNamespace();
|
|
|
|
|
std::list<ShadowMap>::reverse_iterator SM = ShadowMaps.rbegin();
|
|
|
|
|
for (std::list<ShadowMap>::reverse_iterator SMEnd = ShadowMaps.rend();
|
|
|
|
|
SM != SMEnd; ++SM) {
|
|
|
|
|
ShadowMap::iterator Pos = SM->find(ND->getDeclName());
|
|
|
|
|
if (Pos == SM->end())
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
for (ShadowMapEntry::iterator I = Pos->second.begin(),
|
|
|
|
|
IEnd = Pos->second.end();
|
|
|
|
|
I != IEnd; ++I) {
|
|
|
|
|
// A tag declaration does not hide a non-tag declaration.
|
2010-04-24 02:46:30 +08:00
|
|
|
|
if ((*I)->hasTagIdentifierNamespace() &&
|
2009-12-31 01:04:44 +08:00
|
|
|
|
(IDNS & (Decl::IDNS_Member | Decl::IDNS_Ordinary |
|
|
|
|
|
Decl::IDNS_ObjCProtocol)))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
// Protocols are in distinct namespaces from everything else.
|
|
|
|
|
if ((((*I)->getIdentifierNamespace() & Decl::IDNS_ObjCProtocol)
|
|
|
|
|
|| (IDNS & Decl::IDNS_ObjCProtocol)) &&
|
|
|
|
|
(*I)->getIdentifierNamespace() != IDNS)
|
|
|
|
|
continue;
|
|
|
|
|
|
2010-01-14 23:47:35 +08:00
|
|
|
|
// Functions and function templates in the same scope overload
|
|
|
|
|
// rather than hide. FIXME: Look for hiding based on function
|
|
|
|
|
// signatures!
|
2010-01-14 11:35:48 +08:00
|
|
|
|
if ((*I)->isFunctionOrFunctionTemplate() &&
|
2010-01-14 23:47:35 +08:00
|
|
|
|
ND->isFunctionOrFunctionTemplate() &&
|
|
|
|
|
SM == ShadowMaps.rbegin())
|
2010-01-14 11:35:48 +08:00
|
|
|
|
continue;
|
|
|
|
|
|
2009-12-31 01:04:44 +08:00
|
|
|
|
// We've found a declaration that hides this one.
|
|
|
|
|
return *I;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void LookupVisibleDecls(DeclContext *Ctx, LookupResult &Result,
|
|
|
|
|
bool QualifiedNameLookup,
|
2010-01-14 23:47:35 +08:00
|
|
|
|
bool InBaseClass,
|
2009-12-31 01:04:44 +08:00
|
|
|
|
VisibleDeclConsumer &Consumer,
|
|
|
|
|
VisibleDeclsRecord &Visited) {
|
2010-02-05 07:42:48 +08:00
|
|
|
|
if (!Ctx)
|
|
|
|
|
return;
|
|
|
|
|
|
2009-12-31 01:04:44 +08:00
|
|
|
|
// Make sure we don't visit the same context twice.
|
|
|
|
|
if (Visited.visitedContext(Ctx->getPrimaryContext()))
|
|
|
|
|
return;
|
|
|
|
|
|
2010-07-03 04:37:36 +08:00
|
|
|
|
if (CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(Ctx))
|
|
|
|
|
Result.getSema().ForceDeclarationOfImplicitMembers(Class);
|
|
|
|
|
|
2009-12-31 01:04:44 +08:00
|
|
|
|
// Enumerate all of the results in this context.
|
|
|
|
|
for (DeclContext *CurCtx = Ctx->getPrimaryContext(); CurCtx;
|
|
|
|
|
CurCtx = CurCtx->getNextContext()) {
|
|
|
|
|
for (DeclContext::decl_iterator D = CurCtx->decls_begin(),
|
|
|
|
|
DEnd = CurCtx->decls_end();
|
|
|
|
|
D != DEnd; ++D) {
|
|
|
|
|
if (NamedDecl *ND = dyn_cast<NamedDecl>(*D))
|
|
|
|
|
if (Result.isAcceptableDecl(ND)) {
|
2010-01-14 23:47:35 +08:00
|
|
|
|
Consumer.FoundDecl(ND, Visited.checkHidden(ND), InBaseClass);
|
2009-12-31 01:04:44 +08:00
|
|
|
|
Visited.add(ND);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Visit transparent contexts inside this context.
|
|
|
|
|
if (DeclContext *InnerCtx = dyn_cast<DeclContext>(*D)) {
|
|
|
|
|
if (InnerCtx->isTransparentContext())
|
2010-01-14 23:47:35 +08:00
|
|
|
|
LookupVisibleDecls(InnerCtx, Result, QualifiedNameLookup, InBaseClass,
|
2009-12-31 01:04:44 +08:00
|
|
|
|
Consumer, Visited);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Traverse using directives for qualified name lookup.
|
|
|
|
|
if (QualifiedNameLookup) {
|
|
|
|
|
ShadowContextRAII Shadow(Visited);
|
|
|
|
|
DeclContext::udir_iterator I, E;
|
|
|
|
|
for (llvm::tie(I, E) = Ctx->getUsingDirectives(); I != E; ++I) {
|
|
|
|
|
LookupVisibleDecls((*I)->getNominatedNamespace(), Result,
|
2010-01-14 23:47:35 +08:00
|
|
|
|
QualifiedNameLookup, InBaseClass, Consumer, Visited);
|
2009-12-31 01:04:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-04 02:01:57 +08:00
|
|
|
|
// Traverse the contexts of inherited C++ classes.
|
2009-12-31 01:04:44 +08:00
|
|
|
|
if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx)) {
|
2010-02-05 06:26:26 +08:00
|
|
|
|
if (!Record->hasDefinition())
|
|
|
|
|
return;
|
|
|
|
|
|
2009-12-31 01:04:44 +08:00
|
|
|
|
for (CXXRecordDecl::base_class_iterator B = Record->bases_begin(),
|
|
|
|
|
BEnd = Record->bases_end();
|
|
|
|
|
B != BEnd; ++B) {
|
|
|
|
|
QualType BaseType = B->getType();
|
|
|
|
|
|
|
|
|
|
// Don't look into dependent bases, because name lookup can't look
|
|
|
|
|
// there anyway.
|
|
|
|
|
if (BaseType->isDependentType())
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
const RecordType *Record = BaseType->getAs<RecordType>();
|
|
|
|
|
if (!Record)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
// FIXME: It would be nice to be able to determine whether referencing
|
|
|
|
|
// a particular member would be ambiguous. For example, given
|
|
|
|
|
//
|
|
|
|
|
// struct A { int member; };
|
|
|
|
|
// struct B { int member; };
|
|
|
|
|
// struct C : A, B { };
|
|
|
|
|
//
|
|
|
|
|
// void f(C *c) { c->### }
|
|
|
|
|
//
|
|
|
|
|
// accessing 'member' would result in an ambiguity. However, we
|
|
|
|
|
// could be smart enough to qualify the member with the base
|
|
|
|
|
// class, e.g.,
|
|
|
|
|
//
|
|
|
|
|
// c->B::member
|
|
|
|
|
//
|
|
|
|
|
// or
|
|
|
|
|
//
|
|
|
|
|
// c->A::member
|
|
|
|
|
|
|
|
|
|
// Find results in this base class (and its bases).
|
|
|
|
|
ShadowContextRAII Shadow(Visited);
|
|
|
|
|
LookupVisibleDecls(Record->getDecl(), Result, QualifiedNameLookup,
|
2010-01-14 23:47:35 +08:00
|
|
|
|
true, Consumer, Visited);
|
2009-12-31 01:04:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-04 02:01:57 +08:00
|
|
|
|
// Traverse the contexts of Objective-C classes.
|
|
|
|
|
if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Ctx)) {
|
|
|
|
|
// Traverse categories.
|
|
|
|
|
for (ObjCCategoryDecl *Category = IFace->getCategoryList();
|
|
|
|
|
Category; Category = Category->getNextClassCategory()) {
|
|
|
|
|
ShadowContextRAII Shadow(Visited);
|
2010-01-14 23:47:35 +08:00
|
|
|
|
LookupVisibleDecls(Category, Result, QualifiedNameLookup, false,
|
|
|
|
|
Consumer, Visited);
|
2010-01-04 02:01:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Traverse protocols.
|
|
|
|
|
for (ObjCInterfaceDecl::protocol_iterator I = IFace->protocol_begin(),
|
|
|
|
|
E = IFace->protocol_end(); I != E; ++I) {
|
|
|
|
|
ShadowContextRAII Shadow(Visited);
|
2010-01-14 23:47:35 +08:00
|
|
|
|
LookupVisibleDecls(*I, Result, QualifiedNameLookup, false, Consumer,
|
|
|
|
|
Visited);
|
2010-01-04 02:01:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Traverse the superclass.
|
|
|
|
|
if (IFace->getSuperClass()) {
|
|
|
|
|
ShadowContextRAII Shadow(Visited);
|
|
|
|
|
LookupVisibleDecls(IFace->getSuperClass(), Result, QualifiedNameLookup,
|
2010-01-14 23:47:35 +08:00
|
|
|
|
true, Consumer, Visited);
|
2010-01-04 02:01:57 +08:00
|
|
|
|
}
|
2010-04-20 02:02:19 +08:00
|
|
|
|
|
|
|
|
|
// If there is an implementation, traverse it. We do this to find
|
|
|
|
|
// synthesized ivars.
|
|
|
|
|
if (IFace->getImplementation()) {
|
|
|
|
|
ShadowContextRAII Shadow(Visited);
|
|
|
|
|
LookupVisibleDecls(IFace->getImplementation(), Result,
|
|
|
|
|
QualifiedNameLookup, true, Consumer, Visited);
|
|
|
|
|
}
|
2010-01-04 02:01:57 +08:00
|
|
|
|
} else if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Ctx)) {
|
|
|
|
|
for (ObjCProtocolDecl::protocol_iterator I = Protocol->protocol_begin(),
|
|
|
|
|
E = Protocol->protocol_end(); I != E; ++I) {
|
|
|
|
|
ShadowContextRAII Shadow(Visited);
|
2010-01-14 23:47:35 +08:00
|
|
|
|
LookupVisibleDecls(*I, Result, QualifiedNameLookup, false, Consumer,
|
|
|
|
|
Visited);
|
2010-01-04 02:01:57 +08:00
|
|
|
|
}
|
|
|
|
|
} else if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Ctx)) {
|
|
|
|
|
for (ObjCCategoryDecl::protocol_iterator I = Category->protocol_begin(),
|
|
|
|
|
E = Category->protocol_end(); I != E; ++I) {
|
|
|
|
|
ShadowContextRAII Shadow(Visited);
|
2010-01-14 23:47:35 +08:00
|
|
|
|
LookupVisibleDecls(*I, Result, QualifiedNameLookup, false, Consumer,
|
|
|
|
|
Visited);
|
2010-01-04 02:01:57 +08:00
|
|
|
|
}
|
2010-04-20 02:02:19 +08:00
|
|
|
|
|
|
|
|
|
// If there is an implementation, traverse it.
|
|
|
|
|
if (Category->getImplementation()) {
|
|
|
|
|
ShadowContextRAII Shadow(Visited);
|
|
|
|
|
LookupVisibleDecls(Category->getImplementation(), Result,
|
|
|
|
|
QualifiedNameLookup, true, Consumer, Visited);
|
|
|
|
|
}
|
2010-01-04 02:01:57 +08:00
|
|
|
|
}
|
2009-12-31 01:04:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void LookupVisibleDecls(Scope *S, LookupResult &Result,
|
|
|
|
|
UnqualUsingDirectiveSet &UDirs,
|
|
|
|
|
VisibleDeclConsumer &Consumer,
|
|
|
|
|
VisibleDeclsRecord &Visited) {
|
|
|
|
|
if (!S)
|
|
|
|
|
return;
|
|
|
|
|
|
2010-01-07 08:31:29 +08:00
|
|
|
|
if (!S->getEntity() || !S->getParent() ||
|
|
|
|
|
((DeclContext *)S->getEntity())->isFunctionOrMethod()) {
|
|
|
|
|
// Walk through the declarations in this Scope.
|
|
|
|
|
for (Scope::decl_iterator D = S->decl_begin(), DEnd = S->decl_end();
|
|
|
|
|
D != DEnd; ++D) {
|
|
|
|
|
if (NamedDecl *ND = dyn_cast<NamedDecl>((Decl *)((*D).get())))
|
|
|
|
|
if (Result.isAcceptableDecl(ND)) {
|
2010-01-14 23:47:35 +08:00
|
|
|
|
Consumer.FoundDecl(ND, Visited.checkHidden(ND), false);
|
2010-01-07 08:31:29 +08:00
|
|
|
|
Visited.add(ND);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-15 22:33:29 +08:00
|
|
|
|
// FIXME: C++ [temp.local]p8
|
2009-12-31 01:04:44 +08:00
|
|
|
|
DeclContext *Entity = 0;
|
2010-01-02 01:44:25 +08:00
|
|
|
|
if (S->getEntity()) {
|
2009-12-31 01:04:44 +08:00
|
|
|
|
// Look into this scope's declaration context, along with any of its
|
|
|
|
|
// parent lookup contexts (e.g., enclosing classes), up to the point
|
|
|
|
|
// where we hit the context stored in the next outer scope.
|
|
|
|
|
Entity = (DeclContext *)S->getEntity();
|
2010-03-15 22:33:29 +08:00
|
|
|
|
DeclContext *OuterCtx = findOuterContext(S).first; // FIXME
|
2009-12-31 01:04:44 +08:00
|
|
|
|
|
2010-03-15 23:26:48 +08:00
|
|
|
|
for (DeclContext *Ctx = Entity; Ctx && !Ctx->Equals(OuterCtx);
|
2009-12-31 01:04:44 +08:00
|
|
|
|
Ctx = Ctx->getLookupParent()) {
|
2010-01-04 02:01:57 +08:00
|
|
|
|
if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(Ctx)) {
|
|
|
|
|
if (Method->isInstanceMethod()) {
|
|
|
|
|
// For instance methods, look for ivars in the method's interface.
|
|
|
|
|
LookupResult IvarResult(Result.getSema(), Result.getLookupName(),
|
|
|
|
|
Result.getNameLoc(), Sema::LookupMemberName);
|
2010-02-05 07:42:48 +08:00
|
|
|
|
if (ObjCInterfaceDecl *IFace = Method->getClassInterface())
|
|
|
|
|
LookupVisibleDecls(IFace, IvarResult, /*QualifiedNameLookup=*/false,
|
|
|
|
|
/*InBaseClass=*/false, Consumer, Visited);
|
2010-01-04 02:01:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We've already performed all of the name lookup that we need
|
|
|
|
|
// to for Objective-C methods; the next context will be the
|
|
|
|
|
// outer scope.
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-31 01:04:44 +08:00
|
|
|
|
if (Ctx->isFunctionOrMethod())
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
LookupVisibleDecls(Ctx, Result, /*QualifiedNameLookup=*/false,
|
2010-01-14 23:47:35 +08:00
|
|
|
|
/*InBaseClass=*/false, Consumer, Visited);
|
2009-12-31 01:04:44 +08:00
|
|
|
|
}
|
|
|
|
|
} else if (!S->getParent()) {
|
|
|
|
|
// Look into the translation unit scope. We walk through the translation
|
|
|
|
|
// unit's declaration context, because the Scope itself won't have all of
|
|
|
|
|
// the declarations if we loaded a precompiled header.
|
|
|
|
|
// FIXME: We would like the translation unit's Scope object to point to the
|
|
|
|
|
// translation unit, so we don't need this special "if" branch. However,
|
|
|
|
|
// doing so would force the normal C++ name-lookup code to look into the
|
|
|
|
|
// translation unit decl when the IdentifierInfo chains would suffice.
|
|
|
|
|
// Once we fix that problem (which is part of a more general "don't look
|
2010-01-07 08:31:29 +08:00
|
|
|
|
// in DeclContexts unless we have to" optimization), we can eliminate this.
|
2009-12-31 01:04:44 +08:00
|
|
|
|
Entity = Result.getSema().Context.getTranslationUnitDecl();
|
|
|
|
|
LookupVisibleDecls(Entity, Result, /*QualifiedNameLookup=*/false,
|
2010-01-14 23:47:35 +08:00
|
|
|
|
/*InBaseClass=*/false, Consumer, Visited);
|
2010-01-07 08:31:29 +08:00
|
|
|
|
}
|
2009-12-31 01:04:44 +08:00
|
|
|
|
|
|
|
|
|
if (Entity) {
|
|
|
|
|
// Lookup visible declarations in any namespaces found by using
|
|
|
|
|
// directives.
|
|
|
|
|
UnqualUsingDirectiveSet::const_iterator UI, UEnd;
|
|
|
|
|
llvm::tie(UI, UEnd) = UDirs.getNamespacesFor(Entity);
|
|
|
|
|
for (; UI != UEnd; ++UI)
|
|
|
|
|
LookupVisibleDecls(const_cast<DeclContext *>(UI->getNominatedNamespace()),
|
2010-01-14 23:47:35 +08:00
|
|
|
|
Result, /*QualifiedNameLookup=*/false,
|
|
|
|
|
/*InBaseClass=*/false, Consumer, Visited);
|
2009-12-31 01:04:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lookup names in the parent scope.
|
|
|
|
|
ShadowContextRAII Shadow(Visited);
|
|
|
|
|
LookupVisibleDecls(S->getParent(), Result, UDirs, Consumer, Visited);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Sema::LookupVisibleDecls(Scope *S, LookupNameKind Kind,
|
|
|
|
|
VisibleDeclConsumer &Consumer) {
|
|
|
|
|
// Determine the set of using directives available during
|
|
|
|
|
// unqualified name lookup.
|
|
|
|
|
Scope *Initial = S;
|
|
|
|
|
UnqualUsingDirectiveSet UDirs;
|
|
|
|
|
if (getLangOptions().CPlusPlus) {
|
|
|
|
|
// Find the first namespace or translation-unit scope.
|
|
|
|
|
while (S && !isNamespaceOrTranslationUnitScope(S))
|
|
|
|
|
S = S->getParent();
|
|
|
|
|
|
|
|
|
|
UDirs.visitScopeChain(Initial, S);
|
|
|
|
|
}
|
|
|
|
|
UDirs.done();
|
|
|
|
|
|
|
|
|
|
// Look for visible declarations.
|
|
|
|
|
LookupResult Result(*this, DeclarationName(), SourceLocation(), Kind);
|
|
|
|
|
VisibleDeclsRecord Visited;
|
|
|
|
|
ShadowContextRAII Shadow(Visited);
|
|
|
|
|
::LookupVisibleDecls(Initial, Result, UDirs, Consumer, Visited);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Sema::LookupVisibleDecls(DeclContext *Ctx, LookupNameKind Kind,
|
|
|
|
|
VisibleDeclConsumer &Consumer) {
|
|
|
|
|
LookupResult Result(*this, DeclarationName(), SourceLocation(), Kind);
|
|
|
|
|
VisibleDeclsRecord Visited;
|
|
|
|
|
ShadowContextRAII Shadow(Visited);
|
2010-01-14 23:47:35 +08:00
|
|
|
|
::LookupVisibleDecls(Ctx, Result, /*QualifiedNameLookup=*/true,
|
|
|
|
|
/*InBaseClass=*/false, Consumer, Visited);
|
2009-12-31 01:04:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
// Typo correction
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
class TypoCorrectionConsumer : public VisibleDeclConsumer {
|
|
|
|
|
/// \brief The name written that is a typo in the source.
|
|
|
|
|
llvm::StringRef Typo;
|
|
|
|
|
|
|
|
|
|
/// \brief The results found that have the smallest edit distance
|
|
|
|
|
/// found (so far) with the typo name.
|
|
|
|
|
llvm::SmallVector<NamedDecl *, 4> BestResults;
|
|
|
|
|
|
2010-04-15 04:04:41 +08:00
|
|
|
|
/// \brief The keywords that have the smallest edit distance.
|
|
|
|
|
llvm::SmallVector<IdentifierInfo *, 4> BestKeywords;
|
|
|
|
|
|
2009-12-31 01:04:44 +08:00
|
|
|
|
/// \brief The best edit distance found so far.
|
|
|
|
|
unsigned BestEditDistance;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit TypoCorrectionConsumer(IdentifierInfo *Typo)
|
|
|
|
|
: Typo(Typo->getName()) { }
|
|
|
|
|
|
2010-01-14 23:47:35 +08:00
|
|
|
|
virtual void FoundDecl(NamedDecl *ND, NamedDecl *Hiding, bool InBaseClass);
|
2010-04-15 04:04:41 +08:00
|
|
|
|
void addKeywordResult(ASTContext &Context, llvm::StringRef Keyword);
|
2009-12-31 01:04:44 +08:00
|
|
|
|
|
|
|
|
|
typedef llvm::SmallVector<NamedDecl *, 4>::const_iterator iterator;
|
|
|
|
|
iterator begin() const { return BestResults.begin(); }
|
|
|
|
|
iterator end() const { return BestResults.end(); }
|
2010-04-15 04:04:41 +08:00
|
|
|
|
void clear_decls() { BestResults.clear(); }
|
|
|
|
|
|
|
|
|
|
bool empty() const { return BestResults.empty() && BestKeywords.empty(); }
|
|
|
|
|
|
|
|
|
|
typedef llvm::SmallVector<IdentifierInfo *, 4>::const_iterator
|
|
|
|
|
keyword_iterator;
|
|
|
|
|
keyword_iterator keyword_begin() const { return BestKeywords.begin(); }
|
|
|
|
|
keyword_iterator keyword_end() const { return BestKeywords.end(); }
|
|
|
|
|
bool keyword_empty() const { return BestKeywords.empty(); }
|
|
|
|
|
unsigned keyword_size() const { return BestKeywords.size(); }
|
|
|
|
|
|
|
|
|
|
unsigned getBestEditDistance() const { return BestEditDistance; }
|
2009-12-31 01:04:44 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-14 23:47:35 +08:00
|
|
|
|
void TypoCorrectionConsumer::FoundDecl(NamedDecl *ND, NamedDecl *Hiding,
|
|
|
|
|
bool InBaseClass) {
|
2009-12-31 01:04:44 +08:00
|
|
|
|
// Don't consider hidden names for typo correction.
|
|
|
|
|
if (Hiding)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// Only consider entities with identifiers for names, ignoring
|
|
|
|
|
// special names (constructors, overloaded operators, selectors,
|
|
|
|
|
// etc.).
|
|
|
|
|
IdentifierInfo *Name = ND->getIdentifier();
|
|
|
|
|
if (!Name)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// Compute the edit distance between the typo and the name of this
|
|
|
|
|
// entity. If this edit distance is not worse than the best edit
|
|
|
|
|
// distance we've seen so far, add it to the list of results.
|
|
|
|
|
unsigned ED = Typo.edit_distance(Name->getName());
|
2010-04-15 04:04:41 +08:00
|
|
|
|
if (!BestResults.empty() || !BestKeywords.empty()) {
|
2009-12-31 01:04:44 +08:00
|
|
|
|
if (ED < BestEditDistance) {
|
|
|
|
|
// This result is better than any we've seen before; clear out
|
|
|
|
|
// the previous results.
|
|
|
|
|
BestResults.clear();
|
2010-04-15 04:04:41 +08:00
|
|
|
|
BestKeywords.clear();
|
2009-12-31 01:04:44 +08:00
|
|
|
|
BestEditDistance = ED;
|
|
|
|
|
} else if (ED > BestEditDistance) {
|
|
|
|
|
// This result is worse than the best results we've seen so far;
|
|
|
|
|
// ignore it.
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
} else
|
|
|
|
|
BestEditDistance = ED;
|
|
|
|
|
|
|
|
|
|
BestResults.push_back(ND);
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-15 04:04:41 +08:00
|
|
|
|
void TypoCorrectionConsumer::addKeywordResult(ASTContext &Context,
|
|
|
|
|
llvm::StringRef Keyword) {
|
|
|
|
|
// Compute the edit distance between the typo and this keyword.
|
|
|
|
|
// If this edit distance is not worse than the best edit
|
|
|
|
|
// distance we've seen so far, add it to the list of results.
|
|
|
|
|
unsigned ED = Typo.edit_distance(Keyword);
|
|
|
|
|
if (!BestResults.empty() || !BestKeywords.empty()) {
|
|
|
|
|
if (ED < BestEditDistance) {
|
|
|
|
|
BestResults.clear();
|
|
|
|
|
BestKeywords.clear();
|
|
|
|
|
BestEditDistance = ED;
|
|
|
|
|
} else if (ED > BestEditDistance) {
|
|
|
|
|
// This result is worse than the best results we've seen so far;
|
|
|
|
|
// ignore it.
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
} else
|
|
|
|
|
BestEditDistance = ED;
|
|
|
|
|
|
|
|
|
|
BestKeywords.push_back(&Context.Idents.get(Keyword));
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-31 01:04:44 +08:00
|
|
|
|
/// \brief Try to "correct" a typo in the source code by finding
|
|
|
|
|
/// visible declarations whose names are similar to the name that was
|
|
|
|
|
/// present in the source code.
|
|
|
|
|
///
|
|
|
|
|
/// \param Res the \c LookupResult structure that contains the name
|
|
|
|
|
/// that was present in the source code along with the name-lookup
|
|
|
|
|
/// criteria used to search for the name. On success, this structure
|
|
|
|
|
/// will contain the results of name lookup.
|
|
|
|
|
///
|
|
|
|
|
/// \param S the scope in which name lookup occurs.
|
|
|
|
|
///
|
|
|
|
|
/// \param SS the nested-name-specifier that precedes the name we're
|
|
|
|
|
/// looking for, if present.
|
|
|
|
|
///
|
2009-12-31 15:42:17 +08:00
|
|
|
|
/// \param MemberContext if non-NULL, the context in which to look for
|
|
|
|
|
/// a member access expression.
|
|
|
|
|
///
|
2009-12-31 13:20:13 +08:00
|
|
|
|
/// \param EnteringContext whether we're entering the context described by
|
|
|
|
|
/// the nested-name-specifier SS.
|
|
|
|
|
///
|
2010-04-15 04:04:41 +08:00
|
|
|
|
/// \param CTC The context in which typo correction occurs, which impacts the
|
|
|
|
|
/// set of keywords permitted.
|
|
|
|
|
///
|
2010-01-04 02:01:57 +08:00
|
|
|
|
/// \param OPT when non-NULL, the search for visible declarations will
|
|
|
|
|
/// also walk the protocols in the qualified interfaces of \p OPT.
|
|
|
|
|
///
|
2010-04-15 01:09:22 +08:00
|
|
|
|
/// \returns the corrected name if the typo was corrected, otherwise returns an
|
|
|
|
|
/// empty \c DeclarationName. When a typo was corrected, the result structure
|
|
|
|
|
/// may contain the results of name lookup for the correct name or it may be
|
|
|
|
|
/// empty.
|
|
|
|
|
DeclarationName Sema::CorrectTypo(LookupResult &Res, Scope *S, CXXScopeSpec *SS,
|
2010-04-15 04:04:41 +08:00
|
|
|
|
DeclContext *MemberContext,
|
|
|
|
|
bool EnteringContext,
|
|
|
|
|
CorrectTypoContext CTC,
|
|
|
|
|
const ObjCObjectPointerType *OPT) {
|
2010-07-10 01:35:33 +08:00
|
|
|
|
if (Diags.hasFatalErrorOccurred() || !getLangOptions().SpellChecking)
|
2010-04-15 01:09:22 +08:00
|
|
|
|
return DeclarationName();
|
2010-02-02 10:07:01 +08:00
|
|
|
|
|
|
|
|
|
// Provide a stop gap for files that are just seriously broken. Trying
|
|
|
|
|
// to correct all typos can turn into a HUGE performance penalty, causing
|
|
|
|
|
// some files to take minutes to get rejected by the parser.
|
|
|
|
|
// FIXME: Is this the right solution?
|
|
|
|
|
if (TyposCorrected == 20)
|
2010-04-15 01:09:22 +08:00
|
|
|
|
return DeclarationName();
|
2010-02-02 10:07:01 +08:00
|
|
|
|
++TyposCorrected;
|
2010-01-06 08:23:04 +08:00
|
|
|
|
|
2009-12-31 01:04:44 +08:00
|
|
|
|
// We only attempt to correct typos for identifiers.
|
|
|
|
|
IdentifierInfo *Typo = Res.getLookupName().getAsIdentifierInfo();
|
|
|
|
|
if (!Typo)
|
2010-04-15 01:09:22 +08:00
|
|
|
|
return DeclarationName();
|
2009-12-31 01:04:44 +08:00
|
|
|
|
|
|
|
|
|
// If the scope specifier itself was invalid, don't try to correct
|
|
|
|
|
// typos.
|
|
|
|
|
if (SS && SS->isInvalid())
|
2010-04-15 01:09:22 +08:00
|
|
|
|
return DeclarationName();
|
2009-12-31 01:04:44 +08:00
|
|
|
|
|
|
|
|
|
// Never try to correct typos during template deduction or
|
|
|
|
|
// instantiation.
|
|
|
|
|
if (!ActiveTemplateInstantiations.empty())
|
2010-04-15 01:09:22 +08:00
|
|
|
|
return DeclarationName();
|
2010-04-15 04:04:41 +08:00
|
|
|
|
|
2009-12-31 01:04:44 +08:00
|
|
|
|
TypoCorrectionConsumer Consumer(Typo);
|
2010-04-15 04:04:41 +08:00
|
|
|
|
|
|
|
|
|
// Perform name lookup to find visible, similarly-named entities.
|
2010-01-04 02:01:57 +08:00
|
|
|
|
if (MemberContext) {
|
2009-12-31 15:42:17 +08:00
|
|
|
|
LookupVisibleDecls(MemberContext, Res.getLookupKind(), Consumer);
|
2010-01-04 02:01:57 +08:00
|
|
|
|
|
|
|
|
|
// Look in qualified interfaces.
|
|
|
|
|
if (OPT) {
|
|
|
|
|
for (ObjCObjectPointerType::qual_iterator
|
|
|
|
|
I = OPT->qual_begin(), E = OPT->qual_end();
|
|
|
|
|
I != E; ++I)
|
|
|
|
|
LookupVisibleDecls(*I, Res.getLookupKind(), Consumer);
|
|
|
|
|
}
|
|
|
|
|
} else if (SS && SS->isSet()) {
|
2009-12-31 01:04:44 +08:00
|
|
|
|
DeclContext *DC = computeDeclContext(*SS, EnteringContext);
|
|
|
|
|
if (!DC)
|
2010-04-15 01:09:22 +08:00
|
|
|
|
return DeclarationName();
|
2009-12-31 01:04:44 +08:00
|
|
|
|
|
|
|
|
|
LookupVisibleDecls(DC, Res.getLookupKind(), Consumer);
|
|
|
|
|
} else {
|
|
|
|
|
LookupVisibleDecls(S, Res.getLookupKind(), Consumer);
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-15 04:04:41 +08:00
|
|
|
|
// Add context-dependent keywords.
|
|
|
|
|
bool WantTypeSpecifiers = false;
|
|
|
|
|
bool WantExpressionKeywords = false;
|
|
|
|
|
bool WantCXXNamedCasts = false;
|
|
|
|
|
bool WantRemainingKeywords = false;
|
|
|
|
|
switch (CTC) {
|
|
|
|
|
case CTC_Unknown:
|
|
|
|
|
WantTypeSpecifiers = true;
|
|
|
|
|
WantExpressionKeywords = true;
|
|
|
|
|
WantCXXNamedCasts = true;
|
|
|
|
|
WantRemainingKeywords = true;
|
2010-05-19 00:14:23 +08:00
|
|
|
|
|
|
|
|
|
if (ObjCMethodDecl *Method = getCurMethodDecl())
|
|
|
|
|
if (Method->getClassInterface() &&
|
|
|
|
|
Method->getClassInterface()->getSuperClass())
|
|
|
|
|
Consumer.addKeywordResult(Context, "super");
|
|
|
|
|
|
2010-04-15 04:04:41 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CTC_NoKeywords:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CTC_Type:
|
|
|
|
|
WantTypeSpecifiers = true;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CTC_ObjCMessageReceiver:
|
|
|
|
|
Consumer.addKeywordResult(Context, "super");
|
|
|
|
|
// Fall through to handle message receivers like expressions.
|
|
|
|
|
|
|
|
|
|
case CTC_Expression:
|
|
|
|
|
if (getLangOptions().CPlusPlus)
|
|
|
|
|
WantTypeSpecifiers = true;
|
|
|
|
|
WantExpressionKeywords = true;
|
|
|
|
|
// Fall through to get C++ named casts.
|
|
|
|
|
|
|
|
|
|
case CTC_CXXCasts:
|
|
|
|
|
WantCXXNamedCasts = true;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CTC_MemberLookup:
|
|
|
|
|
if (getLangOptions().CPlusPlus)
|
|
|
|
|
Consumer.addKeywordResult(Context, "template");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (WantTypeSpecifiers) {
|
|
|
|
|
// Add type-specifier keywords to the set of results.
|
|
|
|
|
const char *CTypeSpecs[] = {
|
|
|
|
|
"char", "const", "double", "enum", "float", "int", "long", "short",
|
|
|
|
|
"signed", "struct", "union", "unsigned", "void", "volatile", "_Bool",
|
|
|
|
|
"_Complex", "_Imaginary",
|
|
|
|
|
// storage-specifiers as well
|
|
|
|
|
"extern", "inline", "static", "typedef"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const unsigned NumCTypeSpecs = sizeof(CTypeSpecs) / sizeof(CTypeSpecs[0]);
|
|
|
|
|
for (unsigned I = 0; I != NumCTypeSpecs; ++I)
|
|
|
|
|
Consumer.addKeywordResult(Context, CTypeSpecs[I]);
|
|
|
|
|
|
|
|
|
|
if (getLangOptions().C99)
|
|
|
|
|
Consumer.addKeywordResult(Context, "restrict");
|
|
|
|
|
if (getLangOptions().Bool || getLangOptions().CPlusPlus)
|
|
|
|
|
Consumer.addKeywordResult(Context, "bool");
|
|
|
|
|
|
|
|
|
|
if (getLangOptions().CPlusPlus) {
|
|
|
|
|
Consumer.addKeywordResult(Context, "class");
|
|
|
|
|
Consumer.addKeywordResult(Context, "typename");
|
|
|
|
|
Consumer.addKeywordResult(Context, "wchar_t");
|
|
|
|
|
|
|
|
|
|
if (getLangOptions().CPlusPlus0x) {
|
|
|
|
|
Consumer.addKeywordResult(Context, "char16_t");
|
|
|
|
|
Consumer.addKeywordResult(Context, "char32_t");
|
|
|
|
|
Consumer.addKeywordResult(Context, "constexpr");
|
|
|
|
|
Consumer.addKeywordResult(Context, "decltype");
|
|
|
|
|
Consumer.addKeywordResult(Context, "thread_local");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (getLangOptions().GNUMode)
|
|
|
|
|
Consumer.addKeywordResult(Context, "typeof");
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-19 00:30:22 +08:00
|
|
|
|
if (WantCXXNamedCasts && getLangOptions().CPlusPlus) {
|
2010-04-15 04:04:41 +08:00
|
|
|
|
Consumer.addKeywordResult(Context, "const_cast");
|
|
|
|
|
Consumer.addKeywordResult(Context, "dynamic_cast");
|
|
|
|
|
Consumer.addKeywordResult(Context, "reinterpret_cast");
|
|
|
|
|
Consumer.addKeywordResult(Context, "static_cast");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (WantExpressionKeywords) {
|
|
|
|
|
Consumer.addKeywordResult(Context, "sizeof");
|
|
|
|
|
if (getLangOptions().Bool || getLangOptions().CPlusPlus) {
|
|
|
|
|
Consumer.addKeywordResult(Context, "false");
|
|
|
|
|
Consumer.addKeywordResult(Context, "true");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (getLangOptions().CPlusPlus) {
|
|
|
|
|
const char *CXXExprs[] = {
|
|
|
|
|
"delete", "new", "operator", "throw", "typeid"
|
|
|
|
|
};
|
|
|
|
|
const unsigned NumCXXExprs = sizeof(CXXExprs) / sizeof(CXXExprs[0]);
|
|
|
|
|
for (unsigned I = 0; I != NumCXXExprs; ++I)
|
|
|
|
|
Consumer.addKeywordResult(Context, CXXExprs[I]);
|
|
|
|
|
|
|
|
|
|
if (isa<CXXMethodDecl>(CurContext) &&
|
|
|
|
|
cast<CXXMethodDecl>(CurContext)->isInstance())
|
|
|
|
|
Consumer.addKeywordResult(Context, "this");
|
|
|
|
|
|
|
|
|
|
if (getLangOptions().CPlusPlus0x) {
|
|
|
|
|
Consumer.addKeywordResult(Context, "alignof");
|
|
|
|
|
Consumer.addKeywordResult(Context, "nullptr");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (WantRemainingKeywords) {
|
|
|
|
|
if (getCurFunctionOrMethodDecl() || getCurBlock()) {
|
|
|
|
|
// Statements.
|
|
|
|
|
const char *CStmts[] = {
|
|
|
|
|
"do", "else", "for", "goto", "if", "return", "switch", "while" };
|
|
|
|
|
const unsigned NumCStmts = sizeof(CStmts) / sizeof(CStmts[0]);
|
|
|
|
|
for (unsigned I = 0; I != NumCStmts; ++I)
|
|
|
|
|
Consumer.addKeywordResult(Context, CStmts[I]);
|
|
|
|
|
|
|
|
|
|
if (getLangOptions().CPlusPlus) {
|
|
|
|
|
Consumer.addKeywordResult(Context, "catch");
|
|
|
|
|
Consumer.addKeywordResult(Context, "try");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (S && S->getBreakParent())
|
|
|
|
|
Consumer.addKeywordResult(Context, "break");
|
|
|
|
|
|
|
|
|
|
if (S && S->getContinueParent())
|
|
|
|
|
Consumer.addKeywordResult(Context, "continue");
|
|
|
|
|
|
|
|
|
|
if (!getSwitchStack().empty()) {
|
|
|
|
|
Consumer.addKeywordResult(Context, "case");
|
|
|
|
|
Consumer.addKeywordResult(Context, "default");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (getLangOptions().CPlusPlus) {
|
|
|
|
|
Consumer.addKeywordResult(Context, "namespace");
|
|
|
|
|
Consumer.addKeywordResult(Context, "template");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (S && S->isClassScope()) {
|
|
|
|
|
Consumer.addKeywordResult(Context, "explicit");
|
|
|
|
|
Consumer.addKeywordResult(Context, "friend");
|
|
|
|
|
Consumer.addKeywordResult(Context, "mutable");
|
|
|
|
|
Consumer.addKeywordResult(Context, "private");
|
|
|
|
|
Consumer.addKeywordResult(Context, "protected");
|
|
|
|
|
Consumer.addKeywordResult(Context, "public");
|
|
|
|
|
Consumer.addKeywordResult(Context, "virtual");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (getLangOptions().CPlusPlus) {
|
|
|
|
|
Consumer.addKeywordResult(Context, "using");
|
|
|
|
|
|
|
|
|
|
if (getLangOptions().CPlusPlus0x)
|
|
|
|
|
Consumer.addKeywordResult(Context, "static_assert");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If we haven't found anything, we're done.
|
2009-12-31 01:04:44 +08:00
|
|
|
|
if (Consumer.empty())
|
2010-04-15 01:09:22 +08:00
|
|
|
|
return DeclarationName();
|
2009-12-31 01:04:44 +08:00
|
|
|
|
|
|
|
|
|
// Only allow a single, closest name in the result set (it's okay to
|
|
|
|
|
// have overloads of that name, though).
|
2010-04-15 04:04:41 +08:00
|
|
|
|
DeclarationName BestName;
|
|
|
|
|
NamedDecl *BestIvarOrPropertyDecl = 0;
|
|
|
|
|
bool FoundIvarOrPropertyDecl = false;
|
|
|
|
|
|
|
|
|
|
// Check all of the declaration results to find the best name so far.
|
|
|
|
|
for (TypoCorrectionConsumer::iterator I = Consumer.begin(),
|
|
|
|
|
IEnd = Consumer.end();
|
|
|
|
|
I != IEnd; ++I) {
|
|
|
|
|
if (!BestName)
|
|
|
|
|
BestName = (*I)->getDeclName();
|
|
|
|
|
else if (BestName != (*I)->getDeclName())
|
2010-04-15 01:09:22 +08:00
|
|
|
|
return DeclarationName();
|
2010-01-04 02:01:57 +08:00
|
|
|
|
|
2010-04-15 04:04:41 +08:00
|
|
|
|
// \brief Keep track of either an Objective-C ivar or a property, but not
|
|
|
|
|
// both.
|
|
|
|
|
if (isa<ObjCIvarDecl>(*I) || isa<ObjCPropertyDecl>(*I)) {
|
|
|
|
|
if (FoundIvarOrPropertyDecl)
|
|
|
|
|
BestIvarOrPropertyDecl = 0;
|
|
|
|
|
else {
|
|
|
|
|
BestIvarOrPropertyDecl = *I;
|
|
|
|
|
FoundIvarOrPropertyDecl = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-12-31 01:04:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
2010-04-15 04:04:41 +08:00
|
|
|
|
// Now check all of the keyword results to find the best name.
|
|
|
|
|
switch (Consumer.keyword_size()) {
|
|
|
|
|
case 0:
|
|
|
|
|
// No keywords matched.
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
|
// If we already have a name
|
|
|
|
|
if (!BestName) {
|
|
|
|
|
// We did not have anything previously,
|
|
|
|
|
BestName = *Consumer.keyword_begin();
|
|
|
|
|
} else if (BestName.getAsIdentifierInfo() == *Consumer.keyword_begin()) {
|
|
|
|
|
// We have a declaration with the same name as a context-sensitive
|
|
|
|
|
// keyword. The keyword takes precedence.
|
|
|
|
|
BestIvarOrPropertyDecl = 0;
|
|
|
|
|
FoundIvarOrPropertyDecl = false;
|
|
|
|
|
Consumer.clear_decls();
|
2010-05-19 00:30:22 +08:00
|
|
|
|
} else if (CTC == CTC_ObjCMessageReceiver &&
|
|
|
|
|
(*Consumer.keyword_begin())->isStr("super")) {
|
|
|
|
|
// In an Objective-C message send, give the "super" keyword a slight
|
|
|
|
|
// edge over entities not in function or method scope.
|
|
|
|
|
for (TypoCorrectionConsumer::iterator I = Consumer.begin(),
|
|
|
|
|
IEnd = Consumer.end();
|
|
|
|
|
I != IEnd; ++I) {
|
|
|
|
|
if ((*I)->getDeclName() == BestName) {
|
|
|
|
|
if ((*I)->getDeclContext()->isFunctionOrMethod())
|
|
|
|
|
return DeclarationName();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Everything found was outside a function or method; the 'super'
|
|
|
|
|
// keyword takes precedence.
|
|
|
|
|
BestIvarOrPropertyDecl = 0;
|
|
|
|
|
FoundIvarOrPropertyDecl = false;
|
|
|
|
|
Consumer.clear_decls();
|
|
|
|
|
BestName = *Consumer.keyword_begin();
|
2010-04-15 04:04:41 +08:00
|
|
|
|
} else {
|
|
|
|
|
// Name collision; we will not correct typos.
|
|
|
|
|
return DeclarationName();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
// Name collision; we will not correct typos.
|
|
|
|
|
return DeclarationName();
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-31 01:04:44 +08:00
|
|
|
|
// BestName is the closest viable name to what the user
|
|
|
|
|
// typed. However, to make sure that we don't pick something that's
|
|
|
|
|
// way off, make sure that the user typed at least 3 characters for
|
|
|
|
|
// each correction.
|
|
|
|
|
unsigned ED = Consumer.getBestEditDistance();
|
2010-04-15 04:04:41 +08:00
|
|
|
|
if (ED == 0 || !BestName.getAsIdentifierInfo() ||
|
|
|
|
|
(BestName.getAsIdentifierInfo()->getName().size() / ED) < 3)
|
2010-04-15 01:09:22 +08:00
|
|
|
|
return DeclarationName();
|
2009-12-31 01:04:44 +08:00
|
|
|
|
|
|
|
|
|
// Perform name lookup again with the name we chose, and declare
|
|
|
|
|
// success if we found something that was not ambiguous.
|
|
|
|
|
Res.clear();
|
|
|
|
|
Res.setLookupName(BestName);
|
2010-01-04 02:01:57 +08:00
|
|
|
|
|
|
|
|
|
// If we found an ivar or property, add that result; no further
|
|
|
|
|
// lookup is required.
|
2010-04-15 04:04:41 +08:00
|
|
|
|
if (BestIvarOrPropertyDecl)
|
|
|
|
|
Res.addDecl(BestIvarOrPropertyDecl);
|
2010-01-04 02:01:57 +08:00
|
|
|
|
// If we're looking into the context of a member, perform qualified
|
|
|
|
|
// name lookup on the best name.
|
2010-04-15 04:04:41 +08:00
|
|
|
|
else if (!Consumer.keyword_empty()) {
|
|
|
|
|
// The best match was a keyword. Return it.
|
|
|
|
|
return BestName;
|
|
|
|
|
} else if (MemberContext)
|
2009-12-31 15:42:17 +08:00
|
|
|
|
LookupQualifiedName(Res, MemberContext);
|
2010-01-04 02:01:57 +08:00
|
|
|
|
// Perform lookup as if we had just parsed the best name.
|
2009-12-31 15:42:17 +08:00
|
|
|
|
else
|
|
|
|
|
LookupParsedName(Res, S, SS, /*AllowBuiltinCreation=*/false,
|
|
|
|
|
EnteringContext);
|
2009-12-31 13:20:13 +08:00
|
|
|
|
|
|
|
|
|
if (Res.isAmbiguous()) {
|
|
|
|
|
Res.suppressDiagnostics();
|
2010-04-15 01:09:22 +08:00
|
|
|
|
return DeclarationName();
|
2009-12-31 13:20:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2010-04-15 01:09:22 +08:00
|
|
|
|
if (Res.getResultKind() != LookupResult::NotFound)
|
|
|
|
|
return BestName;
|
|
|
|
|
|
|
|
|
|
return DeclarationName();
|
2009-12-31 01:04:44 +08:00
|
|
|
|
}
|