forked from rems-project/sail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsail2_string.lem
465 lines (411 loc) · 10.3 KB
/
sail2_string.lem
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
open import Pervasives
open import List
open import List_extra
open import String
open import String_extra
open import Sail2_operators
open import Sail2_values
val string_sub : string -> ii -> ii -> string
let string_sub str start len =
toString (take (natFromInteger len) (drop (natFromInteger start) (toCharList str)))
val string_startswith : string -> string -> bool
let string_startswith str1 str2 =
let prefix = string_sub str1 0 (integerFromNat (stringLength str2)) in
(prefix = str2)
val string_drop : string -> ii -> string
let string_drop str n =
toString (drop (natFromInteger n) (toCharList str))
val string_take : string -> ii -> string
let string_take str n =
toString (take (natFromInteger n) (toCharList str))
val string_length : string -> ii
let string_length s = integerFromNat (stringLength s)
let string_append = stringAppend
(***********************************************
* Begin stuff that should be in Lem Num_extra *
***********************************************)
val maybeIntegerOfString : string -> maybe integer
let maybeIntegerOfString _ = Nothing (* TODO FIXME *)
declare ocaml target_rep function maybeIntegerOfString = `(fun s -> match int_of_string s with i -> Some (Nat_big_num.of_int i) | exception Failure _ -> None )`
(***********************************************
* end stuff that should be in Lem Num_extra *
***********************************************)
let rec maybe_int_of_prefix s =
match s with
| "" -> Nothing
| str ->
let len = string_length str in
match maybeIntegerOfString str with
| Just n -> Just (n, len)
| Nothing -> maybe_int_of_prefix (string_sub str 0 (len - 1))
end
end
let maybe_int_of_string = maybeIntegerOfString
val n_leading_spaces : string -> ii
let rec n_leading_spaces s =
let len = string_length s in
if len = 0 then 0 else
if len = 1 then
match s with
| " " -> 1
| _ -> 0
end
else
(* Isabelle generation for pattern matching on characters
is currently broken, so use an if-expression *)
if nth s 0 = #' '
then 1 + (n_leading_spaces (string_sub s 1 (len - 1)))
else 0
(* end *)
let opt_spc_matches_prefix s =
Just ((), n_leading_spaces s)
let spc_matches_prefix s =
let n = n_leading_spaces s in
(* match n with *)
(* | 0 -> Nothing *)
if n = 0 then Nothing else
(* | n -> *) Just ((), n)
(* end *)
(* Python:
f = """let hex_bits_{0}_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** {0}) then
Just ((of_int {0} n, len))
else
Nothing
end
"""
for i in list(range(1, 34)) + [48, 64]:
print(f.format(i))
*)
let hex_bits_1_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 1) then
Just ((of_int 1 n, len))
else
Nothing
end
let hex_bits_2_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 2) then
Just ((of_int 2 n, len))
else
Nothing
end
let hex_bits_3_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 3) then
Just ((of_int 3 n, len))
else
Nothing
end
let hex_bits_4_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 4) then
Just ((of_int 4 n, len))
else
Nothing
end
let hex_bits_5_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 5) then
Just ((of_int 5 n, len))
else
Nothing
end
let hex_bits_6_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 6) then
Just ((of_int 6 n, len))
else
Nothing
end
let hex_bits_7_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 7) then
Just ((of_int 7 n, len))
else
Nothing
end
let hex_bits_8_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 8) then
Just ((of_int 8 n, len))
else
Nothing
end
let hex_bits_9_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 9) then
Just ((of_int 9 n, len))
else
Nothing
end
let hex_bits_10_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 10) then
Just ((of_int 10 n, len))
else
Nothing
end
let hex_bits_11_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 11) then
Just ((of_int 11 n, len))
else
Nothing
end
let hex_bits_12_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 12) then
Just ((of_int 12 n, len))
else
Nothing
end
let hex_bits_13_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 13) then
Just ((of_int 13 n, len))
else
Nothing
end
let hex_bits_14_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 14) then
Just ((of_int 14 n, len))
else
Nothing
end
let hex_bits_15_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 15) then
Just ((of_int 15 n, len))
else
Nothing
end
let hex_bits_16_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 16) then
Just ((of_int 16 n, len))
else
Nothing
end
let hex_bits_17_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 17) then
Just ((of_int 17 n, len))
else
Nothing
end
let hex_bits_18_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 18) then
Just ((of_int 18 n, len))
else
Nothing
end
let hex_bits_19_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 19) then
Just ((of_int 19 n, len))
else
Nothing
end
let hex_bits_20_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 20) then
Just ((of_int 20 n, len))
else
Nothing
end
let hex_bits_21_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 21) then
Just ((of_int 21 n, len))
else
Nothing
end
let hex_bits_22_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 22) then
Just ((of_int 22 n, len))
else
Nothing
end
let hex_bits_23_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 23) then
Just ((of_int 23 n, len))
else
Nothing
end
let hex_bits_24_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 24) then
Just ((of_int 24 n, len))
else
Nothing
end
let hex_bits_25_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 25) then
Just ((of_int 25 n, len))
else
Nothing
end
let hex_bits_26_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 26) then
Just ((of_int 26 n, len))
else
Nothing
end
let hex_bits_27_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 27) then
Just ((of_int 27 n, len))
else
Nothing
end
let hex_bits_28_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 28) then
Just ((of_int 28 n, len))
else
Nothing
end
let hex_bits_29_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 29) then
Just ((of_int 29 n, len))
else
Nothing
end
let hex_bits_30_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 30) then
Just ((of_int 30 n, len))
else
Nothing
end
let hex_bits_31_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 31) then
Just ((of_int 31 n, len))
else
Nothing
end
let hex_bits_32_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 32) then
Just ((of_int 32 n, len))
else
Nothing
end
let hex_bits_33_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 33) then
Just ((of_int 33 n, len))
else
Nothing
end
let hex_bits_48_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 48) then
Just ((of_int 48 n, len))
else
Nothing
end
let hex_bits_64_matches_prefix s =
match maybe_int_of_prefix s with
| Nothing -> Nothing
| Just (n, len) ->
if 0 <= n && n < (2 ** 64) then
Just ((of_int 64 n, len))
else
Nothing
end
(* For the hex_bits.sail library *)
val parse_hex_bits : forall 'a. Bitvector 'a => integer -> string -> 'a
let parse_hex_bits sz s =
match maybe_int_of_string s with
| Nothing -> of_int sz 0
| Just n -> of_int sz n
end
val valid_hex_bits : integer -> string -> bool
let valid_hex_bits sz s =
if sz <= 0 then false else
match maybe_int_of_string s with
| Nothing -> false
| Just n -> 0 <= n && n < (2 ** (natFromInteger sz))
end