24#define DEBUG_TYPE "spirv-convergence-region-analysis"
34 "SPIRV convergence regions analysis",
true,
true)
46template <
typename BasicBlockType,
typename IntrinsicInstType>
47std::optional<IntrinsicInstType *>
48getConvergenceTokenInternal(BasicBlockType *BB) {
49 static_assert(std::is_const_v<IntrinsicInstType> ==
50 std::is_const_v<BasicBlockType>,
51 "Constness must match between input and output.");
52 static_assert(std::is_same_v<BasicBlock, std::remove_const_t<BasicBlockType>>,
53 "Input must be a basic block.");
55 std::is_same_v<IntrinsicInst, std::remove_const_t<IntrinsicInstType>>,
56 "Output type must be an intrinsic instruction.");
59 if (
auto *CI = dyn_cast<ConvergenceControlInst>(&
I)) {
67 if (
auto *CI = dyn_cast<CallInst>(&
I)) {
71 return dyn_cast<IntrinsicInst>(OB.value().Inputs[0]);
86 while (Candidate != NextCandidate && NextCandidate !=
nullptr) {
87 Candidate = NextCandidate;
88 NextCandidate =
nullptr;
94 for (
auto *Child : Candidate->
Children) {
95 if (Child->Blocks.count(Entry) != 0) {
96 NextCandidate = Child;
108 return getConvergenceTokenInternal<BasicBlock, IntrinsicInst>(BB);
112 return getConvergenceTokenInternal<const BasicBlock, const IntrinsicInst>(BB);
117 : DT(DT), LI(LI), Parent(nullptr) {
118 Entry = &
F.getEntryBlock();
122 if (isa<ReturnInst>(
B.getTerminator()))
129 std::optional<IntrinsicInst *> ConvergenceToken,
BasicBlock *Entry,
131 : DT(DT), LI(LI), ConvergenceToken(ConvergenceToken), Entry(Entry),
133 for ([[maybe_unused]]
auto *BB : this->
Exits)
149 const std::string Indent(IndentSize,
'\t');
150 dbgs() << Indent <<
this <<
": {\n";
151 dbgs() << Indent <<
" Parent: " <<
Parent <<
"\n";
162 dbgs() << Indent <<
" Entry: " <<
Entry <<
"\n";
164 dbgs() << Indent <<
" Exits: { ";
165 for (
const auto &Exit :
Exits) {
166 if (Exit->getName() !=
"")
167 dbgs() << Exit->getName() <<
", ";
169 dbgs() << Exit <<
", ";
173 dbgs() << Indent <<
" Blocks: { ";
175 if (
Block->getName() !=
"")
182 dbgs() << Indent <<
" Children: {\n";
184 Child->dump(IndentSize + 2);
185 dbgs() << Indent <<
" }\n";
187 dbgs() << Indent <<
"}\n";
194 : DT(DT), LI(LI),
F(
F) {}
209 if (L->contains(
From) && L->isLoopLatch(
From))
215 std::unordered_set<BasicBlock *>
217 std::function<
bool(
const BasicBlock *)> isMatch)
const {
218 std::unordered_set<BasicBlock *> Output;
223 auto *Terminator =
From->getTerminator();
224 for (
unsigned i = 0; i < Terminator->getNumSuccessors(); ++i) {
225 auto *To = Terminator->getSuccessor(i);
227 if (isBackEdge(
From, To))
230 auto ChildSet = findPathsToMatch(LI, To, isMatch);
231 if (ChildSet.size() == 0)
234 Output.insert(ChildSet.begin(), ChildSet.end());
238 for (
auto *BB : L->getBlocks()) {
251 for (
auto *
B : RegionBlocks) {
253 for (
unsigned i = 0; i <
Terminator->getNumSuccessors(); ++i) {
255 if (RegionBlocks.count(Child) == 0)
266 std::queue<Loop *> ToProcess;
270 while (ToProcess.size() != 0) {
271 auto *L = ToProcess.front();
278 L->getExitingBlocks(LoopExits);
279 if (CT.has_value()) {
280 for (
auto *Exit : LoopExits) {
283 if (Token == std::nullopt)
285 return Token.value() == CT.value();
287 RegionBlocks.
insert(
N.begin(),
N.end());
291 auto RegionExits = findExitNodes(RegionBlocks);
293 DT, LI, CT, L->getHeader(), std::move(RegionBlocks),
294 std::move(RegionExits));
295 Region->Parent = findParentRegion(TopLevelRegion,
Region->Entry);
296 assert(
Region->Parent !=
nullptr &&
"This is impossible.");
324 DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
325 LoopInfo &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
BlockVerifier::State From
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
DenseMap< Block *, BlockRelaxAux > Blocks
#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())
convergence SPIRV convergence regions true
convergence SPIRV convergence regions analysis
unify loop Fixup each natural loop to have a single exit block
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.
LLVM Basic Block Representation.
Analysis pass which computes a DominatorTree.
Legacy analysis pass which computes a DominatorTree.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
FunctionPass class - This class is used to implement most global optimizations.
Analysis pass that exposes the LoopInfo for a function.
bool isLoopHeader(const BlockT *BB) const
SmallVector< LoopT *, 4 > getLoopsInPreorder() const
Return all of the loops in the function in preorder across the loop nests, with siblings in forward p...
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.
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
bool runOnFunction(Function &F) override
runOnFunction - Virtual method overriden by subclasses to do the per-function processing of the pass.
SPIRVConvergenceRegionAnalysisWrapperPass()
Result run(Function &F, FunctionAnalysisManager &AM)
ConvergenceRegionAnalyzer(Function &F, DominatorTree &DT, LoopInfo &LI)
ConvergenceRegionInfo analyze()
SmallVector< ConvergenceRegion * > Children
SmallPtrSet< BasicBlock *, 2 > Exits
std::optional< IntrinsicInst * > ConvergenceToken
ConvergenceRegion * Parent
void dump(const unsigned IndentSize=0) const
ConvergenceRegion(DominatorTree &DT, LoopInfo &LI, Function &F)
SmallPtrSet< BasicBlock *, 8 > Blocks
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
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.
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef getName() const
Return a constant reference to the value's name.
ConvergenceRegionInfo getConvergenceRegions(Function &F, DominatorTree &DT, LoopInfo &LI)
std::optional< IntrinsicInst * > getConvergenceToken(BasicBlock *BB)
This is an optimization pass for GlobalISel generic memory operations.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
void initializeSPIRVConvergenceRegionAnalysisWrapperPassPass(PassRegistry &)
Implement std::hash so that hash_code can be used in STL containers.
A special type used by analysis passes to provide an address that identifies that particular analysis...