-
Notifications
You must be signed in to change notification settings - Fork 88
Provide Common Configurations #788
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
Merged
Merged
Changes from 9 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
27bf693
Provide example configurations
michael-schwarz 69208b8
Use existing CI schema validation instead of handrolling one
michael-schwarz 788d939
Update large config
michael-schwarz 788a93f
simplify medium config
michael-schwarz 1096559
Move explanation of example configurations into the user guide
michael-schwarz 841301c
formatting
michael-schwarz 81b8587
Add analyses reuired by mutex to large-programs
michael-schwarz b9b7b9b
Steps towards shipping config as part of install
michael-schwarz dfb2c54
Commit dune project file
michael-schwarz a761837
Also ship sv-comp configs
michael-schwarz cb3a850
Provide sites in js build
michael-schwarz 6644843
Fix loading of configs
michael-schwarz 77e9369
Update readme
michael-schwarz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,10 @@ | ||
|
|
||
| (install | ||
| (section (site (goblint conf))) | ||
| (files | ||
| (examples/large-program.json as examples/large-program.json) ; must repeat directory, otherwise gets stripped from target | ||
| (examples/medium-program.json as examples/medium-program.json) ; must repeat directory, otherwise gets stripped from target | ||
| (examples/very-precise.json as examples/very-precise.json) ; must repeat directory, otherwise gets stripped from target | ||
| ; no way to glob here... | ||
| ) | ||
| ) | ||
This file contains hidden or 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,20 @@ | ||
| { | ||
| "ana": { | ||
| "activated": [ | ||
| "base", "mallocWrapper","escape","mutex","mutexEvents","access" | ||
| ], | ||
| "base": { | ||
| "privatization": "none", | ||
| "context": { | ||
| "non-ptr": false | ||
| } | ||
| }, | ||
| "thread": { | ||
| "domain": "plain", | ||
| "include-node": false | ||
| } | ||
| }, | ||
| "exp": { | ||
| "earlyglobs": true | ||
| } | ||
| } |
This file contains hidden or 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,29 @@ | ||
| { | ||
| "ana": { | ||
| "int": { | ||
| "def_exc": true, | ||
| "enums": false, | ||
| "interval": true | ||
| }, | ||
| "activated": [ | ||
| "base", | ||
| "threadid", | ||
| "threadflag", | ||
| "mallocWrapper", | ||
| "mutexEvents", | ||
| "mutex", | ||
| "access", | ||
| "escape", | ||
| "expRelation", | ||
| "var_eq", | ||
| "symb_locks", | ||
| "region", | ||
| "thread" | ||
| ], | ||
| "base": { | ||
| "arrays": { | ||
| "domain": "partitioned" | ||
| } | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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,65 @@ | ||
| { | ||
| "ana": { | ||
| "int": { | ||
| "def_exc": true, | ||
| "enums": true, | ||
| "interval": true, | ||
| "congruence": true, | ||
| "refinement": "fixpoint", | ||
| "interval_threshold_widening" : true, | ||
| "def_exc_widen_by_join" : true | ||
| }, | ||
| "path_sens" : [ "mutex", "malloc_null", "uninit","threadflag" ], | ||
| "apron" : { | ||
| "domain": "octagon", | ||
| "threshold_widening": true, | ||
| "privatization": "mutex-meet-tid-cluster12", | ||
| "strengthening": true | ||
| }, | ||
| "activated": [ | ||
| "base", | ||
| "threadid", | ||
| "threadflag", | ||
| "mallocWrapper", | ||
| "mutexEvents", | ||
| "mutex", | ||
| "access", | ||
| "escape", | ||
| "expRelation", | ||
| "var_eq", | ||
| "symb_locks", | ||
| "region", | ||
| "thread", | ||
| "apron" | ||
| ], | ||
| "context": { | ||
| "widen": false | ||
| }, | ||
| "malloc": { | ||
| "wrappers": [ | ||
| "kmalloc", | ||
| "__kmalloc", | ||
| "usb_alloc_urb", | ||
| "__builtin_alloca", | ||
| "kzalloc", | ||
| "ldv_malloc", | ||
| "kzalloc_node", | ||
| "ldv_zalloc", | ||
| "kmalloc_array", | ||
| "kcalloc" | ||
| ] | ||
| }, | ||
| "base": { | ||
| "arrays": { | ||
| "domain": "partitioned" | ||
| }, | ||
| "structs" : { | ||
| "domain" : "combined-sk" | ||
| } | ||
| } | ||
| }, | ||
| "exp": { | ||
| "region-offsets": true | ||
| }, | ||
| "solver": "td3" | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -55,5 +55,5 @@ | |
| apron | ||
| z3 | ||
| ) | ||
| (sites (share includes)) | ||
| (sites (share includes) (share conf)) | ||
| ) | ||
This file contains hidden or 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 hidden or 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 +1,2 @@ | ||
| val includes: string list | ||
| val conf: string list |
This file contains hidden or 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 +1,2 @@ | ||
| let includes = Dunesite.Sites.includes (* export without all the intermediate modules *) | ||
| let conf = Dunesite.Sites.conf |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.