svf-lib 1.0.2128 → 1.0.2129
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/bin/ae +0 -0
- package/SVF-linux/Release-build/bin/cfl +0 -0
- package/SVF-linux/Release-build/bin/dvf +0 -0
- package/SVF-linux/Release-build/bin/llvm2svf +0 -0
- package/SVF-linux/Release-build/bin/mta +0 -0
- package/SVF-linux/Release-build/bin/saber +0 -0
- package/SVF-linux/Release-build/bin/svf-ex +0 -0
- package/SVF-linux/Release-build/bin/wpa +0 -0
- package/SVF-linux/Release-build/include/SVF-LLVM/ICFGBuilder.h +2 -2
- package/SVF-linux/Release-build/include/SVF-LLVM/LLVMModule.h +6 -0
- package/SVF-linux/Release-build/lib/libSvfLLVM.a +0 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -76,6 +76,7 @@ private:
|
|
|
76
76
|
static bool preProcessed;
|
|
77
77
|
SymbolTableInfo* symInfo;
|
|
78
78
|
SVFModule* svfModule; ///< Borrowed from singleton SVFModule::svfModule
|
|
79
|
+
ICFG* icfg;
|
|
79
80
|
std::unique_ptr<LLVMContext> owned_ctx;
|
|
80
81
|
std::vector<std::unique_ptr<Module>> owned_modules;
|
|
81
82
|
std::vector<std::reference_wrapper<Module>> modules;
|
|
@@ -362,6 +363,11 @@ public:
|
|
|
362
363
|
|
|
363
364
|
ObjTypeInference* getTypeInference();
|
|
364
365
|
|
|
366
|
+
inline ICFG* getICFG()
|
|
367
|
+
{
|
|
368
|
+
return icfg;
|
|
369
|
+
}
|
|
370
|
+
|
|
365
371
|
private:
|
|
366
372
|
/// Create SVFTypes
|
|
367
373
|
SVFType* addSVFTypeInfo(const Type* t);
|
|
Binary file
|