CBMC
Loading...
Searching...
No Matches
uninitialized_domain.h
Go to the documentation of this file.
1/*******************************************************************\
2
3Module: Detection for Uninitialized Local Variables
4
5Author: Daniel Kroening
6
7Date: January 2010
8
9\*******************************************************************/
10
13
14#ifndef CPROVER_ANALYSES_UNINITIALIZED_DOMAIN_H
15#define CPROVER_ANALYSES_UNINITIALIZED_DOMAIN_H
16
17#include <util/threeval.h>
18
19#include "ai.h"
20
22{
23public:
27
28 // Locals that are declared but may not be initialized
29 typedef std::set<irep_idt> uninitializedt;
31
32 void transform(
35 const irep_idt &function_to,
37 ai_baset &ai,
38 const namespacet &ns) final override;
39
40 void output(
41 std::ostream &out,
42 const ai_baset &ai,
43 const namespacet &ns) const final;
44
45 void make_top() final override
46 {
48 has_values=tvt(true);
49 }
50
51 void make_bottom() final override
52 {
54 has_values=tvt(false);
55 }
56
57 bool is_top() const override final
58 {
60 "If domain is top, the uninitialized set must be empty");
61 return has_values.is_true();
62 }
63
65 {
67 "If domain is bottom, the uninitialized set must be empty");
68 return has_values.is_false();
69 }
70
71 // returns true iff there is something new
72 bool
74
75private:
77
78 void assign(const exprt &lhs);
79};
80
83
84#endif // CPROVER_ANALYSES_UNINITIALIZED_DOMAIN_H
Abstract Interpretation.
This is the basic interface of the abstract interpreter with default implementations of the core func...
Definition ai.h:117
virtual void clear()
Reset the abstract state.
Definition ai.h:265
The interface offered by a domain, allows code to manipulate domains without knowing their exact type...
Definition ai_domain.h:54
ai_history_baset::trace_ptrt trace_ptrt
Definition ai_domain.h:73
ait supplies three of the four components needed: an abstract interpreter (in this case handling func...
Definition ai.h:562
dstringt has one field, an unsigned integer no which is an index into a static table of strings.
Definition dstring.h:38
Base class for all expressions.
Definition expr.h:56
A namespacet is essentially one or two symbol tables bound together, to allow for symbol lookups in t...
Definition namespace.h:91
Definition threeval.h:20
bool is_false() const
Definition threeval.h:26
bool is_true() const
Definition threeval.h:25
void assign(const exprt &lhs)
void make_top() final override
all states – the analysis doesn't use this directly (see make_entry) and domains may refuse to implem...
void transform(const irep_idt &function_from, trace_ptrt trace_from, const irep_idt &function_to, trace_ptrt trace_to, ai_baset &ai, const namespacet &ns) final override
how function calls are treated: a) there is an edge from each call site to the function head b) there...
std::set< irep_idt > uninitializedt
bool is_top() const override final
bool is_bottom() const override final
bool merge(const uninitialized_domaint &other, trace_ptrt from, trace_ptrt to)
void output(std::ostream &out, const ai_baset &ai, const namespacet &ns) const final
void make_bottom() final override
no states
#define DATA_INVARIANT(CONDITION, REASON)
This condition should be used to document that assumptions that are made on goto_functions,...
Definition invariant.h:534
ait< uninitialized_domaint > uninitialized_analysist