2008-04-30 04:06:54 +08:00
|
|
|
//===- LoopDeletion.cpp - Dead Loop Deletion Pass ---------------===//
|
2008-04-29 08:38:34 +08:00
|
|
|
//
|
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
|
2008-04-29 08:38:34 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-05-09 01:46:35 +08:00
|
|
|
// This file implements the Dead Loop Deletion Pass. This pass is responsible
|
|
|
|
// for eliminating loops with non-infinite computable trip counts that have no
|
|
|
|
// side effects or volatile instructions, and do not contribute to the
|
|
|
|
// computation of the function's return value.
|
2008-04-29 08:38:34 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-07-15 02:28:29 +08:00
|
|
|
#include "llvm/Transforms/Scalar/LoopDeletion.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "llvm/ADT/Statistic.h"
|
2015-09-10 18:22:12 +08:00
|
|
|
#include "llvm/Analysis/GlobalsModRef.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/Analysis/LoopPass.h"
|
2014-01-13 17:26:24 +08:00
|
|
|
#include "llvm/IR/Dominators.h"
|
2017-05-03 19:47:11 +08:00
|
|
|
#include "llvm/IR/PatternMatch.h"
|
2016-07-15 02:28:29 +08:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2017-01-11 17:43:56 +08:00
|
|
|
#include "llvm/Transforms/Scalar/LoopPassManager.h"
|
[LPM] Factor all of the loop analysis usage updates into a common helper
routine.
We were getting this wrong in small ways and generally being very
inconsistent about it across loop passes. Instead, let's have a common
place where we do this. One minor downside is that this will require
some analyses like SCEV in more places than they are strictly needed.
However, this seems benign as these analyses are complete no-ops, and
without this consistency we can in many cases end up with the legacy
pass manager scheduling deciding to split up a loop pass pipeline in
order to run the function analysis half-way through. It is very, very
annoying to fix these without just being very pedantic across the board.
The only loop passes I've not updated here are ones that use
AU.setPreservesAll() such as IVUsers (an analysis) and the pass printer.
They seemed less relevant.
With this patch, almost all of the problems in PR24804 around loop pass
pipelines are fixed. The one remaining issue is that we run simplify-cfg
and instcombine in the middle of the loop pass pipeline. We've recently
added some loop variants of these passes that would seem substantially
cleaner to use, but this at least gets us much closer to the previous
state. Notably, the seven loop pass managers is down to three.
I've not updated the loop passes using LoopAccessAnalysis because that
analysis hasn't been fully wired into LoopSimplify/LCSSA, and it isn't
clear that those transforms want to support those forms anyways. They
all run late anyways, so this is harmless. Similarly, LSR is left alone
because it already carefully manages its forms and doesn't need to get
fused into a single loop pass manager with a bunch of other loop passes.
LoopReroll didn't use loop simplified form previously, and I've updated
the test case to match the trivially different output.
Finally, I've also factored all the pass initialization for the passes
that use this technique as well, so that should be done regularly and
reliably.
Thanks to James for the help reviewing and thinking about this stuff,
and Ben for help thinking about it as well!
Differential Revision: http://reviews.llvm.org/D17435
llvm-svn: 261316
2016-02-19 18:45:18 +08:00
|
|
|
#include "llvm/Transforms/Utils/LoopUtils.h"
|
2008-04-29 08:38:34 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 10:55:47 +08:00
|
|
|
#define DEBUG_TYPE "loop-delete"
|
|
|
|
|
2008-04-29 08:38:34 +08:00
|
|
|
STATISTIC(NumDeleted, "Number of loops deleted");
|
|
|
|
|
2017-09-28 05:45:21 +08:00
|
|
|
enum class LoopDeletionResult {
|
|
|
|
Unmodified,
|
|
|
|
Modified,
|
|
|
|
Deleted,
|
|
|
|
};
|
|
|
|
|
2017-01-18 06:07:26 +08:00
|
|
|
/// Determines if a loop is dead.
|
|
|
|
///
|
|
|
|
/// This assumes that we've already checked for unique exit and exiting blocks,
|
|
|
|
/// and that the code is in LCSSA form.
|
|
|
|
static bool isLoopDead(Loop *L, ScalarEvolution &SE,
|
|
|
|
SmallVectorImpl<BasicBlock *> &ExitingBlocks,
|
|
|
|
BasicBlock *ExitBlock, bool &Changed,
|
|
|
|
BasicBlock *Preheader) {
|
2008-04-29 08:38:34 +08:00
|
|
|
// Make sure that all PHI entries coming from the loop are loop invariant.
|
2008-04-30 04:59:33 +08:00
|
|
|
// Because the code is in LCSSA form, any values used outside of the loop
|
|
|
|
// must pass through a PHI in the exit block, meaning that this check is
|
|
|
|
// sufficient to guarantee that no loop-variant values are used outside
|
|
|
|
// of the loop.
|
2016-05-04 01:50:02 +08:00
|
|
|
bool AllEntriesInvariant = true;
|
|
|
|
bool AllOutgoingValuesSame = true;
|
2017-12-30 23:27:33 +08:00
|
|
|
for (PHINode &P : ExitBlock->phis()) {
|
|
|
|
Value *incoming = P.getIncomingValueForBlock(ExitingBlocks[0]);
|
2011-02-23 06:25:39 +08:00
|
|
|
|
|
|
|
// Make sure all exiting blocks produce the same incoming value for the exit
|
|
|
|
// block. If there are different incoming values for different exiting
|
|
|
|
// blocks, then it is impossible to statically determine which value should
|
|
|
|
// be used.
|
2016-05-04 01:50:06 +08:00
|
|
|
AllOutgoingValuesSame =
|
2017-01-18 05:51:39 +08:00
|
|
|
all_of(makeArrayRef(ExitingBlocks).slice(1), [&](BasicBlock *BB) {
|
2017-12-30 23:27:33 +08:00
|
|
|
return incoming == P.getIncomingValueForBlock(BB);
|
2016-05-04 01:50:06 +08:00
|
|
|
});
|
2012-07-24 18:51:42 +08:00
|
|
|
|
2016-05-04 01:50:02 +08:00
|
|
|
if (!AllOutgoingValuesSame)
|
|
|
|
break;
|
|
|
|
|
2013-03-19 07:31:30 +08:00
|
|
|
if (Instruction *I = dyn_cast<Instruction>(incoming))
|
2016-05-04 01:50:02 +08:00
|
|
|
if (!L->makeLoopInvariant(I, Changed, Preheader->getTerminator())) {
|
|
|
|
AllEntriesInvariant = false;
|
|
|
|
break;
|
|
|
|
}
|
2008-04-29 08:38:34 +08:00
|
|
|
}
|
2012-07-24 18:51:42 +08:00
|
|
|
|
2016-05-04 01:50:02 +08:00
|
|
|
if (Changed)
|
|
|
|
SE.forgetLoopDispositions(L);
|
|
|
|
|
|
|
|
if (!AllEntriesInvariant || !AllOutgoingValuesSame)
|
|
|
|
return false;
|
|
|
|
|
2008-04-29 08:38:34 +08:00
|
|
|
// Make sure that no instructions in the block have potential side-effects.
|
2008-04-30 04:59:33 +08:00
|
|
|
// This includes instructions that could write to memory, and loads that are
|
2017-02-24 07:47:10 +08:00
|
|
|
// marked volatile.
|
2017-02-26 15:08:20 +08:00
|
|
|
for (auto &I : L->blocks())
|
|
|
|
if (any_of(*I, [](Instruction &I) { return I.mayHaveSideEffects(); }))
|
|
|
|
return false;
|
2008-04-29 08:38:34 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-05-03 19:47:11 +08:00
|
|
|
/// This function returns true if there is no viable path from the
|
|
|
|
/// entry block to the header of \p L. Right now, it only does
|
|
|
|
/// a local search to save compile time.
|
|
|
|
static bool isLoopNeverExecuted(Loop *L) {
|
|
|
|
using namespace PatternMatch;
|
|
|
|
|
|
|
|
auto *Preheader = L->getLoopPreheader();
|
|
|
|
// TODO: We can relax this constraint, since we just need a loop
|
|
|
|
// predecessor.
|
|
|
|
assert(Preheader && "Needs preheader!");
|
|
|
|
|
|
|
|
if (Preheader == &Preheader->getParent()->getEntryBlock())
|
|
|
|
return false;
|
|
|
|
// All predecessors of the preheader should have a constant conditional
|
|
|
|
// branch, with the loop's preheader as not-taken.
|
|
|
|
for (auto *Pred: predecessors(Preheader)) {
|
|
|
|
BasicBlock *Taken, *NotTaken;
|
|
|
|
ConstantInt *Cond;
|
|
|
|
if (!match(Pred->getTerminator(),
|
|
|
|
m_Br(m_ConstantInt(Cond), Taken, NotTaken)))
|
|
|
|
return false;
|
|
|
|
if (!Cond->getZExtValue())
|
|
|
|
std::swap(Taken, NotTaken);
|
|
|
|
if (Taken == Preheader)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
assert(!pred_empty(Preheader) &&
|
|
|
|
"Preheader should have predecessors at this point!");
|
|
|
|
// All the predecessors have the loop preheader as not-taken target.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-01-18 06:07:26 +08:00
|
|
|
/// Remove a loop if it is dead.
|
|
|
|
///
|
|
|
|
/// A loop is considered dead if it does not impact the observable behavior of
|
|
|
|
/// the program other than finite running time. This never removes a loop that
|
2017-05-03 19:47:11 +08:00
|
|
|
/// might be infinite (unless it is never executed), as doing so could change
|
|
|
|
/// the halting/non-halting nature of a program.
|
2017-01-18 06:07:26 +08:00
|
|
|
///
|
|
|
|
/// This entire process relies pretty heavily on LoopSimplify form and LCSSA in
|
|
|
|
/// order to make various safety checks work.
|
|
|
|
///
|
2017-02-11 08:09:30 +08:00
|
|
|
/// \returns true if any changes were made. This may mutate the loop even if it
|
|
|
|
/// is unable to delete it due to hoisting trivially loop invariant
|
|
|
|
/// instructions out of the loop.
|
2017-09-28 05:45:21 +08:00
|
|
|
static LoopDeletionResult deleteLoopIfDead(Loop *L, DominatorTree &DT,
|
|
|
|
ScalarEvolution &SE, LoopInfo &LI) {
|
2016-02-22 01:11:59 +08:00
|
|
|
assert(L->isLCSSAForm(DT) && "Expected LCSSA!");
|
|
|
|
|
2017-07-04 22:05:19 +08:00
|
|
|
// We can only remove the loop if there is a preheader that we can branch from
|
|
|
|
// after removing it. Also, if LoopSimplify form is not available, stay out
|
|
|
|
// of trouble.
|
2017-01-18 06:19:56 +08:00
|
|
|
BasicBlock *Preheader = L->getLoopPreheader();
|
2017-07-04 22:05:19 +08:00
|
|
|
if (!Preheader || !L->hasDedicatedExits()) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(
|
|
|
|
dbgs()
|
|
|
|
<< "Deletion requires Loop with preheader and dedicated exits.\n");
|
2017-09-28 05:45:21 +08:00
|
|
|
return LoopDeletionResult::Unmodified;
|
2017-07-04 22:05:19 +08:00
|
|
|
}
|
2008-04-29 08:38:34 +08:00
|
|
|
// We can't remove loops that contain subloops. If the subloops were dead,
|
|
|
|
// they would already have been removed in earlier executions of this pass.
|
2017-07-04 22:05:19 +08:00
|
|
|
if (L->begin() != L->end()) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Loop contains subloops.\n");
|
2017-09-28 05:45:21 +08:00
|
|
|
return LoopDeletionResult::Unmodified;
|
2017-07-04 22:05:19 +08:00
|
|
|
}
|
2012-07-24 18:51:42 +08:00
|
|
|
|
2017-05-03 19:47:11 +08:00
|
|
|
|
|
|
|
BasicBlock *ExitBlock = L->getUniqueExitBlock();
|
|
|
|
|
|
|
|
if (ExitBlock && isLoopNeverExecuted(L)) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Loop is proven to never execute, delete it!");
|
2017-06-26 05:13:58 +08:00
|
|
|
// Set incoming value to undef for phi nodes in the exit block.
|
2017-12-30 23:27:33 +08:00
|
|
|
for (PHINode &P : ExitBlock->phis()) {
|
|
|
|
std::fill(P.incoming_values().begin(), P.incoming_values().end(),
|
|
|
|
UndefValue::get(P.getType()));
|
2017-06-26 05:13:58 +08:00
|
|
|
}
|
2017-10-05 04:42:46 +08:00
|
|
|
deleteDeadLoop(L, &DT, &SE, &LI);
|
2017-05-03 19:47:11 +08:00
|
|
|
++NumDeleted;
|
2017-09-28 05:45:21 +08:00
|
|
|
return LoopDeletionResult::Deleted;
|
2017-05-03 19:47:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// The remaining checks below are for a loop being dead because all statements
|
|
|
|
// in the loop are invariant.
|
2017-01-18 05:51:39 +08:00
|
|
|
SmallVector<BasicBlock *, 4> ExitingBlocks;
|
|
|
|
L->getExitingBlocks(ExitingBlocks);
|
2012-07-24 18:51:42 +08:00
|
|
|
|
2008-05-16 12:32:45 +08:00
|
|
|
// We require that the loop only have a single exit block. Otherwise, we'd
|
|
|
|
// be in the situation of needing to be able to solve statically which exit
|
|
|
|
// block will be branched to, or trying to preserve the branching logic in
|
|
|
|
// a loop invariant manner.
|
2017-07-04 22:05:19 +08:00
|
|
|
if (!ExitBlock) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Deletion requires single exit block\n");
|
2017-09-28 05:45:21 +08:00
|
|
|
return LoopDeletionResult::Unmodified;
|
2017-07-04 22:05:19 +08:00
|
|
|
}
|
2008-04-29 08:38:34 +08:00
|
|
|
// Finally, we have to check that the loop really is dead.
|
2017-02-11 08:09:30 +08:00
|
|
|
bool Changed = false;
|
2017-07-04 22:05:19 +08:00
|
|
|
if (!isLoopDead(L, SE, ExitingBlocks, ExitBlock, Changed, Preheader)) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Loop is not invariant, cannot delete.\n");
|
2017-09-28 05:45:21 +08:00
|
|
|
return Changed ? LoopDeletionResult::Modified
|
|
|
|
: LoopDeletionResult::Unmodified;
|
2017-07-04 22:05:19 +08:00
|
|
|
}
|
2012-07-24 18:51:42 +08:00
|
|
|
|
2008-05-16 12:32:45 +08:00
|
|
|
// Don't remove loops for which we can't solve the trip count.
|
|
|
|
// They could be infinite, in which case we'd be changing program behavior.
|
2009-10-24 01:10:01 +08:00
|
|
|
const SCEV *S = SE.getMaxBackedgeTakenCount(L);
|
2017-07-04 22:05:19 +08:00
|
|
|
if (isa<SCEVCouldNotCompute>(S)) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Could not compute SCEV MaxBackedgeTakenCount.\n");
|
2017-09-28 05:45:21 +08:00
|
|
|
return Changed ? LoopDeletionResult::Modified
|
|
|
|
: LoopDeletionResult::Unmodified;
|
2017-07-04 22:05:19 +08:00
|
|
|
}
|
2012-07-24 18:51:42 +08:00
|
|
|
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Loop is invariant, delete it!");
|
2017-10-05 04:42:46 +08:00
|
|
|
deleteDeadLoop(L, &DT, &SE, &LI);
|
2017-05-03 19:47:11 +08:00
|
|
|
++NumDeleted;
|
|
|
|
|
2017-09-28 05:45:21 +08:00
|
|
|
return LoopDeletionResult::Deleted;
|
2017-05-03 19:47:11 +08:00
|
|
|
}
|
|
|
|
|
2017-01-11 14:23:21 +08:00
|
|
|
PreservedAnalyses LoopDeletionPass::run(Loop &L, LoopAnalysisManager &AM,
|
|
|
|
LoopStandardAnalysisResults &AR,
|
2017-01-18 10:41:26 +08:00
|
|
|
LPMUpdater &Updater) {
|
2017-07-04 22:05:19 +08:00
|
|
|
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Analyzing Loop for deletion: ");
|
|
|
|
LLVM_DEBUG(L.dump());
|
2017-09-28 10:45:42 +08:00
|
|
|
std::string LoopName = L.getName();
|
2017-09-28 05:45:21 +08:00
|
|
|
auto Result = deleteLoopIfDead(&L, AR.DT, AR.SE, AR.LI);
|
|
|
|
if (Result == LoopDeletionResult::Unmodified)
|
2016-07-15 02:28:29 +08:00
|
|
|
return PreservedAnalyses::all();
|
|
|
|
|
2017-09-28 05:45:21 +08:00
|
|
|
if (Result == LoopDeletionResult::Deleted)
|
2017-09-28 10:45:42 +08:00
|
|
|
Updater.markLoopAsDeleted(L, LoopName);
|
2017-09-28 05:45:21 +08:00
|
|
|
|
2016-07-15 02:28:29 +08:00
|
|
|
return getLoopPassPreservedAnalyses();
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class LoopDeletionLegacyPass : public LoopPass {
|
|
|
|
public:
|
|
|
|
static char ID; // Pass ID, replacement for typeid
|
|
|
|
LoopDeletionLegacyPass() : LoopPass(ID) {
|
|
|
|
initializeLoopDeletionLegacyPassPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Possibly eliminate loop L if it is dead.
|
|
|
|
bool runOnLoop(Loop *L, LPPassManager &) override;
|
|
|
|
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
|
|
|
getLoopAnalysisUsage(AU);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
char LoopDeletionLegacyPass::ID = 0;
|
|
|
|
INITIALIZE_PASS_BEGIN(LoopDeletionLegacyPass, "loop-deletion",
|
|
|
|
"Delete dead loops", false, false)
|
|
|
|
INITIALIZE_PASS_DEPENDENCY(LoopPass)
|
|
|
|
INITIALIZE_PASS_END(LoopDeletionLegacyPass, "loop-deletion",
|
|
|
|
"Delete dead loops", false, false)
|
|
|
|
|
|
|
|
Pass *llvm::createLoopDeletionPass() { return new LoopDeletionLegacyPass(); }
|
|
|
|
|
2017-09-28 10:45:42 +08:00
|
|
|
bool LoopDeletionLegacyPass::runOnLoop(Loop *L, LPPassManager &LPM) {
|
2016-07-15 02:28:29 +08:00
|
|
|
if (skipLoop(L))
|
|
|
|
return false;
|
|
|
|
DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
|
|
|
|
ScalarEvolution &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
|
2017-01-18 05:51:39 +08:00
|
|
|
LoopInfo &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
|
2016-07-15 02:28:29 +08:00
|
|
|
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Analyzing Loop for deletion: ");
|
|
|
|
LLVM_DEBUG(L->dump());
|
2017-09-28 10:45:42 +08:00
|
|
|
|
|
|
|
LoopDeletionResult Result = deleteLoopIfDead(L, DT, SE, LI);
|
|
|
|
|
|
|
|
if (Result == LoopDeletionResult::Deleted)
|
|
|
|
LPM.markLoopAsDeleted(*L);
|
|
|
|
|
|
|
|
return Result != LoopDeletionResult::Unmodified;
|
2016-07-15 02:28:29 +08:00
|
|
|
}
|