-
Notifications
You must be signed in to change notification settings - Fork 263
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
Speed up dafny verify
by reducing memory pressure
#5827
Merged
keyboardDrummer
merged 24 commits into
dafny-lang:master
from
keyboardDrummer:onlyClaimVerificationMemoryPerModule
Oct 21, 2024
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
cddc25e
Some steps towards freeing memory after verifying a module
keyboardDrummer d4c5a8c
Remove a register call
keyboardDrummer 991ff2e
Boogie submodule
keyboardDrummer 582d16f
Use empty verification cache when possible
keyboardDrummer 87096ef
Newer boogie
keyboardDrummer abc628c
Add release notes
keyboardDrummer c64a112
Remove old logging
keyboardDrummer 4cb6f4a
Update --progress option
keyboardDrummer 629b2f9
Remove Boogie submodule
keyboardDrummer 23b83ca
Update Boogie to newer version
keyboardDrummer 8a7e1c5
Merge branch 'master' into onlyClaimVerificationMemoryPerModule
keyboardDrummer 69e3d94
Fix compilation issues
keyboardDrummer 2915dd4
Merge branch 'onlyClaimVerificationMemoryPerModule' of github.com:key…
keyboardDrummer 7f9ca76
Merge branch 'master' into onlyClaimVerificationMemoryPerModule
keyboardDrummer 63c93de
Fix tests and an ordering bug
keyboardDrummer 0f48550
Fix expect files
keyboardDrummer e65de8d
Update customBoogie
keyboardDrummer 896f87b
Merge branch 'master' into onlyClaimVerificationMemoryPerModule
keyboardDrummer e65e374
Remove comment
keyboardDrummer a0ab5c1
Merge branch 'onlyClaimVerificationMemoryPerModule' of github.com:key…
keyboardDrummer 0e95710
Merge branch 'master' into onlyClaimVerificationMemoryPerModule
keyboardDrummer 8419a62
Merge branch 'master' into onlyClaimVerificationMemoryPerModule
keyboardDrummer b823a08
Update documentation
keyboardDrummer 6ae6071
Merge remote-tracking branch 'origin/master' into onlyClaimVerificati…
keyboardDrummer 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 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 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
4 changes: 2 additions & 2 deletions
4
Source/IntegrationTests/TestFiles/LitTests/LitTest/dafny0/TypeInferenceRefresh.dfy.expect
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
2 changes: 1 addition & 1 deletion
2
Source/IntegrationTests/TestFiles/LitTests/LitTest/logger/VerboseName.dfy
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
8 changes: 4 additions & 4 deletions
8
Source/IntegrationTests/TestFiles/LitTests/LitTest/verification/filter-symbol.dfy.expect
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did the ordering change? Seems like a regression since we've been better about keeping these in order lately.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's unavoidable, since we want to verify one module at a time to be able to release memory after verifying that module. When nested modules occur, the contents of different modules can be intertwined.
We can do A,C,B or B,A,C, but we can no longer do A,B,C if we verify entire modules at a time.