George Burgess IV | 99db3ea | 2017-08-09 04:02:49 +0000 | [diff] [blame] | 1 | //===----- Linkage.h - Linkage calculation-related utilities ----*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file provides AST-internal utilities for linkage and visibility |
| 11 | // calculation. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef LLVM_CLANG_LIB_AST_LINKAGE_H |
| 16 | #define LLVM_CLANG_LIB_AST_LINKAGE_H |
| 17 | |
| 18 | #include "clang/AST/Decl.h" |
| 19 | #include "clang/AST/DeclCXX.h" |
| 20 | #include "clang/AST/Type.h" |
| 21 | #include "llvm/ADT/DenseMap.h" |
George Burgess IV | 35cb4f8 | 2017-08-09 04:12:17 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/Optional.h" |
Bruno Ricci | cf86ce0 | 2018-09-25 13:43:25 +0000 | [diff] [blame^] | 23 | #include "llvm/ADT/PointerIntPair.h" |
George Burgess IV | 99db3ea | 2017-08-09 04:02:49 +0000 | [diff] [blame] | 24 | |
| 25 | namespace clang { |
George Burgess IV | 99db3ea | 2017-08-09 04:02:49 +0000 | [diff] [blame] | 26 | /// Kinds of LV computation. The linkage side of the computation is |
| 27 | /// always the same, but different things can change how visibility is |
| 28 | /// computed. |
Richard Smith | fbe7b46 | 2017-09-22 02:22:32 +0000 | [diff] [blame] | 29 | struct LVComputationKind { |
| 30 | /// The kind of entity whose visibility is ultimately being computed; |
| 31 | /// visibility computations for types and non-types follow different rules. |
| 32 | unsigned ExplicitKind : 1; |
| 33 | /// Whether explicit visibility attributes should be ignored. When set, |
| 34 | /// visibility may only be restricted by the visibility of template arguments. |
| 35 | unsigned IgnoreExplicitVisibility : 1; |
| 36 | /// Whether all visibility should be ignored. When set, we're only interested |
| 37 | /// in computing linkage. |
| 38 | unsigned IgnoreAllVisibility : 1; |
George Burgess IV | 99db3ea | 2017-08-09 04:02:49 +0000 | [diff] [blame] | 39 | |
Bruno Ricci | cf86ce0 | 2018-09-25 13:43:25 +0000 | [diff] [blame^] | 40 | enum { NumLVComputationKindBits = 3 }; |
| 41 | |
Richard Smith | fbe7b46 | 2017-09-22 02:22:32 +0000 | [diff] [blame] | 42 | explicit LVComputationKind(NamedDecl::ExplicitVisibilityKind EK) |
| 43 | : ExplicitKind(EK), IgnoreExplicitVisibility(false), |
| 44 | IgnoreAllVisibility(false) {} |
George Burgess IV | 99db3ea | 2017-08-09 04:02:49 +0000 | [diff] [blame] | 45 | |
Richard Smith | fbe7b46 | 2017-09-22 02:22:32 +0000 | [diff] [blame] | 46 | NamedDecl::ExplicitVisibilityKind getExplicitVisibilityKind() const { |
| 47 | return static_cast<NamedDecl::ExplicitVisibilityKind>(ExplicitKind); |
| 48 | } |
George Burgess IV | 99db3ea | 2017-08-09 04:02:49 +0000 | [diff] [blame] | 49 | |
Richard Smith | fbe7b46 | 2017-09-22 02:22:32 +0000 | [diff] [blame] | 50 | bool isTypeVisibility() const { |
| 51 | return getExplicitVisibilityKind() == NamedDecl::VisibilityForType; |
| 52 | } |
| 53 | bool isValueVisibility() const { |
| 54 | return getExplicitVisibilityKind() == NamedDecl::VisibilityForValue; |
| 55 | } |
George Burgess IV | 99db3ea | 2017-08-09 04:02:49 +0000 | [diff] [blame] | 56 | |
| 57 | /// Do an LV computation when we only care about the linkage. |
Richard Smith | fbe7b46 | 2017-09-22 02:22:32 +0000 | [diff] [blame] | 58 | static LVComputationKind forLinkageOnly() { |
| 59 | LVComputationKind Result(NamedDecl::VisibilityForValue); |
| 60 | Result.IgnoreExplicitVisibility = true; |
| 61 | Result.IgnoreAllVisibility = true; |
| 62 | return Result; |
| 63 | } |
| 64 | |
| 65 | unsigned toBits() { |
| 66 | unsigned Bits = 0; |
| 67 | Bits = (Bits << 1) | ExplicitKind; |
| 68 | Bits = (Bits << 1) | IgnoreExplicitVisibility; |
| 69 | Bits = (Bits << 1) | IgnoreAllVisibility; |
| 70 | return Bits; |
| 71 | } |
George Burgess IV | 99db3ea | 2017-08-09 04:02:49 +0000 | [diff] [blame] | 72 | }; |
| 73 | |
| 74 | class LinkageComputer { |
George Burgess IV | 35cb4f8 | 2017-08-09 04:12:17 +0000 | [diff] [blame] | 75 | // We have a cache for repeated linkage/visibility computations. This saves us |
| 76 | // from exponential behavior in heavily templated code, such as: |
| 77 | // |
| 78 | // template <typename T, typename V> struct {}; |
| 79 | // using A = int; |
| 80 | // using B = Foo<A, A>; |
| 81 | // using C = Foo<B, B>; |
| 82 | // using D = Foo<C, C>; |
George Burgess IV | b8709ba | 2017-08-09 21:20:41 +0000 | [diff] [blame] | 83 | // |
Bruno Ricci | cf86ce0 | 2018-09-25 13:43:25 +0000 | [diff] [blame^] | 84 | // The integer represents an LVComputationKind. |
| 85 | using QueryType = |
| 86 | llvm::PointerIntPair<const NamedDecl *, |
| 87 | LVComputationKind::NumLVComputationKindBits>; |
George Burgess IV | 35cb4f8 | 2017-08-09 04:12:17 +0000 | [diff] [blame] | 88 | llvm::SmallDenseMap<QueryType, LinkageInfo, 8> CachedLinkageInfo; |
George Burgess IV | b8709ba | 2017-08-09 21:20:41 +0000 | [diff] [blame] | 89 | |
| 90 | static QueryType makeCacheKey(const NamedDecl *ND, LVComputationKind Kind) { |
Bruno Ricci | cf86ce0 | 2018-09-25 13:43:25 +0000 | [diff] [blame^] | 91 | return QueryType(ND, Kind.toBits()); |
George Burgess IV | b8709ba | 2017-08-09 21:20:41 +0000 | [diff] [blame] | 92 | } |
| 93 | |
George Burgess IV | 35cb4f8 | 2017-08-09 04:12:17 +0000 | [diff] [blame] | 94 | llvm::Optional<LinkageInfo> lookup(const NamedDecl *ND, |
| 95 | LVComputationKind Kind) const { |
George Burgess IV | b8709ba | 2017-08-09 21:20:41 +0000 | [diff] [blame] | 96 | auto Iter = CachedLinkageInfo.find(makeCacheKey(ND, Kind)); |
George Burgess IV | 35cb4f8 | 2017-08-09 04:12:17 +0000 | [diff] [blame] | 97 | if (Iter == CachedLinkageInfo.end()) |
| 98 | return None; |
| 99 | return Iter->second; |
| 100 | } |
| 101 | |
| 102 | void cache(const NamedDecl *ND, LVComputationKind Kind, LinkageInfo Info) { |
George Burgess IV | b8709ba | 2017-08-09 21:20:41 +0000 | [diff] [blame] | 103 | CachedLinkageInfo[makeCacheKey(ND, Kind)] = Info; |
George Burgess IV | 35cb4f8 | 2017-08-09 04:12:17 +0000 | [diff] [blame] | 104 | } |
| 105 | |
George Burgess IV | 99db3ea | 2017-08-09 04:02:49 +0000 | [diff] [blame] | 106 | LinkageInfo getLVForTemplateArgumentList(ArrayRef<TemplateArgument> Args, |
| 107 | LVComputationKind computation); |
| 108 | |
| 109 | LinkageInfo getLVForTemplateArgumentList(const TemplateArgumentList &TArgs, |
| 110 | LVComputationKind computation); |
| 111 | |
| 112 | void mergeTemplateLV(LinkageInfo &LV, const FunctionDecl *fn, |
| 113 | const FunctionTemplateSpecializationInfo *specInfo, |
| 114 | LVComputationKind computation); |
| 115 | |
| 116 | void mergeTemplateLV(LinkageInfo &LV, |
| 117 | const ClassTemplateSpecializationDecl *spec, |
| 118 | LVComputationKind computation); |
| 119 | |
| 120 | void mergeTemplateLV(LinkageInfo &LV, |
| 121 | const VarTemplateSpecializationDecl *spec, |
| 122 | LVComputationKind computation); |
| 123 | |
| 124 | LinkageInfo getLVForNamespaceScopeDecl(const NamedDecl *D, |
Richard Smith | c95d2c5 | 2017-09-22 04:25:05 +0000 | [diff] [blame] | 125 | LVComputationKind computation, |
| 126 | bool IgnoreVarTypeLinkage); |
George Burgess IV | 99db3ea | 2017-08-09 04:02:49 +0000 | [diff] [blame] | 127 | |
| 128 | LinkageInfo getLVForClassMember(const NamedDecl *D, |
Richard Smith | c95d2c5 | 2017-09-22 04:25:05 +0000 | [diff] [blame] | 129 | LVComputationKind computation, |
| 130 | bool IgnoreVarTypeLinkage); |
George Burgess IV | 99db3ea | 2017-08-09 04:02:49 +0000 | [diff] [blame] | 131 | |
| 132 | LinkageInfo getLVForClosure(const DeclContext *DC, Decl *ContextDecl, |
| 133 | LVComputationKind computation); |
| 134 | |
| 135 | LinkageInfo getLVForLocalDecl(const NamedDecl *D, |
| 136 | LVComputationKind computation); |
| 137 | |
| 138 | LinkageInfo getLVForType(const Type &T, LVComputationKind computation); |
| 139 | |
| 140 | LinkageInfo getLVForTemplateParameterList(const TemplateParameterList *Params, |
| 141 | LVComputationKind computation); |
| 142 | |
| 143 | public: |
| 144 | LinkageInfo computeLVForDecl(const NamedDecl *D, |
Richard Smith | c95d2c5 | 2017-09-22 04:25:05 +0000 | [diff] [blame] | 145 | LVComputationKind computation, |
| 146 | bool IgnoreVarTypeLinkage = false); |
George Burgess IV | 99db3ea | 2017-08-09 04:02:49 +0000 | [diff] [blame] | 147 | |
| 148 | LinkageInfo getLVForDecl(const NamedDecl *D, LVComputationKind computation); |
| 149 | |
| 150 | LinkageInfo computeTypeLinkageInfo(const Type *T); |
| 151 | LinkageInfo computeTypeLinkageInfo(QualType T) { |
| 152 | return computeTypeLinkageInfo(T.getTypePtr()); |
| 153 | } |
| 154 | |
| 155 | LinkageInfo getDeclLinkageAndVisibility(const NamedDecl *D); |
| 156 | |
| 157 | LinkageInfo getTypeLinkageAndVisibility(const Type *T); |
| 158 | LinkageInfo getTypeLinkageAndVisibility(QualType T) { |
| 159 | return getTypeLinkageAndVisibility(T.getTypePtr()); |
| 160 | } |
| 161 | }; |
| 162 | } // namespace clang |
| 163 | |
| 164 | #endif |