2018-04-06 23:14:32 +08:00
|
|
|
//===-- ASTMerge.cpp - AST Merging Frontend Action --------------*- C++ -*-===//
|
2010-02-10 03:21:46 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2018-04-11 02:53:28 +08:00
|
|
|
#include "clang/Frontend/ASTUnit.h"
|
2010-02-10 03:21:46 +08:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2010-02-10 06:37:58 +08:00
|
|
|
#include "clang/AST/ASTDiagnostic.h"
|
2010-02-10 03:21:46 +08:00
|
|
|
#include "clang/AST/ASTImporter.h"
|
2010-04-06 07:52:57 +08:00
|
|
|
#include "clang/Basic/Diagnostic.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "clang/Frontend/CompilerInstance.h"
|
|
|
|
#include "clang/Frontend/FrontendActions.h"
|
2010-02-10 03:21:46 +08:00
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
|
2014-08-11 03:56:51 +08:00
|
|
|
std::unique_ptr<ASTConsumer>
|
|
|
|
ASTMergeAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
|
2010-02-10 03:21:46 +08:00
|
|
|
return AdaptedAction->CreateASTConsumer(CI, InFile);
|
|
|
|
}
|
|
|
|
|
2017-06-09 09:36:10 +08:00
|
|
|
bool ASTMergeAction::BeginSourceFileAction(CompilerInstance &CI) {
|
2010-02-10 03:21:46 +08:00
|
|
|
// FIXME: This is a hack. We need a better way to communicate the
|
|
|
|
// AST file, compiler instance, and file name than member variables
|
|
|
|
// of FrontendAction.
|
2012-01-21 00:28:04 +08:00
|
|
|
AdaptedAction->setCurrentInput(getCurrentInput(), takeCurrentASTUnit());
|
2010-02-10 03:21:46 +08:00
|
|
|
AdaptedAction->setCompilerInstance(&CI);
|
2017-06-09 09:36:10 +08:00
|
|
|
return AdaptedAction->BeginSourceFileAction(CI);
|
2010-02-10 03:21:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ASTMergeAction::ExecuteAction() {
|
|
|
|
CompilerInstance &CI = getCompilerInstance();
|
2010-02-11 01:16:49 +08:00
|
|
|
CI.getDiagnostics().getClient()->BeginSourceFile(
|
2013-05-04 06:58:43 +08:00
|
|
|
CI.getASTContext().getLangOpts());
|
2010-02-10 06:37:58 +08:00
|
|
|
CI.getDiagnostics().SetArgToStringFn(&FormatASTNodeDiagnosticArgument,
|
|
|
|
&CI.getASTContext());
|
2012-02-20 22:00:23 +08:00
|
|
|
IntrusiveRefCntPtr<DiagnosticIDs>
|
2010-11-19 04:06:41 +08:00
|
|
|
DiagIDs(CI.getDiagnostics().getDiagnosticIDs());
|
2010-02-10 03:21:46 +08:00
|
|
|
for (unsigned I = 0, N = ASTFiles.size(); I != N; ++I) {
|
2012-02-20 22:00:23 +08:00
|
|
|
IntrusiveRefCntPtr<DiagnosticsEngine>
|
2012-10-24 06:26:28 +08:00
|
|
|
Diags(new DiagnosticsEngine(DiagIDs, &CI.getDiagnosticOpts(),
|
2013-05-04 06:58:43 +08:00
|
|
|
new ForwardingDiagnosticConsumer(
|
|
|
|
*CI.getDiagnostics().getClient()),
|
|
|
|
/*ShouldOwnClient=*/true));
|
2017-06-30 07:23:46 +08:00
|
|
|
std::unique_ptr<ASTUnit> Unit = ASTUnit::LoadFromASTFile(
|
|
|
|
ASTFiles[I], CI.getPCHContainerReader(), ASTUnit::LoadEverything, Diags,
|
|
|
|
CI.getFileSystemOpts(), false);
|
2015-06-21 02:53:08 +08:00
|
|
|
|
2010-02-10 03:21:46 +08:00
|
|
|
if (!Unit)
|
|
|
|
continue;
|
|
|
|
|
2010-11-19 04:06:41 +08:00
|
|
|
ASTImporter Importer(CI.getASTContext(),
|
2010-02-10 08:15:17 +08:00
|
|
|
CI.getFileManager(),
|
|
|
|
Unit->getASTContext(),
|
2011-01-18 11:11:38 +08:00
|
|
|
Unit->getFileManager(),
|
|
|
|
/*MinimalImport=*/false);
|
2010-02-10 03:21:46 +08:00
|
|
|
|
|
|
|
TranslationUnitDecl *TU = Unit->getASTContext().getTranslationUnitDecl();
|
2014-03-08 03:56:05 +08:00
|
|
|
for (auto *D : TU->decls()) {
|
2010-02-16 08:04:46 +08:00
|
|
|
// Don't re-import __va_list_tag, __builtin_va_list.
|
2014-03-08 03:56:05 +08:00
|
|
|
if (const auto *ND = dyn_cast<NamedDecl>(D))
|
2010-02-16 08:04:46 +08:00
|
|
|
if (IdentifierInfo *II = ND->getIdentifier())
|
|
|
|
if (II->isStr("__va_list_tag") || II->isStr("__builtin_va_list"))
|
|
|
|
continue;
|
|
|
|
|
2015-04-29 02:24:12 +08:00
|
|
|
Decl *ToD = Importer.Import(D);
|
|
|
|
|
|
|
|
if (ToD) {
|
|
|
|
DeclGroupRef DGR(ToD);
|
|
|
|
CI.getASTConsumer().HandleTopLevelDecl(DGR);
|
|
|
|
}
|
2010-02-10 03:21:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-11 01:16:49 +08:00
|
|
|
AdaptedAction->ExecuteAction();
|
|
|
|
CI.getDiagnostics().getClient()->EndSourceFile();
|
2010-02-10 03:21:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ASTMergeAction::EndSourceFileAction() {
|
|
|
|
return AdaptedAction->EndSourceFileAction();
|
|
|
|
}
|
|
|
|
|
2016-02-08 03:28:36 +08:00
|
|
|
ASTMergeAction::ASTMergeAction(std::unique_ptr<FrontendAction> adaptedAction,
|
2012-02-04 09:36:04 +08:00
|
|
|
ArrayRef<std::string> ASTFiles)
|
2016-02-08 03:28:36 +08:00
|
|
|
: AdaptedAction(std::move(adaptedAction)), ASTFiles(ASTFiles.begin(), ASTFiles.end()) {
|
2010-02-10 03:21:46 +08:00
|
|
|
assert(AdaptedAction && "ASTMergeAction needs an action to adapt");
|
|
|
|
}
|
|
|
|
|
|
|
|
ASTMergeAction::~ASTMergeAction() {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ASTMergeAction::usesPreprocessorOnly() const {
|
|
|
|
return AdaptedAction->usesPreprocessorOnly();
|
|
|
|
}
|
|
|
|
|
2011-08-26 06:30:56 +08:00
|
|
|
TranslationUnitKind ASTMergeAction::getTranslationUnitKind() {
|
|
|
|
return AdaptedAction->getTranslationUnitKind();
|
2010-02-10 03:21:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ASTMergeAction::hasPCHSupport() const {
|
|
|
|
return AdaptedAction->hasPCHSupport();
|
|
|
|
}
|
|
|
|
|
2010-06-08 07:24:43 +08:00
|
|
|
bool ASTMergeAction::hasASTFileSupport() const {
|
|
|
|
return AdaptedAction->hasASTFileSupport();
|
2010-02-10 03:21:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ASTMergeAction::hasCodeCompletionSupport() const {
|
|
|
|
return AdaptedAction->hasCodeCompletionSupport();
|
|
|
|
}
|