-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bug in SMT encoding of reading multiple consecutive bytes
The current encoding in function `assertReads` asserted, for a read of more than one (and not 32) bytes, that the same expression is equal to multiple different constants. This caused some problems to be trivially unsatisfiable, possibly hiding other bugs. The new encoding should hopefully fix that. After running our test suite, it seems like this actually affected some of our tests, because the overall runtime increased noticeably.
- Loading branch information
Showing
3 changed files
with
4 additions
and
6 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