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"
|
2020-12-09 20:06:50 +08:00
|
|
|
#include "llvm/Analysis/AliasAnalysis.h"
|
2020-02-28 07:43:53 +08:00
|
|
|
#include "llvm/Analysis/StackSafetyAnalysis.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"
|
2020-05-28 14:12:36 +08:00
|
|
|
#include "llvm/IR/PassManager.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"
|
2021-10-09 01:48:15 +08:00
|
|
|
#include "llvm/MC/TargetRegistry.h"
|
2022-03-25 23:03:02 +08:00
|
|
|
#include "llvm/Object/OffloadBinary.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"
|
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"
|
2020-05-09 22:10:51 +08:00
|
|
|
#include "llvm/Support/ToolOutputFile.h"
|
2010-06-08 07:20:08 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2019-12-26 21:00:00 +08:00
|
|
|
#include "llvm/Transforms/Coroutines/CoroCleanup.h"
|
|
|
|
#include "llvm/Transforms/Coroutines/CoroEarly.h"
|
|
|
|
#include "llvm/Transforms/Coroutines/CoroElide.h"
|
|
|
|
#include "llvm/Transforms/Coroutines/CoroSplit.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"
|
2020-01-25 04:24:18 +08:00
|
|
|
#include "llvm/Transforms/IPO/LowerTypeTests.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"
|
2021-06-12 01:13:10 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation/AddressSanitizerOptions.h"
|
2017-11-14 09:47:24 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation/BoundsChecking.h"
|
2020-11-13 05:19:04 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation/DataFlowSanitizer.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"
|
2020-09-15 00:12:13 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation/MemProfiler.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"
|
2021-02-10 19:38:19 +08:00
|
|
|
#include "llvm/Transforms/Scalar/EarlyCSE.h"
|
2016-03-11 17:02:43 +08:00
|
|
|
#include "llvm/Transforms/Scalar/GVN.h"
|
2020-07-21 23:33:24 +08:00
|
|
|
#include "llvm/Transforms/Scalar/LowerMatrixIntrinsics.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"
|
2021-03-11 22:55:13 +08:00
|
|
|
#include "llvm/Transforms/Utils/Debugify.h"
|
2019-06-21 03:35:25 +08:00
|
|
|
#include "llvm/Transforms/Utils/EntryExitInstrumenter.h"
|
2022-02-01 08:33:56 +08:00
|
|
|
#include "llvm/Transforms/Utils/ModuleUtils.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;
|
|
|
|
|
2019-06-08 23:37:47 +08:00
|
|
|
#define HANDLE_EXTENSION(Ext) \
|
|
|
|
llvm::PassPluginLibraryInfo get##Ext##PluginInfo();
|
|
|
|
#include "llvm/Support/Extension.def"
|
|
|
|
|
2021-12-17 06:19:03 +08:00
|
|
|
namespace llvm {
|
|
|
|
extern cl::opt<bool> DebugInfoCorrelate;
|
|
|
|
}
|
|
|
|
|
2010-06-08 07:20:08 +08:00
|
|
|
namespace {
|
|
|
|
|
2017-02-14 00:07:05 +08:00
|
|
|
// Default filename used for profile generation.
|
2021-12-17 06:19:03 +08:00
|
|
|
std::string getDefaultProfileGenName() {
|
2021-12-21 01:47:32 +08:00
|
|
|
return DebugInfoCorrelate ? "default_%p.proflite" : "default_%m.profraw";
|
2021-12-17 06:19:03 +08:00
|
|
|
}
|
2017-02-14 00:07:05 +08:00
|
|
|
|
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
|
|
|
|
2022-04-04 16:23:24 +08:00
|
|
|
Triple TargetTriple;
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2021-10-12 04:29:58 +08:00
|
|
|
void
|
|
|
|
RunOptimizationPipeline(BackendAction Action,
|
|
|
|
std::unique_ptr<raw_pwrite_stream> &OS,
|
|
|
|
std::unique_ptr<llvm::ToolOutputFile> &ThinLinkOS);
|
|
|
|
void RunCodegenPipeline(BackendAction Action,
|
|
|
|
std::unique_ptr<raw_pwrite_stream> &OS,
|
|
|
|
std::unique_ptr<llvm::ToolOutputFile> &DwoOS);
|
|
|
|
|
2022-04-07 23:43:10 +08:00
|
|
|
/// Check whether we should emit a module summary for regular LTO.
|
|
|
|
/// The module summary should be emitted by default for regular LTO
|
|
|
|
/// except for ld64 targets.
|
|
|
|
///
|
|
|
|
/// \return True if the module summary should be emitted.
|
|
|
|
bool shouldEmitRegularLTOSummary() const {
|
|
|
|
return CodeGenOpts.PrepareForLTO && !CodeGenOpts.DisableLLVMPasses &&
|
|
|
|
TargetTriple.getVendor() != llvm::Triple::Apple;
|
|
|
|
}
|
|
|
|
|
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),
|
2022-04-04 16:23:24 +08:00
|
|
|
CodeGenerationTime("codegen", "Code Generation Time"),
|
|
|
|
TargetTriple(TheModule->getTargetTriple()) {}
|
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
|
|
|
|
2022-04-11 18:52:31 +08:00
|
|
|
// Emit output using the new pass manager for the optimization pipeline.
|
2016-07-15 08:55:40 +08:00
|
|
|
void EmitAssembly(BackendAction Action,
|
|
|
|
std::unique_ptr<raw_pwrite_stream> OS);
|
2010-06-08 07:20:08 +08:00
|
|
|
};
|
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;
|
2020-04-09 17:33:36 +08:00
|
|
|
Opts.InlineBoolFlag = CGOpts.SanitizeCoverageInlineBoolFlag;
|
2017-07-28 08:10:10 +08:00
|
|
|
Opts.PCTable = CGOpts.SanitizeCoveragePCTable;
|
2017-08-19 02:43:30 +08:00
|
|
|
Opts.StackDepth = CGOpts.SanitizeCoverageStackDepth;
|
2021-11-09 09:52:36 +08:00
|
|
|
Opts.TraceLoads = CGOpts.SanitizeCoverageTraceLoads;
|
|
|
|
Opts.TraceStores = CGOpts.SanitizeCoverageTraceStores;
|
2019-07-26 04:53:15 +08:00
|
|
|
return Opts;
|
|
|
|
}
|
|
|
|
|
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:
|
2022-02-24 08:08:25 +08:00
|
|
|
return !CGOpts.DisableIntegratedAS;
|
2020-06-19 19:43:35 +08:00
|
|
|
case Triple::GOFF:
|
|
|
|
llvm::report_fatal_error("ASan not implemented for GOFF");
|
[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:
|
2022-03-30 03:46:24 +08:00
|
|
|
case Triple::DXContainer:
|
2022-04-20 08:28:54 +08:00
|
|
|
case Triple::SPIRV:
|
[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::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
|
|
|
}
|
|
|
|
|
2020-04-11 09:00:58 +08:00
|
|
|
static TargetLibraryInfoImpl *createTLII(llvm::Triple &TargetTriple,
|
|
|
|
const CodeGenOptions &CodeGenOpts) {
|
|
|
|
TargetLibraryInfoImpl *TLII = new TargetLibraryInfoImpl(TargetTriple);
|
|
|
|
|
|
|
|
switch (CodeGenOpts.getVecLib()) {
|
|
|
|
case CodeGenOptions::Accelerate:
|
|
|
|
TLII->addVectorizableFunctionsFromVecLib(TargetLibraryInfoImpl::Accelerate);
|
|
|
|
break;
|
2020-10-23 04:00:34 +08:00
|
|
|
case CodeGenOptions::LIBMVEC:
|
|
|
|
switch(TargetTriple.getArch()) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
case llvm::Triple::x86_64:
|
|
|
|
TLII->addVectorizableFunctionsFromVecLib
|
|
|
|
(TargetLibraryInfoImpl::LIBMVEC_X86);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2020-04-11 09:00:58 +08:00
|
|
|
case CodeGenOptions::MASSV:
|
|
|
|
TLII->addVectorizableFunctionsFromVecLib(TargetLibraryInfoImpl::MASSV);
|
|
|
|
break;
|
|
|
|
case CodeGenOptions::SVML:
|
|
|
|
TLII->addVectorizableFunctionsFromVecLib(TargetLibraryInfoImpl::SVML);
|
|
|
|
break;
|
2021-05-16 19:03:36 +08:00
|
|
|
case CodeGenOptions::Darwin_libsystem_m:
|
|
|
|
TLII->addVectorizableFunctionsFromVecLib(
|
|
|
|
TargetLibraryInfoImpl::DarwinLibSystemM);
|
|
|
|
break;
|
2020-04-11 09:00:58 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TLII;
|
2014-08-22 01:58:42 +08:00
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2019-11-14 07:17:46 +08:00
|
|
|
static CodeGenFileType getCodeGenFileType(BackendAction Action) {
|
2017-03-31 10:05:15 +08:00
|
|
|
if (Action == Backend_EmitObj)
|
2019-11-14 07:17:46 +08:00
|
|
|
return CGFT_ObjectFile;
|
2017-03-31 10:05:15 +08:00
|
|
|
else if (Action == Backend_EmitMCNull)
|
2019-11-14 07:17:46 +08:00
|
|
|
return CGFT_Null;
|
2017-03-31 10:05:15 +08:00
|
|
|
else {
|
|
|
|
assert(Action == Backend_EmitAssembly && "Invalid action!");
|
2019-11-14 07:17:46 +08:00
|
|
|
return CGFT_AssemblyFile;
|
2017-03-31 10:05:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-07 06:06:28 +08:00
|
|
|
static bool actionRequiresCodeGen(BackendAction Action) {
|
|
|
|
return Action != Backend_EmitNothing && Action != Backend_EmitBC &&
|
|
|
|
Action != Backend_EmitLL;
|
|
|
|
}
|
|
|
|
|
2020-11-10 01:26:37 +08:00
|
|
|
static bool initTargetOptions(DiagnosticsEngine &Diags,
|
2020-06-02 14:17:29 +08:00
|
|
|
llvm::TargetOptions &Options,
|
2017-03-31 10:05:15 +08:00
|
|
|
const CodeGenOptions &CodeGenOpts,
|
|
|
|
const clang::TargetOptions &TargetOpts,
|
|
|
|
const LangOptions &LangOpts,
|
|
|
|
const HeaderSearchOptions &HSOpts) {
|
2020-11-19 07:26:21 +08:00
|
|
|
switch (LangOpts.getThreadModel()) {
|
|
|
|
case LangOptions::ThreadModelKind::POSIX:
|
|
|
|
Options.ThreadModel = llvm::ThreadModel::POSIX;
|
|
|
|
break;
|
|
|
|
case LangOptions::ThreadModelKind::Single:
|
|
|
|
Options.ThreadModel = llvm::ThreadModel::Single;
|
|
|
|
break;
|
|
|
|
}
|
2017-03-31 10:05:15 +08:00
|
|
|
|
|
|
|
// 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()) {
|
2020-05-05 01:48:12 +08:00
|
|
|
case LangOptions::FPM_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;
|
2020-05-05 01:48:12 +08:00
|
|
|
case LangOptions::FPM_On:
|
[HIP] Fix regressions due to fp contract change
Recently HIP toolchain made a change to use clang instead of opt/llc to do compilation
(https://reviews.llvm.org/D81861). The intention is to make HIP toolchain canonical like
other toolchains.
However, this change introduced an unintentional change regarding backend fp fuse
option, which caused regressions in some HIP applications.
Basically before the change, HIP toolchain used clang to generate bitcode, then use
opt/llc to optimize bitcode and generate ISA. As such, the amdgpu backend takes
the default fp fuse mode which is 'Standard'. This mode respect contract flag of
fmul/fadd instructions and do not fuse fmul/fadd instructions without contract flag.
However, after the change, HIP toolchain now use clang to generate IR, do optimization,
and generate ISA as one process. Now amdgpu backend fp fuse option is determined
by -ffp-contract option, which is 'fast' by default. And this -ffp-contract=fast language option
is translated to 'Fast' fp fuse option in backend. Suddenly backend starts to fuse fmul/fadd
instructions without contract flag.
This causes wrong result for some device library functions, e.g. tan(-1e20), which should
return 0.8446, now returns -0.933. What is worse is that since backend with 'Fast' fp fuse
option does not respect contract flag, there is no way to use #pragma clang fp contract
directive to enforce fp contract requirements.
This patch fixes the regression by introducing a new value 'fast-honor-pragmas' for -ffp-contract
and use it for HIP by default. 'fast-honor-pragmas' is equivalent to 'fast' in frontend but
let the backend to use 'Standard' fp fuse option. 'fast-honor-pragmas' is useful since 'Fast'
fp fuse option in backend does not honor contract flag, it is of little use to HIP
applications since all code with #pragma STDC FP_CONTRACT or any IR from a
source compiled with -ffp-contract=on is broken.
Differential Revision: https://reviews.llvm.org/D90174
2020-10-24 04:24:48 +08:00
|
|
|
case LangOptions::FPM_FastHonorPragmas:
|
2017-03-31 10:05:15 +08:00
|
|
|
Options.AllowFPOpFusion = llvm::FPOpFusion::Standard;
|
|
|
|
break;
|
2020-05-05 01:48:12 +08:00
|
|
|
case LangOptions::FPM_Fast:
|
2017-03-31 10:05:15 +08:00
|
|
|
Options.AllowFPOpFusion = llvm::FPOpFusion::Fast;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
Add -fbinutils-version= to gate ELF features on the specified binutils version
There are two use cases.
Assembler
We have accrued some code gated on MCAsmInfo::useIntegratedAssembler(). Some
features are supported by latest GNU as, but we have to use
MCAsmInfo::useIntegratedAs() because the newer versions have not been widely
adopted (e.g. SHF_LINK_ORDER 'o' and 'unique' linkage in 2.35, --compress-debug-sections= in 2.26).
Linker
We want to use features supported only by LLD or very new GNU ld, or don't want
to work around older GNU ld. We currently can't represent that "we don't care
about old GNU ld". You can find such workarounds in a few other places, e.g.
Mips/MipsAsmprinter.cpp PowerPC/PPCTOCRegDeps.cpp X86/X86MCInstrLower.cpp
AArch64 TLS workaround for R_AARCH64_TLSLD_MOVW_DTPREL_* (PR ld/18276),
R_AARCH64_TLSLE_LDST8_TPREL_LO12 (https://bugs.llvm.org/show_bug.cgi?id=36727 https://sourceware.org/bugzilla/show_bug.cgi?id=22969)
Mixed SHF_LINK_ORDER and non-SHF_LINK_ORDER components (supported by LLD in D84001;
GNU ld feature request https://sourceware.org/bugzilla/show_bug.cgi?id=16833 may take a while before available).
This feature allows to garbage collect some unused sections (e.g. fragmented .gcc_except_table).
This patch adds `-fbinutils-version=` to clang and `-binutils-version` to llc.
It changes one codegen place in SHF_MERGE to demonstrate its usage.
`-fbinutils-version=2.35` means the produced object file does not care about GNU
ld<2.35 compatibility. When `-fno-integrated-as` is specified, the produced
assembly can be consumed by GNU as>=2.35, but older versions may not work.
`-fbinutils-version=none` means that we can use all ELF features, regardless of
GNU as/ld support.
Both clang and llc need `parseBinutilsVersion`. Such command line parsing is
usually implemented in `llvm/lib/CodeGen/CommandFlags.cpp` (LLVMCodeGen),
however, ClangCodeGen does not depend on LLVMCodeGen. So I add
`parseBinutilsVersion` to `llvm/lib/Target/TargetMachine.cpp` (LLVMTarget).
Differential Revision: https://reviews.llvm.org/D85474
2021-01-27 04:28:23 +08:00
|
|
|
Options.BinutilsVersion =
|
|
|
|
llvm::TargetMachine::parseBinutilsVersion(CodeGenOpts.BinutilsVersion);
|
2017-03-31 10:05:15 +08:00
|
|
|
Options.UseInitArray = CodeGenOpts.UseInitArray;
|
2022-03-24 08:37:07 +08:00
|
|
|
Options.LowerGlobalDtorsViaCxaAtExit =
|
|
|
|
CodeGenOpts.RegisterGlobalDtorsWithAtExit;
|
2017-03-31 10:05:15 +08:00
|
|
|
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
|
|
|
|
2020-12-14 20:08:48 +08:00
|
|
|
if (LangOpts.hasSjLjExceptions())
|
2017-03-31 10:05:15 +08:00
|
|
|
Options.ExceptionModel = llvm::ExceptionHandling::SjLj;
|
2020-12-14 20:08:48 +08:00
|
|
|
if (LangOpts.hasSEHExceptions())
|
2017-11-29 15:25:12 +08:00
|
|
|
Options.ExceptionModel = llvm::ExceptionHandling::WinEH;
|
2020-12-14 20:08:48 +08:00
|
|
|
if (LangOpts.hasDWARFExceptions())
|
2017-11-29 15:25:12 +08:00
|
|
|
Options.ExceptionModel = llvm::ExceptionHandling::DwarfCFI;
|
2020-12-14 20:08:48 +08:00
|
|
|
if (LangOpts.hasWasmExceptions())
|
2019-09-12 12:01:37 +08:00
|
|
|
Options.ExceptionModel = llvm::ExceptionHandling::Wasm;
|
2017-03-31 10:05:15 +08:00
|
|
|
|
2020-06-02 09:02:02 +08:00
|
|
|
Options.NoInfsFPMath = LangOpts.NoHonorInfs;
|
|
|
|
Options.NoNaNsFPMath = LangOpts.NoHonorNaNs;
|
2017-03-31 10:05:15 +08:00
|
|
|
Options.NoZerosInBSS = CodeGenOpts.NoZeroInitializedInBSS;
|
2020-06-02 09:02:02 +08:00
|
|
|
Options.UnsafeFPMath = LangOpts.UnsafeFPMath;
|
2021-10-09 02:26:14 +08:00
|
|
|
Options.ApproxFuncFPMath = LangOpts.ApproxFunc;
|
2020-06-02 14:17:29 +08:00
|
|
|
|
|
|
|
Options.BBSections =
|
|
|
|
llvm::StringSwitch<llvm::BasicBlockSection>(CodeGenOpts.BBSections)
|
|
|
|
.Case("all", llvm::BasicBlockSection::All)
|
|
|
|
.Case("labels", llvm::BasicBlockSection::Labels)
|
|
|
|
.StartsWith("list=", llvm::BasicBlockSection::List)
|
|
|
|
.Case("none", llvm::BasicBlockSection::None)
|
|
|
|
.Default(llvm::BasicBlockSection::None);
|
|
|
|
|
|
|
|
if (Options.BBSections == llvm::BasicBlockSection::List) {
|
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> MBOrErr =
|
|
|
|
MemoryBuffer::getFile(CodeGenOpts.BBSections.substr(5));
|
2020-11-10 01:26:37 +08:00
|
|
|
if (!MBOrErr) {
|
2020-06-02 14:17:29 +08:00
|
|
|
Diags.Report(diag::err_fe_unable_to_load_basic_block_sections_file)
|
|
|
|
<< MBOrErr.getError().message();
|
2020-11-10 01:26:37 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
Options.BBSectionsFuncListBuf = std::move(*MBOrErr);
|
2020-06-02 14:17:29 +08:00
|
|
|
}
|
|
|
|
|
2020-09-03 02:00:46 +08:00
|
|
|
Options.EnableMachineFunctionSplitter = CodeGenOpts.SplitMachineFunctions;
|
2017-03-31 10:05:15 +08:00
|
|
|
Options.FunctionSections = CodeGenOpts.FunctionSections;
|
|
|
|
Options.DataSections = CodeGenOpts.DataSections;
|
2021-03-09 23:38:00 +08:00
|
|
|
Options.IgnoreXCOFFVisibility = LangOpts.IgnoreXCOFFVisibility;
|
2017-03-31 10:05:15 +08:00
|
|
|
Options.UniqueSectionNames = CodeGenOpts.UniqueSectionNames;
|
2020-06-02 14:17:29 +08:00
|
|
|
Options.UniqueBasicBlockSectionNames =
|
|
|
|
CodeGenOpts.UniqueBasicBlockSectionNames;
|
2020-01-13 17:28:02 +08:00
|
|
|
Options.TLSSize = CodeGenOpts.TLSSize;
|
2017-03-31 10:05:15 +08:00
|
|
|
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;
|
2021-04-15 04:54:47 +08:00
|
|
|
Options.StackUsageOutput = CodeGenOpts.StackUsageOutput;
|
2018-07-18 08:27:07 +08:00
|
|
|
Options.EmitAddrsig = CodeGenOpts.Addrsig;
|
2019-10-31 16:55:57 +08:00
|
|
|
Options.ForceDwarfFrameSection = CodeGenOpts.ForceDwarfFrameSection;
|
2020-03-09 18:02:35 +08:00
|
|
|
Options.EmitCallSiteInfo = CodeGenOpts.EmitCallSiteInfo;
|
2020-11-25 07:11:46 +08:00
|
|
|
Options.EnableAIXExtendedAltivecABI = CodeGenOpts.EnableAIXExtendedAltivecABI;
|
2020-06-17 08:36:11 +08:00
|
|
|
Options.XRayOmitFunctionIndex = CodeGenOpts.XRayOmitFunctionIndex;
|
2021-08-06 03:17:50 +08:00
|
|
|
Options.LoopAlignment = CodeGenOpts.LoopAlignment;
|
2022-02-11 07:10:48 +08:00
|
|
|
Options.DebugStrictDwarf = CodeGenOpts.DebugStrictDwarf;
|
|
|
|
Options.ObjectFilenameForDebug = CodeGenOpts.ObjectFilenameForDebug;
|
|
|
|
Options.Hotpatch = CodeGenOpts.HotPatch;
|
|
|
|
Options.JMCInstrument = CodeGenOpts.JMCInstrument;
|
2017-03-31 10:05:15 +08:00
|
|
|
|
2021-09-08 22:26:08 +08:00
|
|
|
switch (CodeGenOpts.getSwiftAsyncFramePointer()) {
|
|
|
|
case CodeGenOptions::SwiftAsyncFramePointerKind::Auto:
|
|
|
|
Options.SwiftAsyncFramePointer =
|
|
|
|
SwiftAsyncFramePointerMode::DeploymentBased;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CodeGenOptions::SwiftAsyncFramePointerKind::Always:
|
|
|
|
Options.SwiftAsyncFramePointer = SwiftAsyncFramePointerMode::Always;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CodeGenOptions::SwiftAsyncFramePointerKind::Never:
|
|
|
|
Options.SwiftAsyncFramePointer = SwiftAsyncFramePointerMode::Never;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
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.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;
|
2021-01-09 04:58:03 +08:00
|
|
|
Options.MCOptions.Dwarf64 = CodeGenOpts.Dwarf64;
|
2017-03-31 10:05:15 +08:00
|
|
|
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);
|
2020-06-18 20:57:50 +08:00
|
|
|
Options.MCOptions.Argv0 = CodeGenOpts.Argv0;
|
|
|
|
Options.MCOptions.CommandLineArgs = CodeGenOpts.CommandLineArgs;
|
2022-04-02 06:03:48 +08:00
|
|
|
Options.MisExpect = CodeGenOpts.MisExpect;
|
2020-11-10 01:26:37 +08:00
|
|
|
|
|
|
|
return true;
|
2017-03-31 10:05:15 +08:00
|
|
|
}
|
2020-08-29 07:32:35 +08:00
|
|
|
|
|
|
|
static Optional<GCOVOptions> getGCOVOptions(const CodeGenOptions &CodeGenOpts,
|
|
|
|
const LangOptions &LangOpts) {
|
2018-01-10 06:03:47 +08:00
|
|
|
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.NoRedZone = CodeGenOpts.DisableRedZone;
|
2018-11-18 03:41:39 +08:00
|
|
|
Options.Filter = CodeGenOpts.ProfileFilterFiles;
|
|
|
|
Options.Exclude = CodeGenOpts.ProfileExcludeFiles;
|
2020-09-30 01:38:51 +08:00
|
|
|
Options.Atomic = CodeGenOpts.AtomicProfileUpdate;
|
2018-01-10 06:03:47 +08:00
|
|
|
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;
|
2020-09-30 01:38:51 +08:00
|
|
|
Options.Atomic = CodeGenOpts.AtomicProfileUpdate;
|
2019-04-26 01:52:43 +08:00
|
|
|
return Options;
|
|
|
|
}
|
|
|
|
|
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());
|
|
|
|
}
|
2021-04-02 00:41:44 +08:00
|
|
|
// Check for the default "clang" invocation that won't set any cl::opt values.
|
|
|
|
// Skip trying to parse the command line invocation to avoid the issues
|
|
|
|
// described below.
|
|
|
|
if (BackendArgs.size() == 1)
|
|
|
|
return;
|
2016-04-13 04:22:32 +08:00
|
|
|
BackendArgs.push_back(nullptr);
|
2021-04-02 00:41:44 +08:00
|
|
|
// FIXME: The command line parser below is not thread-safe and shares a global
|
|
|
|
// state, so this call might crash or overwrite the options of another Clang
|
|
|
|
// instance in the same process.
|
2016-04-13 04:22:32 +08:00
|
|
|
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;
|
2020-11-10 01:26:37 +08:00
|
|
|
if (!initTargetOptions(Diags, Options, CodeGenOpts, TargetOpts, LangOpts,
|
|
|
|
HSOpts))
|
|
|
|
return;
|
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.
|
2020-04-11 09:00:58 +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.
|
2019-11-14 07:17:46 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-07-30 12:42:05 +08:00
|
|
|
static OptimizationLevel mapToLevel(const CodeGenOptions &Opts) {
|
2016-12-24 04:44:01 +08:00
|
|
|
switch (Opts.OptimizationLevel) {
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Invalid optimization level!");
|
|
|
|
|
2020-11-09 05:51:29 +08:00
|
|
|
case 0:
|
2021-07-30 12:42:05 +08:00
|
|
|
return OptimizationLevel::O0;
|
2020-11-09 05:51:29 +08:00
|
|
|
|
2016-12-24 04:44:01 +08:00
|
|
|
case 1:
|
2021-07-30 12:42:05 +08:00
|
|
|
return OptimizationLevel::O1;
|
2016-12-24 04:44:01 +08:00
|
|
|
|
|
|
|
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:
|
2021-07-30 12:42:05 +08:00
|
|
|
return OptimizationLevel::O2;
|
2016-12-24 04:44:01 +08:00
|
|
|
|
|
|
|
case 1:
|
2021-07-30 12:42:05 +08:00
|
|
|
return OptimizationLevel::Os;
|
2016-12-24 04:44:01 +08:00
|
|
|
|
|
|
|
case 2:
|
2021-07-30 12:42:05 +08:00
|
|
|
return OptimizationLevel::Oz;
|
2016-12-24 04:44:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
case 3:
|
2021-07-30 12:42:05 +08:00
|
|
|
return OptimizationLevel::O3;
|
2016-12-24 04:44:01 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-11 06:28:48 +08:00
|
|
|
static void addSanitizers(const Triple &TargetTriple,
|
|
|
|
const CodeGenOptions &CodeGenOpts,
|
|
|
|
const LangOptions &LangOpts, PassBuilder &PB) {
|
|
|
|
PB.registerOptimizerLastEPCallback([&](ModulePassManager &MPM,
|
2021-07-30 12:42:05 +08:00
|
|
|
OptimizationLevel Level) {
|
2021-05-25 18:28:36 +08:00
|
|
|
if (CodeGenOpts.hasSanitizeCoverage()) {
|
2021-02-11 06:28:48 +08:00
|
|
|
auto SancovOpts = getSancovOptsFromCGOpts(CodeGenOpts);
|
|
|
|
MPM.addPass(ModuleSanitizerCoveragePass(
|
|
|
|
SancovOpts, CodeGenOpts.SanitizeCoverageAllowlistFiles,
|
2021-05-04 21:50:43 +08:00
|
|
|
CodeGenOpts.SanitizeCoverageIgnorelistFiles));
|
2021-02-11 06:28:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
auto MSanPass = [&](SanitizerMask Mask, bool CompileKernel) {
|
|
|
|
if (LangOpts.Sanitize.has(Mask)) {
|
|
|
|
int TrackOrigins = CodeGenOpts.SanitizeMemoryTrackOrigins;
|
|
|
|
bool Recover = CodeGenOpts.SanitizeRecover.has(Mask);
|
|
|
|
|
2022-01-14 16:20:33 +08:00
|
|
|
MemorySanitizerOptions options(TrackOrigins, Recover, CompileKernel,
|
|
|
|
CodeGenOpts.SanitizeMemoryParamRetval);
|
|
|
|
MPM.addPass(ModuleMemorySanitizerPass(options));
|
2021-05-04 07:09:56 +08:00
|
|
|
FunctionPassManager FPM;
|
2022-01-14 16:20:33 +08:00
|
|
|
FPM.addPass(MemorySanitizerPass(options));
|
2021-07-30 12:42:05 +08:00
|
|
|
if (Level != OptimizationLevel::O0) {
|
2021-02-10 19:38:19 +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.
|
|
|
|
FPM.addPass(EarlyCSEPass());
|
|
|
|
// TODO: Consider add more passes like in
|
|
|
|
// addGeneralOptsForMemorySanitizer. EarlyCSEPass makes visible
|
|
|
|
// difference on size. It's not clear if the rest is still
|
|
|
|
// usefull. InstCombinePass breakes
|
|
|
|
// compiler-rt/test/msan/select_origin.cpp.
|
|
|
|
}
|
|
|
|
MPM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
|
2021-02-11 06:28:48 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
MSanPass(SanitizerKind::Memory, false);
|
|
|
|
MSanPass(SanitizerKind::KernelMemory, true);
|
|
|
|
|
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::Thread)) {
|
2021-09-16 04:26:22 +08:00
|
|
|
MPM.addPass(ModuleThreadSanitizerPass());
|
2021-02-11 06:28:48 +08:00
|
|
|
MPM.addPass(createModuleToFunctionPassAdaptor(ThreadSanitizerPass()));
|
|
|
|
}
|
|
|
|
|
|
|
|
auto ASanPass = [&](SanitizerMask Mask, bool CompileKernel) {
|
|
|
|
if (LangOpts.Sanitize.has(Mask)) {
|
2021-11-03 07:05:14 +08:00
|
|
|
bool UseGlobalGC = asanUseGlobalsGC(TargetTriple, CodeGenOpts);
|
2021-02-11 06:28:48 +08:00
|
|
|
bool UseOdrIndicator = CodeGenOpts.SanitizeAddressUseOdrIndicator;
|
2021-02-10 15:02:50 +08:00
|
|
|
llvm::AsanDtorKind DestructorKind =
|
2021-04-29 05:06:28 +08:00
|
|
|
CodeGenOpts.getSanitizeAddressDtor();
|
2021-11-03 08:06:28 +08:00
|
|
|
AddressSanitizerOptions Opts;
|
|
|
|
Opts.CompileKernel = CompileKernel;
|
|
|
|
Opts.Recover = CodeGenOpts.SanitizeRecover.has(Mask);
|
|
|
|
Opts.UseAfterScope = CodeGenOpts.SanitizeAddressUseAfterScope;
|
|
|
|
Opts.UseAfterReturn = CodeGenOpts.getSanitizeAddressUseAfterReturn();
|
2021-02-11 06:28:48 +08:00
|
|
|
MPM.addPass(RequireAnalysisPass<ASanGlobalsMetadataAnalysis, Module>());
|
2021-11-03 08:06:28 +08:00
|
|
|
MPM.addPass(ModuleAddressSanitizerPass(
|
|
|
|
Opts, UseGlobalGC, UseOdrIndicator, DestructorKind));
|
2021-02-11 06:28:48 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
ASanPass(SanitizerKind::Address, false);
|
|
|
|
ASanPass(SanitizerKind::KernelAddress, true);
|
|
|
|
|
|
|
|
auto HWASanPass = [&](SanitizerMask Mask, bool CompileKernel) {
|
|
|
|
if (LangOpts.Sanitize.has(Mask)) {
|
|
|
|
bool Recover = CodeGenOpts.SanitizeRecover.has(Mask);
|
2021-07-23 05:19:21 +08:00
|
|
|
MPM.addPass(HWAddressSanitizerPass(
|
2021-06-28 17:16:40 +08:00
|
|
|
{CompileKernel, Recover,
|
|
|
|
/*DisableOptimization=*/CodeGenOpts.OptimizationLevel == 0}));
|
2021-02-11 06:28:48 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
HWASanPass(SanitizerKind::HWAddress, false);
|
|
|
|
HWASanPass(SanitizerKind::KernelHWAddress, true);
|
|
|
|
|
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::DataFlow)) {
|
2021-02-23 03:47:29 +08:00
|
|
|
MPM.addPass(DataFlowSanitizerPass(LangOpts.NoSanitizeFiles));
|
2021-02-11 06:28:48 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-10-12 04:29:58 +08:00
|
|
|
void EmitAssemblyHelper::RunOptimizationPipeline(
|
|
|
|
BackendAction Action, std::unique_ptr<raw_pwrite_stream> &OS,
|
|
|
|
std::unique_ptr<llvm::ToolOutputFile> &ThinLinkOS) {
|
2017-07-27 23:29:53 +08:00
|
|
|
Optional<PGOOptions> PGOOpt;
|
|
|
|
|
|
|
|
if (CodeGenOpts.hasProfileIRInstr())
|
|
|
|
// -fprofile-generate.
|
|
|
|
PGOOpt = PGOOptions(CodeGenOpts.InstrProfileOutput.empty()
|
2021-12-17 06:19:03 +08:00
|
|
|
? getDefaultProfileGenName()
|
2017-07-27 23:29:53 +08:00
|
|
|
: 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
|
2020-08-19 07:28:47 +08:00
|
|
|
PGOOpt = PGOOptions(
|
|
|
|
CodeGenOpts.SampleProfileFile, "", CodeGenOpts.ProfileRemappingFile,
|
|
|
|
PGOOptions::SampleUse, PGOOptions::NoCSAction,
|
|
|
|
CodeGenOpts.DebugInfoForProfiling, CodeGenOpts.PseudoProbeForProfiling);
|
|
|
|
else if (CodeGenOpts.PseudoProbeForProfiling)
|
|
|
|
// -fpseudo-probe-for-profiling
|
2019-03-05 04:21:31 +08:00
|
|
|
PGOOpt =
|
2020-08-19 07:28:47 +08:00
|
|
|
PGOOptions("", "", "", PGOOptions::NoAction, PGOOptions::NoCSAction,
|
|
|
|
CodeGenOpts.DebugInfoForProfiling, true);
|
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()
|
2021-12-17 06:19:03 +08:00
|
|
|
? getDefaultProfileGenName()
|
2019-03-05 04:21:31 +08:00
|
|
|
: CodeGenOpts.InstrProfileOutput;
|
|
|
|
PGOOpt->CSAction = PGOOptions::CSIRInstr;
|
|
|
|
} else
|
|
|
|
PGOOpt = PGOOptions("",
|
|
|
|
CodeGenOpts.InstrProfileOutput.empty()
|
2021-12-17 06:19:03 +08:00
|
|
|
? getDefaultProfileGenName()
|
2019-03-05 04:21:31 +08:00
|
|
|
: CodeGenOpts.InstrProfileOutput,
|
|
|
|
"", PGOOptions::NoAction, PGOOptions::CSIRInstr,
|
|
|
|
CodeGenOpts.DebugInfoForProfiling);
|
|
|
|
}
|
2021-08-19 07:59:02 +08:00
|
|
|
if (TM)
|
|
|
|
TM->setPGOOption(PGOOpt);
|
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;
|
2020-12-10 14:41:47 +08:00
|
|
|
PTO.MergeFunctions = CodeGenOpts.MergeFunctions;
|
[LPM] Port CGProfilePass from NPM to LPM
Reviewers: hans, chandlerc!, asbirlea, nikic
Reviewed By: hans, nikic
Subscribers: steven_wu, dexonsmith, nikic, echristo, void, zhizhouy, cfe-commits, aeubanks, MaskRay, jvesely, nhaehnle, hiraditya, kerbowa, llvm-commits
Tags: #llvm, #clang
Differential Revision: https://reviews.llvm.org/D83013
2020-07-09 03:30:28 +08:00
|
|
|
// Only enable CGProfilePass when using integrated assembler, since
|
|
|
|
// non-integrated assemblers don't recognize .cgprofile section.
|
|
|
|
PTO.CallGraphProfile = !CodeGenOpts.DisableIntegratedAS;
|
2019-05-24 02:51:02 +08:00
|
|
|
|
2021-05-08 05:32:40 +08:00
|
|
|
LoopAnalysisManager LAM;
|
|
|
|
FunctionAnalysisManager FAM;
|
|
|
|
CGSCCAnalysisManager CGAM;
|
|
|
|
ModuleAnalysisManager MAM;
|
2021-04-06 12:55:18 +08:00
|
|
|
|
2021-05-08 05:32:20 +08:00
|
|
|
bool DebugPassStructure = CodeGenOpts.DebugPass == "Structure";
|
2019-08-14 15:11:09 +08:00
|
|
|
PassInstrumentationCallbacks PIC;
|
2021-05-08 05:32:20 +08:00
|
|
|
PrintPassOptions PrintPassOpts;
|
|
|
|
PrintPassOpts.Indent = DebugPassStructure;
|
|
|
|
PrintPassOpts.SkipAnalyses = DebugPassStructure;
|
|
|
|
StandardInstrumentations SI(CodeGenOpts.DebugPassManager ||
|
|
|
|
DebugPassStructure,
|
|
|
|
/*VerifyEach*/ false, PrintPassOpts);
|
2021-04-06 12:55:18 +08:00
|
|
|
SI.registerCallbacks(PIC, &FAM);
|
2021-05-04 07:09:56 +08:00
|
|
|
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());
|
|
|
|
}
|
|
|
|
}
|
2019-06-08 23:37:47 +08:00
|
|
|
#define HANDLE_EXTENSION(Ext) \
|
|
|
|
get##Ext##PluginInfo().RegisterPassBuilderCallbacks(PB);
|
|
|
|
#include "llvm/Support/Extension.def"
|
2019-02-03 07:19:32 +08:00
|
|
|
|
2017-07-25 18:46:07 +08:00
|
|
|
// Register the target library analysis directly and give it a customized
|
|
|
|
// preset TLI.
|
2020-04-11 09:00:58 +08:00
|
|
|
std::unique_ptr<TargetLibraryInfoImpl> TLII(
|
|
|
|
createTLII(TargetTriple, CodeGenOpts));
|
2017-07-25 18:46:07 +08:00
|
|
|
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);
|
|
|
|
|
2021-05-04 07:09:56 +08:00
|
|
|
ModulePassManager MPM;
|
2016-12-24 04:44:01 +08:00
|
|
|
|
2016-12-27 08:13:09 +08:00
|
|
|
if (!CodeGenOpts.DisableLLVMPasses) {
|
2020-11-09 05:51:29 +08:00
|
|
|
// Map our optimization levels into one of the distinct levels used to
|
|
|
|
// configure the pipeline.
|
2021-07-30 12:42:05 +08:00
|
|
|
OptimizationLevel Level = mapToLevel(CodeGenOpts);
|
2020-11-09 05:51:29 +08:00
|
|
|
|
2018-06-23 04:23:21 +08:00
|
|
|
bool IsThinLTO = CodeGenOpts.PrepareForThinLTO;
|
2017-06-30 07:08:38 +08:00
|
|
|
bool IsLTO = CodeGenOpts.PrepareForLTO;
|
|
|
|
|
2020-12-23 13:41:25 +08:00
|
|
|
if (LangOpts.ObjCAutoRefCount) {
|
|
|
|
PB.registerPipelineStartEPCallback(
|
2021-07-30 12:42:05 +08:00
|
|
|
[](ModulePassManager &MPM, OptimizationLevel Level) {
|
|
|
|
if (Level != OptimizationLevel::O0)
|
2020-12-23 13:41:25 +08:00
|
|
|
MPM.addPass(
|
|
|
|
createModuleToFunctionPassAdaptor(ObjCARCExpandPass()));
|
|
|
|
});
|
|
|
|
PB.registerPipelineEarlySimplificationEPCallback(
|
2021-07-30 12:42:05 +08:00
|
|
|
[](ModulePassManager &MPM, OptimizationLevel Level) {
|
|
|
|
if (Level != OptimizationLevel::O0)
|
2020-12-23 13:41:25 +08:00
|
|
|
MPM.addPass(ObjCARCAPElimPass());
|
|
|
|
});
|
|
|
|
PB.registerScalarOptimizerLateEPCallback(
|
2021-07-30 12:42:05 +08:00
|
|
|
[](FunctionPassManager &FPM, OptimizationLevel Level) {
|
|
|
|
if (Level != OptimizationLevel::O0)
|
2020-12-23 13:41:25 +08:00
|
|
|
FPM.addPass(ObjCARCOptPass());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-11-06 02:25:35 +08:00
|
|
|
// If we reached here with a non-empty index file name, then the index
|
|
|
|
// file was empty and we are not performing ThinLTO backend compilation
|
2021-02-10 17:44:05 +08:00
|
|
|
// (used in testing in a distributed build environment).
|
|
|
|
bool IsThinLTOPostLink = !CodeGenOpts.ThinLTOIndexFile.empty();
|
|
|
|
// If so drop any the type test assume sequences inserted for whole program
|
|
|
|
// vtables so that codegen doesn't complain.
|
|
|
|
if (IsThinLTOPostLink)
|
2020-11-06 02:25:35 +08:00
|
|
|
PB.registerPipelineStartEPCallback(
|
2021-07-30 12:42:05 +08:00
|
|
|
[](ModulePassManager &MPM, OptimizationLevel Level) {
|
2020-11-06 02:25:35 +08:00
|
|
|
MPM.addPass(LowerTypeTestsPass(/*ExportSummary=*/nullptr,
|
|
|
|
/*ImportSummary=*/nullptr,
|
|
|
|
/*DropTypeTests=*/true));
|
|
|
|
});
|
2020-01-25 04:24:18 +08:00
|
|
|
|
2021-02-27 12:06:49 +08:00
|
|
|
if (CodeGenOpts.InstrumentFunctions ||
|
|
|
|
CodeGenOpts.InstrumentFunctionEntryBare ||
|
|
|
|
CodeGenOpts.InstrumentFunctionsAfterInlining ||
|
|
|
|
CodeGenOpts.InstrumentForProfiling) {
|
2020-11-05 02:14:37 +08:00
|
|
|
PB.registerPipelineStartEPCallback(
|
2021-07-30 12:42:05 +08:00
|
|
|
[](ModulePassManager &MPM, OptimizationLevel Level) {
|
2020-11-05 02:14:37 +08:00
|
|
|
MPM.addPass(createModuleToFunctionPassAdaptor(
|
|
|
|
EntryExitInstrumenterPass(/*PostInlining=*/false)));
|
|
|
|
});
|
2021-02-27 12:06:49 +08:00
|
|
|
PB.registerOptimizerLastEPCallback(
|
2021-07-30 12:42:05 +08:00
|
|
|
[](ModulePassManager &MPM, OptimizationLevel Level) {
|
2021-02-27 12:06:49 +08:00
|
|
|
MPM.addPass(createModuleToFunctionPassAdaptor(
|
|
|
|
EntryExitInstrumenterPass(/*PostInlining=*/true)));
|
|
|
|
});
|
2020-11-06 02:25:35 +08:00
|
|
|
}
|
2019-06-21 03:35:25 +08:00
|
|
|
|
2020-11-06 02:25:35 +08:00
|
|
|
// Register callbacks to schedule sanitizer passes at the appropriate part
|
|
|
|
// of the pipeline.
|
|
|
|
if (LangOpts.Sanitize.has(SanitizerKind::LocalBounds))
|
|
|
|
PB.registerScalarOptimizerLateEPCallback(
|
2021-07-30 12:42:05 +08:00
|
|
|
[](FunctionPassManager &FPM, OptimizationLevel Level) {
|
2020-11-06 02:25:35 +08:00
|
|
|
FPM.addPass(BoundsCheckingPass());
|
|
|
|
});
|
2020-05-28 14:12:36 +08:00
|
|
|
|
2021-02-10 17:44:05 +08:00
|
|
|
// Don't add sanitizers if we are here from ThinLTO PostLink. That already
|
|
|
|
// done on PreLink stage.
|
|
|
|
if (!IsThinLTOPostLink)
|
|
|
|
addSanitizers(TargetTriple, CodeGenOpts, LangOpts, PB);
|
2020-11-13 05:19:04 +08:00
|
|
|
|
2020-11-06 02:25:35 +08:00
|
|
|
if (Optional<GCOVOptions> Options = getGCOVOptions(CodeGenOpts, LangOpts))
|
|
|
|
PB.registerPipelineStartEPCallback(
|
2021-07-30 12:42:05 +08:00
|
|
|
[Options](ModulePassManager &MPM, OptimizationLevel Level) {
|
2020-11-06 02:25:35 +08:00
|
|
|
MPM.addPass(GCOVProfilerPass(*Options));
|
|
|
|
});
|
|
|
|
if (Optional<InstrProfOptions> Options =
|
|
|
|
getInstrProfOptions(CodeGenOpts, LangOpts))
|
|
|
|
PB.registerPipelineStartEPCallback(
|
2021-07-30 12:42:05 +08:00
|
|
|
[Options](ModulePassManager &MPM, OptimizationLevel Level) {
|
2020-11-06 02:25:35 +08:00
|
|
|
MPM.addPass(InstrProfiling(*Options, false));
|
|
|
|
});
|
2019-02-14 06:22:48 +08:00
|
|
|
|
2020-11-06 02:25:35 +08:00
|
|
|
if (CodeGenOpts.OptimizationLevel == 0) {
|
2020-11-17 04:48:42 +08:00
|
|
|
MPM = PB.buildO0DefaultPipeline(Level, IsLTO || IsThinLTO);
|
2020-11-06 02:25:35 +08:00
|
|
|
} else if (IsThinLTO) {
|
|
|
|
MPM = PB.buildThinLTOPreLinkDefaultPipeline(Level);
|
|
|
|
} else if (IsLTO) {
|
|
|
|
MPM = PB.buildLTOPreLinkDefaultPipeline(Level);
|
|
|
|
} else {
|
|
|
|
MPM = PB.buildPerModuleDefaultPipeline(Level);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!CodeGenOpts.MemoryProfileOutput.empty()) {
|
|
|
|
MPM.addPass(createModuleToFunctionPassAdaptor(MemProfilerPass()));
|
|
|
|
MPM.addPass(ModuleMemProfilerPass());
|
2019-07-26 04:53:15 +08:00
|
|
|
}
|
2016-12-24 04:44:01 +08:00
|
|
|
}
|
2021-11-07 06:06:28 +08:00
|
|
|
|
|
|
|
// Add a verifier pass if requested. We don't have to do this if the action
|
|
|
|
// requires code generation because there will already be a verifier pass in
|
|
|
|
// the code-generation pipeline.
|
|
|
|
if (!actionRequiresCodeGen(Action) && CodeGenOpts.VerifyModule)
|
|
|
|
MPM.addPass(VerifierPass());
|
|
|
|
|
2016-12-24 04:44:01 +08:00
|
|
|
switch (Action) {
|
|
|
|
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;
|
|
|
|
}
|
2021-10-07 03:10:08 +08:00
|
|
|
if (!TheModule->getModuleFlag("EnableSplitLTOUnit"))
|
|
|
|
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
|
2022-04-07 23:43:10 +08:00
|
|
|
bool EmitLTOSummary = shouldEmitRegularLTOSummary();
|
2019-01-12 02:32:07 +08:00
|
|
|
if (EmitLTOSummary) {
|
|
|
|
if (!TheModule->getModuleFlag("ThinLTO"))
|
|
|
|
TheModule->addModuleFlag(Module::Error, "ThinLTO", uint32_t(0));
|
2021-10-07 03:10:08 +08:00
|
|
|
if (!TheModule->getModuleFlag("EnableSplitLTOUnit"))
|
|
|
|
TheModule->addModuleFlag(Module::Error, "EnableSplitLTOUnit",
|
|
|
|
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;
|
|
|
|
|
2021-10-12 04:29:58 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now that we have all of the passes ready, run them.
|
2022-01-19 06:08:48 +08:00
|
|
|
{
|
|
|
|
PrettyStackTraceString CrashInfo("Optimizer");
|
|
|
|
llvm::TimeTraceScope TimeScope("Optimizer");
|
|
|
|
MPM.run(*TheModule, MAM);
|
|
|
|
}
|
2021-10-12 04:29:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void EmitAssemblyHelper::RunCodegenPipeline(
|
|
|
|
BackendAction Action, std::unique_ptr<raw_pwrite_stream> &OS,
|
|
|
|
std::unique_ptr<llvm::ToolOutputFile> &DwoOS) {
|
|
|
|
// We still use the legacy PM to run the codegen pipeline since the new PM
|
|
|
|
// does not work with the codegen pipeline.
|
|
|
|
// FIXME: make the new PM work with the codegen pipeline.
|
|
|
|
legacy::PassManager CodeGenPasses;
|
|
|
|
|
|
|
|
// Append any output we need to the pass manager.
|
|
|
|
switch (Action) {
|
2016-12-24 04:44:01 +08:00
|
|
|
case Backend_EmitAssembly:
|
|
|
|
case Backend_EmitMCNull:
|
|
|
|
case Backend_EmitObj:
|
|
|
|
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;
|
2021-10-12 04:29:58 +08:00
|
|
|
default:
|
|
|
|
return;
|
2016-12-24 04:44:01 +08:00
|
|
|
}
|
|
|
|
|
2022-01-19 06:08:48 +08:00
|
|
|
{
|
|
|
|
PrettyStackTraceString CrashInfo("Code generation");
|
|
|
|
llvm::TimeTraceScope TimeScope("CodeGenPasses");
|
|
|
|
CodeGenPasses.run(*TheModule);
|
|
|
|
}
|
2021-10-12 04:29:58 +08:00
|
|
|
}
|
|
|
|
|
2021-10-13 05:18:31 +08:00
|
|
|
void EmitAssemblyHelper::EmitAssembly(BackendAction Action,
|
|
|
|
std::unique_ptr<raw_pwrite_stream> OS) {
|
2021-10-12 04:29:58 +08:00
|
|
|
TimeRegion Region(CodeGenOpts.TimePasses ? &CodeGenerationTime : nullptr);
|
|
|
|
setCommandLineOpts(CodeGenOpts);
|
|
|
|
|
2021-11-07 06:06:28 +08:00
|
|
|
bool RequiresCodeGen = actionRequiresCodeGen(Action);
|
2021-10-12 04:29:58 +08:00
|
|
|
CreateTargetMachine(RequiresCodeGen);
|
|
|
|
|
|
|
|
if (RequiresCodeGen && !TM)
|
|
|
|
return;
|
|
|
|
if (TM)
|
|
|
|
TheModule->setDataLayout(TM->createDataLayout());
|
|
|
|
|
2016-12-24 04:44:01 +08:00
|
|
|
// Before executing passes, print the final values of the LLVM options.
|
|
|
|
cl::PrintOptionValues();
|
|
|
|
|
2021-10-12 04:29:58 +08:00
|
|
|
std::unique_ptr<llvm::ToolOutputFile> ThinLinkOS, DwoOS;
|
|
|
|
RunOptimizationPipeline(Action, OS, ThinLinkOS);
|
|
|
|
RunCodegenPipeline(Action, OS, DwoOS);
|
2018-05-23 02:52:37 +08:00
|
|
|
|
|
|
|
if (ThinLinkOS)
|
|
|
|
ThinLinkOS->keep();
|
|
|
|
if (DwoOS)
|
|
|
|
DwoOS->keep();
|
2016-12-24 04:44:01 +08:00
|
|
|
}
|
|
|
|
|
2020-06-02 14:17:29 +08:00
|
|
|
static void runThinLTOBackend(
|
|
|
|
DiagnosticsEngine &Diags, ModuleSummaryIndex *CombinedIndex, Module *M,
|
|
|
|
const HeaderSearchOptions &HeaderOpts, const CodeGenOptions &CGOpts,
|
|
|
|
const clang::TargetOptions &TOpts, const LangOptions &LOpts,
|
|
|
|
std::unique_ptr<raw_pwrite_stream> OS, std::string SampleProfile,
|
|
|
|
std::string ProfileRemapping, 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;
|
2021-03-30 06:04:28 +08:00
|
|
|
if (!lto::initImportList(*M, *CombinedIndex, ImportList))
|
2020-09-17 03:08:15 +08:00
|
|
|
return;
|
2016-08-13 02:12:08 +08:00
|
|
|
|
2016-09-24 05:43:51 +08:00
|
|
|
auto AddStream = [&](size_t Task) {
|
2021-12-22 07:59:47 +08:00
|
|
|
return std::make_unique<CachedFileStream>(std::move(OS),
|
|
|
|
CGOpts.ObjectFilenameForDebug);
|
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;
|
2020-06-02 14:17:29 +08:00
|
|
|
initTargetOptions(Diags, Conf.Options, CGOpts, TOpts, LOpts, HeaderOpts);
|
2017-03-22 05:35:04 +08:00
|
|
|
Conf.SampleProfile = std::move(SampleProfile);
|
2020-01-10 12:58:31 +08:00
|
|
|
Conf.PTO.LoopUnrolling = CGOpts.UnrollLoops;
|
|
|
|
// For historical reasons, loop interleaving is set to mirror setting for loop
|
|
|
|
// unrolling.
|
|
|
|
Conf.PTO.LoopInterleaving = CGOpts.UnrollLoops;
|
|
|
|
Conf.PTO.LoopVectorization = CGOpts.VectorizeLoop;
|
|
|
|
Conf.PTO.SLPVectorization = CGOpts.VectorizeSLP;
|
[LPM] Port CGProfilePass from NPM to LPM
Reviewers: hans, chandlerc!, asbirlea, nikic
Reviewed By: hans, nikic
Subscribers: steven_wu, dexonsmith, nikic, echristo, void, zhizhouy, cfe-commits, aeubanks, MaskRay, jvesely, nhaehnle, hiraditya, kerbowa, llvm-commits
Tags: #llvm, #clang
Differential Revision: https://reviews.llvm.org/D83013
2020-07-09 03:30:28 +08:00
|
|
|
// Only enable CGProfilePass when using integrated assembler, since
|
|
|
|
// non-integrated assemblers don't recognize .cgprofile section.
|
|
|
|
Conf.PTO.CallGraphProfile = !CGOpts.DisableIntegratedAS;
|
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-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;
|
|
|
|
}
|
2020-09-15 01:45:00 +08:00
|
|
|
if (Error E =
|
|
|
|
thinBackend(Conf, -1, AddStream, *M, *CombinedIndex, ImportList,
|
|
|
|
ModuleToDefinedGVSummaries[M->getModuleIdentifier()],
|
2021-03-30 06:04:28 +08:00
|
|
|
/* ModuleMap */ nullptr, CGOpts.CmdArgs)) {
|
2016-08-13 02:12:08 +08:00
|
|
|
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,
|
2021-04-20 01:39:20 +08:00
|
|
|
StringRef TDesc, Module *M,
|
2017-01-06 00:02:32 +08:00
|
|
|
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
|
|
|
|
2019-12-11 19:49:42 +08:00
|
|
|
llvm::TimeTraceScope TimeScope("Backend");
|
2019-03-30 16:42:48 +08:00
|
|
|
|
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.
|
2021-10-22 06:57:15 +08:00
|
|
|
std::unique_ptr<ModuleSummaryIndex> CombinedIndex;
|
|
|
|
if (Error E = llvm::getModuleSummaryIndexForFile(
|
|
|
|
CGOpts.ThinLTOIndexFile,
|
|
|
|
/*IgnoreEmptyThinLTOIndexFile*/ true)
|
|
|
|
.moveInto(CombinedIndex)) {
|
|
|
|
logAllUnhandledErrors(std::move(E), errs(),
|
2017-01-07 07:37:33 +08:00
|
|
|
"Error loading index file '" +
|
|
|
|
CGOpts.ThinLTOIndexFile + "': ");
|
|
|
|
return;
|
|
|
|
}
|
2021-10-22 06:57:15 +08:00
|
|
|
|
2017-01-07 07:37:33 +08:00
|
|
|
// 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()) {
|
2020-06-02 14:17:29 +08:00
|
|
|
runThinLTOBackend(Diags, 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);
|
2022-04-11 18:52:31 +08:00
|
|
|
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();
|
2021-04-20 01:39:20 +08:00
|
|
|
if (DLDesc != TDesc) {
|
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'");
|
2021-04-20 01:39:20 +08:00
|
|
|
Diags.Report(DiagID) << DLDesc << TDesc;
|
2014-01-02 23:08:04 +08:00
|
|
|
}
|
|
|
|
}
|
2010-06-08 07:20:08 +08:00
|
|
|
}
|
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;
|
2022-02-01 08:46:11 +08:00
|
|
|
llvm::embedBitcodeInModule(
|
[LTO] Support for embedding bitcode section during LTO
Summary:
This adds support for embedding bitcode in a binary during LTO. The libLTO gains supports the `-lto-embed-bitcode` flag. The option allows users of the LTO library to embed a bitcode section. For example, LLD can pass the option via `ld.lld -mllvm=-lto-embed-bitcode`.
This feature allows doing something comparable to `clang -c -fembed-bitcode`, but on the (LTO) linker level. Having bitcode alongside native code has many use-cases. To give an example, the MacOS linker can create a `-bitcode_bundle` section containing bitcode. Also, having this feature built into LLVM is an alternative to 3rd party tools such as [[ https://github.com/travitch/whole-program-llvm | wllvm ]] or [[ https://github.com/SRI-CSL/gllvm | gllvm ]]. As with these tools, this feature simplifies creating "whole-program" llvm bitcode files, but in contrast to wllvm/gllvm it does not rely on a specific llvm frontend/driver.
Patch by Josef Eisl <josef.eisl@oracle.com>
Reviewers: #llvm, #clang, rsmith, pcc, alexshap, tejohnson
Reviewed By: tejohnson
Subscribers: tejohnson, mehdi_amini, inglorion, hiraditya, aheejin, steven_wu, dexonsmith, dang, cfe-commits, llvm-commits, #llvm, #clang
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D68213
2019-12-13 03:59:36 +08:00
|
|
|
*M, Buf, CGOpts.getEmbedBitcode() != CodeGenOptions::Embed_Marker,
|
|
|
|
CGOpts.getEmbedBitcode() != CodeGenOptions::Embed_Bitcode,
|
2020-10-29 03:08:26 +08:00
|
|
|
CGOpts.CmdArgs);
|
2016-05-12 00:26:03 +08:00
|
|
|
}
|
2021-12-04 04:48:36 +08:00
|
|
|
|
|
|
|
void clang::EmbedObject(llvm::Module *M, const CodeGenOptions &CGOpts,
|
|
|
|
DiagnosticsEngine &Diags) {
|
|
|
|
if (CGOpts.OffloadObjects.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (StringRef OffloadObject : CGOpts.OffloadObjects) {
|
2022-03-25 23:03:02 +08:00
|
|
|
SmallVector<StringRef, 4> ObjectFields;
|
|
|
|
OffloadObject.split(ObjectFields, ',');
|
|
|
|
|
|
|
|
if (ObjectFields.size() != 4) {
|
|
|
|
auto DiagID = Diags.getCustomDiagID(
|
|
|
|
DiagnosticsEngine::Error, "Expected at least four arguments '%0'");
|
|
|
|
Diags.Report(DiagID) << OffloadObject;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-04 04:48:36 +08:00
|
|
|
llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> ObjectOrErr =
|
2022-03-25 23:03:02 +08:00
|
|
|
llvm::MemoryBuffer::getFileOrSTDIN(ObjectFields[0]);
|
2021-12-04 04:48:36 +08:00
|
|
|
if (std::error_code EC = ObjectOrErr.getError()) {
|
|
|
|
auto DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error,
|
|
|
|
"could not open '%0' for embedding");
|
2022-03-25 23:03:02 +08:00
|
|
|
Diags.Report(DiagID) << ObjectFields[0];
|
2021-12-04 04:48:36 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-25 23:03:02 +08:00
|
|
|
OffloadBinary::OffloadingImage Image{};
|
|
|
|
Image.TheImageKind = getImageKind(ObjectFields[0].rsplit(".").second);
|
|
|
|
Image.TheOffloadKind = getOffloadKind(ObjectFields[1]);
|
|
|
|
Image.StringData = {{"triple", ObjectFields[2]}, {"arch", ObjectFields[3]}};
|
|
|
|
Image.Image = **ObjectOrErr;
|
|
|
|
|
|
|
|
std::unique_ptr<MemoryBuffer> OffloadBuffer = OffloadBinary::write(Image);
|
|
|
|
llvm::embedBufferInModule(*M, *OffloadBuffer, ".llvm.offloading",
|
|
|
|
Align(OffloadBinary::getAlignment()));
|
2021-12-04 04:48:36 +08:00
|
|
|
}
|
|
|
|
}
|