54#define DEBUG_TYPE "lcssa"
56STATISTIC(NumLCSSA,
"Number of live out of a loop variables");
58#ifdef EXPENSIVE_CHECKS
66 cl::desc(
"Verify loop lcssa form (time consuming)"));
91 while (!Worklist.
empty()) {
92 UsesToRewrite.
clear();
95 assert(!
I->getType()->isTokenTy() &&
"Tokens shouldn't be in the worklist");
98 assert(L &&
"Instruction belongs to a BB that's not part of a loop");
99 if (!LoopExitBlocks.
count(L))
100 L->getExitBlocks(LoopExitBlocks[L]);
104 if (ExitBlocks.
empty())
120 if (
auto *PN = dyn_cast<PHINode>(
User))
121 UserBB = PN->getIncomingBlock(U);
123 if (InstBB != UserBB && !L->contains(UserBB))
128 if (UsesToRewrite.
empty())
138 if (
auto *Inv = dyn_cast<InvokeInst>(
I))
139 DomBB = Inv->getNormalDest();
160 I->getName() +
".lcssa", &ExitBB->front());
177 if (!L->contains(Pred))
197 if (!L->contains(OtherLoop))
203 for (
Use *UseToRewrite : UsesToRewrite) {
210 if (
auto *PN = dyn_cast<PHINode>(
User))
211 UserBB = PN->getIncomingBlock(*UseToRewrite);
218 UseToRewrite->set(&UserBB->
front());
224 if (AddedPHIs.
size() == 1) {
225 UseToRewrite->set(AddedPHIs[0]);
237 for (
auto *DVI : DbgValues) {
239 if (InstBB == UserBB || L->contains(UserBB))
244 Value *V = AddedPHIs.
size() == 1 ? AddedPHIs[0]
247 DVI->replaceVariableLocationOp(
I, V);
252 for (
PHINode *InsertedPN : LocalInsertedPHIs) {
253 if (
auto *OtherLoop = LI.
getLoopFor(InsertedPN->getParent()))
254 if (!L->contains(OtherLoop))
262 for (
auto *PostProcessPN : PostProcessPHIs)
263 if (!PostProcessPN->use_empty())
270 LocalPHIsToRemove.
insert(PN);
284 PHIsToRemove->
append(LocalPHIsToRemove.
begin(), LocalPHIsToRemove.
end());
286 for (
PHINode *PN : LocalPHIsToRemove)
288 PN->eraseFromParent();
301 while (!BBWorklist.
empty()) {
305 if (L.getHeader() == BB)
328 if (!L.contains(IDomBB))
331 if (BlocksDominatingExits.
insert(IDomBB))
337 bool Changed =
false;
339#ifdef EXPENSIVE_CHECKS
341 for (
Loop *SubLoop: L) {
343 assert(SubLoop->isRecursivelyLCSSAForm(DT, *LI) &&
"Subloop not in LCSSA!");
348 L.getExitBlocks(ExitBlocks);
349 if (ExitBlocks.
empty())
365 for (
BasicBlock *BB : BlocksDominatingExits) {
374 (
I.hasOneUse() &&
I.user_back()->getParent() == BB &&
375 !isa<PHINode>(
I.user_back())))
382 if (
I.getType()->isTokenTy())
391 assert(L.isLCSSAForm(DT));
399 bool Changed =
false;
402 for (
Loop *SubLoop : L.getSubLoops())
411 bool Changed =
false;
412 for (
const auto &L : *LI)
437 return L->isRecursivelyLCSSAForm(*DT, *LI);
439 "LCSSA form is broken!");
467char LCSSAWrapperPass::ID = 0;
480bool LCSSAWrapperPass::runOnFunction(
Function &
F) {
481 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
482 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
This is the interface for LLVM's primary stateless and local alias analysis.
This is the interface for a simple mod/ref and alias analysis over globals.
static bool isExitBlock(BasicBlock *BB, const SmallVectorImpl< BasicBlock * > &ExitBlocks)
Return true if the specified block is in the list.
static bool VerifyLoopLCSSA
static bool formLCSSAOnAllLoops(const LoopInfo *LI, const DominatorTree &DT)
Process all loops in the function, inner-most out.
static void computeBlocksDominatingExits(Loop &L, const DominatorTree &DT, SmallVector< BasicBlock *, 8 > &ExitBlocks, SmallSetVector< BasicBlock *, 8 > &BlocksDominatingExits)
static cl::opt< bool, true > VerifyLoopLCSSAFlag("verify-loop-lcssa", cl::location(VerifyLoopLCSSA), cl::Hidden, cl::desc("Verify loop lcssa form (time consuming)"))
This file exposes an interface to building/using memory SSA to walk memory instructions using a use/d...
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This is the interface for a SCEV-based alias analysis.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
A wrapper pass to provide the legacy pass manager access to a suitably prepared AAResults object.
A container for analyses that lazily runs them and caches their results.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Represent the analysis usage information of a pass.
AnalysisUsage & addPreservedID(const void *ID)
AnalysisUsage & addRequired()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
void setPreservesCFG()
This function should be called by the pass, iff they do not:
Legacy wrapper pass to provide the BasicAAResult object.
LLVM Basic Block Representation.
iterator begin()
Instruction iterator methods.
const Instruction & front() const
const Function * getParent() const
Return the enclosing method, or null if none.
Analysis pass which computes BranchProbabilityInfo.
Legacy analysis pass which computes BranchProbabilityInfo.
Represents analyses that only rely on functions' control flow.
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
DomTreeNodeBase * getIDom() const
Analysis pass which computes a DominatorTree.
DomTreeNodeBase< NodeT > * getNode(const NodeT *BB) const
getNode - return the (Post)DominatorTree node for the specified basic block.
Legacy analysis pass which computes a DominatorTree.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
bool isReachableFromEntry(const Use &U) const
Provide an overload for a Use.
bool dominates(const BasicBlock *BB, const Use &U) const
Return true if the (end of the) basic block BB dominates the use U.
FunctionPass class - This class is used to implement most global optimizations.
virtual bool runOnFunction(Function &F)=0
runOnFunction - Virtual method overriden by subclasses to do the per-function processing of the pass.
Legacy wrapper pass to provide the GlobalsAAResult object.
void setDebugLoc(DebugLoc Loc)
Set the debug location information for this instruction.
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
Analysis pass that exposes the LoopInfo for a function.
LoopT * getLoopFor(const BlockT *BB) const
Return the inner most loop that BB lives in.
The legacy pass manager's analysis pass to compute loop information.
Represents a single loop in the control flow graph.
An analysis that produces MemorySSA for a function.
Legacy analysis pass which computes MemorySSA.
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
static PHINode * Create(Type *Ty, unsigned NumReservedValues, const Twine &NameStr="", Instruction *InsertBefore=nullptr)
Constructors - NumReservedValues is a hint for the number of incoming edges that this phi node will h...
static unsigned getOperandNumForIncomingValue(unsigned i)
unsigned getNumIncomingValues() const
Return the number of incoming edges.
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
Pass interface - Implemented by all 'passes'.
virtual void getAnalysisUsage(AnalysisUsage &) const
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
virtual void verifyAnalysis() const
verifyAnalysis() - This member can be implemented by a analysis pass to check state of analysis infor...
static PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
PredIteratorCache - This class is an extremely trivial cache for predecessor iterator queries.
size_t size(BasicBlock *BB) const
ArrayRef< BasicBlock * > get(BasicBlock *BB)
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
void preserveSet()
Mark an analysis set as preserved.
void preserve()
Mark an analysis as preserved.
Legacy wrapper pass to provide the SCEVAAResult object.
Helper class for SSA formation on a set of values defined in multiple blocks.
void RewriteUse(Use &U)
Rewrite a use of the symbolic value.
Value * FindValueForBlock(BasicBlock *BB) const
Return the value for the specified block if the SSAUpdater has one, otherwise return nullptr.
void Initialize(Type *Ty, StringRef Name)
Reset this object to get ready for a new set of SSA updates with type 'Ty'.
bool HasValueForBlock(BasicBlock *BB) const
Return true if the SSAUpdater already has a value for the specified block.
void AddAvailableValue(BasicBlock *BB, Value *V)
Indicate that a rewritten value is available in the specified block with the specified value.
Analysis pass that exposes the ScalarEvolution for a function.
bool insert(const value_type &X)
Insert a new element into the SetVector.
iterator begin()
Get an iterator to the beginning of the SetVector.
iterator end()
Get an iterator to the end of the SetVector.
A SetVector that performs no allocations if smaller than a certain size.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
A Use represents the edge between a Value definition and its users.
const Use & getOperandUse(unsigned i) const
LLVM Value Representation.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
LocationClass< Ty > location(Ty &L)
This is an optimization pass for GlobalISel generic memory operations.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
void initializeLCSSAWrapperPassPass(PassRegistry &)
bool formLCSSAForInstructions(SmallVectorImpl< Instruction * > &Worklist, const DominatorTree &DT, const LoopInfo &LI, SmallVectorImpl< PHINode * > *PHIsToRemove=nullptr, SmallVectorImpl< PHINode * > *InsertedPHIs=nullptr)
Ensures LCSSA form for every instruction from the Worklist in the scope of innermost containing loop.
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
void findDbgValues(SmallVectorImpl< DbgValueInst * > &DbgValues, Value *V)
Finds the llvm.dbg.value intrinsics describing a value.
bool formLCSSARecursively(Loop &L, const DominatorTree &DT, const LoopInfo *LI)
Put a loop nest into LCSSA form.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
bool formLCSSA(Loop &L, const DominatorTree &DT, const LoopInfo *LI)
Put loop into LCSSA form.