symbiotic icon indicating copy to clipboard operation
symbiotic copied to clipboard

Symbiotic is a tool for finding bugs in computer programs based on instrumentation, program slicing and KLEE

Results 61 symbiotic issues
Sort by recently updated
recently updated
newest added

When building with `archive` or `full-archive`, copy also licenses from KLEE, LLVM, etc. into the archive.

enhancement

As agreed on Monday's (9. 5.) meeting, from now on the submodules should track changes in corresponding `master` branches only. Only these branches are now considered to be stable. If...

enhancement

Issue to track changes needed to support LLVM 11, 12, 13 and 14: | tool | 11 | 12 | 13 | 14 | |-----|:------:|:---------:|:---------:|:---------:| | `dg` | ✅ |...

enhancement

This should enable Dependabot so that it will automatically create PRs with CI or git submodule related updates, run the build and test-suite. So that we only have to merge...

enhancement

Hi, in following test (from: [predator-regre](https://github.com/kdudka/predator/blob/master/tests/predator-regre/test-0158.c)): ```c #include #include int main() { union { void *p0; struct { char c[2]; void *p1; void *p2; } str; } data; // alloc...

bug

Code: * `main.c` ```c #include "inline.h" int main(void) { foo(); } ``` * `inline.h` ```c inline void foo(void) {} ``` * `inline.c` ```c #include void foo(void) { assert(0); } ```...

Code: ```c #include int a = (INT_MAX + 1) - 5; ``` IR: ```llvm @a = dso_local global i32 2147483643, align 4 ``` The easiest solution seems to be parsing...

For example, if we use a Debian based system with a suitable `ccache` symlink disguised as `clang` and without unversioned LLVM binaries in `PATH`, the initial sanity `clang` check in...

bug

Or, I guess, any other function that is inserted into the program during transformations and is undefined (therefore it gets into the witness). We should use some functions like `__symbiotic_nondet_log`...

bug
sv-comp