CBMC
safety_checker.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Safety Checker Interface
4 
5 Author: Daniel Kroening, kroening@kroening.com
6 
7 \*******************************************************************/
8 
11 
12 #ifndef CPROVER_GOTO_PROGRAMS_SAFETY_CHECKER_H
13 #define CPROVER_GOTO_PROGRAMS_SAFETY_CHECKER_H
14 
15 // this is just an interface -- it won't actually do any checking!
16 
17 #include <util/invariant.h>
18 #include <util/message.h>
19 
20 #include "goto_trace.h"
21 
22 class goto_functionst;
23 
25 {
26 public:
27  safety_checkert(const namespacet &_ns, message_handlert &_message_handler);
28 
29  enum class resultt
30  {
32  SAFE,
34  UNSAFE,
36  ERROR,
40  PAUSED,
41  };
42 
43  // check whether all assertions in goto_functions are safe
44  // if UNSAFE, then a trace is returned
45 
47  const goto_functionst &goto_functions)=0;
48 
49  // this is the counterexample
51 
52 protected:
53  // the namespace
54  const namespacet &ns;
55 };
56 
65 {
69  switch(a)
70  {
72  return a;
74  a = b;
75  return a;
77  a = b == safety_checkert::resultt::ERROR ? b : a;
78  return a;
81  }
83 }
84 
93 {
97  switch(a)
98  {
100  return a;
102  a = b;
103  return a;
105  a = b == safety_checkert::resultt::SAFE ? b : a;
106  return a;
108  UNREACHABLE;
109  }
110  UNREACHABLE;
111 }
112 #endif // CPROVER_GOTO_PROGRAMS_SAFETY_CHECKER_H
A collection of goto functions.
Trace of a GOTO program.
Definition: goto_trace.h:177
Class that provides messages with a built-in verbosity 'level'.
Definition: message.h:155
A namespacet is essentially one or two symbol tables bound together, to allow for symbol lookups in t...
Definition: namespace.h:94
const namespacet & ns
safety_checkert(const namespacet &_ns, message_handlert &_message_handler)
@ UNSAFE
Some safety properties were violated.
@ PAUSED
Symbolic execution has been suspended due to encountering a GOTO while doing path exploration; the sy...
@ SAFE
No safety properties were violated.
@ ERROR
Safety is unknown due to an error during safety checking.
virtual resultt operator()(const goto_functionst &goto_functions)=0
goto_tracet error_trace
Traces of GOTO Programs.
safety_checkert::resultt & operator&=(safety_checkert::resultt &a, safety_checkert::resultt const &b)
The worst of two results.
safety_checkert::resultt & operator|=(safety_checkert::resultt &a, safety_checkert::resultt const &b)
The best of two results.
#define UNREACHABLE
This should be used to mark dead code.
Definition: invariant.h:525
#define PRECONDITION(CONDITION)
Definition: invariant.h:463