-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yusen Su
committed
Mar 1, 2024
1 parent
847024b
commit faf8f24
Showing
11 changed files
with
107 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
sea_base.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
verify_options: | ||
# Use crab infer bounds / range (before loop unrolling) | ||
seapp-crab-lower-is-deref: true | ||
seapp-crab-dom: 'zones' | ||
seapp-crab-stats: true | ||
seapp-crab-disable-warning: true | ||
seapp-crab-obj-reduction: 'OPT' | ||
# Use crab infer bounds(after loop unrolling) | ||
horn-bv2-crab-check-is-deref: '' | ||
horn-bmc-crab-dom: 'zones' | ||
horn-bv2-crab-obj-reduction: 'OPT' | ||
# log: 'opsem-crab' | ||
# log: 'opsem-crab-ir' | ||
crab-disable-warning: true | ||
# Statistics | ||
# crab-show-stats: '' | ||
# horn-bv2-crab-stats: '' | ||
# log: 'opsem-crab-ir:opsem-crab:seapp-crab-ir:seapp-crab' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,48 @@ | ||
verify_options: | ||
# Optimization level. | ||
'-O3': '' | ||
# | ||
# PREPROCESSING | ||
# | ||
inline: '' | ||
enable-loop-idiom: '' | ||
enable-indvar: '' | ||
no-lower-gv-init-struct: '' | ||
externalize-addr-taken-functions: '' | ||
no-kill-vaarg: '' | ||
with-arith-overflow: true | ||
# disable program transformation to single assume | ||
horn-unify-assumes: false | ||
# do not instrument library functions with memory assertions | ||
no-fat-fns: 'bcmp,memcpy,assert_bytes_match,ensure_linked_list_is_allocated,sea_aws_linked_list_is_valid' | ||
horn-gsa: false | ||
# context-sensitive type-aware alias analysis | ||
dsa: sea-cs-t | ||
# weak support for function pointers. sea-dsa is better but less stable | ||
devirt-functions: 'types' | ||
# bit-precise memory-precise operational semantics | ||
bmc: opsem | ||
horn-vcgen-use-ite: '' | ||
# ignore control flow | ||
horn-vcgen-only-dataflow: false | ||
# reduce by data dependence | ||
horn-bmc-coi: false | ||
# Use crab solve sea.is_deref | ||
horn-bv2-crab-check-is-deref: '' | ||
# reduce used by object domain | ||
# horn-bv2-crab-reduce: '' | ||
# loop peeling | ||
seapp-peel-loops: 1 | ||
# Use crab infer bounds / range (after loop unrolling) | ||
# horn-bv2-crab-rng: '' | ||
horn-bmc-crab-dom: 'zones' | ||
horn-bv2-crab-obj-reduction: 'OPT' | ||
# horn-bv2-crab-stats: '' | ||
# log: 'opsem-crab' | ||
# log: 'opsem-crab-ir' | ||
crab-disable-warning: true | ||
# Statistics | ||
# horn-bv2-crab-stats: '' | ||
# Use crab infer bounds / range (before loop unrolling) | ||
seapp-crab-lower-is-deref: true | ||
seapp-crab-dom: 'zones' | ||
seapp-crab-stats: true | ||
seapp-crab-disable-warning: true | ||
seapp-crab-obj-reduction: 'OPT' | ||
# log: 'opsem-crab-ir:opsem-crab:seapp-crab-ir:seapp-crab' | ||
# static allocator supports symbolic allocation size | ||
sea-opsem-allocator: static | ||
# stack allocation from a symbolic starting point | ||
horn-explicit-sp0: false | ||
# lambdas for memory | ||
horn-bv2-lambdas: '' | ||
# use z3 simplifier during vcgen | ||
horn-bv2-simplify: true | ||
# wide memory manager to track pointer sizes | ||
horn-bv2-extra-widemem: '' | ||
# intermediate results in human readable form for debugging | ||
'-S': '' | ||
# keep intermediate results for debugging | ||
keep-temps: '' | ||
temp-dir: /tmp/verify-c-common | ||
# time and result stats | ||
horn-stats: true | ||
# ignore converting function with prefix sea_nd to nd function | ||
ignore-define-verifier-fns: '' |