CBMC
|
Symex Shadow Memory Instrumentation Utilities. More...
Go to the source code of this file.
Functions | |
void | shadow_memory_log_set_field (const namespacet &ns, const messaget &log, const irep_idt &field_name, const exprt &expr, const exprt &value) |
Logs setting a value to a given shadow field. More... | |
void | shadow_memory_log_value_set (const namespacet &ns, const messaget &log, const std::vector< exprt > &value_set) |
Logs the retrieval of the value associated with a given shadow memory field. More... | |
void | shadow_memory_log_get_field (const namespacet &ns, const messaget &log, const irep_idt &field_name, const exprt &expr) |
Logs getting a value corresponding to a shadow memory field. More... | |
void | shadow_memory_log_value_set_match (const namespacet &ns, const messaget &log, const exprt &address, const exprt &expr) |
Logs a successful match between an address and a value within the value set. More... | |
void | shadow_memory_log_text_and_expr (const namespacet &ns, const messaget &log, const char *text, const exprt &expr) |
Generic logging function that will log depending on the configured verbosity. More... | |
irep_idt | extract_field_name (const exprt &string_expr) |
Extracts the field name identifier from a string expression, e.g. More... | |
void | clean_pointer_expr (exprt &expr) |
Clean the given pointer expression so that it has the right shape for being used for identifying shadow memory. More... | |
exprt | deref_expr (const exprt &expr) |
Wraps a given expression into a dereference_exprt unless it is an address_of_exprt in which case it just unboxes it and returns its content. More... | |
void | replace_invalid_object_by_null (exprt &expr) |
Replace an invalid object by a null pointer. More... | |
const exprt & | get_field_init_expr (const irep_idt &field_name, const goto_symex_statet &state) |
Retrieve the expression that a field was initialised with within a given symex state. More... | |
std::vector< std::pair< exprt, exprt > > | get_shadow_dereference_candidates (const namespacet &ns, const messaget &log, const exprt &matched_object, const std::vector< shadow_memory_statet::shadowed_addresst > &addresses, const typet &field_type, const exprt &expr, const typet &lhs_type, bool &exact_match) |
Get a list of (condition, value) pairs for a certain pointer from the shadow memory, where each pair denotes the value of the pointer expression if the condition evaluates to true . More... | |
const typet & | get_field_init_type (const irep_idt &field_name, const goto_symex_statet &state) |
Retrieves the type of the shadow memory by returning the type of the shadow memory initializer value. More... | |
bool | contains_null_or_invalid (const std::vector< exprt > &value_set, const exprt &address) |
Given a pointer expression check to see if it can be a null pointer or an invalid object within value_set. More... | |
exprt | compute_or_over_bytes (const exprt &expr, const typet &field_type, const namespacet &ns, const messaget &log, const bool is_union) |
Performs aggregation of the shadow memory field value over multiple bytes for fields whose type is _Bool. More... | |
exprt | compute_max_over_bytes (const exprt &expr, const typet &field_type, const namespacet &ns) |
Performs aggregation of the shadow memory field value over multiple cells for fields whose type is a signed/unsigned bitvector (where the value is arbitrary up until the max represented by the bitvector size). More... | |
exprt | build_if_else_expr (const std::vector< std::pair< exprt, exprt >> &conds_values) |
Build an if-then-else chain from a vector containing pairs of expressions. More... | |
bool | check_value_set_contains_only_null_ptr (const namespacet &ns, const messaget &log, const std::vector< exprt > &value_set, const exprt &expr) |
Checks if value_set contains only a NULL pointer expression of the same type of expr. More... | |
std::optional< exprt > | get_shadow_memory (const exprt &expr, const std::vector< exprt > &value_set, const std::vector< shadow_memory_statet::shadowed_addresst > &addresses, const namespacet &ns, const messaget &log, size_t &mux_size) |
Get shadow memory values for a given expression within a specified value set. More... | |
Symex Shadow Memory Instrumentation Utilities.
Definition in file shadow_memory_util.h.
Build an if-then-else chain from a vector containing pairs of expressions.
conds_values | Contains pairs <e1, e2>, where e1 is going to be used as an antecedent for an if_expr, and e2 is going to be used as the consequent. |
if e1 then e2 else if e3 then e4 else ...
false
. Definition at line 631 of file shadow_memory_util.cpp.
bool check_value_set_contains_only_null_ptr | ( | const namespacet & | ns, |
const messaget & | log, | ||
const std::vector< exprt > & | value_set, | ||
const exprt & | expr | ||
) |
Checks if value_set contains only a NULL
pointer expression of the same type of expr.
ns | the namespace within which we're going to perform symbol lookups |
log | the message log to which we're going to print debugging messages, if debugging is set |
value_set | the collection to check if it contains only the NULL pointer |
expr | a pointer-typed expression |
true
if value_set contains only a NULL
pointer expression Definition at line 1027 of file shadow_memory_util.cpp.
void clean_pointer_expr | ( | exprt & | expr | ) |
Clean the given pointer expression so that it has the right shape for being used for identifying shadow memory.
This handles some quirks regarding array sizes containing L2 symbols and string constants not having char-pointer type.
expr | The pointer to the original memory, e.g. as passed to __CPROVER_field_get. |
Definition at line 252 of file shadow_memory_util.cpp.
exprt compute_max_over_bytes | ( | const exprt & | expr, |
const typet & | field_type, | ||
const namespacet & | ns | ||
) |
Performs aggregation of the shadow memory field value over multiple cells for fields whose type is a signed/unsigned bitvector (where the value is arbitrary up until the max represented by the bitvector size).
expr | the expression to extract the max from |
field_type | the type of the shadow memory field to return |
ns | the namespace to perform type-lookups into |
Definition at line 600 of file shadow_memory_util.cpp.
exprt compute_or_over_bytes | ( | const exprt & | expr, |
const typet & | field_type, | ||
const namespacet & | ns, | ||
const messaget & | log, | ||
const bool | is_union | ||
) |
Performs aggregation of the shadow memory field value over multiple bytes for fields whose type is _Bool.
expr | the type to compute the or over each of its bytes |
field_type | the type of the shadow memory (must be c_bool or bool ) |
ns | the namespace within which we're going to perform symbol lookups |
log | the message log to which we're going to print debugging messages, if debugging is set |
is_union | true if the expression expr is part of a union. |
or
byte-sized value contained in expr Definition at line 439 of file shadow_memory_util.cpp.
Given a pointer expression check to see if it can be a null pointer or an invalid object within value_set.
address | A pointer expressions that we are using as the query. |
value_set | The search space for the query. |
Definition at line 318 of file shadow_memory_util.cpp.
Wraps a given expression into a dereference_exprt
unless it is an address_of_exprt
in which case it just unboxes it and returns its content.
Definition at line 242 of file shadow_memory_util.cpp.
Extracts the field name identifier from a string expression, e.g.
as passed as argument to a __CPROVER_field_decl_local call.
string_expr | The string argument expression |
Definition at line 212 of file shadow_memory_util.cpp.
const exprt& get_field_init_expr | ( | const irep_idt & | field_name, |
const goto_symex_statet & | state | ||
) |
Retrieve the expression that a field was initialised with within a given symex state.
field_name | The field whose initialisation expression we want to retrieve. |
state | The goto symex state within which we want to search for the expression. |
Definition at line 299 of file shadow_memory_util.cpp.
const typet& get_field_init_type | ( | const irep_idt & | field_name, |
const goto_symex_statet & | state | ||
) |
Retrieves the type of the shadow memory by returning the type of the shadow memory initializer value.
field_name | The name of the field whose value type we want to query. |
state | The symex_state within which the query is executed (the field's value is looked up). |
Definition at line 312 of file shadow_memory_util.cpp.
std::vector<std::pair<exprt, exprt> > get_shadow_dereference_candidates | ( | const namespacet & | ns, |
const messaget & | log, | ||
const exprt & | matched_object, | ||
const std::vector< shadow_memory_statet::shadowed_addresst > & | addresses, | ||
const typet & | field_type, | ||
const exprt & | expr, | ||
const typet & | lhs_type, | ||
bool & | exact_match | ||
) |
Get a list of (condition, value)
pairs for a certain pointer from the shadow memory, where each pair denotes the value
of the pointer expression if the condition
evaluates to true
.
Definition at line 850 of file shadow_memory_util.cpp.
std::optional<exprt> get_shadow_memory | ( | const exprt & | expr, |
const std::vector< exprt > & | value_set, | ||
const std::vector< shadow_memory_statet::shadowed_addresst > & | addresses, | ||
const namespacet & | ns, | ||
const messaget & | log, | ||
size_t & | mux_size | ||
) |
Get shadow memory values for a given expression within a specified value set.
if e1 then e2 else (if e3 else e4...
expression, where e1
, e3
, ... are guards (conditions) and e2
, e4
, etc are the possible values of the object within the value set. Definition at line 1140 of file shadow_memory_util.cpp.
void replace_invalid_object_by_null | ( | exprt & | expr | ) |
Replace an invalid object by a null pointer.
Works recursively on the operands (child nodes) of the expression, as well.
expr | The (root) expression where substitution will happen. |
Definition at line 280 of file shadow_memory_util.cpp.
void shadow_memory_log_get_field | ( | const namespacet & | ns, |
const messaget & | log, | ||
const irep_idt & | field_name, | ||
const exprt & | expr | ||
) |
Logs getting a value corresponding to a shadow memory field.
Mainly used for debugging purposes.
Definition at line 48 of file shadow_memory_util.cpp.
void shadow_memory_log_set_field | ( | const namespacet & | ns, |
const messaget & | log, | ||
const irep_idt & | field_name, | ||
const exprt & | expr, | ||
const exprt & | value | ||
) |
Logs setting a value to a given shadow field.
Mainly for use for debugging purposes.
Definition at line 31 of file shadow_memory_util.cpp.
void shadow_memory_log_text_and_expr | ( | const namespacet & | ns, |
const messaget & | log, | ||
const char * | text, | ||
const exprt & | expr | ||
) |
Generic logging function that will log depending on the configured verbosity.
The log will be a specific message given to it, along with an expression passed along to it.
Definition at line 95 of file shadow_memory_util.cpp.
void shadow_memory_log_value_set | ( | const namespacet & | ns, |
const messaget & | log, | ||
const std::vector< exprt > & | value_set | ||
) |
Logs the retrieval of the value associated with a given shadow memory field.
Mainly for use for debugging purposes. Dual to shadow_memory_log_get_field.
Definition at line 63 of file shadow_memory_util.cpp.
void shadow_memory_log_value_set_match | ( | const namespacet & | ns, |
const messaget & | log, | ||
const exprt & | address, | ||
const exprt & | expr | ||
) |
Logs a successful match between an address and a value within the value set.
Definition at line 79 of file shadow_memory_util.cpp.