Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Kani Metrics #12

Closed
wants to merge 13 commits into from
28 changes: 27 additions & 1 deletion doc/mdbook-metrics/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,25 @@ fn run_kani_metrics_script() -> Result<(), Error> {
Command::new("python")
.args(&[
"kani_std_analysis.py",
"--crate",
"core",
"--metrics-file",
"metrics-data-core.json",
"--plot-only",
"--plot-dir",
&tools_path.to_string_lossy(),
])
.stdout(std::process::Stdio::null())
.stderr(std::process::Stdio::null())
.status()?;

Command::new("python")
.args(&[
"kani_std_analysis.py",
"--crate",
"std",
"--metrics-file",
"metrics-data-std.json",
"--plot-only",
"--plot-dir",
&tools_path.to_string_lossy(),
Expand Down Expand Up @@ -83,12 +102,19 @@ fn add_graphs(chapter: &mut Chapter) {

Note that these metrics are for x86-64 architectures.

## `core`
### `core`
![Unsafe Metrics](core_unsafe_metrics.png)

![Safe Abstractions Metrics](core_safe_abstractions_metrics.png)

![Safe Metrics](core_safe_metrics.png)

### `std`
![Unsafe Metrics](std_unsafe_metrics.png)

![Safe Abstractions Metrics](std_safe_abstractions_metrics.png)

![Safe Metrics](std_safe_metrics.png)
"#;

chapter.content.push_str(new_content);
Expand Down
2 changes: 1 addition & 1 deletion library/stdarch
Submodule stdarch updated 190 files
170 changes: 136 additions & 34 deletions scripts/kani-std-analysis/kani_std_analysis.py

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,28 @@
"safe_fns_under_contract": 77,
"verified_safe_fns_under_contract": 75,
"total_functions_under_contract": 273
},
{
"date": "2025-03-23",
"total_unsafe_fns": 7215,
"total_unsafe_fns_with_loop": 14,
"total_safe_abstractions": 1792,
"total_safe_abstractions_with_loop": 71,
"total_safe_fns": 15383,
"total_safe_fns_with_loop": 735,
"unsafe_fns_under_contract": 190,
"unsafe_fns_with_loop_under_contract": 1,
"verified_unsafe_fns_under_contract": 132,
"verified_unsafe_fns_with_loop_under_contract": 0,
"safe_abstractions_under_contract": 41,
"safe_abstractions_with_loop_under_contract": 0,
"verified_safe_abstractions_under_contract": 41,
"verified_safe_abstractions_with_loop_under_contract": 0,
"safe_fns_under_contract": 77,
"safe_fns_with_loop_under_contract": 0,
"verified_safe_fns_under_contract": 75,
"verified_safe_fns_with_loop_under_contract": 0,
"total_functions_under_contract": 271
}
]
}
26 changes: 26 additions & 0 deletions scripts/kani-std-analysis/metrics-data-std.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"results": [
{
"date": "2025-03-23",
"total_unsafe_fns": 179,
"total_unsafe_fns_with_loop": 12,
"total_safe_abstractions": 567,
"total_safe_abstractions_with_loop": 43,
"total_safe_fns": 4087,
"total_safe_fns_with_loop": 175,
"unsafe_fns_under_contract": 0,
"unsafe_fns_with_loop_under_contract": 0,
"verified_unsafe_fns_under_contract": 0,
"verified_unsafe_fns_with_loop_under_contract": 0,
"safe_abstractions_under_contract": 0,
"safe_abstractions_with_loop_under_contract": 0,
"verified_safe_abstractions_under_contract": 0,
"verified_safe_abstractions_with_loop_under_contract": 0,
"safe_fns_under_contract": 0,
"safe_fns_with_loop_under_contract": 0,
"verified_safe_fns_under_contract": 0,
"verified_safe_fns_with_loop_under_contract": 0,
"total_functions_under_contract": 271
}
]
}
1 change: 0 additions & 1 deletion scripts/kani-std-analysis/std-analysis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ then
fi
cargo new std_lib_analysis --lib
cd std_lib_analysis
sed -i '1i cargo-features = ["edition2024"]' Cargo.toml

echo '
pub fn dummy() {
Expand Down
7 changes: 6 additions & 1 deletion scripts/run-kani.sh
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,12 @@ main() {
./std-analysis.sh $build_dir
pip install -r requirements.txt
echo "Computing Kani-specific metrics..."
./kani_std_analysis.py --kani-list-file $current_dir/kani-list.json
./kani_std_analysis.py --crate core \
--kani-list-file $current_dir/kani-list.json \
--metrics-file metrics-data-core.json
./kani_std_analysis.py --crate std \
--kani-list-file $current_dir/kani-list.json \
--metrics-file metrics-data-std.json
popd
rm kani-list.json
fi
Expand Down