@@ -120,7 +120,12 @@ void cbmc_parse_optionst::set_default_analysis_flags(
120
120
121
121
// Unwinding assertions required in certain cases for sound verification
122
122
// 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
+ }
124
129
}
125
130
126
131
void cbmc_parse_optionst::get_command_line_options (optionst &options)
@@ -145,6 +150,32 @@ void cbmc_parse_optionst::get_command_line_options(optionst &options)
145
150
exit (CPROVER_EXIT_USAGE_ERROR);
146
151
}
147
152
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
+
148
179
if (cmdline.isset (" max-field-sensitivity-array-size" ))
149
180
{
150
181
options.set_option (
@@ -340,15 +371,6 @@ void cbmc_parse_optionst::get_command_line_options(optionst &options)
340
371
// all (other) checks supported by goto_check
341
372
PARSE_OPTIONS_GOTO_CHECK (cmdline, options);
342
373
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
-
352
374
if (cmdline.isset (" partial-loops" ))
353
375
{
354
376
options.set_option (" partial-loops" , true );
0 commit comments