mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
[NewPM] Support -disable-simplify-libcall/-disable-builtin in NPM opt
Reviewed By: asbirlea Differential Revision: https://reviews.llvm.org/D87932
This commit is contained in:
parent
842b9ba66b
commit
a6e667da4b
@ -1,6 +1,7 @@
|
||||
; Test that -disable-simplify-libcalls is wired up correctly.
|
||||
;
|
||||
; RUN: opt < %s -instcombine -disable-simplify-libcalls -S | FileCheck %s
|
||||
; RUN: opt < %s -passes=instcombine -disable-simplify-libcalls -S | FileCheck %s
|
||||
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
|
||||
|
||||
|
@ -18,6 +18,7 @@
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/Analysis/AliasAnalysis.h"
|
||||
#include "llvm/Analysis/CGSCCPassManager.h"
|
||||
#include "llvm/Analysis/TargetLibraryInfo.h"
|
||||
#include "llvm/Bitcode/BitcodeWriterPass.h"
|
||||
#include "llvm/Config/llvm-config.h"
|
||||
#include "llvm/IR/Dominators.h"
|
||||
@ -213,7 +214,8 @@ static void registerEPCallbacks(PassBuilder &PB, bool VerifyEachPass,
|
||||
#include "llvm/Support/Extension.def"
|
||||
|
||||
bool llvm::runPassPipeline(StringRef Arg0, Module &M, TargetMachine *TM,
|
||||
ToolOutputFile *Out, ToolOutputFile *ThinLTOLinkOut,
|
||||
TargetLibraryInfoImpl *TLII, ToolOutputFile *Out,
|
||||
ToolOutputFile *ThinLTOLinkOut,
|
||||
ToolOutputFile *OptRemarkFile,
|
||||
StringRef PassPipeline, ArrayRef<StringRef> Passes,
|
||||
OutputKind OK, VerifierKind VK,
|
||||
@ -363,6 +365,8 @@ bool llvm::runPassPipeline(StringRef Arg0, Module &M, TargetMachine *TM,
|
||||
|
||||
// Register the AA manager first so that our version is the one used.
|
||||
FAM.registerPass([&] { return std::move(AA); });
|
||||
// Register our TargetLibraryInfoImpl.
|
||||
FAM.registerPass([&] { return TargetLibraryAnalysis(*TLII); });
|
||||
|
||||
// Register all the basic analyses with the managers.
|
||||
PB.registerModuleAnalyses(MAM);
|
||||
|
@ -27,6 +27,7 @@ class StringRef;
|
||||
class Module;
|
||||
class TargetMachine;
|
||||
class ToolOutputFile;
|
||||
class TargetLibraryInfoImpl;
|
||||
|
||||
namespace opt_tool {
|
||||
enum OutputKind {
|
||||
@ -59,10 +60,10 @@ enum CSPGOKind { NoCSPGO, CSInstrGen, CSInstrUse };
|
||||
/// ThinLTOLinkOut is only used when OK is OK_OutputThinLTOBitcode, and can be
|
||||
/// nullptr.
|
||||
bool runPassPipeline(StringRef Arg0, Module &M, TargetMachine *TM,
|
||||
ToolOutputFile *Out, ToolOutputFile *ThinLinkOut,
|
||||
ToolOutputFile *OptRemarkFile, StringRef PassPipeline,
|
||||
ArrayRef<StringRef> PassInfos, opt_tool::OutputKind OK,
|
||||
opt_tool::VerifierKind VK,
|
||||
TargetLibraryInfoImpl *TLII, ToolOutputFile *Out,
|
||||
ToolOutputFile *ThinLinkOut, ToolOutputFile *OptRemarkFile,
|
||||
StringRef PassPipeline, ArrayRef<StringRef> PassInfos,
|
||||
opt_tool::OutputKind OK, opt_tool::VerifierKind VK,
|
||||
bool ShouldPreserveAssemblyUseListOrder,
|
||||
bool ShouldPreserveBitcodeUseListOrder,
|
||||
bool EmitSummaryIndex, bool EmitModuleHash,
|
||||
|
@ -727,6 +727,25 @@ int main(int argc, char **argv) {
|
||||
if (OutputThinLTOBC)
|
||||
M->addModuleFlag(Module::Error, "EnableSplitLTOUnit", SplitLTOUnit);
|
||||
|
||||
// Add an appropriate TargetLibraryInfo pass for the module's triple.
|
||||
TargetLibraryInfoImpl TLII(ModuleTriple);
|
||||
|
||||
// The -disable-simplify-libcalls flag actually disables all builtin optzns.
|
||||
if (DisableSimplifyLibCalls)
|
||||
TLII.disableAllFunctions();
|
||||
else {
|
||||
// Disable individual builtin functions in TargetLibraryInfo.
|
||||
LibFunc F;
|
||||
for (auto &FuncName : DisableBuiltins)
|
||||
if (TLII.getLibFunc(FuncName, F))
|
||||
TLII.setUnavailable(F);
|
||||
else {
|
||||
errs() << argv[0] << ": cannot disable nonexistent builtin function "
|
||||
<< FuncName << '\n';
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
// If `-passes=` is specified, use NPM.
|
||||
// If `-enable-new-pm` is specified and there are no codegen passes, use NPM.
|
||||
// e.g. `-enable-new-pm -sroa` will use NPM.
|
||||
@ -769,9 +788,9 @@ int main(int argc, char **argv) {
|
||||
// The user has asked to use the new pass manager and provided a pipeline
|
||||
// string. Hand off the rest of the functionality to the new code for that
|
||||
// layer.
|
||||
return runPassPipeline(argv[0], *M, TM.get(), Out.get(), ThinLinkOut.get(),
|
||||
RemarksFile.get(), PassPipeline, Passes, OK, VK,
|
||||
PreserveAssemblyUseListOrder,
|
||||
return runPassPipeline(argv[0], *M, TM.get(), &TLII, Out.get(),
|
||||
ThinLinkOut.get(), RemarksFile.get(), PassPipeline,
|
||||
Passes, OK, VK, PreserveAssemblyUseListOrder,
|
||||
PreserveBitcodeUseListOrder, EmitSummaryIndex,
|
||||
EmitModuleHash, EnableDebugify, Coroutines)
|
||||
? 0
|
||||
@ -787,25 +806,6 @@ int main(int argc, char **argv) {
|
||||
|
||||
bool AddOneTimeDebugifyPasses = EnableDebugify && !DebugifyEach;
|
||||
|
||||
// Add an appropriate TargetLibraryInfo pass for the module's triple.
|
||||
TargetLibraryInfoImpl TLII(ModuleTriple);
|
||||
|
||||
// The -disable-simplify-libcalls flag actually disables all builtin optzns.
|
||||
if (DisableSimplifyLibCalls)
|
||||
TLII.disableAllFunctions();
|
||||
else {
|
||||
// Disable individual builtin functions in TargetLibraryInfo.
|
||||
LibFunc F;
|
||||
for (auto &FuncName : DisableBuiltins)
|
||||
if (TLII.getLibFunc(FuncName, F))
|
||||
TLII.setUnavailable(F);
|
||||
else {
|
||||
errs() << argv[0] << ": cannot disable nonexistent builtin function "
|
||||
<< FuncName << '\n';
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
Passes.add(new TargetLibraryInfoWrapperPass(TLII));
|
||||
|
||||
// Add internal analysis passes from the target machine.
|
||||
|
Loading…
Reference in New Issue
Block a user