11#ifndef LLVM_ANALYSIS_REGIONINFOIMPL_H
12#define LLVM_ANALYSIS_REGIONINFOIMPL_H
22#include "llvm/Config/llvm-config.h"
34#define DEBUG_TYPE "region"
43 typename Tr::RegionInfoT *RInfo, DomTreeT *dt,
45 :
RegionNodeBase<Tr>(Parent, Entry, 1), RI(RInfo), DT(dt), exit(Exit) {}
56 this->entry.setPointer(BB);
61 assert(exit &&
"No exit to replace!");
67 std::vector<RegionT *> RegionQueue;
68 BlockT *OldEntry = getEntry();
70 RegionQueue.push_back(
static_cast<RegionT *
>(
this));
71 while (!RegionQueue.empty()) {
72 RegionT *R = RegionQueue.back();
73 RegionQueue.pop_back();
75 R->replaceEntry(NewEntry);
76 for (std::unique_ptr<RegionT> &Child : *R) {
77 if (Child->getEntry() == OldEntry)
78 RegionQueue.push_back(Child.get());
85 std::vector<RegionT *> RegionQueue;
86 BlockT *OldExit = getExit();
88 RegionQueue.push_back(
static_cast<RegionT *
>(
this));
89 while (!RegionQueue.empty()) {
90 RegionT *R = RegionQueue.back();
91 RegionQueue.pop_back();
93 R->replaceExit(NewExit);
94 for (std::unique_ptr<RegionT> &Child : *R) {
95 if (Child->getExit() == OldExit)
96 RegionQueue.push_back(Child.get());
103 BlockT *BB =
const_cast<BlockT *
>(
B);
105 if (!DT->getNode(BB))
108 BlockT *entry = getEntry(), *exit = getExit();
114 return (DT->dominates(entry, BB) &&
115 !(DT->dominates(exit, BB) && DT->dominates(entry, exit)));
124 return getExit() ==
nullptr;
130 L->getExitingBlocks(ExitingBlocks);
132 for (BlockT *BB : ExitingBlocks) {
145 while (L &&
contains(L->getParentLoop())) {
146 L = L->getParentLoop();
155 assert(LI && BB &&
"LI and BB cannot be null!");
156 LoopT *L = LI->getLoopFor(BB);
157 return outermostLoopInRegion(L);
162 auto isEnteringBlock = [&](BlockT *Pred,
bool AllowRepeats) -> BlockT * {
163 assert(!AllowRepeats &&
"Unexpected parameter value.");
164 return DT->getNode(Pred) && !
contains(Pred) ? Pred :
nullptr;
166 return find_singleton<BlockT>(llvm::inverse_children<BlockT *>(getEntry()),
173 bool CoverAll =
true;
178 for (BlockT *Pred : llvm::inverse_children<BlockT *>(exit)) {
192 BlockT *exit = getExit();
196 auto isContained = [&](BlockT *Pred,
bool AllowRepeats) -> BlockT * {
197 assert(!AllowRepeats &&
"Unexpected parameter value.");
198 return contains(Pred) ? Pred :
nullptr;
200 return find_singleton<BlockT>(llvm::inverse_children<BlockT *>(exit),
206 return !isTopLevelRegion() && getEnteringBlock() && getExitingBlock();
211 std::string exitName;
212 std::string entryName;
214 if (getEntry()->
getName().empty()) {
217 getEntry()->printAsOperand(
OS,
false);
219 entryName = std::string(getEntry()->
getName());
222 if (getExit()->
getName().empty()) {
225 getExit()->printAsOperand(
OS,
false);
227 exitName = std::string(getExit()->
getName());
229 exitName =
"<Function Return>";
231 return entryName +
" => " + exitName;
239 BlockT *entry = getEntry(), *exit = getExit();
241 for (BlockT *Succ : llvm::children<BlockT *>(BB)) {
242 if (!
contains(Succ) && exit != Succ)
244 "to the exit node!");
248 for (BlockT *Pred : llvm::inverse_children<BlockT *>(BB)) {
251 if (!
contains(Pred) && DT->isReachableFromEntry(Pred))
253 "go to the entry node!");
259void RegionBase<Tr>::verifyWalk(BlockT *BB, std::set<BlockT *> *visited)
const {
260 BlockT *exit = getExit();
264 verifyBBInRegion(BB);
266 for (BlockT *Succ : llvm::children<BlockT *>(BB)) {
267 if (Succ != exit && visited->find(Succ) == visited->end())
268 verifyWalk(Succ, visited);
280 std::set<BlockT *> visited;
281 verifyWalk(getEntry(), &visited);
286 for (
const std::unique_ptr<RegionT> &R : *
this)
287 R->verifyRegionNest();
306 static_cast<const RegionT *
>(
this));
313 static_cast<const RegionT *
>(
this));
318 using RegionT =
typename Tr::RegionT;
320 RegionT *R = RI->getRegionFor(BB);
328 while (
contains(R->getParent()) && R->getParent() !=
this)
331 if (R->getEntry() != BB)
341 typename BBNodeMapT::const_iterator at = BBNodeMap.find(BB);
343 if (at == BBNodeMap.end()) {
345 typename BBNodeMapT::value_type V = {
347 std::make_unique<RegionNodeT>(
static_cast<RegionT *
>(Deconst), BB)};
348 at = BBNodeMap.insert(std::move(V)).first;
350 return at->second.get();
356 if (RegionT *Child = getSubRegionNode(BB))
357 return Child->getNode();
359 return getBBNode(BB);
364 for (std::unique_ptr<RegionT> &R : *
this) {
366 To->children.push_back(std::move(R));
373 assert(!SubRegion->parent &&
"SubRegion already has a parent!");
375 [&](
const std::unique_ptr<RegionT> &R) {
376 return R.get() == SubRegion;
378 "Subregion already exists!");
380 SubRegion->parent =
static_cast<RegionT *
>(
this);
381 children.push_back(std::unique_ptr<RegionT>(SubRegion));
386 assert(SubRegion->children.empty() &&
387 "SubRegions that contain children are not supported");
389 for (RegionNodeT *Element : elements()) {
390 if (!Element->isSubRegion()) {
391 BlockT *BB = Element->template getNodeAs<BlockT>();
393 if (SubRegion->contains(BB))
394 RI->setRegionFor(BB, SubRegion);
398 std::vector<std::unique_ptr<RegionT>>
Keep;
399 for (std::unique_ptr<RegionT> &R : *
this) {
400 if (SubRegion->contains(R.get()) && R.get() != SubRegion) {
401 R->parent = SubRegion;
402 SubRegion->children.push_back(std::move(R));
404 Keep.push_back(std::move(R));
410 std::move_iterator<typename RegionSet::iterator>(
Keep.begin()),
411 std::move_iterator<typename RegionSet::iterator>(
Keep.end()));
416 assert(Child->parent ==
this &&
"Child is not a child of this region!");
417 Child->parent =
nullptr;
418 typename RegionSet::iterator
I =
420 return R.get() == Child;
422 assert(
I !=
children.end() &&
"Region does not exit. Unable to remove.");
431 for (RegionT *R =
getParent(); R !=
nullptr; R = R->getParent())
439 unsigned NumSuccessors = Tr::getNumSuccessors(exit);
441 if (NumSuccessors == 0)
444 RegionT *R = RI->getRegionFor(exit);
446 if (R->getEntry() != exit) {
447 for (BlockT *Pred : llvm::inverse_children<BlockT *>(getExit()))
450 if (Tr::getNumSuccessors(exit) == 1)
451 return new RegionT(getEntry(), *BlockTraits::child_begin(exit), RI, DT);
455 while (R->getParent() && R->getParent()->getEntry() == exit)
458 for (BlockT *Pred : llvm::inverse_children<BlockT *>(getExit())) {
459 if (!(
contains(Pred) || R->contains(Pred)))
463 return new RegionT(getEntry(), R->getExit(), RI, DT);
470 OS.
indent(level * 2) <<
'[' << level <<
"] " << getNameStr();
472 OS.
indent(level * 2) << getNameStr();
476 if (Style != PrintNone) {
480 if (Style == PrintBB) {
481 for (
const auto *BB :
blocks())
482 OS << BB->getName() <<
", ";
483 }
else if (Style == PrintRN) {
484 for (
const RegionNodeT *Element : elements()) {
485 OS << *Element <<
", ";
493 for (
const std::unique_ptr<RegionT> &
R : *
this)
494 R->print(
OS, print_tree, level + 1,
Style);
497 if (Style != PrintNone)
501#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
511 for (std::unique_ptr<RegionT> &R : *
this)
529 assert(R &&
"Re must be non-null");
530 for (
const typename Tr::RegionNodeT *Element : R->elements()) {
531 if (Element->isSubRegion()) {
532 const RegionT *SR = Element->template getNodeAs<RegionT>();
535 BlockT *BB = Element->template getNodeAs<BlockT>();
536 if (getRegionFor(BB) != R)
544 BlockT *exit)
const {
545 for (BlockT *
P : llvm::inverse_children<BlockT *>(BB)) {
546 if (DT->dominates(entry,
P) && !DT->dominates(exit,
P))
555 assert(entry && exit &&
"entry and exit must not be null!");
557 using DST =
typename DomFrontierT::DomSetType;
559 DST *entrySuccs = &
DF->find(entry)->second;
563 if (!DT->dominates(entry, exit)) {
564 for (BlockT *successor : *entrySuccs) {
565 if (successor != exit && successor != entry)
572 DST *exitSuccs = &
DF->find(exit)->second;
575 for (BlockT *Succ : *entrySuccs) {
576 if (Succ == exit || Succ == entry)
578 if (!exitSuccs->contains(Succ))
580 if (!isCommonDomFrontier(Succ, entry, exit))
585 for (BlockT *Succ : *exitSuccs) {
586 if (DT->properlyDominates(entry, Succ) && Succ != exit)
594void RegionInfoBase<Tr>::insertShortCut(BlockT *entry, BlockT *exit,
595 BBtoBBMap *ShortCut)
const {
596 assert(entry && exit &&
"entry and exit must not be null!");
598 typename BBtoBBMap::iterator
e = ShortCut->find(exit);
600 if (e == ShortCut->end())
602 (*ShortCut)[entry] = exit;
607 BlockT *BB =
e->second;
608 (*ShortCut)[entry] = BB;
613typename Tr::DomTreeNodeT *
614RegionInfoBase<Tr>::getNextPostDom(DomTreeNodeT *
N, BBtoBBMap *ShortCut)
const {
615 typename BBtoBBMap::iterator
e = ShortCut->find(
N->getBlock());
617 if (e == ShortCut->end())
620 return PDT->getNode(
e->second)->getIDom();
624bool RegionInfoBase<Tr>::isTrivialRegion(BlockT *entry, BlockT *exit)
const {
625 assert(entry && exit &&
"entry and exit must not be null!");
627 unsigned num_successors =
628 BlockTraits::child_end(entry) - BlockTraits::child_begin(entry);
630 if (num_successors <= 1 && exit == *(BlockTraits::child_begin(entry)))
637typename Tr::RegionT *RegionInfoBase<Tr>::createRegion(BlockT *entry,
639 assert(entry && exit &&
"entry and exit must not be null!");
641 if (isTrivialRegion(entry, exit))
645 new RegionT(entry, exit,
static_cast<RegionInfoT *
>(
this), DT);
646 BBtoRegion.insert({entry,
region});
656 BBtoBBMap *ShortCut) {
659 DomTreeNodeT *
N = PDT->getNode(entry);
663 RegionT *lastRegion =
nullptr;
664 BlockT *lastExit = entry;
668 while ((
N = getNextPostDom(
N, ShortCut))) {
669 BlockT *exit =
N->getBlock();
674 if (isRegion(entry, exit)) {
675 RegionT *newRegion = createRegion(entry, exit);
678 newRegion->addSubRegion(lastRegion);
680 lastRegion = newRegion;
685 if (!DT->dominates(entry, exit))
691 if (lastExit != entry)
692 insertShortCut(entry, lastExit, ShortCut);
697 using FuncPtrT = std::add_pointer_t<FuncT>;
700 DomTreeNodeT *
N = DT->getNode(entry);
707 findRegionsWithEntry(DomNode->getBlock(), ShortCut);
711typename Tr::RegionT *RegionInfoBase<Tr>::getTopMostParent(RegionT *
region) {
712 while (
region->getParent())
719void RegionInfoBase<Tr>::buildRegionsTree(DomTreeNodeT *
N, RegionT *
region) {
720 BlockT *BB =
N->getBlock();
723 while (BB ==
region->getExit())
726 typename BBtoRegionMap::iterator it = BBtoRegion.find(BB);
730 if (it != BBtoRegion.end()) {
731 RegionT *newRegion = it->second;
732 region->addSubRegion(getTopMostParent(newRegion));
738 for (DomTreeNodeBase<BlockT> *
C : *
N) {
743#ifdef EXPENSIVE_CHECKS
757 OS <<
"Region tree:\n";
758 TopLevelRegion->print(
OS,
true, 0, printStyle);
759 OS <<
"End region tree\n";
762#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
769 if (TopLevelRegion) {
770 delete TopLevelRegion;
771 TopLevelRegion =
nullptr;
782 TopLevelRegion->verifyRegionNest();
784 verifyBBMap(TopLevelRegion);
790 return BBtoRegion.lookup(BB);
800 return getRegionFor(BB);
804typename RegionInfoBase<Tr>::BlockT *
806 BlockT *Exit =
nullptr;
810 RegionT *R = getRegionFor(BB);
811 while (R && R->getParent() && R->getParent()->getEntry() == BB)
815 if (R && R->getEntry() == BB)
817 else if (std::next(BlockTraits::child_begin(BB)) ==
818 BlockTraits::child_end(BB))
819 Exit = *BlockTraits::child_begin(BB);
824 RegionT *ExitR = getRegionFor(Exit);
825 while (ExitR && ExitR->getParent() &&
826 ExitR->getParent()->getEntry() == Exit)
827 ExitR = ExitR->getParent();
829 for (BlockT *Pred : llvm::inverse_children<BlockT *>(Exit)) {
830 if (!R->contains(Pred) && !ExitR->contains(Pred))
835 if (DT->dominates(Exit, BB))
847 assert(
A &&
B &&
"One of the Regions is NULL");
852 while (!
B->contains(
A))
859typename Tr::RegionT *
863 for (RegionT *R : Regions)
864 ret = getCommonRegion(ret, R);
870typename Tr::RegionT *
872 RegionT *ret = getRegionFor(BBs.
back());
875 for (BlockT *BB : BBs)
876 ret = getCommonRegion(ret, getRegionFor(BB));
883 using FuncPtrT = std::add_pointer_t<FuncT>;
890 scanForRegions(
F, &ShortCut);
892 buildRegionsTree(DT->getNode(BB), TopLevelRegion);
static const Function * getParent(const Value *V)
bbsections Prepares for basic block by splitting functions into clusters of basic blocks
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static RegisterPass< DebugifyFunctionPass > DF("debugify-function", "Attach debug info to a function")
This file defines the little GraphTraits<X> template class that should be specialized by classes that...
This file builds on the ADT/GraphTraits.h file to build a generic graph post order iterator.
static StringRef getName(Value *V)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the SmallVector class.
static bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
A single entry single exit Region.
void replaceExit(BlockT *BB)
Replace the exit basic block of the region with the new basic block.
void clearNodeCache()
Clear the cache for BB RegionNodes.
std::string getNameStr() const
Returns the name of the Region.
void transferChildrenTo(RegionT *To)
Move all direct child nodes of this Region to another Region.
RegionNodeT * getBBNode(BlockT *BB) const
Get the BasicBlock RegionNode for a BasicBlock.
bool getExitingBlocks(SmallVectorImpl< BlockT * > &Exitings) const
Collect all blocks of this region's single exit edge, if existing.
RegionNodeT * getNode() const
Get the RegionNode representing the current Region.
LoopT * outermostLoopInRegion(LoopT *L) const
Get the outermost loop in the region that contains a loop.
unsigned getDepth() const
Get the nesting level of this Region.
void replaceEntry(BlockT *BB)
Replace the entry basic block of the region with the new basic block.
void dump() const
Print the region to stderr.
void replaceEntryRecursive(BlockT *NewEntry)
Recursively replace the entry basic block of the region.
bool contains(const BlockT *BB) const
Check if the region contains a BasicBlock.
element_iterator element_begin()
void replaceExitRecursive(BlockT *NewExit)
Recursively replace the exit basic block of the region.
void verifyRegion() const
Verify if the region is a correct region.
void addSubRegion(RegionT *SubRegion, bool moveChildren=false)
Add a new subregion to this Region.
element_iterator element_end()
bool isSimple() const
Is this a simple region?
RegionBase(BlockT *Entry, BlockT *Exit, RegionInfoT *RI, DomTreeT *DT, RegionT *Parent=nullptr)
Create a new region.
BlockT * getExitingBlock() const
Return the first block of this region's single exit edge, if existing.
~RegionBase()
Delete the Region and all its subregions.
PrintStyle
PrintStyle - Print region in difference ways.
RegionT * removeSubRegion(RegionT *SubRegion)
Remove a subregion from this Region.
BlockT * getEnteringBlock() const
Return the first block of this region's single entry edge, if existing.
RegionT * getExpandedRegion() const
Return a new (non-canonical) region, that is obtained by joining this region with its predecessors.
void print(raw_ostream &OS, bool printTree=true, unsigned level=0, PrintStyle Style=PrintNone) const
Print the region.
RegionT * getSubRegionNode(BlockT *BB) const
Get the subregion that starts at a BasicBlock.
Analysis that detects all canonical Regions.
BlockT * getMaxRegionExit(BlockT *BB) const
Return the exit of the maximal refined region, that starts at a BasicBlock.
static bool VerifyRegionInfo
void print(raw_ostream &OS) const
RegionT * getRegionFor(BlockT *BB) const
Get the smallest region that contains a BasicBlock.
static RegionT::PrintStyle printStyle
void verifyAnalysis() const
void setRegionFor(BlockT *BB, RegionT *R)
Set the smallest region that surrounds a basic block.
RegionT * operator[](BlockT *BB) const
A shortcut for getRegionFor().
RegionT * getCommonRegion(RegionT *A, RegionT *B) const
Find the smallest region that contains two regions.
A RegionNode represents a subregion or a BasicBlock that is part of a Region.
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.
This class implements an extremely fast bulk output stream that can only output to a stream.
raw_ostream & indent(unsigned NumSpaces)
indent - Insert 'NumSpaces' spaces.
A raw_ostream that writes to an std::string.
@ C
The default llvm calling convention, compatible with C.
This is an optimization pass for GlobalISel generic memory operations.
iterator_range< po_iterator< T > > post_order(const T &G)
Printable print(const GCNRegPressure &RP, const GCNSubtarget *ST=nullptr)
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.
iterator_range< typename GraphTraits< GraphType >::ChildIteratorType > children(const typename GraphTraits< GraphType >::NodeRef &G)
@ Keep
No function return thunk.