]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/lib/Index/IndexTypeSourceInfo.cpp
Merge ^/head r320573 through r320970.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / lib / Index / IndexTypeSourceInfo.cpp
1 //===- IndexTypeSourceInfo.cpp - Indexing types ---------------------------===//
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 #include "IndexingContext.h"
11 #include "clang/AST/RecursiveASTVisitor.h"
12
13 using namespace clang;
14 using namespace index;
15
16 namespace {
17
18 class TypeIndexer : public RecursiveASTVisitor<TypeIndexer> {
19   IndexingContext &IndexCtx;
20   const NamedDecl *Parent;
21   const DeclContext *ParentDC;
22   bool IsBase;
23   SmallVector<SymbolRelation, 3> Relations;
24
25   typedef RecursiveASTVisitor<TypeIndexer> base;
26
27 public:
28   TypeIndexer(IndexingContext &indexCtx, const NamedDecl *parent,
29               const DeclContext *DC, bool isBase, bool isIBType)
30     : IndexCtx(indexCtx), Parent(parent), ParentDC(DC), IsBase(isBase) {
31     if (IsBase) {
32       assert(Parent);
33       Relations.emplace_back((unsigned)SymbolRole::RelationBaseOf, Parent);
34     }
35     if (isIBType) {
36       assert(Parent);
37       Relations.emplace_back((unsigned)SymbolRole::RelationIBTypeOf, Parent);
38     }
39   }
40   
41   bool shouldWalkTypesOfTypeLocs() const { return false; }
42
43 #define TRY_TO(CALL_EXPR)                                                      \
44   do {                                                                         \
45     if (!CALL_EXPR)                                                            \
46       return false;                                                            \
47   } while (0)
48
49   bool VisitTypedefTypeLoc(TypedefTypeLoc TL) {
50     SourceLocation Loc = TL.getNameLoc();
51     TypedefNameDecl *ND = TL.getTypedefNameDecl();
52     if (ND->isTransparentTag()) {
53       TagDecl *Underlying = ND->getUnderlyingType()->getAsTagDecl();
54       return IndexCtx.handleReference(Underlying, Loc, Parent,
55                                       ParentDC, SymbolRoleSet(), Relations);
56     }
57     if (IsBase) {
58       TRY_TO(IndexCtx.handleReference(ND, Loc,
59                                       Parent, ParentDC, SymbolRoleSet()));
60       if (auto *CD = TL.getType()->getAsCXXRecordDecl()) {
61         TRY_TO(IndexCtx.handleReference(CD, Loc, Parent, ParentDC,
62                                         (unsigned)SymbolRole::Implicit,
63                                         Relations));
64       }
65     } else {
66       TRY_TO(IndexCtx.handleReference(ND, Loc,
67                                       Parent, ParentDC, SymbolRoleSet(),
68                                       Relations));
69     }
70     return true;
71   }
72
73   bool traverseParamVarHelper(ParmVarDecl *D) {
74     TRY_TO(TraverseNestedNameSpecifierLoc(D->getQualifierLoc()));
75     if (D->getTypeSourceInfo())
76       TRY_TO(TraverseTypeLoc(D->getTypeSourceInfo()->getTypeLoc()));
77     return true;
78   }
79
80   bool TraverseParmVarDecl(ParmVarDecl *D) {
81     // Avoid visiting default arguments from the definition that were already
82     // visited in the declaration.
83     // FIXME: A free function definition can have default arguments.
84     // Avoiding double visitaiton of default arguments should be handled by the
85     // visitor probably with a bit in the AST to indicate if the attached
86     // default argument was 'inherited' or written in source.
87     if (auto FD = dyn_cast<FunctionDecl>(D->getDeclContext())) {
88       if (FD->isThisDeclarationADefinition()) {
89         return traverseParamVarHelper(D);
90       }
91     }
92
93     return base::TraverseParmVarDecl(D);
94   }
95
96   bool TraverseNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS) {
97     IndexCtx.indexNestedNameSpecifierLoc(NNS, Parent, ParentDC);
98     return true;
99   }
100
101   bool VisitTagTypeLoc(TagTypeLoc TL) {
102     TagDecl *D = TL.getDecl();
103     if (D->getParentFunctionOrMethod())
104       return true;
105
106     if (TL.isDefinition()) {
107       IndexCtx.indexTagDecl(D);
108       return true;
109     }
110
111     return IndexCtx.handleReference(D, TL.getNameLoc(),
112                                     Parent, ParentDC, SymbolRoleSet(),
113                                     Relations);
114   }
115
116   bool VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
117     return IndexCtx.handleReference(TL.getIFaceDecl(), TL.getNameLoc(),
118                                     Parent, ParentDC, SymbolRoleSet(), Relations);
119   }
120
121   bool VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
122     for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) {
123       IndexCtx.handleReference(TL.getProtocol(i), TL.getProtocolLoc(i),
124                                Parent, ParentDC, SymbolRoleSet(), Relations);
125     }
126     return true;
127   }
128
129   bool VisitTemplateSpecializationTypeLoc(TemplateSpecializationTypeLoc TL) {
130     if (const TemplateSpecializationType *T = TL.getTypePtr()) {
131       if (IndexCtx.shouldIndexImplicitTemplateInsts()) {
132         if (CXXRecordDecl *RD = T->getAsCXXRecordDecl())
133           IndexCtx.handleReference(RD, TL.getTemplateNameLoc(),
134                                    Parent, ParentDC, SymbolRoleSet(), Relations);
135       } else {
136         if (const TemplateDecl *D = T->getTemplateName().getAsTemplateDecl())
137           IndexCtx.handleReference(D, TL.getTemplateNameLoc(),
138                                    Parent, ParentDC, SymbolRoleSet(), Relations);
139       }
140     }
141     return true;
142   }
143
144   bool VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
145     const DependentNameType *DNT = TL.getTypePtr();
146     const NestedNameSpecifier *NNS = DNT->getQualifier();
147     const Type *T = NNS->getAsType();
148     if (!T)
149       return true;
150     const TemplateSpecializationType *TST =
151         T->getAs<TemplateSpecializationType>();
152     if (!TST)
153       return true;
154     TemplateName TN = TST->getTemplateName();
155     const ClassTemplateDecl *TD =
156         dyn_cast_or_null<ClassTemplateDecl>(TN.getAsTemplateDecl());
157     if (!TD)
158       return true;
159     CXXRecordDecl *RD = TD->getTemplatedDecl();
160     if (!RD->hasDefinition())
161       return true;
162     RD = RD->getDefinition();
163     DeclarationName Name(DNT->getIdentifier());
164     std::vector<const NamedDecl *> Symbols = RD->lookupDependentName(
165         Name, [](const NamedDecl *ND) { return isa<TypeDecl>(ND); });
166     if (Symbols.size() != 1)
167       return true;
168     return IndexCtx.handleReference(Symbols[0], TL.getNameLoc(), Parent,
169                                     ParentDC, SymbolRoleSet(), Relations);
170   }
171
172   bool TraverseStmt(Stmt *S) {
173     IndexCtx.indexBody(S, Parent, ParentDC);
174     return true;
175   }
176 };
177
178 } // anonymous namespace
179
180 void IndexingContext::indexTypeSourceInfo(TypeSourceInfo *TInfo,
181                                           const NamedDecl *Parent,
182                                           const DeclContext *DC,
183                                           bool isBase,
184                                           bool isIBType) {
185   if (!TInfo || TInfo->getTypeLoc().isNull())
186     return;
187   
188   indexTypeLoc(TInfo->getTypeLoc(), Parent, DC, isBase, isIBType);
189 }
190
191 void IndexingContext::indexTypeLoc(TypeLoc TL,
192                                    const NamedDecl *Parent,
193                                    const DeclContext *DC,
194                                    bool isBase,
195                                    bool isIBType) {
196   if (TL.isNull())
197     return;
198
199   if (!DC)
200     DC = Parent->getLexicalDeclContext();
201   TypeIndexer(*this, Parent, DC, isBase, isIBType).TraverseTypeLoc(TL);
202 }
203
204 void IndexingContext::indexNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS,
205                                                   const NamedDecl *Parent,
206                                                   const DeclContext *DC) {
207   if (!NNS)
208     return;
209
210   if (NestedNameSpecifierLoc Prefix = NNS.getPrefix())
211     indexNestedNameSpecifierLoc(Prefix, Parent, DC);
212
213   if (!DC)
214     DC = Parent->getLexicalDeclContext();
215   SourceLocation Loc = NNS.getLocalBeginLoc();
216
217   switch (NNS.getNestedNameSpecifier()->getKind()) {
218   case NestedNameSpecifier::Identifier:
219   case NestedNameSpecifier::Global:
220   case NestedNameSpecifier::Super:
221     break;
222
223   case NestedNameSpecifier::Namespace:
224     handleReference(NNS.getNestedNameSpecifier()->getAsNamespace(),
225                     Loc, Parent, DC, SymbolRoleSet());
226     break;
227   case NestedNameSpecifier::NamespaceAlias:
228     handleReference(NNS.getNestedNameSpecifier()->getAsNamespaceAlias(),
229                     Loc, Parent, DC, SymbolRoleSet());
230     break;
231
232   case NestedNameSpecifier::TypeSpec:
233   case NestedNameSpecifier::TypeSpecWithTemplate:
234     indexTypeLoc(NNS.getTypeLoc(), Parent, DC);
235     break;
236   }
237 }
238
239 void IndexingContext::indexTagDecl(const TagDecl *D,
240                                    ArrayRef<SymbolRelation> Relations) {
241   if (!shouldIndex(D))
242     return;
243   if (!shouldIndexFunctionLocalSymbols() && isFunctionLocalSymbol(D))
244     return;
245
246   if (handleDecl(D, /*Roles=*/SymbolRoleSet(), Relations)) {
247     if (D->isThisDeclarationADefinition()) {
248       indexNestedNameSpecifierLoc(D->getQualifierLoc(), D);
249       if (auto CXXRD = dyn_cast<CXXRecordDecl>(D)) {
250         for (const auto &I : CXXRD->bases()) {
251           indexTypeSourceInfo(I.getTypeSourceInfo(), CXXRD, CXXRD, /*isBase=*/true);
252         }
253       }
254       indexDeclContext(D);
255     }
256   }
257 }