2009-10-07 01:59:45 +08:00
|
|
|
//===------ CXXInheritance.cpp - C++ Inheritance ----------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file provides routines that help analyzing C++ inheritance hierarchies.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/AST/CXXInheritance.h"
|
|
|
|
#include "clang/AST/DeclCXX.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
|
|
|
|
/// \brief Computes the set of declarations referenced by these base
|
|
|
|
/// paths.
|
|
|
|
void CXXBasePaths::ComputeDeclsFound() {
|
|
|
|
assert(NumDeclsFound == 0 && !DeclsFound &&
|
|
|
|
"Already computed the set of declarations");
|
|
|
|
|
|
|
|
std::set<NamedDecl *> Decls;
|
|
|
|
for (CXXBasePaths::paths_iterator Path = begin(), PathEnd = end();
|
|
|
|
Path != PathEnd; ++Path)
|
|
|
|
Decls.insert(*Path->Decls.first);
|
|
|
|
|
|
|
|
NumDeclsFound = Decls.size();
|
|
|
|
DeclsFound = new NamedDecl * [NumDeclsFound];
|
|
|
|
std::copy(Decls.begin(), Decls.end(), DeclsFound);
|
|
|
|
}
|
|
|
|
|
|
|
|
CXXBasePaths::decl_iterator CXXBasePaths::found_decls_begin() {
|
|
|
|
if (NumDeclsFound == 0)
|
|
|
|
ComputeDeclsFound();
|
|
|
|
return DeclsFound;
|
|
|
|
}
|
|
|
|
|
|
|
|
CXXBasePaths::decl_iterator CXXBasePaths::found_decls_end() {
|
|
|
|
if (NumDeclsFound == 0)
|
|
|
|
ComputeDeclsFound();
|
|
|
|
return DeclsFound + NumDeclsFound;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// isAmbiguous - Determines whether the set of paths provided is
|
|
|
|
/// ambiguous, i.e., there are two or more paths that refer to
|
|
|
|
/// different base class subobjects of the same type. BaseType must be
|
|
|
|
/// an unqualified, canonical class type.
|
2010-05-22 04:29:55 +08:00
|
|
|
bool CXXBasePaths::isAmbiguous(CanQualType BaseType) {
|
|
|
|
BaseType = BaseType.getUnqualifiedType();
|
2009-10-07 01:59:45 +08:00
|
|
|
std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType];
|
|
|
|
return Subobjects.second + (Subobjects.first? 1 : 0) > 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// clear - Clear out all prior path information.
|
|
|
|
void CXXBasePaths::clear() {
|
|
|
|
Paths.clear();
|
|
|
|
ClassSubobjects.clear();
|
|
|
|
ScratchPath.clear();
|
|
|
|
DetectedVirtual = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @brief Swaps the contents of this CXXBasePaths structure with the
|
|
|
|
/// contents of Other.
|
|
|
|
void CXXBasePaths::swap(CXXBasePaths &Other) {
|
|
|
|
std::swap(Origin, Other.Origin);
|
|
|
|
Paths.swap(Other.Paths);
|
|
|
|
ClassSubobjects.swap(Other.ClassSubobjects);
|
|
|
|
std::swap(FindAmbiguities, Other.FindAmbiguities);
|
|
|
|
std::swap(RecordPaths, Other.RecordPaths);
|
|
|
|
std::swap(DetectVirtual, Other.DetectVirtual);
|
|
|
|
std::swap(DetectedVirtual, Other.DetectedVirtual);
|
|
|
|
}
|
|
|
|
|
2009-11-12 11:15:40 +08:00
|
|
|
bool CXXRecordDecl::isDerivedFrom(CXXRecordDecl *Base) const {
|
2009-10-07 01:59:45 +08:00
|
|
|
CXXBasePaths Paths(/*FindAmbiguities=*/false, /*RecordPaths=*/false,
|
|
|
|
/*DetectVirtual=*/false);
|
|
|
|
return isDerivedFrom(Base, Paths);
|
|
|
|
}
|
|
|
|
|
2009-11-12 11:15:40 +08:00
|
|
|
bool CXXRecordDecl::isDerivedFrom(CXXRecordDecl *Base, CXXBasePaths &Paths) const {
|
2009-10-07 01:59:45 +08:00
|
|
|
if (getCanonicalDecl() == Base->getCanonicalDecl())
|
|
|
|
return false;
|
|
|
|
|
2009-11-12 11:15:40 +08:00
|
|
|
Paths.setOrigin(const_cast<CXXRecordDecl*>(this));
|
2009-10-07 01:59:45 +08:00
|
|
|
return lookupInBases(&FindBaseClass, Base->getCanonicalDecl(), Paths);
|
|
|
|
}
|
|
|
|
|
2010-03-03 12:38:46 +08:00
|
|
|
bool CXXRecordDecl::isVirtuallyDerivedFrom(CXXRecordDecl *Base) const {
|
2010-06-04 09:40:08 +08:00
|
|
|
if (!getNumVBases())
|
|
|
|
return false;
|
|
|
|
|
2010-03-03 12:38:46 +08:00
|
|
|
CXXBasePaths Paths(/*FindAmbiguities=*/false, /*RecordPaths=*/false,
|
|
|
|
/*DetectVirtual=*/false);
|
|
|
|
|
|
|
|
if (getCanonicalDecl() == Base->getCanonicalDecl())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Paths.setOrigin(const_cast<CXXRecordDecl*>(this));
|
|
|
|
return lookupInBases(&FindVirtualBaseClass, Base->getCanonicalDecl(), Paths);
|
|
|
|
}
|
|
|
|
|
2009-12-08 15:42:38 +08:00
|
|
|
static bool BaseIsNot(const CXXRecordDecl *Base, void *OpaqueTarget) {
|
|
|
|
// OpaqueTarget is a CXXRecordDecl*.
|
|
|
|
return Base->getCanonicalDecl() != (const CXXRecordDecl*) OpaqueTarget;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CXXRecordDecl::isProvablyNotDerivedFrom(const CXXRecordDecl *Base) const {
|
|
|
|
return forallBases(BaseIsNot, (void*) Base->getCanonicalDecl());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CXXRecordDecl::forallBases(ForallBasesCallback *BaseMatches,
|
|
|
|
void *OpaqueData,
|
|
|
|
bool AllowShortCircuit) const {
|
|
|
|
llvm::SmallVector<const CXXRecordDecl*, 8> Queue;
|
|
|
|
|
|
|
|
const CXXRecordDecl *Record = this;
|
|
|
|
bool AllMatches = true;
|
|
|
|
while (true) {
|
|
|
|
for (CXXRecordDecl::base_class_const_iterator
|
|
|
|
I = Record->bases_begin(), E = Record->bases_end(); I != E; ++I) {
|
|
|
|
const RecordType *Ty = I->getType()->getAs<RecordType>();
|
|
|
|
if (!Ty) {
|
|
|
|
if (AllowShortCircuit) return false;
|
|
|
|
AllMatches = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-12-09 12:26:02 +08:00
|
|
|
CXXRecordDecl *Base =
|
2010-02-11 09:04:33 +08:00
|
|
|
cast_or_null<CXXRecordDecl>(Ty->getDecl()->getDefinition());
|
2009-12-08 15:42:38 +08:00
|
|
|
if (!Base) {
|
|
|
|
if (AllowShortCircuit) return false;
|
|
|
|
AllMatches = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-12-09 12:26:02 +08:00
|
|
|
Queue.push_back(Base);
|
|
|
|
if (!BaseMatches(Base, OpaqueData)) {
|
2009-12-08 15:42:38 +08:00
|
|
|
if (AllowShortCircuit) return false;
|
|
|
|
AllMatches = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Queue.empty()) break;
|
|
|
|
Record = Queue.back(); // not actually a queue.
|
|
|
|
Queue.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
return AllMatches;
|
|
|
|
}
|
|
|
|
|
2010-03-03 10:18:00 +08:00
|
|
|
bool CXXBasePaths::lookupInBases(ASTContext &Context,
|
|
|
|
const CXXRecordDecl *Record,
|
|
|
|
CXXRecordDecl::BaseMatchesCallback *BaseMatches,
|
|
|
|
void *UserData) {
|
2009-10-07 01:59:45 +08:00
|
|
|
bool FoundPath = false;
|
2010-01-21 05:53:11 +08:00
|
|
|
|
2010-01-23 08:46:32 +08:00
|
|
|
// The access of the path down to this record.
|
2010-03-03 10:18:00 +08:00
|
|
|
AccessSpecifier AccessToHere = ScratchPath.Access;
|
|
|
|
bool IsFirstStep = ScratchPath.empty();
|
2010-01-23 08:46:32 +08:00
|
|
|
|
2010-03-03 10:18:00 +08:00
|
|
|
for (CXXRecordDecl::base_class_const_iterator BaseSpec = Record->bases_begin(),
|
|
|
|
BaseSpecEnd = Record->bases_end();
|
|
|
|
BaseSpec != BaseSpecEnd;
|
|
|
|
++BaseSpec) {
|
2009-10-07 01:59:45 +08:00
|
|
|
// Find the record of the base class subobjects for this type.
|
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
|
|
|
QualType BaseType = Context.getCanonicalType(BaseSpec->getType())
|
|
|
|
.getUnqualifiedType();
|
2009-10-07 01:59:45 +08:00
|
|
|
|
|
|
|
// C++ [temp.dep]p3:
|
|
|
|
// In the definition of a class template or a member of a class template,
|
|
|
|
// if a base class of the class template depends on a template-parameter,
|
|
|
|
// the base class scope is not examined during unqualified name lookup
|
|
|
|
// either at the point of definition of the class template or member or
|
|
|
|
// during an instantiation of the class tem- plate or member.
|
|
|
|
if (BaseType->isDependentType())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Determine whether we need to visit this base class at all,
|
|
|
|
// updating the count of subobjects appropriately.
|
2010-03-03 10:18:00 +08:00
|
|
|
std::pair<bool, unsigned>& Subobjects = ClassSubobjects[BaseType];
|
2009-10-07 01:59:45 +08:00
|
|
|
bool VisitBase = true;
|
|
|
|
bool SetVirtual = false;
|
|
|
|
if (BaseSpec->isVirtual()) {
|
|
|
|
VisitBase = !Subobjects.first;
|
|
|
|
Subobjects.first = true;
|
2010-03-03 10:18:00 +08:00
|
|
|
if (isDetectingVirtual() && DetectedVirtual == 0) {
|
2009-10-07 01:59:45 +08:00
|
|
|
// If this is the first virtual we find, remember it. If it turns out
|
|
|
|
// there is no base path here, we'll reset it later.
|
2010-03-03 10:18:00 +08:00
|
|
|
DetectedVirtual = BaseType->getAs<RecordType>();
|
2009-10-07 01:59:45 +08:00
|
|
|
SetVirtual = true;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
++Subobjects.second;
|
|
|
|
|
2010-03-03 10:18:00 +08:00
|
|
|
if (isRecordingPaths()) {
|
2009-10-07 01:59:45 +08:00
|
|
|
// Add this base specifier to the current path.
|
|
|
|
CXXBasePathElement Element;
|
|
|
|
Element.Base = &*BaseSpec;
|
2010-03-03 10:18:00 +08:00
|
|
|
Element.Class = Record;
|
2009-10-07 01:59:45 +08:00
|
|
|
if (BaseSpec->isVirtual())
|
|
|
|
Element.SubobjectNumber = 0;
|
|
|
|
else
|
|
|
|
Element.SubobjectNumber = Subobjects.second;
|
2010-03-03 10:18:00 +08:00
|
|
|
ScratchPath.push_back(Element);
|
2010-01-21 05:53:11 +08:00
|
|
|
|
2010-01-23 08:46:32 +08:00
|
|
|
// Calculate the "top-down" access to this base class.
|
|
|
|
// The spec actually describes this bottom-up, but top-down is
|
|
|
|
// equivalent because the definition works out as follows:
|
|
|
|
// 1. Write down the access along each step in the inheritance
|
|
|
|
// chain, followed by the access of the decl itself.
|
|
|
|
// For example, in
|
|
|
|
// class A { public: int foo; };
|
|
|
|
// class B : protected A {};
|
|
|
|
// class C : public B {};
|
|
|
|
// class D : private C {};
|
|
|
|
// we would write:
|
|
|
|
// private public protected public
|
|
|
|
// 2. If 'private' appears anywhere except far-left, access is denied.
|
|
|
|
// 3. Otherwise, overall access is determined by the most restrictive
|
|
|
|
// access in the sequence.
|
|
|
|
if (IsFirstStep)
|
2010-03-03 10:18:00 +08:00
|
|
|
ScratchPath.Access = BaseSpec->getAccessSpecifier();
|
2010-01-23 08:46:32 +08:00
|
|
|
else
|
2010-03-03 10:18:00 +08:00
|
|
|
ScratchPath.Access = CXXRecordDecl::MergeAccess(AccessToHere,
|
|
|
|
BaseSpec->getAccessSpecifier());
|
2009-10-07 01:59:45 +08:00
|
|
|
}
|
2010-02-09 08:57:12 +08:00
|
|
|
|
|
|
|
// Track whether there's a path involving this specific base.
|
|
|
|
bool FoundPathThroughBase = false;
|
|
|
|
|
2010-03-03 10:18:00 +08:00
|
|
|
if (BaseMatches(BaseSpec, ScratchPath, UserData)) {
|
2010-01-23 08:46:32 +08:00
|
|
|
// We've found a path that terminates at this base.
|
2010-02-09 08:57:12 +08:00
|
|
|
FoundPath = FoundPathThroughBase = true;
|
2010-03-03 10:18:00 +08:00
|
|
|
if (isRecordingPaths()) {
|
2009-10-07 01:59:45 +08:00
|
|
|
// We have a path. Make a copy of it before moving on.
|
2010-03-03 10:18:00 +08:00
|
|
|
Paths.push_back(ScratchPath);
|
|
|
|
} else if (!isFindingAmbiguities()) {
|
2009-10-07 01:59:45 +08:00
|
|
|
// We found a path and we don't care about ambiguities;
|
|
|
|
// return immediately.
|
|
|
|
return FoundPath;
|
|
|
|
}
|
|
|
|
} else if (VisitBase) {
|
|
|
|
CXXRecordDecl *BaseRecord
|
|
|
|
= cast<CXXRecordDecl>(BaseSpec->getType()->getAs<RecordType>()
|
|
|
|
->getDecl());
|
2010-03-03 10:18:00 +08:00
|
|
|
if (lookupInBases(Context, BaseRecord, BaseMatches, UserData)) {
|
2009-10-07 01:59:45 +08:00
|
|
|
// C++ [class.member.lookup]p2:
|
|
|
|
// A member name f in one sub-object B hides a member name f in
|
|
|
|
// a sub-object A if A is a base class sub-object of B. Any
|
|
|
|
// declarations that are so hidden are eliminated from
|
|
|
|
// consideration.
|
|
|
|
|
|
|
|
// There is a path to a base class that meets the criteria. If we're
|
|
|
|
// not collecting paths or finding ambiguities, we're done.
|
2010-02-09 08:57:12 +08:00
|
|
|
FoundPath = FoundPathThroughBase = true;
|
2010-03-03 10:18:00 +08:00
|
|
|
if (!isFindingAmbiguities())
|
2009-10-07 01:59:45 +08:00
|
|
|
return FoundPath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pop this base specifier off the current path (if we're
|
|
|
|
// collecting paths).
|
2010-03-03 10:18:00 +08:00
|
|
|
if (isRecordingPaths()) {
|
|
|
|
ScratchPath.pop_back();
|
2010-01-21 05:53:11 +08:00
|
|
|
}
|
|
|
|
|
2009-10-07 01:59:45 +08:00
|
|
|
// If we set a virtual earlier, and this isn't a path, forget it again.
|
2010-02-09 08:57:12 +08:00
|
|
|
if (SetVirtual && !FoundPathThroughBase) {
|
2010-03-03 10:18:00 +08:00
|
|
|
DetectedVirtual = 0;
|
2009-10-07 01:59:45 +08:00
|
|
|
}
|
|
|
|
}
|
2010-01-23 08:46:32 +08:00
|
|
|
|
|
|
|
// Reset the scratch path access.
|
2010-03-03 10:18:00 +08:00
|
|
|
ScratchPath.Access = AccessToHere;
|
2009-10-07 01:59:45 +08:00
|
|
|
|
|
|
|
return FoundPath;
|
|
|
|
}
|
|
|
|
|
2010-03-03 10:18:00 +08:00
|
|
|
bool CXXRecordDecl::lookupInBases(BaseMatchesCallback *BaseMatches,
|
|
|
|
void *UserData,
|
|
|
|
CXXBasePaths &Paths) const {
|
2010-03-03 12:38:46 +08:00
|
|
|
// If we didn't find anything, report that.
|
|
|
|
if (!Paths.lookupInBases(getASTContext(), this, BaseMatches, UserData))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// If we're not recording paths or we won't ever find ambiguities,
|
|
|
|
// we're done.
|
|
|
|
if (!Paths.isRecordingPaths() || !Paths.isFindingAmbiguities())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// C++ [class.member.lookup]p6:
|
|
|
|
// When virtual base classes are used, a hidden declaration can be
|
|
|
|
// reached along a path through the sub-object lattice that does
|
|
|
|
// not pass through the hiding declaration. This is not an
|
|
|
|
// ambiguity. The identical use with nonvirtual base classes is an
|
|
|
|
// ambiguity; in that case there is no unique instance of the name
|
|
|
|
// that hides all the others.
|
|
|
|
//
|
|
|
|
// FIXME: This is an O(N^2) algorithm, but DPG doesn't see an easy
|
|
|
|
// way to make it any faster.
|
|
|
|
for (CXXBasePaths::paths_iterator P = Paths.begin(), PEnd = Paths.end();
|
|
|
|
P != PEnd; /* increment in loop */) {
|
|
|
|
bool Hidden = false;
|
|
|
|
|
|
|
|
for (CXXBasePath::iterator PE = P->begin(), PEEnd = P->end();
|
|
|
|
PE != PEEnd && !Hidden; ++PE) {
|
|
|
|
if (PE->Base->isVirtual()) {
|
|
|
|
CXXRecordDecl *VBase = 0;
|
|
|
|
if (const RecordType *Record = PE->Base->getType()->getAs<RecordType>())
|
|
|
|
VBase = cast<CXXRecordDecl>(Record->getDecl());
|
|
|
|
if (!VBase)
|
|
|
|
break;
|
|
|
|
|
|
|
|
// The declaration(s) we found along this path were found in a
|
|
|
|
// subobject of a virtual base. Check whether this virtual
|
|
|
|
// base is a subobject of any other path; if so, then the
|
|
|
|
// declaration in this path are hidden by that patch.
|
|
|
|
for (CXXBasePaths::paths_iterator HidingP = Paths.begin(),
|
|
|
|
HidingPEnd = Paths.end();
|
|
|
|
HidingP != HidingPEnd;
|
|
|
|
++HidingP) {
|
|
|
|
CXXRecordDecl *HidingClass = 0;
|
|
|
|
if (const RecordType *Record
|
|
|
|
= HidingP->back().Base->getType()->getAs<RecordType>())
|
|
|
|
HidingClass = cast<CXXRecordDecl>(Record->getDecl());
|
|
|
|
if (!HidingClass)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (HidingClass->isVirtuallyDerivedFrom(VBase)) {
|
|
|
|
Hidden = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Hidden)
|
|
|
|
P = Paths.Paths.erase(P);
|
|
|
|
else
|
|
|
|
++P;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2010-03-03 10:18:00 +08:00
|
|
|
}
|
|
|
|
|
2009-11-12 11:15:40 +08:00
|
|
|
bool CXXRecordDecl::FindBaseClass(const CXXBaseSpecifier *Specifier,
|
2009-10-07 01:59:45 +08:00
|
|
|
CXXBasePath &Path,
|
|
|
|
void *BaseRecord) {
|
|
|
|
assert(((Decl *)BaseRecord)->getCanonicalDecl() == BaseRecord &&
|
|
|
|
"User data for FindBaseClass is not canonical!");
|
|
|
|
return Specifier->getType()->getAs<RecordType>()->getDecl()
|
|
|
|
->getCanonicalDecl() == BaseRecord;
|
|
|
|
}
|
|
|
|
|
2010-03-03 12:38:46 +08:00
|
|
|
bool CXXRecordDecl::FindVirtualBaseClass(const CXXBaseSpecifier *Specifier,
|
|
|
|
CXXBasePath &Path,
|
|
|
|
void *BaseRecord) {
|
|
|
|
assert(((Decl *)BaseRecord)->getCanonicalDecl() == BaseRecord &&
|
|
|
|
"User data for FindBaseClass is not canonical!");
|
|
|
|
return Specifier->isVirtual() &&
|
|
|
|
Specifier->getType()->getAs<RecordType>()->getDecl()
|
|
|
|
->getCanonicalDecl() == BaseRecord;
|
|
|
|
}
|
|
|
|
|
2009-11-12 11:15:40 +08:00
|
|
|
bool CXXRecordDecl::FindTagMember(const CXXBaseSpecifier *Specifier,
|
2009-10-07 01:59:45 +08:00
|
|
|
CXXBasePath &Path,
|
|
|
|
void *Name) {
|
|
|
|
RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
|
|
|
|
|
|
|
|
DeclarationName N = DeclarationName::getFromOpaquePtr(Name);
|
|
|
|
for (Path.Decls = BaseRecord->lookup(N);
|
|
|
|
Path.Decls.first != Path.Decls.second;
|
|
|
|
++Path.Decls.first) {
|
|
|
|
if ((*Path.Decls.first)->isInIdentifierNamespace(IDNS_Tag))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-11-12 11:15:40 +08:00
|
|
|
bool CXXRecordDecl::FindOrdinaryMember(const CXXBaseSpecifier *Specifier,
|
2009-10-07 01:59:45 +08:00
|
|
|
CXXBasePath &Path,
|
|
|
|
void *Name) {
|
|
|
|
RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
|
|
|
|
|
|
|
|
const unsigned IDNS = IDNS_Ordinary | IDNS_Tag | IDNS_Member;
|
|
|
|
DeclarationName N = DeclarationName::getFromOpaquePtr(Name);
|
|
|
|
for (Path.Decls = BaseRecord->lookup(N);
|
|
|
|
Path.Decls.first != Path.Decls.second;
|
|
|
|
++Path.Decls.first) {
|
|
|
|
if ((*Path.Decls.first)->isInIdentifierNamespace(IDNS))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-11-12 11:15:40 +08:00
|
|
|
bool CXXRecordDecl::
|
|
|
|
FindNestedNameSpecifierMember(const CXXBaseSpecifier *Specifier,
|
|
|
|
CXXBasePath &Path,
|
|
|
|
void *Name) {
|
2009-10-07 01:59:45 +08:00
|
|
|
RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
|
|
|
|
|
|
|
|
DeclarationName N = DeclarationName::getFromOpaquePtr(Name);
|
|
|
|
for (Path.Decls = BaseRecord->lookup(N);
|
|
|
|
Path.Decls.first != Path.Decls.second;
|
|
|
|
++Path.Decls.first) {
|
|
|
|
// FIXME: Refactor the "is it a nested-name-specifier?" check
|
|
|
|
if (isa<TypedefDecl>(*Path.Decls.first) ||
|
|
|
|
(*Path.Decls.first)->isInIdentifierNamespace(IDNS_Tag))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2009-10-07 07:38:59 +08:00
|
|
|
}
|
2010-03-24 07:47:56 +08:00
|
|
|
|
|
|
|
void OverridingMethods::add(unsigned OverriddenSubobject,
|
|
|
|
UniqueVirtualMethod Overriding) {
|
|
|
|
llvm::SmallVector<UniqueVirtualMethod, 4> &SubobjectOverrides
|
|
|
|
= Overrides[OverriddenSubobject];
|
|
|
|
if (std::find(SubobjectOverrides.begin(), SubobjectOverrides.end(),
|
|
|
|
Overriding) == SubobjectOverrides.end())
|
|
|
|
SubobjectOverrides.push_back(Overriding);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OverridingMethods::add(const OverridingMethods &Other) {
|
|
|
|
for (const_iterator I = Other.begin(), IE = Other.end(); I != IE; ++I) {
|
|
|
|
for (overriding_const_iterator M = I->second.begin(),
|
|
|
|
MEnd = I->second.end();
|
|
|
|
M != MEnd;
|
|
|
|
++M)
|
|
|
|
add(I->first, *M);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OverridingMethods::replaceAll(UniqueVirtualMethod Overriding) {
|
|
|
|
for (iterator I = begin(), IEnd = end(); I != IEnd; ++I) {
|
|
|
|
I->second.clear();
|
|
|
|
I->second.push_back(Overriding);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class FinalOverriderCollector {
|
|
|
|
/// \brief The number of subobjects of a given class type that
|
|
|
|
/// occur within the class hierarchy.
|
|
|
|
llvm::DenseMap<const CXXRecordDecl *, unsigned> SubobjectCount;
|
|
|
|
|
|
|
|
/// \brief Overriders for each virtual base subobject.
|
|
|
|
llvm::DenseMap<const CXXRecordDecl *, CXXFinalOverriderMap *> VirtualOverriders;
|
|
|
|
|
|
|
|
CXXFinalOverriderMap FinalOverriders;
|
|
|
|
|
|
|
|
public:
|
|
|
|
~FinalOverriderCollector();
|
|
|
|
|
|
|
|
void Collect(const CXXRecordDecl *RD, bool VirtualBase,
|
|
|
|
const CXXRecordDecl *InVirtualSubobject,
|
|
|
|
CXXFinalOverriderMap &Overriders);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
void FinalOverriderCollector::Collect(const CXXRecordDecl *RD,
|
|
|
|
bool VirtualBase,
|
|
|
|
const CXXRecordDecl *InVirtualSubobject,
|
|
|
|
CXXFinalOverriderMap &Overriders) {
|
|
|
|
unsigned SubobjectNumber = 0;
|
|
|
|
if (!VirtualBase)
|
|
|
|
SubobjectNumber
|
|
|
|
= ++SubobjectCount[cast<CXXRecordDecl>(RD->getCanonicalDecl())];
|
|
|
|
|
|
|
|
for (CXXRecordDecl::base_class_const_iterator Base = RD->bases_begin(),
|
|
|
|
BaseEnd = RD->bases_end(); Base != BaseEnd; ++Base) {
|
|
|
|
if (const RecordType *RT = Base->getType()->getAs<RecordType>()) {
|
|
|
|
const CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(RT->getDecl());
|
|
|
|
if (!BaseDecl->isPolymorphic())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (Overriders.empty() && !Base->isVirtual()) {
|
|
|
|
// There are no other overriders of virtual member functions,
|
|
|
|
// so let the base class fill in our overriders for us.
|
|
|
|
Collect(BaseDecl, false, InVirtualSubobject, Overriders);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collect all of the overridders from the base class subobject
|
|
|
|
// and merge them into the set of overridders for this class.
|
|
|
|
// For virtual base classes, populate or use the cached virtual
|
|
|
|
// overrides so that we do not walk the virtual base class (and
|
|
|
|
// its base classes) more than once.
|
|
|
|
CXXFinalOverriderMap ComputedBaseOverriders;
|
|
|
|
CXXFinalOverriderMap *BaseOverriders = &ComputedBaseOverriders;
|
|
|
|
if (Base->isVirtual()) {
|
|
|
|
CXXFinalOverriderMap *&MyVirtualOverriders = VirtualOverriders[BaseDecl];
|
|
|
|
if (!MyVirtualOverriders) {
|
|
|
|
MyVirtualOverriders = new CXXFinalOverriderMap;
|
|
|
|
Collect(BaseDecl, true, BaseDecl, *MyVirtualOverriders);
|
|
|
|
}
|
|
|
|
|
|
|
|
BaseOverriders = MyVirtualOverriders;
|
|
|
|
} else
|
|
|
|
Collect(BaseDecl, false, InVirtualSubobject, ComputedBaseOverriders);
|
|
|
|
|
|
|
|
// Merge the overriders from this base class into our own set of
|
|
|
|
// overriders.
|
|
|
|
for (CXXFinalOverriderMap::iterator OM = BaseOverriders->begin(),
|
|
|
|
OMEnd = BaseOverriders->end();
|
|
|
|
OM != OMEnd;
|
|
|
|
++OM) {
|
|
|
|
const CXXMethodDecl *CanonOM
|
|
|
|
= cast<CXXMethodDecl>(OM->first->getCanonicalDecl());
|
|
|
|
Overriders[CanonOM].add(OM->second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (CXXRecordDecl::method_iterator M = RD->method_begin(),
|
|
|
|
MEnd = RD->method_end();
|
|
|
|
M != MEnd;
|
|
|
|
++M) {
|
|
|
|
// We only care about virtual methods.
|
|
|
|
if (!M->isVirtual())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
CXXMethodDecl *CanonM = cast<CXXMethodDecl>(M->getCanonicalDecl());
|
|
|
|
|
|
|
|
if (CanonM->begin_overridden_methods()
|
|
|
|
== CanonM->end_overridden_methods()) {
|
|
|
|
// This is a new virtual function that does not override any
|
|
|
|
// other virtual function. Add it to the map of virtual
|
|
|
|
// functions for which we are tracking overridders.
|
|
|
|
|
|
|
|
// C++ [class.virtual]p2:
|
|
|
|
// For convenience we say that any virtual function overrides itself.
|
|
|
|
Overriders[CanonM].add(SubobjectNumber,
|
|
|
|
UniqueVirtualMethod(CanonM, SubobjectNumber,
|
|
|
|
InVirtualSubobject));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This virtual method overrides other virtual methods, so it does
|
|
|
|
// not add any new slots into the set of overriders. Instead, we
|
|
|
|
// replace entries in the set of overriders with the new
|
|
|
|
// overrider. To do so, we dig down to the original virtual
|
|
|
|
// functions using data recursion and update all of the methods it
|
|
|
|
// overrides.
|
|
|
|
typedef std::pair<CXXMethodDecl::method_iterator,
|
|
|
|
CXXMethodDecl::method_iterator> OverriddenMethods;
|
|
|
|
llvm::SmallVector<OverriddenMethods, 4> Stack;
|
|
|
|
Stack.push_back(std::make_pair(CanonM->begin_overridden_methods(),
|
|
|
|
CanonM->end_overridden_methods()));
|
|
|
|
while (!Stack.empty()) {
|
|
|
|
OverriddenMethods OverMethods = Stack.back();
|
|
|
|
Stack.pop_back();
|
|
|
|
|
|
|
|
for (; OverMethods.first != OverMethods.second; ++OverMethods.first) {
|
|
|
|
const CXXMethodDecl *CanonOM
|
|
|
|
= cast<CXXMethodDecl>((*OverMethods.first)->getCanonicalDecl());
|
2010-06-03 09:00:02 +08:00
|
|
|
|
|
|
|
// C++ [class.virtual]p2:
|
|
|
|
// A virtual member function C::vf of a class object S is
|
|
|
|
// a final overrider unless the most derived class (1.8)
|
|
|
|
// of which S is a base class subobject (if any) declares
|
|
|
|
// or inherits another member function that overrides vf.
|
|
|
|
//
|
|
|
|
// Treating this object like the most derived class, we
|
|
|
|
// replace any overrides from base classes with this
|
|
|
|
// overriding virtual function.
|
|
|
|
Overriders[CanonOM].replaceAll(
|
|
|
|
UniqueVirtualMethod(CanonM, SubobjectNumber,
|
|
|
|
InVirtualSubobject));
|
|
|
|
|
2010-03-24 07:47:56 +08:00
|
|
|
if (CanonOM->begin_overridden_methods()
|
2010-06-03 09:00:02 +08:00
|
|
|
== CanonOM->end_overridden_methods())
|
2010-03-24 07:47:56 +08:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Continue recursion to the methods that this virtual method
|
|
|
|
// overrides.
|
|
|
|
Stack.push_back(std::make_pair(CanonOM->begin_overridden_methods(),
|
|
|
|
CanonOM->end_overridden_methods()));
|
|
|
|
}
|
|
|
|
}
|
2010-06-03 09:00:02 +08:00
|
|
|
|
|
|
|
// C++ [class.virtual]p2:
|
|
|
|
// For convenience we say that any virtual function overrides itself.
|
|
|
|
Overriders[CanonM].add(SubobjectNumber,
|
|
|
|
UniqueVirtualMethod(CanonM, SubobjectNumber,
|
|
|
|
InVirtualSubobject));
|
2010-03-24 07:47:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FinalOverriderCollector::~FinalOverriderCollector() {
|
|
|
|
for (llvm::DenseMap<const CXXRecordDecl *, CXXFinalOverriderMap *>::iterator
|
|
|
|
VO = VirtualOverriders.begin(), VOEnd = VirtualOverriders.end();
|
|
|
|
VO != VOEnd;
|
|
|
|
++VO)
|
|
|
|
delete VO->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CXXRecordDecl::getFinalOverriders(CXXFinalOverriderMap &FinalOverriders) const {
|
|
|
|
FinalOverriderCollector Collector;
|
|
|
|
Collector.Collect(this, false, 0, FinalOverriders);
|
|
|
|
|
|
|
|
// Weed out any final overriders that come from virtual base class
|
|
|
|
// subobjects that were hidden by other subobjects along any path.
|
|
|
|
// This is the final-overrider variant of C++ [class.member.lookup]p10.
|
|
|
|
for (CXXFinalOverriderMap::iterator OM = FinalOverriders.begin(),
|
|
|
|
OMEnd = FinalOverriders.end();
|
|
|
|
OM != OMEnd;
|
|
|
|
++OM) {
|
|
|
|
for (OverridingMethods::iterator SO = OM->second.begin(),
|
|
|
|
SOEnd = OM->second.end();
|
|
|
|
SO != SOEnd;
|
|
|
|
++SO) {
|
|
|
|
llvm::SmallVector<UniqueVirtualMethod, 4> &Overriding = SO->second;
|
|
|
|
if (Overriding.size() < 2)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (llvm::SmallVector<UniqueVirtualMethod, 4>::iterator
|
|
|
|
Pos = Overriding.begin(), PosEnd = Overriding.end();
|
|
|
|
Pos != PosEnd;
|
|
|
|
/* increment in loop */) {
|
|
|
|
if (!Pos->InVirtualSubobject) {
|
|
|
|
++Pos;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We have an overriding method in a virtual base class
|
|
|
|
// subobject (or non-virtual base class subobject thereof);
|
|
|
|
// determine whether there exists an other overriding method
|
|
|
|
// in a base class subobject that hides the virtual base class
|
|
|
|
// subobject.
|
|
|
|
bool Hidden = false;
|
|
|
|
for (llvm::SmallVector<UniqueVirtualMethod, 4>::iterator
|
|
|
|
OP = Overriding.begin(), OPEnd = Overriding.end();
|
|
|
|
OP != OPEnd && !Hidden;
|
|
|
|
++OP) {
|
|
|
|
if (Pos == OP)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (OP->Method->getParent()->isVirtuallyDerivedFrom(
|
|
|
|
const_cast<CXXRecordDecl *>(Pos->InVirtualSubobject)))
|
|
|
|
Hidden = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Hidden) {
|
|
|
|
// The current overriding function is hidden by another
|
|
|
|
// overriding function; remove this one.
|
|
|
|
Pos = Overriding.erase(Pos);
|
|
|
|
PosEnd = Overriding.end();
|
|
|
|
} else {
|
|
|
|
++Pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|