svf-lib 1.0.2051 → 1.0.2053

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 (23) hide show
  1. package/SVF-linux/Release-build/bin/ae +0 -0
  2. package/SVF-linux/Release-build/bin/svf-ex +0 -0
  3. package/SVF-linux/Release-build/include/AE/Core/AbstractState.h +3 -0
  4. package/SVF-linux/Release-build/include/AE/Core/AbstractValue.h +4 -0
  5. package/SVF-linux/Release-build/include/AE/Core/IntervalValue.h +3 -1
  6. package/SVF-linux/Release-build/include/AE/Core/NumericValue.h +3 -0
  7. package/SVF-linux/Release-build/include/AE/Svfexe/AbstractInterpretation.h +3 -3
  8. package/SVF-linux/Release-build/include/AE/Svfexe/BufOverflowChecker.h +3 -3
  9. package/SVF-linux/Release-build/include/AE/Svfexe/ICFGSimplification.h +3 -3
  10. package/SVF-linux/Release-build/include/AE/Svfexe/SVFIR2AbsState.h +3 -3
  11. package/SVF-linux/Release-build/lib/libSvfCore.a +0 -0
  12. package/SVF-osx/Release-build/bin/ae +0 -0
  13. package/SVF-osx/Release-build/include/AE/Core/AbstractState.h +3 -0
  14. package/SVF-osx/Release-build/include/AE/Core/AbstractValue.h +4 -0
  15. package/SVF-osx/Release-build/include/AE/Core/IntervalValue.h +3 -1
  16. package/SVF-osx/Release-build/include/AE/Core/NumericValue.h +3 -0
  17. package/SVF-osx/Release-build/include/AE/Svfexe/AbstractInterpretation.h +3 -3
  18. package/SVF-osx/Release-build/include/AE/Svfexe/BufOverflowChecker.h +3 -3
  19. package/SVF-osx/Release-build/include/AE/Svfexe/ICFGSimplification.h +3 -3
  20. package/SVF-osx/Release-build/include/AE/Svfexe/SVFIR2AbsState.h +3 -3
  21. package/SVF-osx/Release-build/lib/libSvfCore.a +0 -0
  22. package/SVF-osx/Release-build/lib/libSvfLLVM.a +0 -0
  23. package/package.json +1 -1
Binary file
Binary file
@@ -39,6 +39,9 @@
39
39
  * \ \ \ / /
40
40
  * ⊥
41
41
  */
42
+ // The implementation is based on
43
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
44
+ // 46th International Conference on Software Engineering. (ICSE24)
42
45
 
43
46
  #ifndef Z3_EXAMPLE_INTERVAL_DOMAIN_H
44
47
  #define Z3_EXAMPLE_INTERVAL_DOMAIN_H
@@ -20,6 +20,10 @@
20
20
  //
21
21
  //===----------------------------------------------------------------------===//
22
22
 
23
+ // The implementation is based on
24
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
25
+ // 46th International Conference on Software Engineering. (ICSE24)
26
+
23
27
  #include "AE/Core/IntervalValue.h"
24
28
  #include "AE/Core/AddressValue.h"
25
29
  #include "Util/SVFUtil.h"
@@ -26,7 +26,9 @@
26
26
  * Author: Jiawei Wang, Xiao Cheng
27
27
  *
28
28
  */
29
-
29
+ // The implementation is based on
30
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
31
+ // 46th International Conference on Software Engineering. (ICSE24)
30
32
 
31
33
  #ifndef Z3_EXAMPLE_IntervalValue_H
32
34
  #define Z3_EXAMPLE_IntervalValue_H
@@ -26,6 +26,9 @@
26
26
  * Author: Xiao Cheng, Jiawei Ren
27
27
  *
28
28
  */
29
+ // The implementation is based on
30
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
31
+ // 46th International Conference on Software Engineering. (ICSE24)
29
32
 
30
33
  #ifndef SVF_NUMERICVALUE_H
31
34
  #define SVF_NUMERICVALUE_H
@@ -18,14 +18,14 @@
18
18
  // You should have received a copy of the GNU Affero General Public License
