Static Value-Flow Analysis
Loading...
Searching...
No Matches
SVFValue.cpp
Go to the documentation of this file.
1#include "SVFIR/SVFValue.h"
2#include "Util/SVFUtil.h"
5
6
7using namespace SVF;
8using namespace SVFUtil;
9
10
12const std::string SVFValue::valueOnlyToString() const
13{
14 assert("SVFBaseNode::valueOnlyToString should be implemented or supported by fronted" && false);
15 abort();
16}
17
18
21{
22 fldIdxVec.push_back(fldIdx);
23 elemIdxVec.push_back(elemIdx);
24 fldIdx2TypeMap[fldIdx] = type;
25}
26
30//{@
32{
34 if(it!=fldIdx2TypeMap.end())
35 return it->second;
36 return nullptr;
37}
38
40{
41 assert(hasLoopInfo(bb) && "loopinfo does not exist (bb not in a loop)");
43 return mapIter->second;
44}
45
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}
64
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}
95
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}
125
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}
151
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}
unsigned u32_t
Definition CommandLine.h:18
newitem type
Definition cJSON.cpp:2739
const Map< const SVFBasicBlock *, BBSet > & getPostDomTreeMap() const
const LoopBBs & getLoopInfo(const SVFBasicBlock *bb) const
Definition SVFValue.cpp:39
Map< const SVFBasicBlock *, BBSet > & getDomTreeMap()
std::vector< const SVFBasicBlock * > BBList
Map< const SVFBasicBlock *, BBSet > dtBBsMap
map a BasicBlock to BasicBlocks it Dominates
bool dominate(const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
Definition SVFValue.cpp:65
bool isLoopHeader(const SVFBasicBlock *bb) const
Definition SVFValue.cpp:152
void getExitBlocksOfLoop(const SVFBasicBlock *bb, BBList &exitbbs) const
Definition SVFValue.cpp:46
const SVFBasicBlock * findNearestCommonPDominator(const SVFBasicBlock *A, const SVFBasicBlock *B) const
find nearest common post dominator of two basic blocks
Definition SVFValue.cpp:126
const Map< const SVFBasicBlock *, u32_t > & getBBPDomLevel() const
const Map< const SVFBasicBlock *, const SVFBasicBlock * > & getBB2PIdom() const
bool isUnreachable(const SVFBasicBlock *bb) const
bool hasLoopInfo(const SVFBasicBlock *bb) const
Set< const SVFBasicBlock * > BBSet
Map< const SVFBasicBlock *, LoopBBs > bb2LoopMap
map a BasicBlock (if it is in a loop) to all the BasicBlocks in this loop
bool postDominate(const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
Definition SVFValue.cpp:96
const std::string valueOnlyToString() const
Definition LLVMUtil.cpp:735
void addFldWithType(u32_t fldIdx, const SVFType *type, u32_t elemIdx)
Add field index and element index and their corresponding type.
const SVFType * getOriginalElemType(u32_t fldIdx) const
Definition SVFValue.cpp:31
std::vector< u32_t > fldIdxVec
flattened field indices of a struct (ignoring arrays)
Definition SVFType.h:53
std::vector< u32_t > elemIdxVec
Definition SVFType.h:56
Map< u32_t, const SVFType * > fldIdx2TypeMap
Types of all fields of a struct.
Definition SVFType.h:58
#define NULL
Definition extapi.c:2
for isBitcode
Definition BasicTypes.h:68
__attribute__((weak)) std
Definition SVFType.cpp:10
std::unordered_map< Key, Value, Hash, KeyEqual, Allocator > Map
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned u32_t
Definition GeneralType.h:47