45#ifndef LLVM_ADT_GENERICUNIFORMITYIMPL_H
46#define LLVM_ADT_GENERICUNIFORMITYIMPL_H
58#define DEBUG_TYPE "uniformity"
93 using BlockT =
typename ContextT::BlockT;
102 bool empty()
const {
return Order.empty(); }
103 size_t size()
const {
return Order.size(); }
110 return Num < POIndex.size() && POIndex[Num] != InvalidIndex;
116 POIndex[Num] = Order.size();
117 Order.push_back(&BB);
119 <<
"): " << Context.print(&BB) <<
"\n");
120 if (IsReducibleCycleHeader)
121 ReducibleCycleHeaders.insert(&BB);
126 assert(Num < POIndex.size() && POIndex[Num] != InvalidIndex);
131 return ReducibleCycleHeaders.contains(BB);
140 const ContextT &Context;
150template <
typename>
class DivergencePropagator;
272 using BlockT =
typename ContextT::BlockT;
317 CachedControlDivDescs;
328 using BlockT =
typename ContextT::BlockT;
332 using UseT =
typename ContextT::UseT;
340 typename SyncDependenceAnalysisT::DivergenceDescriptor;
343 std::tuple<ConstValueRefT, InstructionT *, CycleRef>;
382 assert(
I.isTerminator() &&
"Expected a terminator instruction!");
397 if (ContextT::isAlwaysUniform(V))
478 void taintAndPushAllDefs(
const BlockT &JoinBlock);
482 void taintAndPushPhiNodes(
const BlockT &JoinBlock);
487 void propagateCycleExitDivergence(
const BlockT &DivExit,
CycleRef DivCycle);
490 void analyzeCycleExitDivergence(
CycleRef DefCycle);
502 bool isTemporalDivergent(
const BlockT &ObservingBlock,
506template <
typename ImplT>
514 using BlockT =
typename ContextT::BlockT;
524 typename SyncDependenceAnalysisT::DivergenceDescriptor;
539 std::unique_ptr<DivergenceDescriptorT>
DivDesc;
563 Out <<
"Propagator::BlockLabels {\n";
564 for (
int BlockIdx = (
int)
CyclePOT.size() - 1; BlockIdx >= 0; --BlockIdx) {
567 Out <<
Context.print(
Block) <<
"(" << BlockIdx <<
") : ";
571 Out <<
Context.print(Label) <<
"\n";
580 const auto *OldLabel =
label(&SuccBlock);
583 <<
"\tpushed label: " <<
Context.print(&PushedLabel)
585 <<
"\told label: " <<
Context.print(OldLabel) <<
"\n");
588 if (OldLabel == &PushedLabel)
591 if (OldLabel != &SuccBlock) {
592 auto SuccIdx =
CyclePOT.getIndex(&SuccBlock);
602 label(&SuccBlock) = &PushedLabel;
609 label(&SuccBlock) = &SuccBlock;
621 DivDesc->CycleDivBlocks.insert(&ExitBlock);
633 DivDesc->JoinDivBlocks.insert(&SuccBlock);
654 if (
CI.isReducible(
C))
657 if (
CI.isReducible(
P))
668 if (DivTermCycle && !
CI.contains(DivTermCycle, SuccBlock)) {
672 DivDesc->CycleDivBlocks.insert(SuccBlock);
674 <<
Context.print(SuccBlock) <<
"\n");
693 (!IrreducibleAncestor || !
CI.contains(IrreducibleAncestor,
Block)))
699 if (BlockIdx == DivTermIdx) {
705 << BlockIdx <<
"\n");
730 CI.getExitBlocks(BlockCycle, BlockCycleExits);
732 for (
auto *BlockCycleExit : BlockCycleExits) {
750 if (
CI.isReducible(
C)) {
756 CI.getExitBlocks(
C, Exits);
757 auto *Header =
CI.getHeader(
C);
758 auto *HeaderLabel =
label(Header);
759 for (
const auto *Exit : Exits) {
760 if (
label(Exit) != HeaderLabel) {
762 DivDesc->CycleDivBlocks.insert(Exit);
773template <
typename ContextT>
776 : CyclePO(Context), DT(DT), CI(CI) {
780template <
typename ContextT>
785 return EmptyDivergenceDesc;
789 auto ItCached = CachedControlDivDescs.find(DivTermBlock);
790 if (ItCached != CachedControlDivDescs.end())
791 return *ItCached->second;
801 for (
const auto *BB : Blocks) {
802 Out << LS << CI.getSSAContext().print(BB);
809 dbgs() <<
"\nResult (" << CI.getSSAContext().print(DivTermBlock)
810 <<
"):\n JoinDivBlocks: " << PrintBlockSet(DivDesc->JoinDivBlocks)
811 <<
" CycleDivBlocks: " << PrintBlockSet(DivDesc->CycleDivBlocks)
816 CachedControlDivDescs.try_emplace(DivTermBlock, std::move(DivDesc));
817 assert(ItInserted.second);
818 return *ItInserted.first->second;
821template <
typename ContextT>
834 if (
I.isTerminator()) {
838 <<
Context.print(
I.getParent()) <<
"\n");
848template <
typename ContextT>
858template <
typename ContextT>
861 UniformOverrides.insert(&Instr);
864template <
typename ContextT>
883template <
typename ContextT>
884void GenericUniformityAnalysisImpl<ContextT>::analyzeCycleExitDivergence(
887 CI.getExitBlocks(DefCycle, Exits);
888 for (
auto *Exit : Exits) {
889 for (
auto &Phi : Exit->phis()) {
890 if (usesValueFromCycle(Phi, DefCycle)) {
896 for (
auto *BB : CI.getBlocks(DefCycle)) {
898 [&](BlockT *Exit) {
return DT.dominates(BB, Exit); }))
900 for (
auto &
II : *BB) {
901 propagateTemporalDivergence(
II, DefCycle);
906template <
typename ContextT>
907void GenericUniformityAnalysisImpl<ContextT>::propagateCycleExitDivergence(
908 const BlockT &DivExit,
CycleRef InnerDivCycle) {
913 CycleRef ExitLevelCycle = CI.getCycle(&DivExit);
914 const unsigned CycleExitDepth =
915 ExitLevelCycle ? CI.getDepth(ExitLevelCycle) : 0;
918 while (DivCycle && CI.getDepth(DivCycle) > CycleExitDepth) {
920 <<
Context.print(CI.getHeader(DivCycle)) <<
"\n");
921 OuterDivCycle = DivCycle;
922 DivCycle = CI.getParentCycle(DivCycle);
925 <<
Context.print(CI.getHeader(OuterDivCycle)) <<
"\n");
927 if (!DivergentExitCycles.insert(OuterDivCycle))
932 for (
auto C : AssumedDivergent) {
933 if (CI.contains(
C, OuterDivCycle))
937 analyzeCycleExitDivergence(OuterDivCycle);
940template <
typename ContextT>
941void GenericUniformityAnalysisImpl<ContextT>::taintAndPushAllDefs(
944 for (
const auto &
I :
instrs(BB)) {
948 if (
I.isTerminator())
956template <
typename ContextT>
957void GenericUniformityAnalysisImpl<ContextT>::taintAndPushPhiNodes(
958 const BlockT &JoinBlock) {
961 for (
const auto &Phi : JoinBlock.phis()) {
969 if (ContextT::isConstantOrUndefValuePhi(Phi))
978template <
typename CycleInfoT>
982 [&](
CycleRef C) {
return CI.contains(
C, Candidate); }))
984 Cycles.push_back(Candidate);
993template <
typename CycleInfoT,
typename BlockT>
995 const BlockT *DivTermBlock,
const BlockT *JoinBlock) {
997 assert(CI.contains(Cycle, JoinBlock));
999 if (CI.contains(Cycle, DivTermBlock))
1003 CycleRef Parent = CI.getParentCycle(Cycle);
1004 while (Parent && !CI.contains(Parent, DivTermBlock)) {
1006 Parent = CI.getParentCycle(Cycle);
1012 (void)OriginalCycle;
1013 assert(Cycle == OriginalCycle || !CI.isReducible(Cycle));
1015 if (CI.isReducible(Cycle)) {
1016 assert(CI.getHeader(Cycle) == JoinBlock);
1020 LLVM_DEBUG(
dbgs() <<
"cycle made divergent by external branch\n");
1028template <
typename ContextT,
typename CycleInfoT,
typename BlockT,
1029 typename DominatorTreeT>
1031 const BlockT *DivTermBlock,
const BlockT *JoinBlock,
1032 const DominatorTreeT &DT, ContextT &Context) {
1034 <<
" for internal branch " << Context.print(DivTermBlock)
1036 if (DT.properlyDominates(DivTermBlock, JoinBlock))
1040 assert(Cycle && CI.contains(Cycle, JoinBlock));
1041 while (Cycle && !CI.contains(Cycle, DivTermBlock)) {
1042 Cycle = CI.getParentCycle(Cycle);
1044 if (!Cycle || CI.isReducible(Cycle))
1047 if (DT.properlyDominates(CI.getHeader(Cycle), JoinBlock))
1050 LLVM_DEBUG(
dbgs() <<
" header " << Context.print(CI.getHeader(Cycle))
1051 <<
" does not dominate join\n");
1053 CycleRef Parent = CI.getParentCycle(Cycle);
1054 while (Parent && !DT.properlyDominates(CI.getHeader(Parent), JoinBlock)) {
1055 LLVM_DEBUG(
dbgs() <<
" header " << Context.print(CI.getHeader(Parent))
1056 <<
" does not dominate join\n");
1058 Parent = CI.getParentCycle(Parent);
1061 LLVM_DEBUG(
dbgs() <<
" cycle made divergent by internal branch\n");
1065template <
typename ContextT,
typename CycleInfoT,
typename BlockT,
1066 typename DominatorTreeT>
1069 const BlockT *DivTermBlock,
const BlockT *JoinBlock,
1070 const DominatorTreeT &DT, ContextT &Context) {
1087template <
typename ContextT>
1088bool GenericUniformityAnalysisImpl<ContextT>::isTemporalDivergent(
1089 const BlockT &ObservingBlock,
const InstructionT &Def)
const {
1090 const BlockT *DefBlock = Def.getParent();
1091 for (
auto C = CI.getCycle(DefBlock);
C && !CI.contains(
C, &ObservingBlock);
1092 C = CI.getParentCycle(
C)) {
1093 if (DivergentExitCycles.contains(
C)) {
1100template <
typename ContextT>
1103 const auto *DivTermBlock = Term.getParent();
1109 if (!DT.isReachableFromEntry(DivTermBlock))
1112 const auto &DivDesc = SDA.getJoinBlocks(DivTermBlock);
1116 for (
const auto *JoinBlock : DivDesc.JoinDivBlocks) {
1121 CI,
C, DivTermBlock, JoinBlock, DT,
Context)) {
1126 taintAndPushPhiNodes(*JoinBlock);
1132 return CI.getDepth(
A) >
CI.getDepth(
B);
1140 for (
auto C : DivCycles) {
1144 for (
const BlockT *BB :
CI.getBlocks(
C)) {
1145 taintAndPushAllDefs(*BB);
1149 CycleRef BranchCycle =
CI.getCycle(DivTermBlock);
1150 assert(DivDesc.CycleDivBlocks.empty() || BranchCycle);
1151 for (
const auto *DivExitBlock : DivDesc.CycleDivBlocks) {
1152 propagateCycleExitDivergence(*DivExitBlock, BranchCycle);
1156template <
typename ContextT>
1168 if (
I->isTerminator()) {
1179template <
typename ContextT>
1185template <
typename ContextT>
1188 return UniformOverrides.contains(&Instr);
1191template <
typename ContextT>
1197template <
typename ContextT>
1201 DA.reset(
new ImplT{DT, CI,
TTI});
1204template <
typename ContextT>
1209 constexpr bool IsMIR = std::is_same<InstructionT, MachineInstr>::value;
1210 std::string NewLine = IsMIR ?
"" :
"\n";
1212 bool FoundDivergence =
false;
1216 if (!AssumedDivergent.empty()) {
1217 FoundDivergence =
true;
1218 OS <<
"CYCLES ASSUMED DIVERGENT:\n";
1219 for (
auto C : AssumedDivergent) {
1220 OS <<
" " <<
CI.print(
C) <<
'\n';
1224 if (!DivergentExitCycles.empty()) {
1225 FoundDivergence =
true;
1226 OS <<
"CYCLES WITH DIVERGENT EXIT:\n";
1227 for (
auto C : DivergentExitCycles) {
1228 OS <<
" " <<
CI.print(
C) <<
'\n';
1233 FoundDivergence =
true;
1234 OS <<
"\nTEMPORAL DIVERGENCE LIST:\n";
1237 OS <<
"Value :" <<
Context.print(Val) << NewLine
1238 <<
"Used by :" <<
Context.print(UseInst) << NewLine
1239 <<
"Outside cycle :" <<
CI.print(
C) <<
"\n\n";
1246 OS <<
"DEFINITIONS\n";
1249 for (
auto Value : Defs) {
1251 FoundDivergence =
true;
1252 OS <<
" DIVERGENT: ";
1259 OS <<
"TERMINATORS\n";
1263 if (DivergentTerminators)
1264 FoundDivergence =
true;
1265 for (
auto *
T : Terms) {
1266 if (DivergentTerminators)
1267 OS <<
" DIVERGENT: ";
1273 OS <<
"END BLOCK\n";
1276 if (!FoundDivergence)
1277 OS <<
"ALL VALUES UNIFORM\n";
1280template <
typename ContextT>
1284 return make_range(DA->TemporalDivergenceList.begin(),
1285 DA->TemporalDivergenceList.end());
1288template <
typename ContextT>
1289const typename ContextT::FunctionT &
1291 return DA->getFunction();
1294template <
typename ContextT>
1297 return DA->getCycleInfo();
1303template <
typename ContextT>
1305 return DA && DA->isDivergent(V);
1308template <
typename ContextT>
1311 assert(
I->isTerminator() &&
"Expected a terminator instruction!");
1312 return DA && DA->isDivergentTerminator(*
I);
1315template <
typename ContextT>
1317 return DA && DA->isDivergentUse(U);
1320template <
typename ContextT>
1322 return DA && DA->hasDivergentTerminator(
B);
1325template <
typename ContextT>
1332template <
typename ContextT>
1335 Out <<
" Uniformity analysis not computed (no branch divergence).\n";
1341template <
typename ContextT>
1342void llvm::ModifiedPostOrder<ContextT>::computeStackPO(
1346 while (!Stack.empty()) {
1347 auto *NextBB = Stack.back();
1348 if (Finalized.
count(NextBB)) {
1352 LLVM_DEBUG(
dbgs() <<
" visiting " << CI.getSSAContext().print(NextBB)
1354 CycleRef NestedCycle = CI.getCycle(NextBB);
1355 if (
C != NestedCycle &&
1356 (!
C || (NestedCycle && CI.contains(
C, NestedCycle)))) {
1358 while (CI.getParentCycle(NestedCycle) !=
C)
1359 NestedCycle = CI.getParentCycle(NestedCycle);
1362 CI.getExitBlocks(NestedCycle, NestedExits);
1363 bool PushedNodes =
false;
1364 for (
auto *NestedExitBB : NestedExits) {
1366 << CI.getSSAContext().print(NestedExitBB) <<
"\n");
1367 if (
C && !CI.contains(
C, NestedExitBB))
1369 if (Finalized.
count(NestedExitBB))
1372 Stack.push_back(NestedExitBB);
1374 << CI.getSSAContext().print(NestedExitBB) <<
"\n");
1379 computeCyclePO(CI, NestedCycle, Finalized);
1386 bool PushedNodes =
false;
1389 << CI.getSSAContext().print(SuccBB) <<
"\n");
1390 if (
C && !CI.contains(
C, SuccBB))
1392 if (Finalized.
count(SuccBB))
1395 Stack.push_back(SuccBB);
1396 LLVM_DEBUG(
dbgs() <<
" pushed succ: " << CI.getSSAContext().print(SuccBB)
1402 << CI.getSSAContext().print(NextBB) <<
"\n");
1404 Finalized.
insert(NextBB);
1405 appendBlock(*NextBB);
1411template <
typename ContextT>
1412void ModifiedPostOrder<ContextT>::computeCyclePO(
1417 auto *CycleHeader = CI.getHeader(
C);
1420 << CI.getSSAContext().print(CycleHeader) <<
"\n");
1421 assert(!Finalized.count(CycleHeader));
1422 Finalized.insert(CycleHeader);
1426 << CI.getSSAContext().print(CycleHeader) <<
"\n");
1427 appendBlock(*CycleHeader, CI.isReducible(
C));
1431 LLVM_DEBUG(
dbgs() <<
" examine succ: " << CI.getSSAContext().print(BB)
1433 if (!CI.contains(
C, BB))
1435 if (BB == CycleHeader)
1437 if (!Finalized.count(BB)) {
1438 LLVM_DEBUG(
dbgs() <<
" pushed succ: " << CI.getSSAContext().print(BB)
1440 Stack.push_back(BB);
1445 computeStackPO(Stack, CI,
C, Finalized);
1451template <
typename ContextT>
1455 auto *
F = CI.getFunction();
1458 Stack.push_back(&
F->front());
1459 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