svf-lib 1.0.1359 → 1.0.1360
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
|
|
@@ -58,7 +58,7 @@ public:
|
|
|
58
58
|
typedef Map<const Value*, SVFOtherValue*> LLVMValue2SVFOtherValueMap;
|
|
59
59
|
typedef Map<const SVFValue*, const Value*> SVFValue2LLVMValueMap;
|
|
60
60
|
typedef Map<const Type*, SVFType*> LLVMType2SVFTypeMap;
|
|
61
|
-
typedef Map<const Type*,
|
|
61
|
+
typedef Map<const Type*, StInfo*> Type2TypeInfoMap;
|
|
62
62
|
|
|
63
63
|
private:
|
|
64
64
|
static LLVMModuleSet* llvmModuleSet;
|
|
@@ -84,6 +84,7 @@ private:
|
|
|
84
84
|
SVFValue2LLVMValueMap SVFValue2LLVMValue;
|
|
85
85
|
LLVMType2SVFTypeMap LLVMType2SVFType;
|
|
86
86
|
Type2TypeInfoMap Type2TypeInfo;
|
|
87
|
+
Set<const StInfo*> StInfos;
|
|
87
88
|
|
|
88
89
|
/// Constructor
|
|
89
90
|
LLVMModuleSet();
|
|
@@ -334,7 +335,7 @@ private:
|
|
|
334
335
|
/// Collect the array info
|
|
335
336
|
StInfo* collectArrayInfo(const ArrayType* T);
|
|
336
337
|
/// Collect simple type (non-aggregate) info
|
|
337
|
-
StInfo* collectSimpleTypeInfo(
|
|
338
|
+
StInfo* collectSimpleTypeInfo(const Type* T);
|
|
338
339
|
|
|
339
340
|
std::vector<const Function*> getLLVMGlobalFunctions(const GlobalVariable* global);
|
|
340
341
|
|