LLVM 23.0.0git
LoopInterchange.cpp File Reference

Go to the source code of this file.

Macros

#define DEBUG_TYPE   "loop-interchange"

Functions

 STATISTIC (LoopsInterchanged, "Number of loops interchanged")
static bool noDuplicateRulesAndIgnore (ArrayRef< RuleTy > Rules)
static void printDepMatrix (CharMatrix &DepMatrix)
static bool inThisOrder (const Instruction *Src, const Instruction *Dst)
 Return true if Src appears before Dst in the same basic block.
static bool populateDependencyMatrix (CharMatrix &DepMatrix, unsigned Level, Loop *L, DependenceInfo *DI, ScalarEvolution *SE, OptimizationRemarkEmitter *ORE)
static void interChangeDependencies (CharMatrix &DepMatrix, unsigned FromIndx, unsigned ToIndx)
static std::optional< boolisLexicographicallyPositive (ArrayRef< char > DV, unsigned Begin, unsigned End)
static bool isLegalToInterChangeLoops (CharMatrix &DepMatrix, unsigned InnerLoopId, unsigned OuterLoopId)
static void populateWorklist (Loop &L, LoopVector &LoopList)
static bool hasSupportedLoopDepth (ArrayRef< Loop * > LoopList, OptimizationRemarkEmitter &ORE)
static bool isComputableLoopNest (ScalarEvolution *SE, ArrayRef< Loop * > LoopList)
static ValuefollowLCSSA (Value *SV)
static bool checkReductionKind (Loop *L, PHINode *PHI, SmallVectorImpl< Instruction * > &HasNoWrapInsts, SmallVectorImpl< Instruction * > &HasNoInfInsts)
static PHINodefindInnerReductionPhi (Loop *L, Value *V, SmallVectorImpl< Instruction * > &HasNoWrapInsts, SmallVectorImpl< Instruction * > &HasNoInfInsts)
static bool areInnerLoopExitPHIsSupported (Loop *OuterL, Loop *InnerL, SmallPtrSetImpl< PHINode * > &Reductions, PHINode *LcssaReduction)
 We currently only support LCSSA PHI nodes in the inner loop exit if their users are either of the following:
static bool areOuterLoopExitPHIsSupported (Loop *OuterLoop, Loop *InnerLoop)
static bool areInnerLoopLatchPHIsSupported (Loop *OuterLoop, Loop *InnerLoop)
std::optional< const SCEV * > getAddRecCoefficient (ScalarEvolution &SE, const SCEV *S, const Loop *L)
 If \S contains an affine addrec for L, return the step recurrence of it.
static bool canVectorize (const CharMatrix &DepMatrix, unsigned LoopId)
 Return true if we can vectorize the loop specified by LoopId.
static void moveBBContents (BasicBlock *FromBB, Instruction *InsertBefore)
 Move all instructions except the terminator from FromBB right before InsertBefore.
static void swapBBContents (BasicBlock *BB1, BasicBlock *BB2)
 Swap instructions between BB1 and BB2 but keep terminators intact.
static void updateSuccessor (Instruction *Term, BasicBlock *OldBB, BasicBlock *NewBB, std::vector< DominatorTree::UpdateType > &DTUpdates, bool MustUpdateOnce=true)
static void moveLCSSAPhis (BasicBlock *InnerExit, BasicBlock *InnerHeader, BasicBlock *InnerLatch, BasicBlock *OuterHeader, BasicBlock *OuterLatch, BasicBlock *OuterExit, Loop *InnerLoop, LoopInfo *LI)
static void simplifyLCSSAPhis (Loop *OuterLoop, Loop *InnerLoop)
 This deals with a corner case when a LCSSA phi node appears in a non-exit block: the outer loop latch block does not need to be exit block of the inner loop.

Variables

