Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-10-23 | replace deprecated (as of c++20) std::is_pod with std::trivial && ↵ | Daniel Schemmel | |
std::is_standard_layout | |||
2023-09-11 | Make KDAlloc the default memory allocator | Cristian Cadar | |
2023-09-11 | Changed use-after-free and double-free tests to expect KDAlloc, plus some ↵ | Cristian Cadar | |
small improvements. | |||
2023-09-07 | Remove broken experimental optimisation for validity (--cex-cache-exp) | Cristian Cadar | |
2023-07-21 | Add code to only keep in the --help menu the KLEE/Kleaver option categories | Cristian Cadar | |
2023-07-21 | Move some options to the klee namespace and declare them in OptionCategories.h | Cristian Cadar | |
2023-07-12 | Replaced --suppress-external-warnings and --all-external-warnings with ↵ | Cristian Cadar | |
--external-call-warnings=none|once-per-function|all. This eliminates the ambiguity when both of the old options were set. Added test for the new option. | |||
2023-07-10 | remove timings from kdalloc tests | Daniel Schemmel | |
2023-07-10 | Simplify KDAlloc tests | Daniel Schemmel | |
2023-07-08 | Combine all `ConstantExpr::toMemory` cases into one. | Daniel Schemmel | |
Note that (as it did previously), this relies on the native types having the same internal representation as the ApInt type. | |||
2023-07-08 | Using std::memcpy prevents alignment problems and removes an unnecessary ↵ | Daniel Schemmel | |
special case | |||
2023-07-06 | Implement getLocationInfo in the same style as getSize | Daniel Schemmel | |
2023-07-06 | Have CoWPtr::get and CoWPtr::getOwned return pointers instead of references | Daniel Schemmel | |
2023-07-06 | rename Allocator::location_info to Allocator::locationInfo for | Daniel Schemmel | |
consistency | |||
2023-07-06 | Perform location_info tests in KDAlloc's random test | Daniel Schemmel | |
2023-06-26 | RefTest: suppress -Wself-move | Julian Büning | |
This warning (introduced with GCC 13, also present in clang) warns precisely about what we want to test here. | |||
2023-06-26 | Consistently use ".ktest" when referring to .ktest files in the help menu | Cristian Cadar | |
2023-06-26 | Remove parentheses around klee_ intrinsics from the help menu | Cristian Cadar | |
2023-06-26 | Fixed a couple of spelling issues in the help menu | Cristian Cadar | |
2023-06-26 | Improved help message for --exit-on-error-type=Abort | Cristian Cadar | |
2023-06-11 | Rewrote has_permission in the POSIX runtime. We now only return with ↵ | Cristian Cadar | |
permission error a single time in symbolic execution mode. The rewrite also fixes a bug reported in #1230. Rewrote the FilePerm.c test accordingly. | |||
2023-06-11 | SpecialFunctionHandler: use std::array for handlerInfo | Julian Büning | |
2023-06-11 | fix ktest-randgen: use after free | Julian Büning | |
2023-06-09 | Fixed a format specifier pointed to by a compiler warning. | Cristian Cadar | |
2023-06-07 | Changed version to 3.1-pre | Cristian Cadar | |
2023-06-07 | Release notes for KLEE 3.0 v3.0 3.0.x | Cristian Cadar | |
2023-06-07 | Set version number to 3.0 | Cristian Cadar | |
2023-06-07 | Fixed end date in the 2.3 release notes | Cristian Cadar | |
2023-06-07 | Build and push Docker image as part of a release | Martin Nowack | |
2023-06-07 | Use recommended LLVM 13 as part of the Docker image | Martin Nowack | |
2023-06-07 | unittests/CMakeLists.txt: set gtest include dir only if necessary | Julian Büning | |
2023-06-07 | unittests/CMakeLists.txt: do not echo GTEST_SRC_DIR on error | Julian Büning | |
This prevents the error message to include the internal "GTEST_SRC_DIR-NOTFOUND" value. | |||
2023-06-07 | unittests/CMakeLists.txt: no UNITTEST_MAIN_LIBS | Julian Büning | |
variable obsoleted by 5607a7f1910e579acc0b93b1ae2caba88e7d5fd7 | |||
2023-06-07 | unittests/CMakeLists.txt: remove obsolete policy | Julian Büning | |
Checking for policy CMP0077 is obsolete as we now require CMake 3.16.0 as minimum version. | |||
2023-06-07 | unittests/CMakeLists.txt: fix LLVM find_package support | Julian Büning | |
broken by 3ef5c9d0cd51babb7c4ec2d7bb76d0cb7e47a65c, which removed the "USE_CMAKE_FIND_PACKAGE_LLVM" variable and no longer includes AddLLVM.cmake | |||
2023-06-07 | unittests/CMakeLists.txt: gtest check for LLVM 13+ | Julian Büning | |
We previously used `LLVM_EXPORTED_TARGETS` defined in LLVMConfig.cmake. This variable is no longer defined starting from LLVM 13. Alternatively, we use the fact that LLVM's gtest target always depends on LLVMSupport. | |||
2023-06-06 | ktest-gen: remove unused function | Frank Busse | |
2023-06-06 | Further improve KDAlloc memory usage with infinite quarantine | Daniel Schemmel | |
2023-06-05 | test/Feature/StackTraceOutput.c: relative checks, clang-format | Julian Büning | |
2023-06-05 | re-enable StackTraceOutput.c test | Julian Büning | |
This test previously had a REQUIRES line with geq-llvm-7.0. Because LLVM version 7.0 is no longer "known" (test/lit.cfg), the required feature is not available and the test is discarded as unsupported by llvm-lit. | |||
2023-06-05 | make BatchingSearcher more readable | Julian Büning | |
2023-06-05 | fix BatchingSearcher's disabled time budget | Julian Büning | |
The functionality of the batching searcher that increases the time budget if it is shorter than the time between two calls to `selectState()` ignored the disabled time budget. Effectively, the batching searcher thus picks a very arbitrary time budget on its own. | |||
2023-06-05 | also check for default CHECK directive in ArrayOpt Tests | Matthis Gördel | |
2023-06-05 | CMake: use check_c_source_compiles() for FSTATAT_PATH_ACCEPTS_NULL | Julian Büning | |
is a bit more convenient and avoids an extra file | |||
2023-06-05 | config.h: include FSTATAT_PATH_ACCEPTS_NULL | Julian Büning | |
This variable was introduced by d2f5906da4ae37a41ae257e5308d50e19689877b but not included in `config.h` before. As a result `#ifdef` would always fail. Moving the code is necessary to set the variable before `config.h` is created using `configure_file()` in CMakeLists.txt. | |||
2023-06-05 | .clang-format: c++17 | Julian Büning | |
From the `clang-format` documentation: - "`Cpp11` is a deprecated alias for `Latest`" - `Latest`: "Parse and format using the latest supported language version." | |||
2023-06-05 | doxygen.cfg.in: DOXYGEN_OUTPUT_DIR | Julian Büning | |
resolves a FIXME to streamline doxygen.cfg generation a bit | |||
2023-06-05 | CMake: use built-in FindSQLite3 module | Julian Büning | |
available since CMake version 3.14 | |||
2023-06-05 | README-CMake.md: clean up top-level targets | Julian Büning | |
* the old build system is long gone * clean_doxygen was removed by d5cbc2002bbf75f08036f7adf861b027768a0622 * clean_runtime was removed by 6156b4eeb9a429ccc370782d719d0d6c787a6f72 * clean_all was removed by a00424e64d56ff881a72bfd99ea0dbcbe6898b49 | |||
2023-06-05 | docs/CMakeLists.txt: drop support for old CMake versions | Julian Büning | |
minimum CMake version is 3.16.0 as of 3a0e434dc9d4053d75e9c0bbe6faa6dfb46717ae |