mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[Frontend] Refactor CompilerInvocation to be a pure settings object.
This mainly removes the extraneous DiagnosticEngine and SourceMgr from CompilerInvocation. Instances of these can be found via the CompilerInstance object. Swift SVN r6496
This commit is contained in:
@@ -36,7 +36,7 @@ namespace llvm {
|
||||
|
||||
namespace swift {
|
||||
|
||||
class CompilerInvocation : public llvm::RefCountedBase<CompilerInvocation> {
|
||||
class CompilerInvocation {
|
||||
std::string TargetTriple;
|
||||
std::string ClangModuleCachePath;
|
||||
std::vector<std::string> ImportSearchPaths;
|
||||
@@ -49,10 +49,6 @@ class CompilerInvocation : public llvm::RefCountedBase<CompilerInvocation> {
|
||||
bool ParseOnly = false;
|
||||
TranslationUnit::TUKind TUKind = TranslationUnit::Main;
|
||||
|
||||
llvm::SourceMgr DriverDiagsSourceMgr;
|
||||
DiagnosticEngine DriverDiagnostics;
|
||||
std::vector<DiagnosticConsumer *> DiagnosticConsumers;
|
||||
|
||||
std::string ModuleName;
|
||||
|
||||
CodeCompletionCallbacksFactory *CodeCompletionFactory = nullptr;
|
||||
@@ -136,19 +132,6 @@ public:
|
||||
return TUKind;
|
||||
}
|
||||
|
||||
DiagnosticEngine &getDriverDiags() {
|
||||
return DriverDiagnostics;
|
||||
}
|
||||
|
||||
void addDiagnosticConsumer(DiagnosticConsumer *DC) {
|
||||
DriverDiagnostics.addConsumer(*DC);
|
||||
DiagnosticConsumers.push_back(DC);
|
||||
}
|
||||
|
||||
ArrayRef<DiagnosticConsumer *> getDiagnosticConsumers() const {
|
||||
return DiagnosticConsumers;
|
||||
}
|
||||
|
||||
void setModuleName(StringRef Name) {
|
||||
ModuleName = Name.str();
|
||||
}
|
||||
@@ -167,7 +150,7 @@ public:
|
||||
};
|
||||
|
||||
class CompilerInstance {
|
||||
llvm::IntrusiveRefCntPtr<CompilerInvocation> Invocation;
|
||||
CompilerInvocation Invocation;
|
||||
llvm::SourceMgr SourceMgr;
|
||||
std::vector<unsigned> BufferIDs;
|
||||
DiagnosticEngine Diagnostics;
|
||||
@@ -180,12 +163,17 @@ class CompilerInstance {
|
||||
void createSILModule();
|
||||
|
||||
public:
|
||||
CompilerInstance(llvm::IntrusiveRefCntPtr<CompilerInvocation> Invocation)
|
||||
: Invocation(Invocation), Diagnostics(SourceMgr), TU(nullptr) {
|
||||
CompilerInstance() : Diagnostics(SourceMgr), TU(nullptr) {
|
||||
}
|
||||
|
||||
llvm::SourceMgr &getSourceMgr() { return SourceMgr; }
|
||||
|
||||
DiagnosticEngine &getDiags() { return Diagnostics; }
|
||||
|
||||
void addDiagnosticConsumer(DiagnosticConsumer *DC) {
|
||||
Diagnostics.addConsumer(*DC);
|
||||
}
|
||||
|
||||
void setBufferIDs(const std::vector<unsigned> &IDs) {
|
||||
BufferIDs = IDs;
|
||||
}
|
||||
@@ -213,7 +201,7 @@ public:
|
||||
return TU;
|
||||
}
|
||||
|
||||
void setup();
|
||||
void setup(const CompilerInvocation &Invocation);
|
||||
|
||||
void doIt();
|
||||
};
|
||||
|
||||
@@ -30,8 +30,7 @@
|
||||
|
||||
using namespace swift;
|
||||
|
||||
swift::CompilerInvocation::CompilerInvocation()
|
||||
: DriverDiagnostics(DriverDiagsSourceMgr) {
|
||||
swift::CompilerInvocation::CompilerInvocation() {
|
||||
TargetTriple = llvm::sys::getDefaultTargetTriple();
|
||||
}
|
||||
|
||||
@@ -47,27 +46,26 @@ void swift::CompilerInstance::createSILModule() {
|
||||
TheSILModule.reset(SILModule::createEmptyModule(getASTContext()));
|
||||
}
|
||||
|
||||
void swift::CompilerInstance::setup() {
|
||||
for (auto DC : Invocation->getDiagnosticConsumers())
|
||||
Diagnostics.addConsumer(*DC);
|
||||
void swift::CompilerInstance::setup(const CompilerInvocation &Invok) {
|
||||
Invocation = Invok;
|
||||
|
||||
Context.reset(new ASTContext(Invocation->getLangOptions(), SourceMgr, Diagnostics));
|
||||
Context.reset(new ASTContext(Invocation.getLangOptions(), SourceMgr, Diagnostics));
|
||||
|
||||
// Give the context the list of search paths to use for modules.
|
||||
Context->ImportSearchPaths = Invocation->getImportSearchPaths();
|
||||
Context->ImportSearchPaths = Invocation.getImportSearchPaths();
|
||||
Context->addModuleLoader(SourceLoader::create(*Context));
|
||||
Context->addModuleLoader(SerializedModuleLoader::create(*Context));
|
||||
|
||||
// If the user has specified an SDK, wire up the Clang module importer
|
||||
// and point it at that SDK.
|
||||
if (!Invocation->getSDKPath().empty()) {
|
||||
auto ImporterCtor = Invocation->getClangImporterCtor();
|
||||
if (!Invocation.getSDKPath().empty()) {
|
||||
auto ImporterCtor = Invocation.getClangImporterCtor();
|
||||
assert(ImporterCtor && "SDK patch can't be empty without importer set!");
|
||||
auto clangImporter =
|
||||
ImporterCtor(*Context, Invocation->getSDKPath(),
|
||||
Invocation->getTargetTriple(),
|
||||
Invocation->getClangModuleCachePath(),
|
||||
Invocation->getImportSearchPaths());
|
||||
ImporterCtor(*Context, Invocation.getSDKPath(),
|
||||
Invocation.getTargetTriple(),
|
||||
Invocation.getClangModuleCachePath(),
|
||||
Invocation.getImportSearchPaths());
|
||||
if (!clangImporter)
|
||||
return; // FIXME: error reporting
|
||||
|
||||
@@ -75,27 +73,27 @@ void swift::CompilerInstance::setup() {
|
||||
}
|
||||
|
||||
// Add the runtime include path (which contains swift.swift)
|
||||
Context->ImportSearchPaths.push_back(Invocation->getRuntimeIncludePath());
|
||||
Context->ImportSearchPaths.push_back(Invocation.getRuntimeIncludePath());
|
||||
|
||||
assert(Lexer::isIdentifier(Invocation->getModuleName()));
|
||||
assert(Lexer::isIdentifier(Invocation.getModuleName()));
|
||||
|
||||
if (Invocation->getTUKind() == TranslationUnit::SIL)
|
||||
if (Invocation.getTUKind() == TranslationUnit::SIL)
|
||||
createSILModule();
|
||||
}
|
||||
|
||||
void swift::CompilerInstance::doIt() {
|
||||
const TranslationUnit::TUKind Kind = Invocation->getTUKind();
|
||||
const TranslationUnit::TUKind Kind = Invocation.getTUKind();
|
||||
Component *Comp = new (Context->Allocate<Component>(1)) Component();
|
||||
Identifier ID = Context->getIdentifier(Invocation->getModuleName());
|
||||
Identifier ID = Context->getIdentifier(Invocation.getModuleName());
|
||||
TU = new (*Context) TranslationUnit(ID, Comp, *Context, Kind);
|
||||
Context->LoadedModules[ID.str()] = TU;
|
||||
|
||||
TU->HasBuiltinModuleAccess = Invocation->getParseStdlib();
|
||||
TU->HasBuiltinModuleAccess = Invocation.getParseStdlib();
|
||||
|
||||
// If we're in SIL mode, don't auto import any libraries.
|
||||
// Also don't perform auto import if we are not going to do semantic
|
||||
// analysis.
|
||||
if (Kind != TranslationUnit::SIL && !Invocation->getParseOnly())
|
||||
if (Kind != TranslationUnit::SIL && !Invocation.getParseOnly())
|
||||
performAutoImport(TU);
|
||||
|
||||
if (Kind == TranslationUnit::Library) {
|
||||
@@ -106,12 +104,12 @@ void swift::CompilerInstance::doIt() {
|
||||
assert(Done && "Parser returned early?");
|
||||
(void) Done;
|
||||
performDelayedParsing(TU, TheParser.get(),
|
||||
Invocation->getCodeCompletionFactory());
|
||||
Invocation.getCodeCompletionFactory());
|
||||
TheParser.reset(nullptr);
|
||||
}
|
||||
|
||||
// Finally, if enabled, type check the whole thing in one go.
|
||||
if (!Invocation->getParseOnly())
|
||||
if (!Invocation.getParseOnly())
|
||||
performTypeChecking(TU);
|
||||
return;
|
||||
}
|
||||
@@ -133,11 +131,11 @@ void swift::CompilerInstance::doIt() {
|
||||
parseIntoTranslationUnit(TU, BufferID, &Done,
|
||||
TheSILModule ? &SILContext : nullptr,
|
||||
&TheParser);
|
||||
if (!Invocation->getParseOnly())
|
||||
if (!Invocation.getParseOnly())
|
||||
performTypeChecking(TU, CurTUElem);
|
||||
CurTUElem = TU->Decls.size();
|
||||
} while (!Done);
|
||||
performDelayedParsing(TU, TheParser.get(),
|
||||
Invocation->getCodeCompletionFactory());
|
||||
Invocation.getCodeCompletionFactory());
|
||||
}
|
||||
|
||||
|
||||
@@ -70,21 +70,21 @@ int main(int argc, char **argv) {
|
||||
if (PrintStats)
|
||||
llvm::EnableStatistics();
|
||||
|
||||
llvm::IntrusiveRefCntPtr<CompilerInvocation> Invocation(
|
||||
new CompilerInvocation());
|
||||
CompilerInvocation Invocation;
|
||||
|
||||
Invocation->setMainExecutablePath(
|
||||
Invocation.setMainExecutablePath(
|
||||
llvm::sys::fs::getMainExecutable(argv[0],
|
||||
reinterpret_cast<void *>(&anchorForGetMainExecutable)));
|
||||
|
||||
// Give the context the list of search paths to use for modules.
|
||||
Invocation->setImportSearchPaths(ImportPaths);
|
||||
Invocation.setImportSearchPaths(ImportPaths);
|
||||
|
||||
Invocation.setModuleName("main");
|
||||
Invocation.setTUKind(TranslationUnit::SIL);
|
||||
|
||||
CompilerInstance CI;
|
||||
PrintingDiagnosticConsumer PrintDiags;
|
||||
Invocation->addDiagnosticConsumer(&PrintDiags);
|
||||
Invocation->setModuleName("main");
|
||||
Invocation->setTUKind(TranslationUnit::SIL);
|
||||
CompilerInstance CI(Invocation);
|
||||
CI.addDiagnosticConsumer(&PrintDiags);
|
||||
|
||||
// Open the input file.
|
||||
llvm::OwningPtr<llvm::MemoryBuffer> InputFile;
|
||||
@@ -98,7 +98,7 @@ int main(int argc, char **argv) {
|
||||
// Transfer ownership of the MemoryBuffer to the SourceMgr.
|
||||
CI.addBufferID(CI.getSourceMgr().AddNewSourceBuffer(InputFile.take(),
|
||||
llvm::SMLoc()));
|
||||
CI.setup();
|
||||
CI.setup(Invocation);
|
||||
CI.doIt();
|
||||
|
||||
for (auto Pass : Passes) {
|
||||
|
||||
Reference in New Issue
Block a user