static cl::opt< int > LoopInterchangeCostThreshold ("loop-interchange-threshold", cl::init(0), cl::Hidden, cl::desc("Interchange if you gain more than this number"))
static cl::opt< unsigned int > MaxMemInstrRatio ("loop-interchange-max-mem-instr-ratio", cl::init(4), cl::Hidden, cl::desc("Maximum number of load/store instructions squared in relation to " "the total number of instructions. Higher value may lead to more " "interchanges at the cost of compile-time"))
static cl::opt< unsigned int > MinLoopNestDepth ("loop-interchange-min-loop-nest-depth", cl::init(2), cl::Hidden, cl::desc("Minimum depth of loop nest considered for the transform"))
static cl::opt< unsigned int > MaxLoopNestDepth ("loop-interchange-max-loop-nest-depth", cl::init(10), cl::Hidden, cl::desc("Maximum depth of loop nest considered for the transform"))
static cl::list< RuleTy > Profitabilities ("loop-interchange-profitabilities", cl::MiscFlags::CommaSeparated, cl::Hidden, cl::desc("List of profitability heuristics to be used. They are applied in " "the given order"), cl::list_init< RuleTy >({RuleTy::PerInstrOrderCost, RuleTy::ForVectorization}), cl::values(clEnumValN(RuleTy::PerLoopCacheAnalysis, "cache", "Prioritize loop cache cost"), clEnumValN(RuleTy::PerInstrOrderCost, "instorder", "Prioritize the IVs order of each instruction"), clEnumValN(RuleTy::ForVectorization, "vectorize", "Prioritize vectorization"), clEnumValN(RuleTy::Ignore, "ignore", "Ignore profitability, force interchange (does not " "work with other options)")))
static cl::opt< boolEnableReduction2Memory ("loop-interchange-reduction-to-mem", cl::init(false), cl::Hidden, cl::desc("Support for the inner-loop reduction pattern."))

Macro Definition Documentation

◆ DEBUG_TYPE

#define DEBUG_TYPE   "loop-interchange"

Definition at line 55 of file LoopInterchange.cpp.

Function Documentation

◆ areInnerLoopExitPHIsSupported()

bool areInnerLoopExitPHIsSupported ( Loop * OuterL,
Loop * InnerL,
SmallPtrSetImpl< PHINode * > & Reductions,
PHINode * LcssaReduction )
static

We currently only support LCSSA PHI nodes in the inner loop exit if their users are either of the following:

  • Reduction PHIs
  • PHIs outside the outer loop
  • PHIs belonging to the latch of the outer loop

These conditions mean that we are only interested in the final value after the inner loop.

Definition at line 1367 of file LoopInterchange.cpp.

References llvm::any_of(), llvm::LoopBase< BlockT, LoopT >::getUniqueExitBlock(), PHI, llvm::BasicBlock::phis(), and llvm::Reductions.

◆ areInnerLoopLatchPHIsSupported()

◆ areOuterLoopExitPHIsSupported()

◆ canVectorize()

bool canVectorize ( const CharMatrix & DepMatrix,
unsigned LoopId )
static

Return true if we can vectorize the loop specified by LoopId.

Definition at line 1734 of file LoopInterchange.cpp.

References assert().

◆ checkReductionKind()

◆ findInnerReductionPhi()

PHINode * findInnerReductionPhi ( Loop * L,
Value * V,
SmallVectorImpl< Instruction * > & HasNoWrapInsts,
SmallVectorImpl< Instruction * > & HasNoInfInsts )
static

◆ followLCSSA()

Value * followLCSSA ( Value * SV)
static

Definition at line 975 of file LoopInterchange.cpp.

References llvm::dyn_cast(), followLCSSA(), and PHI.

Referenced by followLCSSA(), and moveLCSSAPhis().

◆ getAddRecCoefficient()

std::optional< const SCEV * > getAddRecCoefficient ( ScalarEvolution & SE,
const SCEV * S,
const Loop * L )

If \S contains an affine addrec for L, return the step recurrence of it.

If \S is loop invariant with respect to L, return nullptr. Otherwise, return std::nullopt, which indicates we cannot determine the coefficient of the addrec for L in \S. TODO: Handle more complex cases. Maybe using SCEVTraversal is a good way to do that.

Definition at line 1615 of file LoopInterchange.cpp.

References assert(), llvm::dbgs(), llvm::dyn_cast(), getAddRecCoefficient(), llvm::SCEVAddRecExpr::getLoop(), llvm::SCEVAddRecExpr::getStart(), llvm::SCEVAddRecExpr::getStepRecurrence(), llvm::SCEVAddRecExpr::isAffine(), llvm::ScalarEvolution::isLoopInvariant(), and LLVM_DEBUG.