19
19
  // along with this program. If not, see <http://www.gnu.org/licenses/>.
20
20
  //
21
- // The implementation is based on
22
- // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
23
- // 46th International Conference on Software Engineering. (ICSE24)
24
21
  //===----------------------------------------------------------------------===//
25
22
 
26
23
 
27
24
  //
28
25
  // Created by Jiawei Wang on 2024/1/10.
26
+ // The implementation is based on
27
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
28
+ // 46th International Conference on Software Engineering. (ICSE24)
29
29
  //
30
30
 
31
31
  #include "AE/Core/ICFGWTO.h"
@@ -18,14 +18,14 @@
18
18
  // You should have received a copy of the GNU Affero General Public License
19
19
  // along with this program. If not, see <http://www.gnu.org/licenses/>.
20
20
  //
21
- // The implementation is based on
22
- // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
23
- // 46th International Conference on Software Engineering. (ICSE24)
24
21
  //===----------------------------------------------------------------------===//
25
22
 
26
23
 
27
24
  //
28
25
  // Created by Jiawei Wang on 2024/1/12.
26
+ // The implementation is based on
27
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
28
+ // 46th International Conference on Software Engineering. (ICSE24)
29
29
  //
30
30
 
31
31
  #include "AE/Svfexe/AbstractInterpretation.h"
@@ -18,15 +18,15 @@
18
18
  // You should have received a copy of the GNU Affero General Public License
19
19
  // along with this program. If not, see <http://www.gnu.org/licenses/>.
20
20
  //
21
- // The implementation is based on
22
- // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
23
- // 46th International Conference on Software Engineering. (ICSE24)
24
21
  //===----------------------------------------------------------------------===//
25
22
 
26
23
 
27
24
  //
28
25
  // Created by Jiawei Wang on 2024/2/25.
29
26
  //
27
+ // The implementation is based on
28
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
29
+ // 46th International Conference on Software Engineering. (ICSE24)
30
30
  #include "AE/Svfexe/SVFIR2AbsState.h"
31
31
  #include "Graphs/ICFG.h"
32
32
 
@@ -18,9 +18,6 @@
18
18
  // You should have received a copy of the GNU Affero General Public License
19
19
  // along with this program. If not, see <http://www.gnu.org/licenses/>.
20
20
  //
21
- // The implementation is based on
22
- // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
23
- // 46th International Conference on Software Engineering. (ICSE24)
24
21
  //===----------------------------------------------------------------------===//
25
22
  /*
26
23
  * SVFIR2AbsState.h
@@ -29,6 +26,9 @@
29
26
  * Author: Jiawei Wang, Xiao Cheng
30
27
  *
31
28
  */
29
+ // The implementation is based on
30
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
31
+ // 46th International Conference on Software Engineering. (ICSE24)
32
32
 
33
33
  #ifndef Z3_EXAMPLE_SVFIR2ITVEXESTATE_H
34
34
  #define Z3_EXAMPLE_SVFIR2ITVEXESTATE_H
Binary file
@@ -39,6 +39,9 @@
39
39
  * \ \ \ / /
40
40
  * ⊥
41
41
  */
42
+ // The implementation is based on
43
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
44
+ // 46th International Conference on Software Engineering. (ICSE24)
42
45
 
43
46
  #ifndef Z3_EXAMPLE_INTERVAL_DOMAIN_H
44
47
  #define Z3_EXAMPLE_INTERVAL_DOMAIN_H
@@ -20,6 +20,10 @@
20
20
  //
21
21
  //===----------------------------------------------------------------------===//
22
22
 
23
+ // The implementation is based on
24
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
25
+ // 46th International Conference on Software Engineering. (ICSE24)
26
+
23
27
  #include "AE/Core/IntervalValue.h"
24
28
  #include "AE/Core/AddressValue.h"
25
29
  #include "Util/SVFUtil.h"
@@ -26,7 +26,9 @@
26
26
  * Author: Jiawei Wang, Xiao Cheng
27
27
  *
28
28
  */
