CBMC
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
boolbv_unary_minus.cpp
Go to the documentation of this file.
1/*******************************************************************\
2
3Module:
4
5Author: Daniel Kroening, kroening@kroening.com
6
7\*******************************************************************/
8
9#include "boolbv.h"
10
12
14
15#include <algorithm>
16#include <iterator>
17
18#include "boolbv_type.h"
19
21{
22 const typet &type = expr.type();
23
24 std::size_t width=boolbv_width(type);
25
26 const exprt &op = expr.op();
27
28 const bvt &op_bv = convert_bv(op, width);
29
32
33 if(bvtype == bvtypet::IS_UNKNOWN && type.id() == ID_complex)
34 {
35 const typet &subtype = to_type_with_subtype(type).subtype();
36
37 std::size_t sub_width=boolbv_width(subtype);
38
40 sub_width > 0,
41 "bitvector representation of type needs to have at least one bit");
42
44 width % sub_width == 0,
45 "total bitvector width needs to be a multiple of the component bitvector "
46 "widths");
47
48 bvt bv;
49
50 for(std::size_t sub_idx = 0; sub_idx < width; sub_idx += sub_width)
51 {
52 bvt tmp_op;
53
54 const auto sub_it = std::next(op_bv.begin(), sub_idx);
55 std::copy_n(sub_it, sub_width, std::back_inserter(tmp_op));
56
57 if(subtype.id() == ID_floatbv)
58 {
60 tmp_op = float_utils.negate(tmp_op);
61 }
62 else
64
66 tmp_op.size() == sub_width,
67 "bitvector after negation shall have same bit width");
68
69 std::copy(tmp_op.begin(), tmp_op.end(), std::back_inserter(bv));
70 }
71
72 return bv;
73 }
75 {
76 return bv_utils.negate(op_bv);
77 }
79 {
81 return float_utils.negate(op_bv);
82 }
85 {
86 return bv_utils.negate(op_bv);
87 }
88
89 return conversion_failed(expr);
90}
Pre-defined bitvector types.
const floatbv_typet & to_floatbv_type(const typet &type)
Cast a typet to a floatbv_typet.
bvtypet get_bvtype(const typet &type)
bvtypet
Definition boolbv_type.h:17
ait supplies three of the four components needed: an abstract interpreter (in this case handling func...
Definition ai.h:562
virtual const bvt & convert_bv(const exprt &expr, const std::optional< std::size_t > expected_width={})
Convert expression to vector of literalts, using an internal cache to speed up conversion if availabl...
Definition boolbv.cpp:39
virtual bvt convert_unary_minus(const unary_minus_exprt &expr)
bv_utilst bv_utils
Definition boolbv.h:118
bvt conversion_failed(const exprt &expr)
Print that the expression of x has failed conversion, then return a vector of x's width.
Definition boolbv.cpp:94
virtual std::size_t boolbv_width(const typet &type) const
Definition boolbv.h:103
bvt negate(const bvt &op)
Definition bv_utils.cpp:589
Base class for all expressions.
Definition expr.h:56
typet & type()
Return the type of the expression.
Definition expr.h:84
const irep_idt & id() const
Definition irep.h:388
The type of an expression, extends irept.
Definition type.h:29
const exprt & op() const
Definition std_expr.h:391
The unary minus expression.
Definition std_expr.h:484
std::vector< literalt > bvt
Definition literal.h:201
#define INVARIANT(CONDITION, REASON)
This macro uses the wrapper function 'invariant_violated_string'.
Definition invariant.h:423
const type_with_subtypet & to_type_with_subtype(const typet &type)
Definition type.h:208