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
|
# Helper functions for the generation of SMT2 expressions
# The SMT2 expressions will be returned as a string.
# The expressions are divided as follows
#
# - generic SMT2 operations
# - definitions of SMT2 structures
# - bit vector operations
# - array operations
# generic SMT2 operations
def smt2_eq(a, b):
"""
Assignment: a = b
"""
return "(= {} {})".format(a, b)
def smt2_implies(a, b):
"""
Implication: a => b
"""
return "(=> {} {})".format(a, b)
def smt2_and(*args):
"""
Conjunction: a and b and c ...
"""
# transform args into strings
args = [str(arg) for arg in args]
return "(and {})".format(' '.join(args))
def smt2_or(*args):
"""
Disjunction: a or b or c ...
"""
# transform args into strings
args = [str(arg) for arg in args]
return "(or {})".format(' '.join(args))
def smt2_ite(cond, a, b):
"""
If-then-else: cond ? a : b
"""
return "(ite {} {} {})".format(cond, a, b)
def smt2_distinct(*args):
"""
Distinction: a != b != c != ...
"""
# transform args into strings
args = [str(arg) for arg in args]
return "(distinct {})".format(' '.join(args))
def smt2_assert(expr):
"""
Assertion that @expr holds
"""
return "(assert {})".format(expr)
# definitions
def declare_bv(bv, size):
"""
Declares an bit vector @bv of size @size
"""
return "(declare-fun {} () {})".format(bv, bit_vec(size))
def declare_array(a, bv1, bv2):
"""
Declares an SMT2 array represented as a map
from a bit vector to another bit vector.
:param a: array name
:param bv1: SMT2 bit vector
:param bv2: SMT2 bit vector
"""
return "(declare-fun {} () (Array {} {}))".format(a, bv1, bv2)
def bit_vec_val(v, size):
"""
Declares a bit vector value
:param v: int, value of the bit vector
:param size: size of the bit vector
"""
return "(_ bv{} {})".format(v, size)
def bit_vec(size):
"""
Returns a bit vector of size @size
"""
return "(_ BitVec {})".format(size)
# bit vector operations
def bvadd(a, b):
"""
Addition: a + b
"""
return "(bvadd {} {})".format(a, b)
def bvsub(a, b):
"""
Subtraction: a - b
"""
return "(bvsub {} {})".format(a, b)
def bvmul(a, b):
"""
Multiplication: a * b
"""
return "(bvmul {} {})".format(a, b)
def bvand(a, b):
"""
Bitwise AND: a & b
"""
return "(bvand {} {})".format(a, b)
def bvor(a, b):
"""
Bitwise OR: a | b
"""
return "(bvor {} {})".format(a, b)
def bvxor(a, b):
"""
Bitwise XOR: a ^ b
"""
return "(bvxor {} {})".format(a, b)
def bvneg(bv):
"""
Unary minus: - bv
"""
return "(bvneg {})".format(bv)
def bvsdiv(a, b):
"""
Signed division: a / b
"""
return "(bvsdiv {} {})".format(a, b)
def bvudiv(a, b):
"""
Unsigned division: a / b
"""
return "(bvudiv {} {})".format(a, b)
def bvsmod(a, b):
"""
Signed modulo: a mod b
"""
return "(bvsmod {} {})".format(a, b)
def bvurem(a, b):
"""
Unsigned modulo: a mod b
"""
return "(bvurem {} {})".format(a, b)
def bvshl(a, b):
"""
Shift left: a << b
"""
return "(bvshl {} {})".format(a, b)
def bvlshr(a, b):
"""
Logical shift right: a >> b
"""
return "(bvlshr {} {})".format(a, b)
def bvashr(a, b):
"""
Arithmetic shift right: a a>> b
"""
return "(bvashr {} {})".format(a, b)
def bv_rotate_left(a, b, size):
"""
Rotates bits of a to the left b times: a <<< b
Since ((_ rotate_left b) a) does not support
symbolic values for b, the implementation is
based on a C implementation.
Therefore, the rotation will be computed as
a << (b & (size - 1))) | (a >> (size - (b & (size - 1))))
:param a: bit vector
:param b: bit vector
:param size: size of a
"""
# define constant
s = bit_vec_val(size, size)
# shift = b & (size - 1)
shift = bvand(b, bvsub(s, bit_vec_val(1, size)))
# (a << shift) | (a >> size - shift)
rotate = bvor(bvshl(a, shift),
bvlshr(a, bvsub(s, shift)))
return rotate
def bv_rotate_right(a, b, size):
"""
Rotates bits of a to the right b times: a >>> b
Since ((_ rotate_right b) a) does not support
symbolic values for b, the implementation is
based on a C implementation.
Therefore, the rotation will be computed as
a >> (b & (size - 1))) | (a << (size - (b & (size - 1))))
:param a: bit vector
:param b: bit vector
:param size: size of a
"""
# define constant
s = bit_vec_val(size, size)
# shift = b & (size - 1)
shift = bvand(b, bvsub(s, bit_vec_val(1, size)))
# (a >> shift) | (a << size - shift)
rotate = bvor(bvlshr(a, shift),
bvshl(a, bvsub(s, shift)))
return rotate
def bv_extract(high, low, bv):
"""
Extracts bits from a bit vector
:param high: end bit
:param low: start bit
:param bv: bit vector
"""
return "((_ extract {} {}) {})".format(high, low, bv)
def bv_concat(a, b):
"""
Concatenation of two SMT2 expressions
"""
return "(concat {} {})".format(a, b)
# array operations
def array_select(array, index):
"""
Reads from an SMT2 array at index @index
:param array: SMT2 array
:param index: SMT2 expression, index of the array
"""
return "(select {} {})".format(array, index)
def array_store(array, index, value):
"""
Writes an value into an SMT2 array at address @index
:param array: SMT array
:param index: SMT2 expression, index of the array
:param value: SMT2 expression, value to write
"""
return "(store {} {} {})".format(array, index, value)
|