|
| context_abstract_objectt (const abstract_object_pointert child, const typet &type, bool top, bool bottom) |
|
| context_abstract_objectt (const abstract_object_pointert child, const exprt &expr, const abstract_environmentt &environment, const namespacet &ns) |
|
virtual | ~context_abstract_objectt () |
|
const typet & | type () const override |
| Get the real type of the variable this abstract object is representing. More...
|
|
bool | is_top () const override |
| Find out if the abstract object is top. More...
|
|
bool | is_bottom () const override |
| Find out if the abstract object is bottom. More...
|
|
exprt | to_constant () const override |
| Converts to a constant expression if possible. More...
|
|
abstract_object_pointert | expression_transform (const exprt &expr, const std::vector< abstract_object_pointert > &operands, const abstract_environmentt &environment, const namespacet &ns) const override |
| Try to resolve an expression with the maximum level of precision available. More...
|
|
abstract_object_pointert | write_location_context (const locationt &location) const override |
| Update the location context for an abstract object. More...
|
|
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. More...
|
|
abstract_object_pointert | envelop (abstract_object_pointert &child) const |
|
abstract_object_pointert | unwrap_context () const override |
|
void | get_statistics (abstract_object_statisticst &statistics, abstract_object_visitedt &visited, const abstract_environmentt &env, const namespacet &ns) const override |
|
abstract_object_pointert | get_child () const |
|
| abstract_objectt (const typet &type, bool top, bool bottom) |
| Start the abstract object at either top or bottom or neither Asserts if both top and bottom are true. More...
|
|
| abstract_objectt (const exprt &expr, const abstract_environmentt &environment, const namespacet &ns) |
| Construct an abstract object from the expression. More...
|
|
virtual | ~abstract_objectt () |
|
virtual bool | verify () const |
| Verify the internal structure of an abstract_object is correct. More...
|
|
exprt | to_predicate (const exprt &name) const |
| Converts to an invariant expression. More...
|
|
virtual abstract_object_pointert | meet (const abstract_object_pointert &other) const |
| Base implementation of the meet operation: only used if no more precise abstraction can be used, can only result in {TOP, BOTTOM, one of the original objects}. More...
|
|
virtual abstract_object_pointert | merge_location_context (const locationt &location) const |
| Update the merge location context for an abstract object. More...
|
|
abstract_object_pointert | make_top () const |
|
abstract_object_pointert | clear_top () const |
|
virtual abstract_object_pointert | visit_sub_elements (const abstract_object_visitort &visitor) const |
| Apply a visitor operation to all sub elements of this abstract_object. More...
|
|
virtual size_t | internal_hash () const |
|
virtual bool | internal_equality (const abstract_object_pointert &other) const |
|
|
void | set_child (const abstract_object_pointert &child) |
|
void | set_top_internal () override |
|
void | set_not_top_internal () 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. More...
|
|
bool | has_been_modified (const abstract_object_pointert &before) const override |
| Determine whether 'this' abstract_object has been modified in comparison to a previous 'before' state. More...
|
|
exprt | to_predicate_internal (const exprt &name) const override |
| to_predicate implementation - derived classes will override More...
|
|
virtual context_abstract_object_ptrt | update_location_context_internal (const locationst &locations) const =0 |
|
virtual internal_abstract_object_pointert | mutable_clone () const |
|
abstract_object_pointert | abstract_object_merge (const abstract_object_pointert &other) const |
| Create a new abstract object that is the result of the merge, unless the object would be unchanged, then would return itself. More...
|
|
bool | should_use_base_merge (const abstract_object_pointert &other) const |
| To detect the cases where the base merge is sufficient to do a merge We can't do if this->is_bottom() since we want the specific. More...
|
|
virtual abstract_object_pointert | merge (const abstract_object_pointert &other, const widen_modet &widen_mode) const |
| Create a new abstract object that is the result of the merge, unless the object would be unchanged, then would return itself. More...
|
|
abstract_object_pointert | abstract_object_meet (const abstract_object_pointert &other) const |
| Helper function for base meet. More...
|
|
bool | should_use_base_meet (const abstract_object_pointert &other) const |
| Helper function to decide if base meet implementation should be used. More...
|
|
void | set_top () |
|
void | set_not_top () |
|
void | set_not_bottom () |
|
Definition at line 21 of file context_abstract_object.h.
exprt context_abstract_objectt::to_constant |
( |
| ) |
const |
|
inlineoverridevirtual |
Converts to a constant expression if possible.
- Returns
- Returns an exprt representing the value if the value is known and constant. Otherwise returns the nil expression
If abstract element represents a single value, then that value, otherwise nil. E.G. if it is an interval then this will be x if it is [x,x] This is the (sort of) dual to the constant_exprt constructor that allows an object to be built from a value.
Reimplemented from abstract_objectt.
Definition at line 65 of file context_abstract_object.h.
A helper function to evaluate writing to a component of an abstract object.
More precise abstractions may override this to update what they are storing for a specific component.
- Parameters
-
environment | the abstract environment |
ns | the current namespace |
stack | the remaining stack of expressions on the LHS to evaluate |
specifier | the expression uses to access a specific component |
value | the value we are trying to write to the component |
merging_write | if true, this and all future writes will be merged with the current value |
- Returns
- the abstract_objectt representing the result of writing to a specific component.
Reimplemented from abstract_objectt.
Reimplemented in write_location_contextt, liveness_contextt, and data_dependency_contextt.
Definition at line 53 of file context_abstract_object.cpp.