Source file tools.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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
exception No_value
exception Unsupported_yet
exception Anomaly
let id = fun x -> x
let (|@) f g = fun x -> f (g x)
let proj3_1 (x, _, _) = x
let proj3_2 (_, x, _) = x
let proj3_3 (_, _, x) = x
let proj4_1 (x, _, _, _) = x
let proj4_2 (_, x, _, _) = x
let proj4_3 (_, _, x, _) = x
let proj4_4 (_, _, _, x) = x
let fst_map f (x, y) = (f x, y)
let snd_map f (x, y) = (x, f y)
let pair_map f g (x, y) = (f x, g y)
let pair_sigle_map f (x, y) = pair_map f f (x, y)
let swap = fun (x, y) -> (y, x)
let pair x y = (x, y)
let (%>) f g = fun x -> g (f x)
let foldi f accu n =
let rec aux f accu n =
if n <= 0
then accu
else aux f (f accu) (n - 1)
in
aux f accu n
module Bool : sig
val compare : bool -> bool -> int
end = struct
let compare a b =
match a, b with
| false, false -> 0
| false, true -> -1
| true, false -> 1
| true, true -> 0
end
module String : sig
include module type of String
val starts : pattern:string -> string -> bool
val ends : pattern:string -> string -> bool
val up_firstcase_lower : string -> string
val up_firstcase_only : string -> string
end = struct
include String
let starts ~pattern s =
let module E = struct exception No end in
let plen = String.length pattern in
let slen = String.length s in
try
if plen > slen then
raise E.No;
for i = 0 to plen-1 do
if pattern.[i] <> s.[i] then
raise E.No
done;
true
with E.No -> false
let ends ~pattern s =
let module E = struct exception No end in
let plen = String.length pattern in
let slen = String.length s in
try
if plen > slen then
raise E.No;
for i = 0 to plen-1 do
if pattern.[i] <> s.[slen-1-i] then
raise E.No
done;
true
with E.No -> false
let up_firstcase_lower str =
match str with
| "" -> ""
| _ when String.length str = 1 -> Stdlib.String.uppercase_ascii str
| _ -> (Stdlib.String.uppercase_ascii (String.sub str 0 1)) ^ String.sub str 1 (String.length str - 1)
let up_firstcase_only str =
match str with
| "" -> ""
| _ when String.length str = 1 -> Stdlib.String.uppercase_ascii str
| _ -> (Stdlib.String.uppercase_ascii (String.sub str 0 1)) ^ String.sub str 1 (String.length str - 1)
end
module Option : sig
val is_none : 'a option -> bool
val is_some : 'a option -> bool
val none : 'a option
val some : 'a -> 'a option
val get : 'a option -> 'a
val get_all : ('a option) list -> 'a list option
val get_exn : exn -> 'a option -> 'a
val get_dfl : 'a -> 'a option -> 'a
val get_fdfl : (unit -> 'a) -> 'a option -> 'a
val get_list : ('a option) list -> 'a list
val iter : ('a -> unit) -> 'a option -> unit
val map : ('a -> 'b) -> 'a option -> 'b option
val map2 : ('a -> 'b -> 'c) -> 'a option -> 'b option -> 'c option
val bind : ('a -> 'b option) -> 'a option -> 'b option
val fold : ('a -> 'b -> 'a) -> 'a -> 'b option -> 'a
val foldmap : ('a -> 'b -> 'a * 'c) -> 'a -> 'b option -> 'a * 'c option
val foldbind : ('a -> 'b -> 'a * 'c option) -> 'a -> 'b option -> 'a * 'c option
val map_dfl : ('a -> 'b) -> 'b -> 'a option -> 'b
val get_as_list : 'a option -> 'a list
val flatten : 'a option option -> 'a option
val cmp : ('a -> 'a -> bool) -> 'a option -> 'a option -> bool
val fst : ('a * 'b) option -> 'a option
val snd : ('a * 'b) option -> 'b option
end = struct
let is_none = function None -> true | Some _ -> false
let is_some = function None -> false | Some _ -> true
let none =
None
let some =
fun x -> Some x
let get =
function None -> raise No_value | Some e -> e
let get_dfl dfl =
function None -> dfl | Some e -> e
let get_fdfl dfl =
function None -> dfl () | Some e -> e
let get_list l =
List.fold_right (fun x accu ->
match x with
| Some v -> v::accu
| None -> accu) l []
let get_all xs =
let module E = struct exception Aaarg end in
try
Some (List.map (function Some x -> x | None -> raise E.Aaarg) xs)
with E.Aaarg -> None
let get_exn e = function Some v -> v | None -> raise e
let iter f = function None -> () | Some x -> f x
let map f = function None -> None | Some x -> Some (f x)
let map2 f x y =
match x, y with
| Some x, Some y -> Some (f x y)
| _ , _ -> None
let bind f = function None -> None | Some x -> f x
let fold f state = function None -> state | Some v -> f state v
let foldmap f state = function
| None -> state, None
| Some v -> let state, aout = f state v in state, Some aout
let foldbind f state = function
| None -> state, None
| Some v -> let state, aout = f state v in state, aout
let map_dfl f n = function None -> n | Some x -> f x
let get_as_list = function None -> [] | Some x -> [x]
let flatten = function Some (Some v) -> Some v | _ -> None
let cmp c i1 i2 =
match i1, i2 with
| Some v1, Some v2 -> c v1 v2
| None, None -> true
| _ -> false
let fst = fun x -> map fst x
let snd = fun x -> map snd x
end
let (|?>) x f = Option.map f x
let (|? ) x f = ignore (Option.map f x)
module List : sig
include module type of List
val is_empty : 'a list -> bool
val is_not_empty : 'a list -> bool
val ohead : 'a list -> 'a option
val chop : 'a list -> 'a list
val as_seq1 : 'a list -> 'a option
val as_seq2 : 'a list -> ('a * 'a) option
val make : (int -> 'a) -> int -> 'a list
val int_fold : ('a -> int -> 'a) -> 'a -> int -> 'a
val pmap : ('a -> 'b option) -> 'a list -> 'b list
val mappdt : ('a -> 'b -> 'c) -> 'a list -> 'b list -> 'c list
val find_dup : ('a -> 'b) -> 'a list -> ('a * 'a) option
val undup : ('a -> 'b) -> 'a list -> 'a list
val xfilter : ('a -> [`Left of 'b | `Right of 'c]) -> 'a list -> 'b list * 'c list
val fold_lefti : (int -> 'a -> 'b -> 'a) -> 'a -> 'b list -> 'a
val fold_left_map : ('a -> 'b -> 'a * 'c) -> 'a -> 'b list -> 'a * 'c list
val fold_left_mapi : (int -> 'a -> 'b -> 'a * 'c) -> 'a -> 'b list -> 'a * 'c list
val assoc_all : 'a -> ('a * 'b) list -> 'b list
val index_of : ('a -> bool) -> 'a list -> int
val dedup : 'a list -> 'a list
val dedupcmp : ('a -> 'a -> bool) -> 'a list -> 'a list
val last : 'a list -> 'a
val for_all2 : ('a -> 'b -> bool) -> 'a list -> 'b list -> bool
val count : ('a -> bool) -> 'a list -> int
val split3 : ('a * 'b * 'c) list -> 'a list * 'b list * 'c list
val sub : int -> int -> 'a list -> 'a list
val cut : int -> 'a list -> ('a list * 'a list)
val addput : 'a -> 'b -> ('a * 'b) list -> ('a * 'b) list
val find_map : ('a -> 'b option) -> 'a list -> 'b option
module Exn : sig
val assoc : 'a -> ('a * 'b) list -> 'b option
val find : ('a -> bool) -> 'a list -> 'a option
val assoc_map : ('a -> 'b) -> 'b -> ('a * 'c) list -> 'c option
end
end = struct
include List
let is_empty = function [] -> true | _ -> false
let is_not_empty x = not (is_empty x)
let as_seq1 = function [x] -> Some x | _ -> None
let as_seq2 = function [x; y] -> Some (x, y) | _ -> None
let ohead = function [] -> None | x :: _ -> Some x
let chop = function [] -> [] | _ :: xs -> xs
let make f =
let rec doit acc n =
if n <= 0 then List.rev acc else doit (f n :: acc) (n-1)
in fun n -> doit [] n
let int_fold f acc n =
let rec int_fold_rec acc i =
if (i = n)
then acc
else int_fold_rec (f acc i) (i + 1) in
int_fold_rec acc 0
let pmap f =
let rec doit xs =
match xs with
| [] ->
[]
| x :: xs -> begin
match f x with
| None -> doit xs
| Some y -> y :: doit xs
end
in fun xs -> doit xs
let mappdt f xs ys =
List.flatten (List.map (fun x -> List.map (fun y -> f x y) ys) xs)
let find_dup (type a b) (key : a -> b) (xs : a list) : (a * a) option =
let module M = Map.Make(struct
type t = b
let compare (x : b) (y : b) = (Stdlib.compare x y)
end) in
let module E = struct exception Found of a * a end in
try
let _ : a M.t =
let doit map v =
let udp =
function None -> Some v | Some v' -> raise (E.Found (v', v))
in M.update (key v) udp map
in List.fold_left doit M.empty xs
in
None
with E.Found (x, y) -> Some (x, y)
let undup (type a b) (key : a -> b) (xs : a list) =
let module M = Set.Make(struct
type t = b
let compare = (Stdlib.compare : t -> t -> int)
end) in
List.rev (snd (List.fold_left (fun (seen, acc) x ->
let k = key x in
(M.add k seen, (if M.mem k seen then acc else x :: acc))
) (M.empty, []) xs))
let xfilter f =
let rec doit (accl, accr) = function
| [] ->
(List.rev accl, List.rev accr)
| x :: xs -> begin
match f x with
| `Left y -> doit (y :: accl, accr) xs
| `Right y -> doit (accl, y :: accr) xs
end
in fun xs -> doit ([], []) xs
let fold_lefti f state xs =
fst (List.fold_left (fun (state, i) x -> (f i state x, i+1)) (state, 0) xs)
let fold_left_mapi f state xs =
let state, xs =
fold_lefti (fun i (state, acc) x ->
let state, x = f i state x in (state, x :: acc)
) (state, []) xs in
(state, List.rev xs)
let fold_left_map f state xs =
fold_left_mapi (fun _ -> f) state xs
let assoc_all (v : 'a) (xs : ('a * 'b) list) =
pmap (fun (x, y) -> if x = v then Some y else None) xs
let index_of (pred : 'a -> bool) (l : 'a list) : int =
let rec aux idx = function
| [] -> -1
| q::t -> if (pred q) then idx else aux (idx + 1) t
in
aux 0 l
let rec dedup = function
| e::tl ->
if List.mem e tl then
dedup tl
else e::(dedup tl)
| [] -> []
let rec dedupcmp cmp = function
| e::tl ->
if List.exists (cmp e) tl then
dedupcmp cmp tl
else e::(dedupcmp cmp tl)
| [] -> []
let rec last = function
| [] -> raise Not_found
| [e] -> e
| _::t -> last t
let for_all2 p l1 l2 =
let rec aux p l1 l2 =
match (l1, l2) with
([], []) -> true
| (a1::l1, a2::l2) -> p a1 a2 && aux p l1 l2
| (_, _) -> invalid_arg "List.for_all2"
in
if List.length l1 <> List.length l2
then false
else aux p l1 l2
let count (f : 'a -> bool) =
let rec doit acc = function
| [] -> acc
| x :: xs -> doit (acc + if f x then 1 else 0) xs
in fun xs -> doit 0 xs
let rec split3 = function
[] -> ([], [], [])
| (x,y,z)::l ->
let (rx, ry, rz) = split3 l in (x::rx, y::ry, z::rz)
let rec sub s e = function
| _ when e = 0 -> []
| [] -> invalid_arg "List.sub"
| _::t when s > 0 -> sub (s - 1) (e - 1) t
| h::t -> h::(sub (s - 1) (e - 1) t)
let cut n l =
let rec aux idx accu l =
match l with
| _ when idx = 0 -> accu, l
| i::t -> aux (idx - 1) (accu @ [i]) t
| _ -> invalid_arg "List.cut"
in
aux n [] l
let rec addput k v = function
[] -> [k, v]
| (a, b)::l -> if Stdlib.compare a k = 0 then (k, v)::l else (a, b)::(addput k v l)
let rec find_map f = function
| [] -> None
| x :: l ->
begin match f x with
| Some _ as result -> result
| None -> find_map f l
end
module Exn = struct
let assoc x xs =
try Some (List.assoc x xs) with Not_found -> None
let find f xs =
try Some (List.find f xs) with Not_found -> None
let assoc_map f x xs =
Option.map snd (find (fun (x', _) -> x = f x') xs)
end
end
let make_full_tree f l =
let split l =
let log2 n =
let rec a n i =
if n > 1
then a (n / 2) (i + 1)
else i
in
a n 0
in
let exp2 n =
let rec a n =
if n = 0
then 1
else 2 * a (n - 1)
in
a n
in
let le = List.length l in
if le = 0
then assert false
else begin
let lo = log2 le in
let n = exp2 (if (le mod 2 = 0) then lo - 1 else lo) in
List.cut n l
end
in
let rec aux l =
match l with
| [x], [] -> x
| [a], [b] -> f a b
| a, [b] -> f (aux (split a)) b
| a, b -> f (aux (split a)) (aux (split b))
in
aux (split l)
module Map : sig
module type OrderedType = Map.OrderedType
module Make(S : OrderedType) : sig
include module type of Map.Make(S)
val of_list : ?last:bool -> (key * 'a) list -> 'a t
val collect : ('a -> key) -> ('a * 'b list) list -> ('a * 'b list) list
val mem : key -> 'a t -> bool
val change : key -> ('a option -> 'a) -> 'a t -> 'a t
end
end = struct
module type OrderedType = Map.OrderedType
module Make(S : OrderedType) = struct
include Map.Make(S)
let of_list ?(last = false) xs =
let upd v old =
if last || Option.is_none old then Some v else old in
List.fold_left (fun map (k, v) -> update k (upd v) map) empty xs
let collect (type a b) (key : a -> key) (xs : (a * b list) list) =
let map =
List.fold_left (fun map (k, v) ->
update (key k) (fun v'-> Some (Option.get_dfl [] v' @ v)) map
) empty xs in
List.map
(fun k -> (k, find (key k) map))
(List.undup key (List.map fst xs))
let mem (k : key) (m : 'a t) : bool =
try ignore (find k m : 'a); true
with Not_found -> false
let change (k : key) (f : 'a option -> 'a) (m : 'a t) : 'a t =
let v = try Some (find k m) with Not_found -> None in
add k (f v) m
end
end
module Set = Set
module Mint = Map.Make(struct
type t = int
let compare = (Stdlib.compare : t -> t -> int)
end)
module Sstr = Set.Make(String)
module Mstr = Map.Make(String)
let norm_hex_string (s : string) =
if String.starts ~pattern:"0x" s then s else "0x" ^ s
let location_to_position (l : Location.t) : Position.t =
let fname = l.loc_fname in
let start : int * int * int =
l.loc_start |> fst, l.loc_bchar, l.loc_start |> snd
in
let end_ : int * int * int =
l.loc_end |> fst, l.loc_echar, l.loc_end |> snd
in
Position.mk_position fname start end_
let get_content path =
let read_whole_file filename =
let ch = open_in filename in
let s = really_input_string ch (in_channel_length ch) in
close_in ch;
s
in
read_whole_file path
let string_to_big_int str =
let res = ref Big_int.zero_big_int in
String.iter (fun x -> res := !res |> Big_int.mult_int_big_int 256 |> Big_int.add_int_big_int (Char.code x)) str;
!res