svf-lib 1.0.1921 → 1.0.1923

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
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -267,8 +267,16 @@ public:
267
267
  static const Option<u32_t> Timeout;
268
268
  /// bug info output file, Default: output.db
269
269
  static const Option<std::string> OutputName;
270
- /// open buffer overflow checker, Default: false
270
+ /// buffer overflow checker, Default: false
271
271
  static const Option<bool> BufferOverflowCheck;
272
+ /// memory leak check, Default: false
273
+ static const Option<bool> MemoryLeakCheck;
274
+ /// file open close checker, Default: false
275
+ static const Option<bool> FileCheck;
276
+ /// double free checker, Default: false
277
+ static const Option<bool> DFreeCheck;
278
+ /// data race checker, Default: false
279
+ static const Option<bool> RaceCheck;
272
280
  /// if the access index of gepstmt is unknown, skip it, Default: false
273
281
  static const Option<bool> GepUnknownIdx;
274
282
  static const Option<bool> RunUncallFuncs;
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -191,7 +191,7 @@ typedef llvm::IntrinsicInst IntrinsicInst;
191
191
  typedef llvm::DbgInfoIntrinsic DbgInfoIntrinsic;
192
192
  typedef llvm::DbgVariableIntrinsic DbgVariableIntrinsic;
193
193
  typedef llvm::DbgDeclareInst DbgDeclareInst;
194
- typedef llvm::DbgAddrIntrinsic DbgAddrIntrinsic;
194
+ typedef llvm::DbgInfoIntrinsic DbgInfoIntrinsic;
195
195
  typedef llvm::DbgValueInst DbgValueInst;
196
196
  typedef llvm::DbgLabelInst DbgLabelInst;
197
197
  typedef llvm::VPIntrinsic VPIntrinsic;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svf-lib",
3
- "version": "1.0.1921",
3
+ "version": "1.0.1923",
4
4
  "description": "SVF's npm support",
5
5
  "main": "index.js",
6
6
  "scripts": {