зеркало из https://github.com/microsoft/clang-1.git
When storing the C++ overridden methods, store them once for the
canonical method; avoid storing them again for an out-of-line definition. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165472 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
3ef38eea7c
Коммит
38eb1e161f
|
@ -993,7 +993,7 @@ bool ASTContext::BitfieldFollowsNonBitfield(const FieldDecl *FD,
|
|||
ASTContext::overridden_cxx_method_iterator
|
||||
ASTContext::overridden_methods_begin(const CXXMethodDecl *Method) const {
|
||||
llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos
|
||||
= OverriddenMethods.find(Method);
|
||||
= OverriddenMethods.find(Method->getCanonicalDecl());
|
||||
if (Pos == OverriddenMethods.end())
|
||||
return 0;
|
||||
|
||||
|
@ -1003,7 +1003,7 @@ ASTContext::overridden_methods_begin(const CXXMethodDecl *Method) const {
|
|||
ASTContext::overridden_cxx_method_iterator
|
||||
ASTContext::overridden_methods_end(const CXXMethodDecl *Method) const {
|
||||
llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos
|
||||
= OverriddenMethods.find(Method);
|
||||
= OverriddenMethods.find(Method->getCanonicalDecl());
|
||||
if (Pos == OverriddenMethods.end())
|
||||
return 0;
|
||||
|
||||
|
@ -1013,7 +1013,7 @@ ASTContext::overridden_methods_end(const CXXMethodDecl *Method) const {
|
|||
unsigned
|
||||
ASTContext::overridden_methods_size(const CXXMethodDecl *Method) const {
|
||||
llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos
|
||||
= OverriddenMethods.find(Method);
|
||||
= OverriddenMethods.find(Method->getCanonicalDecl());
|
||||
if (Pos == OverriddenMethods.end())
|
||||
return 0;
|
||||
|
||||
|
@ -1022,6 +1022,7 @@ ASTContext::overridden_methods_size(const CXXMethodDecl *Method) const {
|
|||
|
||||
void ASTContext::addOverriddenMethod(const CXXMethodDecl *Method,
|
||||
const CXXMethodDecl *Overridden) {
|
||||
assert(Method->isCanonicalDecl() && Overridden->isCanonicalDecl());
|
||||
OverriddenMethods[Method].push_back(Overridden);
|
||||
}
|
||||
|
||||
|
|
|
@ -6038,7 +6038,8 @@ bool Sema::CheckFunctionDeclaration(Scope *S, FunctionDecl *NewFD,
|
|||
// Find any virtual functions that this function overrides.
|
||||
if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) {
|
||||
if (!Method->isFunctionTemplateSpecialization() &&
|
||||
!Method->getDescribedFunctionTemplate()) {
|
||||
!Method->getDescribedFunctionTemplate() &&
|
||||
Method->isCanonicalDecl()) {
|
||||
if (AddOverriddenMethods(Method->getParent(), Method)) {
|
||||
// If the function was marked as "static", we have a problem.
|
||||
if (NewFD->getStorageClass() == SC_Static) {
|
||||
|
|
|
@ -15,6 +15,9 @@ struct D : C {
|
|||
virtual void f(int);
|
||||
};
|
||||
|
||||
void C::g() {}
|
||||
|
||||
// RUN: c-index-test -test-load-source local %s | FileCheck %s
|
||||
// CHECK: overrides.cpp:11:16: CXXMethod=g:11:16 (virtual) [Overrides @7:16] Extent=[11:3 - 11:19]
|
||||
// CHECK: overrides.cpp:15:16: CXXMethod=f:15:16 (virtual) [Overrides @2:16, @6:16] Extent=[15:3 - 15:22]
|
||||
// CHECK: overrides.cpp:18:9: CXXMethod=g:18:9 (Definition) (virtual) [Overrides @7:16] Extent=[18:1 - 18:15]
|
||||
|
|
Загрузка…
Ссылка в новой задаче