32 const exprt &src,
unsigned &precedence)
override;
46 const std::string &declarator)
override;
53 if(src.
type().
id() != ID_struct && src.
type().
id() != ID_struct_tag)
57 src.
type().
id() == ID_struct_tag
61 std::string dest=
"{ ";
67 components.size() == src.
operands().size(),
"component count mismatch");
69 exprt::operandst::const_iterator o_it=src.
operands().begin();
74 for(
const auto &c : components)
76 if(c.type().id() == ID_code)
88 if(last_size+40<dest.size())
91 last_size=dest.size();
99 if(!c.get_pretty_name().empty())
117 unsigned &precedence)
119 if(src.
type().
id() == ID_c_bool)
134 const std::string &declarator)
136 std::unique_ptr<c_qualifierst> clone = qualifiers.
clone();
138 new_qualifiers.
read(src);
140 const std::string d = declarator.empty() ? declarator : (
" " + declarator);
153 else if(!src.
get(ID_C_c_type).
empty())
157 if(c_type == ID_bool)
162 else if(src.
id() == ID_struct)
168 else if(src.
get_bool(ID_C_interface))
177 else if(src.
id() == ID_struct_tag)
181 std::string dest = q;
185 else if(src.
get_bool(ID_C_interface))
186 dest +=
"__interface";
190 const irept &tag = struct_type.
find(ID_tag);
193 if(tag.
id() == ID_cpp_name)
203 else if(src.
id() == ID_union_tag)
207 std::string dest = q +
"union";
209 const irept &tag = union_type.
find(ID_tag);
212 if(tag.
id() == ID_cpp_name)
222 else if(src.
id()==ID_constructor)
224 return "constructor ";
226 else if(src.
id()==ID_destructor)
228 return "destructor ";
230 else if(src.
id()==
"cpp-template-type")
234 else if(src.
id()==ID_template)
236 std::string dest=
"template<";
240 for(
auto it = arguments.begin(); it != arguments.end(); ++it)
242 if(it!=arguments.begin())
247 if(argument.
id()==ID_symbol)
252 else if(argument.
id()==ID_type)
266 src.
id() == ID_pointer &&
269 return "std::nullptr_t";
275 member.
swap(tmp.
add(ID_to_member));
277 std::string dest =
"(" +
convert(member) +
":: *)";
281 if(base_type.id() == ID_code)
285 dest =
convert(return_type) +
" " + dest;
290 for(code_typet::parameterst::const_iterator it=args.begin();
303 dest =
convert(base_type) +
" " + dest + d;
307 else if(src.
id()==ID_verilog_signedbv ||
308 src.
id()==ID_verilog_unsignedbv)
311 else if(src.
id()==ID_unassigned)
313 else if(src.
id()==ID_code)
320 std::string dest=
"auto";
331 for(code_typet::parameterst::const_iterator
332 it=parameters.begin();
333 it!=parameters.end();
336 if(it!=parameters.begin())
344 if(!parameters.empty())
352 dest+=
" -> "+
convert(return_type);
356 else if(src.
id()==ID_initializer_list)
361 else if(src.
id() == ID_c_bool)
363 return q +
"bool" + d;
378 if(src.
get(ID_statement)==ID_cpp_new_array)
382 std::string tmp_size=
406 std::string dest=
indent_str(indent)+
"delete ";
423 unsigned &precedence)
425 if(src.
id()==
"cpp-this")
430 if(src.
id()==ID_extractbit)
435 else if(src.
id()==ID_side_effect &&
436 (src.
get(ID_statement)==ID_cpp_new ||
437 src.
get(ID_statement)==ID_cpp_new_array))
442 else if(src.
id()==ID_side_effect &&
443 src.
get(ID_statement)==ID_throw)
454 else if(src.
id()==ID_unassigned)
456 else if(src.
id() == ID_pod_constructor)
457 return "pod_constructor";
468 if(statement==ID_cpp_delete ||
469 statement==ID_cpp_delete_array)
472 if(statement==ID_cpp_new ||
473 statement==ID_cpp_new_array)
482 return convert(extractbit_expr.op0()) +
"[" +
convert(extractbit_expr.op1()) +
const extractbit_exprt & to_extractbit_expr(const exprt &expr)
Cast an exprt to an extractbit_exprt.
const bitvector_typet & to_bitvector_type(const typet &type)
Cast a typet to a bitvector_typet.
std::string MetaString(const std::string &in)
const union_tag_typet & to_union_tag_type(const typet &type)
Cast a typet to a union_tag_typet.
virtual void read(const typet &src)
virtual std::unique_ptr< c_qualifierst > clone() const
virtual std::string as_string() const
std::vector< parametert > parameterst
const typet & return_type() const
bool has_ellipsis() const
const parameterst & parameters() const
Data structure for representing an arbitrary statement in a program.
A constant literal expression.
std::string to_string() const
dstringt has one field, an unsigned integer no which is an index into a static table of strings.
std::string convert_with_precedence(const exprt &src, unsigned &precedence) override
std::string convert_struct(const exprt &src, unsigned &precedence) override
std::string convert_code_cpp_new(const exprt &src, unsigned indent)
std::string convert_constant(const constant_exprt &src, unsigned &precedence) override
expr2cppt(const namespacet &_ns)
std::string convert_code(const codet &src, unsigned indent) override
std::string convert_extractbit(const exprt &src)
std::string convert_cpp_new(const exprt &src)
std::string convert_cpp_this()
std::string convert_code_cpp_delete(const exprt &src, unsigned indent)
std::string convert_rec(const typet &src, const c_qualifierst &qualifiers, const std::string &declarator) override
std::optional< std::string > convert_function(const exprt &src)
Returns a string if src is a function with a known conversion, else returns nullopt.
virtual std::string convert_rec(const typet &src, const c_qualifierst &qualifiers, const std::string &declarator)
static std::string indent_str(unsigned indent)
std::string convert_code(const codet &src)
std::string convert_norep(const exprt &src, unsigned &precedence)
virtual std::string convert_constant(const constant_exprt &src, unsigned &precedence)
virtual std::string convert_with_precedence(const exprt &src, unsigned &precedence)
virtual std::string convert(const typet &src)
Base class for all expressions.
bool is_true() const
Return whether the expression is a constant representing true.
bool is_false() const
Return whether the expression is a constant representing false.
typet & type()
Return the type of the expression.
bool is_constant() const
Return whether the expression is a constant.
There are a large number of kinds of tree structured or tree-like data in CPROVER.
bool get_bool(const irep_idt &name) const
const irept & find(const irep_idt &name) const
const irep_idt & get(const irep_idt &name) const
const irep_idt & id() const
irept & add(const irep_idt &name)
std::string expr2string() const
const union_typet & follow_tag(const union_tag_typet &) const
Follow type tag of union type.
A namespacet is essentially one or two symbol tables bound together, to allow for symbol lookups in t...
const typet & base_type() const
The type of the data what we point to.
Structure type, corresponds to C style structs.
const componentst & components() const
std::vector< componentt > componentst
The type of an expression, extends irept.
cpp_namet & to_cpp_name(irept &cpp_name)
template_typet & to_template_type(typet &type)
std::string type2cpp(const typet &type, const namespacet &ns)
std::string expr2cpp(const exprt &expr, const namespacet &ns)
const std::string & id2string(const irep_idt &d)
void irep2lisp(const irept &src, lispexprt &dest)
API to expression classes for Pointers.
bool is_reference(const typet &type)
Returns true if the type is a reference.
bool is_rvalue_reference(const typet &type)
Returns if the type is an R value reference.
const pointer_typet & to_pointer_type(const typet &type)
Cast a typet to a pointer_typet.
const reference_typet & to_reference_type(const typet &type)
Cast a typet to a reference_typet.
#define DATA_INVARIANT(CONDITION, REASON)
This condition should be used to document that assumptions that are made on goto_functions,...
API to expression classes.
const constant_exprt & to_constant_expr(const exprt &expr)
Cast an exprt to a constant_exprt.
const unary_exprt & to_unary_expr(const exprt &expr)
Cast an exprt to a unary_exprt.
const struct_typet & to_struct_type(const typet &type)
Cast a typet to a struct_typet.
const code_typet & to_code_type(const typet &type)
Cast a typet to a code_typet.
const struct_tag_typet & to_struct_tag_type(const typet &type)
Cast a typet to a struct_tag_typet.
std::string to_string(const string_not_contains_constraintt &expr)
Used for debug printing.