svf-lib 1.0.2380 → 1.0.2382
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.
|
@@ -62,6 +62,9 @@ public:
|
|
|
62
62
|
/// Allocate an object ID as determined by the strategy.
|
|
63
63
|
NodeID allocateObjectId(void);
|
|
64
64
|
|
|
65
|
+
/// Allocate an type ID as determined by the strategy.
|
|
66
|
+
NodeID allocateTypeId(void);
|
|
67
|
+
|
|
65
68
|
/// Allocate a GEP object ID as determined by the strategy.
|
|
66
69
|
/// allocateObjectId is still fine for GEP objects, but
|
|
67
70
|
/// for some strategies (DBUG, namely), GEP objects can
|
|
@@ -103,6 +106,8 @@ private:
|
|
|
103
106
|
NodeID numSymbols;
|
|
104
107
|
/// Total number of objects and values allocated.
|
|
105
108
|
NodeID numNodes;
|
|
109
|
+
/// Total number of svftypes
|
|
110
|
+
NodeID numType;
|
|
106
111
|
///@}
|
|
107
112
|
|
|
108
113
|
/// Strategy to allocate with.
|
|
Binary file
|
|
Binary file
|
package/llvm_install.sh
CHANGED
|
@@ -4,8 +4,8 @@ sysOS=`uname -s`
|
|
|
4
4
|
arch=`uname -m`
|
|
5
5
|
MajorLLVMVer=16
|
|
6
6
|
LLVMVer=${MajorLLVMVer}.0.0
|
|
7
|
-
UbuntuLLVM_RTTI="https://github.com/SVF-tools/SVF/releases/download/SVF-3.
|
|
8
|
-
UbuntuArmLLVM_RTTI="https://github.com/SVF-tools/SVF/releases/download/SVF-3.
|
|
7
|
+
UbuntuLLVM_RTTI="https://github.com/SVF-tools/SVF/releases/download/SVF-3.1/llvm-${LLVMVer}-ubuntu20-rtti-x86-64.tar.gz"
|
|
8
|
+
UbuntuArmLLVM_RTTI="https://github.com/SVF-tools/SVF/releases/download/SVF-3.1/llvm-${LLVMVer}-ubuntu22-rtti-aarch64.tar.gz"
|
|
9
9
|
|
|
10
10
|
UbuntuZ3Arm="https://github.com/SVF-tools/SVF-npm/raw/prebuilt-libs/z3-4.8.7-aarch64-ubuntu.zip"
|
|
11
11
|
UbuntuZ3="https://github.com/Z3Prover/z3/releases/download/z3-4.8.8/z3-4.8.8-x64-ubuntu-16.04.zip"
|