2008-02-26 20:26:43 +00:00
|
|
|
//===-LTOCodeGenerator.cpp - LLVM Link Time Optimizer ---------------------===//
|
|
|
|
|
//
|
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
|
//
|
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
|
// License. See LICENSE.TXT for details.
|
2012-03-31 10:50:14 +00:00
|
|
|
//
|
2008-02-26 20:26:43 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
//
|
2012-03-31 10:50:14 +00:00
|
|
|
// This file implements the Link Time Optimization library. This library is
|
2008-02-26 20:26:43 +00:00
|
|
|
// intended to be used by linker to optimize code at link time.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
2016-07-14 21:21:16 +00:00
|
|
|
#include "llvm/LTO/legacy/LTOCodeGenerator.h"
|
2016-04-12 06:34:10 +00:00
|
|
|
|
2016-02-16 21:41:51 +00:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2009-06-17 06:52:10 +00:00
|
|
|
#include "llvm/Analysis/Passes.h"
|
2015-01-15 02:16:27 +00:00
|
|
|
#include "llvm/Analysis/TargetLibraryInfo.h"
|
2015-01-31 11:17:59 +00:00
|
|
|
#include "llvm/Analysis/TargetTransformInfo.h"
|
2016-11-11 05:34:58 +00:00
|
|
|
#include "llvm/Bitcode/BitcodeWriter.h"
|
2015-08-27 23:37:36 +00:00
|
|
|
#include "llvm/CodeGen/ParallelCG.h"
|
2017-11-17 01:07:10 +00:00
|
|
|
#include "llvm/CodeGen/TargetSubtargetInfo.h"
|
2012-03-31 11:15:43 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Constants.h"
|
|
|
|
|
#include "llvm/IR/DataLayout.h"
|
2016-05-09 19:57:15 +00:00
|
|
|
#include "llvm/IR/DebugInfo.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/DerivedTypes.h"
|
2014-01-15 22:04:35 +00:00
|
|
|
#include "llvm/IR/DiagnosticInfo.h"
|
|
|
|
|
#include "llvm/IR/DiagnosticPrinter.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/LLVMContext.h"
|
2015-02-13 10:01:29 +00:00
|
|
|
#include "llvm/IR/LegacyPassManager.h"
|
2014-01-07 21:19:40 +00:00
|
|
|
#include "llvm/IR/Mangler.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Module.h"
|
2014-01-13 09:26:24 +00:00
|
|
|
#include "llvm/IR/Verifier.h"
|
2013-07-22 18:40:34 +00:00
|
|
|
#include "llvm/InitializePasses.h"
|
2017-02-10 23:49:38 +00:00
|
|
|
#include "llvm/LTO/LTO.h"
|
2016-07-14 21:21:16 +00:00
|
|
|
#include "llvm/LTO/legacy/LTOModule.h"
|
|
|
|
|
#include "llvm/LTO/legacy/UpdateCompilerUsed.h"
|
2014-03-06 03:42:23 +00:00
|
|
|
#include "llvm/Linker/Linker.h"
|
2010-03-12 18:44:54 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
|
|
|
#include "llvm/MC/MCContext.h"
|
2011-06-29 01:14:12 +00:00
|
|
|
#include "llvm/MC/SubtargetFeature.h"
|
2008-07-08 21:14:10 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2013-06-17 18:05:35 +00:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2010-11-29 18:47:54 +00:00
|
|
|
#include "llvm/Support/Host.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2010-11-29 18:47:54 +00:00
|
|
|
#include "llvm/Support/Signals.h"
|
2011-08-24 18:08:43 +00:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
|
|
|
#include "llvm/Support/TargetSelect.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/Support/ToolOutputFile.h"
|
2016-11-18 18:06:28 +00:00
|
|
|
#include "llvm/Support/YAMLTraits.h"
|
2014-03-04 10:07:28 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2013-09-30 16:39:19 +00:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/Transforms/IPO.h"
|
2016-04-13 06:32:46 +00:00
|
|
|
#include "llvm/Transforms/IPO/Internalize.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/Transforms/IPO/PassManagerBuilder.h"
|
2013-03-29 23:28:55 +00:00
|
|
|
#include "llvm/Transforms/ObjCARC.h"
|
2016-10-25 23:53:31 +00:00
|
|
|
#include "llvm/Transforms/Utils/ModuleUtils.h"
|
2014-06-12 17:38:55 +00:00
|
|
|
#include <system_error>
|
2013-08-12 18:29:43 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
2012-03-31 10:49:43 +00:00
|
|
|
const char* LTOCodeGenerator::getVersionString() {
|
2008-02-26 20:26:43 +00:00
|
|
|
#ifdef LLVM_VERSION_INFO
|
2012-03-31 10:49:43 +00:00
|
|
|
return PACKAGE_NAME " version " PACKAGE_VERSION ", " LLVM_VERSION_INFO;
|
2008-02-26 20:26:43 +00:00
|
|
|
#else
|
2012-03-31 10:49:43 +00:00
|
|
|
return PACKAGE_NAME " version " PACKAGE_VERSION;
|
2008-02-26 20:26:43 +00:00
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-10 01:28:54 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
cl::opt<bool> LTODiscardValueNames(
|
2016-03-10 17:06:52 +00:00
|
|
|
"lto-discard-value-names",
|
|
|
|
|
cl::desc("Strip names from Value during LTO (other than GlobalValue)."),
|
2016-03-10 01:28:54 +00:00
|
|
|
#ifdef NDEBUG
|
|
|
|
|
cl::init(true),
|
|
|
|
|
#else
|
|
|
|
|
cl::init(false),
|
|
|
|
|
#endif
|
|
|
|
|
cl::Hidden);
|
2016-05-09 19:57:15 +00:00
|
|
|
|
2016-11-19 18:20:05 +00:00
|
|
|
cl::opt<std::string>
|
2016-11-22 07:35:14 +00:00
|
|
|
LTORemarksFilename("lto-pass-remarks-output",
|
2016-11-19 18:20:05 +00:00
|
|
|
cl::desc("Output filename for pass remarks"),
|
|
|
|
|
cl::value_desc("filename"));
|
2016-12-02 17:53:56 +00:00
|
|
|
|
|
|
|
|
cl::opt<bool> LTOPassRemarksWithHotness(
|
|
|
|
|
"lto-pass-remarks-with-hotness",
|
|
|
|
|
cl::desc("With PGO, include profile count in optimization remarks"),
|
|
|
|
|
cl::Hidden);
|
2018-02-26 18:37:45 +00:00
|
|
|
|
|
|
|
|
cl::opt<unsigned> LTOPassRemarksHotnessThreshold(
|
|
|
|
|
"lto-pass-remarks-hotness-threshold",
|
|
|
|
|
cl::desc("Minimum profile count required for an optimization remark to be "
|
|
|
|
|
"output"),
|
|
|
|
|
cl::Hidden);
|
2016-11-19 18:20:05 +00:00
|
|
|
}
|
2016-11-18 18:06:28 +00:00
|
|
|
|
2015-12-04 02:42:28 +00:00
|
|
|
LTOCodeGenerator::LTOCodeGenerator(LLVMContext &Context)
|
2015-12-04 22:08:53 +00:00
|
|
|
: Context(Context), MergedModule(new Module("ld-temp.o", Context)),
|
2015-12-18 19:28:59 +00:00
|
|
|
TheLinker(new Linker(*MergedModule)) {
|
2016-03-10 01:28:54 +00:00
|
|
|
Context.setDiscardValueNames(LTODiscardValueNames);
|
2016-04-19 04:55:25 +00:00
|
|
|
Context.enableDebugTypeODRUniquing();
|
2015-04-27 23:19:26 +00:00
|
|
|
initializeLTOPasses();
|
2014-11-11 23:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
2015-08-24 22:22:53 +00:00
|
|
|
LTOCodeGenerator::~LTOCodeGenerator() {}
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2015-09-01 10:13:49 +00:00
|
|
|
// Initialize LTO passes. Please keep this function in sync with
|
2013-07-23 06:44:34 +00:00
|
|
|
// PassManagerBuilder::populateLTOPassManager(), and make sure all LTO
|
2014-01-10 20:24:35 +00:00
|
|
|
// passes are initialized.
|
2013-07-22 18:40:34 +00:00
|
|
|
void LTOCodeGenerator::initializeLTOPasses() {
|
|
|
|
|
PassRegistry &R = *PassRegistry::getPassRegistry();
|
|
|
|
|
|
2016-04-26 20:15:52 +00:00
|
|
|
initializeInternalizeLegacyPassPass(R);
|
2016-05-05 21:05:36 +00:00
|
|
|
initializeIPSCCPLegacyPassPass(R);
|
2016-04-26 00:28:01 +00:00
|
|
|
initializeGlobalOptLegacyPassPass(R);
|
2016-05-05 00:51:09 +00:00
|
|
|
initializeConstantMergeLegacyPassPass(R);
|
2013-07-22 18:40:34 +00:00
|
|
|
initializeDAHPass(R);
|
2015-01-20 22:44:35 +00:00
|
|
|
initializeInstructionCombiningPassPass(R);
|
2013-07-22 18:40:34 +00:00
|
|
|
initializeSimpleInlinerPass(R);
|
|
|
|
|
initializePruneEHPass(R);
|
2016-05-03 19:39:15 +00:00
|
|
|
initializeGlobalDCELegacyPassPass(R);
|
2013-07-22 18:40:34 +00:00
|
|
|
initializeArgPromotionPass(R);
|
|
|
|
|
initializeJumpThreadingPass(R);
|
2015-09-12 09:09:14 +00:00
|
|
|
initializeSROALegacyPassPass(R);
|
2016-02-18 11:03:11 +00:00
|
|
|
initializePostOrderFunctionAttrsLegacyPassPass(R);
|
2016-06-12 07:48:51 +00:00
|
|
|
initializeReversePostOrderFunctionAttrsLegacyPassPass(R);
|
2015-09-09 17:55:00 +00:00
|
|
|
initializeGlobalsAAWrapperPassPass(R);
|
2016-07-12 22:37:48 +00:00
|
|
|
initializeLegacyLICMPassPass(R);
|
2016-06-17 19:10:09 +00:00
|
|
|
initializeMergedLoadStoreMotionLegacyPassPass(R);
|
2016-03-11 08:50:55 +00:00
|
|
|
initializeGVNLegacyPassPass(R);
|
2016-06-14 02:44:55 +00:00
|
|
|
initializeMemCpyOptLegacyPassPass(R);
|
2016-04-22 19:40:41 +00:00
|
|
|
initializeDCELegacyPassPass(R);
|
2013-08-06 02:43:45 +00:00
|
|
|
initializeCFGSimplifyPassPass(R);
|
2013-07-22 18:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
2016-08-23 12:32:57 +00:00
|
|
|
void LTOCodeGenerator::setAsmUndefinedRefs(LTOModule *Mod) {
|
2016-10-07 19:05:14 +00:00
|
|
|
const std::vector<StringRef> &undefs = Mod->getAsmUndefinedRefs();
|
2016-08-23 12:32:57 +00:00
|
|
|
for (int i = 0, e = undefs.size(); i != e; ++i)
|
|
|
|
|
AsmUndefinedRefs[undefs[i]] = 1;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-31 23:44:06 +00:00
|
|
|
bool LTOCodeGenerator::addModule(LTOModule *Mod) {
|
|
|
|
|
assert(&Mod->getModule().getContext() == &Context &&
|
2014-11-11 23:13:10 +00:00
|
|
|
"Expected module in same context");
|
|
|
|
|
|
2015-12-18 19:28:59 +00:00
|
|
|
bool ret = TheLinker->linkInModule(Mod->takeModule());
|
2016-08-23 12:32:57 +00:00
|
|
|
setAsmUndefinedRefs(Mod);
|
2011-03-02 04:14:42 +00:00
|
|
|
|
2016-04-20 17:48:22 +00:00
|
|
|
// We've just changed the input, so let's make sure we verify it.
|
|
|
|
|
HasVerifiedInput = false;
|
|
|
|
|
|
2013-08-07 05:19:23 +00:00
|
|
|
return !ret;
|
2008-02-26 20:26:43 +00:00
|
|
|
}
|
2012-03-31 10:50:14 +00:00
|
|
|
|
2015-08-24 22:22:53 +00:00
|
|
|
void LTOCodeGenerator::setModule(std::unique_ptr<LTOModule> Mod) {
|
2015-02-24 00:45:56 +00:00
|
|
|
assert(&Mod->getModule().getContext() == &Context &&
|
|
|
|
|
"Expected module in same context");
|
|
|
|
|
|
|
|
|
|
AsmUndefinedRefs.clear();
|
|
|
|
|
|
2015-08-24 22:22:53 +00:00
|
|
|
MergedModule = Mod->takeModule();
|
2015-12-18 19:28:59 +00:00
|
|
|
TheLinker = make_unique<Linker>(*MergedModule);
|
2016-08-23 12:32:57 +00:00
|
|
|
setAsmUndefinedRefs(&*Mod);
|
2016-04-20 17:48:22 +00:00
|
|
|
|
|
|
|
|
// We've just changed the input, so let's make sure we verify it.
|
|
|
|
|
HasVerifiedInput = false;
|
2015-02-24 00:45:56 +00:00
|
|
|
}
|
|
|
|
|
|
2016-06-08 19:09:22 +00:00
|
|
|
void LTOCodeGenerator::setTargetOptions(const TargetOptions &Options) {
|
2015-08-31 23:44:06 +00:00
|
|
|
this->Options = Options;
|
2013-09-30 16:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
2015-08-31 23:44:06 +00:00
|
|
|
void LTOCodeGenerator::setDebugInfo(lto_debug_model Debug) {
|
|
|
|
|
switch (Debug) {
|
2012-03-31 11:15:43 +00:00
|
|
|
case LTO_DEBUG_MODEL_NONE:
|
2013-09-04 17:44:24 +00:00
|
|
|
EmitDwarfDebugInfo = false;
|
2013-08-07 05:19:23 +00:00
|
|
|
return;
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2012-03-31 11:15:43 +00:00
|
|
|
case LTO_DEBUG_MODEL_DWARF:
|
2013-09-04 17:44:24 +00:00
|
|
|
EmitDwarfDebugInfo = true;
|
2013-08-07 05:19:23 +00:00
|
|
|
return;
|
2012-03-31 11:15:43 +00:00
|
|
|
}
|
|
|
|
|
llvm_unreachable("Unknown debug format!");
|
2008-02-26 20:26:43 +00:00
|
|
|
}
|
|
|
|
|
|
2015-08-31 23:44:06 +00:00
|
|
|
void LTOCodeGenerator::setOptLevel(unsigned Level) {
|
|
|
|
|
OptLevel = Level;
|
2015-08-22 02:25:53 +00:00
|
|
|
switch (OptLevel) {
|
|
|
|
|
case 0:
|
|
|
|
|
CGOptLevel = CodeGenOpt::None;
|
2016-08-26 15:22:59 +00:00
|
|
|
return;
|
2015-08-22 02:25:53 +00:00
|
|
|
case 1:
|
|
|
|
|
CGOptLevel = CodeGenOpt::Less;
|
2016-08-26 15:22:59 +00:00
|
|
|
return;
|
2015-08-22 02:25:53 +00:00
|
|
|
case 2:
|
|
|
|
|
CGOptLevel = CodeGenOpt::Default;
|
2016-08-26 15:22:59 +00:00
|
|
|
return;
|
2015-08-22 02:25:53 +00:00
|
|
|
case 3:
|
|
|
|
|
CGOptLevel = CodeGenOpt::Aggressive;
|
2016-08-26 15:22:59 +00:00
|
|
|
return;
|
2015-08-22 02:25:53 +00:00
|
|
|
}
|
2016-08-26 15:22:59 +00:00
|
|
|
llvm_unreachable("Unknown optimization level!");
|
2015-08-22 02:25:53 +00:00
|
|
|
}
|
|
|
|
|
|
2016-10-01 01:18:23 +00:00
|
|
|
bool LTOCodeGenerator::writeMergedModules(StringRef Path) {
|
2015-11-17 19:48:12 +00:00
|
|
|
if (!determineTarget())
|
2013-08-07 05:19:23 +00:00
|
|
|
return false;
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2016-04-20 17:48:22 +00:00
|
|
|
// We always run the verifier once on the merged module.
|
|
|
|
|
verifyMergedModuleOnce();
|
|
|
|
|
|
2013-08-08 23:51:04 +00:00
|
|
|
// mark which symbols can not be internalized
|
|
|
|
|
applyScopeRestrictions();
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2009-08-23 07:49:08 +00:00
|
|
|
// create output file
|
2014-08-25 18:16:47 +00:00
|
|
|
std::error_code EC;
|
2017-09-23 01:03:17 +00:00
|
|
|
ToolOutputFile Out(Path, EC, sys::fs::F_None);
|
2014-08-25 18:16:47 +00:00
|
|
|
if (EC) {
|
2015-11-17 19:48:12 +00:00
|
|
|
std::string ErrMsg = "could not open bitcode file for writing: ";
|
2017-10-24 01:26:22 +00:00
|
|
|
ErrMsg += Path.str() + ": " + EC.message();
|
2015-11-17 19:48:12 +00:00
|
|
|
emitError(ErrMsg);
|
2013-08-07 05:19:23 +00:00
|
|
|
return false;
|
2009-08-23 07:49:08 +00:00
|
|
|
}
|
2012-03-31 10:50:14 +00:00
|
|
|
|
2009-08-23 07:49:08 +00:00
|
|
|
// write bitcode to it
|
2018-02-14 19:11:32 +00:00
|
|
|
WriteBitcodeToFile(*MergedModule, Out.os(), ShouldEmbedUselists);
|
2010-09-01 14:20:41 +00:00
|
|
|
Out.os().close();
|
2010-05-27 20:19:47 +00:00
|
|
|
|
2010-09-01 14:20:41 +00:00
|
|
|
if (Out.os().has_error()) {
|
2015-11-17 19:48:12 +00:00
|
|
|
std::string ErrMsg = "could not write bitcode file: ";
|
2017-10-24 01:26:22 +00:00
|
|
|
ErrMsg += Path.str() + ": " + Out.os().error().message();
|
2015-11-17 19:48:12 +00:00
|
|
|
emitError(ErrMsg);
|
2010-09-01 14:20:41 +00:00
|
|
|
Out.os().clear_error();
|
2013-08-07 05:19:23 +00:00
|
|
|
return false;
|
2009-08-23 07:49:08 +00:00
|
|
|
}
|
2012-03-31 10:50:14 +00:00
|
|
|
|
2010-08-20 16:59:15 +00:00
|
|
|
Out.keep();
|
2013-08-07 05:19:23 +00:00
|
|
|
return true;
|
2008-02-26 20:26:43 +00:00
|
|
|
}
|
|
|
|
|
|
2015-11-17 19:48:12 +00:00
|
|
|
bool LTOCodeGenerator::compileOptimizedToFile(const char **Name) {
|
2015-11-19 23:59:24 +00:00
|
|
|
// make unique temp output file to put generated code
|
2013-08-12 21:07:31 +00:00
|
|
|
SmallString<128> Filename;
|
|
|
|
|
int FD;
|
2015-11-19 23:59:24 +00:00
|
|
|
|
2016-10-01 01:18:23 +00:00
|
|
|
StringRef Extension
|
2015-11-19 23:59:24 +00:00
|
|
|
(FileType == TargetMachine::CGFT_AssemblyFile ? "s" : "o");
|
|
|
|
|
|
2014-06-13 02:24:39 +00:00
|
|
|
std::error_code EC =
|
2015-11-19 23:59:24 +00:00
|
|
|
sys::fs::createTemporaryFile("lto-llvm", Extension, FD, Filename);
|
2013-08-12 21:07:31 +00:00
|
|
|
if (EC) {
|
2015-11-17 19:48:12 +00:00
|
|
|
emitError(EC.message());
|
2013-08-07 05:19:23 +00:00
|
|
|
return false;
|
2013-08-12 21:07:31 +00:00
|
|
|
}
|
2011-03-22 20:57:13 +00:00
|
|
|
|
2013-08-12 21:07:31 +00:00
|
|
|
// generate object file
|
2017-09-23 01:03:17 +00:00
|
|
|
ToolOutputFile objFile(Filename, FD);
|
2012-03-31 11:15:43 +00:00
|
|
|
|
2015-11-17 19:48:12 +00:00
|
|
|
bool genResult = compileOptimized(&objFile.os());
|
2013-08-12 21:07:31 +00:00
|
|
|
objFile.os().close();
|
|
|
|
|
if (objFile.os().has_error()) {
|
2017-10-24 01:26:22 +00:00
|
|
|
emitError((Twine("could not write object file: ") + Filename + ": " +
|
|
|
|
|
objFile.os().error().message())
|
|
|
|
|
.str());
|
2013-08-12 21:07:31 +00:00
|
|
|
objFile.os().clear_error();
|
|
|
|
|
sys::fs::remove(Twine(Filename));
|
2013-08-07 05:19:23 +00:00
|
|
|
return false;
|
2013-08-12 21:07:31 +00:00
|
|
|
}
|
2012-03-31 11:15:43 +00:00
|
|
|
|
2013-08-12 21:07:31 +00:00
|
|
|
objFile.keep();
|
|
|
|
|
if (!genResult) {
|
|
|
|
|
sys::fs::remove(Twine(Filename));
|
2013-08-07 05:19:23 +00:00
|
|
|
return false;
|
2013-08-12 21:07:31 +00:00
|
|
|
}
|
2011-03-22 20:57:13 +00:00
|
|
|
|
2013-09-04 17:44:24 +00:00
|
|
|
NativeObjectPath = Filename.c_str();
|
2015-08-31 23:44:06 +00:00
|
|
|
*Name = NativeObjectPath.c_str();
|
2013-08-07 05:19:23 +00:00
|
|
|
return true;
|
2011-03-22 20:57:13 +00:00
|
|
|
}
|
|
|
|
|
|
2015-06-01 20:08:30 +00:00
|
|
|
std::unique_ptr<MemoryBuffer>
|
2015-11-17 19:48:12 +00:00
|
|
|
LTOCodeGenerator::compileOptimized() {
|
2011-03-22 20:57:13 +00:00
|
|
|
const char *name;
|
2015-11-17 19:48:12 +00:00
|
|
|
if (!compileOptimizedToFile(&name))
|
2014-04-15 06:32:26 +00:00
|
|
|
return nullptr;
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2011-03-22 20:57:13 +00:00
|
|
|
// read .o file into memory buffer
|
2014-07-06 17:43:13 +00:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr =
|
|
|
|
|
MemoryBuffer::getFile(name, -1, false);
|
|
|
|
|
if (std::error_code EC = BufferOrErr.getError()) {
|
2015-11-17 19:48:12 +00:00
|
|
|
emitError(EC.message());
|
2013-09-04 17:44:24 +00:00
|
|
|
sys::fs::remove(NativeObjectPath);
|
2014-04-15 06:32:26 +00:00
|
|
|
return nullptr;
|
2011-03-22 20:57:13 +00:00
|
|
|
}
|
2011-02-24 21:04:06 +00:00
|
|
|
|
2013-08-12 21:07:31 +00:00
|
|
|
// remove temp files
|
2013-09-04 17:44:24 +00:00
|
|
|
sys::fs::remove(NativeObjectPath);
|
2011-02-24 21:04:06 +00:00
|
|
|
|
2015-06-01 20:08:30 +00:00
|
|
|
return std::move(*BufferOrErr);
|
2008-02-26 20:26:43 +00:00
|
|
|
}
|
|
|
|
|
|
2015-09-15 23:05:59 +00:00
|
|
|
bool LTOCodeGenerator::compile_to_file(const char **Name, bool DisableVerify,
|
|
|
|
|
bool DisableInline,
|
2015-08-31 23:44:06 +00:00
|
|
|
bool DisableGVNLoadPRE,
|
2015-11-17 19:48:12 +00:00
|
|
|
bool DisableVectorization) {
|
2015-09-15 23:05:59 +00:00
|
|
|
if (!optimize(DisableVerify, DisableInline, DisableGVNLoadPRE,
|
2015-11-17 19:48:12 +00:00
|
|
|
DisableVectorization))
|
2015-02-03 18:39:15 +00:00
|
|
|
return false;
|
|
|
|
|
|
2015-11-17 19:48:12 +00:00
|
|
|
return compileOptimizedToFile(Name);
|
2015-02-03 18:39:15 +00:00
|
|
|
}
|
|
|
|
|
|
2015-06-01 20:08:30 +00:00
|
|
|
std::unique_ptr<MemoryBuffer>
|
2015-09-15 23:05:59 +00:00
|
|
|
LTOCodeGenerator::compile(bool DisableVerify, bool DisableInline,
|
2015-11-17 19:48:12 +00:00
|
|
|
bool DisableGVNLoadPRE, bool DisableVectorization) {
|
2015-09-15 23:05:59 +00:00
|
|
|
if (!optimize(DisableVerify, DisableInline, DisableGVNLoadPRE,
|
2015-11-17 19:48:12 +00:00
|
|
|
DisableVectorization))
|
2015-02-03 18:39:15 +00:00
|
|
|
return nullptr;
|
|
|
|
|
|
2015-11-17 19:48:12 +00:00
|
|
|
return compileOptimized();
|
2015-02-03 18:39:15 +00:00
|
|
|
}
|
|
|
|
|
|
2015-11-17 19:48:12 +00:00
|
|
|
bool LTOCodeGenerator::determineTarget() {
|
2014-04-15 06:32:26 +00:00
|
|
|
if (TargetMach)
|
2013-08-06 21:51:21 +00:00
|
|
|
return true;
|
2009-08-03 04:03:51 +00:00
|
|
|
|
2016-04-17 18:42:27 +00:00
|
|
|
TripleStr = MergedModule->getTargetTriple();
|
2015-08-22 02:25:53 +00:00
|
|
|
if (TripleStr.empty()) {
|
2012-10-12 17:39:25 +00:00
|
|
|
TripleStr = sys::getDefaultTargetTriple();
|
2015-08-24 22:22:53 +00:00
|
|
|
MergedModule->setTargetTriple(TripleStr);
|
2015-08-22 02:25:53 +00:00
|
|
|
}
|
2012-10-12 17:39:25 +00:00
|
|
|
llvm::Triple Triple(TripleStr);
|
2008-06-18 06:35:30 +00:00
|
|
|
|
2012-08-06 22:52:45 +00:00
|
|
|
// create target machine from info for merged modules
|
2015-11-17 19:48:12 +00:00
|
|
|
std::string ErrMsg;
|
2016-04-17 18:42:27 +00:00
|
|
|
MArch = TargetRegistry::lookupTarget(TripleStr, ErrMsg);
|
|
|
|
|
if (!MArch) {
|
2015-11-17 19:48:12 +00:00
|
|
|
emitError(ErrMsg);
|
2013-08-06 21:51:21 +00:00
|
|
|
return false;
|
2015-11-17 19:48:12 +00:00
|
|
|
}
|
2012-03-31 11:15:43 +00:00
|
|
|
|
2014-04-25 21:46:51 +00:00
|
|
|
// Construct LTOModule, hand over ownership of module and target. Use MAttr as
|
|
|
|
|
// the default set of features.
|
|
|
|
|
SubtargetFeatures Features(MAttr);
|
2012-10-12 17:39:25 +00:00
|
|
|
Features.getDefaultSubtargetFeatures(Triple);
|
2015-08-22 02:25:53 +00:00
|
|
|
FeatureStr = Features.getString();
|
2012-10-12 17:39:25 +00:00
|
|
|
// Set a default CPU for Darwin triples.
|
2013-09-04 17:44:24 +00:00
|
|
|
if (MCpu.empty() && Triple.isOSDarwin()) {
|
2012-10-12 17:39:25 +00:00
|
|
|
if (Triple.getArch() == llvm::Triple::x86_64)
|
2013-09-04 17:44:24 +00:00
|
|
|
MCpu = "core2";
|
2012-10-12 17:39:25 +00:00
|
|
|
else if (Triple.getArch() == llvm::Triple::x86)
|
2013-09-04 17:44:24 +00:00
|
|
|
MCpu = "yonah";
|
2014-07-23 12:32:47 +00:00
|
|
|
else if (Triple.getArch() == llvm::Triple::aarch64)
|
2014-03-29 10:18:08 +00:00
|
|
|
MCpu = "cyclone";
|
2012-10-12 17:39:25 +00:00
|
|
|
}
|
2013-09-30 16:39:19 +00:00
|
|
|
|
2016-04-17 18:42:27 +00:00
|
|
|
TargetMach = createTargetMachine();
|
2013-08-06 21:51:21 +00:00
|
|
|
return true;
|
2008-02-26 20:26:43 +00:00
|
|
|
}
|
|
|
|
|
|
2016-04-17 18:42:27 +00:00
|
|
|
std::unique_ptr<TargetMachine> LTOCodeGenerator::createTargetMachine() {
|
2017-08-03 02:16:21 +00:00
|
|
|
return std::unique_ptr<TargetMachine>(MArch->createTargetMachine(
|
|
|
|
|
TripleStr, MCpu, FeatureStr, Options, RelocModel, None, CGOptLevel));
|
2016-04-17 18:42:27 +00:00
|
|
|
}
|
|
|
|
|
|
2016-05-05 05:14:24 +00:00
|
|
|
// If a linkonce global is present in the MustPreserveSymbols, we need to make
|
|
|
|
|
// sure we honor this. To force the compiler to not drop it, we add it to the
|
|
|
|
|
// "llvm.compiler.used" global.
|
2016-05-05 20:05:33 +00:00
|
|
|
void LTOCodeGenerator::preserveDiscardableGVs(
|
2016-05-05 05:14:24 +00:00
|
|
|
Module &TheModule,
|
|
|
|
|
llvm::function_ref<bool(const GlobalValue &)> mustPreserveGV) {
|
2016-10-25 23:53:31 +00:00
|
|
|
std::vector<GlobalValue *> Used;
|
2016-05-05 05:14:24 +00:00
|
|
|
auto mayPreserveGlobal = [&](GlobalValue &GV) {
|
2016-09-02 16:37:31 +00:00
|
|
|
if (!GV.isDiscardableIfUnused() || GV.isDeclaration() ||
|
2016-10-25 23:53:31 +00:00
|
|
|
!mustPreserveGV(GV))
|
2016-05-05 05:14:24 +00:00
|
|
|
return;
|
2016-09-02 16:37:31 +00:00
|
|
|
if (GV.hasAvailableExternallyLinkage())
|
|
|
|
|
return emitWarning(
|
2016-05-05 20:05:33 +00:00
|
|
|
(Twine("Linker asked to preserve available_externally global: '") +
|
|
|
|
|
GV.getName() + "'").str());
|
2016-09-02 16:37:31 +00:00
|
|
|
if (GV.hasInternalLinkage())
|
|
|
|
|
return emitWarning((Twine("Linker asked to preserve internal global: '") +
|
2016-05-05 20:05:33 +00:00
|
|
|
GV.getName() + "'").str());
|
2016-10-25 23:53:31 +00:00
|
|
|
Used.push_back(&GV);
|
2016-05-05 05:14:24 +00:00
|
|
|
};
|
|
|
|
|
for (auto &GV : TheModule)
|
|
|
|
|
mayPreserveGlobal(GV);
|
|
|
|
|
for (auto &GV : TheModule.globals())
|
|
|
|
|
mayPreserveGlobal(GV);
|
|
|
|
|
for (auto &GV : TheModule.aliases())
|
|
|
|
|
mayPreserveGlobal(GV);
|
|
|
|
|
|
2016-10-25 23:53:31 +00:00
|
|
|
if (Used.empty())
|
2016-05-05 05:14:24 +00:00
|
|
|
return;
|
|
|
|
|
|
2016-10-25 23:53:31 +00:00
|
|
|
appendToCompilerUsed(TheModule, Used);
|
2016-05-05 05:14:24 +00:00
|
|
|
}
|
|
|
|
|
|
2010-03-12 18:44:54 +00:00
|
|
|
void LTOCodeGenerator::applyScopeRestrictions() {
|
2016-05-05 05:14:24 +00:00
|
|
|
if (ScopeRestrictionsDone)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// Declare a callback for the internalize pass that will ask for every
|
|
|
|
|
// candidate GlobalValue if it can be internalized or not.
|
2016-10-12 20:12:19 +00:00
|
|
|
Mangler Mang;
|
2016-05-05 05:14:24 +00:00
|
|
|
SmallString<64> MangledName;
|
|
|
|
|
auto mustPreserveGV = [&](const GlobalValue &GV) -> bool {
|
|
|
|
|
// Unnamed globals can't be mangled, but they can't be preserved either.
|
|
|
|
|
if (!GV.hasName())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// Need to mangle the GV as the "MustPreserveSymbols" StringSet is filled
|
|
|
|
|
// with the linker supplied name, which on Darwin includes a leading
|
|
|
|
|
// underscore.
|
|
|
|
|
MangledName.clear();
|
|
|
|
|
MangledName.reserve(GV.getName().size() + 1);
|
2016-10-12 20:12:19 +00:00
|
|
|
Mang.getNameWithPrefix(MangledName, &GV, /*CannotUsePrivateLabel=*/false);
|
2016-05-05 05:14:24 +00:00
|
|
|
return MustPreserveSymbols.count(MangledName);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Preserve linkonce value on linker request
|
|
|
|
|
preserveDiscardableGVs(*MergedModule, mustPreserveGV);
|
|
|
|
|
|
|
|
|
|
if (!ShouldInternalize)
|
2013-09-04 17:44:24 +00:00
|
|
|
return;
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2016-04-13 05:36:06 +00:00
|
|
|
if (ShouldRestoreGlobalsLinkage) {
|
|
|
|
|
// Record the linkage type of non-local symbols so they can be restored
|
2016-05-05 05:14:20 +00:00
|
|
|
// prior
|
|
|
|
|
// to module splitting.
|
2016-04-13 05:36:06 +00:00
|
|
|
auto RecordLinkage = [&](const GlobalValue &GV) {
|
|
|
|
|
if (!GV.hasAvailableExternallyLinkage() && !GV.hasLocalLinkage() &&
|
|
|
|
|
GV.hasName())
|
|
|
|
|
ExternalSymbols.insert(std::make_pair(GV.getName(), GV.getLinkage()));
|
|
|
|
|
};
|
|
|
|
|
for (auto &GV : *MergedModule)
|
|
|
|
|
RecordLinkage(GV);
|
|
|
|
|
for (auto &GV : MergedModule->globals())
|
|
|
|
|
RecordLinkage(GV);
|
|
|
|
|
for (auto &GV : MergedModule->aliases())
|
|
|
|
|
RecordLinkage(GV);
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-13 06:32:46 +00:00
|
|
|
// Update the llvm.compiler_used globals to force preserving libcalls and
|
|
|
|
|
// symbols referenced from asm
|
2016-06-22 19:50:42 +00:00
|
|
|
updateCompilerUsed(*MergedModule, *TargetMach, AsmUndefinedRefs);
|
2016-04-13 06:32:46 +00:00
|
|
|
|
2016-05-05 05:14:24 +00:00
|
|
|
internalizeModule(*MergedModule, mustPreserveGV);
|
2012-03-31 10:50:14 +00:00
|
|
|
|
2013-09-04 17:44:24 +00:00
|
|
|
ScopeRestrictionsDone = true;
|
2008-02-26 20:26:43 +00:00
|
|
|
}
|
|
|
|
|
|
2016-01-18 23:24:54 +00:00
|
|
|
/// Restore original linkage for symbols that may have been internalized
|
|
|
|
|
void LTOCodeGenerator::restoreLinkageForExternals() {
|
|
|
|
|
if (!ShouldInternalize || !ShouldRestoreGlobalsLinkage)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
assert(ScopeRestrictionsDone &&
|
|
|
|
|
"Cannot externalize without internalization!");
|
|
|
|
|
|
|
|
|
|
if (ExternalSymbols.empty())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
auto externalize = [this](GlobalValue &GV) {
|
|
|
|
|
if (!GV.hasLocalLinkage() || !GV.hasName())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
auto I = ExternalSymbols.find(GV.getName());
|
|
|
|
|
if (I == ExternalSymbols.end())
|
|
|
|
|
return;
|
|
|
|
|
|
2017-12-18 19:46:56 +00:00
|
|
|
GV.setLinkage(I->second);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
llvm::for_each(MergedModule->functions(), externalize);
|
|
|
|
|
llvm::for_each(MergedModule->globals(), externalize);
|
|
|
|
|
llvm::for_each(MergedModule->aliases(), externalize);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LTOCodeGenerator::verifyMergedModuleOnce() {
|
2016-04-20 17:48:22 +00:00
|
|
|
// Only run on the first call.
|
|
|
|
|
if (HasVerifiedInput)
|
|
|
|
|
return;
|
|
|
|
|
HasVerifiedInput = true;
|
|
|
|
|
|
2017-05-12 21:38:32 +00:00
|
|
|
bool BrokenDebugInfo = false;
|
2017-10-02 18:31:29 +00:00
|
|
|
if (verifyModule(*MergedModule, &dbgs(), &BrokenDebugInfo))
|
2016-04-20 17:48:22 +00:00
|
|
|
report_fatal_error("Broken module found, compilation aborted!");
|
2017-05-12 21:38:32 +00:00
|
|
|
if (BrokenDebugInfo) {
|
|
|
|
|
emitWarning("Invalid debug info found, debug info will be stripped");
|
|
|
|
|
StripDebugInfo(*MergedModule);
|
|
|
|
|
}
|
2016-04-20 17:48:22 +00:00
|
|
|
}
|
|
|
|
|
|
2016-11-18 18:06:28 +00:00
|
|
|
void LTOCodeGenerator::finishOptimizationRemarks() {
|
|
|
|
|
if (DiagnosticOutputFile) {
|
|
|
|
|
DiagnosticOutputFile->keep();
|
|
|
|
|
// FIXME: LTOCodeGenerator dtor is not invoked on Darwin
|
|
|
|
|
DiagnosticOutputFile->os().flush();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-02-26 20:26:43 +00:00
|
|
|
/// Optimize merged modules using various IPO passes
|
2015-09-15 23:05:59 +00:00
|
|
|
bool LTOCodeGenerator::optimize(bool DisableVerify, bool DisableInline,
|
|
|
|
|
bool DisableGVNLoadPRE,
|
2015-11-17 19:48:12 +00:00
|
|
|
bool DisableVectorization) {
|
|
|
|
|
if (!this->determineTarget())
|
2013-08-06 21:51:21 +00:00
|
|
|
return false;
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2017-02-10 23:49:38 +00:00
|
|
|
auto DiagFileOrErr = lto::setupOptimizationRemarks(
|
2018-02-26 18:37:45 +00:00
|
|
|
Context, LTORemarksFilename, LTOPassRemarksWithHotness,
|
|
|
|
|
LTOPassRemarksHotnessThreshold);
|
2017-02-10 22:16:17 +00:00
|
|
|
if (!DiagFileOrErr) {
|
|
|
|
|
errs() << "Error: " << toString(DiagFileOrErr.takeError()) << "\n";
|
|
|
|
|
report_fatal_error("Can't get an output file for the remarks");
|
|
|
|
|
}
|
|
|
|
|
DiagnosticOutputFile = std::move(*DiagFileOrErr);
|
2016-11-18 18:06:28 +00:00
|
|
|
|
2016-04-12 06:34:10 +00:00
|
|
|
// We always run the verifier once on the merged module, the `DisableVerify`
|
|
|
|
|
// parameter only applies to subsequent verify.
|
2016-04-20 17:48:22 +00:00
|
|
|
verifyMergedModuleOnce();
|
2016-04-12 06:34:10 +00:00
|
|
|
|
2013-05-23 21:21:50 +00:00
|
|
|
// Mark which symbols can not be internalized
|
2012-04-09 22:18:01 +00:00
|
|
|
this->applyScopeRestrictions();
|
|
|
|
|
|
2012-03-31 11:15:43 +00:00
|
|
|
// Instantiate the pass manager to organize the passes.
|
2015-02-13 10:01:29 +00:00
|
|
|
legacy::PassManager passes;
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2012-10-08 16:39:34 +00:00
|
|
|
// Add an appropriate DataLayout instance for this module...
|
2015-08-24 21:15:35 +00:00
|
|
|
MergedModule->setDataLayout(TargetMach->createDataLayout());
|
2012-03-31 10:50:14 +00:00
|
|
|
|
2015-02-01 12:26:09 +00:00
|
|
|
passes.add(
|
|
|
|
|
createTargetTransformInfoWrapperPass(TargetMach->getTargetIRAnalysis()));
|
2015-01-30 13:33:42 +00:00
|
|
|
|
2014-08-21 18:49:52 +00:00
|
|
|
Triple TargetTriple(TargetMach->getTargetTriple());
|
2014-08-21 20:03:44 +00:00
|
|
|
PassManagerBuilder PMB;
|
|
|
|
|
PMB.DisableGVNLoadPRE = DisableGVNLoadPRE;
|
2014-10-26 21:50:58 +00:00
|
|
|
PMB.LoopVectorize = !DisableVectorization;
|
|
|
|
|
PMB.SLPVectorize = !DisableVectorization;
|
2014-08-21 20:03:44 +00:00
|
|
|
if (!DisableInline)
|
|
|
|
|
PMB.Inliner = createFunctionInliningPass();
|
2015-01-24 02:06:09 +00:00
|
|
|
PMB.LibraryInfo = new TargetLibraryInfoImpl(TargetTriple);
|
2017-03-28 18:55:44 +00:00
|
|
|
if (Freestanding)
|
|
|
|
|
PMB.LibraryInfo->disableAllFunctions();
|
2015-03-19 22:01:00 +00:00
|
|
|
PMB.OptLevel = OptLevel;
|
2015-09-15 23:05:59 +00:00
|
|
|
PMB.VerifyInput = !DisableVerify;
|
|
|
|
|
PMB.VerifyOutput = !DisableVerify;
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2015-01-30 13:33:42 +00:00
|
|
|
PMB.populateLTOPassManager(passes);
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2015-02-03 18:39:15 +00:00
|
|
|
// Run our queue of passes all at once now, efficiently.
|
2015-08-24 21:15:35 +00:00
|
|
|
passes.run(*MergedModule);
|
2015-02-03 18:39:15 +00:00
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-17 19:48:12 +00:00
|
|
|
bool LTOCodeGenerator::compileOptimized(ArrayRef<raw_pwrite_stream *> Out) {
|
|
|
|
|
if (!this->determineTarget())
|
2015-02-03 18:39:15 +00:00
|
|
|
return false;
|
|
|
|
|
|
2016-04-20 17:48:22 +00:00
|
|
|
// We always run the verifier once on the merged module. If it has already
|
|
|
|
|
// been called in optimize(), this call will return early.
|
|
|
|
|
verifyMergedModuleOnce();
|
|
|
|
|
|
2015-08-27 23:37:36 +00:00
|
|
|
legacy::PassManager preCodeGenPasses;
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2013-03-29 23:28:55 +00:00
|
|
|
// If the bitcode files contain ARC code and were compiled with optimization,
|
|
|
|
|
// the ObjCARCContractPass must be run, so do it unconditionally here.
|
2015-08-27 23:37:36 +00:00
|
|
|
preCodeGenPasses.add(createObjCARCContractPass());
|
|
|
|
|
preCodeGenPasses.run(*MergedModule);
|
2013-03-29 23:28:55 +00:00
|
|
|
|
2016-01-18 23:24:54 +00:00
|
|
|
// Re-externalize globals that may have been internalized to increase scope
|
|
|
|
|
// for splitting
|
|
|
|
|
restoreLinkageForExternals();
|
|
|
|
|
|
2015-08-27 23:37:36 +00:00
|
|
|
// Do code generation. We need to preserve the module in case the client calls
|
|
|
|
|
// writeMergedModules() after compilation, but we only need to allow this at
|
|
|
|
|
// parallelism level 1. This is achieved by having splitCodeGen return the
|
|
|
|
|
// original module at parallelism level 1 which we then assign back to
|
|
|
|
|
// MergedModule.
|
2016-04-17 18:42:27 +00:00
|
|
|
MergedModule = splitCodeGen(std::move(MergedModule), Out, {},
|
|
|
|
|
[&]() { return createTargetMachine(); }, FileType,
|
|
|
|
|
ShouldRestoreGlobalsLinkage);
|
2009-07-26 22:16:39 +00:00
|
|
|
|
2016-02-16 21:41:51 +00:00
|
|
|
// If statistics were requested, print them out after codegen.
|
|
|
|
|
if (llvm::AreStatisticsEnabled())
|
|
|
|
|
llvm::PrintStatistics();
|
2017-05-16 09:43:21 +00:00
|
|
|
reportAndResetTimings();
|
2016-02-16 21:41:51 +00:00
|
|
|
|
2016-11-28 16:51:49 +00:00
|
|
|
finishOptimizationRemarks();
|
|
|
|
|
|
2013-08-06 21:51:21 +00:00
|
|
|
return true;
|
2008-02-26 20:26:43 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-31 10:49:43 +00:00
|
|
|
/// setCodeGenDebugOptions - Set codegen debugging options to aid in debugging
|
|
|
|
|
/// LTO problems.
|
2016-10-01 01:18:23 +00:00
|
|
|
void LTOCodeGenerator::setCodeGenDebugOptions(StringRef Options) {
|
2015-08-31 23:44:06 +00:00
|
|
|
for (std::pair<StringRef, StringRef> o = getToken(Options); !o.first.empty();
|
|
|
|
|
o = getToken(o.second))
|
2015-08-21 04:45:55 +00:00
|
|
|
CodegenOptions.push_back(o.first);
|
2008-07-08 21:14:10 +00:00
|
|
|
}
|
2013-10-02 14:36:23 +00:00
|
|
|
|
|
|
|
|
void LTOCodeGenerator::parseCodeGenDebugOptions() {
|
|
|
|
|
// if options were requested, set them
|
2015-08-21 04:45:55 +00:00
|
|
|
if (!CodegenOptions.empty()) {
|
|
|
|
|
// ParseCommandLineOptions() expects argv[0] to be program name.
|
|
|
|
|
std::vector<const char *> CodegenArgv(1, "libLLVMLTO");
|
|
|
|
|
for (std::string &Arg : CodegenOptions)
|
|
|
|
|
CodegenArgv.push_back(Arg.c_str());
|
|
|
|
|
cl::ParseCommandLineOptions(CodegenArgv.size(), CodegenArgv.data());
|
|
|
|
|
}
|
2013-10-02 14:36:23 +00:00
|
|
|
}
|
2014-01-15 22:04:35 +00:00
|
|
|
|
|
|
|
|
|
2017-09-15 20:10:09 +00:00
|
|
|
void LTOCodeGenerator::DiagnosticHandler(const DiagnosticInfo &DI) {
|
2014-01-15 22:04:35 +00:00
|
|
|
// Map the LLVM internal diagnostic severity to the LTO diagnostic severity.
|
|
|
|
|
lto_codegen_diagnostic_severity_t Severity;
|
|
|
|
|
switch (DI.getSeverity()) {
|
|
|
|
|
case DS_Error:
|
|
|
|
|
Severity = LTO_DS_ERROR;
|
|
|
|
|
break;
|
|
|
|
|
case DS_Warning:
|
|
|
|
|
Severity = LTO_DS_WARNING;
|
|
|
|
|
break;
|
2014-02-28 09:08:45 +00:00
|
|
|
case DS_Remark:
|
|
|
|
|
Severity = LTO_DS_REMARK;
|
|
|
|
|
break;
|
2014-01-15 22:04:35 +00:00
|
|
|
case DS_Note:
|
|
|
|
|
Severity = LTO_DS_NOTE;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
// Create the string that will be reported to the external diagnostic handler.
|
2014-06-26 22:52:05 +00:00
|
|
|
std::string MsgStorage;
|
|
|
|
|
raw_string_ostream Stream(MsgStorage);
|
|
|
|
|
DiagnosticPrinterRawOStream DP(Stream);
|
2014-01-15 22:04:35 +00:00
|
|
|
DI.print(DP);
|
2014-06-26 22:52:05 +00:00
|
|
|
Stream.flush();
|
2014-01-15 22:04:35 +00:00
|
|
|
|
|
|
|
|
// If this method has been called it means someone has set up an external
|
|
|
|
|
// diagnostic handler. Assert on that.
|
|
|
|
|
assert(DiagHandler && "Invalid diagnostic handler");
|
2014-06-26 22:52:05 +00:00
|
|
|
(*DiagHandler)(Severity, MsgStorage.c_str(), DiagContext);
|
2014-01-15 22:04:35 +00:00
|
|
|
}
|
|
|
|
|
|
2017-09-15 20:10:09 +00:00
|
|
|
namespace {
|
|
|
|
|
struct LTODiagnosticHandler : public DiagnosticHandler {
|
|
|
|
|
LTOCodeGenerator *CodeGenerator;
|
|
|
|
|
LTODiagnosticHandler(LTOCodeGenerator *CodeGenPtr)
|
|
|
|
|
: CodeGenerator(CodeGenPtr) {}
|
|
|
|
|
bool handleDiagnostics(const DiagnosticInfo &DI) override {
|
|
|
|
|
CodeGenerator->DiagnosticHandler(DI);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-15 22:04:35 +00:00
|
|
|
void
|
|
|
|
|
LTOCodeGenerator::setDiagnosticHandler(lto_diagnostic_handler_t DiagHandler,
|
|
|
|
|
void *Ctxt) {
|
|
|
|
|
this->DiagHandler = DiagHandler;
|
|
|
|
|
this->DiagContext = Ctxt;
|
|
|
|
|
if (!DiagHandler)
|
2017-09-15 20:10:09 +00:00
|
|
|
return Context.setDiagnosticHandler(nullptr);
|
2014-01-15 22:04:35 +00:00
|
|
|
// Register the LTOCodeGenerator stub in the LLVMContext to forward the
|
|
|
|
|
// diagnostic to the external DiagHandler.
|
2017-09-15 20:10:09 +00:00
|
|
|
Context.setDiagnosticHandler(llvm::make_unique<LTODiagnosticHandler>(this),
|
|
|
|
|
true);
|
2014-01-15 22:04:35 +00:00
|
|
|
}
|
2015-11-17 19:48:12 +00:00
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
class LTODiagnosticInfo : public DiagnosticInfo {
|
|
|
|
|
const Twine &Msg;
|
|
|
|
|
public:
|
|
|
|
|
LTODiagnosticInfo(const Twine &DiagMsg, DiagnosticSeverity Severity=DS_Error)
|
|
|
|
|
: DiagnosticInfo(DK_Linker, Severity), Msg(DiagMsg) {}
|
|
|
|
|
void print(DiagnosticPrinter &DP) const override { DP << Msg; }
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LTOCodeGenerator::emitError(const std::string &ErrMsg) {
|
|
|
|
|
if (DiagHandler)
|
|
|
|
|
(*DiagHandler)(LTO_DS_ERROR, ErrMsg.c_str(), DiagContext);
|
|
|
|
|
else
|
|
|
|
|
Context.diagnose(LTODiagnosticInfo(ErrMsg));
|
|
|
|
|
}
|
2016-05-05 20:05:33 +00:00
|
|
|
|
|
|
|
|
void LTOCodeGenerator::emitWarning(const std::string &ErrMsg) {
|
|
|
|
|
if (DiagHandler)
|
|
|
|
|
(*DiagHandler)(LTO_DS_WARNING, ErrMsg.c_str(), DiagContext);
|
|
|
|
|
else
|
|
|
|
|
Context.diagnose(LTODiagnosticInfo(ErrMsg, DS_Warning));
|
|
|
|
|
}
|