Go to file
Romain Brenguier 06776f2b1c Add travis build with NAMED_SUB_FORWARD_LIST
We add this step to check that CBMC compiles fine with this flag, and
run relevant unit tests for irept.
2019-02-14 08:55:02 +00:00
.githooks Make the pre-commit hook report non-temporary path names (#477) 2017-02-02 20:39:09 +00:00
.github Include User Guide item in pull request template 2018-11-15 19:23:58 +00:00
cmake Add DownloadProject cmake script 2017-09-27 11:22:20 +01:00
doc Remove language_uit as it is no longer used 2019-02-04 16:38:21 +00:00
jbmc Merge pull request #4175 from tautschnig/return-has-an-operand 2019-02-13 13:57:51 +00:00
pkg/arch Add CBMC package build file for Arch Linux 2017-04-26 16:29:00 +01:00
regression Add KNOWNBUG regression test for GH issue #4168 2019-02-13 11:19:26 +00:00
scripts README file on how to run benchmarks 2019-02-06 07:59:38 +00:00
src Extract a non_sharing_treet class from irept 2019-02-14 08:55:01 +00:00
unit remove the trivial constructor from symex_targett::sourcet 2019-02-12 17:37:29 +00:00
.clang-format clang-format cleanup 2018-10-12 13:11:03 +00:00
.clang-format-ignore Use .clang-format-ignore 2019-01-29 09:43:59 +00:00
.dir-locals.el Move Emacs style file so it affects unit tests as well as main source 2017-08-16 12:43:32 +01:00
.editorconfig Don't remove trailing spaces from patch files 2016-11-29 17:26:59 +00:00
.gitattributes added test.desc as text 2016-08-15 12:35:10 +01:00
.gitignore Add function harness generator and generator factory 2019-02-07 16:44:02 +00:00
.gitmodules Use submodule to download java-models-library 2018-07-09 21:13:37 +01:00
.travis.yml Add travis build with NAMED_SUB_FORWARD_LIST 2019-02-14 08:55:02 +00:00
CHANGELOG Add new goto-instrument option print-global-state-size 2018-06-20 09:38:30 +01:00
CMakeLists.txt Add CUDD to CMake 2019-02-01 06:48:55 +00:00
CODEOWNERS Remove appveyor.yml from CODEOWNERS 2019-02-07 16:57:59 +00:00
CODING_STANDARD.md Clarify doxygen format for in-out-parameters 2019-01-03 11:45:14 +00:00
COMPILING.md Instructions for compiling with Cudd 2019-02-01 06:49:06 +00:00
LICENSE update year 2016-09-05 17:05:55 +01:00
MINI-PROJECTS.md Add CBMC Mini Projects list 2019-02-06 21:23:30 +00:00
README.md Add CBMC Mini Projects list 2019-02-06 21:23:30 +00:00
buildspec-linux-clang.yml move two builds from Travis to codebuild 2019-02-03 15:52:17 +00:00
buildspec-linux-cmake-gcc.yml move two builds from Travis to codebuild 2019-02-03 15:52:17 +00:00
buildspec-windows.yml Run CBMC regression tests with --paths lifo in CI 2019-02-05 09:49:58 +00:00
buildspec.yml Run CBMC regression tests with --paths lifo in CI 2019-02-05 09:49:58 +00:00
gcloud-travis-cbmc.json.enc Add encrypted GCloud key for Travis 2018-03-20 12:16:01 +00:00

README.md

Build Status Build Status Build Status Build Status

CProver Wiki

CProver Documentation

About

CBMC is a Bounded Model Checker for C and C++ programs. It supports C89, C99, most of C11 and most compiler extensions provided by gcc and Visual Studio. It also supports SystemC using Scoot. It allows verifying array bounds (buffer overflows), pointer safety, exceptions and user-specified assertions. Furthermore, it can check C and C++ for consistency with other languages, such as Verilog. The verification is performed by unwinding the loops in the program and passing the resulting equation to a decision procedure.

For full information see cprover.org.

Versions

Get the latest release

  • Releases are tested and for production use.

Get the current develop version: git clone https://github.com/diffblue/cbmc.git

  • Develop versions are not recommended for production use.

Report bugs

If you encounter a problem please file a bug report:

Contributing to the code base

  1. Fork the repository
  2. Clone the repository git clone git@github.com:YOURNAME/cbmc.git
  3. Create a branch from the develop branch (default branch)
  4. Make your changes (follow the coding guidelines)
  5. Push your changes to your branch
  6. Create a Pull Request targeting the develop branch

New contributors can look through the mini projects page for small, focussed feature ideas.

License

4-clause BSD license, see LICENSE file.