Referenced by getAddRecCoefficient().

◆ hasSupportedLoopDepth()

◆ interChangeDependencies()

void interChangeDependencies ( CharMatrix & DepMatrix,
unsigned FromIndx,
unsigned ToIndx )
static

Definition at line 339 of file LoopInterchange.cpp.

References std::swap().

◆ inThisOrder()

bool inThisOrder ( const Instruction * Src,
const Instruction * Dst )
static

Return true if Src appears before Dst in the same basic block.

Precondition: Src and \Dst are distinct instructions within the same basic block.

Definition at line 151 of file LoopInterchange.cpp.

References assert(), I, and llvm_unreachable.

Referenced by populateDependencyMatrix().

◆ isComputableLoopNest()

bool isComputableLoopNest ( ScalarEvolution * SE,
ArrayRef< Loop * > LoopList )
static

◆ isLegalToInterChangeLoops()

bool isLegalToInterChangeLoops ( CharMatrix & DepMatrix,
unsigned InnerLoopId,
unsigned OuterLoopId )
static

Definition at line 362 of file LoopInterchange.cpp.

References isLexicographicallyPositive(), and std::swap().

◆ isLexicographicallyPositive()

std::optional< bool > isLexicographicallyPositive ( ArrayRef< char > DV,
unsigned Begin,
unsigned End )
static

Definition at line 351 of file LoopInterchange.cpp.

References llvm::ArrayRef< T >::slice().

Referenced by isLegalToInterChangeLoops().

◆ moveBBContents()

void moveBBContents ( BasicBlock * FromBB,
Instruction * InsertBefore )
static

◆ moveLCSSAPhis()

◆ noDuplicateRulesAndIgnore()

bool noDuplicateRulesAndIgnore ( ArrayRef< RuleTy > Rules)
static

Definition at line 127 of file LoopInterchange.cpp.

◆ populateDependencyMatrix()

◆ populateWorklist()

◆ printDepMatrix()

void printDepMatrix ( CharMatrix & DepMatrix)
static

Definition at line 138 of file LoopInterchange.cpp.

References D(), llvm::dbgs(), llvm::drop_end(), and LLVM_DEBUG.

◆ simplifyLCSSAPhis()

void simplifyLCSSAPhis ( Loop * OuterLoop,
Loop * InnerLoop )
static

This deals with a corner case when a LCSSA phi node appears in a non-exit block: the outer loop latch block does not need to be exit block of the inner loop.

Consider a loop that was in LCSSA form, but then some transformation like loop-unswitch comes along and creates an empty block, where BB5 in this example is the outer loop latch block:

BB4: br label BB5 BB5: old.cond.lcssa = phi i16 [ cond, BB4 ] br outer.header

Interchange then brings it in LCSSA form again resulting in this chain of single-input phi nodes:

BB4: new.cond.lcssa = phi i16 [ cond, BB3 ] br label BB5 BB5: old.cond.lcssa = phi i16 [ new.cond.lcssa, BB4 ]

The problem is that interchange can reoder blocks BB4 and BB5 placing the use before the def if we don't check this. The solution is to simplify lcssa phi nodes (remove) if they appear in non-exit blocks.

Definition at line 2308 of file LoopInterchange.cpp.

References assert(), llvm::dbgs(), llvm::LoopBase< BlockT, LoopT >::getExitBlock(), llvm::LoopBase< BlockT, LoopT >::getLoopLatch(), LLVM_DEBUG, llvm::make_pointer_range(), and llvm::BasicBlock::phis().

◆ STATISTIC()

STATISTIC ( LoopsInterchanged ,
"Number of loops interchanged"  )

◆ swapBBContents()

void swapBBContents ( BasicBlock * BB1,
BasicBlock * BB2 )
static

Swap instructions between BB1 and BB2 but keep terminators intact.

Definition at line 2147 of file LoopInterchange.cpp.

References llvm::ilist_node_impl< OptionsT >::getIterator(), llvm::BasicBlock::getTerminator(), I, llvm::map_range(), and moveBBContents().

◆ updateSuccessor()

void updateSuccessor ( Instruction * Term,
BasicBlock * OldBB,
BasicBlock * NewBB,
std::vector< DominatorTree::UpdateType > & DTUpdates,
bool MustUpdateOnce = true )
static

Definition at line 2166 of file LoopInterchange.cpp.

References assert(), Changed, llvm::count(), and llvm::successors().

Variable Documentation

◆ EnableReduction2Memory

cl::opt< bool > EnableReduction2Memory("loop-interchange-reduction-to-mem", cl::init(false), cl::Hidden, cl::desc("Support for the inner-loop reduction pattern.")) ( "loop-interchange-reduction-to-mem" ,
cl::init(false) ,
cl::Hidden ,
cl::desc("Support for the inner-loop reduction pattern.")  )
static

◆ LoopInterchangeCostThreshold

cl::opt< int > LoopInterchangeCostThreshold("loop-interchange-threshold", cl::init(0), cl::Hidden, cl::desc("Interchange if you gain more than this number")) ( "loop-interchange-threshold" ,
cl::init(0) ,
cl::Hidden ,
cl::desc("Interchange if you gain more than this number")  )
static

◆ MaxLoopNestDepth

cl::opt< unsigned int > MaxLoopNestDepth("loop-interchange-max-loop-nest-depth", cl::init(10), cl::Hidden, cl::desc("Maximum depth of loop nest considered for the transform")) ( "loop-interchange-max-loop-nest-depth" ,
cl::init(10) ,
cl::Hidden ,
cl::desc("Maximum depth of loop nest considered for the transform")  )
static

Referenced by hasSupportedLoopDepth().

◆ MaxMemInstrRatio

cl::opt< unsigned int > MaxMemInstrRatio("loop-interchange-max-mem-instr-ratio", cl::init(4), cl::Hidden, cl::desc("Maximum number of load/store instructions squared in relation to " "the total number of instructions. Higher value may lead to more " "interchanges at the cost of compile-time")) ( "loop-interchange-max-mem-instr-ratio" ,
cl::init(4) ,
cl::Hidden ,
cl::desc("Maximum number of load/store instructions squared in relation to " "the total number of instructions. Higher value may lead to more " "interchanges at the cost of compile-time")  )
static

◆ MinLoopNestDepth

cl::opt< unsigned int > MinLoopNestDepth("loop-interchange-min-loop-nest-depth", cl::init(2), cl::Hidden, cl::desc("Minimum depth of loop nest considered for the transform")) ( "loop-interchange-min-loop-nest-depth" ,
cl::init(2) ,
cl::Hidden ,
cl::desc("Minimum depth of loop nest considered for the transform")  )
static

Referenced by hasSupportedLoopDepth().

◆ Profitabilities

cl::list< RuleTy > Profitabilities("loop-interchange-profitabilities", cl::MiscFlags::CommaSeparated, cl::Hidden, cl::desc("List of profitability heuristics to be used. They are applied in " "the given order"), cl::list_init< RuleTy >({RuleTy::PerInstrOrderCost, RuleTy::ForVectorization}), cl::values(clEnumValN(RuleTy::PerLoopCacheAnalysis, "cache", "Prioritize loop cache cost"), clEnumValN(RuleTy::PerInstrOrderCost, "instorder", "Prioritize the IVs order of each instruction"), clEnumValN(RuleTy::ForVectorization, "vectorize", "Prioritize vectorization"), clEnumValN(RuleTy::Ignore, "ignore", "Ignore profitability, force interchange (does not " "work with other options)"))) ( "loop-interchange-profitabilities" ,
cl::MiscFlags::CommaSeparated ,
cl::Hidden ,
cl::desc("List of profitability heuristics to be used. They are applied in " "the given order") ,
cl::list_init< RuleTy > {RuleTy::PerInstrOrderCost, RuleTy::ForVectorization},
cl::values(clEnumValN(RuleTy::PerLoopCacheAnalysis, "cache", "Prioritize loop cache cost"), clEnumValN(RuleTy::PerInstrOrderCost, "instorder", "Prioritize the IVs order of each instruction"), clEnumValN(RuleTy::ForVectorization, "vectorize", "Prioritize vectorization"), clEnumValN(RuleTy::Ignore, "ignore", "Ignore profitability, force interchange (does not " "work with other options)"))  )
static