svf-lib 1.0.1346 → 1.0.1348
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/SVF-linux/Release-build/lib/libSvf.a +0 -0
- package/SVF-linux/include/AbstractExecution/IntervalValue.h +5 -0
- package/SVF-linux/include/Graphs/SVFG.h +6 -0
- package/SVF-osx/Release-build/lib/libSvf.a +0 -0
- package/SVF-osx/include/AbstractExecution/IntervalValue.h +5 -0
- package/SVF-osx/include/Graphs/SVFG.h +6 -0
- package/package.json +1 -1
|
Binary file
|
|
@@ -172,6 +172,12 @@ public:
|
|
|
172
172
|
return getSVFGNode(getDef(pagNode));
|
|
173
173
|
}
|
|
174
174
|
|
|
175
|
+
/// Given a pagNode, return whether it has definition site
|
|
176
|
+
inline bool hasDefSVFGNode(const PAGNode* pagNode) const
|
|
177
|
+
{
|
|
178
|
+
return hasDef(pagNode) && hasSVFGNode(getDef(pagNode));
|
|
179
|
+
}
|
|
180
|
+
|
|
175
181
|
/// Perform statistics
|
|
176
182
|
void performStat();
|
|
177
183
|
|
|
Binary file
|
|
@@ -172,6 +172,12 @@ public:
|
|
|
172
172
|
return getSVFGNode(getDef(pagNode));
|
|
173
173
|
}
|
|
174
174
|
|
|
175
|
+
/// Given a pagNode, return whether it has definition site
|
|
176
|
+
inline bool hasDefSVFGNode(const PAGNode* pagNode) const
|
|
177
|
+
{
|
|
178
|
+
return hasDef(pagNode) && hasSVFGNode(getDef(pagNode));
|
|
179
|
+
}
|
|
180
|
+
|
|
175
181
|
/// Perform statistics
|
|
176
182
|
void performStat();
|
|
177
183
|
|