@@ -19,62 +19,57 @@ class bv_pointerst:public boolbvt
19
19
{
20
20
public:
21
21
bv_pointerst (
22
- const namespacet &_ns ,
23
- propt &_prop ,
24
- message_handlert &message_handler ,
22
+ const namespacet &,
23
+ propt &,
24
+ message_handlert &,
25
25
bool get_array_constraints = false );
26
26
27
27
void finish_eager_conversion () override ;
28
28
29
29
endianness_mapt
30
- endianness_map (const typet &type , bool little_endian) const override ;
30
+ endianness_map (const typet &, bool little_endian) const override ;
31
31
32
32
protected:
33
33
pointer_logict pointer_logic;
34
34
35
- std::size_t get_object_width (const pointer_typet &type ) const ;
36
- std::size_t get_offset_width (const pointer_typet &type ) const ;
37
- std::size_t get_address_width (const pointer_typet &type ) const ;
35
+ std::size_t get_object_width (const pointer_typet &) const ;
36
+ std::size_t get_offset_width (const pointer_typet &) const ;
37
+ std::size_t get_address_width (const pointer_typet &) const ;
38
38
39
39
// NOLINTNEXTLINE(readability/identifiers)
40
40
typedef boolbvt SUB;
41
41
42
42
NODISCARD
43
- bvt encode (std::size_t object, const pointer_typet &type ) const ;
43
+ bvt encode (std::size_t object, const pointer_typet &) const ;
44
44
45
- virtual bvt convert_pointer_type (const exprt &expr );
45
+ virtual bvt convert_pointer_type (const exprt &);
46
46
47
47
NODISCARD
48
- virtual bvt add_addr (const exprt &expr );
48
+ virtual bvt add_addr (const exprt &);
49
49
50
50
// overloading
51
- literalt convert_rest (const exprt &expr ) override ;
52
- bvt convert_bitvector (const exprt &expr ) override ; // no cache
51
+ literalt convert_rest (const exprt &) override ;
52
+ bvt convert_bitvector (const exprt &) override ; // no cache
53
53
54
- exprt bv_get_rec (
55
- const exprt &expr,
56
- const bvt &bv,
57
- std::size_t offset,
58
- const typet &type) const override ;
54
+ exprt
55
+ bv_get_rec (const exprt &, const bvt &, std::size_t offset, const typet &)
56
+ const override ;
59
57
60
58
NODISCARD
61
- optionalt<bvt> convert_address_of_rec (const exprt &expr );
59
+ optionalt<bvt> convert_address_of_rec (const exprt &);
62
60
63
61
NODISCARD
64
- bvt offset_arithmetic (
65
- const pointer_typet &type,
66
- const bvt &bv,
67
- const mp_integer &x);
62
+ bvt offset_arithmetic (const pointer_typet &, const bvt &, const mp_integer &);
68
63
NODISCARD
69
64
bvt offset_arithmetic (
70
- const pointer_typet &type ,
71
- const bvt &bv ,
65
+ const pointer_typet &,
66
+ const bvt &,
72
67
const mp_integer &factor,
73
68
const exprt &index);
74
69
NODISCARD
75
70
bvt offset_arithmetic (
76
- const pointer_typet &type ,
77
- const bvt &bv ,
71
+ const pointer_typet &,
72
+ const bvt &,
78
73
const mp_integer &factor,
79
74
const bvt &index_bv);
80
75
0 commit comments