svf-tools 1.0.523 → 1.0.526
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.
- package/CMakeLists.txt +1 -1
- package/README.md +5 -18
- package/{doc → docs}/.gitignore +0 -0
- package/docs/README.md +8 -0
- package/{doc → docs}/doxygen.config +0 -0
- package/{images → docs/images}/PAG.png +0 -0
- package/{images → docs/images}/andersen.png +0 -0
- package/{images → docs/images}/callgraph.png +0 -0
- package/{images → docs/images}/consG.png +0 -0
- package/{images → docs/images}/cpu2000-flto +0 -0
- package/{images → docs/images}/cpu2006-flto +0 -0
- package/{images → docs/images}/database.png +0 -0
- package/{images → docs/images}/framework.png +0 -0
- package/{images → docs/images}/help.png +0 -0
- package/{images → docs/images}/icfg.png +0 -0
- package/{images → docs/images}/mssa-cha.png +0 -0
- package/{images → docs/images}/pagedge.png +0 -0
- package/{images → docs/images}/pagnode.png +0 -0
- package/{images → docs/images}/pt.png +0 -0
- package/{images → docs/images}/setupcmake.png +0 -0
- package/{images → docs/images}/setupconfiguration.png +0 -0
- package/{images → docs/images}/setupdashboard.png +0 -0
- package/{images → docs/images}/setupdebug.png +0 -0
- package/{images → docs/images}/setupenv.png +0 -0
- package/{images → docs/images}/startup.png +0 -0
- package/{images → docs/images}/svf-stat.pdf +0 -0
- package/{images → docs/images}/svfg-framework.png +0 -0
- package/{images → docs/images}/svfg.png +0 -0
- package/{images → docs/images}/svfg_opt.png +0 -0
- package/{images → docs/images}/svfgedge-cha.png +0 -0
- package/{images → docs/images}/svfgnode-cha.png +0 -0
- package/{images → docs/images}/tools.png +0 -0
- package/{images → docs/images}/users.png +0 -0
- package/{images → docs/images}/vm1.png +0 -0
- package/{images → docs/images}/vm2.png +0 -0
- package/{images → docs/images}/vm3.png +0 -0
- package/{images → docs/images}/vm4.png +0 -0
- package/{images → docs/images}/vm5.png +0 -0
- package/{stylesheets → docs/stylesheets}/github-light.css +0 -0
- package/{stylesheets → docs/stylesheets}/normalize.css +0 -0
- package/{stylesheets → docs/stylesheets}/stylesheet.css +0 -0
- package/index.html +3 -3
- package/package.json +1 -1
- package/codecov.yml +0 -28
- package/config.in +0 -6
package/CMakeLists.txt
CHANGED
|
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.13.4)
|
|
|
3
3
|
project("SVF")
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
configure_file(${CMAKE_CURRENT_SOURCE_DIR}
|
|
6
|
+
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/.config.in ${CMAKE_CURRENT_SOURCE_DIR}/include/Util/config.h @ONLY)
|
|
7
7
|
|
|
8
8
|
# To support both in- and out-of-source builds,
|
|
9
9
|
# we check for the presence of the add_llvm_loadable_module command.
|
package/README.md
CHANGED
|
@@ -21,28 +21,19 @@
|
|
|
21
21
|
|
|
22
22
|
## Documentation
|
|
23
23
|
|
|
24
|
-
|
|
25
|
-
```
|
|
26
|
-
cd doc && doxygen doxygen.config
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
#### We are looking for self-motivated PhD students and we welcome industry collaboration/sponsorship to improve SVF (Please contact yulei.sui@uts.edu.au if you are interested)
|
|
30
|
-
|
|
24
|
+
<b>SVF</b> is a source code analysis tool that enables interprocedural dependence analysis for LLVM-based languages. <b>SVF</b> is able to perform pointer alias analysis, memory SSA form construction, value-flow tracking, context-free-reachability analysis, path-sensitive typestate analysis and memory error checking. <b>SVF</b>'s doxygen document is [here](https://svf-tools.github.io/SVF-doxygen/html).
|
|
31
25
|
|
|
32
|
-
<br />
|
|
33
|
-
<br />
|
|
34
|
-
<br />
|
|
35
|
-
SVF is a source code analysis tool that enables interprocedural dependence analysis for LLVM-based languages. SVF is able to perform pointer alias analysis, memory SSA form construction, value-flow tracking for program variables and memory error checking.
|
|
36
|
-
<br />
|
|
37
26
|
<br />
|
|
38
27
|
|
|
39
28
|
| About SVF | Setup Guide | User Guide | Developer Guide |
|
|
40
29
|
| ------------- |:-------------:| -----:|-----:|
|
|
41
|
-
| |  |  | 
|
|
30
|
+
| |  |  | 
|
|
42
31
|
| Introducing SVF -- [what it does](https://github.com/svf-tools/SVF/wiki/About#what-is-svf) and [how we design it](https://github.com/svf-tools/SVF/wiki/SVF-Design#svf-design) | A step by step [setup guide](https://github.com/svf-tools/SVF/wiki/Setup-Guide#getting-started) to build SVF | Command-line options to [run SVF](https://github.com/svf-tools/SVF/wiki/User-Guide#quick-start), get [analysis outputs](https://github.com/svf-tools/SVF/wiki/User-Guide#analysis-outputs), and test SVF with [an example](https://github.com/svf-tools/SVF/wiki/Analyze-a-Simple-C-Program) or [PTABen](https://github.com/SVF-tools/PTABen) | Detailed [technical documentation](https://github.com/svf-tools/SVF/wiki/Technical-documentation) and how to [write your own analyses](https://github.com/svf-tools/SVF/wiki/Write-your-own-analysis-in-SVF) in SVF or [use SVF as a lib](https://github.com/SVF-tools/SVF-example) for your tool |
|
|
43
32
|
|
|
44
|
-
|
|
45
33
|
<br />
|
|
34
|
+
|
|
35
|
+
#### We are looking for self-motivated PhD students and we welcome industry collaboration/sponsorship to improve SVF (Please contact yulei.sui@uts.edu.au if you are interested)
|
|
36
|
+
|
|
46
37
|
<br />
|
|
47
38
|
<p>We release SVF source code in the hope of benefiting others. You are kindly asked to acknowledge usage of the tool by citing some of our publications listed http://svf-tools.github.io/SVF, especially the following two: </p>
|
|
48
39
|
|
|
@@ -69,7 +60,3 @@ SVF is a source code analysis tool that enables interprocedural dependence analy
|
|
|
69
60
|
publisher={IEEE}
|
|
70
61
|
}
|
|
71
62
|
```
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
package/{doc → docs}/.gitignore
RENAMED
|
File without changes
|
package/docs/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# SVF-Teaching
|
|
2
|
+
Learning and Teaching Software Analysis, Verification and AI via [SVF](https://github.com/SVF-tools/SVF)
|
|
3
|
+
|
|
4
|
+
[Software Analysis Course](https://github.com/SVF-tools/Teaching-Software-Analysis)
|
|
5
|
+
|
|
6
|
+
[Software Verification Course](https://github.com/SVF-tools/Teaching-Software-Verification)
|
|
7
|
+
|
|
8
|
+
[Static Analysis and AI Course](https://github.com/SVF-tools/Teaching-Static-Analysis-AI)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/index.html
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<title>SVF:Pointer Analysis for C and C++ </title>
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
|
-
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen">
|
|
7
|
+
<link rel="stylesheet" type="text/css" href="docs/stylesheets/normalize.css" media="screen">
|
|
8
8
|
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
|
|
9
|
-
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
|
|
10
|
-
<link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen">
|
|
9
|
+
<link rel="stylesheet" type="text/css" href="docs/stylesheets/stylesheet.css" media="screen">
|
|
10
|
+
<link rel="stylesheet" type="text/css" href="docs/stylesheets/github-light.css" media="screen">
|
|
11
11
|
</head>
|
|
12
12
|
<body>
|
|
13
13
|
<section class="page-header">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svf-tools",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.526",
|
|
4
4
|
"description": "* <b>[TypeClone](https://github.com/SVF-tools/SVF/wiki/TypeClone) published in our [ECOOP paper](https://yuleisui.github.io/publications/ecoop20.pdf) is now available in SVF </b> * <b>SVF now uses a single script for its build. Just type [`source ./build.sh`](https://github.com/SVF-tools/SVF/blob/master/build.sh) in your terminal, that's it!</b> * <b>SVF now supports LLVM-10.0.0! </b> * <b>We thank [bsauce](https://github.com/bsauce) for writing a user manual of SVF ([link1](https://www.jianshu.com/p/068a08ec749c) and [link2](https://www.jianshu.com/p/777c30d4240e)) in Chinese </b> * <b>SVF now supports LLVM-9.0.0 (Thank [Byoungyoung Lee](https://github.com/SVF-tools/SVF/issues/142) for his help!). </b> * <b>SVF now supports a set of [field-sensitive pointer analyses](https://yuleisui.github.io/publications/sas2019a.pdf). </b> * <b>[Use SVF as an external lib](https://github.com/SVF-tools/SVF/wiki/Using-SVF-as-a-lib-in-your-own-tool) for your own project (Contributed by [Hongxu Chen](https://github.com/HongxuChen)). </b> * <b>SVF now supports LLVM-7.0.0. </b> * <b>SVF now supports Docker. [Try SVF in Docker](https://github.com/SVF-tools/SVF/wiki/Try-SVF-in-Docker)! </b> * <b>SVF now supports [LLVM-6.0.0](https://github.com/svf-tools/SVF/pull/38) (Contributed by [Jack Anthony](https://github.com/jackanth)). </b> * <b>SVF now supports [LLVM-4.0.0](https://github.com/svf-tools/SVF/pull/23) (Contributed by Jared Carlson. Thank [Jared](https://github.com/jcarlson23) and [Will](https://github.com/dtzWill) for their in-depth [discussions](https://github.com/svf-tools/SVF/pull/18) about updating SVF!) </b> * <b>SVF now supports analysis for C++ programs.</b> <br />",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
package/codecov.yml
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
codecov:
|
|
2
|
-
require_ci_to_pass: yes
|
|
3
|
-
|
|
4
|
-
coverage:
|
|
5
|
-
status:
|
|
6
|
-
project:
|
|
7
|
-
default:
|
|
8
|
-
target: 62% # If auto, it will compare with the last commit. This could be set to an exact number such as 70% or higher.
|
|
9
|
-
threshold: 0.01% # Allow the coverage to drop by 0.01%, and posting a success status.
|
|
10
|
-
base: auto
|
|
11
|
-
patch:
|
|
12
|
-
default:
|
|
13
|
-
target: auto # If auto, it will compare with the last commit. This could be set to an exact number such as 70% or higher.
|
|
14
|
-
threshold: 0.01% # Allow the coverage to drop by 0.01%, and posting a success status.
|
|
15
|
-
base: auto
|
|
16
|
-
|
|
17
|
-
parsers:
|
|
18
|
-
gcov:
|
|
19
|
-
branch_detection:
|
|
20
|
-
conditional: yes
|
|
21
|
-
loop: yes
|
|
22
|
-
method: no
|
|
23
|
-
macro: no
|
|
24
|
-
|
|
25
|
-
comment:
|
|
26
|
-
layout: "reach,diff,flags,tree"
|
|
27
|
-
behavior: default
|
|
28
|
-
require_changes: no
|