29
-
29
+ // The implementation is based on
30
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
31
+ // 46th International Conference on Software Engineering. (ICSE24)
30
32
 
31
33
  #ifndef Z3_EXAMPLE_IntervalValue_H
32
34
  #define Z3_EXAMPLE_IntervalValue_H
@@ -26,6 +26,9 @@
26
26
  * Author: Xiao Cheng, Jiawei Ren
27
27
  *
28
28
  */
29
+ // The implementation is based on
30
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
31
+ // 46th International Conference on Software Engineering. (ICSE24)
29
32
 
30
33
  #ifndef SVF_NUMERICVALUE_H
31
34
  #define SVF_NUMERICVALUE_H
@@ -18,14 +18,14 @@
18
18
  // You should have received a copy of the GNU Affero General Public License
19
19
  // along with this program. If not, see <http://www.gnu.org/licenses/>.
20
20
  //
21
- // The implementation is based on
22
- // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
23
- // 46th International Conference on Software Engineering. (ICSE24)
24
21
  //===----------------------------------------------------------------------===//
25
22
 
26
23
 
27
24
  //
28
25
  // Created by Jiawei Wang on 2024/1/10.
26
+ // The implementation is based on
27
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
28
+ // 46th International Conference on Software Engineering. (ICSE24)
29
29
  //
30
30
 
31
31
  #include "AE/Core/ICFGWTO.h"
@@ -18,14 +18,14 @@
18
18
  // You should have received a copy of the GNU Affero General Public License
19
19
  // along with this program. If not, see <http://www.gnu.org/licenses/>.
20
20
  //
21
- // The implementation is based on
22
- // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
23
- // 46th International Conference on Software Engineering. (ICSE24)
24
21
  //===----------------------------------------------------------------------===//
25
22
 
26
23
 
27
24
  //
28
25
  // Created by Jiawei Wang on 2024/1/12.
26
+ // The implementation is based on
27
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
28
+ // 46th International Conference on Software Engineering. (ICSE24)
29
29
  //
30
30
 
31
31
  #include "AE/Svfexe/AbstractInterpretation.h"
@@ -18,15 +18,15 @@
18
18
  // You should have received a copy of the GNU Affero General Public License
19
19
  // along with this program. If not, see <http://www.gnu.org/licenses/>.
20
20
  //
21
- // The implementation is based on
22
- // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
23
- // 46th International Conference on Software Engineering. (ICSE24)
24
21
  //===----------------------------------------------------------------------===//
25
22
 
26
23
 
27
24
  //
28
25
  // Created by Jiawei Wang on 2024/2/25.
29
26
  //
27
+ // The implementation is based on
28
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
29
+ // 46th International Conference on Software Engineering. (ICSE24)
30
30
  #include "AE/Svfexe/SVFIR2AbsState.h"
31
31
  #include "Graphs/ICFG.h"
32
32
 
@@ -18,9 +18,6 @@
18
18
  // You should have received a copy of the GNU Affero General Public License
19
19
  // along with this program. If not, see <http://www.gnu.org/licenses/>.
20
20
  //
21
- // The implementation is based on
22
- // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
23
- // 46th International Conference on Software Engineering. (ICSE24)
24
21
  //===----------------------------------------------------------------------===//
25
22
  /*
26
23
  * SVFIR2AbsState.h
@@ -29,6 +26,9 @@
29
26
  * Author: Jiawei Wang, Xiao Cheng
30
27
  *
31
28
  */
29
+ // The implementation is based on
30
+ // Xiao Cheng, Jiawei Wang and Yulei Sui. Precise Sparse Abstract Execution via Cross-Domain Interaction.
31
+ // 46th International Conference on Software Engineering. (ICSE24)
32
32
 
33
33
  #ifndef Z3_EXAMPLE_SVFIR2ITVEXESTATE_H
34
34
  #define Z3_EXAMPLE_SVFIR2ITVEXESTATE_H
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svf-lib",
3
- "version": "1.0.2051",
3
+ "version": "1.0.2053",
4
4
  "description": "SVF's npm support",
5
5
  "main": "index.js",
6
6
  "scripts": {