|
@@ -29,7 +29,8 @@ static std::unique_ptr<llvm::LLVMContext> LLVMCtx;
|
|
using namespace clang;
|
|
using namespace clang;
|
|
|
|
|
|
static CompilerInvocation *
|
|
static CompilerInvocation *
|
|
-createCompilerInvocation(StringRef& Path, DiagnosticsEngine& Diags)
|
|
|
|
|
|
+createCompilerInvocation(llvm::opt::ArgStringList CFlags, StringRef& Path,
|
|
|
|
+ DiagnosticsEngine& Diags)
|
|
{
|
|
{
|
|
llvm::opt::ArgStringList CCArgs {
|
|
llvm::opt::ArgStringList CCArgs {
|
|
"-cc1",
|
|
"-cc1",
|
|
@@ -45,6 +46,8 @@ createCompilerInvocation(StringRef& Path, DiagnosticsEngine& Diags)
|
|
"-Wno-unused-value",
|
|
"-Wno-unused-value",
|
|
"-Wno-pointer-sign",
|
|
"-Wno-pointer-sign",
|
|
"-x", "c"};
|
|
"-x", "c"};
|
|
|
|
+
|
|
|
|
+ CCArgs.append(CFlags.begin(), CFlags.end());
|
|
CompilerInvocation *CI = tooling::newInvocation(&Diags, CCArgs);
|
|
CompilerInvocation *CI = tooling::newInvocation(&Diags, CCArgs);
|
|
|
|
|
|
FrontendOptions& Opts = CI->getFrontendOpts();
|
|
FrontendOptions& Opts = CI->getFrontendOpts();
|
|
@@ -54,8 +57,8 @@ createCompilerInvocation(StringRef& Path, DiagnosticsEngine& Diags)
|
|
}
|
|
}
|
|
|
|
|
|
static std::unique_ptr<llvm::Module>
|
|
static std::unique_ptr<llvm::Module>
|
|
-getModuleFromSource(StringRef Path,
|
|
|
|
- IntrusiveRefCntPtr<vfs::FileSystem> VFS)
|
|
|
|
|
|
+getModuleFromSource(llvm::opt::ArgStringList CFlags,
|
|
|
|
+ StringRef Path, IntrusiveRefCntPtr<vfs::FileSystem> VFS)
|
|
{
|
|
{
|
|
CompilerInstance Clang;
|
|
CompilerInstance Clang;
|
|
Clang.createDiagnostics();
|
|
Clang.createDiagnostics();
|
|
@@ -63,7 +66,8 @@ getModuleFromSource(StringRef Path,
|
|
Clang.setVirtualFileSystem(&*VFS);
|
|
Clang.setVirtualFileSystem(&*VFS);
|
|
|
|
|
|
IntrusiveRefCntPtr<CompilerInvocation> CI =
|
|
IntrusiveRefCntPtr<CompilerInvocation> CI =
|
|
- createCompilerInvocation(Path, Clang.getDiagnostics());
|
|
|
|
|
|
+ createCompilerInvocation(std::move(CFlags), Path,
|
|
|
|
+ Clang.getDiagnostics());
|
|
Clang.setInvocation(&*CI);
|
|
Clang.setInvocation(&*CI);
|
|
|
|
|
|
std::unique_ptr<CodeGenAction> Act(new EmitLLVMOnlyAction(&*LLVMCtx));
|
|
std::unique_ptr<CodeGenAction> Act(new EmitLLVMOnlyAction(&*LLVMCtx));
|
|
@@ -74,7 +78,8 @@ getModuleFromSource(StringRef Path,
|
|
}
|
|
}
|
|
|
|
|
|
std::unique_ptr<llvm::Module>
|
|
std::unique_ptr<llvm::Module>
|
|
-getModuleFromSource(StringRef Name, StringRef Content)
|
|
|
|
|
|
+getModuleFromSource(llvm::opt::ArgStringList CFlags,
|
|
|
|
+ StringRef Name, StringRef Content)
|
|
{
|
|
{
|
|
using namespace vfs;
|
|
using namespace vfs;
|
|
|
|
|
|
@@ -90,14 +95,14 @@ getModuleFromSource(StringRef Name, StringRef Content)
|
|
OverlayFS->pushOverlay(MemFS);
|
|
OverlayFS->pushOverlay(MemFS);
|
|
MemFS->addFile(Twine(Name), 0, llvm::MemoryBuffer::getMemBuffer(Content));
|
|
MemFS->addFile(Twine(Name), 0, llvm::MemoryBuffer::getMemBuffer(Content));
|
|
|
|
|
|
- return getModuleFromSource(Name, OverlayFS);
|
|
|
|
|
|
+ return getModuleFromSource(std::move(CFlags), Name, OverlayFS);
|
|
}
|
|
}
|
|
|
|
|
|
std::unique_ptr<llvm::Module>
|
|
std::unique_ptr<llvm::Module>
|
|
-getModuleFromSource(StringRef Path)
|
|
|
|
|
|
+getModuleFromSource(llvm::opt::ArgStringList CFlags, StringRef Path)
|
|
{
|
|
{
|
|
IntrusiveRefCntPtr<vfs::FileSystem> VFS(vfs::getRealFileSystem());
|
|
IntrusiveRefCntPtr<vfs::FileSystem> VFS(vfs::getRealFileSystem());
|
|
- return getModuleFromSource(Path, VFS);
|
|
|
|
|
|
+ return getModuleFromSource(std::move(CFlags), Path, VFS);
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|