svf-lib 1.0.1487 → 1.0.1489
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.
|
Binary file
|
|
Binary file
|
|
@@ -78,6 +78,10 @@ public:
|
|
|
78
78
|
/// Interface expose to users of our pointer analysis, given Value infos
|
|
79
79
|
virtual AliasResult alias(const SVFValue* V1, const SVFValue* V2);
|
|
80
80
|
|
|
81
|
+
/// Retrieve points-to set information
|
|
82
|
+
virtual const PointsTo& getPts(const SVFValue* value);
|
|
83
|
+
virtual const PointsTo& getPts(NodeID var);
|
|
84
|
+
|
|
81
85
|
/// Print all alias pairs
|
|
82
86
|
virtual void PrintAliasPairs(PointerAnalysis* pta);
|
|
83
87
|
|