svf-lib 1.0.2170 → 1.0.2171
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-osx/Release-build/bin/ae +0 -0
- package/SVF-osx/Release-build/bin/cfl +0 -0
- package/SVF-osx/Release-build/bin/dvf +0 -0
- package/SVF-osx/Release-build/bin/llvm2svf +0 -0
- package/SVF-osx/Release-build/bin/mta +0 -0
- package/SVF-osx/Release-build/bin/saber +0 -0
- package/SVF-osx/Release-build/bin/svf-ex +0 -0
- package/SVF-osx/Release-build/bin/wpa +0 -0
- package/SVF-osx/Release-build/include/SVF-LLVM/ICFGBuilder.h +1 -1
- package/SVF-osx/Release-build/include/SVF-LLVM/LLVMModule.h +4 -0
- package/SVF-osx/Release-build/lib/libSvfCore.a +0 -0
- package/SVF-osx/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
|
|
@@ -75,7 +75,7 @@ private:
|
|
|
75
75
|
///@{
|
|
76
76
|
void processFunEntry(const Function* fun, WorkList& worklist);
|
|
77
77
|
|
|
78
|
-
void
|
|
78
|
+
void processUnreachableFromEntry(const Function* fun, WorkList& worklist);
|
|
79
79
|
|
|
80
80
|
void processFunBody(WorkList& worklist);
|
|
81
81
|
|
|
@@ -109,6 +109,8 @@ private:
|
|
|
109
109
|
FunToFunExitNodeMapTy FunToFunExitNodeMap; ///< map a function to its FunEntryICFGNode
|
|
110
110
|
CallGraph* callgraph;
|
|
111
111
|
|
|
112
|
+
Map<const Function*, DominatorTree> FunToDominatorTree;
|
|
113
|
+
|
|
112
114
|
/// Constructor
|
|
113
115
|
LLVMModuleSet();
|
|
114
116
|
|
|
@@ -397,6 +399,8 @@ public:
|
|
|
397
399
|
return icfg;
|
|
398
400
|
}
|
|
399
401
|
|
|
402
|
+
DominatorTree& getDomTree(const Function* fun);
|
|
403
|
+
|
|
400
404
|
private:
|
|
401
405
|
/// Create SVFTypes
|
|
402
406
|
SVFType* addSVFTypeInfo(const Type* t);
|
|
Binary file
|
|
Binary file
|