[llvm] 35f3858 - [JumpThreading][NFC][CompileTime] Do not recompute BPI/BFI analyzes
Max Kazantsev via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 27 21:16:52 PDT 2022
Author: Max Kazantsev
Date: 2022-04-28T10:46:08+07:00
New Revision: 35f38583d2f2484794f579bed69566b40e732206
URL: https://github.com/llvm/llvm-project/commit/35f38583d2f2484794f579bed69566b40e732206
DIFF: https://github.com/llvm/llvm-project/commit/35f38583d2f2484794f579bed69566b40e732206.diff
LOG: [JumpThreading][NFC][CompileTime] Do not recompute BPI/BFI analyzes
They can already be available, and even if not, DT/LI can be available.
We should not recompute them. Old PM is unchanged because it would
require changing dependencies, and we don't care enough about it.
Differential Revision: https://reviews.llvm.org/D124439
Reviewed By: nikic, aeubanks
Added:
Modified:
llvm/include/llvm/Transforms/Scalar/JumpThreading.h
llvm/lib/Transforms/Scalar/JumpThreading.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/Transforms/Scalar/JumpThreading.h b/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
index c14855ef5f73b..8b4e8b016e37f 100644
--- a/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
+++ b/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
@@ -81,8 +81,8 @@ class JumpThreadingPass : public PassInfoMixin<JumpThreadingPass> {
LazyValueInfo *LVI;
AAResults *AA;
DomTreeUpdater *DTU;
- std::unique_ptr<BlockFrequencyInfo> BFI;
- std::unique_ptr<BranchProbabilityInfo> BPI;
+ BlockFrequencyInfo *BFI;
+ BranchProbabilityInfo *BPI;
bool HasProfileData = false;
bool HasGuards = false;
#ifndef LLVM_ENABLE_ABI_BREAKING_CHECKS
@@ -101,16 +101,11 @@ class JumpThreadingPass : public PassInfoMixin<JumpThreadingPass> {
// Glue for old PM.
bool runImpl(Function &F, TargetLibraryInfo *TLI, TargetTransformInfo *TTI,
LazyValueInfo *LVI, AAResults *AA, DomTreeUpdater *DTU,
- bool HasProfileData, std::unique_ptr<BlockFrequencyInfo> BFI,
- std::unique_ptr<BranchProbabilityInfo> BPI);
+ bool HasProfileData, BlockFrequencyInfo *BFI,
+ BranchProbabilityInfo *BPI);
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
- void releaseMemory() {
- BFI.reset();
- BPI.reset();
- }
-
void findLoopHeaders(Function &F);
bool processBlock(BasicBlock *BB);
bool maybeMergeBasicBlockIntoOnlyPred(BasicBlock *BB);
diff --git a/llvm/lib/Transforms/Scalar/JumpThreading.cpp b/llvm/lib/Transforms/Scalar/JumpThreading.cpp
index 5ae670c002fd8..51dacc0e66238 100644
--- a/llvm/lib/Transforms/Scalar/JumpThreading.cpp
+++ b/llvm/lib/Transforms/Scalar/JumpThreading.cpp
@@ -155,8 +155,6 @@ namespace {
AU.addRequired<TargetLibraryInfoWrapperPass>();
AU.addRequired<TargetTransformInfoWrapperPass>();
}
-
- void releaseMemory() override { Impl.releaseMemory(); }
};
} // end anonymous namespace
@@ -330,7 +328,7 @@ bool JumpThreading::runOnFunction(Function &F) {
}
bool Changed = Impl.runImpl(F, TLI, TTI, LVI, AA, &DTU, F.hasProfileData(),
- std::move(BFI), std::move(BPI));
+ BFI.get(), BPI.get());
if (PrintLVIAfterJumpThreading) {
dbgs() << "LVI for function '" << F.getName() << "':\n";
LVI->printLVI(F, DTU.getDomTree(), dbgs());
@@ -350,16 +348,15 @@ PreservedAnalyses JumpThreadingPass::run(Function &F,
auto &AA = AM.getResult<AAManager>(F);
DomTreeUpdater DTU(DT, DomTreeUpdater::UpdateStrategy::Lazy);
- std::unique_ptr<BlockFrequencyInfo> BFI;
- std::unique_ptr<BranchProbabilityInfo> BPI;
+ BlockFrequencyInfo *BFI = nullptr;
+ BranchProbabilityInfo *BPI = nullptr;
if (F.hasProfileData()) {
- LoopInfo LI{DominatorTree(F)};
- BPI.reset(new BranchProbabilityInfo(F, LI, &TLI));
- BFI.reset(new BlockFrequencyInfo(F, *BPI, LI));
+ BFI = &AM.getResult<BlockFrequencyAnalysis>(F);
+ BPI = &AM.getResult<BranchProbabilityAnalysis>(F);
}
- bool Changed = runImpl(F, &TLI, &TTI, &LVI, &AA, &DTU, F.hasProfileData(),
- std::move(BFI), std::move(BPI));
+ bool Changed =
+ runImpl(F, &TLI, &TTI, &LVI, &AA, &DTU, F.hasProfileData(), BFI, BPI);
if (PrintLVIAfterJumpThreading) {
dbgs() << "LVI for function '" << F.getName() << "':\n";
@@ -377,17 +374,16 @@ PreservedAnalyses JumpThreadingPass::run(Function &F,
bool JumpThreadingPass::runImpl(Function &F, TargetLibraryInfo *TLI_,
TargetTransformInfo *TTI_, LazyValueInfo *LVI_,
AliasAnalysis *AA_, DomTreeUpdater *DTU_,
- bool HasProfileData_,
- std::unique_ptr<BlockFrequencyInfo> BFI_,
- std::unique_ptr<BranchProbabilityInfo> BPI_) {
+ bool HasProfileData_, BlockFrequencyInfo *BFI_,
+ BranchProbabilityInfo *BPI_) {
LLVM_DEBUG(dbgs() << "Jump threading on function '" << F.getName() << "'\n");
TLI = TLI_;
TTI = TTI_;
LVI = LVI_;
AA = AA_;
DTU = DTU_;
- BFI.reset();
- BPI.reset();
+ BFI = BFI_;
+ BPI = BPI_;
// When profile data is available, we need to update edge weights after
// successful jump threading, which requires both BPI and BFI being available.
HasProfileData = HasProfileData_;
@@ -395,8 +391,11 @@ bool JumpThreadingPass::runImpl(Function &F, TargetLibraryInfo *TLI_,
Intrinsic::getName(Intrinsic::experimental_guard));
HasGuards = GuardDecl && !GuardDecl->use_empty();
if (HasProfileData) {
- BPI = std::move(BPI_);
- BFI = std::move(BFI_);
+ assert(BFI && "BFI not provided?");
+ assert(BPI && "BPI not provided?");
+ } else {
+ assert(!BFI && "BFI should not be provided?");
+ assert(!BPI && "BPI should not be provided?");
}
// Reduce the number of instructions duplicated when optimizing strictly for
More information about the llvm-commits
mailing list