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

Classes

struct  NodeData
 

Static Public Member Functions

static unsigned detectSCCs (VersionedFlowSensitive *vfs, const SVFG *svfg, const NodeID object, const std::vector< const SVFGNode * > &startingNodes, std::vector< int > &partOf, std::vector< const IndirectSVFGEdge * > &footprint)
 

Private Types

typedef struct SVF::VersionedFlowSensitive::SCC::NodeData NodeData
 

Static Private Member Functions

static void visit (VersionedFlowSensitive *vfs, const NodeID object, std::vector< int > &partOf, std::vector< const IndirectSVFGEdge * > &footprint, std::vector< NodeData > &nodeData, std::stack< const SVFGNode * > &stack, int &index, int &currentSCC, const SVFGNode *v)
 Called by detectSCCs then called recursively.
 

Detailed Description

Definition at line 250 of file VersionedFlowSensitive.h.

Member Typedef Documentation

◆ NodeData

Member Function Documentation

◆ detectSCCs()

unsigned VersionedFlowSensitive::SCC::detectSCCs ( VersionedFlowSensitive vfs,
const SVFG svfg,
const NodeID  object,
const std::vector< const SVFGNode * > &  startingNodes,
std::vector< int > &  partOf,
std::vector< const IndirectSVFGEdge * > &  footprint 
)
static

Determines the strongly connected components of svfg following only edges labelled with object. partOf[n] = scc means nodes n is part of SCC scc. startingNodes contains the nodes to begin the search from. After completion, footprint will contain all edges which object appears on (as reached through the algorithm described above) sorted.

This is not a general SCC detection but specifically for versioning, so edges to delta nodes are skipped as they are prelabelled. Edges to stores are also skipped to as they yield a new version (they cannot be part of an SCC containing more than themselves). Skipped edges still form part of the footprint.

Definition at line 1110 of file VersionedFlowSensitive.cpp.

1115{
1116 partOf.resize(svfg->getTotalNodeNum());
1117 std::fill(partOf.begin(), partOf.end(), -1);
1118 footprint.clear();
1119
1120 std::vector<NodeData> nodeData(svfg->getTotalNodeNum(), { -1, -1, false});
1121 std::stack<const SVFGNode *> stack;
1122
1123 int index = 0;
1124 int currentSCC = 0;
1125
1126 for (const SVFGNode *v : startingNodes)
1127 {
1128 if (nodeData[v->getId()].index == -1)
1129 {
1131 }
1132 }
1133
1134 // Make sure footprints with the same edges pass ==/hash the same.
1135 std::sort(footprint.begin(), footprint.end());
1136
1137 return currentSCC;
1138}
int index
Definition cJSON.h:170
u32_t getTotalNodeNum() const
Get total number of node/edge.
static void visit(VersionedFlowSensitive *vfs, const NodeID object, std::vector< int > &partOf, std::vector< const IndirectSVFGEdge * > &footprint, std::vector< NodeData > &nodeData, std::stack< const SVFGNode * > &stack, int &index, int &currentSCC, const SVFGNode *v)
Called by detectSCCs then called recursively.
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ visit()

void VersionedFlowSensitive::SCC::visit ( VersionedFlowSensitive vfs,
const NodeID  object,
std::vector< int > &  partOf,
std::vector< const IndirectSVFGEdge * > &  footprint,
std::vector< NodeData > &  nodeData,
std::stack< const SVFGNode * > &  stack,
int index,
int currentSCC,
const SVFGNode v 
)
staticprivate

Called by detectSCCs then called recursively.

Definition at line 1140 of file VersionedFlowSensitive.cpp.

1149{
1150 const NodeID vId = v->getId();
1151
1152 nodeData[vId].index = index;
1153 nodeData[vId].lowlink = index;
1154 ++index;
1155
1156 stack.push(v);
1157 nodeData[vId].onStack = true;
1158
1159 for (const SVFGEdge *e : v->getOutEdges())
1160 {
1161 const IndirectSVFGEdge *ie = SVFUtil::dyn_cast<IndirectSVFGEdge>(e);
1162 if (!ie) continue;
1163
1164 const SVFGNode *w = ie->getDstNode();
1165 const NodeID wId = w->getId();
1166
1167 // If object is not part of the edge, there is no edge from v to w.
1168 if (!ie->getPointsTo().test(object)) continue;
1169
1170 // Even if we don't count edges to stores and deltas for SCCs' sake, they
1171 // are relevant to the footprint as a propagation still occurs over such edges.
1172 footprint.push_back(ie);
1173
1174 // Ignore edges to delta nodes because they are prelabeled so cannot
1175 // be part of the SCC v is in (already in nodesTodo from the prelabeled set).
1176 // Similarly, store nodes.
1177 if (vfs->delta(wId) || vfs->isStore(wId)) continue;
1178
1179 if (nodeData[wId].index == -1)
1180 {
1182 nodeData[vId].lowlink = std::min(nodeData[vId].lowlink, nodeData[wId].lowlink);
1183 }
1184 else if (nodeData[wId].onStack)
1185 {
1186 nodeData[vId].lowlink = std::min(nodeData[vId].lowlink, nodeData[wId].index);
1187 }
1188 }
1189
1190 if (nodeData[vId].lowlink == nodeData[vId].index)
1191 {
1192 const SVFGNode *w = nullptr;
1193 do
1194 {
1195 w = stack.top();
1196 stack.pop();
1197 const NodeID wId = w->getId();
1198 nodeData[wId].onStack = false;
1200 }
1201 while (w != v);
1202
1203 // For the next SCC.
1204 ++currentSCC;
1205 }
1206}
NodeID getId() const
Get ID.
Definition SVFValue.h:158
u32_t NodeID
Definition GeneralType.h:56

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