-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy patharith_tools.cpp
432 lines (384 loc) · 10.8 KB
/
arith_tools.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
/*******************************************************************\
Module:
Author: Daniel Kroening, [email protected]
\*******************************************************************/
#include "arith_tools.h"
#include "c_types.h"
#include "expr_util.h"
#include "fixedbv.h"
#include "ieee_float.h"
#include "invariant.h"
#include "std_expr.h"
#include <algorithm>
bool to_integer(const constant_exprt &expr, mp_integer &int_value)
{
const irep_idt &value=expr.get_value();
const typet &type=expr.type();
const irep_idt &type_id=type.id();
if(type_id==ID_pointer)
{
if(expr.is_null_pointer())
{
int_value=0;
return false;
}
}
else if(type_id == ID_integer || type_id == ID_natural || type_id == ID_range)
{
int_value=string2integer(id2string(value));
return false;
}
else if(type_id==ID_unsignedbv)
{
const auto width = to_unsignedbv_type(type).get_width();
int_value = bvrep2integer(value, width, false);
return false;
}
else if(type_id==ID_signedbv)
{
const auto width = to_signedbv_type(type).get_width();
int_value = bvrep2integer(value, width, true);
return false;
}
else if(type_id==ID_c_bool)
{
const auto width = to_c_bool_type(type).get_width();
int_value = bvrep2integer(value, width, false);
return false;
}
else if(type_id==ID_c_enum)
{
const typet &underlying_type = to_c_enum_type(type).underlying_type();
if(underlying_type.id() == ID_signedbv)
{
const auto width = to_signedbv_type(underlying_type).get_width();
int_value = bvrep2integer(value, width, true);
return false;
}
else if(underlying_type.id() == ID_unsignedbv)
{
const auto width = to_unsignedbv_type(underlying_type).get_width();
int_value = bvrep2integer(value, width, false);
return false;
}
}
else if(type_id==ID_c_bit_field)
{
const auto &c_bit_field_type = to_c_bit_field_type(type);
const auto width = c_bit_field_type.get_width();
const typet &underlying_type = c_bit_field_type.underlying_type();
if(underlying_type.id() == ID_signedbv)
{
int_value = bvrep2integer(value, width, true);
return false;
}
else if(underlying_type.id() == ID_unsignedbv)
{
int_value = bvrep2integer(value, width, false);
return false;
}
else if(underlying_type.id() == ID_c_bool)
{
int_value = bvrep2integer(value, width, false);
return false;
}
}
return true;
}
constant_exprt from_integer(
const mp_integer &int_value,
const typet &type)
{
const irep_idt &type_id=type.id();
if(type_id==ID_integer)
{
return constant_exprt(integer2string(int_value), type);
}
else if(type_id==ID_natural)
{
PRECONDITION(int_value >= 0);
return constant_exprt(integer2string(int_value), type);
}
else if(type_id == ID_range)
{
auto &range_type = to_range_type(type);
PRECONDITION(int_value >= range_type.get_from());
PRECONDITION(int_value <= range_type.get_to());
return constant_exprt{integer2string(int_value), type};
}
else if(type_id==ID_unsignedbv)
{
std::size_t width=to_unsignedbv_type(type).get_width();
return constant_exprt(integer2bvrep(int_value, width), type);
}
else if(type_id==ID_bv)
{
std::size_t width=to_bv_type(type).get_width();
return constant_exprt(integer2bvrep(int_value, width), type);
}
else if(type_id==ID_signedbv)
{
std::size_t width=to_signedbv_type(type).get_width();
return constant_exprt(integer2bvrep(int_value, width), type);
}
else if(type_id==ID_c_enum)
{
const std::size_t width =
to_bitvector_type(to_c_enum_type(type).underlying_type()).get_width();
return constant_exprt(integer2bvrep(int_value, width), type);
}
else if(type_id==ID_c_bool)
{
std::size_t width=to_c_bool_type(type).get_width();
return constant_exprt(integer2bvrep(int_value, width), type);
}
else if(type_id==ID_bool)
{
PRECONDITION(int_value == 0 || int_value == 1);
if(int_value == 0)
return false_exprt();
else
return true_exprt();
}
else if(type_id==ID_pointer)
{
PRECONDITION(int_value == 0);
return null_pointer_exprt(to_pointer_type(type));
}
else if(type_id==ID_c_bit_field)
{
std::size_t width=to_c_bit_field_type(type).get_width();
return constant_exprt(integer2bvrep(int_value, width), type);
}
else if(type_id==ID_fixedbv)
{
fixedbvt fixedbv;
fixedbv.spec=fixedbv_spect(to_fixedbv_type(type));
fixedbv.from_integer(int_value);
return fixedbv.to_expr();
}
else if(type_id==ID_floatbv)
{
ieee_floatt ieee_float(
to_floatbv_type(type), ieee_floatt::rounding_modet::ROUND_TO_EVEN);
// always rounds to zero
ieee_float.from_integer(int_value);
return ieee_float.to_expr();
}
else
PRECONDITION(false);
}
/// ceil(log2(size))
std::size_t address_bits(const mp_integer &size)
{
// in theory an arbitrary-precision integer could be as large as
// numeric_limits<std::size_t>::max() * CHAR_BIT (but then we would only be
// able to store 2^CHAR_BIT many of those; the implementation of mp_integer as
// BigInt is much more restricted as its size is stored as an unsigned int
std::size_t result = 1;
for(mp_integer x = 2; x < size; ++result, x *= 2) {}
INVARIANT(power(2, result) >= size, "address_bits(size) >= log2(size)");
return result;
}
/// A multi-precision implementation of the power operator.
/// \par parameters: Two mp_integers, base and exponent
/// \return One mp_integer with the value base^{exponent}
mp_integer power(const mp_integer &base,
const mp_integer &exponent)
{
PRECONDITION(exponent >= 0);
/* There are a number of special cases which are:
* A. very common
* B. handled more efficiently
*/
if(base.is_long() && exponent.is_long())
{
switch(base.to_long())
{
case 2:
{
mp_integer result;
result.setPower2(numeric_cast_v<unsigned>(exponent));
return result;
}
case 1: return 1;
case 0: return 0;
default:
{
}
}
}
if(exponent==0)
return 1;
if(base<0)
{
mp_integer result = power(-base, exponent);
if(exponent.is_odd())
return -result;
else
return result;
}
mp_integer result=base;
mp_integer count=exponent-1;
while(count!=0)
{
result*=base;
--count;
}
return result;
}
void mp_min(mp_integer &a, const mp_integer &b)
{
if(b<a)
a=b;
}
void mp_max(mp_integer &a, const mp_integer &b)
{
if(b>a)
a=b;
}
/// Get a bit with given index from bit-vector representation.
/// \param src: the bitvector representation
/// \param width: the number of bits in the bitvector
/// \param bit_index: index (0 is the least significant)
bool get_bvrep_bit(
const irep_idt &src,
std::size_t width,
std::size_t bit_index)
{
PRECONDITION(bit_index < width);
// The representation is hex, i.e., four bits per letter,
// most significant nibble first, using uppercase letters.
// No lowercase, no leading zeros (other than for 'zero'),
// to ensure canonicity.
const auto nibble_index = bit_index / 4;
if(nibble_index >= src.size())
return false;
const char nibble = src[src.size() - 1 - nibble_index];
DATA_INVARIANT(
isdigit(nibble) || (nibble >= 'A' && nibble <= 'F'),
"bvrep is hexadecimal, upper-case");
const unsigned char nibble_value =
isdigit(nibble) ? nibble - '0' : nibble - 'A' + 10;
return ((nibble_value >> (bit_index % 4)) & 1) != 0;
}
/// turn a value 0...15 into '0'-'9', 'A'-'Z'
static char nibble2hex(unsigned char nibble)
{
PRECONDITION(nibble <= 0xf);
if(nibble >= 10)
return 'A' + nibble - 10;
else
return '0' + nibble;
}
/// construct a bit-vector representation from a functor
/// \param width: the width of the bit-vector
/// \param f: the functor -- the parameter is the bit index
/// \return new bitvector representation
irep_idt
make_bvrep(const std::size_t width, const std::function<bool(std::size_t)> f)
{
std::string result;
result.reserve((width + 3) / 4);
unsigned char nibble = 0;
for(std::size_t i = 0; i < width; i++)
{
const auto bit_in_nibble = i % 4;
nibble |= ((unsigned char)f(i)) << bit_in_nibble;
if(bit_in_nibble == 3)
{
result += nibble2hex(nibble);
nibble = 0;
}
}
if(nibble != 0)
result += nibble2hex(nibble);
// drop leading zeros
const std::size_t pos = result.find_last_not_of('0');
if(pos == std::string::npos)
return ID_0;
else
{
result.resize(pos + 1);
std::reverse(result.begin(), result.end());
return result;
}
}
/// perform a binary bit-wise operation, given as a functor,
/// on a bit-vector representation
/// \param a: the representation of the first bit vector
/// \param b: the representation of the second bit vector
/// \param width: the width of the bit-vector
/// \param f: the functor
/// \return new bitvector representation
irep_idt bvrep_bitwise_op(
const irep_idt &a,
const irep_idt &b,
const std::size_t width,
const std::function<bool(bool, bool)> f)
{
return make_bvrep(width, [&a, &b, &width, f](std::size_t i) {
return f(get_bvrep_bit(a, width, i), get_bvrep_bit(b, width, i));
});
}
/// perform a unary bit-wise operation, given as a functor,
/// on a bit-vector representation
/// \param a: the bit-vector representation
/// \param width: the width of the bit-vector
/// \param f: the functor
/// \return new bitvector representation
irep_idt bvrep_bitwise_op(
const irep_idt &a,
const std::size_t width,
const std::function<bool(bool)> f)
{
return make_bvrep(width, [&a, &width, f](std::size_t i) {
return f(get_bvrep_bit(a, width, i));
});
}
/// convert an integer to bit-vector representation with given width
/// This uses two's complement for negative numbers.
/// If the value is out of range, it is 'wrapped around'.
irep_idt integer2bvrep(const mp_integer &src, std::size_t width)
{
const mp_integer p = power(2, width);
if(src.is_negative())
{
// do two's complement encoding of negative numbers
mp_integer tmp = src;
tmp.negate();
tmp %= p;
if(tmp != 0)
tmp = p - tmp;
return integer2string(tmp, 16);
}
else
{
// we 'wrap around' if 'src' is too large
return integer2string(src % p, 16);
}
}
/// convert a bit-vector representation (possibly signed) to integer
mp_integer bvrep2integer(const irep_idt &src, std::size_t width, bool is_signed)
{
if(is_signed)
{
PRECONDITION(width >= 1);
const auto tmp = string2integer(id2string(src), 16);
const auto p = power(2, width - 1);
if(tmp >= p)
{
const auto result = tmp - 2 * p;
PRECONDITION(result >= -p);
return result;
}
else
return tmp;
}
else
{
const auto result = string2integer(id2string(src), 16);
PRECONDITION(result < power(2, width));
return result;
}
}