Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Private Attributes | Friends | List of all members
SVF::SVFLoopAndDomInfo Class Reference

#include <SVFLoopAndDomInfo.h>

Public Types

typedef Set< const SVFBasicBlock * > BBSet
 
typedef std::vector< const SVFBasicBlock * > BBList
 
typedef BBList LoopBBs
 

Public Member Functions

 SVFLoopAndDomInfo ()
 
virtual ~SVFLoopAndDomInfo ()
 
const Map< const SVFBasicBlock *, BBSet > & getDomFrontierMap () const
 
Map< const SVFBasicBlock *, BBSet > & getDomFrontierMap ()
 
bool hasLoopInfo (const SVFBasicBlock *bb) const
 
const LoopBBsgetLoopInfo (const SVFBasicBlock *bb) const
 
const SVFBasicBlockgetLoopHeader (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 BBListgetReachableBBs () 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 SVFBasicBlockfindNearestCommonPDominator (const SVFBasicBlock *A, const SVFBasicBlock *B) const
 find nearest common post dominator of two basic blocks
 

Private Attributes

BBList reachableBBs
 reachable BasicBlocks from the function entry.
 
Map< const SVFBasicBlock *, BBSetdtBBsMap
 map a BasicBlock to BasicBlocks it Dominates
 
Map< const SVFBasicBlock *, BBSetpdtBBsMap
 map a BasicBlock to BasicBlocks it PostDominates
 
Map< const SVFBasicBlock *, BBSetdfBBsMap
 map a BasicBlock to its Dominate Frontier BasicBlocks
 
Map< const SVFBasicBlock *, LoopBBsbb2LoopMap
 map a BasicBlock (if it is in a loop) to all the BasicBlocks in this loop
 
Map< const SVFBasicBlock *, u32_tbb2PdomLevel
 map a BasicBlock to its level in pdom tree, used in findNearestCommonPDominator
 
Map< const SVFBasicBlock *, const SVFBasicBlock * > bb2PIdom
 map a BasicBlock to its immediate dominator in pdom tree, used in findNearestCommonPDominator
 

Friends

class SVFIRWriter
 
class SVFIRReader
 

Detailed Description

Definition at line 41 of file SVFLoopAndDomInfo.h.

Member Typedef Documentation

◆ BBList

Definition at line 47 of file SVFLoopAndDomInfo.h.

◆ BBSet

Definition at line 46 of file SVFLoopAndDomInfo.h.

◆ LoopBBs

Definition at line 48 of file SVFLoopAndDomInfo.h.

Constructor & Destructor Documentation

◆ SVFLoopAndDomInfo()

SVF::SVFLoopAndDomInfo::SVFLoopAndDomInfo ( )
inline

Definition at line 60 of file SVFLoopAndDomInfo.h.

61 {
62 }

◆ ~SVFLoopAndDomInfo()

virtual SVF::SVFLoopAndDomInfo::~SVFLoopAndDomInfo ( )
inlinevirtual

Definition at line 64 of file SVFLoopAndDomInfo.h.

64{}

Member Function Documentation

◆ addToBB2LoopMap()

void SVF::SVFLoopAndDomInfo::addToBB2LoopMap ( const SVFBasicBlock bb,
const SVFBasicBlock loopBB 
)
inline

Definition at line 94 of file SVFLoopAndDomInfo.h.

95 {
96 bb2LoopMap[bb].push_back(loopBB);
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
Definition BasicTypes.h:74

◆ dominate()

bool SVFLoopAndDomInfo::dominate ( const SVFBasicBlock bbKey,
const SVFBasicBlock bbValue 
) const

Definition at line 65 of file SVFValue.cpp.

66{
67 if (bbKey == bbValue)
68 return true;
69
70 // An unreachable node is dominated by anything.
72 {
73 return true;
74 }
75
76 // And dominates nothing.
78 {
79 return false;
80 }
81
84 if (mapIter != dtBBsMap.end())
85 {
86 const BBSet & dtBBs = mapIter->second;
87 if (dtBBs.find(bbValue) != dtBBs.end())
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()

const SVFBasicBlock * SVFLoopAndDomInfo::findNearestCommonPDominator ( const SVFBasicBlock A,
const SVFBasicBlock B 
) const

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 // Use level information to go up the tree until the levels match. Then
133 // continue going up til we arrive at the same node.
134 while (A != B)
135 {
136 // no common PDominator
137 if(A == NULL) return NULL;
138 const auto lvA = getBBPDomLevel().find(A);
139 const auto lvB = getBBPDomLevel().find(B);
140 assert(lvA != getBBPDomLevel().end() && lvB != getBBPDomLevel().end());
141
142 if (lvA->second < lvB->second) std::swap(A, B);
143
144 const auto lvAIdom = getBB2PIdom().find(A);
145 assert(lvAIdom != getBB2PIdom().end());
146 A = lvAIdom->second;
147 }
148
149 return A;
150}
const Map< const SVFBasicBlock *, u32_t > & getBBPDomLevel() const
const Map< const SVFBasicBlock *, const SVFBasicBlock * > & getBB2PIdom() const
#define NULL
Definition extapi.c:2

◆ getBB2PIdom() [1/2]

Map< const SVFBasicBlock *, const SVFBasicBlock * > & SVF::SVFLoopAndDomInfo::getBB2PIdom ( )
inline

Definition at line 124 of file SVFLoopAndDomInfo.h.

125 {
126 return bb2PIdom;
127 }
Map< const SVFBasicBlock *, const SVFBasicBlock * > bb2PIdom
map a BasicBlock to its immediate dominator in pdom tree, used in findNearestCommonPDominator

◆ getBB2PIdom() [2/2]

const Map< const SVFBasicBlock *, const SVFBasicBlock * > & SVF::SVFLoopAndDomInfo::getBB2PIdom ( ) const
inline

Definition at line 119 of file SVFLoopAndDomInfo.h.

120 {
121 return bb2PIdom;
122 }

◆ getBBPDomLevel() [1/2]

Map< const SVFBasicBlock *, u32_t > & SVF::SVFLoopAndDomInfo::getBBPDomLevel ( )
inline

Definition at line 114 of file SVFLoopAndDomInfo.h.

115 {
116 return bb2PdomLevel;
117 }
Map< const SVFBasicBlock *, u32_t > bb2PdomLevel
map a BasicBlock to its level in pdom tree, used in findNearestCommonPDominator

◆ getBBPDomLevel() [2/2]

const Map< const SVFBasicBlock *, u32_t > & SVF::SVFLoopAndDomInfo::getBBPDomLevel ( ) const
inline

Definition at line 109 of file SVFLoopAndDomInfo.h.

110 {
111 return bb2PdomLevel;
112 }

◆ getDomFrontierMap() [1/2]

Map< const SVFBasicBlock *, BBSet > & SVF::SVFLoopAndDomInfo::getDomFrontierMap ( )
inline

Definition at line 71 of file SVFLoopAndDomInfo.h.

72 {
73 return dfBBsMap;
74 }
Map< const SVFBasicBlock *, BBSet > dfBBsMap
map a BasicBlock to its Dominate Frontier BasicBlocks

◆ getDomFrontierMap() [2/2]

const Map< const SVFBasicBlock *, BBSet > & SVF::SVFLoopAndDomInfo::getDomFrontierMap ( ) const
inline

Definition at line 66 of file SVFLoopAndDomInfo.h.

67 {
68 return dfBBsMap;
69 }

◆ getDomTreeMap() [1/2]

Map< const SVFBasicBlock *, BBSet > & SVF::SVFLoopAndDomInfo::getDomTreeMap ( )
inline

Definition at line 130 of file SVFLoopAndDomInfo.h.

131 {
132 return dtBBsMap;
133 }

◆ getDomTreeMap() [2/2]

const Map< const SVFBasicBlock *, BBSet > & SVF::SVFLoopAndDomInfo::getDomTreeMap ( ) const
inline

Definition at line 135 of file SVFLoopAndDomInfo.h.

136 {
137 return dtBBsMap;
138 }

◆ getExitBlocksOfLoop()

void SVFLoopAndDomInfo::getExitBlocksOfLoop ( const SVFBasicBlock bb,
BBList exitbbs 
) const

Definition at line 46 of file SVFValue.cpp.

47{
48 if (hasLoopInfo(bb))
49 {
50 const LoopBBs blocks = getLoopInfo(bb);
51 if (!blocks.empty())
52 {
53 for (const SVFBasicBlock* block : blocks)
54 {
55 for (const SVFBasicBlock* succ : block->getSuccessors())
56 {
57 if ((std::find(blocks.begin(), blocks.end(), succ)==blocks.end()))
58 exitbbs.push_back(succ);
59 }
60 }
61 }
62 }
63}
const LoopBBs & getLoopInfo(const SVFBasicBlock *bb) const
Definition SVFValue.cpp:39
bool hasLoopInfo(const SVFBasicBlock *bb) const

◆ getLoopHeader()

const SVFBasicBlock * SVF::SVFLoopAndDomInfo::getLoopHeader ( const LoopBBs lp) const
inline

Definition at line 83 of file SVFLoopAndDomInfo.h.

84 {
85 assert(!lp.empty() && "this is not a loop, empty basic block");
86 return lp.front();
87 }

◆ getLoopInfo()

const SVFLoopAndDomInfo::LoopBBs & SVFLoopAndDomInfo::getLoopInfo ( const SVFBasicBlock bb) const

Definition at line 39 of file SVFValue.cpp.

40{
41 assert(hasLoopInfo(bb) && "loopinfo does not exist (bb not in a loop)");
43 return mapIter->second;
44}

◆ getPostDomTreeMap() [1/2]

Map< const SVFBasicBlock *, BBSet > & SVF::SVFLoopAndDomInfo::getPostDomTreeMap ( )
inline

Definition at line 104 of file SVFLoopAndDomInfo.h.

105 {
106 return pdtBBsMap;
107 }
Map< const SVFBasicBlock *, BBSet > pdtBBsMap
map a BasicBlock to BasicBlocks it PostDominates

◆ getPostDomTreeMap() [2/2]

const Map< const SVFBasicBlock *, BBSet > & SVF::SVFLoopAndDomInfo::getPostDomTreeMap ( ) const
inline

Definition at line 99 of file SVFLoopAndDomInfo.h.

100 {
101 return pdtBBsMap;
102 }

◆ getReachableBBs()

const BBList & SVF::SVFLoopAndDomInfo::getReachableBBs ( ) const
inline

Definition at line 146 of file SVFLoopAndDomInfo.h.

147 {
148 return reachableBBs;
149 }
BBList reachableBBs
reachable BasicBlocks from the function entry.

◆ hasLoopInfo()

bool SVF::SVFLoopAndDomInfo::hasLoopInfo ( const SVFBasicBlock bb) const
inline

Definition at line 76 of file SVFLoopAndDomInfo.h.

77 {
78 return bb2LoopMap.find(bb) != bb2LoopMap.end();
79 }

◆ isLoopHeader()

bool SVFLoopAndDomInfo::isLoopHeader ( const SVFBasicBlock bb) const

Definition at line 152 of file SVFValue.cpp.

153{
154 if (hasLoopInfo(bb))
155 {
156 const LoopBBs& blocks = getLoopInfo(bb);
157 assert(!blocks.empty() && "no available loop info?");
158 return blocks.front() == bb;
159 }
160 return false;
161}

◆ isUnreachable()

bool SVF::SVFLoopAndDomInfo::isUnreachable ( const SVFBasicBlock bb) const
inline

Definition at line 140 of file SVFLoopAndDomInfo.h.

141 {
142 return std::find(reachableBBs.begin(), reachableBBs.end(), bb) ==
143 reachableBBs.end();
144 }

◆ loopContainsBB()

bool SVF::SVFLoopAndDomInfo::loopContainsBB ( const LoopBBs lp,
const SVFBasicBlock bb 
) const
inline

Definition at line 89 of file SVFLoopAndDomInfo.h.

90 {
91 return std::find(lp.begin(), lp.end(), bb) != lp.end();
92 }

◆ postDominate()

bool SVFLoopAndDomInfo::postDominate ( const SVFBasicBlock bbKey,
const SVFBasicBlock bbValue 
) const

Definition at line 96 of file SVFValue.cpp.

97{
98 if (bbKey == bbValue)
99 return true;
100
101 // An unreachable node is dominated by anything.
103 {
104 return true;
105 }
106
107 // And dominates nothing.
108 if (isUnreachable(bbKey))
109 {
110 return false;
111 }
112
115 if (mapIter != dtBBsMap.end())
116 {
117 const BBSet & dtBBs = mapIter->second;
118 if (dtBBs.find(bbValue) != dtBBs.end())
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

Definition at line 151 of file SVFLoopAndDomInfo.h.

152 {
154 }

Friends And Related Symbol Documentation

◆ SVFIRReader

friend class SVFIRReader
friend

Definition at line 44 of file SVFLoopAndDomInfo.h.

◆ SVFIRWriter

friend class SVFIRWriter
friend

Definition at line 43 of file SVFLoopAndDomInfo.h.

Member Data Documentation

◆ bb2LoopMap

Map<const SVFBasicBlock*, LoopBBs> SVF::SVFLoopAndDomInfo::bb2LoopMap
private

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<const SVFBasicBlock*, u32_t> SVF::SVFLoopAndDomInfo::bb2PdomLevel
private

map a BasicBlock to its level in pdom tree, used in findNearestCommonPDominator

Definition at line 56 of file SVFLoopAndDomInfo.h.

◆ bb2PIdom

Map<const SVFBasicBlock*, const SVFBasicBlock*> SVF::SVFLoopAndDomInfo::bb2PIdom
private

map a BasicBlock to its immediate dominator in pdom tree, used in findNearestCommonPDominator

Definition at line 57 of file SVFLoopAndDomInfo.h.

◆ dfBBsMap

Map<const SVFBasicBlock*,BBSet> SVF::SVFLoopAndDomInfo::dfBBsMap
private

map a BasicBlock to its Dominate Frontier BasicBlocks

Definition at line 54 of file SVFLoopAndDomInfo.h.

◆ dtBBsMap

Map<const SVFBasicBlock*,BBSet> SVF::SVFLoopAndDomInfo::dtBBsMap
private

map a BasicBlock to BasicBlocks it Dominates

Definition at line 52 of file SVFLoopAndDomInfo.h.

◆ pdtBBsMap

Map<const SVFBasicBlock*,BBSet> SVF::SVFLoopAndDomInfo::pdtBBsMap
private

map a BasicBlock to BasicBlocks it PostDominates

Definition at line 53 of file SVFLoopAndDomInfo.h.

◆ reachableBBs

BBList SVF::SVFLoopAndDomInfo::reachableBBs
private

reachable BasicBlocks from the function entry.

Definition at line 51 of file SVFLoopAndDomInfo.h.


The documentation for this class was generated from the following files: