44#ifndef LLVM_ADT_GENERICUNIFORMITYIMPL_H
45#define LLVM_ADT_GENERICUNIFORMITYIMPL_H
57#define DEBUG_TYPE "uniformity"
92 using BlockT =
typename ContextT::BlockT;
101 bool empty()
const {
return Order.empty(); }
102 size_t size()
const {
return Order.size(); }
109 return Num < POIndex.size() && POIndex[Num] != InvalidIndex;
115 POIndex[Num] = Order.size();
116 Order.push_back(&BB);
118 <<
"): " << Context.print(&BB) <<
"\n");
119 if (IsReducibleCycleHeader)
120 ReducibleCycleHeaders.insert(&BB);
125 assert(Num < POIndex.size() && POIndex[Num] != InvalidIndex);
130 return ReducibleCycleHeaders.contains(BB);
139 const ContextT &Context;
149template <
typename>
class DivergencePropagator;
271 using BlockT =
typename ContextT::BlockT;
316 CachedControlDivDescs;
327 using BlockT =
typename ContextT::BlockT;
331 using UseT =
typename ContextT::UseT;
339 typename SyncDependenceAnalysisT::DivergenceDescriptor;
342 std::tuple<ConstValueRefT, InstructionT *, CycleRef>;
381 assert(
I.isTerminator() &&
"Expected a terminator instruction!");
396 if (ContextT::isAlwaysUniform(V))
477 void taintAndPushAllDefs(
const BlockT &JoinBlock);
481 void taintAndPushPhiNodes(
const BlockT &JoinBlock);
486 void propagateCycleExitDivergence(
const BlockT &DivExit,
CycleRef DivCycle);
489 void analyzeCycleExitDivergence(
CycleRef DefCycle);
501 bool isTemporalDivergent(
const BlockT &ObservingBlock,
505template <
typename ImplT>
513 using BlockT =
typename ContextT::BlockT;
523 typename SyncDependenceAnalysisT::DivergenceDescriptor;
538 std::unique_ptr<DivergenceDescriptorT>
DivDesc;
562 Out <<
"Propagator::BlockLabels {\n";
563 for (
int BlockIdx = (
int)
CyclePOT.size() - 1; BlockIdx >= 0; --BlockIdx) {
566 Out <<
Context.print(
Block) <<
"(" << BlockIdx <<
") : ";
570 Out <<
Context.print(Label) <<
"\n";
579 const auto *OldLabel =
label(&SuccBlock);
582 <<
"\tpushed label: " <<
Context.print(&PushedLabel)
584 <<
"\told label: " <<
Context.print(OldLabel) <<
"\n");
587 if (OldLabel == &PushedLabel)
590 if (OldLabel != &SuccBlock) {
591 auto SuccIdx =
CyclePOT.getIndex(&SuccBlock);
601 label(&SuccBlock) = &PushedLabel;
608 label(&SuccBlock) = &SuccBlock;
620 DivDesc->CycleDivBlocks.insert(&ExitBlock);
632 DivDesc->JoinDivBlocks.insert(&SuccBlock);
653 if (
CI.isReducible(
C))
656 if (
CI.isReducible(
P))
667 if (DivTermCycle && !
CI.contains(DivTermCycle, SuccBlock)) {
671 DivDesc->CycleDivBlocks.insert(SuccBlock);
673 <<
Context.print(SuccBlock) <<
"\n");
692 (!IrreducibleAncestor || !
CI.contains(IrreducibleAncestor,
Block)))
698 if (BlockIdx == DivTermIdx) {
704 << BlockIdx <<
"\n");
729 CI.getExitBlocks(BlockCycle, BlockCycleExits);
731 for (
auto *BlockCycleExit : BlockCycleExits) {
749 if (
CI.isReducible(
C)) {
755 CI.getExitBlocks(
C, Exits);
756 auto *Header =
CI.getHeader(
C);
757 auto *HeaderLabel =
label(Header);
758 for (
const auto *Exit : Exits) {
759 if (
label(Exit) != HeaderLabel) {
761 DivDesc->CycleDivBlocks.insert(Exit);
772template <
typename ContextT>
775 : CyclePO(Context), DT(DT), CI(CI) {
779template <
typename ContextT>
784 return EmptyDivergenceDesc;
788 auto ItCached = CachedControlDivDescs.find(DivTermBlock);
789 if (ItCached != CachedControlDivDescs.end())
790 return *ItCached->second;
800 for (
const auto *BB : Blocks) {
801 Out << LS << CI.getSSAContext().print(BB);
808 dbgs() <<
"\nResult (" << CI.getSSAContext().print(DivTermBlock)
809 <<
"):\n JoinDivBlocks: " << PrintBlockSet(DivDesc->JoinDivBlocks)
810 <<
" CycleDivBlocks: " << PrintBlockSet(DivDesc->CycleDivBlocks)
815 CachedControlDivDescs.try_emplace(DivTermBlock, std::move(DivDesc));
816 assert(ItInserted.second);
817 return *ItInserted.first->second;
820template <
typename ContextT>
833 if (
I.isTerminator()) {
837 <<
Context.print(
I.getParent()) <<
"\n");
847template <
typename ContextT>
857template <
typename ContextT>
860 UniformOverrides.insert(&Instr);
863template <
typename ContextT>
882template <
typename ContextT>
883void GenericUniformityAnalysisImpl<ContextT>::analyzeCycleExitDivergence(
886 CI.getExitBlocks(DefCycle, Exits);
887 for (
auto *Exit : Exits) {
888 for (
auto &Phi : Exit->phis()) {
889 if (usesValueFromCycle(Phi, DefCycle)) {
895 for (
auto *BB : CI.getBlocks(DefCycle)) {
897 [&](BlockT *Exit) {
return DT.dominates(BB, Exit); }))
899 for (
auto &
II : *BB) {
900 propagateTemporalDivergence(
II, DefCycle);
905template <
typename ContextT>
906void GenericUniformityAnalysisImpl<ContextT>::propagateCycleExitDivergence(
907 const BlockT &DivExit,
CycleRef InnerDivCycle) {
912 CycleRef ExitLevelCycle = CI.getCycle(&DivExit);
913 const unsigned CycleExitDepth =
914 ExitLevelCycle ? CI.getDepth(ExitLevelCycle) : 0;
917 while (DivCycle && CI.getDepth(DivCycle) > CycleExitDepth) {
919 <<
Context.print(CI.getHeader(DivCycle)) <<
"\n");
920 OuterDivCycle = DivCycle;
921 DivCycle = CI.getParentCycle(DivCycle);
924 <<
Context.print(CI.getHeader(OuterDivCycle)) <<
"\n");
926 if (!DivergentExitCycles.insert(OuterDivCycle))
931 for (
auto C : AssumedDivergent) {
932 if (CI.contains(
C, OuterDivCycle))
936 analyzeCycleExitDivergence(OuterDivCycle);
939template <
typename ContextT>
940void GenericUniformityAnalysisImpl<ContextT>::taintAndPushAllDefs(
943 for (
const auto &
I :
instrs(BB)) {
947 if (
I.isTerminator())
955template <
typename ContextT>
956void GenericUniformityAnalysisImpl<ContextT>::taintAndPushPhiNodes(
957 const BlockT &JoinBlock) {
960 for (
const auto &Phi : JoinBlock.phis()) {
968 if (ContextT::isConstantOrUndefValuePhi(Phi))
977template <
typename CycleInfoT>
981 [&](
CycleRef C) {
return CI.contains(
C, Candidate); }))
983 Cycles.push_back(Candidate);
992template <
typename CycleInfoT,
typename BlockT>
994 const BlockT *DivTermBlock,
const BlockT *JoinBlock) {
996 assert(CI.contains(Cycle, JoinBlock));
998 if (CI.contains(Cycle, DivTermBlock))
1002 CycleRef Parent = CI.getParentCycle(Cycle);
1003 while (Parent && !CI.contains(Parent, DivTermBlock)) {
1005 Parent = CI.getParentCycle(Cycle);
1011 (void)OriginalCycle;
1012 assert(Cycle == OriginalCycle || !CI.isReducible(Cycle));
1014 if (CI.isReducible(Cycle)) {
1015 assert(CI.getHeader(Cycle) == JoinBlock);
1019 LLVM_DEBUG(
dbgs() <<
"cycle made divergent by external branch\n");
1027template <
typename ContextT,
typename CycleInfoT,
typename BlockT,
1028 typename DominatorTreeT>
1030 const BlockT *DivTermBlock,
const BlockT *JoinBlock,
1031 const DominatorTreeT &DT, ContextT &Context) {
1033 <<
" for internal branch " << Context.print(DivTermBlock)
1035 if (DT.properlyDominates(DivTermBlock, JoinBlock))
1039 assert(Cycle && CI.contains(Cycle, JoinBlock));
1040 while (Cycle && !CI.contains(Cycle, DivTermBlock)) {
1041 Cycle = CI.getParentCycle(Cycle);
1043 if (!Cycle || CI.isReducible(Cycle))
1046 if (DT.properlyDominates(CI.getHeader(Cycle), JoinBlock))
1049 LLVM_DEBUG(
dbgs() <<
" header " << Context.print(CI.getHeader(Cycle))
1050 <<
" does not dominate join\n");
1052 CycleRef Parent = CI.getParentCycle(Cycle);
1053 while (Parent && !DT.properlyDominates(CI.getHeader(Parent), JoinBlock)) {
1054 LLVM_DEBUG(
dbgs() <<
" header " << Context.print(CI.getHeader(Parent))
1055 <<
" does not dominate join\n");
1057 Parent = CI.getParentCycle(Parent);
1060 LLVM_DEBUG(
dbgs() <<
" cycle made divergent by internal branch\n");
1064template <
typename ContextT,
typename CycleInfoT,
typename BlockT,
1065 typename DominatorTreeT>
1068 const BlockT *DivTermBlock,
const BlockT *JoinBlock,
1069 const DominatorTreeT &DT, ContextT &Context) {
1086template <
typename ContextT>
1087bool GenericUniformityAnalysisImpl<ContextT>::isTemporalDivergent(
1088 const BlockT &ObservingBlock,
const InstructionT &Def)
const {
1089 const BlockT *DefBlock = Def.getParent();
1090 for (
auto C = CI.getCycle(DefBlock);
C && !CI.contains(
C, &ObservingBlock);
1091 C = CI.getParentCycle(
C)) {
1092 if (DivergentExitCycles.contains(
C)) {
1099template <
typename ContextT>
1102 const auto *DivTermBlock = Term.getParent();
1108 if (!DT.isReachableFromEntry(DivTermBlock))
1111 const auto &DivDesc = SDA.getJoinBlocks(DivTermBlock);
1115 for (
const auto *JoinBlock : DivDesc.JoinDivBlocks) {
1120 CI,
C, DivTermBlock, JoinBlock, DT,
Context)) {
1125 taintAndPushPhiNodes(*JoinBlock);
1131 return CI.getDepth(
A) >
CI.getDepth(
B);
1139 for (
auto C : DivCycles) {
1143 for (
const BlockT *BB :
CI.getBlocks(
C)) {
1144 taintAndPushAllDefs(*BB);
1148 CycleRef BranchCycle =
CI.getCycle(DivTermBlock);
1149 assert(DivDesc.CycleDivBlocks.empty() || BranchCycle);
1150 for (
const auto *DivExitBlock : DivDesc.CycleDivBlocks) {
1151 propagateCycleExitDivergence(*DivExitBlock, BranchCycle);
1155template <
typename ContextT>
1167 if (
I->isTerminator()) {
1178template <
typename ContextT>
1184template <
typename ContextT>
1187 return UniformOverrides.contains(&Instr);
1190template <
typename ContextT>
1196template <
typename ContextT>
1200 DA.reset(
new ImplT{DT, CI,
TTI});
1203template <
typename ContextT>
1208 constexpr bool IsMIR = std::is_same<InstructionT, MachineInstr>::value;
1209 std::string NewLine = IsMIR ?
"" :
"\n";
1211 bool FoundDivergence =
false;
1215 if (!AssumedDivergent.empty()) {
1216 FoundDivergence =
true;
1217 OS <<
"CYCLES ASSUMED DIVERGENT:\n";
1218 for (
auto C : AssumedDivergent) {
1219 OS <<
" " <<
CI.print(
C) <<
'\n';
1223 if (!DivergentExitCycles.empty()) {
1224 FoundDivergence =
true;
1225 OS <<
"CYCLES WITH DIVERGENT EXIT:\n";
1226 for (
auto C : DivergentExitCycles) {
1227 OS <<
" " <<
CI.print(
C) <<
'\n';
1232 FoundDivergence =
true;
1233 OS <<
"\nTEMPORAL DIVERGENCE LIST:\n";
1236 OS <<
"Value :" <<
Context.print(Val) << NewLine
1237 <<
"Used by :" <<
Context.print(UseInst) << NewLine
1238 <<
"Outside cycle :" <<
CI.print(
C) <<
"\n\n";
1245 OS <<
"DEFINITIONS\n";
1248 for (
auto Value : Defs) {
1250 FoundDivergence =
true;
1251 OS <<
" DIVERGENT: ";
1258 OS <<
"TERMINATORS\n";
1262 if (DivergentTerminators)
1263 FoundDivergence =
true;
1264 for (
auto *
T : Terms) {
1265 if (DivergentTerminators)
1266 OS <<
" DIVERGENT: ";
1272 OS <<
"END BLOCK\n";
1275 if (!FoundDivergence)
1276 OS <<
"ALL VALUES UNIFORM\n";
1279template <
typename ContextT>
1283 return make_range(DA->TemporalDivergenceList.begin(),
1284 DA->TemporalDivergenceList.end());
1287template <
typename ContextT>
1288const typename ContextT::FunctionT &
1290 return DA->getFunction();
1293template <
typename ContextT>
1296 return DA->getCycleInfo();
1302template <
typename ContextT>
1304 return DA && DA->isDivergent(V);
1307template <
typename ContextT>
1310 assert(
I->isTerminator() &&
"Expected a terminator instruction!");
1311 return DA && DA->isDivergentTerminator(*
I);
1314template <
typename ContextT>
1316 return DA && DA->isDivergentUse(U);
1319template <
typename ContextT>
1321 return DA && DA->hasDivergentTerminator(
B);
1324template <
typename ContextT>
1331template <
typename ContextT>
1334 Out <<
" Uniformity analysis not computed (no branch divergence).\n";
1340template <
typename ContextT>
1341void llvm::ModifiedPostOrder<ContextT>::computeStackPO(
1345 while (!Stack.empty()) {
1346 auto *NextBB = Stack.back();
1347 if (Finalized.
count(NextBB)) {
1351 LLVM_DEBUG(
dbgs() <<
" visiting " << CI.getSSAContext().print(NextBB)
1353 CycleRef NestedCycle = CI.getCycle(NextBB);
1354 if (
C != NestedCycle &&
1355 (!
C || (NestedCycle && CI.contains(
C, NestedCycle)))) {
1357 while (CI.getParentCycle(NestedCycle) !=
C)
1358 NestedCycle = CI.getParentCycle(NestedCycle);
1361 CI.getExitBlocks(NestedCycle, NestedExits);
1362 bool PushedNodes =
false;
1363 for (
auto *NestedExitBB : NestedExits) {
1365 << CI.getSSAContext().print(NestedExitBB) <<
"\n");
1366 if (
C && !CI.contains(
C, NestedExitBB))
1368 if (Finalized.
count(NestedExitBB))
1371 Stack.push_back(NestedExitBB);
1373 << CI.getSSAContext().print(NestedExitBB) <<
"\n");
1378 computeCyclePO(CI, NestedCycle, Finalized);
1385 bool PushedNodes =
false;
1388 << CI.getSSAContext().print(SuccBB) <<
"\n");
1389 if (
C && !CI.contains(
C, SuccBB))
1391 if (Finalized.
count(SuccBB))
1394 Stack.push_back(SuccBB);
1395 LLVM_DEBUG(
dbgs() <<
" pushed succ: " << CI.getSSAContext().print(SuccBB)
1401 << CI.getSSAContext().print(NextBB) <<
"\n");
1403 Finalized.
insert(NextBB);
1404 appendBlock(*NextBB);
1410template <
typename ContextT>
1411void ModifiedPostOrder<ContextT>::computeCyclePO(
1416 auto *CycleHeader = CI.getHeader(
C);
1419 << CI.getSSAContext().print(CycleHeader) <<
"\n");
1420 assert(!Finalized.count(CycleHeader));
1421 Finalized.insert(CycleHeader);
1425 << CI.getSSAContext().print(CycleHeader) <<
"\n");
1426 appendBlock(*CycleHeader, CI.isReducible(
C));
1430 LLVM_DEBUG(
dbgs() <<
" examine succ: " << CI.getSSAContext().print(BB)
1432 if (!CI.contains(
C, BB))
1434 if (BB == CycleHeader)
1436 if (!Finalized.count(BB)) {
1437 LLVM_DEBUG(
dbgs() <<
" pushed succ: " << CI.getSSAContext().print(BB)
1439 Stack.push_back(BB);
1444 computeStackPO(Stack, CI,
C, Finalized);
1450template <
typename ContextT>
1454 auto *
F = CI.getFunction();
1457 Stack.push_back(&
F->front());
1458 computeStackPO(Stack, CI,
CycleRef(), Finalized);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file defines the DenseSet and SmallDenseSet classes.
uint64_t IntrinsicInst * II
This file implements a set that has insertion order iteration characteristics.
This file defines the SmallPtrSet class.
This file defines the SparseBitVector class.
static const unsigned InvalidIndex
static Function * getFunction(FunctionType *Ty, const Twine &Name, Module *M)
Opaque handle to a cycle within a GenericCycleInfo that wraps the cycle's preorder index.
Implements a dense probed hash-table based set.
Compute divergence starting with a divergent branch.
const ModifiedPO & CyclePOT
GenericSyncDependenceAnalysis< ContextT > SyncDependenceAnalysisT
const BlockT *& label(const BlockT *BB)
typename ContextT::DominatorTreeT DominatorTreeT
bool computeJoin(const BlockT &SuccBlock, const BlockT &PushedLabel)
const BlockT & DivTermBlock
std::unique_ptr< DivergenceDescriptorT > DivDesc
void printDefs(raw_ostream &Out)
typename ContextT::FunctionT FunctionT
GenericCycleInfo< ContextT > CycleInfoT
SmallVector< const BlockT * > BlockLabels
const DominatorTreeT & DT
ModifiedPostOrder< ContextT > ModifiedPO
std::unique_ptr< DivergenceDescriptorT > computeJoinPoints()
SparseBitVector FreshLabels
bool visitCycleExitEdge(const BlockT &ExitBlock, const BlockT &Label)
typename ContextT::ValueRefT ValueRefT
typename ContextT::BlockT BlockT
DivergencePropagator(const ModifiedPO &CyclePOT, const DominatorTreeT &DT, const CycleInfoT &CI, const BlockT &DivTermBlock)
bool visitEdge(const BlockT &SuccBlock, const BlockT &Label)
typename SyncDependenceAnalysisT::DivergenceDescriptor DivergenceDescriptorT
Cycle information for a function.
Locate join blocks for disjoint paths starting at a divergent branch.
GenericSyncDependenceAnalysis(const ContextT &Context, const DominatorTreeT &DT, const CycleInfoT &CI)
ModifiedPostOrder< ContextT > ModifiedPO
DivergencePropagator< ContextT > DivergencePropagatorT
SmallPtrSet< const BlockT *, 4 > ConstBlockSet
typename ContextT::DominatorTreeT DominatorTreeT
GenericCycleInfo< ContextT > CycleInfoT
typename ContextT::FunctionT FunctionT
typename ContextT::InstructionT InstructionT
typename ContextT::BlockT BlockT
typename ContextT::ValueRefT ValueRefT
const DivergenceDescriptor & getJoinBlocks(const BlockT *DivTermBlock)
Computes divergent join points and cycle exits caused by branch divergence in Term.
A helper class to return the specified delimiter string after the first invocation of operator String...
Construct a specially modified post-order traversal of cycles.
typename ContextT::FunctionT FunctionT
bool isReducibleCycleHeader(const BlockT *BB) const
void appendBlock(const BlockT &BB, bool IsReducibleCycleHeader=false)
const BlockT * operator[](size_t Idx) const
ModifiedPostOrder(const ContextT &C)
unsigned count(BlockT *BB) const
void compute(const CycleInfoT &CI)
Generically compute the modified post order.
GenericCycleInfo< ContextT > CycleInfoT
unsigned getIndex(const BlockT *BB) const
typename std::vector< BlockT * >::const_iterator const_iterator
typename ContextT::DominatorTreeT DominatorTreeT
typename ContextT::BlockT BlockT
Simple wrapper around std::function<void(raw_ostream&)>.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
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 push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
LLVM Value Representation.
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
This is an optimization pass for GlobalISel generic memory operations.
bool insertIfNotContained(const CycleInfoT &CI, SmallVector< CycleRef > &Cycles, CycleRef Candidate)
Add Candidate to Cycles if it is not already contained in Cycles.
CycleRef getExtDivCycle(const CycleInfoT &CI, CycleRef Cycle, const BlockT *DivTermBlock, const BlockT *JoinBlock)
Return the outermost cycle made divergent by branch outside it.
auto successors(const MachineBasicBlock *BB)
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
CycleRef getOutermostDivergentCycle(const CycleInfoT &CI, CycleRef Cycle, const BlockT *DivTermBlock, const BlockT *JoinBlock, const DominatorTreeT &DT, ContextT &Context)
void sort(IteratorTy Start, IteratorTy End)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
auto succ_size(const MachineBasicBlock *BB)
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
auto instrs(const MachineBasicBlock &BB)
CycleRef getIntDivCycle(const CycleInfoT &CI, CycleRef Cycle, const BlockT *DivTermBlock, const BlockT *JoinBlock, const DominatorTreeT &DT, ContextT &Context)
Return the outermost cycle made divergent by branch inside it.
Information discovered by the sync dependence analysis for each divergent branch.
ConstBlockSet CycleDivBlocks
ConstBlockSet JoinDivBlocks