svf-lib 1.0.1820 → 1.0.1821

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.
Files changed (109) hide show
  1. package/SVF-osx/Release-build/svf/libSvfCore.a +0 -0
  2. package/SVF-osx/Release-build/svf-llvm/libSvfLLVM.a +0 -0
  3. package/SVF-osx/svf/include/AbstractExecution/BoundedZ3Expr.h +2 -0
  4. package/SVF-osx/svf/include/AbstractExecution/CFBasicBlockGWTO.h +83 -0
  5. package/SVF-osx/svf/include/AbstractExecution/ConsExeState.h +8 -0
  6. package/SVF-osx/svf/include/AbstractExecution/ExeState.h +8 -0
  7. package/SVF-osx/svf/include/AbstractExecution/ICFGWTO.h +78 -0
  8. package/SVF-osx/svf/include/AbstractExecution/IntervalExeState.h +7 -0
  9. package/SVF-osx/svf/include/AbstractExecution/IntervalValue.h +3 -0
  10. package/SVF-osx/svf/include/AbstractExecution/NumericLiteral.h +2 -0
  11. package/SVF-osx/svf/include/AbstractExecution/RelExeState.h +1 -0
  12. package/SVF-osx/svf/include/AbstractExecution/RelationSolver.h +1 -0
  13. package/SVF-osx/svf/include/AbstractExecution/SVFIR2ConsExeState.h +1 -0
  14. package/SVF-osx/svf/include/AbstractExecution/SVFIR2ItvExeState.h +4 -0
  15. package/SVF-osx/svf/include/AbstractExecution/SingleAbsValue.h +2 -0
  16. package/SVF-osx/svf/include/AbstractExecution/SymState.h +4 -0
  17. package/SVF-osx/svf/include/CFL/CFGrammar.h +4 -0
  18. package/SVF-osx/svf/include/CFL/CFLAlias.h +1 -0
  19. package/SVF-osx/svf/include/CFL/CFLGraphBuilder.h +1 -0
  20. package/SVF-osx/svf/include/CFL/CFLStat.h +1 -0
  21. package/SVF-osx/svf/include/CFL/CFLVF.h +1 -0
  22. package/SVF-osx/svf/include/DDA/ContextDDA.h +1 -0
  23. package/SVF-osx/svf/include/DDA/DDAClient.h +5 -0
  24. package/SVF-osx/svf/include/DDA/DDAPass.h +3 -2
  25. package/SVF-osx/svf/include/DDA/DDAVFSolver.h +2 -2
  26. package/SVF-osx/svf/include/FastCluster/fastcluster.h +1 -0
  27. package/SVF-osx/svf/include/Graphs/CDG.h +3 -0
  28. package/SVF-osx/svf/include/Graphs/CFBasicBlockG.h +3 -0
  29. package/SVF-osx/svf/include/Graphs/CFLGraph.h +1 -0
  30. package/SVF-osx/svf/include/Graphs/CHG.h +4 -2
  31. package/SVF-osx/svf/include/Graphs/ConsGEdge.h +5 -0
  32. package/SVF-osx/svf/include/Graphs/ConsGNode.h +1 -0
  33. package/SVF-osx/svf/include/Graphs/DOTGraphTraits.h +1 -0
  34. package/SVF-osx/svf/include/Graphs/GenericGraph.h +1 -0
  35. package/SVF-osx/svf/include/Graphs/GraphPrinter.h +3 -0
  36. package/SVF-osx/svf/include/Graphs/GraphTraits.h +2 -2
  37. package/SVF-osx/svf/include/Graphs/ICFG.h +1 -0
  38. package/SVF-osx/svf/include/Graphs/ICFGNode.h +3 -0
  39. package/SVF-osx/svf/include/Graphs/ICFGStat.h +2 -0
  40. package/SVF-osx/svf/include/Graphs/IRGraph.h +1 -0
  41. package/SVF-osx/svf/include/Graphs/PTACallGraph.h +3 -0
  42. package/SVF-osx/svf/include/Graphs/SCC.h +354 -0
  43. package/SVF-osx/svf/include/Graphs/SVFG.h +2 -0
  44. package/SVF-osx/svf/include/Graphs/SVFGEdge.h +1 -0
  45. package/SVF-osx/svf/include/Graphs/SVFGNode.h +7 -0
  46. package/SVF-osx/svf/include/Graphs/SVFGOPT.h +3 -0
  47. package/SVF-osx/svf/include/Graphs/SVFGStat.h +3 -1
  48. package/SVF-osx/svf/include/Graphs/ThreadCallGraph.h +3 -0
  49. package/SVF-osx/svf/include/Graphs/VFG.h +2 -0
  50. package/SVF-osx/svf/include/Graphs/VFGEdge.h +3 -0
  51. package/SVF-osx/svf/include/Graphs/VFGNode.h +8 -0
  52. package/SVF-osx/svf/include/Graphs/WTO.h +859 -0
  53. package/SVF-osx/svf/include/MSSA/MSSAMuChi.h +4 -0
  54. package/SVF-osx/svf/include/MSSA/MemPartition.h +1 -0
  55. package/SVF-osx/svf/include/MSSA/MemRegion.h +4 -3
  56. package/SVF-osx/svf/include/MSSA/MemSSA.h +1 -0
  57. package/SVF-osx/svf/include/MTA/FSMPTA.h +6 -0
  58. package/SVF-osx/svf/include/MTA/LockAnalysis.h +5 -0
  59. package/SVF-osx/svf/include/MTA/MHP.h +3 -0
  60. package/SVF-osx/svf/include/MTA/MTA.h +1 -0
  61. package/SVF-osx/svf/include/MTA/MTAResultValidator.h +2 -0
  62. package/SVF-osx/svf/include/MTA/TCT.h +3 -2
  63. package/SVF-osx/svf/include/MemoryModel/AbstractPointsToDS.h +2 -0
  64. package/SVF-osx/svf/include/MemoryModel/AccessPath.h +5 -0
  65. package/SVF-osx/svf/include/MemoryModel/ConditionalPT.h +5 -0
  66. package/SVF-osx/svf/include/MemoryModel/PersistentPointsToDS.h +1 -0
  67. package/SVF-osx/svf/include/MemoryModel/PointerAnalysis.h +6 -5
  68. package/SVF-osx/svf/include/MemoryModel/PointerAnalysisImpl.h +1 -0
  69. package/SVF-osx/svf/include/MemoryModel/PointsTo.h +1 -0
  70. package/SVF-osx/svf/include/SABER/DoubleFreeChecker.h +1 -0
  71. package/SVF-osx/svf/include/SABER/ProgSlice.h +1 -0
  72. package/SVF-osx/svf/include/SABER/SaberCondAllocator.h +4 -0
  73. package/SVF-osx/svf/include/SABER/SaberSVFGBuilder.h +1 -0
  74. package/SVF-osx/svf/include/SVFIR/SVFIR.h +2 -0
  75. package/SVF-osx/svf/include/SVFIR/SVFStatements.h +2 -0
  76. package/SVF-osx/svf/include/SVFIR/SVFType.h +2 -0
  77. package/SVF-osx/svf/include/SVFIR/SVFValue.h +3 -0
  78. package/SVF-osx/svf/include/SVFIR/SVFVariables.h +5 -0
  79. package/SVF-osx/svf/include/SVFIR/SymbolTableInfo.h +5 -0
  80. package/SVF-osx/svf/include/Util/CDGBuilder.h +8 -0
  81. package/SVF-osx/svf/include/Util/CallGraphBuilder.h +2 -0
  82. package/SVF-osx/svf/include/Util/Casting.h +2 -1
  83. package/SVF-osx/svf/include/Util/CommandLine.h +1 -0
  84. package/SVF-osx/svf/include/Util/CxtStmt.h +4 -0
  85. package/SVF-osx/svf/include/Util/DPItem.h +2 -0
  86. package/SVF-osx/svf/include/Util/NodeIDAllocator.h +2 -2
  87. package/SVF-osx/svf/include/Util/PTAStat.h +1 -0
  88. package/SVF-osx/svf/include/Util/SVFBugReport.h +1 -0
  89. package/SVF-osx/svf/include/Util/SVFStat.h +1 -0
  90. package/SVF-osx/svf/include/Util/SVFUtil.h +1 -0
  91. package/SVF-osx/svf/include/Util/ThreadAPI.h +1 -0
  92. package/SVF-osx/svf/include/Util/WorkList.h +1 -0
  93. package/SVF-osx/svf/include/Util/Z3Expr.h +4 -0
  94. package/SVF-osx/svf/include/Util/iterator.h +2 -2
  95. package/SVF-osx/svf/include/WPA/Andersen.h +6 -0
  96. package/SVF-osx/svf/include/WPA/AndersenPWC.h +3 -0
  97. package/SVF-osx/svf/include/WPA/CSC.h +3 -3
  98. package/SVF-osx/svf/include/WPA/WPAFSSolver.h +5 -0
  99. package/SVF-osx/svf/include/WPA/WPAPass.h +2 -0
  100. package/SVF-osx/svf/include/WPA/WPASolver.h +2 -0
  101. package/SVF-osx/svf/include/WPA/WPAStat.h +1 -0
  102. package/SVF-osx/svf-llvm/include/SVF-LLVM/BreakConstantExpr.h +1 -0
  103. package/SVF-osx/svf-llvm/include/SVF-LLVM/DCHG.h +1 -0
  104. package/SVF-osx/svf-llvm/include/SVF-LLVM/GEPTypeBridgeIterator.h +3 -0
  105. package/SVF-osx/svf-llvm/include/SVF-LLVM/LLVMModule.h +1 -0
  106. package/SVF-osx/svf-llvm/include/SVF-LLVM/LLVMUtil.h +1 -0
  107. package/SVF-osx/svf-llvm/include/SVF-LLVM/SVFIRBuilder.h +1 -0
  108. package/SVF-osx/svf-llvm/include/SVF-LLVM/SymbolTableBuilder.h +1 -0
  109. package/package.json +1 -1
