Skip to content

Commit d43d595

Browse files
NlightNFotisEnrico Steffinlongo
authored and
Enrico Steffinlongo
committed
Add support for a --no-unwinding-assertions flag and move handling of option earlier to avoid bug
1 parent 3777fa9 commit d43d595

File tree

1 file changed

+32
-10
lines changed

1 file changed

+32
-10
lines changed

src/cbmc/cbmc_parse_options.cpp

+32-10
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,12 @@ void cbmc_parse_optionst::set_default_analysis_flags(
120120

121121
// Unwinding assertions required in certain cases for sound verification
122122
// results. See https://github.com/diffblue/cbmc/issues/6561 for elaboration.
123-
options.set_option("unwinding-assertions", enabled);
123+
// As the unwinding-assertions is processed earlier, we set it only if it has
124+
// not been set yet.
125+
if (!options.is_set("unwinding-assertions"))
126+
{
127+
options.set_option("unwinding-assertions", enabled);
128+
}
124129
}
125130

126131
void cbmc_parse_optionst::get_command_line_options(optionst &options)
@@ -145,6 +150,32 @@ void cbmc_parse_optionst::get_command_line_options(optionst &options)
145150
exit(CPROVER_EXIT_USAGE_ERROR);
146151
}
147152

153+
if(cmdline.isset("cover") && !cmdline.isset("no-standard-checks"))
154+
{
155+
log.warning()
156+
<< "--cover is incompatible with --unwinding-assertions, so "
157+
"unwinding-assertions will be defaulted to false"
158+
<< messaget::eom;
159+
}
160+
161+
// We want to set the unwinding-assertions option as early as we can,
162+
// otherwise we come across two issues: 1) there's no way to deactivate it
163+
// with `--no-unwinding-assertions`, as the `--no-xxx` flags are set by
164+
// `goto_check_c` which doesn't provide handling for the options, and 2) we
165+
// handle it only when we use `--no-standard-checks`, but if we do so, we have
166+
// already printed a couple times to the screen that `--unwinding-assertions`
167+
// must be passed because of some activation/sensitive further down below.
168+
if(cmdline.isset("unwinding-assertions"))
169+
{
170+
options.set_option("unwinding-assertions", true);
171+
options.set_option("paths-symex-explore-all", true);
172+
}
173+
else if(cmdline.isset("no-unwinding-assertions"))
174+
{
175+
options.set_option("unwinding-assertions", false);
176+
options.set_option("paths-symex-explore-all", false);
177+
}
178+
148179
if(cmdline.isset("max-field-sensitivity-array-size"))
149180
{
150181
options.set_option(
@@ -340,15 +371,6 @@ void cbmc_parse_optionst::get_command_line_options(optionst &options)
340371
// all (other) checks supported by goto_check
341372
PARSE_OPTIONS_GOTO_CHECK(cmdline, options);
342373

343-
// generate unwinding assertions
344-
if(
345-
options.get_bool_option("unwinding-assertions") ||
346-
cmdline.isset("unwinding-assertions"))
347-
{
348-
options.set_option("unwinding-assertions", true);
349-
options.set_option("paths-symex-explore-all", true);
350-
}
351-
352374
if(cmdline.isset("partial-loops"))
353375
{
354376
options.set_option("partial-loops", true);

0 commit comments

Comments
 (0)