svf-lib 1.0.2357 → 1.0.2359

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
@@ -446,7 +446,10 @@ public:
446
446
  friend BoundedInt operator/(const BoundedInt& lhs, const BoundedInt& rhs)
447
447
  {
448
448
  if (rhs.is_zero())
449
+ {
449
450
  assert(false && "divide by zero");
451
+ abort();
452
+ }
450
453
  else if (!lhs.is_infinity() && !rhs.is_infinity())
451
454
  return lhs._iVal / rhs._iVal;
452
455
  else if (!lhs.is_infinity() && rhs.is_infinity())
@@ -215,7 +215,10 @@ public:
215
215
  if (hasGepObjOffsetFromBase(obj))
216
216
  return gepObjOffsetFromBase.at(obj);
217
217
  else
218
+ {
218
219
  assert(false && "GepObjVar not found in gepObjOffsetFromBase");
220
+ abort();
221
+ }
219
222
  }
220
223
 
221
224
  /**
@@ -168,6 +168,7 @@ public:
168
168
  if (abstractTrace.count(repNode) == 0)
169
169
  {
170
170
  assert(false && "No preAbsTrace for this node");
171
+ abort();
171
172
  }
172
173
  else
173
174
  {
@@ -408,6 +408,7 @@ protected:
408
408
  }
409
409
  }
410
410
  assert (false && "Unknown cast inst!");
411
+ abort();
411
412
  }
412
413
 
413
414
  /// Add Copy edge
@@ -104,8 +104,8 @@ public:
104
104
  private:
105
105
  enum ENUM_INOUT
106
106
  {
107
- IN,
108
- OUT
107
+ IN_SET,
108
+ OUT_SET
109
109
  };
110
110
 
111
111
  void clearStat();
package/SVF-osx/bin/ae CHANGED
Binary file
package/SVF-osx/bin/cfl CHANGED
Binary file
package/SVF-osx/bin/dvf CHANGED
Binary file
Binary file
package/SVF-osx/bin/mta CHANGED
Binary file
package/SVF-osx/bin/saber CHANGED
Binary file
Binary file
package/SVF-osx/bin/wpa CHANGED
Binary file
@@ -66,7 +66,7 @@ public:
66
66
  return;
67
67
  }
68
68
 
69
- O << "Writing '" << Filename << "'...";
69
+ O << "Writing '" << Filename << "'...\n";
70
70
 
71
71
  WriteGraph(outFile, GT, simple);
72
72
  outFile.close();
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svf-lib",
3
- "version": "1.0.2357",
3
+ "version": "1.0.2359",
4
4
  "description": "SVF's npm support",
5
5
  "main": "index.js",
6
6
  "scripts": {