2010-06-08 07:20:08 +08:00
|
|
|
//===--- BackendUtil.cpp - LLVM Backend Utilities -------------------------===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-06-08 07:20:08 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-06-16 01:48:49 +08:00
|
|
|
#include "clang/CodeGen/BackendUtil.h"
|
2018-12-11 11:18:39 +08:00
|
|
|
#include "clang/Basic/CodeGenOptions.h"
|
2010-06-08 07:20:08 +08:00
|
|
|
#include "clang/Basic/Diagnostic.h"
|
2011-07-06 06:02:36 +08:00
|
|
|
#include "clang/Basic/LangOptions.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "clang/Basic/TargetOptions.h"
|
2010-06-08 07:20:08 +08:00
|
|
|
#include "clang/Frontend/FrontendDiagnostic.h"
|
2013-12-27 16:11:08 +08:00
|
|
|
#include "clang/Frontend/Utils.h"
|
2017-01-06 00:02:32 +08:00
|
|
|
#include "clang/Lex/HeaderSearchOptions.h"
|
2016-12-15 10:19:17 +08:00
|
|
|
#include "llvm/ADT/SmallSet.h"
|
2015-09-26 09:25:08 +08:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2014-05-08 10:28:32 +08:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2016-05-12 00:26:03 +08:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2015-01-15 10:16:55 +08:00
|
|
|
#include "llvm/Analysis/TargetLibraryInfo.h"
|
2015-01-31 19:18:46 +08:00
|
|
|
#include "llvm/Analysis/TargetTransformInfo.h"
|
2016-11-11 13:35:12 +08:00
|
|
|
#include "llvm/Bitcode/BitcodeReader.h"
|
2016-12-24 04:44:01 +08:00
|
|
|
#include "llvm/Bitcode/BitcodeWriter.h"
|
|
|
|
#include "llvm/Bitcode/BitcodeWriterPass.h"
|
2010-06-08 07:20:08 +08:00
|
|
|
#include "llvm/CodeGen/RegAllocRegistry.h"
|
|
|
|
#include "llvm/CodeGen/SchedulerRegistry.h"
|
2018-01-10 06:03:47 +08:00
|
|
|
#include "llvm/CodeGen/TargetSubtargetInfo.h"
|
2013-01-02 19:45:17 +08:00
|
|
|
#include "llvm/IR/DataLayout.h"
|
2014-01-12 19:11:50 +08:00
|
|
|
#include "llvm/IR/IRPrintingPasses.h"
|
2015-02-13 17:57:03 +08:00
|
|
|
#include "llvm/IR/LegacyPassManager.h"
|
2013-01-02 19:45:17 +08:00
|
|
|
#include "llvm/IR/Module.h"
|
2016-12-24 04:44:01 +08:00
|
|
|
#include "llvm/IR/ModuleSummaryIndex.h"
|
2014-01-13 17:26:48 +08:00
|
|
|
#include "llvm/IR/Verifier.h"
|
2016-08-13 02:12:08 +08:00
|
|
|
#include "llvm/LTO/LTOBackend.h"
|
2017-01-06 00:02:32 +08:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2011-06-29 09:14:32 +08:00
|
|
|
#include "llvm/MC/SubtargetFeature.h"
|
2016-12-24 04:44:01 +08:00
|
|
|
#include "llvm/Passes/PassBuilder.h"
|
2019-02-03 07:19:32 +08:00
|
|
|
#include "llvm/Passes/PassPlugin.h"
|
2019-08-14 15:11:09 +08:00
|
|
|
#include "llvm/Passes/StandardInstrumentations.h"
|
2018-11-18 02:04:13 +08:00
|
|
|
#include "llvm/Support/BuryPointer.h"
|
2010-06-08 07:20:08 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2016-08-13 02:12:08 +08:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2010-06-08 07:20:08 +08:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2011-08-25 02:09:14 +08:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2019-03-30 16:42:48 +08:00
|
|
|
#include "llvm/Support/TimeProfiler.h"
|
2010-06-08 07:20:08 +08:00
|
|
|
#include "llvm/Support/Timer.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2016-10-04 06:44:48 +08:00
|
|
|
#include "llvm/Transforms/Coroutines.h"
|
2011-08-03 05:51:02 +08:00
|
|
|
#include "llvm/Transforms/IPO.h"
|
2016-08-17 11:09:11 +08:00
|
|
|
#include "llvm/Transforms/IPO/AlwaysInliner.h"
|
2011-08-03 05:51:02 +08:00
|
|
|
#include "llvm/Transforms/IPO/PassManagerBuilder.h"
|
2017-06-02 07:27:51 +08:00
|
|
|
#include "llvm/Transforms/IPO/ThinLTOBitcodeWriter.h"
|
2018-04-24 08:59:22 +08:00
|
|
|
#include "llvm/Transforms/InstCombine/InstCombine.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation.h"
|
2019-02-14 06:22:48 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation/AddressSanitizer.h"
|
2017-11-14 09:47:24 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation/BoundsChecking.h"
|
2018-03-24 06:16:59 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation/GCOVProfiler.h"
|
2019-05-15 05:17:21 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation/HWAddressSanitizer.h"
|
2019-04-26 01:52:43 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation/InstrProfiling.h"
|
2019-01-16 17:28:01 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation/MemorySanitizer.h"
|
2019-07-26 04:53:15 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation/SanitizerCoverage.h"
|
2019-01-16 17:28:01 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation/ThreadSanitizer.h"
|
2013-01-28 09:36:00 +08:00
|
|
|
#include "llvm/Transforms/ObjCARC.h"
|
2011-08-03 05:51:02 +08:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2016-03-11 17:02:43 +08:00
|
|
|
#include "llvm/Transforms/Scalar/GVN.h"
|
2018-03-29 01:45:10 +08:00
|
|
|
#include "llvm/Transforms/Utils.h"
|
2019-01-05 03:05:01 +08:00
|
|
|
#include "llvm/Transforms/Utils/CanonicalizeAliases.h"
|
2019-06-21 03:35:25 +08:00
|
|
|
#include "llvm/Transforms/Utils/EntryExitInstrumenter.h"
|
2017-06-30 07:08:38 +08:00
|
|
|
#include "llvm/Transforms/Utils/NameAnonGlobals.h"
|
2015-01-09 13:10:20 +08:00
|
|
|
#include "llvm/Transforms/Utils/SymbolRewriter.h"
|
2014-03-09 19:36:40 +08:00
|
|
|
#include <memory>
|
2010-06-08 07:20:08 +08:00
|
|
|
using namespace clang;
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2017-02-14 00:07:05 +08:00
|
|
|
// Default filename used for profile generation.
|
|
|
|
static constexpr StringLiteral DefaultProfileGenName = "default_%m.profraw";
|
|
|
|
|
2010-06-08 07:20:08 +08:00
|
|
|
class EmitAssemblyHelper {
|
2011-09-26 07:23:43 +08:00
|
|
|
DiagnosticsEngine &Diags;
|
2017-01-06 00:02:32 +08:00
|
|
|
const HeaderSearchOptions &HSOpts;
|
2010-06-08 07:20:08 +08:00
|
|
|
const CodeGenOptions &CodeGenOpts;
|
2011-12-03 06:17:00 +08:00
|
|
|
const clang::TargetOptions &TargetOpts;
|
2011-07-06 06:02:36 +08:00
|
|
|
const LangOptions &LangOpts;
|
2010-06-08 07:20:08 +08:00
|
|
|
Module *TheModule;
|
|
|
|
|
|
|
|
Timer CodeGenerationTime;
|
|
|
|
|
2016-07-15 08:55:40 +08:00
|
|
|
std::unique_ptr<raw_pwrite_stream> OS;
|
2010-06-08 07:20:08 +08:00
|
|
|
|
2015-02-01 20:26:23 +08:00
|
|
|
TargetIRAnalysis getTargetIRAnalysis() const {
|
2015-01-31 19:18:46 +08:00
|
|
|
if (TM)
|
2015-02-01 20:26:23 +08:00
|
|
|
return TM->getTargetIRAnalysis();
|
2015-01-31 19:18:46 +08:00
|
|
|
|
2015-02-01 20:26:23 +08:00
|
|
|
return TargetIRAnalysis();
|
2015-01-31 19:18:46 +08:00
|
|
|
}
|
|
|
|
|
2016-08-13 02:12:08 +08:00
|
|
|
void CreatePasses(legacy::PassManager &MPM, legacy::FunctionPassManager &FPM);
|
2012-10-24 08:53:38 +08:00
|
|
|
|
2015-04-14 23:15:49 +08:00
|
|
|
/// Generates the TargetMachine.
|
2016-07-15 08:55:40 +08:00
|
|
|
/// Leaves TM unchanged if it is unable to create the target machine.
|
2012-10-24 11:52:31 +08:00
|
|
|
/// Some of our clang tests specify triples which are not built
|
|
|
|
/// into clang. This is okay because these tests check the generated
|
|
|
|
/// IR, and they require DataLayout which depends on the triple.
|
|
|
|
/// In this case, we allow this method to fail and not report an error.
|
|
|
|
/// When MustCreateTM is used, we print an error if we are unable to load
|
|
|
|
/// the requested target.
|
2016-07-15 08:55:40 +08:00
|
|
|
void CreateTargetMachine(bool MustCreateTM);
|
2010-06-08 07:20:08 +08:00
|
|
|
|
2015-04-14 23:15:49 +08:00
|
|
|
/// Add passes necessary to emit assembly or LLVM IR.
|
2010-06-08 07:20:08 +08:00
|
|
|
///
|
|
|
|
/// \return True on success.
|
2016-07-15 08:55:40 +08:00
|
|
|
bool AddEmitPasses(legacy::PassManager &CodeGenPasses, BackendAction Action,
|
2018-05-23 02:52:37 +08:00
|
|
|
raw_pwrite_stream &OS, raw_pwrite_stream *DwoOS);
|
|
|
|
|
|
|
|
std::unique_ptr<llvm::ToolOutputFile> openOutputFile(StringRef Path) {
|
|
|
|
std::error_code EC;
|
2019-08-15 07:04:18 +08:00
|
|
|
auto F = std::make_unique<llvm::ToolOutputFile>(Path, EC,
|
2019-08-05 13:43:48 +08:00
|
|
|
llvm::sys::fs::OF_None);
|
2018-05-23 02:52:37 +08:00
|
|
|
if (EC) {
|
|
|
|
Diags.Report(diag::err_fe_unable_to_open_output) << Path << EC.message();
|
|
|
|
F.reset();
|
|
|
|
}
|
|
|
|
return F;
|
|
|
|
}
|
2010-06-08 07:20:08 +08:00
|
|
|
|
|
|
|
public:
|
2017-01-06 00:02:32 +08:00
|
|
|
EmitAssemblyHelper(DiagnosticsEngine &_Diags,
|
|
|
|
const HeaderSearchOptions &HeaderSearchOpts,
|
|
|
|
const CodeGenOptions &CGOpts,
|
2011-12-03 06:17:00 +08:00
|
|
|
const clang::TargetOptions &TOpts,
|
2016-01-09 01:04:29 +08:00
|
|
|
const LangOptions &LOpts, Module *M)
|
2017-01-06 00:02:32 +08:00
|
|
|
: Diags(_Diags), HSOpts(HeaderSearchOpts), CodeGenOpts(CGOpts),
|
|
|
|
TargetOpts(TOpts), LangOpts(LOpts), TheModule(M),
|
|
|
|
CodeGenerationTime("codegen", "Code Generation Time") {}
|
2010-06-08 07:20:08 +08:00
|
|
|
|
|
|
|
~EmitAssemblyHelper() {
|
2013-12-21 04:26:53 +08:00
|
|
|
if (CodeGenOpts.DisableFree)
|
Provide a BuryPointer for unique_ptrs.
In theory, it'd be nice if we could move to a case where all buried
pointers were buried via unique_ptr to demonstrate that the program had
finished with the value (that we could really have cleanly deallocated
it) but instead chose to bury it.
I think the main reason that's not possible right now is the various
IntrusiveRefCntPtrs in the Frontend, sharing ownership for a variety of
compiler bits (see the various similar
"CompilerInstance::releaseAndLeak*" functions). I have yet to figure out
their correct ownership semantics - but perhaps, even if the
intrusiveness can be removed, the shared ownership may yet remain and
that would lead to a non-unique burying as is there today. (though we
could model that a little better - by passing in a shared_ptr, etc -
rather than needing the two step that's currently used in those other
releaseAndLeak* functions)
This might be a bit more robust if BuryPointer took the boolean:
BuryPointer(bool, unique_ptr<T>)
and the choice to bury was made internally - that way, even when
DisableFree was not set, the unique_ptr would still be null in the
caller and there'd be no chance of accidentally having a different
codepath where the value is used after burial in !DisableFree, but it
becomes null only in DisableFree, etc...
llvm-svn: 216742
2014-08-30 00:53:14 +08:00
|
|
|
BuryPointer(std::move(TM));
|
2010-06-08 07:20:08 +08:00
|
|
|
}
|
|
|
|
|
2014-03-08 04:03:18 +08:00
|
|
|
std::unique_ptr<TargetMachine> TM;
|
2013-12-21 04:26:53 +08:00
|
|
|
|
2016-07-15 08:55:40 +08:00
|
|
|
void EmitAssembly(BackendAction Action,
|
|
|
|
std::unique_ptr<raw_pwrite_stream> OS);
|
2016-12-24 04:44:01 +08:00
|
|
|
|
|
|
|
void EmitAssemblyWithNewPassManager(BackendAction Action,
|
|
|
|
std::unique_ptr<raw_pwrite_stream> OS);
|
2010-06-08 07:20:08 +08:00
|
|
|
};
|
|
|
|
|
2012-12-28 17:31:34 +08:00
|
|
|
// We need this wrapper to access LangOpts and CGOpts from extension functions
|
|
|
|
// that we add to the PassManagerBuilder.
|
2012-11-30 06:36:21 +08:00
|
|
|
class PassManagerBuilderWrapper : public PassManagerBuilder {
|
|
|
|
public:
|
2017-04-25 03:34:12 +08:00
|
|
|
PassManagerBuilderWrapper(const Triple &TargetTriple,
|
|
|
|
const CodeGenOptions &CGOpts,
|
2012-12-04 03:12:58 +08:00
|
|
|
const LangOptions &LangOpts)
|
2017-04-25 03:34:12 +08:00
|
|
|
: PassManagerBuilder(), TargetTriple(TargetTriple), CGOpts(CGOpts),
|
|
|
|
LangOpts(LangOpts) {}
|
|
|
|
const Triple &getTargetTriple() const { return TargetTriple; }
|
2012-12-04 03:12:58 +08:00
|
|
|
const CodeGenOptions &getCGOpts() const { return CGOpts; }
|
2012-11-30 06:36:21 +08:00
|
|
|
const LangOptions &getLangOpts() const { return LangOpts; }
|
2017-04-25 03:34:12 +08:00
|
|
|
|
2012-11-30 06:36:21 +08:00
|
|
|
private:
|
2017-04-25 03:34:12 +08:00
|
|
|
const Triple &TargetTriple;
|
2012-12-04 03:12:58 +08:00
|
|
|
const CodeGenOptions &CGOpts;
|
2012-11-30 06:36:21 +08:00
|
|
|
const LangOptions &LangOpts;
|
|
|
|
};
|
2015-06-23 07:07:51 +08:00
|
|
|
}
|
2010-06-08 07:20:08 +08:00
|
|
|
|
2012-01-18 04:54:51 +08:00
|
|
|
static void addObjCARCAPElimPass(const PassManagerBuilder &Builder, PassManagerBase &PM) {
|
|
|
|
if (Builder.OptLevel > 0)
|
|
|
|
PM.add(createObjCARCAPElimPass());
|
|
|
|
}
|
|
|
|
|
2011-07-06 06:02:36 +08:00
|
|
|
static void addObjCARCExpandPass(const PassManagerBuilder &Builder, PassManagerBase &PM) {
|
|
|
|
if (Builder.OptLevel > 0)
|
|
|
|
PM.add(createObjCARCExpandPass());
|
|
|
|
}
|
|
|
|
|
|
|
|
static void addObjCARCOptPass(const PassManagerBuilder &Builder, PassManagerBase &PM) {
|
|
|
|
if (Builder.OptLevel > 0)
|
|
|
|
PM.add(createObjCARCOptPass());
|
|
|
|
}
|
|
|
|
|
2014-03-04 04:06:18 +08:00
|
|
|
static void addAddDiscriminatorsPass(const PassManagerBuilder &Builder,
|
2015-02-13 17:47:49 +08:00
|
|
|
legacy::PassManagerBase &PM) {
|
2014-03-04 04:06:18 +08:00
|
|
|
PM.add(createAddDiscriminatorsPass());
|
|
|
|
}
|
|
|
|
|
2012-05-23 01:19:45 +08:00
|
|
|
static void addBoundsCheckingPass(const PassManagerBuilder &Builder,
|
2016-06-02 08:24:20 +08:00
|
|
|
legacy::PassManagerBase &PM) {
|
2017-11-14 09:30:04 +08:00
|
|
|
PM.add(createBoundsCheckingLegacyPass());
|
2012-05-23 01:19:45 +08:00
|
|
|
}
|
|
|
|
|
2019-07-26 04:53:15 +08:00
|
|
|
static SanitizerCoverageOptions
|
|
|
|
getSancovOptsFromCGOpts(const CodeGenOptions &CGOpts) {
|
2015-05-08 02:31:29 +08:00
|
|
|
SanitizerCoverageOptions Opts;
|
|
|
|
Opts.CoverageType =
|
|
|
|
static_cast<SanitizerCoverageOptions::Type>(CGOpts.SanitizeCoverageType);
|
|
|
|
Opts.IndirectCalls = CGOpts.SanitizeCoverageIndirectCalls;
|
|
|
|
Opts.TraceBB = CGOpts.SanitizeCoverageTraceBB;
|
|
|
|
Opts.TraceCmp = CGOpts.SanitizeCoverageTraceCmp;
|
2016-08-30 09:27:03 +08:00
|
|
|
Opts.TraceDiv = CGOpts.SanitizeCoverageTraceDiv;
|
|
|
|
Opts.TraceGep = CGOpts.SanitizeCoverageTraceGep;
|
2015-05-08 02:31:29 +08:00
|
|
|
Opts.Use8bitCounters = CGOpts.SanitizeCoverage8bitCounters;
|
2016-02-18 05:34:43 +08:00
|
|
|
Opts.TracePC = CGOpts.SanitizeCoverageTracePC;
|
2016-09-14 09:39:49 +08:00
|
|
|
Opts.TracePCGuard = CGOpts.SanitizeCoverageTracePCGuard;
|
2017-05-06 07:28:18 +08:00
|
|
|
Opts.NoPrune = CGOpts.SanitizeCoverageNoPrune;
|
2017-06-09 06:58:19 +08:00
|
|
|
Opts.Inline8bitCounters = CGOpts.SanitizeCoverageInline8bitCounters;
|
2017-07-28 08:10:10 +08:00
|
|
|
Opts.PCTable = CGOpts.SanitizeCoveragePCTable;
|
2017-08-19 02:43:30 +08:00
|
|
|
Opts.StackDepth = CGOpts.SanitizeCoverageStackDepth;
|
2019-07-26 04:53:15 +08:00
|
|
|
return Opts;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void addSanitizerCoveragePass(const PassManagerBuilder &Builder,
|
|
|
|
legacy::PassManagerBase &PM) {
|
|
|
|
const PassManagerBuilderWrapper &BuilderWrapper =
|
|
|
|
static_cast<const PassManagerBuilderWrapper &>(Builder);
|
|
|
|
const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts();
|
|
|
|
auto Opts = getSancovOptsFromCGOpts(CGOpts);
|
|
|
|
PM.add(createModuleSanitizerCoverageLegacyPassPass(Opts));
|
2014-11-12 06:15:07 +08:00
|
|
|
}
|
|
|
|
|
2017-04-25 03:34:12 +08:00
|
|
|
// Check if ASan should use GC-friendly instrumentation for globals.
|
|
|
|
// First of all, there is no point if -fdata-sections is off (expect for MachO,
|
|
|
|
// where this is not a factor). Also, on ELF this feature requires an assembler
|
|
|
|
// extension that only works with -integrated-as at the moment.
|
|
|
|
static bool asanUseGlobalsGC(const Triple &T, const CodeGenOptions &CGOpts) {
|
2017-05-10 05:57:43 +08:00
|
|
|
if (!CGOpts.SanitizeAddressGlobalsDeadStripping)
|
|
|
|
return false;
|
2017-04-25 03:34:12 +08:00
|
|
|
switch (T.getObjectFormat()) {
|
|
|
|
case Triple::MachO:
|
|
|
|
case Triple::COFF:
|
2017-04-26 08:51:06 +08:00
|
|
|
return true;
|
2017-04-25 03:34:12 +08:00
|
|
|
case Triple::ELF:
|
|
|
|
return CGOpts.DataSections && !CGOpts.DisableIntegratedAS;
|
[sanitizers] Use covering ObjectFormatType switches
Summary:
This patch removes the `default` case from some switches on
`llvm::Triple::ObjectFormatType`, and cases for the missing enumerators
(`UnknownObjectFormat`, `Wasm`, and `XCOFF`) are then added.
For `UnknownObjectFormat`, the effect of the action for the `default`
case is maintained; otherwise, where `llvm_unreachable` is called,
`report_fatal_error` is used instead.
Where the `default` case returns a default value, `report_fatal_error`
is used for XCOFF as a placeholder. For `Wasm`, the effect of the action
for the `default` case in maintained.
The code is structured to avoid strongly implying that the `Wasm` case
is present for any reason other than to make the switch cover all
`ObjectFormatType` enumerator values.
Reviewers: sfertile, jasonliu, daltenty
Reviewed By: sfertile
Subscribers: hiraditya, aheejin, sunfish, llvm-commits, cfe-commits
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D64222
llvm-svn: 366544
2019-07-19 16:46:18 +08:00
|
|
|
case Triple::XCOFF:
|
|
|
|
llvm::report_fatal_error("ASan not implemented for XCOFF.");
|
|
|
|
case Triple::Wasm:
|
|
|
|
case Triple::UnknownObjectFormat:
|
|
|
|
break;
|
2017-04-25 03:34:12 +08:00
|
|
|
}
|
[sanitizers] Use covering ObjectFormatType switches
Summary:
This patch removes the `default` case from some switches on
`llvm::Triple::ObjectFormatType`, and cases for the missing enumerators
(`UnknownObjectFormat`, `Wasm`, and `XCOFF`) are then added.
For `UnknownObjectFormat`, the effect of the action for the `default`
case is maintained; otherwise, where `llvm_unreachable` is called,
`report_fatal_error` is used instead.
Where the `default` case returns a default value, `report_fatal_error`
is used for XCOFF as a placeholder. For `Wasm`, the effect of the action
for the `default` case in maintained.
The code is structured to avoid strongly implying that the `Wasm` case
is present for any reason other than to make the switch cover all
`ObjectFormatType` enumerator values.
Reviewers: sfertile, jasonliu, daltenty
Reviewed By: sfertile
Subscribers: hiraditya, aheejin, sunfish, llvm-commits, cfe-commits
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D64222
llvm-svn: 366544
2019-07-19 16:46:18 +08:00
|
|
|
return false;
|
2017-04-25 03:34:12 +08:00
|
|
|
}
|
|
|
|
|
2012-11-30 06:36:21 +08:00
|
|
|
static void addAddressSanitizerPasses(const PassManagerBuilder &Builder,
|
2015-02-13 17:47:49 +08:00
|
|
|
legacy::PassManagerBase &PM) {
|
2015-11-11 18:45:48 +08:00
|
|
|
const PassManagerBuilderWrapper &BuilderWrapper =
|
|
|
|
static_cast<const PassManagerBuilderWrapper&>(Builder);
|
2017-04-25 03:34:12 +08:00
|
|
|
const Triple &T = BuilderWrapper.getTargetTriple();
|
2015-11-11 18:45:48 +08:00
|
|
|
const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts();
|
|
|
|
bool Recover = CGOpts.SanitizeRecover.has(SanitizerKind::Address);
|
2016-06-02 08:24:20 +08:00
|
|
|
bool UseAfterScope = CGOpts.SanitizeAddressUseAfterScope;
|
2018-12-05 09:44:31 +08:00
|
|
|
bool UseOdrIndicator = CGOpts.SanitizeAddressUseOdrIndicator;
|
2017-04-25 03:34:12 +08:00
|
|
|
bool UseGlobalsGC = asanUseGlobalsGC(T, CGOpts);
|
2016-06-02 08:24:20 +08:00
|
|
|
PM.add(createAddressSanitizerFunctionPass(/*CompileKernel*/ false, Recover,
|
|
|
|
UseAfterScope));
|
2019-02-14 06:22:48 +08:00
|
|
|
PM.add(createModuleAddressSanitizerLegacyPassPass(
|
|
|
|
/*CompileKernel*/ false, Recover, UseGlobalsGC, UseOdrIndicator));
|
2015-06-19 20:19:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void addKernelAddressSanitizerPasses(const PassManagerBuilder &Builder,
|
|
|
|
legacy::PassManagerBase &PM) {
|
2016-06-02 08:24:20 +08:00
|
|
|
PM.add(createAddressSanitizerFunctionPass(
|
2018-04-14 02:05:21 +08:00
|
|
|
/*CompileKernel*/ true, /*Recover*/ true, /*UseAfterScope*/ false));
|
2019-02-14 06:22:48 +08:00
|
|
|
PM.add(createModuleAddressSanitizerLegacyPassPass(
|
2018-12-05 09:44:31 +08:00
|
|
|
/*CompileKernel*/ true, /*Recover*/ true, /*UseGlobalsGC*/ true,
|
|
|
|
/*UseOdrIndicator*/ false));
|
2011-11-17 01:34:26 +08:00
|
|
|
}
|
|
|
|
|
2017-12-09 09:32:07 +08:00
|
|
|
static void addHWAddressSanitizerPasses(const PassManagerBuilder &Builder,
|
|
|
|
legacy::PassManagerBase &PM) {
|
2017-12-21 03:05:44 +08:00
|
|
|
const PassManagerBuilderWrapper &BuilderWrapper =
|
|
|
|
static_cast<const PassManagerBuilderWrapper &>(Builder);
|
|
|
|
const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts();
|
|
|
|
bool Recover = CGOpts.SanitizeRecover.has(SanitizerKind::HWAddress);
|
2019-05-15 05:17:21 +08:00
|
|
|
PM.add(
|
|
|
|
createHWAddressSanitizerLegacyPassPass(/*CompileKernel*/ false, Recover));
|
2018-04-14 02:05:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void addKernelHWAddressSanitizerPasses(const PassManagerBuilder &Builder,
|
|
|
|
legacy::PassManagerBase &PM) {
|
2019-05-15 05:17:21 +08:00
|
|
|
PM.add(createHWAddressSanitizerLegacyPassPass(
|
2018-04-14 02:05:21 +08:00
|
|
|
/*CompileKernel*/ true, /*Recover*/ true));
|
2017-12-09 09:32:07 +08:00
|
|
|
}
|
|
|
|
|
2018-09-07 17:21:09 +08:00
|
|
|
static void addGeneralOptsForMemorySanitizer(const PassManagerBuilder &Builder,
|
|
|
|
legacy::PassManagerBase &PM,
|
|
|
|
bool CompileKernel) {
|
2012-12-24 16:42:34 +08:00
|
|
|
const PassManagerBuilderWrapper &BuilderWrapper =
|
|
|
|
static_cast<const PassManagerBuilderWrapper&>(Builder);
|
|
|
|
const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts();
|
2016-11-08 05:02:11 +08:00
|
|
|
int TrackOrigins = CGOpts.SanitizeMemoryTrackOrigins;
|
|
|
|
bool Recover = CGOpts.SanitizeRecover.has(SanitizerKind::Memory);
|
2019-02-05 05:02:49 +08:00
|
|
|
PM.add(createMemorySanitizerLegacyPassPass(
|
|
|
|
MemorySanitizerOptions{TrackOrigins, Recover, CompileKernel}));
|
2013-01-31 17:53:29 +08:00
|
|
|
|
|
|
|
// MemorySanitizer inserts complex instrumentation that mostly follows
|
|
|
|
// the logic of the original code, but operates on "shadow" values.
|
|
|
|
// It can benefit from re-running some general purpose optimization passes.
|
|
|
|
if (Builder.OptLevel > 0) {
|
|
|
|
PM.add(createEarlyCSEPass());
|
|
|
|
PM.add(createReassociatePass());
|
|
|
|
PM.add(createLICMPass());
|
|
|
|
PM.add(createGVNPass());
|
|
|
|
PM.add(createInstructionCombiningPass());
|
|
|
|
PM.add(createDeadStoreEliminationPass());
|
|
|
|
}
|
2012-12-03 21:20:43 +08:00
|
|
|
}
|
|
|
|
|
2018-09-07 17:21:09 +08:00
|
|
|
static void addMemorySanitizerPass(const PassManagerBuilder &Builder,
|
|
|
|
legacy::PassManagerBase &PM) {
|
|
|
|
addGeneralOptsForMemorySanitizer(Builder, PM, /*CompileKernel*/ false);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void addKernelMemorySanitizerPass(const PassManagerBuilder &Builder,
|
|
|
|
legacy::PassManagerBase &PM) {
|
|
|
|
addGeneralOptsForMemorySanitizer(Builder, PM, /*CompileKernel*/ true);
|
|
|
|
}
|
|
|
|
|
2012-03-02 06:27:08 +08:00
|
|
|
static void addThreadSanitizerPass(const PassManagerBuilder &Builder,
|
2015-02-13 17:47:49 +08:00
|
|
|
legacy::PassManagerBase &PM) {
|
2019-01-16 17:28:01 +08:00
|
|
|
PM.add(createThreadSanitizerLegacyPassPass());
|
2012-03-02 06:27:08 +08:00
|
|
|
}
|
|
|
|
|
2013-08-08 06:47:34 +08:00
|
|
|
static void addDataFlowSanitizerPass(const PassManagerBuilder &Builder,
|
2015-02-13 17:47:49 +08:00
|
|
|
legacy::PassManagerBase &PM) {
|
2013-08-15 02:54:18 +08:00
|
|
|
const PassManagerBuilderWrapper &BuilderWrapper =
|
|
|
|
static_cast<const PassManagerBuilderWrapper&>(Builder);
|
2014-10-16 04:22:54 +08:00
|
|
|
const LangOptions &LangOpts = BuilderWrapper.getLangOpts();
|
2015-02-05 01:40:08 +08:00
|
|
|
PM.add(createDataFlowSanitizerPass(LangOpts.SanitizerBlacklistFiles));
|
2013-08-08 06:47:34 +08:00
|
|
|
}
|
|
|
|
|
2015-01-24 10:25:21 +08:00
|
|
|
static TargetLibraryInfoImpl *createTLII(llvm::Triple &TargetTriple,
|
|
|
|
const CodeGenOptions &CodeGenOpts) {
|
|
|
|
TargetLibraryInfoImpl *TLII = new TargetLibraryInfoImpl(TargetTriple);
|
2014-08-22 01:58:42 +08:00
|
|
|
if (!CodeGenOpts.SimplifyLibCalls)
|
2015-01-24 10:25:21 +08:00
|
|
|
TLII->disableAllFunctions();
|
2016-01-06 22:35:46 +08:00
|
|
|
else {
|
|
|
|
// Disable individual libc/libm calls in TargetLibraryInfo.
|
Add LF_ prefix to LibFunc enums in TargetLibraryInfo.
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LF_". (Unfortunately, a scoped enum is not sufficient to override macros.)
These changes are for clang. See https://reviews.llvm.org/D28476 for LLVM.
Reviewers: rsmith
Subscribers: cfe-commits
Differential Revision: https://reviews.llvm.org/D28477
llvm-svn: 292849
2017-01-24 07:16:58 +08:00
|
|
|
LibFunc F;
|
2016-01-06 22:35:46 +08:00
|
|
|
for (auto &FuncName : CodeGenOpts.getNoBuiltinFuncs())
|
|
|
|
if (TLII->getLibFunc(FuncName, F))
|
|
|
|
TLII->setUnavailable(F);
|
|
|
|
}
|
2015-03-18 04:03:11 +08:00
|
|
|
|
|
|
|
switch (CodeGenOpts.getVecLib()) {
|
|
|
|
case CodeGenOptions::Accelerate:
|
|
|
|
TLII->addVectorizableFunctionsFromVecLib(TargetLibraryInfoImpl::Accelerate);
|
|
|
|
break;
|
2019-06-05 09:57:57 +08:00
|
|
|
case CodeGenOptions::MASSV:
|
|
|
|
TLII->addVectorizableFunctionsFromVecLib(TargetLibraryInfoImpl::MASSV);
|
|
|
|
break;
|
2016-07-30 00:44:24 +08:00
|
|
|
case CodeGenOptions::SVML:
|
|
|
|
TLII->addVectorizableFunctionsFromVecLib(TargetLibraryInfoImpl::SVML);
|
|
|
|
break;
|
2015-03-18 04:03:11 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2015-01-24 10:25:21 +08:00
|
|
|
return TLII;
|
2014-08-22 01:58:42 +08:00
|
|
|
}
|
|
|
|
|
2015-01-09 13:10:20 +08:00
|
|
|
static void addSymbolRewriterPass(const CodeGenOptions &Opts,
|
2015-02-13 17:47:49 +08:00
|
|
|
legacy::PassManager *MPM) {
|
2015-01-09 13:10:20 +08:00
|
|
|
llvm::SymbolRewriter::RewriteDescriptorList DL;
|
|
|
|
|
|
|
|
llvm::SymbolRewriter::RewriteMapParser MapParser;
|
|
|
|
for (const auto &MapFile : Opts.RewriteMapFiles)
|
|
|
|
MapParser.parse(MapFile, &DL);
|
|
|
|
|
|
|
|
MPM->add(createRewriteSymbolsPass(DL));
|
|
|
|
}
|
|
|
|
|
2017-03-31 10:05:15 +08:00
|
|
|
static CodeGenOpt::Level getCGOptLevel(const CodeGenOptions &CodeGenOpts) {
|
|
|
|
switch (CodeGenOpts.OptimizationLevel) {
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Invalid optimization level!");
|
|
|
|
case 0:
|
|
|
|
return CodeGenOpt::None;
|
|
|
|
case 1:
|
|
|
|
return CodeGenOpt::Less;
|
|
|
|
case 2:
|
|
|
|
return CodeGenOpt::Default; // O2/Os/Oz
|
|
|
|
case 3:
|
|
|
|
return CodeGenOpt::Aggressive;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-03 10:16:28 +08:00
|
|
|
static Optional<llvm::CodeModel::Model>
|
|
|
|
getCodeModel(const CodeGenOptions &CodeGenOpts) {
|
|
|
|
unsigned CodeModel = llvm::StringSwitch<unsigned>(CodeGenOpts.CodeModel)
|
2018-08-22 19:34:28 +08:00
|
|
|
.Case("tiny", llvm::CodeModel::Tiny)
|
2017-08-03 10:16:28 +08:00
|
|
|
.Case("small", llvm::CodeModel::Small)
|
|
|
|
.Case("kernel", llvm::CodeModel::Kernel)
|
|
|
|
.Case("medium", llvm::CodeModel::Medium)
|
|
|
|
.Case("large", llvm::CodeModel::Large)
|
|
|
|
.Case("default", ~1u)
|
|
|
|
.Default(~0u);
|
2017-03-31 10:05:15 +08:00
|
|
|
assert(CodeModel != ~0u && "invalid code model!");
|
2017-08-03 10:16:28 +08:00
|
|
|
if (CodeModel == ~1u)
|
|
|
|
return None;
|
2017-03-31 10:05:15 +08:00
|
|
|
return static_cast<llvm::CodeModel::Model>(CodeModel);
|
|
|
|
}
|
|
|
|
|
|
|
|
static TargetMachine::CodeGenFileType getCodeGenFileType(BackendAction Action) {
|
|
|
|
if (Action == Backend_EmitObj)
|
|
|
|
return TargetMachine::CGFT_ObjectFile;
|
|
|
|
else if (Action == Backend_EmitMCNull)
|
|
|
|
return TargetMachine::CGFT_Null;
|
|
|
|
else {
|
|
|
|
assert(Action == Backend_EmitAssembly && "Invalid action!");
|
|
|
|
return TargetMachine::CGFT_AssemblyFile;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void initTargetOptions(llvm::TargetOptions &Options,
|
|
|
|
const CodeGenOptions &CodeGenOpts,
|
|
|
|
const clang::TargetOptions &TargetOpts,
|
|
|
|
const LangOptions &LangOpts,
|
|
|
|
const HeaderSearchOptions &HSOpts) {
|
|
|
|
Options.ThreadModel =
|
|
|
|
llvm::StringSwitch<llvm::ThreadModel::Model>(CodeGenOpts.ThreadModel)
|
|
|
|
.Case("posix", llvm::ThreadModel::POSIX)
|
|
|
|
.Case("single", llvm::ThreadModel::Single);
|
|
|
|
|
|
|
|
// Set float ABI type.
|
|
|
|
assert((CodeGenOpts.FloatABI == "soft" || CodeGenOpts.FloatABI == "softfp" ||
|
|
|
|
CodeGenOpts.FloatABI == "hard" || CodeGenOpts.FloatABI.empty()) &&
|
|
|
|
"Invalid Floating Point ABI!");
|
|
|
|
Options.FloatABIType =
|
|
|
|
llvm::StringSwitch<llvm::FloatABI::ABIType>(CodeGenOpts.FloatABI)
|
|
|
|
.Case("soft", llvm::FloatABI::Soft)
|
|
|
|
.Case("softfp", llvm::FloatABI::Soft)
|
|
|
|
.Case("hard", llvm::FloatABI::Hard)
|
|
|
|
.Default(llvm::FloatABI::Default);
|
|
|
|
|
|
|
|
// Set FP fusion mode.
|
|
|
|
switch (LangOpts.getDefaultFPContractMode()) {
|
|
|
|
case LangOptions::FPC_Off:
|
2017-04-21 01:09:35 +08:00
|
|
|
// Preserve any contraction performed by the front-end. (Strict performs
|
Misc typos fixes in ./lib folder
Summary: Found via `codespell -q 3 -I ../clang-whitelist.txt -L uint,importd,crasher,gonna,cant,ue,ons,orign,ned`
Reviewers: teemperor
Reviewed By: teemperor
Subscribers: teemperor, jholewinski, jvesely, nhaehnle, whisperity, jfb, cfe-commits
Differential Revision: https://reviews.llvm.org/D55475
llvm-svn: 348755
2018-12-10 20:37:46 +08:00
|
|
|
// splitting of the muladd intrinsic in the backend.)
|
2017-04-21 01:09:35 +08:00
|
|
|
Options.AllowFPOpFusion = llvm::FPOpFusion::Standard;
|
2017-03-31 10:05:15 +08:00
|
|
|
break;
|
|
|
|
case LangOptions::FPC_On:
|
|
|
|
Options.AllowFPOpFusion = llvm::FPOpFusion::Standard;
|
|
|
|
break;
|
|
|
|
case LangOptions::FPC_Fast:
|
|
|
|
Options.AllowFPOpFusion = llvm::FPOpFusion::Fast;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Options.UseInitArray = CodeGenOpts.UseInitArray;
|
|
|
|
Options.DisableIntegratedAS = CodeGenOpts.DisableIntegratedAS;
|
2017-06-09 08:40:30 +08:00
|
|
|
Options.CompressDebugSections = CodeGenOpts.getCompressDebugSections();
|
2017-03-31 10:05:15 +08:00
|
|
|
Options.RelaxELFRelocations = CodeGenOpts.RelaxELFRelocations;
|
|
|
|
|
|
|
|
// Set EABI version.
|
2017-07-01 15:57:23 +08:00
|
|
|
Options.EABIVersion = TargetOpts.EABIVersion;
|
2017-03-31 10:05:15 +08:00
|
|
|
|
|
|
|
if (LangOpts.SjLjExceptions)
|
|
|
|
Options.ExceptionModel = llvm::ExceptionHandling::SjLj;
|
2017-11-29 15:25:12 +08:00
|
|
|
if (LangOpts.SEHExceptions)
|
|
|
|
Options.ExceptionModel = llvm::ExceptionHandling::WinEH;
|
|
|
|
if (LangOpts.DWARFExceptions)
|
|
|
|
Options.ExceptionModel = llvm::ExceptionHandling::DwarfCFI;
|
2019-09-12 12:01:37 +08:00
|
|
|
if (LangOpts.WasmExceptions)
|
|
|
|
Options.ExceptionModel = llvm::ExceptionHandling::Wasm;
|
2017-03-31 10:05:15 +08:00
|
|
|
|
|
|
|
Options.NoInfsFPMath = CodeGenOpts.NoInfsFPMath;
|
|
|
|
Options.NoNaNsFPMath = CodeGenOpts.NoNaNsFPMath;
|
|
|
|
Options.NoZerosInBSS = CodeGenOpts.NoZeroInitializedInBSS;
|
|
|
|
Options.UnsafeFPMath = CodeGenOpts.UnsafeFPMath;
|
|
|
|
Options.StackAlignmentOverride = CodeGenOpts.StackAlignment;
|
|
|
|
Options.FunctionSections = CodeGenOpts.FunctionSections;
|
|
|
|
Options.DataSections = CodeGenOpts.DataSections;
|
|
|
|
Options.UniqueSectionNames = CodeGenOpts.UniqueSectionNames;
|
|
|
|
Options.EmulatedTLS = CodeGenOpts.EmulatedTLS;
|
2018-03-02 06:26:19 +08:00
|
|
|
Options.ExplicitEmulatedTLS = CodeGenOpts.ExplicitEmulatedTLS;
|
2017-03-31 10:05:15 +08:00
|
|
|
Options.DebuggerTuning = CodeGenOpts.getDebuggerTuning();
|
2018-01-08 21:42:26 +08:00
|
|
|
Options.EmitStackSizeSection = CodeGenOpts.StackSizeSection;
|
2018-07-18 08:27:07 +08:00
|
|
|
Options.EmitAddrsig = CodeGenOpts.Addrsig;
|
2019-06-26 17:38:09 +08:00
|
|
|
Options.EnableDebugEntryValues = CodeGenOpts.EnableDebugEntryValues;
|
2017-03-31 10:05:15 +08:00
|
|
|
|
2019-06-27 05:36:35 +08:00
|
|
|
Options.MCOptions.SplitDwarfFile = CodeGenOpts.SplitDwarfFile;
|
2017-03-31 10:05:15 +08:00
|
|
|
Options.MCOptions.MCRelaxAll = CodeGenOpts.RelaxAll;
|
|
|
|
Options.MCOptions.MCSaveTempLabels = CodeGenOpts.SaveTempLabels;
|
|
|
|
Options.MCOptions.MCUseDwarfDirectory = !CodeGenOpts.NoDwarfDirectoryAsm;
|
|
|
|
Options.MCOptions.MCNoExecStack = CodeGenOpts.NoExecStack;
|
|
|
|
Options.MCOptions.MCIncrementalLinkerCompatible =
|
|
|
|
CodeGenOpts.IncrementalLinkerCompatible;
|
|
|
|
Options.MCOptions.MCPIECopyRelocations = CodeGenOpts.PIECopyRelocations;
|
|
|
|
Options.MCOptions.MCFatalWarnings = CodeGenOpts.FatalWarnings;
|
2019-08-09 03:19:20 +08:00
|
|
|
Options.MCOptions.MCNoWarn = CodeGenOpts.NoWarn;
|
2017-03-31 10:05:15 +08:00
|
|
|
Options.MCOptions.AsmVerbose = CodeGenOpts.AsmVerbose;
|
|
|
|
Options.MCOptions.PreserveAsmComments = CodeGenOpts.PreserveAsmComments;
|
|
|
|
Options.MCOptions.ABIName = TargetOpts.ABI;
|
|
|
|
for (const auto &Entry : HSOpts.UserEntries)
|
|
|
|
if (!Entry.IsFramework &&
|
|
|
|
(Entry.Group == frontend::IncludeDirGroup::Quoted ||
|
|
|
|
Entry.Group == frontend::IncludeDirGroup::Angled ||
|
|
|
|
Entry.Group == frontend::IncludeDirGroup::System))
|
|
|
|
Options.MCOptions.IASSearchPaths.push_back(
|
|
|
|
Entry.IgnoreSysRoot ? Entry.Path : HSOpts.Sysroot + Entry.Path);
|
|
|
|
}
|
2018-01-10 06:03:47 +08:00
|
|
|
static Optional<GCOVOptions> getGCOVOptions(const CodeGenOptions &CodeGenOpts) {
|
|
|
|
if (CodeGenOpts.DisableGCov)
|
|
|
|
return None;
|
|
|
|
if (!CodeGenOpts.EmitGcovArcs && !CodeGenOpts.EmitGcovNotes)
|
|
|
|
return None;
|
|
|
|
// Not using 'GCOVOptions::getDefault' allows us to avoid exiting if
|
|
|
|
// LLVM's -default-gcov-version flag is set to something invalid.
|
|
|
|
GCOVOptions Options;
|
|
|
|
Options.EmitNotes = CodeGenOpts.EmitGcovNotes;
|
|
|
|
Options.EmitData = CodeGenOpts.EmitGcovArcs;
|
|
|
|
llvm::copy(CodeGenOpts.CoverageVersion, std::begin(Options.Version));
|
|
|
|
Options.UseCfgChecksum = CodeGenOpts.CoverageExtraChecksum;
|
|
|
|
Options.NoRedZone = CodeGenOpts.DisableRedZone;
|
|
|
|
Options.FunctionNamesInData = !CodeGenOpts.CoverageNoFunctionNamesInData;
|
2018-11-18 03:41:39 +08:00
|
|
|
Options.Filter = CodeGenOpts.ProfileFilterFiles;
|
|
|
|
Options.Exclude = CodeGenOpts.ProfileExcludeFiles;
|
2018-01-10 06:03:47 +08:00
|
|
|
Options.ExitBlockBeforeBody = CodeGenOpts.CoverageExitBlockBeforeBody;
|
|
|
|
return Options;
|
|
|
|
}
|
2017-03-31 10:05:15 +08:00
|
|
|
|
2019-04-26 01:52:43 +08:00
|
|
|
static Optional<InstrProfOptions>
|
|
|
|
getInstrProfOptions(const CodeGenOptions &CodeGenOpts,
|
|
|
|
const LangOptions &LangOpts) {
|
|
|
|
if (!CodeGenOpts.hasProfileClangInstr())
|
|
|
|
return None;
|
|
|
|
InstrProfOptions Options;
|
|
|
|
Options.NoRedZone = CodeGenOpts.DisableRedZone;
|
|
|
|
Options.InstrProfileOutput = CodeGenOpts.InstrProfileOutput;
|
|
|
|
|
|
|
|
// TODO: Surface the option to emit atomic profile counter increments at
|
|
|
|
// the driver level.
|
|
|
|
Options.Atomic = LangOpts.Sanitize.has(SanitizerKind::Thread);
|
|
|
|
return Options;
|
|
|
|
}
|
|
|
|
|
2016-07-15 08:55:40 +08:00
|
|
|
void EmitAssemblyHelper::CreatePasses(legacy::PassManager &MPM,
|
2016-08-13 02:12:08 +08:00
|
|
|
legacy::FunctionPassManager &FPM) {
|
2016-12-23 08:23:01 +08:00
|
|
|
// Handle disabling of all LLVM passes, where we want to preserve the
|
|
|
|
// internal module before any optimization.
|
2015-07-18 04:09:56 +08:00
|
|
|
if (CodeGenOpts.DisableLLVMPasses)
|
|
|
|
return;
|
|
|
|
|
2016-11-23 04:03:35 +08:00
|
|
|
// Figure out TargetLibraryInfo. This needs to be added to MPM and FPM
|
|
|
|
// manually (and not via PMBuilder), since some passes (eg. InstrProfiling)
|
|
|
|
// are inserted before PMBuilder ones - they'd get the default-constructed
|
|
|
|
// TLI with an unknown target otherwise.
|
2015-12-08 03:21:34 +08:00
|
|
|
Triple TargetTriple(TheModule->getTargetTriple());
|
2016-11-23 04:03:35 +08:00
|
|
|
std::unique_ptr<TargetLibraryInfoImpl> TLII(
|
|
|
|
createTLII(TargetTriple, CodeGenOpts));
|
2015-12-08 03:21:34 +08:00
|
|
|
|
2017-04-25 03:34:12 +08:00
|
|
|
PassManagerBuilderWrapper PMBuilder(TargetTriple, CodeGenOpts, LangOpts);
|
|
|
|
|
Cleanup the handling of noinline function attributes, -fno-inline,
-fno-inline-functions, -O0, and optnone.
These were really, really tangled together:
- We used the noinline LLVM attribute for -fno-inline
- But not for -fno-inline-functions (breaking LTO)
- But we did use it for -finline-hint-functions (yay, LTO is happy!)
- But we didn't for -O0 (LTO is sad yet again...)
- We had weird structuring of CodeGenOpts with both an inlining
enumeration and a boolean. They interacted in weird ways and
needlessly.
- A *lot* of set smashing went on with setting these, and then got worse
when we considered optnone and other inlining-effecting attributes.
- A bunch of inline affecting attributes were managed in a completely
different place from -fno-inline.
- Even with -fno-inline we failed to put the LLVM noinline attribute
onto many generated function definitions because they didn't show up
as AST-level functions.
- If you passed -O0 but -finline-functions we would run the normal
inliner pass in LLVM despite it being in the O0 pipeline, which really
doesn't make much sense.
- Lastly, we used things like '-fno-inline' to manipulate the pass
pipeline which forced the pass pipeline to be much more
parameterizable than it really needs to be. Instead we can *just* use
the optimization level to select a pipeline and control the rest via
attributes.
Sadly, this causes a bunch of churn in tests because we don't run the
optimizer in the tests and check the contents of attribute sets. It
would be awesome if attribute sets were a bit more FileCheck friendly,
but oh well.
I think this is a significant improvement and should remove the semantic
need to change what inliner pass we run in order to comply with the
requested inlining semantics by relying completely on attributes. It
also cleans up tho optnone and related handling a bit.
One unfortunate aspect of this is that for generating alwaysinline
routines like those in OpenMP we end up removing noinline and then
adding alwaysinline. I tried a bunch of other approaches, but because we
recompute function attributes from scratch and don't have a declaration
here I couldn't find anything substantially cleaner than this.
Differential Revision: https://reviews.llvm.org/D28053
llvm-svn: 290398
2016-12-23 09:24:49 +08:00
|
|
|
// At O0 and O1 we only run the always inliner which is more efficient. At
|
|
|
|
// higher optimization levels we run the normal inliner.
|
|
|
|
if (CodeGenOpts.OptimizationLevel <= 1) {
|
2017-01-07 07:18:09 +08:00
|
|
|
bool InsertLifetimeIntrinsics = (CodeGenOpts.OptimizationLevel != 0 &&
|
|
|
|
!CodeGenOpts.DisableLifetimeMarkers);
|
Cleanup the handling of noinline function attributes, -fno-inline,
-fno-inline-functions, -O0, and optnone.
These were really, really tangled together:
- We used the noinline LLVM attribute for -fno-inline
- But not for -fno-inline-functions (breaking LTO)
- But we did use it for -finline-hint-functions (yay, LTO is happy!)
- But we didn't for -O0 (LTO is sad yet again...)
- We had weird structuring of CodeGenOpts with both an inlining
enumeration and a boolean. They interacted in weird ways and
needlessly.
- A *lot* of set smashing went on with setting these, and then got worse
when we considered optnone and other inlining-effecting attributes.
- A bunch of inline affecting attributes were managed in a completely
different place from -fno-inline.
- Even with -fno-inline we failed to put the LLVM noinline attribute
onto many generated function definitions because they didn't show up
as AST-level functions.
- If you passed -O0 but -finline-functions we would run the normal
inliner pass in LLVM despite it being in the O0 pipeline, which really
doesn't make much sense.
- Lastly, we used things like '-fno-inline' to manipulate the pass
pipeline which forced the pass pipeline to be much more
parameterizable than it really needs to be. Instead we can *just* use
the optimization level to select a pipeline and control the rest via
attributes.
Sadly, this causes a bunch of churn in tests because we don't run the
optimizer in the tests and check the contents of attribute sets. It
would be awesome if attribute sets were a bit more FileCheck friendly,
but oh well.
I think this is a significant improvement and should remove the semantic
need to change what inliner pass we run in order to comply with the
requested inlining semantics by relying completely on attributes. It
also cleans up tho optnone and related handling a bit.
One unfortunate aspect of this is that for generating alwaysinline
routines like those in OpenMP we end up removing noinline and then
adding alwaysinline. I tried a bunch of other approaches, but because we
recompute function attributes from scratch and don't have a declaration
here I couldn't find anything substantially cleaner than this.
Differential Revision: https://reviews.llvm.org/D28053
llvm-svn: 290398
2016-12-23 09:24:49 +08:00
|
|
|
PMBuilder.Inliner = createAlwaysInlinerLegacyPass(InsertLifetimeIntrinsics);
|
|
|
|
} else {
|
2017-03-22 03:55:46 +08:00
|
|
|
// We do not want to inline hot callsites for SamplePGO module-summary build
|
|
|
|
// because profile annotation will happen again in ThinLTO backend, and we
|
|
|
|
// want the IR of the hot path to match the profile.
|
Cleanup the handling of noinline function attributes, -fno-inline,
-fno-inline-functions, -O0, and optnone.
These were really, really tangled together:
- We used the noinline LLVM attribute for -fno-inline
- But not for -fno-inline-functions (breaking LTO)
- But we did use it for -finline-hint-functions (yay, LTO is happy!)
- But we didn't for -O0 (LTO is sad yet again...)
- We had weird structuring of CodeGenOpts with both an inlining
enumeration and a boolean. They interacted in weird ways and
needlessly.
- A *lot* of set smashing went on with setting these, and then got worse
when we considered optnone and other inlining-effecting attributes.
- A bunch of inline affecting attributes were managed in a completely
different place from -fno-inline.
- Even with -fno-inline we failed to put the LLVM noinline attribute
onto many generated function definitions because they didn't show up
as AST-level functions.
- If you passed -O0 but -finline-functions we would run the normal
inliner pass in LLVM despite it being in the O0 pipeline, which really
doesn't make much sense.
- Lastly, we used things like '-fno-inline' to manipulate the pass
pipeline which forced the pass pipeline to be much more
parameterizable than it really needs to be. Instead we can *just* use
the optimization level to select a pipeline and control the rest via
attributes.
Sadly, this causes a bunch of churn in tests because we don't run the
optimizer in the tests and check the contents of attribute sets. It
would be awesome if attribute sets were a bit more FileCheck friendly,
but oh well.
I think this is a significant improvement and should remove the semantic
need to change what inliner pass we run in order to comply with the
requested inlining semantics by relying completely on attributes. It
also cleans up tho optnone and related handling a bit.
One unfortunate aspect of this is that for generating alwaysinline
routines like those in OpenMP we end up removing noinline and then
adding alwaysinline. I tried a bunch of other approaches, but because we
recompute function attributes from scratch and don't have a declaration
here I couldn't find anything substantially cleaner than this.
Differential Revision: https://reviews.llvm.org/D28053
llvm-svn: 290398
2016-12-23 09:24:49 +08:00
|
|
|
PMBuilder.Inliner = createFunctionInliningPass(
|
2017-03-22 03:55:46 +08:00
|
|
|
CodeGenOpts.OptimizationLevel, CodeGenOpts.OptimizeSize,
|
|
|
|
(!CodeGenOpts.SampleProfileFile.empty() &&
|
2018-06-23 04:23:21 +08:00
|
|
|
CodeGenOpts.PrepareForThinLTO));
|
2015-12-08 03:21:34 +08:00
|
|
|
}
|
|
|
|
|
Cleanup the handling of noinline function attributes, -fno-inline,
-fno-inline-functions, -O0, and optnone.
These were really, really tangled together:
- We used the noinline LLVM attribute for -fno-inline
- But not for -fno-inline-functions (breaking LTO)
- But we did use it for -finline-hint-functions (yay, LTO is happy!)
- But we didn't for -O0 (LTO is sad yet again...)
- We had weird structuring of CodeGenOpts with both an inlining
enumeration and a boolean. They interacted in weird ways and
needlessly.
- A *lot* of set smashing went on with setting these, and then got worse
when we considered optnone and other inlining-effecting attributes.
- A bunch of inline affecting attributes were managed in a completely
different place from -fno-inline.
- Even with -fno-inline we failed to put the LLVM noinline attribute
onto many generated function definitions because they didn't show up
as AST-level functions.
- If you passed -O0 but -finline-functions we would run the normal
inliner pass in LLVM despite it being in the O0 pipeline, which really
doesn't make much sense.
- Lastly, we used things like '-fno-inline' to manipulate the pass
pipeline which forced the pass pipeline to be much more
parameterizable than it really needs to be. Instead we can *just* use
the optimization level to select a pipeline and control the rest via
attributes.
Sadly, this causes a bunch of churn in tests because we don't run the
optimizer in the tests and check the contents of attribute sets. It
would be awesome if attribute sets were a bit more FileCheck friendly,
but oh well.
I think this is a significant improvement and should remove the semantic
need to change what inliner pass we run in order to comply with the
requested inlining semantics by relying completely on attributes. It
also cleans up tho optnone and related handling a bit.
One unfortunate aspect of this is that for generating alwaysinline
routines like those in OpenMP we end up removing noinline and then
adding alwaysinline. I tried a bunch of other approaches, but because we
recompute function attributes from scratch and don't have a declaration
here I couldn't find anything substantially cleaner than this.
Differential Revision: https://reviews.llvm.org/D28053
llvm-svn: 290398
2016-12-23 09:24:49 +08:00
|
|
|
PMBuilder.OptLevel = CodeGenOpts.OptimizationLevel;
|
2011-05-22 07:50:44 +08:00
|
|
|
PMBuilder.SizeLevel = CodeGenOpts.OptimizeSize;
|
2013-06-25 09:49:44 +08:00
|
|
|
PMBuilder.SLPVectorize = CodeGenOpts.VectorizeSLP;
|
|
|
|
PMBuilder.LoopVectorize = CodeGenOpts.VectorizeLoop;
|
2011-05-22 04:40:11 +08:00
|
|
|
|
2011-05-22 07:50:44 +08:00
|
|
|
PMBuilder.DisableUnrollLoops = !CodeGenOpts.UnrollLoops;
|
2019-05-01 05:29:23 +08:00
|
|
|
// Loop interleaving in the loop vectorizer has historically been set to be
|
|
|
|
// enabled when loop unrolling is enabled.
|
|
|
|
PMBuilder.LoopsInterleaved = CodeGenOpts.UnrollLoops;
|
2014-10-24 08:49:29 +08:00
|
|
|
PMBuilder.MergeFunctions = CodeGenOpts.MergeFunctions;
|
2018-06-23 04:23:21 +08:00
|
|
|
PMBuilder.PrepareForThinLTO = CodeGenOpts.PrepareForThinLTO;
|
2015-07-07 00:23:00 +08:00
|
|
|
PMBuilder.PrepareForLTO = CodeGenOpts.PrepareForLTO;
|
2013-11-18 00:03:29 +08:00
|
|
|
PMBuilder.RerollLoops = CodeGenOpts.RerollLoops;
|
2011-07-06 06:02:36 +08:00
|
|
|
|
2016-11-23 04:03:35 +08:00
|
|
|
MPM.add(new TargetLibraryInfoWrapperPass(*TLII));
|
|
|
|
|
2016-04-28 03:12:56 +08:00
|
|
|
if (TM)
|
2017-01-27 00:49:21 +08:00
|
|
|
TM->adjustPassManager(PMBuilder);
|
2016-04-28 03:12:56 +08:00
|
|
|
|
2017-02-22 04:36:21 +08:00
|
|
|
if (CodeGenOpts.DebugInfoForProfiling ||
|
|
|
|
!CodeGenOpts.SampleProfileFile.empty())
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_EarlyAsPossible,
|
|
|
|
addAddDiscriminatorsPass);
|
2014-03-04 04:06:18 +08:00
|
|
|
|
2011-07-06 06:02:36 +08:00
|
|
|
// In ObjC ARC mode, add the main ARC optimization passes.
|
|
|
|
if (LangOpts.ObjCAutoRefCount) {
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_EarlyAsPossible,
|
|
|
|
addObjCARCExpandPass);
|
2012-01-18 04:54:51 +08:00
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_ModuleOptimizerEarly,
|
|
|
|
addObjCARCAPElimPass);
|
2011-07-06 06:02:36 +08:00
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_ScalarOptimizerLate,
|
|
|
|
addObjCARCOptPass);
|
|
|
|
}
|
2011-11-17 01:34:26 +08:00
|
|
|
|
2019-02-24 05:06:26 +08:00
|
|
|
if (LangOpts.Coroutines)
|
[Coroutines] Schedule coro-split before asan
Summary:
The docs for the LLVM coroutines intrinsic `@llvm.coro.id` state that
"The second argument, if not null, designates a particular alloca instruction
to be a coroutine promise."
However, if the address sanitizer pass is run before the `@llvm.coro.id`
intrinsic is lowered, the `alloca` instruction passed to the intrinsic as its
second argument is converted, as per the
https://github.com/google/sanitizers/wiki/AddressSanitizerAlgorithm docs, to
an `inttoptr` instruction that accesses the address of the promise.
On optimization levels `-O1` and above, the `-asan` pass is run after
`-coro-early`, `-coro-split`, and `-coro-elide`, and before
`-coro-cleanup`, and so there is no issue. At `-O0`, however, `-asan`
is run in between `-coro-early` and `-coro-split`, which causes an
assertion to be hit when the `inttoptr` instruction is forcibly cast to
an `alloca`.
Rearrange the passes such that the coroutine passes are registered
before the sanitizer passes.
Test Plan:
Compile a simple C++ program that uses coroutines in `-O0` with
`-fsanitize-address`, and confirm no assertion is hit:
`clang++ coro-example.cpp -fcoroutines-ts -g -fsanitize=address -fno-omit-frame-pointer`.
Reviewers: GorNishanov, lewissbaker, EricWF
Reviewed By: GorNishanov
Subscribers: cfe-commits
Differential Revision: https://reviews.llvm.org/D43927
llvm-svn: 328951
2018-04-02 07:55:21 +08:00
|
|
|
addCoroutinePassesToExtensionPoints(PMBuilder);
|
|
|
|
|
2014-11-08 06:29:38 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::LocalBounds)) {
|
2012-05-23 01:19:45 +08:00
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_ScalarOptimizerLate,
|
|
|
|
addBoundsCheckingPass);
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_EnabledOnOptLevel0,
|
|
|
|
addBoundsCheckingPass);
|
|
|
|
}
|
|
|
|
|
2015-05-08 06:34:06 +08:00
|
|
|
if (CodeGenOpts.SanitizeCoverageType ||
|
|
|
|
CodeGenOpts.SanitizeCoverageIndirectCalls ||
|
|
|
|
CodeGenOpts.SanitizeCoverageTraceCmp) {
|
2014-11-12 06:15:07 +08:00
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_OptimizerLast,
|
|
|
|
addSanitizerCoveragePass);
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_EnabledOnOptLevel0,
|
|
|
|
addSanitizerCoveragePass);
|
|
|
|
}
|
|
|
|
|
2014-11-08 06:29:38 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::Address)) {
|
2012-10-15 22:22:56 +08:00
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_OptimizerLast,
|
2012-11-30 06:36:21 +08:00
|
|
|
addAddressSanitizerPasses);
|
2011-12-01 06:20:21 +08:00
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_EnabledOnOptLevel0,
|
2012-11-30 06:36:21 +08:00
|
|
|
addAddressSanitizerPasses);
|
2011-11-17 01:34:26 +08:00
|
|
|
}
|
2012-03-02 06:27:08 +08:00
|
|
|
|
2015-06-19 20:19:07 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::KernelAddress)) {
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_OptimizerLast,
|
|
|
|
addKernelAddressSanitizerPasses);
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_EnabledOnOptLevel0,
|
|
|
|
addKernelAddressSanitizerPasses);
|
|
|
|
}
|
|
|
|
|
2017-12-09 09:32:07 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::HWAddress)) {
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_OptimizerLast,
|
|
|
|
addHWAddressSanitizerPasses);
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_EnabledOnOptLevel0,
|
|
|
|
addHWAddressSanitizerPasses);
|
|
|
|
}
|
|
|
|
|
2018-04-14 02:05:21 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::KernelHWAddress)) {
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_OptimizerLast,
|
|
|
|
addKernelHWAddressSanitizerPasses);
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_EnabledOnOptLevel0,
|
|
|
|
addKernelHWAddressSanitizerPasses);
|
|
|
|
}
|
|
|
|
|
2014-11-08 06:29:38 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::Memory)) {
|
2012-12-03 21:20:43 +08:00
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_OptimizerLast,
|
|
|
|
addMemorySanitizerPass);
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_EnabledOnOptLevel0,
|
|
|
|
addMemorySanitizerPass);
|
|
|
|
}
|
|
|
|
|
2018-09-07 17:21:09 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::KernelMemory)) {
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_OptimizerLast,
|
|
|
|
addKernelMemorySanitizerPass);
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_EnabledOnOptLevel0,
|
|
|
|
addKernelMemorySanitizerPass);
|
|
|
|
}
|
|
|
|
|
2014-11-08 06:29:38 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::Thread)) {
|
2012-03-24 07:25:23 +08:00
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_OptimizerLast,
|
2012-03-02 06:27:08 +08:00
|
|
|
addThreadSanitizerPass);
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_EnabledOnOptLevel0,
|
|
|
|
addThreadSanitizerPass);
|
|
|
|
}
|
|
|
|
|
2014-11-08 06:29:38 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::DataFlow)) {
|
2013-08-08 06:47:34 +08:00
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_OptimizerLast,
|
|
|
|
addDataFlowSanitizerPass);
|
|
|
|
PMBuilder.addExtension(PassManagerBuilder::EP_EnabledOnOptLevel0,
|
|
|
|
addDataFlowSanitizerPass);
|
|
|
|
}
|
|
|
|
|
2011-05-22 04:40:11 +08:00
|
|
|
// Set up the per-function pass manager.
|
2016-11-23 04:03:35 +08:00
|
|
|
FPM.add(new TargetLibraryInfoWrapperPass(*TLII));
|
2011-05-22 04:40:11 +08:00
|
|
|
if (CodeGenOpts.VerifyModule)
|
2016-07-15 08:55:40 +08:00
|
|
|
FPM.add(createVerifierPass());
|
2011-04-06 02:49:32 +08:00
|
|
|
|
2011-05-22 04:40:11 +08:00
|
|
|
// Set up the per-module pass manager.
|
2015-01-09 13:10:20 +08:00
|
|
|
if (!CodeGenOpts.RewriteMapFiles.empty())
|
2016-07-15 08:55:40 +08:00
|
|
|
addSymbolRewriterPass(CodeGenOpts, &MPM);
|
2011-02-19 06:20:38 +08:00
|
|
|
|
2018-01-10 06:03:47 +08:00
|
|
|
if (Optional<GCOVOptions> Options = getGCOVOptions(CodeGenOpts)) {
|
|
|
|
MPM.add(createGCOVProfilerPass(*Options));
|
2016-02-02 19:06:51 +08:00
|
|
|
if (CodeGenOpts.getDebugInfo() == codegenoptions::NoDebugInfo)
|
2016-07-15 08:55:40 +08:00
|
|
|
MPM.add(createStripSymbolsPass(true));
|
2011-04-22 07:44:07 +08:00
|
|
|
}
|
2012-10-24 11:52:31 +08:00
|
|
|
|
2019-04-26 01:52:43 +08:00
|
|
|
if (Optional<InstrProfOptions> Options =
|
|
|
|
getInstrProfOptions(CodeGenOpts, LangOpts))
|
|
|
|
MPM.add(createInstrProfilingLegacyPass(*Options, false));
|
2018-08-17 06:24:47 +08:00
|
|
|
|
2019-03-05 04:21:31 +08:00
|
|
|
bool hasIRInstr = false;
|
2016-03-01 02:54:59 +08:00
|
|
|
if (CodeGenOpts.hasProfileIRInstr()) {
|
2016-07-23 12:28:59 +08:00
|
|
|
PMBuilder.EnablePGOInstrGen = true;
|
2019-03-05 04:21:31 +08:00
|
|
|
hasIRInstr = true;
|
|
|
|
}
|
|
|
|
if (CodeGenOpts.hasProfileCSIRInstr()) {
|
|
|
|
assert(!CodeGenOpts.hasProfileCSIRUse() &&
|
|
|
|
"Cannot have both CSProfileUse pass and CSProfileGen pass at the "
|
|
|
|
"same time");
|
|
|
|
assert(!hasIRInstr &&
|
|
|
|
"Cannot have both ProfileGen pass and CSProfileGen pass at the "
|
|
|
|
"same time");
|
|
|
|
PMBuilder.EnablePGOCSInstrGen = true;
|
|
|
|
hasIRInstr = true;
|
|
|
|
}
|
|
|
|
if (hasIRInstr) {
|
2016-03-01 02:54:59 +08:00
|
|
|
if (!CodeGenOpts.InstrProfileOutput.empty())
|
|
|
|
PMBuilder.PGOInstrGen = CodeGenOpts.InstrProfileOutput;
|
|
|
|
else
|
2017-02-14 00:07:05 +08:00
|
|
|
PMBuilder.PGOInstrGen = DefaultProfileGenName;
|
2016-03-01 02:54:59 +08:00
|
|
|
}
|
2019-03-05 04:21:31 +08:00
|
|
|
if (CodeGenOpts.hasProfileIRUse()) {
|
2016-03-03 04:59:36 +08:00
|
|
|
PMBuilder.PGOInstrUse = CodeGenOpts.ProfileInstrumentUsePath;
|
2019-03-05 04:21:31 +08:00
|
|
|
PMBuilder.EnablePGOCSInstrUse = CodeGenOpts.hasProfileCSIRUse();
|
|
|
|
}
|
2014-12-09 03:04:51 +08:00
|
|
|
|
2016-12-15 05:41:04 +08:00
|
|
|
if (!CodeGenOpts.SampleProfileFile.empty())
|
|
|
|
PMBuilder.PGOSampleUse = CodeGenOpts.SampleProfileFile;
|
2015-08-25 23:25:13 +08:00
|
|
|
|
2016-07-15 08:55:40 +08:00
|
|
|
PMBuilder.populateFunctionPassManager(FPM);
|
|
|
|
PMBuilder.populateModulePassManager(MPM);
|
2010-06-08 07:20:08 +08:00
|
|
|
}
|
|
|
|
|
2017-04-20 04:08:21 +08:00
|
|
|
static void setCommandLineOpts(const CodeGenOptions &CodeGenOpts) {
|
2016-04-13 04:22:32 +08:00
|
|
|
SmallVector<const char *, 16> BackendArgs;
|
|
|
|
BackendArgs.push_back("clang"); // Fake program name.
|
|
|
|
if (!CodeGenOpts.DebugPass.empty()) {
|
|
|
|
BackendArgs.push_back("-debug-pass");
|
|
|
|
BackendArgs.push_back(CodeGenOpts.DebugPass.c_str());
|
|
|
|
}
|
|
|
|
if (!CodeGenOpts.LimitFloatPrecision.empty()) {
|
|
|
|
BackendArgs.push_back("-limit-float-precision");
|
|
|
|
BackendArgs.push_back(CodeGenOpts.LimitFloatPrecision.c_str());
|
|
|
|
}
|
|
|
|
BackendArgs.push_back(nullptr);
|
|
|
|
llvm::cl::ParseCommandLineOptions(BackendArgs.size() - 1,
|
|
|
|
BackendArgs.data());
|
|
|
|
}
|
|
|
|
|
2016-07-15 08:55:40 +08:00
|
|
|
void EmitAssemblyHelper::CreateTargetMachine(bool MustCreateTM) {
|
2010-06-08 07:20:08 +08:00
|
|
|
// Create the TargetMachine for generating code.
|
|
|
|
std::string Error;
|
|
|
|
std::string Triple = TheModule->getTargetTriple();
|
|
|
|
const llvm::Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error);
|
|
|
|
if (!TheTarget) {
|
2012-10-24 11:52:31 +08:00
|
|
|
if (MustCreateTM)
|
2013-03-27 08:14:35 +08:00
|
|
|
Diags.Report(diag::err_fe_unable_to_create_target) << Error;
|
2016-07-15 08:55:40 +08:00
|
|
|
return;
|
2010-06-08 07:20:08 +08:00
|
|
|
}
|
|
|
|
|
2017-08-03 10:16:28 +08:00
|
|
|
Optional<llvm::CodeModel::Model> CM = getCodeModel(CodeGenOpts);
|
2015-09-26 09:25:08 +08:00
|
|
|
std::string FeaturesStr =
|
|
|
|
llvm::join(TargetOpts.Features.begin(), TargetOpts.Features.end(), ",");
|
2018-01-18 08:20:03 +08:00
|
|
|
llvm::Reloc::Model RM = CodeGenOpts.RelocationModel;
|
2017-03-31 10:05:15 +08:00
|
|
|
CodeGenOpt::Level OptLevel = getCGOptLevel(CodeGenOpts);
|
2011-11-16 16:38:55 +08:00
|
|
|
|
2011-12-03 06:17:00 +08:00
|
|
|
llvm::TargetOptions Options;
|
2017-03-31 10:05:15 +08:00
|
|
|
initTargetOptions(Options, CodeGenOpts, TargetOpts, LangOpts, HSOpts);
|
2016-07-15 08:55:40 +08:00
|
|
|
TM.reset(TheTarget->createTargetMachine(Triple, TargetOpts.CPU, FeaturesStr,
|
|
|
|
Options, RM, CM, OptLevel));
|
2012-10-24 08:53:38 +08:00
|
|
|
}
|
|
|
|
|
2016-07-15 08:55:40 +08:00
|
|
|
bool EmitAssemblyHelper::AddEmitPasses(legacy::PassManager &CodeGenPasses,
|
|
|
|
BackendAction Action,
|
2018-05-23 02:52:37 +08:00
|
|
|
raw_pwrite_stream &OS,
|
|
|
|
raw_pwrite_stream *DwoOS) {
|
2012-03-01 04:14:59 +08:00
|
|
|
// Add LibraryInfo.
|
2012-10-20 04:10:10 +08:00
|
|
|
llvm::Triple TargetTriple(TheModule->getTargetTriple());
|
2015-01-24 10:25:21 +08:00
|
|
|
std::unique_ptr<TargetLibraryInfoImpl> TLII(
|
|
|
|
createTLII(TargetTriple, CodeGenOpts));
|
2016-07-15 08:55:40 +08:00
|
|
|
CodeGenPasses.add(new TargetLibraryInfoWrapperPass(*TLII));
|
2012-03-01 04:14:59 +08:00
|
|
|
|
2010-06-08 07:20:08 +08:00
|
|
|
// Normal mode, emit a .s or .o file by running the code generator. Note,
|
|
|
|
// this also adds codegenerator level optimization passes.
|
2017-03-31 10:05:15 +08:00
|
|
|
TargetMachine::CodeGenFileType CGFT = getCodeGenFileType(Action);
|
2011-07-06 06:02:36 +08:00
|
|
|
|
|
|
|
// Add ObjC ARC final-cleanup optimizations. This is done as part of the
|
|
|
|
// "codegen" passes so that it isn't run multiple times when there is
|
|
|
|
// inlining happening.
|
2015-05-02 08:56:15 +08:00
|
|
|
if (CodeGenOpts.OptimizationLevel > 0)
|
2016-07-15 08:55:40 +08:00
|
|
|
CodeGenPasses.add(createObjCARCContractPass());
|
2011-07-06 06:02:36 +08:00
|
|
|
|
2018-05-23 02:52:37 +08:00
|
|
|
if (TM->addPassesToEmitFile(CodeGenPasses, OS, DwoOS, CGFT,
|
2010-06-08 07:20:08 +08:00
|
|
|
/*DisableVerify=*/!CodeGenOpts.VerifyModule)) {
|
|
|
|
Diags.Report(diag::err_fe_unable_to_interface_with_target);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-14 23:15:49 +08:00
|
|
|
void EmitAssemblyHelper::EmitAssembly(BackendAction Action,
|
2016-07-15 08:55:40 +08:00
|
|
|
std::unique_ptr<raw_pwrite_stream> OS) {
|
2018-04-23 17:22:30 +08:00
|
|
|
TimeRegion Region(FrontendTimesIsEnabled ? &CodeGenerationTime : nullptr);
|
2010-06-08 07:20:08 +08:00
|
|
|
|
2017-04-20 04:08:21 +08:00
|
|
|
setCommandLineOpts(CodeGenOpts);
|
2016-04-13 04:22:32 +08:00
|
|
|
|
2012-10-24 11:52:31 +08:00
|
|
|
bool UsesCodeGen = (Action != Backend_EmitNothing &&
|
|
|
|
Action != Backend_EmitBC &&
|
|
|
|
Action != Backend_EmitLL);
|
2016-07-15 08:55:40 +08:00
|
|
|
CreateTargetMachine(UsesCodeGen);
|
2013-12-21 04:26:53 +08:00
|
|
|
|
2015-06-23 21:59:36 +08:00
|
|
|
if (UsesCodeGen && !TM)
|
|
|
|
return;
|
|
|
|
if (TM)
|
2015-07-25 00:04:29 +08:00
|
|
|
TheModule->setDataLayout(TM->createDataLayout());
|
2016-01-09 01:04:29 +08:00
|
|
|
|
2016-07-15 08:55:40 +08:00
|
|
|
legacy::PassManager PerModulePasses;
|
|
|
|
PerModulePasses.add(
|
|
|
|
createTargetTransformInfoWrapperPass(getTargetIRAnalysis()));
|
|
|
|
|
|
|
|
legacy::FunctionPassManager PerFunctionPasses(TheModule);
|
|
|
|
PerFunctionPasses.add(
|
|
|
|
createTargetTransformInfoWrapperPass(getTargetIRAnalysis()));
|
|
|
|
|
2016-08-13 02:12:08 +08:00
|
|
|
CreatePasses(PerModulePasses, PerFunctionPasses);
|
2016-07-15 08:55:40 +08:00
|
|
|
|
|
|
|
legacy::PassManager CodeGenPasses;
|
|
|
|
CodeGenPasses.add(
|
|
|
|
createTargetTransformInfoWrapperPass(getTargetIRAnalysis()));
|
2012-10-24 08:53:38 +08:00
|
|
|
|
2018-05-23 02:52:37 +08:00
|
|
|
std::unique_ptr<llvm::ToolOutputFile> ThinLinkOS, DwoOS;
|
2017-03-24 03:47:49 +08:00
|
|
|
|
2010-06-08 07:20:08 +08:00
|
|
|
switch (Action) {
|
|
|
|
case Backend_EmitNothing:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Backend_EmitBC:
|
2018-08-25 03:31:52 +08:00
|
|
|
if (CodeGenOpts.PrepareForThinLTO && !CodeGenOpts.DisableLLVMPasses) {
|
2017-03-24 03:47:49 +08:00
|
|
|
if (!CodeGenOpts.ThinLinkBitcodeFile.empty()) {
|
2018-05-23 02:52:37 +08:00
|
|
|
ThinLinkOS = openOutputFile(CodeGenOpts.ThinLinkBitcodeFile);
|
|
|
|
if (!ThinLinkOS)
|
2017-03-24 03:47:49 +08:00
|
|
|
return;
|
|
|
|
}
|
2019-01-12 02:32:07 +08:00
|
|
|
TheModule->addModuleFlag(Module::Error, "EnableSplitLTOUnit",
|
|
|
|
CodeGenOpts.EnableSplitLTOUnit);
|
2018-05-23 02:52:37 +08:00
|
|
|
PerModulePasses.add(createWriteThinLTOBitcodePass(
|
|
|
|
*OS, ThinLinkOS ? &ThinLinkOS->os() : nullptr));
|
2018-06-23 04:23:21 +08:00
|
|
|
} else {
|
|
|
|
// Emit a module summary by default for Regular LTO except for ld64
|
|
|
|
// targets
|
|
|
|
bool EmitLTOSummary =
|
|
|
|
(CodeGenOpts.PrepareForLTO &&
|
2018-08-25 03:31:52 +08:00
|
|
|
!CodeGenOpts.DisableLLVMPasses &&
|
2018-06-23 04:23:21 +08:00
|
|
|
llvm::Triple(TheModule->getTargetTriple()).getVendor() !=
|
|
|
|
llvm::Triple::Apple);
|
2019-01-12 02:32:07 +08:00
|
|
|
if (EmitLTOSummary) {
|
|
|
|
if (!TheModule->getModuleFlag("ThinLTO"))
|
|
|
|
TheModule->addModuleFlag(Module::Error, "ThinLTO", uint32_t(0));
|
|
|
|
TheModule->addModuleFlag(Module::Error, "EnableSplitLTOUnit",
|
2019-07-20 07:02:58 +08:00
|
|
|
uint32_t(1));
|
2019-01-12 02:32:07 +08:00
|
|
|
}
|
2018-06-23 04:23:21 +08:00
|
|
|
|
2019-01-12 02:32:07 +08:00
|
|
|
PerModulePasses.add(createBitcodeWriterPass(
|
|
|
|
*OS, CodeGenOpts.EmitLLVMUseLists, EmitLTOSummary));
|
2018-06-23 04:23:21 +08:00
|
|
|
}
|
2010-06-08 07:20:08 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Backend_EmitLL:
|
2016-07-15 08:55:40 +08:00
|
|
|
PerModulePasses.add(
|
2015-04-15 10:45:28 +08:00
|
|
|
createPrintModulePass(*OS, "", CodeGenOpts.EmitLLVMUseLists));
|
2010-06-08 07:20:08 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2019-06-27 05:36:35 +08:00
|
|
|
if (!CodeGenOpts.SplitDwarfOutput.empty()) {
|
2019-06-15 22:07:43 +08:00
|
|
|
DwoOS = openOutputFile(CodeGenOpts.SplitDwarfOutput);
|
2018-05-23 02:52:37 +08:00
|
|
|
if (!DwoOS)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!AddEmitPasses(CodeGenPasses, Action, *OS,
|
|
|
|
DwoOS ? &DwoOS->os() : nullptr))
|
2010-06-08 07:20:08 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-04-06 02:56:55 +08:00
|
|
|
// Before executing passes, print the final values of the LLVM options.
|
|
|
|
cl::PrintOptionValues();
|
|
|
|
|
2010-06-08 07:20:08 +08:00
|
|
|
// Run passes. For now we do all passes at once, but eventually we
|
|
|
|
// would like to have the option of streaming code generation.
|
|
|
|
|
2016-07-15 08:55:40 +08:00
|
|
|
{
|
2010-06-08 07:20:08 +08:00
|
|
|
PrettyStackTraceString CrashInfo("Per-function optimization");
|
2019-09-28 15:14:12 +08:00
|
|
|
llvm::TimeTraceScope TimeScope("PerFunctionPasses", StringRef(""));
|
2010-06-08 07:20:08 +08:00
|
|
|
|
2016-07-15 08:55:40 +08:00
|
|
|
PerFunctionPasses.doInitialization();
|
2015-06-05 17:40:53 +08:00
|
|
|
for (Function &F : *TheModule)
|
|
|
|
if (!F.isDeclaration())
|
2016-07-15 08:55:40 +08:00
|
|
|
PerFunctionPasses.run(F);
|
|
|
|
PerFunctionPasses.doFinalization();
|
2010-06-08 07:20:08 +08:00
|
|
|
}
|
|
|
|
|
2016-07-15 08:55:40 +08:00
|
|
|
{
|
2010-06-08 07:20:08 +08:00
|
|
|
PrettyStackTraceString CrashInfo("Per-module optimization passes");
|
2019-09-28 15:14:12 +08:00
|
|
|
llvm::TimeTraceScope TimeScope("PerModulePasses", StringRef(""));
|
2016-07-15 08:55:40 +08:00
|
|
|
PerModulePasses.run(*TheModule);
|
2010-06-08 07:20:08 +08:00
|
|
|
}
|
|
|
|
|
2016-07-15 08:55:40 +08:00
|
|
|
{
|
2010-06-08 07:20:08 +08:00
|
|
|
PrettyStackTraceString CrashInfo("Code generation");
|
2019-09-28 15:14:12 +08:00
|
|
|
llvm::TimeTraceScope TimeScope("CodeGenPasses", StringRef(""));
|
2016-07-15 08:55:40 +08:00
|
|
|
CodeGenPasses.run(*TheModule);
|
2010-06-08 07:20:08 +08:00
|
|
|
}
|
2018-05-23 02:52:37 +08:00
|
|
|
|
|
|
|
if (ThinLinkOS)
|
|
|
|
ThinLinkOS->keep();
|
|
|
|
if (DwoOS)
|
|
|
|
DwoOS->keep();
|
2010-06-08 07:20:08 +08:00
|
|
|
}
|
|
|
|
|
2016-12-24 04:44:01 +08:00
|
|
|
static PassBuilder::OptimizationLevel mapToLevel(const CodeGenOptions &Opts) {
|
|
|
|
switch (Opts.OptimizationLevel) {
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Invalid optimization level!");
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
return PassBuilder::O1;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
switch (Opts.OptimizeSize) {
|
|
|
|
default:
|
2018-04-06 23:14:32 +08:00
|
|
|
llvm_unreachable("Invalid optimization level for size!");
|
2016-12-24 04:44:01 +08:00
|
|
|
|
|
|
|
case 0:
|
|
|
|
return PassBuilder::O2;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
return PassBuilder::Os;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
return PassBuilder::Oz;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
return PassBuilder::O3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-29 01:18:42 +08:00
|
|
|
static void addSanitizersAtO0(ModulePassManager &MPM,
|
|
|
|
const Triple &TargetTriple,
|
|
|
|
const LangOptions &LangOpts,
|
|
|
|
const CodeGenOptions &CodeGenOpts) {
|
2019-05-09 14:09:35 +08:00
|
|
|
auto ASanPass = [&](SanitizerMask Mask, bool CompileKernel) {
|
2019-02-14 06:22:48 +08:00
|
|
|
MPM.addPass(RequireAnalysisPass<ASanGlobalsMetadataAnalysis, Module>());
|
2019-05-09 14:09:35 +08:00
|
|
|
bool Recover = CodeGenOpts.SanitizeRecover.has(Mask);
|
|
|
|
MPM.addPass(createModuleToFunctionPassAdaptor(AddressSanitizerPass(
|
|
|
|
CompileKernel, Recover, CodeGenOpts.SanitizeAddressUseAfterScope)));
|
2019-02-14 06:22:48 +08:00
|
|
|
bool ModuleUseAfterScope = asanUseGlobalsGC(TargetTriple, CodeGenOpts);
|
2019-05-09 14:09:35 +08:00
|
|
|
MPM.addPass(
|
|
|
|
ModuleAddressSanitizerPass(CompileKernel, Recover, ModuleUseAfterScope,
|
|
|
|
CodeGenOpts.SanitizeAddressUseOdrIndicator));
|
|
|
|
};
|
|
|
|
|
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::Address)) {
|
|
|
|
ASanPass(SanitizerKind::Address, /*CompileKernel=*/false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::KernelAddress)) {
|
|
|
|
ASanPass(SanitizerKind::KernelAddress, /*CompileKernel=*/true);
|
2019-02-14 06:22:48 +08:00
|
|
|
}
|
2019-02-20 11:50:11 +08:00
|
|
|
|
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::Memory)) {
|
2019-10-11 16:47:03 +08:00
|
|
|
MPM.addPass(MemorySanitizerPass({}));
|
2019-02-20 11:50:11 +08:00
|
|
|
MPM.addPass(createModuleToFunctionPassAdaptor(MemorySanitizerPass({})));
|
|
|
|
}
|
|
|
|
|
2019-05-09 14:09:35 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::KernelMemory)) {
|
|
|
|
MPM.addPass(createModuleToFunctionPassAdaptor(
|
|
|
|
MemorySanitizerPass({0, false, /*Kernel=*/true})));
|
|
|
|
}
|
|
|
|
|
2019-02-20 11:50:11 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::Thread)) {
|
2019-10-11 16:47:03 +08:00
|
|
|
MPM.addPass(ThreadSanitizerPass());
|
2019-02-20 11:50:11 +08:00
|
|
|
MPM.addPass(createModuleToFunctionPassAdaptor(ThreadSanitizerPass()));
|
|
|
|
}
|
2019-02-14 06:22:48 +08:00
|
|
|
}
|
|
|
|
|
2016-12-24 04:44:01 +08:00
|
|
|
/// A clean version of `EmitAssembly` that uses the new pass manager.
|
|
|
|
///
|
|
|
|
/// Not all features are currently supported in this system, but where
|
|
|
|
/// necessary it falls back to the legacy pass manager to at least provide
|
|
|
|
/// basic functionality.
|
|
|
|
///
|
|
|
|
/// This API is planned to have its functionality finished and then to replace
|
|
|
|
/// `EmitAssembly` at some point in the future when the default switches.
|
|
|
|
void EmitAssemblyHelper::EmitAssemblyWithNewPassManager(
|
|
|
|
BackendAction Action, std::unique_ptr<raw_pwrite_stream> OS) {
|
2018-04-23 17:22:30 +08:00
|
|
|
TimeRegion Region(FrontendTimesIsEnabled ? &CodeGenerationTime : nullptr);
|
2017-04-20 04:08:21 +08:00
|
|
|
setCommandLineOpts(CodeGenOpts);
|
2016-12-24 04:44:01 +08:00
|
|
|
|
2019-05-07 07:24:17 +08:00
|
|
|
bool RequiresCodeGen = (Action != Backend_EmitNothing &&
|
|
|
|
Action != Backend_EmitBC &&
|
|
|
|
Action != Backend_EmitLL);
|
|
|
|
CreateTargetMachine(RequiresCodeGen);
|
|
|
|
|
|
|
|
if (RequiresCodeGen && !TM)
|
2016-12-24 04:44:01 +08:00
|
|
|
return;
|
2019-05-07 07:24:17 +08:00
|
|
|
if (TM)
|
|
|
|
TheModule->setDataLayout(TM->createDataLayout());
|
2016-12-24 04:44:01 +08:00
|
|
|
|
2017-07-27 23:29:53 +08:00
|
|
|
Optional<PGOOptions> PGOOpt;
|
|
|
|
|
|
|
|
if (CodeGenOpts.hasProfileIRInstr())
|
|
|
|
// -fprofile-generate.
|
|
|
|
PGOOpt = PGOOptions(CodeGenOpts.InstrProfileOutput.empty()
|
|
|
|
? DefaultProfileGenName
|
|
|
|
: CodeGenOpts.InstrProfileOutput,
|
2019-03-05 04:21:31 +08:00
|
|
|
"", "", PGOOptions::IRInstr, PGOOptions::NoCSAction,
|
2018-10-11 07:13:35 +08:00
|
|
|
CodeGenOpts.DebugInfoForProfiling);
|
2019-03-05 04:21:31 +08:00
|
|
|
else if (CodeGenOpts.hasProfileIRUse()) {
|
2017-07-27 23:29:53 +08:00
|
|
|
// -fprofile-use.
|
2019-03-05 04:21:31 +08:00
|
|
|
auto CSAction = CodeGenOpts.hasProfileCSIRUse() ? PGOOptions::CSIRUse
|
|
|
|
: PGOOptions::NoCSAction;
|
|
|
|
PGOOpt = PGOOptions(CodeGenOpts.ProfileInstrumentUsePath, "",
|
|
|
|
CodeGenOpts.ProfileRemappingFile, PGOOptions::IRUse,
|
|
|
|
CSAction, CodeGenOpts.DebugInfoForProfiling);
|
|
|
|
} else if (!CodeGenOpts.SampleProfileFile.empty())
|
2017-07-27 23:29:53 +08:00
|
|
|
// -fprofile-sample-use
|
2019-03-05 04:21:31 +08:00
|
|
|
PGOOpt =
|
|
|
|
PGOOptions(CodeGenOpts.SampleProfileFile, "",
|
|
|
|
CodeGenOpts.ProfileRemappingFile, PGOOptions::SampleUse,
|
|
|
|
PGOOptions::NoCSAction, CodeGenOpts.DebugInfoForProfiling);
|
2017-07-27 23:29:53 +08:00
|
|
|
else if (CodeGenOpts.DebugInfoForProfiling)
|
|
|
|
// -fdebug-info-for-profiling
|
2019-03-05 04:21:31 +08:00
|
|
|
PGOOpt = PGOOptions("", "", "", PGOOptions::NoAction,
|
|
|
|
PGOOptions::NoCSAction, true);
|
|
|
|
|
|
|
|
// Check to see if we want to generate a CS profile.
|
|
|
|
if (CodeGenOpts.hasProfileCSIRInstr()) {
|
|
|
|
assert(!CodeGenOpts.hasProfileCSIRUse() &&
|
|
|
|
"Cannot have both CSProfileUse pass and CSProfileGen pass at "
|
|
|
|
"the same time");
|
|
|
|
if (PGOOpt.hasValue()) {
|
|
|
|
assert(PGOOpt->Action != PGOOptions::IRInstr &&
|
|
|
|
PGOOpt->Action != PGOOptions::SampleUse &&
|
|
|
|
"Cannot run CSProfileGen pass with ProfileGen or SampleUse "
|
|
|
|
" pass");
|
|
|
|
PGOOpt->CSProfileGenFile = CodeGenOpts.InstrProfileOutput.empty()
|
|
|
|
? DefaultProfileGenName
|
|
|
|
: CodeGenOpts.InstrProfileOutput;
|
|
|
|
PGOOpt->CSAction = PGOOptions::CSIRInstr;
|
|
|
|
} else
|
|
|
|
PGOOpt = PGOOptions("",
|
|
|
|
CodeGenOpts.InstrProfileOutput.empty()
|
|
|
|
? DefaultProfileGenName
|
|
|
|
: CodeGenOpts.InstrProfileOutput,
|
|
|
|
"", PGOOptions::NoAction, PGOOptions::CSIRInstr,
|
|
|
|
CodeGenOpts.DebugInfoForProfiling);
|
|
|
|
}
|
2017-07-27 23:29:53 +08:00
|
|
|
|
2019-05-24 02:51:02 +08:00
|
|
|
PipelineTuningOptions PTO;
|
2019-05-25 01:40:52 +08:00
|
|
|
PTO.LoopUnrolling = CodeGenOpts.UnrollLoops;
|
2019-05-24 02:51:02 +08:00
|
|
|
// For historical reasons, loop interleaving is set to mirror setting for loop
|
|
|
|
// unrolling.
|
|
|
|
PTO.LoopInterleaving = CodeGenOpts.UnrollLoops;
|
|
|
|
PTO.LoopVectorization = CodeGenOpts.VectorizeLoop;
|
|
|
|
PTO.SLPVectorization = CodeGenOpts.VectorizeSLP;
|
|
|
|
|
2019-08-14 15:11:09 +08:00
|
|
|
PassInstrumentationCallbacks PIC;
|
|
|
|
StandardInstrumentations SI;
|
|
|
|
SI.registerCallbacks(PIC);
|
|
|
|
PassBuilder PB(TM.get(), PTO, PGOOpt, &PIC);
|
2016-12-24 04:44:01 +08:00
|
|
|
|
2019-02-03 07:19:32 +08:00
|
|
|
// Attempt to load pass plugins and register their callbacks with PB.
|
|
|
|
for (auto &PluginFN : CodeGenOpts.PassPlugins) {
|
|
|
|
auto PassPlugin = PassPlugin::Load(PluginFN);
|
|
|
|
if (PassPlugin) {
|
|
|
|
PassPlugin->registerPassBuilderCallbacks(PB);
|
|
|
|
} else {
|
|
|
|
Diags.Report(diag::err_fe_unable_to_load_plugin)
|
|
|
|
<< PluginFN << toString(PassPlugin.takeError());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-14 16:48:28 +08:00
|
|
|
LoopAnalysisManager LAM(CodeGenOpts.DebugPassManager);
|
|
|
|
FunctionAnalysisManager FAM(CodeGenOpts.DebugPassManager);
|
|
|
|
CGSCCAnalysisManager CGAM(CodeGenOpts.DebugPassManager);
|
|
|
|
ModuleAnalysisManager MAM(CodeGenOpts.DebugPassManager);
|
2016-12-24 04:44:01 +08:00
|
|
|
|
|
|
|
// Register the AA manager first so that our version is the one used.
|
|
|
|
FAM.registerPass([&] { return PB.buildDefaultAAPipeline(); });
|
|
|
|
|
2017-07-25 18:46:07 +08:00
|
|
|
// Register the target library analysis directly and give it a customized
|
|
|
|
// preset TLI.
|
|
|
|
Triple TargetTriple(TheModule->getTargetTriple());
|
|
|
|
std::unique_ptr<TargetLibraryInfoImpl> TLII(
|
|
|
|
createTLII(TargetTriple, CodeGenOpts));
|
|
|
|
FAM.registerPass([&] { return TargetLibraryAnalysis(*TLII); });
|
|
|
|
|
2016-12-24 04:44:01 +08:00
|
|
|
// Register all the basic analyses with the managers.
|
|
|
|
PB.registerModuleAnalyses(MAM);
|
|
|
|
PB.registerCGSCCAnalyses(CGAM);
|
|
|
|
PB.registerFunctionAnalyses(FAM);
|
|
|
|
PB.registerLoopAnalyses(LAM);
|
|
|
|
PB.crossRegisterProxies(LAM, FAM, CGAM, MAM);
|
|
|
|
|
2017-06-30 07:10:13 +08:00
|
|
|
ModulePassManager MPM(CodeGenOpts.DebugPassManager);
|
2016-12-24 04:44:01 +08:00
|
|
|
|
2016-12-27 08:13:09 +08:00
|
|
|
if (!CodeGenOpts.DisableLLVMPasses) {
|
2018-06-23 04:23:21 +08:00
|
|
|
bool IsThinLTO = CodeGenOpts.PrepareForThinLTO;
|
2017-06-30 07:08:38 +08:00
|
|
|
bool IsLTO = CodeGenOpts.PrepareForLTO;
|
|
|
|
|
2016-12-27 08:13:09 +08:00
|
|
|
if (CodeGenOpts.OptimizationLevel == 0) {
|
2018-01-23 09:25:24 +08:00
|
|
|
if (Optional<GCOVOptions> Options = getGCOVOptions(CodeGenOpts))
|
|
|
|
MPM.addPass(GCOVProfilerPass(*Options));
|
2019-04-26 01:52:43 +08:00
|
|
|
if (Optional<InstrProfOptions> Options =
|
|
|
|
getInstrProfOptions(CodeGenOpts, LangOpts))
|
|
|
|
MPM.addPass(InstrProfiling(*Options, false));
|
2018-01-23 09:25:24 +08:00
|
|
|
|
2016-12-27 08:13:09 +08:00
|
|
|
// Build a minimal pipeline based on the semantics required by Clang,
|
2019-06-14 00:45:29 +08:00
|
|
|
// which is just that always inlining occurs. Further, disable generating
|
|
|
|
// lifetime intrinsics to avoid enabling further optimizations during
|
|
|
|
// code generation.
|
|
|
|
MPM.addPass(AlwaysInlinerPass(/*InsertLifetimeIntrinsics=*/false));
|
2017-11-14 09:59:18 +08:00
|
|
|
|
2019-08-02 06:36:34 +08:00
|
|
|
// At -O0, we can still do PGO. Add all the requested passes for
|
|
|
|
// instrumentation PGO, if requested.
|
|
|
|
if (PGOOpt && (PGOOpt->Action == PGOOptions::IRInstr ||
|
|
|
|
PGOOpt->Action == PGOOptions::IRUse))
|
|
|
|
PB.addPGOInstrPassesForO0(
|
|
|
|
MPM, CodeGenOpts.DebugPassManager,
|
|
|
|
/* RunProfileGen */ (PGOOpt->Action == PGOOptions::IRInstr),
|
|
|
|
/* IsCS */ false, PGOOpt->ProfileFile,
|
|
|
|
PGOOpt->ProfileRemappingFile);
|
|
|
|
|
2017-11-14 09:59:18 +08:00
|
|
|
// At -O0 we directly run necessary sanitizer passes.
|
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::LocalBounds))
|
|
|
|
MPM.addPass(createModuleToFunctionPassAdaptor(BoundsCheckingPass()));
|
|
|
|
|
2019-01-05 03:05:01 +08:00
|
|
|
// Lastly, add semantically necessary passes for LTO.
|
|
|
|
if (IsLTO || IsThinLTO) {
|
|
|
|
MPM.addPass(CanonicalizeAliasesPass());
|
2017-06-30 07:08:38 +08:00
|
|
|
MPM.addPass(NameAnonGlobalPass());
|
2019-01-05 03:05:01 +08:00
|
|
|
}
|
2016-12-27 08:13:09 +08:00
|
|
|
} else {
|
2017-06-30 07:08:38 +08:00
|
|
|
// Map our optimization levels into one of the distinct levels used to
|
|
|
|
// configure the pipeline.
|
2016-12-27 08:13:09 +08:00
|
|
|
PassBuilder::OptimizationLevel Level = mapToLevel(CodeGenOpts);
|
|
|
|
|
2019-06-21 03:35:25 +08:00
|
|
|
PB.registerPipelineStartEPCallback([](ModulePassManager &MPM) {
|
|
|
|
MPM.addPass(createModuleToFunctionPassAdaptor(
|
|
|
|
EntryExitInstrumenterPass(/*PostInlining=*/false)));
|
|
|
|
});
|
|
|
|
|
2017-11-14 09:59:18 +08:00
|
|
|
// Register callbacks to schedule sanitizer passes at the appropriate part of
|
|
|
|
// the pipeline.
|
2019-01-17 18:10:47 +08:00
|
|
|
// FIXME: either handle asan/the remaining sanitizers or error out
|
2017-11-14 09:59:18 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::LocalBounds))
|
|
|
|
PB.registerScalarOptimizerLateEPCallback(
|
|
|
|
[](FunctionPassManager &FPM, PassBuilder::OptimizationLevel Level) {
|
|
|
|
FPM.addPass(BoundsCheckingPass());
|
|
|
|
});
|
2019-10-11 16:47:03 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::Memory)) {
|
|
|
|
PB.registerPipelineStartEPCallback([](ModulePassManager &MPM) {
|
|
|
|
MPM.addPass(MemorySanitizerPass({}));
|
|
|
|
});
|
2019-01-17 18:10:47 +08:00
|
|
|
PB.registerOptimizerLastEPCallback(
|
|
|
|
[](FunctionPassManager &FPM, PassBuilder::OptimizationLevel Level) {
|
2019-02-05 05:02:49 +08:00
|
|
|
FPM.addPass(MemorySanitizerPass({}));
|
2019-01-17 18:10:47 +08:00
|
|
|
});
|
2019-10-11 16:47:03 +08:00
|
|
|
}
|
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::Thread)) {
|
|
|
|
PB.registerPipelineStartEPCallback(
|
|
|
|
[](ModulePassManager &MPM) { MPM.addPass(ThreadSanitizerPass()); });
|
2019-01-17 18:10:47 +08:00
|
|
|
PB.registerOptimizerLastEPCallback(
|
|
|
|
[](FunctionPassManager &FPM, PassBuilder::OptimizationLevel Level) {
|
|
|
|
FPM.addPass(ThreadSanitizerPass());
|
|
|
|
});
|
2019-10-11 16:47:03 +08:00
|
|
|
}
|
2019-02-14 06:22:48 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::Address)) {
|
|
|
|
PB.registerPipelineStartEPCallback([&](ModulePassManager &MPM) {
|
|
|
|
MPM.addPass(
|
|
|
|
RequireAnalysisPass<ASanGlobalsMetadataAnalysis, Module>());
|
|
|
|
});
|
|
|
|
bool Recover = CodeGenOpts.SanitizeRecover.has(SanitizerKind::Address);
|
2019-02-14 09:07:47 +08:00
|
|
|
bool UseAfterScope = CodeGenOpts.SanitizeAddressUseAfterScope;
|
2019-02-14 06:22:48 +08:00
|
|
|
PB.registerOptimizerLastEPCallback(
|
2019-02-14 09:07:47 +08:00
|
|
|
[Recover, UseAfterScope](FunctionPassManager &FPM,
|
|
|
|
PassBuilder::OptimizationLevel Level) {
|
2019-02-14 06:22:48 +08:00
|
|
|
FPM.addPass(AddressSanitizerPass(
|
2019-02-14 09:07:47 +08:00
|
|
|
/*CompileKernel=*/false, Recover, UseAfterScope));
|
2019-02-14 06:22:48 +08:00
|
|
|
});
|
|
|
|
bool ModuleUseAfterScope = asanUseGlobalsGC(TargetTriple, CodeGenOpts);
|
2019-02-14 09:07:47 +08:00
|
|
|
bool UseOdrIndicator = CodeGenOpts.SanitizeAddressUseOdrIndicator;
|
|
|
|
PB.registerPipelineStartEPCallback(
|
|
|
|
[Recover, ModuleUseAfterScope,
|
|
|
|
UseOdrIndicator](ModulePassManager &MPM) {
|
|
|
|
MPM.addPass(ModuleAddressSanitizerPass(
|
|
|
|
/*CompileKernel=*/false, Recover, ModuleUseAfterScope,
|
|
|
|
UseOdrIndicator));
|
|
|
|
});
|
2019-02-14 06:22:48 +08:00
|
|
|
}
|
2018-01-23 09:25:24 +08:00
|
|
|
if (Optional<GCOVOptions> Options = getGCOVOptions(CodeGenOpts))
|
|
|
|
PB.registerPipelineStartEPCallback([Options](ModulePassManager &MPM) {
|
|
|
|
MPM.addPass(GCOVProfilerPass(*Options));
|
|
|
|
});
|
2019-04-26 01:52:43 +08:00
|
|
|
if (Optional<InstrProfOptions> Options =
|
|
|
|
getInstrProfOptions(CodeGenOpts, LangOpts))
|
|
|
|
PB.registerPipelineStartEPCallback([Options](ModulePassManager &MPM) {
|
|
|
|
MPM.addPass(InstrProfiling(*Options, false));
|
|
|
|
});
|
2017-11-14 09:59:18 +08:00
|
|
|
|
2017-06-30 07:08:38 +08:00
|
|
|
if (IsThinLTO) {
|
2017-06-30 07:10:13 +08:00
|
|
|
MPM = PB.buildThinLTOPreLinkDefaultPipeline(
|
|
|
|
Level, CodeGenOpts.DebugPassManager);
|
2019-01-05 03:05:01 +08:00
|
|
|
MPM.addPass(CanonicalizeAliasesPass());
|
2017-06-30 07:08:38 +08:00
|
|
|
MPM.addPass(NameAnonGlobalPass());
|
|
|
|
} else if (IsLTO) {
|
2017-06-30 07:10:13 +08:00
|
|
|
MPM = PB.buildLTOPreLinkDefaultPipeline(Level,
|
|
|
|
CodeGenOpts.DebugPassManager);
|
2019-01-05 03:05:01 +08:00
|
|
|
MPM.addPass(CanonicalizeAliasesPass());
|
2018-06-23 04:23:21 +08:00
|
|
|
MPM.addPass(NameAnonGlobalPass());
|
2017-06-30 07:08:38 +08:00
|
|
|
} else {
|
2017-06-30 07:10:13 +08:00
|
|
|
MPM = PB.buildPerModuleDefaultPipeline(Level,
|
|
|
|
CodeGenOpts.DebugPassManager);
|
2017-06-30 07:08:38 +08:00
|
|
|
}
|
2016-12-27 08:13:09 +08:00
|
|
|
}
|
2019-02-14 06:22:48 +08:00
|
|
|
|
2019-09-08 15:30:17 +08:00
|
|
|
if (CodeGenOpts.SanitizeCoverageType ||
|
|
|
|
CodeGenOpts.SanitizeCoverageIndirectCalls ||
|
|
|
|
CodeGenOpts.SanitizeCoverageTraceCmp) {
|
|
|
|
auto SancovOpts = getSancovOptsFromCGOpts(CodeGenOpts);
|
|
|
|
MPM.addPass(ModuleSanitizerCoveragePass(SancovOpts));
|
|
|
|
}
|
|
|
|
|
2019-07-18 05:45:19 +08:00
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::HWAddress)) {
|
|
|
|
bool Recover = CodeGenOpts.SanitizeRecover.has(SanitizerKind::HWAddress);
|
|
|
|
MPM.addPass(HWAddressSanitizerPass(
|
|
|
|
/*CompileKernel=*/false, Recover));
|
|
|
|
}
|
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::KernelHWAddress)) {
|
|
|
|
MPM.addPass(HWAddressSanitizerPass(
|
|
|
|
/*CompileKernel=*/true, /*Recover=*/true));
|
|
|
|
}
|
|
|
|
|
2019-07-26 04:53:15 +08:00
|
|
|
if (CodeGenOpts.OptimizationLevel == 0) {
|
2019-02-14 06:22:48 +08:00
|
|
|
addSanitizersAtO0(MPM, TargetTriple, LangOpts, CodeGenOpts);
|
2019-07-26 04:53:15 +08:00
|
|
|
}
|
2016-12-24 04:44:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: We still use the legacy pass manager to do code generation. We
|
|
|
|
// create that pass manager here and use it as needed below.
|
|
|
|
legacy::PassManager CodeGenPasses;
|
|
|
|
bool NeedCodeGen = false;
|
2018-05-23 02:52:37 +08:00
|
|
|
std::unique_ptr<llvm::ToolOutputFile> ThinLinkOS, DwoOS;
|
2016-12-24 04:44:01 +08:00
|
|
|
|
|
|
|
// Append any output we need to the pass manager.
|
|
|
|
switch (Action) {
|
|
|
|
case Backend_EmitNothing:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Backend_EmitBC:
|
2018-08-25 03:31:52 +08:00
|
|
|
if (CodeGenOpts.PrepareForThinLTO && !CodeGenOpts.DisableLLVMPasses) {
|
2017-06-02 07:27:51 +08:00
|
|
|
if (!CodeGenOpts.ThinLinkBitcodeFile.empty()) {
|
2018-05-23 02:52:37 +08:00
|
|
|
ThinLinkOS = openOutputFile(CodeGenOpts.ThinLinkBitcodeFile);
|
|
|
|
if (!ThinLinkOS)
|
2017-06-02 07:27:51 +08:00
|
|
|
return;
|
|
|
|
}
|
2019-01-12 02:32:07 +08:00
|
|
|
TheModule->addModuleFlag(Module::Error, "EnableSplitLTOUnit",
|
|
|
|
CodeGenOpts.EnableSplitLTOUnit);
|
2018-05-23 02:52:37 +08:00
|
|
|
MPM.addPass(ThinLTOBitcodeWriterPass(*OS, ThinLinkOS ? &ThinLinkOS->os()
|
|
|
|
: nullptr));
|
2017-06-02 07:27:51 +08:00
|
|
|
} else {
|
2018-06-23 04:23:21 +08:00
|
|
|
// Emit a module summary by default for Regular LTO except for ld64
|
|
|
|
// targets
|
|
|
|
bool EmitLTOSummary =
|
|
|
|
(CodeGenOpts.PrepareForLTO &&
|
2018-08-25 03:31:52 +08:00
|
|
|
!CodeGenOpts.DisableLLVMPasses &&
|
2018-06-23 04:23:21 +08:00
|
|
|
llvm::Triple(TheModule->getTargetTriple()).getVendor() !=
|
|
|
|
llvm::Triple::Apple);
|
2019-01-12 02:32:07 +08:00
|
|
|
if (EmitLTOSummary) {
|
|
|
|
if (!TheModule->getModuleFlag("ThinLTO"))
|
|
|
|
TheModule->addModuleFlag(Module::Error, "ThinLTO", uint32_t(0));
|
|
|
|
TheModule->addModuleFlag(Module::Error, "EnableSplitLTOUnit",
|
2019-08-22 01:24:14 +08:00
|
|
|
uint32_t(1));
|
2019-01-12 02:32:07 +08:00
|
|
|
}
|
|
|
|
MPM.addPass(
|
|
|
|
BitcodeWriterPass(*OS, CodeGenOpts.EmitLLVMUseLists, EmitLTOSummary));
|
2017-06-02 07:27:51 +08:00
|
|
|
}
|
2016-12-24 04:44:01 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Backend_EmitLL:
|
|
|
|
MPM.addPass(PrintModulePass(*OS, "", CodeGenOpts.EmitLLVMUseLists));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Backend_EmitAssembly:
|
|
|
|
case Backend_EmitMCNull:
|
|
|
|
case Backend_EmitObj:
|
|
|
|
NeedCodeGen = true;
|
|
|
|
CodeGenPasses.add(
|
|
|
|
createTargetTransformInfoWrapperPass(getTargetIRAnalysis()));
|
2019-06-27 05:36:35 +08:00
|
|
|
if (!CodeGenOpts.SplitDwarfOutput.empty()) {
|
2019-06-15 22:07:43 +08:00
|
|
|
DwoOS = openOutputFile(CodeGenOpts.SplitDwarfOutput);
|
2018-05-23 02:52:37 +08:00
|
|
|
if (!DwoOS)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!AddEmitPasses(CodeGenPasses, Action, *OS,
|
|
|
|
DwoOS ? &DwoOS->os() : nullptr))
|
2016-12-24 04:44:01 +08:00
|
|
|
// FIXME: Should we handle this error differently?
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Before executing passes, print the final values of the LLVM options.
|
|
|
|
cl::PrintOptionValues();
|
|
|
|
|
|
|
|
// Now that we have all of the passes ready, run them.
|
|
|
|
{
|
|
|
|
PrettyStackTraceString CrashInfo("Optimizer");
|
|
|
|
MPM.run(*TheModule, MAM);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now if needed, run the legacy PM for codegen.
|
|
|
|
if (NeedCodeGen) {
|
|
|
|
PrettyStackTraceString CrashInfo("Code generation");
|
|
|
|
CodeGenPasses.run(*TheModule);
|
|
|
|
}
|
2018-05-23 02:52:37 +08:00
|
|
|
|
|
|
|
if (ThinLinkOS)
|
|
|
|
ThinLinkOS->keep();
|
|
|
|
if (DwoOS)
|
|
|
|
DwoOS->keep();
|
2016-12-24 04:44:01 +08:00
|
|
|
}
|
|
|
|
|
2017-01-25 03:54:37 +08:00
|
|
|
Expected<BitcodeModule> clang::FindThinLTOModule(MemoryBufferRef MBRef) {
|
|
|
|
Expected<std::vector<BitcodeModule>> BMsOrErr = getBitcodeModuleList(MBRef);
|
|
|
|
if (!BMsOrErr)
|
|
|
|
return BMsOrErr.takeError();
|
|
|
|
|
2017-06-16 01:26:13 +08:00
|
|
|
// The bitcode file may contain multiple modules, we want the one that is
|
|
|
|
// marked as being the ThinLTO module.
|
2018-02-17 07:34:16 +08:00
|
|
|
if (const BitcodeModule *Bm = FindThinLTOModule(*BMsOrErr))
|
|
|
|
return *Bm;
|
2017-01-25 03:54:37 +08:00
|
|
|
|
|
|
|
return make_error<StringError>("Could not find module summary",
|
|
|
|
inconvertibleErrorCode());
|
|
|
|
}
|
|
|
|
|
2018-02-17 07:34:16 +08:00
|
|
|
BitcodeModule *clang::FindThinLTOModule(MutableArrayRef<BitcodeModule> BMs) {
|
|
|
|
for (BitcodeModule &BM : BMs) {
|
|
|
|
Expected<BitcodeLTOInfo> LTOInfo = BM.getLTOInfo();
|
|
|
|
if (LTOInfo && LTOInfo->IsThinLTO)
|
|
|
|
return &BM;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-01-07 07:37:33 +08:00
|
|
|
static void runThinLTOBackend(ModuleSummaryIndex *CombinedIndex, Module *M,
|
2017-03-31 10:05:15 +08:00
|
|
|
const HeaderSearchOptions &HeaderOpts,
|
|
|
|
const CodeGenOptions &CGOpts,
|
|
|
|
const clang::TargetOptions &TOpts,
|
|
|
|
const LangOptions &LOpts,
|
2017-01-13 08:51:55 +08:00
|
|
|
std::unique_ptr<raw_pwrite_stream> OS,
|
2017-03-31 10:05:15 +08:00
|
|
|
std::string SampleProfile,
|
2018-10-11 07:13:35 +08:00
|
|
|
std::string ProfileRemapping,
|
2017-03-31 10:05:15 +08:00
|
|
|
BackendAction Action) {
|
2017-07-11 04:31:37 +08:00
|
|
|
StringMap<DenseMap<GlobalValue::GUID, GlobalValueSummary *>>
|
2016-08-13 02:12:08 +08:00
|
|
|
ModuleToDefinedGVSummaries;
|
|
|
|
CombinedIndex->collectDefinedGVSummariesPerModule(ModuleToDefinedGVSummaries);
|
|
|
|
|
2017-04-20 04:08:21 +08:00
|
|
|
setCommandLineOpts(CGOpts);
|
|
|
|
|
2016-12-29 02:00:08 +08:00
|
|
|
// We can simply import the values mentioned in the combined index, since
|
|
|
|
// we should only invoke this using the individual indexes written out
|
|
|
|
// via a WriteIndexesThinBackend.
|
2016-08-13 02:12:08 +08:00
|
|
|
FunctionImporter::ImportMapTy ImportList;
|
2016-12-29 02:00:08 +08:00
|
|
|
for (auto &GlobalList : *CombinedIndex) {
|
2017-05-05 02:03:25 +08:00
|
|
|
// Ignore entries for undefined references.
|
|
|
|
if (GlobalList.second.SummaryList.empty())
|
|
|
|
continue;
|
|
|
|
|
2016-12-29 02:00:08 +08:00
|
|
|
auto GUID = GlobalList.first;
|
2018-11-30 01:02:59 +08:00
|
|
|
for (auto &Summary : GlobalList.second.SummaryList) {
|
|
|
|
// Skip the summaries for the importing module. These are included to
|
|
|
|
// e.g. record required linkage changes.
|
|
|
|
if (Summary->modulePath() == M->getModuleIdentifier())
|
|
|
|
continue;
|
|
|
|
// Add an entry to provoke importing by thinBackend.
|
|
|
|
ImportList[Summary->modulePath()].insert(GUID);
|
|
|
|
}
|
2016-12-29 02:00:08 +08:00
|
|
|
}
|
2016-08-13 02:12:08 +08:00
|
|
|
|
|
|
|
std::vector<std::unique_ptr<llvm::MemoryBuffer>> OwnedImports;
|
2016-12-14 09:17:59 +08:00
|
|
|
MapVector<llvm::StringRef, llvm::BitcodeModule> ModuleMap;
|
2016-08-13 02:12:08 +08:00
|
|
|
|
|
|
|
for (auto &I : ImportList) {
|
|
|
|
ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> MBOrErr =
|
|
|
|
llvm::MemoryBuffer::getFile(I.first());
|
|
|
|
if (!MBOrErr) {
|
|
|
|
errs() << "Error loading imported file '" << I.first()
|
|
|
|
<< "': " << MBOrErr.getError().message() << "\n";
|
|
|
|
return;
|
|
|
|
}
|
2016-12-14 09:17:59 +08:00
|
|
|
|
2017-01-25 03:54:37 +08:00
|
|
|
Expected<BitcodeModule> BMOrErr = FindThinLTOModule(**MBOrErr);
|
|
|
|
if (!BMOrErr) {
|
|
|
|
handleAllErrors(BMOrErr.takeError(), [&](ErrorInfoBase &EIB) {
|
2016-12-14 09:17:59 +08:00
|
|
|
errs() << "Error loading imported file '" << I.first()
|
|
|
|
<< "': " << EIB.message() << '\n';
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
2017-01-25 03:54:37 +08:00
|
|
|
ModuleMap.insert({I.first(), *BMOrErr});
|
2016-12-14 09:17:59 +08:00
|
|
|
|
2016-08-13 02:12:08 +08:00
|
|
|
OwnedImports.push_back(std::move(*MBOrErr));
|
|
|
|
}
|
2016-09-24 05:43:51 +08:00
|
|
|
auto AddStream = [&](size_t Task) {
|
2019-08-15 07:04:18 +08:00
|
|
|
return std::make_unique<lto::NativeObjectStream>(std::move(OS));
|
2016-08-17 14:23:08 +08:00
|
|
|
};
|
2016-08-13 02:12:08 +08:00
|
|
|
lto::Config Conf;
|
2018-04-18 00:39:25 +08:00
|
|
|
if (CGOpts.SaveTempsFilePrefix != "") {
|
|
|
|
if (Error E = Conf.addSaveTemps(CGOpts.SaveTempsFilePrefix + ".",
|
|
|
|
/* UseInputModulePath */ false)) {
|
|
|
|
handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) {
|
|
|
|
errs() << "Error setting up ThinLTO save-temps: " << EIB.message()
|
|
|
|
<< '\n';
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2017-03-31 10:05:15 +08:00
|
|
|
Conf.CPU = TOpts.CPU;
|
|
|
|
Conf.CodeModel = getCodeModel(CGOpts);
|
|
|
|
Conf.MAttrs = TOpts.Features;
|
2018-01-18 08:20:03 +08:00
|
|
|
Conf.RelocModel = CGOpts.RelocationModel;
|
2017-03-31 10:05:15 +08:00
|
|
|
Conf.CGOptLevel = getCGOptLevel(CGOpts);
|
[ThinLTO] Pass down opt level to LTO backend and handle -O0 LTO in new PM
Summary:
The opt level was not being passed down to the ThinLTO backend when
invoked via clang (for distributed ThinLTO).
This exposed an issue where the new PM was asserting if the Thin or
regular LTO backend pipelines were invoked with -O0 (not a new issue,
could be provoked by invoking in-process *LTO backends via linker using
new PM and -O0). Fix this similar to the old PM where -O0 only does the
necessary lowering of type metadata (WPD and LowerTypeTest passes) and
then quits, rather than asserting.
Reviewers: xur
Subscribers: mehdi_amini, inglorion, eraman, hiraditya, steven_wu, dexonsmith, cfe-commits, llvm-commits, pcc
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D61022
llvm-svn: 359025
2019-04-24 02:56:19 +08:00
|
|
|
Conf.OptLevel = CGOpts.OptimizationLevel;
|
2017-03-31 10:05:15 +08:00
|
|
|
initTargetOptions(Conf.Options, CGOpts, TOpts, LOpts, HeaderOpts);
|
2017-03-22 05:35:04 +08:00
|
|
|
Conf.SampleProfile = std::move(SampleProfile);
|
2019-03-05 04:21:31 +08:00
|
|
|
|
|
|
|
// Context sensitive profile.
|
|
|
|
if (CGOpts.hasProfileCSIRInstr()) {
|
|
|
|
Conf.RunCSIRInstr = true;
|
|
|
|
Conf.CSIRProfile = std::move(CGOpts.InstrProfileOutput);
|
|
|
|
} else if (CGOpts.hasProfileCSIRUse()) {
|
|
|
|
Conf.RunCSIRInstr = false;
|
|
|
|
Conf.CSIRProfile = std::move(CGOpts.ProfileInstrumentUsePath);
|
|
|
|
}
|
|
|
|
|
2018-10-11 07:13:35 +08:00
|
|
|
Conf.ProfileRemapping = std::move(ProfileRemapping);
|
2017-06-02 07:27:51 +08:00
|
|
|
Conf.UseNewPM = CGOpts.ExperimentalNewPassManager;
|
2017-11-13 23:38:33 +08:00
|
|
|
Conf.DebugPassManager = CGOpts.DebugPassManager;
|
2018-05-05 22:37:29 +08:00
|
|
|
Conf.RemarksWithHotness = CGOpts.DiagnosticsWithHotness;
|
|
|
|
Conf.RemarksFilename = CGOpts.OptRecordFile;
|
2019-03-13 05:22:27 +08:00
|
|
|
Conf.RemarksPasses = CGOpts.OptRecordPasses;
|
2019-06-18 00:06:00 +08:00
|
|
|
Conf.RemarksFormat = CGOpts.OptRecordFormat;
|
2019-06-15 23:38:51 +08:00
|
|
|
Conf.SplitDwarfFile = CGOpts.SplitDwarfFile;
|
|
|
|
Conf.SplitDwarfOutput = CGOpts.SplitDwarfOutput;
|
2017-04-01 06:35:47 +08:00
|
|
|
switch (Action) {
|
|
|
|
case Backend_EmitNothing:
|
|
|
|
Conf.PreCodeGenModuleHook = [](size_t Task, const Module &Mod) {
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
case Backend_EmitLL:
|
|
|
|
Conf.PreCodeGenModuleHook = [&](size_t Task, const Module &Mod) {
|
|
|
|
M->print(*OS, nullptr, CGOpts.EmitLLVMUseLists);
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
case Backend_EmitBC:
|
|
|
|
Conf.PreCodeGenModuleHook = [&](size_t Task, const Module &Mod) {
|
2018-02-15 03:11:37 +08:00
|
|
|
WriteBitcodeToFile(*M, *OS, CGOpts.EmitLLVMUseLists);
|
2017-04-01 06:35:47 +08:00
|
|
|
return false;
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Conf.CGFileType = getCodeGenFileType(Action);
|
|
|
|
break;
|
|
|
|
}
|
2016-08-13 02:12:08 +08:00
|
|
|
if (Error E = thinBackend(
|
2018-05-05 22:37:29 +08:00
|
|
|
Conf, -1, AddStream, *M, *CombinedIndex, ImportList,
|
2016-08-13 02:12:08 +08:00
|
|
|
ModuleToDefinedGVSummaries[M->getModuleIdentifier()], ModuleMap)) {
|
|
|
|
handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) {
|
|
|
|
errs() << "Error running ThinLTO backend: " << EIB.message() << '\n';
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-26 07:23:43 +08:00
|
|
|
void clang::EmitBackendOutput(DiagnosticsEngine &Diags,
|
2017-01-06 00:02:32 +08:00
|
|
|
const HeaderSearchOptions &HeaderOpts,
|
2011-09-26 07:23:43 +08:00
|
|
|
const CodeGenOptions &CGOpts,
|
2011-12-03 06:17:00 +08:00
|
|
|
const clang::TargetOptions &TOpts,
|
2017-01-06 00:02:32 +08:00
|
|
|
const LangOptions &LOpts,
|
|
|
|
const llvm::DataLayout &TDesc, Module *M,
|
|
|
|
BackendAction Action,
|
2016-07-15 08:55:40 +08:00
|
|
|
std::unique_ptr<raw_pwrite_stream> OS) {
|
2019-03-30 16:42:48 +08:00
|
|
|
|
|
|
|
llvm::TimeTraceScope TimeScope("Backend", StringRef(""));
|
|
|
|
|
2018-02-17 07:38:22 +08:00
|
|
|
std::unique_ptr<llvm::Module> EmptyModule;
|
2016-08-13 02:12:08 +08:00
|
|
|
if (!CGOpts.ThinLTOIndexFile.empty()) {
|
2017-01-07 07:37:33 +08:00
|
|
|
// If we are performing a ThinLTO importing compile, load the function index
|
|
|
|
// into memory and pass it into runThinLTOBackend, which will run the
|
|
|
|
// function importer and invoke LTO passes.
|
|
|
|
Expected<std::unique_ptr<ModuleSummaryIndex>> IndexOrErr =
|
2017-05-13 03:32:17 +08:00
|
|
|
llvm::getModuleSummaryIndexForFile(CGOpts.ThinLTOIndexFile,
|
|
|
|
/*IgnoreEmptyThinLTOIndexFile*/true);
|
2017-01-07 07:37:33 +08:00
|
|
|
if (!IndexOrErr) {
|
|
|
|
logAllUnhandledErrors(IndexOrErr.takeError(), errs(),
|
|
|
|
"Error loading index file '" +
|
|
|
|
CGOpts.ThinLTOIndexFile + "': ");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
std::unique_ptr<ModuleSummaryIndex> CombinedIndex = std::move(*IndexOrErr);
|
|
|
|
// A null CombinedIndex means we should skip ThinLTO compilation
|
|
|
|
// (LLVM will optionally ignore empty index files, returning null instead
|
|
|
|
// of an error).
|
2018-02-17 07:38:22 +08:00
|
|
|
if (CombinedIndex) {
|
|
|
|
if (!CombinedIndex->skipModuleByDistributedBackend()) {
|
|
|
|
runThinLTOBackend(CombinedIndex.get(), M, HeaderOpts, CGOpts, TOpts,
|
|
|
|
LOpts, std::move(OS), CGOpts.SampleProfileFile,
|
2018-10-11 07:13:35 +08:00
|
|
|
CGOpts.ProfileRemappingFile, Action);
|
2018-02-17 07:38:22 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Distributed indexing detected that nothing from the module is needed
|
|
|
|
// for the final linking. So we can skip the compilation. We sill need to
|
|
|
|
// output an empty object file to make sure that a linker does not fail
|
|
|
|
// trying to read it. Also for some features, like CFI, we must skip
|
|
|
|
// the compilation as CombinedIndex does not contain all required
|
|
|
|
// information.
|
2019-08-15 07:04:18 +08:00
|
|
|
EmptyModule = std::make_unique<llvm::Module>("empty", M->getContext());
|
2018-02-17 07:38:22 +08:00
|
|
|
EmptyModule->setTargetTriple(M->getTargetTriple());
|
|
|
|
M = EmptyModule.get();
|
2017-01-07 07:37:33 +08:00
|
|
|
}
|
2016-08-13 02:12:08 +08:00
|
|
|
}
|
|
|
|
|
2017-01-06 00:02:32 +08:00
|
|
|
EmitAssemblyHelper AsmHelper(Diags, HeaderOpts, CGOpts, TOpts, LOpts, M);
|
2010-06-08 07:20:08 +08:00
|
|
|
|
2016-12-24 04:44:01 +08:00
|
|
|
if (CGOpts.ExperimentalNewPassManager)
|
|
|
|
AsmHelper.EmitAssemblyWithNewPassManager(Action, std::move(OS));
|
|
|
|
else
|
|
|
|
AsmHelper.EmitAssembly(Action, std::move(OS));
|
2014-01-02 23:08:04 +08:00
|
|
|
|
2016-03-05 03:00:41 +08:00
|
|
|
// Verify clang's TargetInfo DataLayout against the LLVM TargetMachine's
|
|
|
|
// DataLayout.
|
|
|
|
if (AsmHelper.TM) {
|
2015-07-25 00:04:29 +08:00
|
|
|
std::string DLDesc = M->getDataLayout().getStringRepresentation();
|
2016-03-05 03:00:41 +08:00
|
|
|
if (DLDesc != TDesc.getStringRepresentation()) {
|
2014-01-02 23:08:04 +08:00
|
|
|
unsigned DiagID = Diags.getCustomDiagID(
|
|
|
|
DiagnosticsEngine::Error, "backend data layout '%0' does not match "
|
|
|
|
"expected target description '%1'");
|
2016-03-05 03:00:41 +08:00
|
|
|
Diags.Report(DiagID) << DLDesc << TDesc.getStringRepresentation();
|
2014-01-02 23:08:04 +08:00
|
|
|
}
|
|
|
|
}
|
2010-06-08 07:20:08 +08:00
|
|
|
}
|
2016-05-12 00:26:03 +08:00
|
|
|
|
|
|
|
static const char* getSectionNameForBitcode(const Triple &T) {
|
|
|
|
switch (T.getObjectFormat()) {
|
|
|
|
case Triple::MachO:
|
|
|
|
return "__LLVM,__bitcode";
|
|
|
|
case Triple::COFF:
|
|
|
|
case Triple::ELF:
|
2017-01-18 05:46:38 +08:00
|
|
|
case Triple::Wasm:
|
2016-05-12 00:26:03 +08:00
|
|
|
case Triple::UnknownObjectFormat:
|
|
|
|
return ".llvmbc";
|
2019-03-13 06:01:10 +08:00
|
|
|
case Triple::XCOFF:
|
|
|
|
llvm_unreachable("XCOFF is not yet implemented");
|
|
|
|
break;
|
2016-05-12 00:26:03 +08:00
|
|
|
}
|
2016-05-12 05:55:37 +08:00
|
|
|
llvm_unreachable("Unimplemented ObjectFormatType");
|
2016-05-12 00:26:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char* getSectionNameForCommandline(const Triple &T) {
|
|
|
|
switch (T.getObjectFormat()) {
|
|
|
|
case Triple::MachO:
|
|
|
|
return "__LLVM,__cmdline";
|
|
|
|
case Triple::COFF:
|
|
|
|
case Triple::ELF:
|
2017-01-18 05:46:38 +08:00
|
|
|
case Triple::Wasm:
|
2016-05-12 00:26:03 +08:00
|
|
|
case Triple::UnknownObjectFormat:
|
|
|
|
return ".llvmcmd";
|
2019-03-13 06:01:10 +08:00
|
|
|
case Triple::XCOFF:
|
|
|
|
llvm_unreachable("XCOFF is not yet implemented");
|
|
|
|
break;
|
2016-05-12 00:26:03 +08:00
|
|
|
}
|
2016-05-12 05:55:37 +08:00
|
|
|
llvm_unreachable("Unimplemented ObjectFormatType");
|
2016-05-12 00:26:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// With -fembed-bitcode, save a copy of the llvm IR as data in the
|
|
|
|
// __LLVM,__bitcode section.
|
|
|
|
void clang::EmbedBitcode(llvm::Module *M, const CodeGenOptions &CGOpts,
|
|
|
|
llvm::MemoryBufferRef Buf) {
|
|
|
|
if (CGOpts.getEmbedBitcode() == CodeGenOptions::Embed_Off)
|
|
|
|
return;
|
|
|
|
|
2016-05-17 02:54:58 +08:00
|
|
|
// Save llvm.compiler.used and remote it.
|
|
|
|
SmallVector<Constant*, 2> UsedArray;
|
2018-06-09 08:30:45 +08:00
|
|
|
SmallPtrSet<GlobalValue*, 4> UsedGlobals;
|
2016-05-17 02:54:58 +08:00
|
|
|
Type *UsedElementType = Type::getInt8Ty(M->getContext())->getPointerTo(0);
|
|
|
|
GlobalVariable *Used = collectUsedGlobalVariables(*M, UsedGlobals, true);
|
|
|
|
for (auto *GV : UsedGlobals) {
|
|
|
|
if (GV->getName() != "llvm.embedded.module" &&
|
|
|
|
GV->getName() != "llvm.cmdline")
|
|
|
|
UsedArray.push_back(
|
|
|
|
ConstantExpr::getPointerBitCastOrAddrSpaceCast(GV, UsedElementType));
|
|
|
|
}
|
|
|
|
if (Used)
|
|
|
|
Used->eraseFromParent();
|
|
|
|
|
2016-05-12 00:26:03 +08:00
|
|
|
// Embed the bitcode for the llvm module.
|
|
|
|
std::string Data;
|
|
|
|
ArrayRef<uint8_t> ModuleData;
|
|
|
|
Triple T(M->getTargetTriple());
|
|
|
|
// Create a constant that contains the bitcode.
|
|
|
|
// In case of embedding a marker, ignore the input Buf and use the empty
|
|
|
|
// ArrayRef. It is also legal to create a bitcode marker even Buf is empty.
|
|
|
|
if (CGOpts.getEmbedBitcode() != CodeGenOptions::Embed_Marker) {
|
|
|
|
if (!isBitcode((const unsigned char *)Buf.getBufferStart(),
|
|
|
|
(const unsigned char *)Buf.getBufferEnd())) {
|
|
|
|
// If the input is LLVM Assembly, bitcode is produced by serializing
|
|
|
|
// the module. Use-lists order need to be perserved in this case.
|
|
|
|
llvm::raw_string_ostream OS(Data);
|
2018-02-15 03:11:37 +08:00
|
|
|
llvm::WriteBitcodeToFile(*M, OS, /* ShouldPreserveUseListOrder */ true);
|
2016-05-12 00:26:03 +08:00
|
|
|
ModuleData =
|
|
|
|
ArrayRef<uint8_t>((const uint8_t *)OS.str().data(), OS.str().size());
|
|
|
|
} else
|
|
|
|
// If the input is LLVM bitcode, write the input byte stream directly.
|
|
|
|
ModuleData = ArrayRef<uint8_t>((const uint8_t *)Buf.getBufferStart(),
|
|
|
|
Buf.getBufferSize());
|
|
|
|
}
|
|
|
|
llvm::Constant *ModuleConstant =
|
|
|
|
llvm::ConstantDataArray::get(M->getContext(), ModuleData);
|
|
|
|
llvm::GlobalVariable *GV = new llvm::GlobalVariable(
|
2016-05-17 02:54:58 +08:00
|
|
|
*M, ModuleConstant->getType(), true, llvm::GlobalValue::PrivateLinkage,
|
2016-05-12 00:26:03 +08:00
|
|
|
ModuleConstant);
|
|
|
|
GV->setSection(getSectionNameForBitcode(T));
|
2016-05-17 02:54:58 +08:00
|
|
|
UsedArray.push_back(
|
|
|
|
ConstantExpr::getPointerBitCastOrAddrSpaceCast(GV, UsedElementType));
|
2016-05-12 00:26:03 +08:00
|
|
|
if (llvm::GlobalVariable *Old =
|
2016-05-17 02:54:58 +08:00
|
|
|
M->getGlobalVariable("llvm.embedded.module", true)) {
|
|
|
|
assert(Old->hasOneUse() &&
|
|
|
|
"llvm.embedded.module can only be used once in llvm.compiler.used");
|
2016-05-12 00:26:03 +08:00
|
|
|
GV->takeName(Old);
|
|
|
|
Old->eraseFromParent();
|
|
|
|
} else {
|
|
|
|
GV->setName("llvm.embedded.module");
|
|
|
|
}
|
|
|
|
|
2016-05-17 02:54:58 +08:00
|
|
|
// Skip if only bitcode needs to be embedded.
|
|
|
|
if (CGOpts.getEmbedBitcode() != CodeGenOptions::Embed_Bitcode) {
|
|
|
|
// Embed command-line options.
|
2016-05-20 11:58:12 +08:00
|
|
|
ArrayRef<uint8_t> CmdData(const_cast<uint8_t *>(CGOpts.CmdArgs.data()),
|
2016-05-17 02:54:58 +08:00
|
|
|
CGOpts.CmdArgs.size());
|
|
|
|
llvm::Constant *CmdConstant =
|
|
|
|
llvm::ConstantDataArray::get(M->getContext(), CmdData);
|
|
|
|
GV = new llvm::GlobalVariable(*M, CmdConstant->getType(), true,
|
|
|
|
llvm::GlobalValue::PrivateLinkage,
|
|
|
|
CmdConstant);
|
|
|
|
GV->setSection(getSectionNameForCommandline(T));
|
|
|
|
UsedArray.push_back(
|
|
|
|
ConstantExpr::getPointerBitCastOrAddrSpaceCast(GV, UsedElementType));
|
|
|
|
if (llvm::GlobalVariable *Old =
|
|
|
|
M->getGlobalVariable("llvm.cmdline", true)) {
|
|
|
|
assert(Old->hasOneUse() &&
|
|
|
|
"llvm.cmdline can only be used once in llvm.compiler.used");
|
|
|
|
GV->takeName(Old);
|
|
|
|
Old->eraseFromParent();
|
|
|
|
} else {
|
|
|
|
GV->setName("llvm.cmdline");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (UsedArray.empty())
|
2016-05-12 00:26:03 +08:00
|
|
|
return;
|
|
|
|
|
2016-05-17 02:54:58 +08:00
|
|
|
// Recreate llvm.compiler.used.
|
|
|
|
ArrayType *ATy = ArrayType::get(UsedElementType, UsedArray.size());
|
|
|
|
auto *NewUsed = new GlobalVariable(
|
|
|
|
*M, ATy, false, llvm::GlobalValue::AppendingLinkage,
|
|
|
|
llvm::ConstantArray::get(ATy, UsedArray), "llvm.compiler.used");
|
|
|
|
NewUsed->setSection("llvm.metadata");
|
2016-05-12 00:26:03 +08:00
|
|
|
}
|