CBMC
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
liveness_context.h
Go to the documentation of this file.
1/*******************************************************************\
2
3 Module: analyses variable-sensitivity liveness_contextt
4
5 Author: Jez Higgins
6
7\*******************************************************************/
8
15#ifndef CPROVER_ANALYSES_VARIABLE_SENSITIVITY_LIVENESS_CONTEXT_H
16#define CPROVER_ANALYSES_VARIABLE_SENSITIVITY_LIVENESS_CONTEXT_H
17
19#include <iostream>
20#include <stack>
21
34{
35public:
38 const typet &type,
39 bool top,
40 bool bottom)
42 {
43 }
44
47 const exprt &expr,
48 const abstract_environmentt &environment,
49 const namespacet &ns)
50 : write_location_contextt(child, expr, environment, ns)
51 {
52 }
53
55 merge_location_context(const locationt &location) const override;
56
57 void output(std::ostream &out, const class ai_baset &ai, const namespacet &ns)
58 const override;
59
60 locationt get_location() const;
61
62protected:
64
66 const abstract_object_pointert &other,
67 const widen_modet &widen_mode) const override;
68
70 const abstract_object_pointert &other) const override;
71
73 abstract_environmentt &environment,
74 const namespacet &ns,
75 const std::stack<exprt> &stack,
76 const exprt &specifier,
77 const abstract_object_pointert &value,
78 bool merging_write) const override;
79
80private:
81 using liveness_context_ptrt = std::shared_ptr<const liveness_contextt>;
82
85
86 std::optional<locationt> assign_location;
87
90
91 bool has_location() const;
92
93 void set_location(const locationt &location);
94};
95
96#endif // CPROVER_ANALYSES_VARIABLE_SENSITIVITY_LIVENESS_CONTEXT_H
#define CLONE
sharing_ptrt< class abstract_objectt > abstract_object_pointert
goto_programt::const_targett locationt
This is the basic interface of the abstract interpreter with default implementations of the core func...
Definition ai.h:117
ait supplies three of the four components needed: an abstract interpreter (in this case handling func...
Definition ai.h:562
std::shared_ptr< context_abstract_objectt > context_abstract_object_ptrt
std::set< locationt, goto_programt::target_less_than > locationst
const typet & type() const override
Get the real type of the variable this abstract object is representing.
Base class for all expressions.
Definition expr.h:56
General implementation of an abstract_objectt which tracks the last written locations for a given abs...
void set_location(const locationt &location)
bool has_location() const
void output(std::ostream &out, const class ai_baset &ai, const namespacet &ns) const override
Output a representation of the value of this abstract object.
liveness_contextt(const abstract_object_pointert child, const exprt &expr, const abstract_environmentt &environment, const namespacet &ns)
abstract_object_pointert abstract_object_merge_internal(const abstract_object_pointert &other) const override
Helper function for abstract_objectt::abstract_object_merge to perform any additional actions after t...
liveness_contextt(const abstract_object_pointert child, const typet &type, bool top, bool bottom)
abstract_object_pointert merge_location_context(const locationt &location) const override
Update the merge location context for an abstract object.
std::optional< locationt > assign_location
context_abstract_object_ptrt update_location_context_internal(const locationst &locations) const override
abstract_object_pointert write(abstract_environmentt &environment, const namespacet &ns, const std::stack< exprt > &stack, const exprt &specifier, const abstract_object_pointert &value, bool merging_write) const override
A helper function to evaluate writing to a component of an abstract object.
abstract_object_pointert merge(const abstract_object_pointert &other, const widen_modet &widen_mode) const override
Create a new abstract object that is the result of merging this abstract object with a given abstract...
std::shared_ptr< const liveness_contextt > liveness_context_ptrt
locationt get_location() const
abstract_object_pointert reset_location_on_merge(const liveness_context_ptrt &merged) const
A namespacet is essentially one or two symbol tables bound together, to allow for symbol lookups in t...
Definition namespace.h:91
The type of an expression, extends irept.
Definition type.h:29
General implementation of an abstract_objectt which tracks the last written locations for a given abs...
Maintain a context in the variable sensitvity domain that records write locations for a given abstrac...