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

Enable default flags on for checks #8006

Closed
wants to merge 8 commits into from

Conversation

NlightNFotis
Copy link
Contributor

Enable default analysis flags for CBMC for version 6+.

WIP PR to solicit feedback.

Expect tests broken, most of them are going to require readjusting (regex fixing, and what not).

@NlightNFotis NlightNFotis added the Version 6 Pull requests and issues requiring a major version bump label Nov 10, 2023
@feliperodri feliperodri added aws Bugs or features of importance to AWS CBMC users aws-high labels Nov 13, 2023
@@ -107,6 +110,20 @@ void cbmc_parse_optionst::set_default_options(optionst &options)
options.set_option("depth", UINT32_MAX);
}

void cbmc_parse_optionst::set_soundness_on_by_default(optionst &options)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please avoid the word "soundness" in this context. It has a specific meaning, and not very much to do with those flags.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree.

I suggest to change it to set_thorough_by_default.

options.set_option("paths-symex-explore-all", false);
} else {
// Not really needed, as it's now on by default, but keeping it here
// for completeness' sake.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, please avoid the word "completeness".

Copy link
Contributor Author

@NlightNFotis NlightNFotis Nov 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apologies, I was using the word "completeness" here not in a verification context, but more to indicate symmetry between the two branches (consequent and alternative), despite options setting in one of them being redundant (because the options have been set before we reach the if), so that reading the code is easier compared to leaving the option setting in the context be implicit.

I will update the wording to make this clearer.

@kroening
Copy link
Member

It's worth remembering that this used to be the default behaviour of CBMC (who's up for some history digging?)

What then happened is that all other C analysers did not perform these checks by default, and CBMC looked bad in comparisons. They are expensive (some of the overflow ones even yield nonlinear constraints), and we will need to manage expectations.

@NlightNFotis NlightNFotis force-pushed the flags_on_default branch 4 times, most recently from 86e159a to 182e44b Compare November 29, 2023 11:28
@NlightNFotis NlightNFotis marked this pull request as ready for review November 29, 2023 11:29
@NlightNFotis NlightNFotis changed the title [WIP] Enable default flags on for checks Enable default flags on for checks Nov 29, 2023
@NlightNFotis
Copy link
Contributor Author

Hello, I'll be closing this one (at least temporarily) in favour of #8093 which is a cleaner version of the change presented here.

There are still some changes in this PR that I'd like to see in, but I will see if I can rebase this PR as soon as the other one is in to get a cleaner PR here as well. If that's not possible, then I will incorporate some of these changes into future PRs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
aws Bugs or features of importance to AWS CBMC users aws-high Version 6 Pull requests and issues requiring a major version bump
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

4 participants