Source file solidity_common.ml
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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
type pos = (int * int) * (int * int)
let dummy_pos = (-1, -1), (-1, -1)
exception GenericError of string
let error fmt =
Format.kasprintf (fun s -> raise (GenericError s)) fmt
type relative = [`Relative]
type absolute = [`Absolute]
module ExtMap = struct
module type OrderedType = sig
type t
val compare : t -> t -> int
val to_string : t -> string
end
module type S = sig
include Map.S
val of_bindings : (key * 'a) list -> 'a t
val map_fold : ('a -> 'b -> 'a * 'c) -> 'a -> 'b t -> 'a * 'c t
val add_uniq_opt : key -> 'a -> 'a t -> 'a t option
val add_uniq : key -> 'a -> 'a t -> 'a t
end
module Make (Ord : OrderedType) : S with type key = Ord.t = struct
include Map.Make (Ord)
let of_bindings list =
List.fold_left (fun map (key, v) -> add key v map) empty list
let map_fold f a m =
fold (fun k b (a, m) ->
let a, c = f a b in
a, add k c m
) m (a, empty)
let add_uniq_opt key v map =
if mem key map then
None
else
Some (add key v map)
let add_uniq key v map =
match add_uniq_opt key v map with
| None -> error "ExtMap.add_uniq %S: not uniq" (Ord.to_string key)
| Some map -> map
end
end
module ZMap = ExtMap.Make (Z)
module ZSet = Set.Make (Z)
module IntMap = ExtMap.Make (struct
type t = int
let compare = Stdlib.compare
let to_string = string_of_int
end)
module StringMap = ExtMap.Make (struct
type t = string
let compare = String.compare
let to_string s = s
end)
module StringSet = Set.Make (String)
module Ident = struct
type t = string
let compare = String.compare
let equal = String.equal
let root i = Format.sprintf "@%d" i
let to_string id = id
let of_string id = id
let printf fmt id = Format.fprintf fmt "%s" id
let constructor = "#"
let receive = "@"
let fallback = "*"
end
module LongIdent = struct
type 'kind t = Ident.t list
let rec compare lid1 lid2 =
match lid1, lid2 with
| [], [] -> 0
| [], _ :: _ -> -1
| _ :: _, [] -> 1
| id1 :: lid1, id2 :: lid2 ->
let res = Ident.compare id1 id2 in
if res <> 0 then res
else compare lid1 lid2
let equal lid1 lid2 =
compare lid1 lid2 = 0
let empty = []
let root i = [Ident.root i]
let to_string lid = String.concat "." lid
let of_string_rel lid = String.split_on_char '.' lid
let of_string_abs lid = String.split_on_char '.' lid
let of_ident_rel id = [id]
let of_ident_abs id = [id]
let to_ident_list idl = idl
let of_ident_list_rel idl = idl
let of_ident_list_abs idl = idl
let append lid id = lid @ [id]
let prepend id lid = id :: lid
let is_empty lid =
match lid with
| [] -> true
| _ -> false
let first lid =
match lid with
| id :: _ -> id
| _ -> error "LongIdent.first: invalid long identifier"
let last lid =
match List.rev lid with
| id :: _ -> id
| _ -> error "LongIdent.last: invalid long identifier"
let split_first lid =
match lid with
| id :: lid -> id, lid
| _ -> error "LongIdent.split_first: invalid long identifier"
let split_last lid =
match List.rev lid with
| id :: rlid -> List.rev rlid, id
| _ -> error "LongIdent.split_last: invalid long identifier"
let printf fmt lid =
Format.fprintf fmt "%s" (to_string lid)
end
module IdentMap = ExtMap.Make (Ident)
module IdentAList = struct
type 'a t = (Ident.t * 'a) list
let length = List.length
let rev = List.rev
let mem = List.mem_assoc
let find_opt = List.assoc_opt
let map f list =
List.map (fun (key, v) -> (key, f v)) list
let fold_left f acc list =
List.fold_left (fun acc (key, v) -> f acc key v) acc list
let add_uniq key v list =
if mem key list then error "Identifier %s already declared" key;
(key, v) :: list
end
module IdentSet = Set.Make (Ident)
module AbsLongIdentMap = ExtMap.Make (struct
type t = absolute LongIdent.t
let compare = LongIdent.compare
let to_string = LongIdent.to_string
end)
module RelLongIdentMap = ExtMap.Make (struct
type t = relative LongIdent.t
let compare = LongIdent.compare
let to_string = LongIdent.to_string
end)
module AbsLongIdentSet = Set.Make (struct
type t = absolute LongIdent.t
let compare = LongIdent.compare
end)
module RelLongIdentSet = Set.Make (struct
type t = relative LongIdent.t
let compare = LongIdent.compare
end)
module ExtList = struct
include List
let is_empty = function
| [] -> true
| _ -> false
let same_lengths l1 l2 =
List.compare_lengths l1 l2 = 0
let for_all2 f l1 l2 =
same_lengths l1 l2 && List.for_all2 f l1 l2
let rec iter3 f l1 l2 l3 =
match (l1, l2, l3) with
| ([], [], []) -> ()
| (a1::l1, a2::l2, a3::l3) -> f a1 a2 a3; iter3 f l1 l2 l3
| (_, _, _) -> invalid_arg "ExtList.iter3"
let rec fold_left3 f a l1 l2 l3 =
match (l1, l2, l3) with
| ([], [], []) -> a
| (a1::l1, a2::l2, a3::l3) -> fold_left3 f (f a a1 a2 a3) l1 l2 l3
| (_, _, _) -> invalid_arg "ExtList.fold_left3"
let opt_fold_left f a l =
List.fold_left (fun a b_opt ->
match b_opt with
| None -> a
| Some b -> f a b
) a l
let map_fold f a l =
let a, l =
List.fold_left (fun (a, l) b ->
let a, c = f a b in
a, c :: l
) (a, []) l
in
a, List.rev l
let map_fold2 f a l1 l2 =
let a, l =
List.fold_left2 (fun (a, l) b c ->
let a, d = f a b c in
a, d :: l
) (a, []) l1 l2
in
a, List.rev l
let rec compare cmp l1 l2 =
match l1, l2 with
| [], [] -> 0
| hd1 :: tl1, hd2 :: tl2 ->
let hd_cmp = cmp hd1 hd2 in
if hd_cmp = 0
then compare cmp tl1 tl2
else hd_cmp
| [], _ -> -1
| _, [] -> 1
let find (type a) f f_err l : a =
let exception Found of a in
try
List.iter (fun e ->
match f e with
| Some res -> raise (Found res)
| None -> ()
) l;
f_err ()
with
Found res -> res
let pos f l =
let exception Found of int in
try
let _ =
List.fold_left (fun i e ->
if f e then raise (Found i)
else i + 1
) 0 l
in
None
with
Found res -> Some res
end
module ExtInt = struct
let rec fold f s e a =
if s <= e then
fold f (s+1) e (f s a)
else
a
end
module ExtZ = struct
let _2 = Z.of_int 2
let _5 = Z.of_int 5
let _7 = Z.of_int 7
let _8 = Z.of_int 8
let _10 = Z.of_int 10
let _60 = Z.of_int 60
let _255 = Z.of_int 255
let _3600 = Z.of_int 3600
let _24x3600 = Z.of_int (24 * 3600)
let _7x24x3600 = Z.of_int (7 * 24 * 3600)
let _365x24x3600 = Z.of_int (365 * 24 * 3600)
let _10_3 = Z.pow _10 3
let _10_6 = Z.pow _10 6
let _10_9 = Z.pow _10 9
let _10_12 = Z.pow _10 12
let _10_15 = Z.pow _10 15
let _10_18 = Z.pow _10 18
let is_neg z =
Z.sign z < 0
let is_pos z =
Z.sign z >= 0
let rec fold f s e a =
if s <= e then
fold f (Z.succ s) e (f s a)
else
a
let numbits_mod8 z =
let nb = Z.min Z.one (Z.of_int (Z.numbits z)) in
Z.to_int (Z.mul (Z.div (Z.add nb _7) _8) _8)
let num_zeros z =
let n = ref 0 in
let r = ref (snd (Z.ediv_rem z _10)) in
while not (Z.equal !r Z.zero) do
n := !n + 1;
r := snd (Z.ediv_rem z _10)
done;
!n
let of_binary b =
let res = ref Z.zero in
let l = String.length b in
for i = 0 to (l-1) do
let v = Z.of_int (Char.code (b.[i])) in
res := Z.add (Z.shift_left !res 8) v
done;
!res
let to_binary sz z =
let res = Bytes.create sz in
let z = ref z in
for i = sz-1 downto 0 do
Bytes.set_int8 res i (Z.to_int (Z.logand !z _255));
z := Z.shift_right !z 8;
done;
Bytes.to_string res
let print_hex fmt z =
let s = to_binary (numbits_mod8 z) z in
for i = 0 to (String.length s - 1) do
Format.fprintf fmt "%02x" (Char.code (s.[i]))
done
include Z
end
module ExtQ = struct
let is_int q =
Z.equal Z.one (Q.den q)
let is_neg q =
Q.sign q < 0
let is_pos q =
Q.sign q >= 0
let to_fixed_with_dec dec q =
let n = Q.num q in
let d = Q.den q in
let z, r = Z.ediv_rem (Z.mul n (Z.pow ExtZ._10 dec)) d in
if (Z.mul r ExtZ._2 < d) then z
else Z.succ z
let to_fixed q =
let z = to_fixed_with_dec 80 q in
if Z.equal Z.zero z then z, 0
else
let nz = ExtZ.num_zeros z in
Z.mul z (Z.pow ExtZ._10 nz), (80 - nz)
include Q
end
type annot = ..
type annot += ANone
type 'a node = {
contents : 'a;
mutable annot : annot;
pos : pos;
}
let annot contents annot pos =
{ contents; annot; pos }
let strip n =
n.contents
let get_annot n =
n.annot
let set_annot n annot =
match n.annot with
| ANone -> n.annot <- annot
| _ -> error "Node annotation already set at (%d,%d - %d,%d)"
(fst (fst n.pos)) (snd (fst n.pos))
(fst (snd n.pos)) (snd (snd n.pos))
let replace_annot n annot =
match n.annot with
| ANone ->
error "Node annotation not set at (%d,%d - %d,%d)"
(fst (fst n.pos)) (snd (fst n.pos))
(fst (snd n.pos)) (snd (snd n.pos))
| _ -> n.annot <- annot
let make_absolute_path base path =
FilePath.reduce ~no_symlink:true @@
if FilePath.is_relative path then
FilePath.make_absolute base path
else
path
let is_some = function
| Some _ -> true
| None -> false
let is_none = function
| None -> true
| Some _ -> false
type primitive_kind =
| PrimFunction
| PrimMemberFunction
| PrimVariable
| PrimMemberVariable
type primitive = {
prim_name : string;
prim_kind : primitive_kind;
}
let max_primitives = 64
let max_prim_id = ref 0
let prim_by_id = Array.make (max_primitives + 1) None
let prim_by_name = ref StringMap.empty
let prim_of_id id : primitive option =
prim_by_id.(id)
let prim_of_ident prim : (int * primitive) option =
StringMap.find_opt (Ident.to_string prim) !prim_by_name
let add_primitive id p =
if id < 0 then
error "Negative primitive id";
if id > max_primitives then
error "Primitive id above limit";
begin
match prim_by_id.(id) with
| None -> prim_by_id.(id) <- Some p;
| Some _ -> error "Primitive id already defined"
end;
begin
match prim_of_ident (Ident.of_string p.prim_name) with
| None -> prim_by_name := StringMap.add p.prim_name (id, p) !prim_by_name
| Some _ -> error "Primitive name already defined"
end;
if id > !max_prim_id then
max_prim_id := id