Go to the documentation of this file.
12 #include <unordered_set>
26 if(expr.
id() == ID_index)
28 else if(expr.
id() == ID_member)
30 else if(expr.
id() == ID_dereference)
32 else if(expr.
id() == ID_symbol)
41 if(operands.size()<=2)
47 exprt previous=operands.front();
50 for(exprt::operandst::const_iterator
51 it=++operands.begin();
76 for(
const auto &expr : designator)
80 if(expr.id() == ID_index_designator)
84 else if(expr.id() == ID_member_designator)
108 const typet &src_type = src.
type().
id() == ID_c_enum_tag
112 if(src_type.
id()==ID_bool)
116 src_type.
id()==ID_floatbv?ID_ieee_float_notequal:ID_notequal;
125 return std::move(comparison);
130 if(src.
id() == ID_not)
142 const std::function<
bool(
const exprt &)> &pred)
151 src, [&](
const exprt &subexpr) {
return subexpr.
id() ==
id; });
156 const std::function<
bool(
const typet &)> &pred,
159 std::vector<std::reference_wrapper<const typet>> stack;
160 std::unordered_set<typet, irep_hash> visited;
162 const auto push_if_not_visited = [&](
const typet &t) {
163 if(visited.insert(t).second)
164 stack.emplace_back(t);
167 push_if_not_visited(type);
168 while(!stack.empty())
170 const typet &top = stack.back().get();
175 else if(top.
id() == ID_c_enum_tag)
177 else if(top.
id() == ID_struct_tag)
179 else if(top.
id() == ID_union_tag)
181 else if(top.
id() == ID_struct || top.
id() == ID_union)
184 push_if_not_visited(comp.type());
189 push_if_not_visited(subtype);
199 type, [&](
const typet &subtype) {
return subtype.
id() ==
id; }, ns);
220 if(expr.
id()!=ID_typecast)
233 if(expr.
id() == ID_address_of)
238 expr.
id() == ID_typecast || expr.
id() == ID_array_of ||
239 expr.
id() == ID_plus || expr.
id() == ID_mult || expr.
id() == ID_array ||
240 expr.
id() == ID_with || expr.
id() == ID_struct || expr.
id() == ID_union ||
242 expr.
id() == ID_byte_update_big_endian ||
243 expr.
id() == ID_byte_update_little_endian)
247 return is_constant(e);
257 if(expr.
id() == ID_symbol)
261 else if(expr.
id() == ID_index)
268 else if(expr.
id() == ID_member)
272 else if(expr.
id() == ID_dereference)
278 else if(expr.
id() == ID_string_constant)
297 if(b.
get(ID_value) == ID_false)
303 if(a.
get(ID_value) == ID_false)
312 return and_exprt{std::move(a), std::move(b)};
Operator to update elements in structs and arrays.
#define UNREACHABLE
This should be used to mark dead code.
const union_tag_typet & to_union_tag_type(const typet &type)
Cast a typet to a union_tag_typet.
dstringt has one field, an unsigned integer no which is an index into a static table of strings.
const c_enum_tag_typet & to_c_enum_tag_type(const typet &type)
Cast a typet to a c_enum_tag_typet.
exprt make_and(exprt a, exprt b)
Conjunction of two expressions.
const exprt & skip_typecast(const exprt &expr)
find the expression nested inside typecasts, if any
bool has_subexpr(const exprt &expr, const std::function< bool(const exprt &)> &pred)
returns true if the expression has a subexpression that satisfies pred
depth_iteratort depth_begin()
const struct_union_typet & to_struct_union_type(const typet &type)
Cast a typet to a struct_union_typet.
const dereference_exprt & to_dereference_expr(const exprt &expr)
Cast an exprt to a dereference_exprt.
The type of an expression, extends irept.
const index_exprt & to_index_expr(const exprt &expr)
Cast an exprt to an index_exprt.
const if_exprt & to_if_expr(const exprt &expr)
Cast an exprt to an if_exprt.
Operator to dereference a pointer.
The trinary if-then-else operator.
virtual bool is_constant_address_of(const exprt &) const
this function determines which reference-typed expressions are constant
const type_with_subtypest & to_type_with_subtypes(const typet &type)
Base class for all expressions.
const union_typet & follow_tag(const union_tag_typet &) const
Follow type tag of union type.
if_exprt lift_if(const exprt &src, std::size_t operand_number)
lift up an if_exprt one level
bool is_true() const
Return whether the expression is a constant representing true.
exprt make_binary(const exprt &expr)
splits an expression with >=3 operands into nested binary expressions
bool is_false() const
Return whether the expression is a constant representing false.
const binary_exprt & to_binary_expr(const exprt &expr)
Cast an exprt to a binary_exprt.
A namespacet is essentially one or two symbol tables bound together, to allow for symbol lookups in t...
virtual bool is_constant(const exprt &) const
This function determines what expressions are to be propagated as "constants".
typet & type()
Return the type of the expression.
#define PRECONDITION(CONDITION)
bool has_subtype(const typet &type, const std::function< bool(const typet &)> &pred, const namespacet &ns)
returns true if any of the contained types satisfies pred
exprt boolean_negate(const exprt &src)
negate a Boolean expression, possibly removing a not_exprt, and swapping false and true
const exprt & index() const
API to expression classes for Pointers.
const irep_idt & id() const
const struct_tag_typet & to_struct_tag_type(const typet &type)
Cast a typet to a struct_tag_typet.
std::vector< exprt > operandst
The Boolean constant false.
const with_exprt & to_with_expr(const exprt &expr)
Cast an exprt to a with_exprt.
Operator to update elements in structs and arrays.
exprt::operandst & designator()
Deprecated expression utility functions.
Forward depth-first search iterators These iterators' copy operations are expensive,...
const not_exprt & to_not_expr(const exprt &expr)
Cast an exprt to an not_exprt.
const irep_idt & get(const irep_namet &name) const
exprt is_not_zero(const exprt &src, const namespacet &ns)
converts a scalar/float expression to C/C++ Booleans
const typecast_exprt & to_typecast_expr(const exprt &expr)
Cast an exprt to a typecast_exprt.
bool is_constant() const
Return whether the expression is a constant.
A base class for relations, i.e., binary predicates whose two operands have the same type.
void add_to_operands(const exprt &expr)
Add the given argument to the end of exprt's operands.
const member_exprt & to_member_expr(const exprt &expr)
Cast an exprt to a member_exprt.
constant_exprt make_boolean_expr(bool value)
returns true_exprt if given true and false_exprt otherwise
with_exprt make_with_expr(const update_exprt &src)
converts an update expr into a (possibly nested) with expression
const address_of_exprt & to_address_of_expr(const exprt &expr)
Cast an exprt to an address_of_exprt.
source_locationt & add_source_location()
The Boolean constant true.
A constant literal expression.
depth_iteratort depth_end()
API to expression classes.
const source_locationt & source_location() const
const index_designatort & to_index_designator(const exprt &expr)
Cast an exprt to an index_designatort.
bool is_lvalue(const exprt &expr)
Returns true iff the argument is (syntactically) an lvalue.