diff options
author | John McCall <rjmccall@apple.com> | 2010-10-29 00:29:13 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-10-29 00:29:13 +0000 |
commit | 0df9587ab011c12968fcbe3518666b2117afe350 (patch) | |
tree | b5bdd0d9b58523530585586725aed51b754f303b /lib/AST/Decl.cpp | |
parent | 02be29a1e80925979f21c5ebbd6e8883e1d1e601 (diff) |
When computing the visibility of a class member, calculate the visibility
of its context without considering global settings like -fvisibility=hidden.
Fixes PR8492.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@117628 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Decl.cpp')
-rw-r--r-- | lib/AST/Decl.cpp | 48 |
1 files changed, 31 insertions, 17 deletions
diff --git a/lib/AST/Decl.cpp b/lib/AST/Decl.cpp index 19cfe9e119..f7fd7b8d5a 100644 --- a/lib/AST/Decl.cpp +++ b/lib/AST/Decl.cpp @@ -140,7 +140,16 @@ static LVPair getLVForTemplateArgumentList(const TemplateArgumentList &TArgs) { TArgs.flat_size()); } -static LVPair getLVForNamespaceScopeDecl(const NamedDecl *D) { +/// getLVForDecl - Get the cached linkage and visibility for the given +/// declaration. +/// +/// \param ConsiderGlobalSettings - Whether to honor global visibility +/// settings. This is false when computing the visibility of the +/// context of a declaration with an explicit visibility attribute. +static LVPair getLVForDecl(const NamedDecl *D, bool ConsiderGlobalSettings); + +static LVPair getLVForNamespaceScopeDecl(const NamedDecl *D, + bool ConsiderGlobalSettings) { assert(D->getDeclContext()->getRedeclContext()->isFileContext() && "Not a name having namespace scope"); ASTContext &Context = D->getASTContext(); @@ -209,7 +218,7 @@ static LVPair getLVForNamespaceScopeDecl(const NamedDecl *D) { // We ignore -fvisibility on non-definitions and explicit // instantiation declarations. - bool ConsiderDashFVisibility = true; + bool ConsiderDashFVisibility = ConsiderGlobalSettings; // C++ [basic.link]p4: @@ -403,7 +412,8 @@ static LVPair getLVForNamespaceScopeDecl(const NamedDecl *D) { return LV; } -static LVPair getLVForClassMember(const NamedDecl *D) { +static LVPair getLVForClassMember(const NamedDecl *D, + bool ConsiderGlobalSettings) { // Only certain class members have linkage. Note that fields don't // really have linkage, but it's convenient to say they do for the // purposes of calculating linkage of pointer-to-data-member @@ -415,9 +425,12 @@ static LVPair getLVForClassMember(const NamedDecl *D) { (D->getDeclName() || cast<TagDecl>(D)->getTypedefForAnonDecl())))) return LVPair(NoLinkage, DefaultVisibility); + // If we have an explicit visibility attribute, merge that in. + const VisibilityAttr *VA = GetExplicitVisibility(D); + // Class members only have linkage if their class has external linkage. - LVPair ClassLV = - cast<RecordDecl>(D->getDeclContext())->getLinkageAndVisibility(); + LVPair ClassLV = getLVForDecl(cast<RecordDecl>(D->getDeclContext()), + ConsiderGlobalSettings && !VA); if (!isExternalLinkage(ClassLV.first)) return LVPair(NoLinkage, DefaultVisibility); @@ -427,9 +440,6 @@ static LVPair getLVForClassMember(const NamedDecl *D) { // Start with the class's linkage and visibility. LVPair LV = ClassLV; - - // If we have an explicit visibility attribute, merge that in. - const VisibilityAttr *VA = GetExplicitVisibility(D); if (VA) LV.second = minVisibility(LV.second, GetVisibilityFromAttr(VA)); // If it's a variable declaration and we don't have an explicit @@ -455,7 +465,8 @@ static LVPair getLVForClassMember(const NamedDecl *D) { // If -fvisibility-inlines-hidden was provided, then inline C++ // member functions get "hidden" visibility if they don't have an // explicit visibility attribute. - if (!VA && MD->isInlined() && LV.second > HiddenVisibility && + if (ConsiderGlobalSettings && !VA && MD->isInlined() && + LV.second > HiddenVisibility && D->getASTContext().getLangOptions().InlineVisibilityHidden && MD->getTemplateSpecializationKind() != TSK_ExplicitInstantiationDeclaration) @@ -473,10 +484,13 @@ static LVPair getLVForClassMember(const NamedDecl *D) { } LVPair NamedDecl::getLinkageAndVisibility() const { + return getLVForDecl(this, /*ConsiderGlobalSettings*/ true); +} +static LVPair getLVForDecl(const NamedDecl *D, bool ConsiderGlobalSettings) { // Objective-C: treat all Objective-C declarations as having external // linkage. - switch (getKind()) { + switch (D->getKind()) { default: break; case Decl::TemplateTemplateParm: // count these as external @@ -495,8 +509,8 @@ LVPair NamedDecl::getLinkageAndVisibility() const { } // Handle linkage for namespace-scope names. - if (getDeclContext()->getRedeclContext()->isFileContext()) - return getLVForNamespaceScopeDecl(this); + if (D->getDeclContext()->getRedeclContext()->isFileContext()) + return getLVForNamespaceScopeDecl(D, ConsiderGlobalSettings); // C++ [basic.link]p5: // In addition, a member function, static data member, a named @@ -505,8 +519,8 @@ LVPair NamedDecl::getLinkageAndVisibility() const { // that the class or enumeration has the typedef name for linkage // purposes (7.1.3), has external linkage if the name of the class // has external linkage. - if (getDeclContext()->isRecord()) - return getLVForClassMember(this); + if (D->getDeclContext()->isRecord()) + return getLVForClassMember(D, ConsiderGlobalSettings); // C++ [basic.link]p6: // The name of a function declared in block scope and the name of @@ -519,8 +533,8 @@ LVPair NamedDecl::getLinkageAndVisibility() const { // one such matching entity, the program is ill-formed. Otherwise, // if no matching entity is found, the block scope entity receives // external linkage. - if (getLexicalDeclContext()->isFunctionOrMethod()) { - if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(this)) { + if (D->getLexicalDeclContext()->isFunctionOrMethod()) { + if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { if (Function->isInAnonymousNamespace()) return LVPair(UniqueExternalLinkage, DefaultVisibility); @@ -537,7 +551,7 @@ LVPair NamedDecl::getLinkageAndVisibility() const { return LV; } - if (const VarDecl *Var = dyn_cast<VarDecl>(this)) + if (const VarDecl *Var = dyn_cast<VarDecl>(D)) if (Var->getStorageClass() == SC_Extern || Var->getStorageClass() == SC_PrivateExtern) { if (Var->isInAnonymousNamespace()) |