CBMC
boolbv_unary_minus.cpp
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module:
4 
5 Author: Daniel Kroening, kroening@kroening.com
6 
7 \*******************************************************************/
8 
9 #include "boolbv.h"
10 
11 #include <util/bitvector_types.h>
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 
30  bvtypet bvtype=get_bvtype(type);
31  bvtypet op_bvtype = get_bvtype(op.type());
32 
33  if(bvtype==bvtypet::IS_UNKNOWN &&
34  (type.id()==ID_vector || type.id()==ID_complex))
35  {
36  const typet &subtype = to_type_with_subtype(type).subtype();
37 
38  std::size_t sub_width=boolbv_width(subtype);
39 
40  INVARIANT(
41  sub_width > 0,
42  "bitvector representation of type needs to have at least one bit");
43 
44  INVARIANT(
45  width % sub_width == 0,
46  "total bitvector width needs to be a multiple of the component bitvector "
47  "widths");
48 
49  bvt bv;
50 
51  for(std::size_t sub_idx = 0; sub_idx < width; sub_idx += sub_width)
52  {
53  bvt tmp_op;
54 
55  const auto sub_it = std::next(op_bv.begin(), sub_idx);
56  std::copy_n(sub_it, sub_width, std::back_inserter(tmp_op));
57 
58  if(subtype.id() == ID_floatbv)
59  {
60  float_utilst float_utils(prop, to_floatbv_type(subtype));
61  tmp_op = float_utils.negate(tmp_op);
62  }
63  else
64  tmp_op = bv_utils.negate(tmp_op);
65 
66  INVARIANT(
67  tmp_op.size() == sub_width,
68  "bitvector after negation shall have same bit width");
69 
70  std::copy(tmp_op.begin(), tmp_op.end(), std::back_inserter(bv));
71  }
72 
73  return bv;
74  }
75  else if(bvtype==bvtypet::IS_FIXED && op_bvtype==bvtypet::IS_FIXED)
76  {
77  return bv_utils.negate(op_bv);
78  }
79  else if(bvtype==bvtypet::IS_FLOAT && op_bvtype==bvtypet::IS_FLOAT)
80  {
81  float_utilst float_utils(prop, to_floatbv_type(expr.type()));
82  return float_utils.negate(op_bv);
83  }
84  else if((op_bvtype==bvtypet::IS_SIGNED || op_bvtype==bvtypet::IS_UNSIGNED) &&
85  (bvtype==bvtypet::IS_SIGNED || bvtype==bvtypet::IS_UNSIGNED))
86  {
87  return bv_utils.negate(op_bv);
88  }
89 
90  return conversion_failed(expr);
91 }
bvtypet::IS_SIGNED
@ IS_SIGNED
float_utilst
Definition: float_utils.h:17
typet
The type of an expression, extends irept.
Definition: type.h:28
float_utils.h
bvt
std::vector< literalt > bvt
Definition: literal.h:201
to_floatbv_type
const floatbv_typet & to_floatbv_type(const typet &type)
Cast a typet to a floatbv_typet.
Definition: bitvector_types.h:367
bvtypet::IS_FIXED
@ IS_FIXED
boolbv_type.h
to_type_with_subtype
const type_with_subtypet & to_type_with_subtype(const typet &type)
Definition: type.h:193
get_bvtype
bvtypet get_bvtype(const typet &type)
Definition: boolbv_type.cpp:13
exprt
Base class for all expressions.
Definition: expr.h:55
bvtypet::IS_UNSIGNED
@ IS_UNSIGNED
bvtypet
bvtypet
Definition: boolbv_type.h:16
exprt::type
typet & type()
Return the type of the expression.
Definition: expr.h:84
bvtypet::IS_FLOAT
@ IS_FLOAT
boolbvt::boolbv_width
virtual std::size_t boolbv_width(const typet &type) const
Definition: boolbv.h:102
boolbvt::convert_bv
virtual const bvt & convert_bv(const exprt &expr, const optionalt< 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
bitvector_types.h
unary_minus_exprt
The unary minus expression.
Definition: std_expr.h:422
irept::id
const irep_idt & id() const
Definition: irep.h:396
unary_exprt::op
const exprt & op() const
Definition: std_expr.h:326
bv_utilst::negate
bvt negate(const bvt &op)
Definition: bv_utils.cpp:599
float_utilst::negate
bvt negate(const bvt &)
Definition: float_utils.cpp:557
boolbvt::bv_utils
bv_utilst bv_utils
Definition: boolbv.h:117
type_with_subtypet::subtype
const typet & subtype() const
Definition: type.h:172
boolbvt::convert_unary_minus
virtual bvt convert_unary_minus(const unary_minus_exprt &expr)
Definition: boolbv_unary_minus.cpp:20
boolbvt::conversion_failed
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:83
boolbv.h
bvtypet::IS_UNKNOWN
@ IS_UNKNOWN
validation_modet::INVARIANT
@ INVARIANT
prop_conv_solvert::prop
propt & prop
Definition: prop_conv_solver.h:130