You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
crux-llvm-svcomp fails to verify certain SV-COMP programs due to missing overrides. This issue exists to categorize which functions were responsible for missing overrides most of the time. Here are the results for unreach-call:
Some of these functions have their own, more specific issues dedicated to them. For each function, I've made an effort to include a link to the relevant issue in its list entry.
Some of these may be "wontfix". For example, __VERIFIER_nondet_charp's inclusion is dubious—see #842 (comment). I'm also skeptical of the inclusion of functions like ldv_xmalloc and smp_send_req.
The text was updated successfully, but these errors were encountered:
A good question. I took a brief look at some of the call sites for fflush and fopen in these benchmarks:
busybox-1.22.0/hostid.c calls fflush on NULL, which flushes all open output streams. This is expected to pass on the no-overflow category, which seems reasonable I guess.
loop-industry-pattern/aiob_1.c, loop-industry-pattern/ofuf_1.c, and friends use fopen to open a file named in.eds (which, AFAICT, doesn't exist) with r mode. If the fopen fails, there is no way to ever reach_error(). If the fopen succeeds, the rest of the program runs. As far as I can tell, nothing in the remainder of the program ever uses the FILE* that fopen returns.
Bottom line: the behavior of fopen and fflush doesn't seem to matter that much for these benchmarks. I suppose we can make them behave in whatever way is most convenient.
crux-llvm-svcomp
fails to verify certain SV-COMP programs due to missing overrides. This issue exists to categorize which functions were responsible for missing overrides most of the time. Here are the results forunreach-call
:memcmp
snprintf
fopen
fesetround
(Missing floating point operations #187)__isnan
(Missing floating point operations #187)__isinf
(Missing floating point operations #187)strcmp
__signbit
(Missing floating point operations #187)__fpclassifyf
(Missing floating point operations #187)strncpy
ldv_xmalloc
strchr
__isinff
(Missing floating point operations #187)__fpclassify
(Missing floating point operations #187)strncmp
strcpy
sprintf
smp_send_req
remainder
(Missing floating point operations #187)nan
(Missing floating point operations #187)modff
(Missing floating point operations #187)llvm.va_start
(crucible-llvm
: Support varargs #857)fdim
(Missing floating point operations #187)__isnanf
(Missing floating point operations #187)__VERIFIER_nondet_ulonglong
(SV-COMP: Add overrides for more__VERIFIER_nondet_*
functions #842)__VERIFIER_nondet_charp
(SV-COMP: Add overrides for more__VERIFIER_nondet_*
functions #842)And for
no-overflow
:memcmp
llvm.va_start
(crucible-llvm
: Support varargs #857)time
strrchr
strcmp
strchr
fflush
Some of these functions have their own, more specific issues dedicated to them. For each function, I've made an effort to include a link to the relevant issue in its list entry.
Some of these may be "wontfix". For example,
__VERIFIER_nondet_charp
's inclusion is dubious—see #842 (comment). I'm also skeptical of the inclusion of functions likeldv_xmalloc
andsmp_send_req
.The text was updated successfully, but these errors were encountered: