LLVM 22.0.0git
LoopSimplify.cpp File Reference

Go to the source code of this file.

Macros

#define DEBUG_TYPE   "loop-simplify"

Functions

 STATISTIC (NumNested, "Number of nested loops split out")
static void placeSplitBlockCarefully (BasicBlock *NewBB, SmallVectorImpl< BasicBlock * > &SplitPreds, Loop *L)
static void addBlockAndPredsToSet (BasicBlock *InputBB, BasicBlock *StopBlock, SmallPtrSetImpl< BasicBlock * > &Blocks)
 Add the specified block, and all of its predecessors, to the specified set, if it's not already in there.
static PHINodefindPHIToPartitionLoops (Loop *L, DominatorTree *DT, AssumptionCache *AC)
 The first part of loop-nestification is to find a PHI node that tells us how to partition the loops.
static LoopseparateNestedLoop (Loop *L, BasicBlock *Preheader, DominatorTree *DT, LoopInfo *LI, ScalarEvolution *SE, bool PreserveLCSSA, AssumptionCache *AC, MemorySSAUpdater *MSSAU)
 If this loop has multiple backedges, try to pull one of them out into a nested loop.
static BasicBlockinsertUniqueBackedgeBlock (Loop *L, BasicBlock *Preheader, DominatorTree *DT, LoopInfo *LI, MemorySSAUpdater *MSSAU)
 This method is called when the specified loop has more than one backedge in it.
static bool simplifyOneLoop (Loop *L, SmallVectorImpl< Loop * > &Worklist, DominatorTree *DT, LoopInfo *LI, ScalarEvolution *SE, AssumptionCache *AC, MemorySSAUpdater *MSSAU, bool PreserveLCSSA)
 Simplify one loop and queue further loops for simplification.
 INITIALIZE_PASS_BEGIN (LoopSimplify, "loop-simplify", "Canonicalize natural loops", false, false) INITIALIZE_PASS_END(LoopSimplify

Variables

loop simplify
loop Canonicalize natural loops
loop Canonicalize natural false

Macro Definition Documentation

◆ DEBUG_TYPE

#define DEBUG_TYPE   "loop-simplify"

Definition at line 73 of file LoopSimplify.cpp.

Function Documentation

◆ addBlockAndPredsToSet()

void addBlockAndPredsToSet ( BasicBlock * InputBB,
BasicBlock * StopBlock,
SmallPtrSetImpl< BasicBlock * > & Blocks )
static

Add the specified block, and all of its predecessors, to the specified set, if it's not already in there.

Stop predecessor traversal when we reach StopBlock.

Definition at line 155 of file LoopSimplify.cpp.

References llvm::append_range(), llvm::SmallVectorTemplateCommon< T, typename >::empty(), llvm::SmallPtrSetImpl< PtrType >::insert(), llvm::SmallVectorImpl< T >::pop_back_val(), llvm::predecessors(), and llvm::SmallVectorTemplateBase< T, bool >::push_back().

Referenced by separateNestedLoop().

◆ findPHIToPartitionLoops()

PHINode * findPHIToPartitionLoops ( Loop * L,
DominatorTree * DT,
AssumptionCache * AC )
static

The first part of loop-nestification is to find a PHI node that tells us how to partition the loops.

Definition at line 170 of file LoopSimplify.cpp.

References llvm::cast(), DL, llvm::Instruction::eraseFromParent(), llvm::PHINode::getIncomingBlock(), llvm::PHINode::getIncomingValue(), llvm::PHINode::getNumIncomingValues(), I, llvm::isa(), llvm::Value::replaceAllUsesWith(), and llvm::simplifyInstruction().

Referenced by separateNestedLoop().

◆ INITIALIZE_PASS_BEGIN()

INITIALIZE_PASS_BEGIN ( LoopSimplify ,
"loop-simplify" ,
"Canonicalize natural loops" ,
false ,
false  )

◆ insertUniqueBackedgeBlock()

◆ placeSplitBlockCarefully()

◆ separateNestedLoop()

Loop * separateNestedLoop ( Loop * L,
BasicBlock * Preheader,
DominatorTree * DT,
LoopInfo * LI,
ScalarEvolution * SE,
bool PreserveLCSSA,
AssumptionCache * AC,
MemorySSAUpdater * MSSAU )
static

If this loop has multiple backedges, try to pull one of them out into a nested loop.

This is important for code that looks like this:

Loop: ... br cond, Loop, Next ... br cond2, Loop, Out

To identify this common case, we look at the PHI nodes in the header of the loop. PHI nodes with unchanging values on one backedge correspond to values that change in the "outer" loop, but not in the "inner" loop.

If we are able to separate out a loop, return the new outer loop that was created.

Definition at line 212 of file LoopSimplify.cpp.

References addBlockAndPredsToSet(), llvm::LoopBase< BlockT, LoopT >::addBlockEntry(), llvm::LoopBase< BlockT, LoopT >::addChildLoop(), llvm::LoopInfoBase< BlockT, LoopT >::AllocateLoop(), assert(), llvm::LoopInfoBase< BlockT, LoopT >::changeLoopFor(), llvm::LoopInfoBase< BlockT, LoopT >::changeTopLevelLoop(), llvm::SmallPtrSetImpl< PtrType >::count(), llvm::dbgs(), llvm::DominatorTree::dominates(), llvm::dyn_cast(), findPHIToPartitionLoops(), llvm::ScalarEvolution::forgetLoop(), llvm::formDedicatedExitBlocks(), llvm::formLCSSA(), llvm::PHINode::getIncomingBlock(), llvm::PHINode::getIncomingValue(), llvm::PHINode::getNumIncomingValues(), llvm::BasicBlock::getTerminator(), I, II, llvm::isa(), llvm::Loop::isRecursivelyLCSSAForm(), LLVM_DEBUG, P, placeSplitBlockCarefully(), llvm::predecessors(), llvm::SmallVectorTemplateBase< T, bool >::push_back(), llvm::LoopBase< BlockT, LoopT >::replaceChildLoopWith(), llvm::size(), and llvm::SplitBlockPredecessors().

Referenced by simplifyOneLoop().

◆ simplifyOneLoop()

bool simplifyOneLoop ( Loop * L,
SmallVectorImpl< Loop * > & Worklist,
DominatorTree * DT,
LoopInfo * LI,
ScalarEvolution * SE,
AssumptionCache * AC,
MemorySSAUpdater * MSSAU,
bool PreserveLCSSA )
static

◆ STATISTIC()

STATISTIC ( NumNested ,
"Number of nested loops split out"  )

Variable Documentation

◆ false

loop Canonicalize natural false

Definition at line 781 of file LoopSimplify.cpp.

◆ loops

loop Canonicalize natural loops

Definition at line 780 of file LoopSimplify.cpp.

◆ simplify

loop simplify

Definition at line 780 of file LoopSimplify.cpp.