@@ -134,6 +134,7 @@ public:
134
134
  virtual const std::string toString() const;
135
135
  };
136
136
 
137
+
137
138
  /*!
138
139
  * SVFG edge representing direct value-flows
139
140
  */
@@ -168,6 +169,7 @@ public:
168
169
  virtual const std::string toString() const;
169
170
  };
170
171
 
172
+
171
173
  /*!
172
174
  * Intra SVFG edge representing direct intra-procedural value-flows
173
175
  */
@@ -202,6 +204,7 @@ public:
202
204
  virtual const std::string toString() const;
203
205
  };
204
206
 
207
+
205
208
  /*!
206
209
  * SVFG call edge representing direct value-flows from a caller to its callee at a callsite
207
210
  */
@@ -316,6 +316,7 @@ public:
316
316
  const std::string toString() const override;
317
317
  };
318
318
 
319
+
319
320
  /*!
320
321
  * VFGNode for compare instruction, e.g., bool b = (a!=c);
321
322
  */
@@ -387,6 +388,7 @@ public:
387
388
  const std::string toString() const override;
388
389
  };
389
390
 
391
+
390
392
  /*!
391
393
  * VFGNode for binary operator instructions, e.g., a = b + c;
392
394
  */
@@ -701,6 +703,7 @@ public:
701
703
  const std::string toString() const override;
702
704
  };
703
705
 
706
+
704
707
  /*
705
708
  * Intra LLVM PHI Node
706
709
  */
@@ -753,6 +756,7 @@ public:
753
756
  const std::string toString() const override;
754
757
  };
755
758
 
759
+
756
760
  class AddrVFGNode: public StmtVFGNode
757
761
  {
758
762
  private:
@@ -791,6 +795,7 @@ public:
791
795
  const std::string toString() const override;
792
796
  };
793
797
 
798
+
794
799
  class ArgumentVFGNode : public VFGNode
795
800
  {
796
801
 
@@ -886,6 +891,7 @@ public:
886
891
  const std::string toString() const override;
887
892
  };
888
893
 
894
+
889
895
  /*
890
896
  * ICFG Node stands for formal parameter node (top level pointers)
891
897
  */
@@ -1140,6 +1146,8 @@ private:
1140
1146
  const CallICFGNode* callInst;
1141
1147
  };
1142
1148
 
1149
+
1150
+
1143
1151
  /*!
1144
1152
  * Dummy Definition for undef and null pointers
1145
1153
  */