[llvm] r267655 - Support "preserving" the summary information when using setModule() API in LTOCodeGenerator
Mehdi Amini via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 26 18:46:48 PDT 2016
Author: mehdi_amini
Date: Tue Apr 26 20:46:48 2016
New Revision: 267655
URL: http://llvm.org/viewvc/llvm-project?rev=267655&view=rev
Log:
Support "preserving" the summary information when using setModule() API in LTOCodeGenerator
From: Mehdi Amini <mehdi.amini at apple.com>
Modified:
llvm/trunk/include/llvm/LTO/LTOCodeGenerator.h
llvm/trunk/lib/LTO/LTOCodeGenerator.cpp
Modified: llvm/trunk/include/llvm/LTO/LTOCodeGenerator.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/LTO/LTOCodeGenerator.h?rev=267655&r1=267654&r2=267655&view=diff
==============================================================================
--- llvm/trunk/include/llvm/LTO/LTOCodeGenerator.h (original)
+++ llvm/trunk/include/llvm/LTO/LTOCodeGenerator.h Tue Apr 26 20:46:48 2016
@@ -201,6 +201,7 @@ private:
LLVMContext &Context;
std::unique_ptr<Module> MergedModule;
+ bool MainModuleHasSummary = false;
std::unique_ptr<Linker> TheLinker;
std::unique_ptr<TargetMachine> TargetMach;
bool EmitDwarfDebugInfo = false;
Modified: llvm/trunk/lib/LTO/LTOCodeGenerator.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/LTO/LTOCodeGenerator.cpp?rev=267655&r1=267654&r2=267655&view=diff
==============================================================================
--- llvm/trunk/lib/LTO/LTOCodeGenerator.cpp (original)
+++ llvm/trunk/lib/LTO/LTOCodeGenerator.cpp Tue Apr 26 20:46:48 2016
@@ -18,6 +18,7 @@
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/Analysis/Passes.h"
+#include "llvm/Analysis/ModuleSummaryAnalysis.h"
#include "llvm/Analysis/TargetLibraryInfo.h"
#include "llvm/Analysis/TargetTransformInfo.h"
#include "llvm/Bitcode/ReaderWriter.h"
@@ -145,6 +146,7 @@ void LTOCodeGenerator::setModule(std::un
MergedModule = Mod->takeModule();
TheLinker = make_unique<Linker>(*MergedModule);
+ MainModuleHasSummary = Mod->isThinLTO();
const std::vector<const char*> &Undefs = Mod->getAsmUndefinedRefs();
for (int I = 0, E = Undefs.size(); I != E; ++I)
@@ -209,8 +211,13 @@ bool LTOCodeGenerator::writeMergedModule
return false;
}
+ std::unique_ptr<ModuleSummaryIndex> Index;
+ if (MainModuleHasSummary)
+ Index = ModuleSummaryIndexBuilder(MergedModule.get()).takeIndex();
+
// write bitcode to it
- WriteBitcodeToFile(MergedModule.get(), Out.os(), ShouldEmbedUselists);
+ WriteBitcodeToFile(MergedModule.get(), Out.os(), ShouldEmbedUselists,
+ Index.get());
Out.os().close();
if (Out.os().has_error()) {
More information about the llvm-commits
mailing list