blob: 91de8dbca05019b9cc53e9063b2e58644e310444 [file] [log] [blame]
Sean Callananb7160ca2017-04-11 19:33:35 +00001//===- ExternalASTMerger.cpp - Merging External AST Interface ---*- 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 implements the ExternalASTMerger, which vends a combination of
11// ASTs from several different ASTContext/FileManager pairs
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/AST/ASTContext.h"
16#include "clang/AST/Decl.h"
Sean Callanan967d4382017-09-27 19:57:58 +000017#include "clang/AST/DeclCXX.h"
Sean Callananb7160ca2017-04-11 19:33:35 +000018#include "clang/AST/DeclObjC.h"
Aleksei Sidorin8fc85102018-01-26 11:36:54 +000019#include "clang/AST/DeclTemplate.h"
Sean Callananb7160ca2017-04-11 19:33:35 +000020#include "clang/AST/ExternalASTMerger.h"
21
22using namespace clang;
23
24namespace {
25
26template <typename T> struct Source {
27 T t;
Sean Callananf8edb1d2017-04-11 20:51:21 +000028 Source(T t) : t(t) {}
Sean Callananb7160ca2017-04-11 19:33:35 +000029 operator T() { return t; }
30 template <typename U = T> U &get() { return t; }
31 template <typename U = T> const U &get() const { return t; }
32 template <typename U> operator Source<U>() { return Source<U>(t); }
33};
34
35typedef std::pair<Source<NamedDecl *>, ASTImporter *> Candidate;
36
Sean Callanan967d4382017-09-27 19:57:58 +000037/// For the given DC, return the DC that is safe to perform lookups on. This is
38/// the DC we actually want to work with most of the time.
39const DeclContext *CanonicalizeDC(const DeclContext *DC) {
40 if (isa<LinkageSpecDecl>(DC))
41 return DC->getRedeclContext();
42 return DC;
43}
Sean Callananb7160ca2017-04-11 19:33:35 +000044
45Source<const DeclContext *>
46LookupSameContext(Source<TranslationUnitDecl *> SourceTU, const DeclContext *DC,
47 ASTImporter &ReverseImporter) {
Sean Callanan967d4382017-09-27 19:57:58 +000048 DC = CanonicalizeDC(DC);
Sean Callananb7160ca2017-04-11 19:33:35 +000049 if (DC->isTranslationUnit()) {
50 return SourceTU;
51 }
52 Source<const DeclContext *> SourceParentDC =
53 LookupSameContext(SourceTU, DC->getParent(), ReverseImporter);
54 if (!SourceParentDC) {
55 // If we couldn't find the parent DC in this TranslationUnit, give up.
56 return nullptr;
57 }
Sean Callanan967d4382017-09-27 19:57:58 +000058 auto *ND = cast<NamedDecl>(DC);
Sean Callananb7160ca2017-04-11 19:33:35 +000059 DeclarationName Name = ND->getDeclName();
60 Source<DeclarationName> SourceName = ReverseImporter.Import(Name);
61 DeclContext::lookup_result SearchResult =
62 SourceParentDC.get()->lookup(SourceName.get());
63 size_t SearchResultSize = SearchResult.size();
Sean Callanan967d4382017-09-27 19:57:58 +000064 if (SearchResultSize == 0 || SearchResultSize > 1) {
65 // There are two cases here. First, we might not find the name.
66 // We might also find multiple copies, in which case we have no
67 // guarantee that the one we wanted is the one we pick. (E.g.,
68 // if we have two specializations of the same template it is
69 // very hard to determine which is the one you want.)
70 //
71 // The Origins map fixes this problem by allowing the origin to be
72 // explicitly recorded, so we trigger that recording by returning
73 // nothing (rather than a possibly-inaccurate guess) here.
Sean Callananb7160ca2017-04-11 19:33:35 +000074 return nullptr;
75 } else {
76 NamedDecl *SearchResultDecl = SearchResult[0];
Sean Callanan967d4382017-09-27 19:57:58 +000077 if (isa<DeclContext>(SearchResultDecl) &&
78 SearchResultDecl->getKind() == DC->getDeclKind())
79 return cast<DeclContext>(SearchResultDecl)->getPrimaryContext();
80 return nullptr; // This type of lookup is unsupported
Sean Callananb7160ca2017-04-11 19:33:35 +000081 }
82}
83
Sean Callanan967d4382017-09-27 19:57:58 +000084/// A custom implementation of ASTImporter, for ExternalASTMerger's purposes.
85///
86/// There are several modifications:
87///
88/// - It enables lazy lookup (via the HasExternalLexicalStorage flag and a few
89/// others), which instructs Clang to refer to ExternalASTMerger. Also, it
90/// forces MinimalImport to true, which is necessary to make this work.
91/// - It maintains a reverse importer for use with names. This allows lookup of
92/// arbitrary names in the source context.
93/// - It updates the ExternalASTMerger's origin map as needed whenever a
94/// it sees a DeclContext.
95class LazyASTImporter : public ASTImporter {
96private:
97 ExternalASTMerger &Parent;
98 ASTImporter Reverse;
99 const ExternalASTMerger::OriginMap &FromOrigins;
Sean Callananb7160ca2017-04-11 19:33:35 +0000100
Sean Callanan967d4382017-09-27 19:57:58 +0000101 llvm::raw_ostream &logs() { return Parent.logs(); }
102public:
103 LazyASTImporter(ExternalASTMerger &_Parent, ASTContext &ToContext,
104 FileManager &ToFileManager, ASTContext &FromContext,
105 FileManager &FromFileManager,
106 const ExternalASTMerger::OriginMap &_FromOrigins)
107 : ASTImporter(ToContext, ToFileManager, FromContext, FromFileManager,
108 /*MinimalImport=*/true),
109 Parent(_Parent), Reverse(FromContext, FromFileManager, ToContext,
110 ToFileManager, /*MinimalImport=*/true), FromOrigins(_FromOrigins) {}
111
112 /// Whenever a DeclContext is imported, ensure that ExternalASTSource's origin
113 /// map is kept up to date. Also set the appropriate flags.
114 Decl *Imported(Decl *From, Decl *To) override {
115 if (auto *ToDC = dyn_cast<DeclContext>(To)) {
116 const bool LoggingEnabled = Parent.LoggingEnabled();
117 if (LoggingEnabled)
118 logs() << "(ExternalASTMerger*)" << (void*)&Parent
119 << " imported (DeclContext*)" << (void*)ToDC
120 << ", (ASTContext*)" << (void*)&getToContext()
121 << " from (DeclContext*)" << (void*)llvm::cast<DeclContext>(From)
122 << ", (ASTContext*)" << (void*)&getFromContext()
123 << "\n";
124 Source<DeclContext *> FromDC(
125 cast<DeclContext>(From)->getPrimaryContext());
126 if (FromOrigins.count(FromDC) &&
127 Parent.HasImporterForOrigin(*FromOrigins.at(FromDC).AST)) {
128 if (LoggingEnabled)
129 logs() << "(ExternalASTMerger*)" << (void*)&Parent
130 << " forced origin (DeclContext*)"
131 << (void*)FromOrigins.at(FromDC).DC
132 << ", (ASTContext*)"
133 << (void*)FromOrigins.at(FromDC).AST
134 << "\n";
135 Parent.ForceRecordOrigin(ToDC, FromOrigins.at(FromDC));
136 } else {
137 if (LoggingEnabled)
138 logs() << "(ExternalASTMerger*)" << (void*)&Parent
139 << " maybe recording origin (DeclContext*)" << (void*)FromDC
140 << ", (ASTContext*)" << (void*)&getFromContext()
141 << "\n";
142 Parent.MaybeRecordOrigin(ToDC, {FromDC, &getFromContext()});
143 }
144 }
145 if (auto *ToTag = dyn_cast<TagDecl>(To)) {
146 ToTag->setHasExternalLexicalStorage();
147 ToTag->setMustBuildLookupTable();
148 assert(Parent.CanComplete(ToTag));
149 } else if (auto *ToNamespace = dyn_cast<NamespaceDecl>(To)) {
150 ToNamespace->setHasExternalVisibleStorage();
151 assert(Parent.CanComplete(ToNamespace));
152 } else if (auto *ToContainer = dyn_cast<ObjCContainerDecl>(To)) {
153 ToContainer->setHasExternalLexicalStorage();
154 ToContainer->setMustBuildLookupTable();
155 assert(Parent.CanComplete(ToContainer));
156 }
157 return ASTImporter::Imported(From, To);
Sean Callananb7160ca2017-04-11 19:33:35 +0000158 }
Sean Callanan967d4382017-09-27 19:57:58 +0000159 ASTImporter &GetReverse() { return Reverse; }
160};
Sean Callananb7160ca2017-04-11 19:33:35 +0000161
162bool HasDeclOfSameType(llvm::ArrayRef<Candidate> Decls, const Candidate &C) {
Sean Callanan967d4382017-09-27 19:57:58 +0000163 if (isa<FunctionDecl>(C.first.get()))
164 return false;
David Blaikie0a0c0332017-04-17 17:16:19 +0000165 return llvm::any_of(Decls, [&](const Candidate &D) {
Sean Callananb7160ca2017-04-11 19:33:35 +0000166 return C.first.get()->getKind() == D.first.get()->getKind();
167 });
168}
Sean Callanan967d4382017-09-27 19:57:58 +0000169
Sean Callananb7160ca2017-04-11 19:33:35 +0000170} // end namespace
171
Sean Callanan967d4382017-09-27 19:57:58 +0000172ASTImporter &ExternalASTMerger::ImporterForOrigin(ASTContext &OriginContext) {
173 for (const std::unique_ptr<ASTImporter> &I : Importers)
174 if (&I->getFromContext() == &OriginContext)
175 return *I;
176 llvm_unreachable("We should have an importer for this origin!");
177}
178
179namespace {
180LazyASTImporter &LazyImporterForOrigin(ExternalASTMerger &Merger,
181 ASTContext &OriginContext) {
182 return static_cast<LazyASTImporter &>(
183 Merger.ImporterForOrigin(OriginContext));
184}
185}
186
187bool ExternalASTMerger::HasImporterForOrigin(ASTContext &OriginContext) {
188 for (const std::unique_ptr<ASTImporter> &I : Importers)
189 if (&I->getFromContext() == &OriginContext)
190 return true;
191 return false;
192}
193
194template <typename CallbackType>
195void ExternalASTMerger::ForEachMatchingDC(const DeclContext *DC,
196 CallbackType Callback) {
197 if (Origins.count(DC)) {
198 ExternalASTMerger::DCOrigin Origin = Origins[DC];
199 LazyASTImporter &Importer = LazyImporterForOrigin(*this, *Origin.AST);
200 Callback(Importer, Importer.GetReverse(), Origin.DC);
201 } else {
202 bool DidCallback = false;
203 for (const std::unique_ptr<ASTImporter> &Importer : Importers) {
204 Source<TranslationUnitDecl *> SourceTU =
205 Importer->getFromContext().getTranslationUnitDecl();
206 ASTImporter &Reverse =
207 static_cast<LazyASTImporter *>(Importer.get())->GetReverse();
208 if (auto SourceDC = LookupSameContext(SourceTU, DC, Reverse)) {
209 DidCallback = true;
210 if (Callback(*Importer, Reverse, SourceDC))
211 break;
212 }
213 }
214 if (!DidCallback && LoggingEnabled())
215 logs() << "(ExternalASTMerger*)" << (void*)this
Nico Weber6fc579d2017-09-28 15:44:46 +0000216 << " asserting for (DeclContext*)" << (const void*)DC
Sean Callanan967d4382017-09-27 19:57:58 +0000217 << ", (ASTContext*)" << (void*)&Target.AST
218 << "\n";
219 assert(DidCallback && "Couldn't find a source context matching our DC");
220 }
221}
222
223void ExternalASTMerger::CompleteType(TagDecl *Tag) {
224 assert(Tag->hasExternalLexicalStorage());
225 ForEachMatchingDC(Tag, [&](ASTImporter &Forward, ASTImporter &Reverse,
226 Source<const DeclContext *> SourceDC) -> bool {
227 auto *SourceTag = const_cast<TagDecl *>(cast<TagDecl>(SourceDC.get()));
228 if (SourceTag->hasExternalLexicalStorage())
229 SourceTag->getASTContext().getExternalSource()->CompleteType(SourceTag);
230 if (!SourceTag->getDefinition())
231 return false;
232 Forward.Imported(SourceTag, Tag);
233 Forward.ImportDefinition(SourceTag);
234 Tag->setCompleteDefinition(SourceTag->isCompleteDefinition());
235 return true;
236 });
237}
238
239void ExternalASTMerger::CompleteType(ObjCInterfaceDecl *Interface) {
240 assert(Interface->hasExternalLexicalStorage());
241 ForEachMatchingDC(
242 Interface, [&](ASTImporter &Forward, ASTImporter &Reverse,
243 Source<const DeclContext *> SourceDC) -> bool {
244 auto *SourceInterface = const_cast<ObjCInterfaceDecl *>(
245 cast<ObjCInterfaceDecl>(SourceDC.get()));
246 if (SourceInterface->hasExternalLexicalStorage())
247 SourceInterface->getASTContext().getExternalSource()->CompleteType(
248 SourceInterface);
249 if (!SourceInterface->getDefinition())
250 return false;
251 Forward.Imported(SourceInterface, Interface);
252 Forward.ImportDefinition(SourceInterface);
253 return true;
254 });
255}
256
257bool ExternalASTMerger::CanComplete(DeclContext *Interface) {
258 assert(Interface->hasExternalLexicalStorage() ||
259 Interface->hasExternalVisibleStorage());
260 bool FoundMatchingDC = false;
261 ForEachMatchingDC(Interface,
262 [&](ASTImporter &Forward, ASTImporter &Reverse,
263 Source<const DeclContext *> SourceDC) -> bool {
264 FoundMatchingDC = true;
265 return true;
266 });
267 return FoundMatchingDC;
268}
269
270namespace {
271bool IsSameDC(const DeclContext *D1, const DeclContext *D2) {
272 if (isa<ObjCContainerDecl>(D1) && isa<ObjCContainerDecl>(D2))
273 return true; // There are many cases where Objective-C is ambiguous.
274 if (auto *T1 = dyn_cast<TagDecl>(D1))
275 if (auto *T2 = dyn_cast<TagDecl>(D2))
276 if (T1->getFirstDecl() == T2->getFirstDecl())
277 return true;
278 return D1 == D2 || D1 == CanonicalizeDC(D2);
279}
280}
281
282void ExternalASTMerger::MaybeRecordOrigin(const DeclContext *ToDC,
283 DCOrigin Origin) {
284 LazyASTImporter &Importer = LazyImporterForOrigin(*this, *Origin.AST);
285 ASTImporter &Reverse = Importer.GetReverse();
286 Source<const DeclContext *> FoundFromDC =
287 LookupSameContext(Origin.AST->getTranslationUnitDecl(), ToDC, Reverse);
288 const bool DoRecord = !FoundFromDC || !IsSameDC(FoundFromDC.get(), Origin.DC);
289 if (DoRecord)
290 RecordOriginImpl(ToDC, Origin, Importer);
291 if (LoggingEnabled())
292 logs() << "(ExternalASTMerger*)" << (void*)this
293 << (DoRecord ? " decided " : " decided NOT")
294 << " to record origin (DeclContext*)" << (void*)Origin.DC
295 << ", (ASTContext*)" << (void*)&Origin.AST
296 << "\n";
297}
298
299void ExternalASTMerger::ForceRecordOrigin(const DeclContext *ToDC,
300 DCOrigin Origin) {
301 RecordOriginImpl(ToDC, Origin, ImporterForOrigin(*Origin.AST));
302}
303
304void ExternalASTMerger::RecordOriginImpl(const DeclContext *ToDC, DCOrigin Origin,
305 ASTImporter &Importer) {
306 Origins[ToDC] = Origin;
307 Importer.ASTImporter::Imported(cast<Decl>(Origin.DC), const_cast<Decl*>(cast<Decl>(ToDC)));
308}
309
310ExternalASTMerger::ExternalASTMerger(const ImporterTarget &Target,
311 llvm::ArrayRef<ImporterSource> Sources) : LogStream(&llvm::nulls()), Target(Target) {
312 AddSources(Sources);
313}
314
315void ExternalASTMerger::AddSources(llvm::ArrayRef<ImporterSource> Sources) {
316 for (const ImporterSource &S : Sources) {
317 assert(&S.AST != &Target.AST);
318 Importers.push_back(llvm::make_unique<LazyASTImporter>(
319 *this, Target.AST, Target.FM, S.AST, S.FM, S.OM));
320 }
321}
322
323void ExternalASTMerger::RemoveSources(llvm::ArrayRef<ImporterSource> Sources) {
324 if (LoggingEnabled())
325 for (const ImporterSource &S : Sources)
326 logs() << "(ExternalASTMerger*)" << (void*)this
327 << " removing source (ASTContext*)" << (void*)&S.AST
328 << "\n";
329 Importers.erase(
330 std::remove_if(Importers.begin(), Importers.end(),
331 [&Sources](std::unique_ptr<ASTImporter> &Importer) -> bool {
332 for (const ImporterSource &S : Sources) {
333 if (&Importer->getFromContext() == &S.AST)
334 return true;
335 }
336 return false;
337 }),
338 Importers.end());
339 for (OriginMap::iterator OI = Origins.begin(), OE = Origins.end(); OI != OE; ) {
340 std::pair<const DeclContext *, DCOrigin> Origin = *OI;
341 bool Erase = false;
342 for (const ImporterSource &S : Sources) {
343 if (&S.AST == Origin.second.AST) {
344 Erase = true;
345 break;
346 }
347 }
348 if (Erase)
349 OI = Origins.erase(OI);
350 else
351 ++OI;
Sean Callananb7160ca2017-04-11 19:33:35 +0000352 }
353}
354
Aleksei Sidorin8fc85102018-01-26 11:36:54 +0000355template <typename DeclTy>
356static bool importSpecializations(DeclTy *D, ASTImporter *Importer) {
357 for (auto *Spec : D->specializations())
358 if (!Importer->Import(Spec))
359 return true;
360 return false;
361}
362
363/// Imports specializations from template declarations that can be specialized.
364static bool importSpecializationsIfNeeded(Decl *D, ASTImporter *Importer) {
365 if (!isa<TemplateDecl>(D))
366 return false;
367 if (auto *FunctionTD = dyn_cast<FunctionTemplateDecl>(D))
368 return importSpecializations(FunctionTD, Importer);
369 else if (auto *ClassTD = dyn_cast<ClassTemplateDecl>(D))
370 return importSpecializations(ClassTD, Importer);
371 else if (auto *VarTD = dyn_cast<VarTemplateDecl>(D))
372 return importSpecializations(VarTD, Importer);
373 return false;
374}
375
Sean Callananb7160ca2017-04-11 19:33:35 +0000376bool ExternalASTMerger::FindExternalVisibleDeclsByName(const DeclContext *DC,
377 DeclarationName Name) {
378 llvm::SmallVector<NamedDecl *, 1> Decls;
Sean Callanan967d4382017-09-27 19:57:58 +0000379 llvm::SmallVector<Candidate, 4> Candidates;
Sean Callananb7160ca2017-04-11 19:33:35 +0000380
Sean Callanan967d4382017-09-27 19:57:58 +0000381 auto FilterFoundDecl = [&Candidates](const Candidate &C) {
382 if (!HasDeclOfSameType(Candidates, C))
383 Candidates.push_back(C);
Sean Callananb7160ca2017-04-11 19:33:35 +0000384 };
385
Sean Callanan967d4382017-09-27 19:57:58 +0000386 ForEachMatchingDC(DC, [&](ASTImporter &Forward, ASTImporter &Reverse,
387 Source<const DeclContext *> SourceDC) -> bool {
388 DeclarationName FromName = Reverse.Import(Name);
389 DeclContextLookupResult Result = SourceDC.get()->lookup(FromName);
390 for (NamedDecl *FromD : Result) {
391 FilterFoundDecl(std::make_pair(FromD, &Forward));
392 }
Sean Callananb7160ca2017-04-11 19:33:35 +0000393 return false;
Sean Callanan967d4382017-09-27 19:57:58 +0000394 });
Sean Callananb7160ca2017-04-11 19:33:35 +0000395
Sean Callanan967d4382017-09-27 19:57:58 +0000396 if (Candidates.empty())
397 return false;
398
399 Decls.reserve(Candidates.size());
400 for (const Candidate &C : Candidates) {
Aleksei Sidorin8fc85102018-01-26 11:36:54 +0000401 Decl *LookupRes = C.first.get();
402 ASTImporter *Importer = C.second;
403 NamedDecl *ND = cast_or_null<NamedDecl>(Importer->Import(LookupRes));
404 assert(ND);
405 // If we don't import specialization, they are not available via lookup
406 // because the lookup result is imported TemplateDecl and it does not
407 // reference its specializations until they are imported explicitly.
408 bool IsSpecImportFailed =
409 importSpecializationsIfNeeded(LookupRes, Importer);
410 assert(!IsSpecImportFailed);
411 Decls.push_back(ND);
Sean Callananb7160ca2017-04-11 19:33:35 +0000412 }
413 SetExternalVisibleDeclsForName(DC, Name, Decls);
414 return true;
415}
416
417void ExternalASTMerger::FindExternalLexicalDecls(
418 const DeclContext *DC, llvm::function_ref<bool(Decl::Kind)> IsKindWeWant,
419 SmallVectorImpl<Decl *> &Result) {
Sean Callanan967d4382017-09-27 19:57:58 +0000420 ForEachMatchingDC(DC, [&](ASTImporter &Forward, ASTImporter &Reverse,
421 Source<const DeclContext *> SourceDC) -> bool {
422 for (const Decl *SourceDecl : SourceDC.get()->decls()) {
423 if (IsKindWeWant(SourceDecl->getKind())) {
424 Decl *ImportedDecl = Forward.Import(const_cast<Decl *>(SourceDecl));
425 assert(!ImportedDecl || IsSameDC(ImportedDecl->getDeclContext(), DC));
426 (void)ImportedDecl;
427 }
428 }
429 return false;
430 });
Sean Callananb7160ca2017-04-11 19:33:35 +0000431}
Sean Callanan9092d472017-05-13 00:46:33 +0000432