summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lld/ELF/LTO.cpp10
-rw-r--r--lld/ELF/LTO.h7
2 files changed, 10 insertions, 7 deletions
diff --git a/lld/ELF/LTO.cpp b/lld/ELF/LTO.cpp
index bd3c215e39d..9da0ebeb88d 100644
--- a/lld/ELF/LTO.cpp
+++ b/lld/ELF/LTO.cpp
@@ -140,23 +140,23 @@ static void internalize(GlobalValue &GV) {
// and return the resulting ObjectFile.
std::unique_ptr<InputFile> BitcodeCompiler::compile() {
for (const auto &Name : InternalizedSyms) {
- GlobalValue *GV = Combined.getNamedValue(Name.first());
+ GlobalValue *GV = Combined->getNamedValue(Name.first());
assert(GV);
internalize(*GV);
}
if (Config->SaveTemps)
- saveBCFile(Combined, ".lto.bc");
+ saveBCFile(*Combined, ".lto.bc");
std::unique_ptr<TargetMachine> TM(getTargetMachine());
- runLTOPasses(Combined, *TM);
+ runLTOPasses(*Combined, *TM);
raw_svector_ostream OS(OwningData);
legacy::PassManager CodeGenPasses;
if (TM->addPassesToEmitFile(CodeGenPasses, OS,
TargetMachine::CGFT_ObjectFile))
fatal("failed to setup codegen");
- CodeGenPasses.run(Combined);
+ CodeGenPasses.run(*Combined);
MB = MemoryBuffer::getMemBuffer(OwningData,
"LLD-INTERNAL-combined-lto-object", false);
if (Config->SaveTemps)
@@ -165,7 +165,7 @@ std::unique_ptr<InputFile> BitcodeCompiler::compile() {
}
TargetMachine *BitcodeCompiler::getTargetMachine() {
- StringRef TripleStr = Combined.getTargetTriple();
+ StringRef TripleStr = Combined->getTargetTriple();
std::string Msg;
const Target *T = TargetRegistry::lookupTarget(TripleStr, Msg);
if (!T)
diff --git a/lld/ELF/LTO.h b/lld/ELF/LTO.h
index 909e5c93085..88ee79d3290 100644
--- a/lld/ELF/LTO.h
+++ b/lld/ELF/LTO.h
@@ -39,12 +39,15 @@ public:
void add(BitcodeFile &F);
std::unique_ptr<InputFile> compile();
+ BitcodeCompiler()
+ : Combined(new llvm::Module("ld-temp.o", Context)), Mover(*Combined) {}
+
private:
llvm::TargetMachine *getTargetMachine();
llvm::LLVMContext Context;
- llvm::Module Combined{"ld-temp.o", Context};
- llvm::IRMover Mover{Combined};
+ std::unique_ptr<llvm::Module> Combined;
+ llvm::IRMover Mover;
SmallString<0> OwningData;
std::unique_ptr<MemoryBuffer> MB;
llvm::StringSet<> InternalizedSyms;
OpenPOWER on IntegriCloud