#include <SVFLoopAndDomInfo.h>
|
| SVFLoopAndDomInfo () |
|
virtual | ~SVFLoopAndDomInfo () |
|
const Map< const SVFBasicBlock *, BBSet > & | getDomFrontierMap () const |
|
Map< const SVFBasicBlock *, BBSet > & | getDomFrontierMap () |
|
bool | hasLoopInfo (const SVFBasicBlock *bb) const |
|
const LoopBBs & | getLoopInfo (const SVFBasicBlock *bb) const |
|
const SVFBasicBlock * | getLoopHeader (const LoopBBs &lp) const |
|
bool | loopContainsBB (const LoopBBs &lp, const SVFBasicBlock *bb) const |
|
void | addToBB2LoopMap (const SVFBasicBlock *bb, const SVFBasicBlock *loopBB) |
|
const Map< const SVFBasicBlock *, BBSet > & | getPostDomTreeMap () const |
|
Map< const SVFBasicBlock *, BBSet > & | getPostDomTreeMap () |
|
const Map< const SVFBasicBlock *, u32_t > & | getBBPDomLevel () const |
|
Map< const SVFBasicBlock *, u32_t > & | getBBPDomLevel () |
|
const Map< const SVFBasicBlock *, const SVFBasicBlock * > & | getBB2PIdom () const |
|
Map< const SVFBasicBlock *, const SVFBasicBlock * > & | getBB2PIdom () |
|
Map< const SVFBasicBlock *, BBSet > & | getDomTreeMap () |
|
const Map< const SVFBasicBlock *, BBSet > & | getDomTreeMap () const |
|
bool | isUnreachable (const SVFBasicBlock *bb) const |
|
const BBList & | getReachableBBs () const |
|
void | setReachableBBs (BBList &bbs) |
|
void | getExitBlocksOfLoop (const SVFBasicBlock *bb, BBList &exitbbs) const |
|
bool | isLoopHeader (const SVFBasicBlock *bb) const |
|
bool | dominate (const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const |
|
bool | postDominate (const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const |
|
const SVFBasicBlock * | findNearestCommonPDominator (const SVFBasicBlock *A, const SVFBasicBlock *B) const |
| find nearest common post dominator of two basic blocks
|
|
Definition at line 41 of file SVFLoopAndDomInfo.h.
◆ BBList
◆ BBSet
◆ LoopBBs
◆ SVFLoopAndDomInfo()
SVF::SVFLoopAndDomInfo::SVFLoopAndDomInfo |
( |
| ) |
|
|
inline |
◆ ~SVFLoopAndDomInfo()
virtual SVF::SVFLoopAndDomInfo::~SVFLoopAndDomInfo |
( |
| ) |
|
|
inlinevirtual |
◆ addToBB2LoopMap()
Definition at line 94 of file SVFLoopAndDomInfo.h.
95 {
97 }
Map< const SVFBasicBlock *, LoopBBs > bb2LoopMap
map a BasicBlock (if it is in a loop) to all the BasicBlocks in this loop
llvm::IRBuilder IRBuilder
◆ dominate()
Definition at line 65 of file SVFValue.cpp.
66{
68 return true;
69
70
72 {
73 return true;
74 }
75
76
78 {
79 return false;
80 }
81
85 {
88 {
89 return true;
90 }
91 }
92
93 return false;
94}
Map< const SVFBasicBlock *, BBSet > & getDomTreeMap()
Map< const SVFBasicBlock *, BBSet > dtBBsMap
map a BasicBlock to BasicBlocks it Dominates
bool isUnreachable(const SVFBasicBlock *bb) const
Set< const SVFBasicBlock * > BBSet
std::unordered_map< Key, Value, Hash, KeyEqual, Allocator > Map
◆ findNearestCommonPDominator()
find nearest common post dominator of two basic blocks
Definition at line 126 of file SVFValue.cpp.
127{
128 assert(
A &&
B &&
"Pointers are not valid");
129 assert(
A->getParent() ==
B->getParent() &&
130 "Two blocks are not in same function");
131
132
133
135 {
136
141
142 if (
lvA->second <
lvB->second) std::swap(
A,
B);
143
147 }
148
150}
const Map< const SVFBasicBlock *, u32_t > & getBBPDomLevel() const
const Map< const SVFBasicBlock *, const SVFBasicBlock * > & getBB2PIdom() const
◆ getBB2PIdom() [1/2]
Definition at line 124 of file SVFLoopAndDomInfo.h.
125 {
127 }
Map< const SVFBasicBlock *, const SVFBasicBlock * > bb2PIdom
map a BasicBlock to its immediate dominator in pdom tree, used in findNearestCommonPDominator
◆ getBB2PIdom() [2/2]
◆ getBBPDomLevel() [1/2]
Definition at line 114 of file SVFLoopAndDomInfo.h.
115 {
117 }
Map< const SVFBasicBlock *, u32_t > bb2PdomLevel
map a BasicBlock to its level in pdom tree, used in findNearestCommonPDominator
◆ getBBPDomLevel() [2/2]
◆ getDomFrontierMap() [1/2]
Definition at line 71 of file SVFLoopAndDomInfo.h.
72 {
74 }
Map< const SVFBasicBlock *, BBSet > dfBBsMap
map a BasicBlock to its Dominate Frontier BasicBlocks
◆ getDomFrontierMap() [2/2]
◆ getDomTreeMap() [1/2]
◆ getDomTreeMap() [2/2]
◆ getExitBlocksOfLoop()
Definition at line 46 of file SVFValue.cpp.
47{
49 {
52 {
54 {
56 {
59 }
60 }
61 }
62 }
63}
const LoopBBs & getLoopInfo(const SVFBasicBlock *bb) const
bool hasLoopInfo(const SVFBasicBlock *bb) const
◆ getLoopHeader()
◆ getLoopInfo()
◆ getPostDomTreeMap() [1/2]
Definition at line 104 of file SVFLoopAndDomInfo.h.
105 {
107 }
Map< const SVFBasicBlock *, BBSet > pdtBBsMap
map a BasicBlock to BasicBlocks it PostDominates
◆ getPostDomTreeMap() [2/2]
◆ getReachableBBs()
const BBList & SVF::SVFLoopAndDomInfo::getReachableBBs |
( |
| ) |
const |
|
inline |
Definition at line 146 of file SVFLoopAndDomInfo.h.
147 {
149 }
BBList reachableBBs
reachable BasicBlocks from the function entry.
◆ hasLoopInfo()
◆ isLoopHeader()
Definition at line 152 of file SVFValue.cpp.
153{
155 {
158 return blocks.front() == bb;
159 }
160 return false;
161}
◆ isUnreachable()
◆ loopContainsBB()
◆ postDominate()
Definition at line 96 of file SVFValue.cpp.
97{
99 return true;
100
101
103 {
104 return true;
105 }
106
107
109 {
110 return false;
111 }
112
116 {
119 {
120 return true;
121 }
122 }
123 return false;
124}
const Map< const SVFBasicBlock *, BBSet > & getPostDomTreeMap() const
◆ setReachableBBs()
void SVF::SVFLoopAndDomInfo::setReachableBBs |
( |
BBList & |
bbs | ) |
|
|
inline |
◆ SVFIRReader
◆ SVFIRWriter
◆ bb2LoopMap
map a BasicBlock (if it is in a loop) to all the BasicBlocks in this loop
Definition at line 55 of file SVFLoopAndDomInfo.h.
◆ bb2PdomLevel
map a BasicBlock to its level in pdom tree, used in findNearestCommonPDominator
Definition at line 56 of file SVFLoopAndDomInfo.h.
◆ bb2PIdom
map a BasicBlock to its immediate dominator in pdom tree, used in findNearestCommonPDominator
Definition at line 57 of file SVFLoopAndDomInfo.h.
◆ dfBBsMap
◆ dtBBsMap
◆ pdtBBsMap
◆ reachableBBs
BBList SVF::SVFLoopAndDomInfo::reachableBBs |
|
private |
The documentation for this class was generated from the following files: