Static Value-Flow Analysis
Loading...
Searching...
No Matches
SVFLoopAndDomInfo.h
Go to the documentation of this file.
1//===- SVFLoopAndDomInfo.h -- ------------------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-2017> <Yulei Sui>
6//
7
8// This program is free software: you can redistribute it and/or modify
9// it under the terms of the GNU Affero General Public License as published by
10// the Free Software Foundation, either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU Affero General Public License for more details.
17
18// You should have received a copy of the GNU Affero General Public License
19// along with this program. If not, see <http://www.gnu.org/licenses/>.
20//
21//===----------------------------------------------------------------------===//
22
23/*
24* SVFLoopAndDomInfo.h
25*
26* Created on: Feb 7, 2025
27* Author: Xiao Cheng
28*
29*/
30
31#ifndef SVFLOOPANDDOMINFO_H
32#define SVFLOOPANDDOMINFO_H
33
34#include "SVFIR/SVFType.h"
35#include "Graphs/GraphPrinter.h"
36#include "Util/Casting.h"
37#include "Graphs/BasicBlockG.h"
38
39namespace SVF
40{
42{
43 friend class SVFIRWriter;
44 friend class SVFIRReader;
45public:
47 typedef std::vector<const SVFBasicBlock*> BBList;
48 typedef BBList LoopBBs;
49
50private:
58
59public:
61 {
62 }
63
64 virtual ~SVFLoopAndDomInfo() {}
65
67 {
68 return dfBBsMap;
69 }
70
75
76 inline bool hasLoopInfo(const SVFBasicBlock* bb) const
77 {
78 return bb2LoopMap.find(bb) != bb2LoopMap.end();
79 }
80
81 const LoopBBs& getLoopInfo(const SVFBasicBlock* bb) const;
82
83 inline const SVFBasicBlock* getLoopHeader(const LoopBBs& lp) const
84 {
85 assert(!lp.empty() && "this is not a loop, empty basic block");
86 return lp.front();
87 }
88
89 inline bool loopContainsBB(const LoopBBs& lp, const SVFBasicBlock* bb) const
90 {
91 return std::find(lp.begin(), lp.end(), bb) != lp.end();
92 }
93
94 inline void addToBB2LoopMap(const SVFBasicBlock* bb, const SVFBasicBlock* loopBB)
95 {
96 bb2LoopMap[bb].push_back(loopBB);
97 }
98
100 {
101 return pdtBBsMap;
102 }
103
108
110 {
111 return bb2PdomLevel;
112 }
113
118
120 {
121 return bb2PIdom;
122 }
123
128
129
131 {
132 return dtBBsMap;
133 }
134
136 {
137 return dtBBsMap;
138 }
139
140 inline bool isUnreachable(const SVFBasicBlock* bb) const
141 {
142 return std::find(reachableBBs.begin(), reachableBBs.end(), bb) ==
143 reachableBBs.end();
144 }
145
146 inline const BBList& getReachableBBs() const
147 {
148 return reachableBBs;
149 }
150
152 {
154 }
155
156 void getExitBlocksOfLoop(const SVFBasicBlock* bb, BBList& exitbbs) const;
157
158 bool isLoopHeader(const SVFBasicBlock* bb) const;
159
160 bool dominate(const SVFBasicBlock* bbKey, const SVFBasicBlock* bbValue) const;
161
162 bool postDominate(const SVFBasicBlock* bbKey, const SVFBasicBlock* bbValue) const;
163
166};
167}
168
169#endif //SVFLOOPANDDOMINFO_H
const Map< const SVFBasicBlock *, BBSet > & getPostDomTreeMap() const
const LoopBBs & getLoopInfo(const SVFBasicBlock *bb) const
Definition SVFValue.cpp:39
const Map< const SVFBasicBlock *, BBSet > & getDomFrontierMap() const
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
Map< const SVFBasicBlock *, BBSet > pdtBBsMap
map a BasicBlock to BasicBlocks it PostDominates
const Map< const SVFBasicBlock *, u32_t > & getBBPDomLevel() const
const BBList & getReachableBBs() const
Map< const SVFBasicBlock *, BBSet > & getPostDomTreeMap()
Map< const SVFBasicBlock *, u32_t > bb2PdomLevel
map a BasicBlock to its level in pdom tree, used in findNearestCommonPDominator
const Map< const SVFBasicBlock *, const SVFBasicBlock * > & getBB2PIdom() const
const Map< const SVFBasicBlock *, BBSet > & getDomTreeMap() const
Map< const SVFBasicBlock *, BBSet > & getDomFrontierMap()
bool isUnreachable(const SVFBasicBlock *bb) const
const SVFBasicBlock * getLoopHeader(const LoopBBs &lp) const
Map< const SVFBasicBlock *, const SVFBasicBlock * > bb2PIdom
map a BasicBlock to its immediate dominator in pdom tree, used in findNearestCommonPDominator
bool hasLoopInfo(const SVFBasicBlock *bb) const
void setReachableBBs(BBList &bbs)
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 loopContainsBB(const LoopBBs &lp, const SVFBasicBlock *bb) const
Map< const SVFBasicBlock *, BBSet > dfBBsMap
map a BasicBlock to its Dominate Frontier BasicBlocks
void addToBB2LoopMap(const SVFBasicBlock *bb, const SVFBasicBlock *loopBB)
Map< const SVFBasicBlock *, const SVFBasicBlock * > & getBB2PIdom()
BBList reachableBBs
reachable BasicBlocks from the function entry.
bool postDominate(const SVFBasicBlock *bbKey, const SVFBasicBlock *bbValue) const
Definition SVFValue.cpp:96
Map< const SVFBasicBlock *, u32_t > & getBBPDomLevel()
for isBitcode
Definition BasicTypes.h:68
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74