2009-11-14 18:42:35 +08:00
|
|
|
//===--- FrontendAction.cpp -----------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/Frontend/FrontendAction.h"
|
2010-07-30 08:29:29 +08:00
|
|
|
#include "clang/AST/ASTConsumer.h"
|
2009-11-14 18:42:35 +08:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2011-01-26 04:34:14 +08:00
|
|
|
#include "clang/AST/DeclGroup.h"
|
2009-11-14 18:42:35 +08:00
|
|
|
#include "clang/Lex/HeaderSearch.h"
|
|
|
|
#include "clang/Lex/Preprocessor.h"
|
|
|
|
#include "clang/Frontend/ASTUnit.h"
|
|
|
|
#include "clang/Frontend/CompilerInstance.h"
|
|
|
|
#include "clang/Frontend/FrontendDiagnostic.h"
|
2011-01-26 04:34:14 +08:00
|
|
|
#include "clang/Frontend/FrontendPluginRegistry.h"
|
|
|
|
#include "clang/Frontend/MultiplexConsumer.h"
|
2010-08-21 02:27:03 +08:00
|
|
|
#include "clang/Parse/ParseAST.h"
|
2010-10-15 04:14:18 +08:00
|
|
|
#include "clang/Serialization/ASTDeserializationListener.h"
|
2011-03-10 01:21:42 +08:00
|
|
|
#include "clang/Serialization/ChainedIncludesSource.h"
|
2009-11-14 18:42:35 +08:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include "llvm/Support/Timer.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
using namespace clang;
|
|
|
|
|
2010-10-15 04:14:18 +08:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
/// \brief Dumps deserialized declarations.
|
|
|
|
class DeserializedDeclsDumper : public ASTDeserializationListener {
|
|
|
|
ASTDeserializationListener *Previous;
|
|
|
|
|
|
|
|
public:
|
|
|
|
DeserializedDeclsDumper(ASTDeserializationListener *Previous)
|
|
|
|
: Previous(Previous) { }
|
|
|
|
|
|
|
|
virtual void DeclRead(serialization::DeclID ID, const Decl *D) {
|
|
|
|
llvm::outs() << "PCH DECL: " << D->getDeclKindName();
|
|
|
|
if (const NamedDecl *ND = dyn_cast<NamedDecl>(D))
|
|
|
|
llvm::outs() << " - " << ND->getNameAsString();
|
|
|
|
llvm::outs() << "\n";
|
|
|
|
|
|
|
|
if (Previous)
|
|
|
|
Previous->DeclRead(ID, D);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-10-15 04:14:25 +08:00
|
|
|
/// \brief Checks deserialized declarations and emits error if a name
|
|
|
|
/// matches one given in command-line using -error-on-deserialized-decl.
|
|
|
|
class DeserializedDeclsChecker : public ASTDeserializationListener {
|
|
|
|
ASTContext &Ctx;
|
|
|
|
std::set<std::string> NamesToCheck;
|
|
|
|
ASTDeserializationListener *Previous;
|
|
|
|
|
|
|
|
public:
|
|
|
|
DeserializedDeclsChecker(ASTContext &Ctx,
|
|
|
|
const std::set<std::string> &NamesToCheck,
|
|
|
|
ASTDeserializationListener *Previous)
|
|
|
|
: Ctx(Ctx), NamesToCheck(NamesToCheck), Previous(Previous) { }
|
|
|
|
|
|
|
|
virtual void DeclRead(serialization::DeclID ID, const Decl *D) {
|
|
|
|
if (const NamedDecl *ND = dyn_cast<NamedDecl>(D))
|
|
|
|
if (NamesToCheck.find(ND->getNameAsString()) != NamesToCheck.end()) {
|
|
|
|
unsigned DiagID
|
|
|
|
= Ctx.getDiagnostics().getCustomDiagID(Diagnostic::Error,
|
|
|
|
"%0 was deserialized");
|
|
|
|
Ctx.getDiagnostics().Report(Ctx.getFullLoc(D->getLocation()), DiagID)
|
|
|
|
<< ND->getNameAsString();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Previous)
|
|
|
|
Previous->DeclRead(ID, D);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-10-15 04:14:18 +08:00
|
|
|
} // end anonymous namespace
|
|
|
|
|
2009-11-29 17:57:35 +08:00
|
|
|
FrontendAction::FrontendAction() : Instance(0) {}
|
2009-11-14 18:42:35 +08:00
|
|
|
|
|
|
|
FrontendAction::~FrontendAction() {}
|
|
|
|
|
2010-06-08 07:25:49 +08:00
|
|
|
void FrontendAction::setCurrentFile(llvm::StringRef Value, InputKind Kind,
|
|
|
|
ASTUnit *AST) {
|
2009-11-14 18:42:35 +08:00
|
|
|
CurrentFile = Value;
|
2010-06-08 07:25:49 +08:00
|
|
|
CurrentFileKind = Kind;
|
2009-11-14 18:42:35 +08:00
|
|
|
CurrentASTUnit.reset(AST);
|
|
|
|
}
|
|
|
|
|
2011-01-26 04:34:14 +08:00
|
|
|
ASTConsumer* FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI,
|
|
|
|
llvm::StringRef InFile) {
|
|
|
|
ASTConsumer* Consumer = CreateASTConsumer(CI, InFile);
|
|
|
|
if (!Consumer)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (CI.getFrontendOpts().AddPluginActions.size() == 0)
|
|
|
|
return Consumer;
|
|
|
|
|
|
|
|
// Make sure the non-plugin consumer is first, so that plugins can't
|
|
|
|
// modifiy the AST.
|
|
|
|
std::vector<ASTConsumer*> Consumers(1, Consumer);
|
|
|
|
|
|
|
|
for (size_t i = 0, e = CI.getFrontendOpts().AddPluginActions.size();
|
|
|
|
i != e; ++i) {
|
|
|
|
// This is O(|plugins| * |add_plugins|), but since both numbers are
|
|
|
|
// way below 50 in practice, that's ok.
|
|
|
|
for (FrontendPluginRegistry::iterator
|
|
|
|
it = FrontendPluginRegistry::begin(),
|
|
|
|
ie = FrontendPluginRegistry::end();
|
|
|
|
it != ie; ++it) {
|
|
|
|
if (it->getName() == CI.getFrontendOpts().AddPluginActions[i]) {
|
|
|
|
llvm::OwningPtr<PluginASTAction> P(it->instantiate());
|
|
|
|
FrontendAction* c = P.get();
|
2011-01-30 05:21:49 +08:00
|
|
|
if (P->ParseArgs(CI, CI.getFrontendOpts().AddPluginArgs[i]))
|
2011-01-26 04:34:14 +08:00
|
|
|
Consumers.push_back(c->CreateASTConsumer(CI, InFile));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new MultiplexConsumer(Consumers);
|
|
|
|
}
|
|
|
|
|
2009-11-14 18:42:35 +08:00
|
|
|
bool FrontendAction::BeginSourceFile(CompilerInstance &CI,
|
|
|
|
llvm::StringRef Filename,
|
2010-06-08 07:23:06 +08:00
|
|
|
InputKind InputKind) {
|
2009-11-14 18:42:35 +08:00
|
|
|
assert(!Instance && "Already processing a source file!");
|
|
|
|
assert(!Filename.empty() && "Unexpected empty filename!");
|
2010-06-08 07:25:49 +08:00
|
|
|
setCurrentFile(Filename, InputKind);
|
2009-11-14 18:42:35 +08:00
|
|
|
setCompilerInstance(&CI);
|
|
|
|
|
2011-06-18 08:53:41 +08:00
|
|
|
if (!BeginInvocation(CI))
|
|
|
|
goto failure;
|
|
|
|
|
2009-11-14 18:42:35 +08:00
|
|
|
// AST files follow a very different path, since they share objects via the
|
|
|
|
// AST unit.
|
2010-06-08 07:23:50 +08:00
|
|
|
if (InputKind == IK_AST) {
|
2009-11-14 18:42:35 +08:00
|
|
|
assert(!usesPreprocessorOnly() &&
|
|
|
|
"Attempt to pass AST file to preprocessor only action!");
|
2010-06-08 07:24:43 +08:00
|
|
|
assert(hasASTFileSupport() &&
|
|
|
|
"This action does not have AST file support!");
|
2009-11-14 18:42:35 +08:00
|
|
|
|
2010-04-06 07:52:57 +08:00
|
|
|
llvm::IntrusiveRefCntPtr<Diagnostic> Diags(&CI.getDiagnostics());
|
2009-11-14 18:42:35 +08:00
|
|
|
std::string Error;
|
2010-11-04 06:45:23 +08:00
|
|
|
ASTUnit *AST = ASTUnit::LoadFromASTFile(Filename, Diags,
|
|
|
|
CI.getFileSystemOpts());
|
2009-12-03 09:45:44 +08:00
|
|
|
if (!AST)
|
2009-11-14 18:42:35 +08:00
|
|
|
goto failure;
|
|
|
|
|
2010-06-08 07:25:49 +08:00
|
|
|
setCurrentFile(Filename, InputKind, AST);
|
2009-11-14 18:42:35 +08:00
|
|
|
|
|
|
|
// Set the shared objects, these are reset when we finish processing the
|
|
|
|
// file, otherwise the CompilerInstance will happily destroy them.
|
|
|
|
CI.setFileManager(&AST->getFileManager());
|
|
|
|
CI.setSourceManager(&AST->getSourceManager());
|
|
|
|
CI.setPreprocessor(&AST->getPreprocessor());
|
|
|
|
CI.setASTContext(&AST->getASTContext());
|
|
|
|
|
|
|
|
// Initialize the action.
|
|
|
|
if (!BeginSourceFileAction(CI, Filename))
|
|
|
|
goto failure;
|
|
|
|
|
|
|
|
/// Create the AST consumer.
|
2011-01-26 04:34:14 +08:00
|
|
|
CI.setASTConsumer(CreateWrappedASTConsumer(CI, Filename));
|
2009-11-14 18:42:35 +08:00
|
|
|
if (!CI.hasASTConsumer())
|
|
|
|
goto failure;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-06-08 07:26:47 +08:00
|
|
|
// Set up the file and source managers, if needed.
|
2010-06-08 07:23:50 +08:00
|
|
|
if (!CI.hasFileManager())
|
|
|
|
CI.createFileManager();
|
|
|
|
if (!CI.hasSourceManager())
|
2010-11-23 16:35:12 +08:00
|
|
|
CI.createSourceManager(CI.getFileManager());
|
2010-06-08 07:26:47 +08:00
|
|
|
|
|
|
|
// IR files bypass the rest of initialization.
|
|
|
|
if (InputKind == IK_LLVM_IR) {
|
|
|
|
assert(hasIRSupport() &&
|
|
|
|
"This action does not have IR file support!");
|
|
|
|
|
|
|
|
// Inform the diagnostic client we are processing a source file.
|
|
|
|
CI.getDiagnosticClient().BeginSourceFile(CI.getLangOpts(), 0);
|
|
|
|
|
|
|
|
// Initialize the action.
|
|
|
|
if (!BeginSourceFileAction(CI, Filename))
|
|
|
|
goto failure;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set up the preprocessor.
|
2010-06-08 07:23:50 +08:00
|
|
|
CI.createPreprocessor();
|
|
|
|
|
2009-11-14 18:42:35 +08:00
|
|
|
// Inform the diagnostic client we are processing a source file.
|
|
|
|
CI.getDiagnosticClient().BeginSourceFile(CI.getLangOpts(),
|
|
|
|
&CI.getPreprocessor());
|
|
|
|
|
|
|
|
// Initialize the action.
|
|
|
|
if (!BeginSourceFileAction(CI, Filename))
|
|
|
|
goto failure;
|
|
|
|
|
|
|
|
/// Create the AST context and consumer unless this is a preprocessor only
|
|
|
|
/// action.
|
|
|
|
if (!usesPreprocessorOnly()) {
|
|
|
|
CI.createASTContext();
|
|
|
|
|
2011-01-26 04:34:14 +08:00
|
|
|
llvm::OwningPtr<ASTConsumer> Consumer(
|
|
|
|
CreateWrappedASTConsumer(CI, Filename));
|
2010-10-30 03:49:13 +08:00
|
|
|
if (!Consumer)
|
|
|
|
goto failure;
|
2010-07-30 08:29:29 +08:00
|
|
|
|
2010-10-25 01:26:36 +08:00
|
|
|
CI.getASTContext().setASTMutationListener(Consumer->GetASTMutationListener());
|
|
|
|
|
2011-03-10 01:21:42 +08:00
|
|
|
if (!CI.getPreprocessorOpts().ChainedIncludes.empty()) {
|
|
|
|
// Convert headers to PCH and chain them.
|
|
|
|
llvm::OwningPtr<ExternalASTSource> source;
|
|
|
|
source.reset(ChainedIncludesSource::create(CI));
|
|
|
|
if (!source)
|
|
|
|
goto failure;
|
|
|
|
CI.getASTContext().setExternalSource(source);
|
|
|
|
|
|
|
|
} else if (!CI.getPreprocessorOpts().ImplicitPCHInclude.empty()) {
|
|
|
|
// Use PCH.
|
2009-11-14 18:42:35 +08:00
|
|
|
assert(hasPCHSupport() && "This action does not have PCH support!");
|
Revamp the SourceManager to separate the representation of parsed
source locations from source locations loaded from an AST/PCH file.
Previously, loading an AST/PCH file involved carefully pre-allocating
space at the beginning of the source manager for the source locations
and FileIDs that correspond to the prefix, and then appending the
source locations/FileIDs used for parsing the remaining translation
unit. This design forced us into loading PCH files early, as a prefix,
whic has become a rather significant limitation.
This patch splits the SourceManager space into two parts: for source
location "addresses", the lower values (growing upward) are used to
describe parsed code, while upper values (growing downward) are used
for source locations loaded from AST/PCH files. Similarly, positive
FileIDs are used to describe parsed code while negative FileIDs are
used to file/macro locations loaded from AST/PCH files. As a result,
we can load PCH/AST files even during parsing, making various
improvemnts in the future possible, e.g., teaching #include <foo.h> to
look for and load <foo.h.gch> if it happens to be already available.
This patch was originally written by Sebastian Redl, then brought
forward to the modern age by Jonathan Turner, and finally
polished/finished by me to be committed.
llvm-svn: 135484
2011-07-20 00:10:42 +08:00
|
|
|
ASTDeserializationListener *DeserialListener =
|
|
|
|
Consumer->GetASTDeserializationListener();
|
2010-10-15 04:14:18 +08:00
|
|
|
if (CI.getPreprocessorOpts().DumpDeserializedPCHDecls)
|
|
|
|
DeserialListener = new DeserializedDeclsDumper(DeserialListener);
|
2010-10-15 04:14:25 +08:00
|
|
|
if (!CI.getPreprocessorOpts().DeserializedPCHDeclsToErrorOn.empty())
|
|
|
|
DeserialListener = new DeserializedDeclsChecker(CI.getASTContext(),
|
|
|
|
CI.getPreprocessorOpts().DeserializedPCHDeclsToErrorOn,
|
|
|
|
DeserialListener);
|
2009-11-14 18:42:35 +08:00
|
|
|
CI.createPCHExternalASTSource(
|
2010-07-27 08:27:13 +08:00
|
|
|
CI.getPreprocessorOpts().ImplicitPCHInclude,
|
2010-07-30 08:29:29 +08:00
|
|
|
CI.getPreprocessorOpts().DisablePCHValidation,
|
2011-02-06 03:42:43 +08:00
|
|
|
CI.getPreprocessorOpts().DisableStatCache,
|
2010-10-15 04:14:18 +08:00
|
|
|
DeserialListener);
|
2009-11-14 18:42:35 +08:00
|
|
|
if (!CI.getASTContext().getExternalSource())
|
|
|
|
goto failure;
|
|
|
|
}
|
2010-07-10 05:00:24 +08:00
|
|
|
|
2010-07-30 08:29:29 +08:00
|
|
|
CI.setASTConsumer(Consumer.take());
|
2010-07-10 05:00:24 +08:00
|
|
|
if (!CI.hasASTConsumer())
|
|
|
|
goto failure;
|
2009-11-14 18:42:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize builtin info as long as we aren't using an external AST
|
|
|
|
// source.
|
|
|
|
if (!CI.hasASTContext() || !CI.getASTContext().getExternalSource()) {
|
|
|
|
Preprocessor &PP = CI.getPreprocessor();
|
|
|
|
PP.getBuiltinInfo().InitializeBuiltins(PP.getIdentifierTable(),
|
2010-12-01 01:35:24 +08:00
|
|
|
PP.getLangOptions());
|
2009-11-14 18:42:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// If we failed, reset state since the client will not end up calling the
|
|
|
|
// matching EndSourceFile().
|
|
|
|
failure:
|
|
|
|
if (isCurrentFileAST()) {
|
2011-03-22 02:40:17 +08:00
|
|
|
CI.setASTContext(0);
|
|
|
|
CI.setPreprocessor(0);
|
|
|
|
CI.setSourceManager(0);
|
|
|
|
CI.setFileManager(0);
|
2009-11-14 18:42:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CI.getDiagnosticClient().EndSourceFile();
|
2010-06-08 07:25:49 +08:00
|
|
|
setCurrentFile("", IK_None);
|
2009-11-14 18:42:35 +08:00
|
|
|
setCompilerInstance(0);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FrontendAction::Execute() {
|
|
|
|
CompilerInstance &CI = getCompilerInstance();
|
|
|
|
|
|
|
|
// Initialize the main file entry. This needs to be delayed until after PCH
|
|
|
|
// has loaded.
|
|
|
|
if (isCurrentFileAST()) {
|
|
|
|
// Set the main file ID to an empty file.
|
|
|
|
//
|
|
|
|
// FIXME: We probably shouldn't need this, but for now this is the
|
|
|
|
// simplest way to reuse the logic in ParseAST.
|
|
|
|
const char *EmptyStr = "";
|
|
|
|
llvm::MemoryBuffer *SB =
|
2010-04-06 06:42:27 +08:00
|
|
|
llvm::MemoryBuffer::getMemBuffer(EmptyStr, "<dummy input>");
|
2009-11-14 18:42:35 +08:00
|
|
|
CI.getSourceManager().createMainFileIDForMemBuffer(SB);
|
|
|
|
} else {
|
|
|
|
if (!CI.InitializeSourceManager(getCurrentFile()))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-11-29 17:57:35 +08:00
|
|
|
if (CI.hasFrontendTimer()) {
|
|
|
|
llvm::TimeRegion Timer(CI.getFrontendTimer());
|
|
|
|
ExecuteAction();
|
|
|
|
}
|
|
|
|
else ExecuteAction();
|
2009-11-14 18:42:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void FrontendAction::EndSourceFile() {
|
|
|
|
CompilerInstance &CI = getCompilerInstance();
|
|
|
|
|
2011-02-10 02:47:31 +08:00
|
|
|
// Inform the diagnostic client we are done with this source file.
|
|
|
|
CI.getDiagnosticClient().EndSourceFile();
|
|
|
|
|
2009-11-14 18:42:35 +08:00
|
|
|
// Finalize the action.
|
|
|
|
EndSourceFileAction();
|
|
|
|
|
|
|
|
// Release the consumer and the AST, in that order since the consumer may
|
|
|
|
// perform actions in its destructor which require the context.
|
|
|
|
//
|
|
|
|
// FIXME: There is more per-file stuff we could just drop here?
|
|
|
|
if (CI.getFrontendOpts().DisableFree) {
|
|
|
|
CI.takeASTConsumer();
|
2010-08-13 07:31:19 +08:00
|
|
|
if (!isCurrentFileAST()) {
|
|
|
|
CI.takeSema();
|
2011-03-22 02:40:17 +08:00
|
|
|
CI.resetAndLeakASTContext();
|
2010-08-13 07:31:19 +08:00
|
|
|
}
|
2009-11-14 18:42:35 +08:00
|
|
|
} else {
|
2010-08-13 07:31:19 +08:00
|
|
|
if (!isCurrentFileAST()) {
|
|
|
|
CI.setSema(0);
|
2009-11-14 18:42:35 +08:00
|
|
|
CI.setASTContext(0);
|
2010-08-13 07:31:19 +08:00
|
|
|
}
|
|
|
|
CI.setASTConsumer(0);
|
2009-11-14 18:42:35 +08:00
|
|
|
}
|
|
|
|
|
2010-03-23 13:09:10 +08:00
|
|
|
// Inform the preprocessor we are done.
|
|
|
|
if (CI.hasPreprocessor())
|
|
|
|
CI.getPreprocessor().EndSourceFile();
|
|
|
|
|
2009-11-14 18:42:35 +08:00
|
|
|
if (CI.getFrontendOpts().ShowStats) {
|
|
|
|
llvm::errs() << "\nSTATISTICS FOR '" << getCurrentFile() << "':\n";
|
|
|
|
CI.getPreprocessor().PrintStats();
|
|
|
|
CI.getPreprocessor().getIdentifierTable().PrintStats();
|
|
|
|
CI.getPreprocessor().getHeaderSearchInfo().PrintStats();
|
|
|
|
CI.getSourceManager().PrintStats();
|
|
|
|
llvm::errs() << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cleanup the output streams, and erase the output files if we encountered
|
|
|
|
// an error.
|
2010-11-19 05:47:07 +08:00
|
|
|
CI.clearOutputFiles(/*EraseFiles=*/CI.getDiagnostics().hasErrorOccurred());
|
2009-11-14 18:42:35 +08:00
|
|
|
|
|
|
|
if (isCurrentFileAST()) {
|
2010-08-13 07:31:19 +08:00
|
|
|
CI.takeSema();
|
2011-03-22 02:40:17 +08:00
|
|
|
CI.resetAndLeakASTContext();
|
|
|
|
CI.resetAndLeakPreprocessor();
|
|
|
|
CI.resetAndLeakSourceManager();
|
|
|
|
CI.resetAndLeakFileManager();
|
2009-11-14 18:42:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
setCompilerInstance(0);
|
2010-06-08 07:25:49 +08:00
|
|
|
setCurrentFile("", IK_None);
|
2009-11-14 18:42:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Utility Actions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
void ASTFrontendAction::ExecuteAction() {
|
|
|
|
CompilerInstance &CI = getCompilerInstance();
|
|
|
|
|
|
|
|
// FIXME: Move the truncation aspect of this into Sema, we delayed this till
|
|
|
|
// here so the source manager would be initialized.
|
|
|
|
if (hasCodeCompletionSupport() &&
|
|
|
|
!CI.getFrontendOpts().CodeCompletionAt.FileName.empty())
|
|
|
|
CI.createCodeCompletionConsumer();
|
|
|
|
|
|
|
|
// Use a code completion consumer?
|
|
|
|
CodeCompleteConsumer *CompletionConsumer = 0;
|
|
|
|
if (CI.hasCodeCompletionConsumer())
|
|
|
|
CompletionConsumer = &CI.getCodeCompletionConsumer();
|
|
|
|
|
2010-08-13 07:31:19 +08:00
|
|
|
if (!CI.hasSema())
|
|
|
|
CI.createSema(usesCompleteTranslationUnit(), CompletionConsumer);
|
|
|
|
|
|
|
|
ParseAST(CI.getSema(), CI.getFrontendOpts().ShowStats);
|
2009-11-14 18:42:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ASTConsumer *
|
|
|
|
PreprocessorFrontendAction::CreateASTConsumer(CompilerInstance &CI,
|
|
|
|
llvm::StringRef InFile) {
|
2009-12-12 13:05:38 +08:00
|
|
|
llvm_unreachable("Invalid CreateASTConsumer on preprocessor action!");
|
2009-11-14 18:42:35 +08:00
|
|
|
}
|
2011-06-17 00:17:05 +08:00
|
|
|
|
|
|
|
ASTConsumer *WrapperFrontendAction::CreateASTConsumer(CompilerInstance &CI,
|
|
|
|
llvm::StringRef InFile) {
|
|
|
|
return WrappedAction->CreateASTConsumer(CI, InFile);
|
|
|
|
}
|
2011-06-18 08:53:41 +08:00
|
|
|
bool WrapperFrontendAction::BeginInvocation(CompilerInstance &CI) {
|
|
|
|
return WrappedAction->BeginInvocation(CI);
|
|
|
|
}
|
2011-06-17 00:17:05 +08:00
|
|
|
bool WrapperFrontendAction::BeginSourceFileAction(CompilerInstance &CI,
|
|
|
|
llvm::StringRef Filename) {
|
2011-06-18 08:53:41 +08:00
|
|
|
WrappedAction->setCurrentFile(getCurrentFile(), getCurrentFileKind());
|
|
|
|
WrappedAction->setCompilerInstance(&CI);
|
2011-06-17 00:17:05 +08:00
|
|
|
return WrappedAction->BeginSourceFileAction(CI, Filename);
|
|
|
|
}
|
|
|
|
void WrapperFrontendAction::ExecuteAction() {
|
|
|
|
WrappedAction->ExecuteAction();
|
|
|
|
}
|
|
|
|
void WrapperFrontendAction::EndSourceFileAction() {
|
|
|
|
WrappedAction->EndSourceFileAction();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WrapperFrontendAction::usesPreprocessorOnly() const {
|
|
|
|
return WrappedAction->usesPreprocessorOnly();
|
|
|
|
}
|
|
|
|
bool WrapperFrontendAction::usesCompleteTranslationUnit() {
|
|
|
|
return WrappedAction->usesCompleteTranslationUnit();
|
|
|
|
}
|
|
|
|
bool WrapperFrontendAction::hasPCHSupport() const {
|
|
|
|
return WrappedAction->hasPCHSupport();
|
|
|
|
}
|
|
|
|
bool WrapperFrontendAction::hasASTFileSupport() const {
|
|
|
|
return WrappedAction->hasASTFileSupport();
|
|
|
|
}
|
|
|
|
bool WrapperFrontendAction::hasIRSupport() const {
|
|
|
|
return WrappedAction->hasIRSupport();
|
|
|
|
}
|
|
|
|
bool WrapperFrontendAction::hasCodeCompletionSupport() const {
|
|
|
|
return WrappedAction->hasCodeCompletionSupport();
|
|
|
|
}
|
|
|
|
|
|
|
|
WrapperFrontendAction::WrapperFrontendAction(FrontendAction *WrappedAction)
|
|
|
|
: WrappedAction(WrappedAction) {}
|
|
|
|
|