-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathFunctionDeclarationKind.java
More file actions
469 lines (377 loc) · 9.17 KB
/
FunctionDeclarationKind.java
File metadata and controls
469 lines (377 loc) · 9.17 KB
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
// This file is part of JavaSMT,
// an API wrapper for a collection of SMT solvers:
// https://github.com/sosy-lab/java-smt
//
// SPDX-FileCopyrightText: 2020 Dirk Beyer <https://www.sosy-lab.org>
//
// SPDX-License-Identifier: Apache-2.0
package org.sosy_lab.java_smt.api;
/**
* Types of function declarations.
*
* @see FunctionDeclaration
*/
public enum FunctionDeclarationKind {
AND,
NOT,
OR,
/** If and only if. */
IFF,
/** If-then-else operator. */
ITE,
/** Exclusive OR over two formulas. */
XOR,
/** Implication between two boolean formulas. */
IMPLIES,
/** Distinct operator for a set of numeric formulas. */
DISTINCT,
/** Store and select on arrays, and constant initialization. */
STORE,
SELECT,
CONST,
// Simple arithmetic,
// they work across integers and rationals.
/** Unary minus. */
UMINUS,
/** Subtraction over integers and rationals. */
SUB,
/** Addition over integers and rationals. */
ADD,
/** Division over rationals and integer division over integers. */
DIV,
/** Multiplication over integers and rationals. */
MUL,
/** Modulo operator over integers. */
MODULO,
/** Uninterpreted function. */
UF,
/** User-defined variable. */
VAR,
/** Less-than over integers and rationals. */
LT,
/** Less-than-or-equal over integers and rationals. */
LTE,
/** Greater-than over integers and rationals. */
GT,
/** Greater-than-or-equal over integers and rationals. */
GTE,
/** Equality over integers and rationals. Binary equality is modelled with {@code IFF}. */
EQ,
/** Unary comparison to zero. */
EQ_ZERO,
/** Unary comparison with zero. */
GTE_ZERO,
/** Floor operation, converts from rationals to integers, also known as {@code to_int}. */
FLOOR,
/** Identity operation, converts from integers to rationals, also known as {@code to_real}. */
TO_REAL,
/** Convert from integer to bitvector. */
INT_TO_BV,
// Simple bitvector operations
/** Extraction over bitvectors. */
BV_EXTRACT,
/** Concatenation over bitvectors. */
BV_CONCAT,
/** Extend bitvectors according to their sign. */
BV_SIGN_EXTENSION,
/** Extend bitvectors with zeros. */
BV_ZERO_EXTENSION,
/** Bitwise negation of a bitvector. */
BV_NOT,
/** Negation of a bitvector. */
BV_NEG,
/** Bitwise OR over bitvectors. */
BV_OR,
/** Bitwise AND over bitvectors. */
BV_AND,
/** Bitwise XOR over bitvectors. */
BV_XOR,
/** Subtraction over bitvectors. */
BV_SUB,
/** Addition over bitvectors. */
BV_ADD,
/** Signed division over bitvectors. */
BV_SDIV,
/** Unsigned division over bitvectors. */
BV_UDIV,
/** Signed remainder over bitvectors. */
BV_SREM,
/** Unsigned remainder over bitvectors. */
BV_UREM,
/** Signed modulo over bitvectors. */
BV_SMOD,
/** Multiplication over bitvectors. */
BV_MUL,
/** Signed less-than over bitvectors. */
BV_ULT,
/** Unsigned less-than over bitvectors. */
BV_SLT,
/** Unsigned less-than-or-equal over bitvectors. */
BV_ULE,
/** Signed greater-than-or-equal over bitvectors. */
BV_SLE,
/** Signed greater-than over bitvectors. */
BV_UGT,
/** Unsigned greater-than over bitvectors. */
BV_SGT,
/** Unsigned greater-than-or-equal over bitvectors. */
BV_UGE,
/** Signed greater-than-or-equal over bitvectors. */
BV_SGE,
/** Equality over bitvectors. Binary equality is modeled with {@code IFF}. */
BV_EQ,
/** Logical left-shift over bitvectors (fill from right with zeroes). */
BV_SHL,
/** Logical right-shift over bitvectors (fill from left with zeroes). */
BV_LSHR,
/** Arithmetic right-shift over bitvectors (fill from left with value of first bit). */
BV_ASHR,
/** Performs a circular left rotation on the bitvector. */
BV_ROTATE_LEFT,
/** Performs a circular right rotation on the bitvector. */
BV_ROTATE_RIGHT,
/**
* Performs a circular left rotation on the bitvector by a specified number of positions,
* determined by an integer value.
*/
BV_ROTATE_LEFT_BY_INT,
/**
* Performs a circular right rotation on the bitvector by a specified number of positions,
* determined by an integer value.
*/
BV_ROTATE_RIGHT_BY_INT,
/** Cast an unsigned bitvector to a floating-point number. */
BV_UCASTTO_FP,
/** Cast a signed bitvector to a floating-point number. */
BV_SCASTTO_FP,
/** Cast an unsigned bitvector to an integer number. */
UBV_TO_INT,
/** Cast a signed bitvector to an integer number. */
SBV_TO_INT,
// Simple floating point operations
/** Negation of a floating point. */
FP_NEG,
/** Absolute value of a floating point. */
FP_ABS,
/** Maximum of two floating points. */
FP_MAX,
/** Minimum of two floating points. */
FP_MIN,
/** Square root of a floating point. */
FP_SQRT,
/** Subtraction over floating points. */
FP_SUB,
/** Addition over floating points. */
FP_ADD,
/** Division over floating points. */
FP_DIV,
/** Remainder of the floating point division. */
FP_REM,
/** Multiplication over floating points. */
FP_MUL,
/** Less-than over floating points. */
FP_LT,
/** Less-than-or-equal over floating points. */
FP_LE,
/** Greater-than-or-equal over floating points. */
FP_GE,
/** Greater-than over floating points. */
FP_GT,
/** Equal over floating points. */
FP_EQ,
/** Rounding over floating points. */
FP_ROUND_TO_INTEGRAL,
/** Further FP queries. */
FP_IS_NAN,
FP_IS_INF,
FP_IS_ZERO,
FP_IS_NEGATIVE,
FP_IS_SUBNORMAL,
FP_IS_NORMAL,
FP_CASTTO_FP,
FP_CASTTO_SBV,
FP_CASTTO_UBV,
FP_AS_IEEEBV,
FP_FROM_IEEEBV,
// String and Regex theory
STR_CONCAT,
STR_PREFIX,
STR_SUFFIX,
STR_CONTAINS,
STR_SUBSTRING,
STR_REPLACE,
STR_REPLACE_ALL,
STR_CHAR_AT,
STR_LENGTH,
STR_INDEX_OF,
STR_TO_RE,
STR_IN_RE,
STR_TO_INT,
INT_TO_STR,
STR_FROM_CODE,
STR_TO_CODE,
STR_LT,
STR_LE,
RE_NONE,
RE_PLUS,
RE_STAR,
RE_OPTIONAL,
RE_CONCAT,
RE_UNION,
RE_RANGE,
RE_INTERSECT,
RE_COMPLEMENT,
RE_DIFFERENCE,
// Separation logic
SEP_EMP,
SEP_NIL,
SEP_PTO,
SEP_STAR,
SEP_WAND,
// default case
/**
* Solvers support a lot of different built-in theories. We enforce standardization only across a
* small subset.
*/
OTHER;
public static int getArity(FunctionDeclarationKind pKind) {
return switch (pKind) {
case AND,
OR,
IFF,
XOR,
IMPLIES,
DISTINCT,
SUB,
ADD,
DIV,
MUL,
LT,
LTE,
GT,
GTE,
EQ,
BV_CONCAT,
BV_OR,
BV_AND,
BV_XOR,
BV_SUB,
BV_ADD,
BV_MUL,
STR_CONCAT,
STR_LT,
STR_LE,
RE_CONCAT,
RE_DIFFERENCE,
RE_UNION,
RE_INTERSECT ->
-1;
case RE_NONE, SEP_NIL -> 0;
case INT_TO_BV,
NOT,
UMINUS,
EQ_ZERO,
GTE_ZERO,
FLOOR,
TO_REAL,
CONST,
BV_EXTRACT,
BV_SIGN_EXTENSION,
BV_ZERO_EXTENSION,
BV_NOT,
BV_NEG,
BV_ROTATE_LEFT_BY_INT,
BV_ROTATE_RIGHT_BY_INT,
UBV_TO_INT,
SBV_TO_INT,
FP_NEG,
FP_ABS,
FP_IS_NAN,
FP_IS_INF,
FP_IS_ZERO,
FP_IS_NEGATIVE,
FP_IS_SUBNORMAL,
FP_IS_NORMAL,
FP_AS_IEEEBV,
FP_FROM_IEEEBV,
RE_PLUS,
RE_STAR,
INT_TO_STR,
STR_FROM_CODE,
STR_TO_CODE,
STR_LENGTH,
STR_TO_INT,
STR_TO_RE,
RE_COMPLEMENT,
RE_OPTIONAL ->
1;
case SELECT,
MODULO,
BV_SDIV,
BV_UDIV,
BV_SREM,
BV_UREM,
BV_SMOD,
BV_ULT,
BV_SLT,
BV_ULE,
BV_SLE,
BV_UGT,
BV_SGT,
BV_UGE,
BV_SGE,
BV_SHL,
BV_LSHR,
BV_ASHR,
BV_ROTATE_LEFT,
BV_ROTATE_RIGHT,
BV_UCASTTO_FP,
BV_SCASTTO_FP,
FP_MAX,
FP_MIN,
FP_SQRT,
FP_REM,
FP_LT,
FP_LE,
FP_GE,
FP_GT,
FP_EQ,
FP_ROUND_TO_INTEGRAL,
FP_CASTTO_FP,
FP_CASTTO_SBV,
FP_CASTTO_UBV,
STR_CHAR_AT,
STR_CONTAINS,
STR_IN_RE,
STR_PREFIX,
STR_SUFFIX,
RE_RANGE,
SEP_PTO,
SEP_EMP,
SEP_STAR,
SEP_WAND ->
2;
case ITE,
STORE,
FP_SUB,
FP_ADD,
FP_DIV,
FP_MUL,
STR_INDEX_OF,
STR_REPLACE,
STR_REPLACE_ALL,
STR_SUBSTRING ->
3;
default ->
throw new IllegalArgumentException(String.format("Unsupported kind: \"%s\"", pKind));
};
}
public static int getNumIndices(FunctionDeclarationKind pKind) {
// TODO Add missing kinds
return switch (pKind) {
case BV_ROTATE_LEFT_BY_INT, BV_ROTATE_RIGHT_BY_INT, BV_SIGN_EXTENSION, BV_ZERO_EXTENSION -> 1;
case BV_EXTRACT -> 2;
default -> 0;
};
}
}