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
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
module Poly = struct
external ( < ) : 'a -> 'a -> bool = "%lessthan"
external ( <= ) : 'a -> 'a -> bool = "%lessequal"
external ( <> ) : 'a -> 'a -> bool = "%notequal"
external ( = ) : 'a -> 'a -> bool = "%equal"
external ( > ) : 'a -> 'a -> bool = "%greaterthan"
external ( >= ) : 'a -> 'a -> bool = "%greaterequal"
external compare : 'a -> 'a -> int = "%compare"
external equal : 'a -> 'a -> bool = "%equal"
end
module Int_replace_polymorphic_compare = struct
let ( < ) (x : int) y = x < y
let ( <= ) (x : int) y = x <= y
let ( <> ) (x : int) y = x <> y
let ( = ) (x : int) y = x = y
let ( > ) (x : int) y = x > y
let ( >= ) (x : int) y = x >= y
let compare (x : int) y = compare x y
let equal (x : int) y = x = y
let max (x : int) y = if x >= y then x else y
let min (x : int) y = if x <= y then x else y
end
let phys_equal = ( == )
let ( == ) = `use_phys_equal
let ( != ) = `use_phys_equal
include Int_replace_polymorphic_compare
let quiet = ref false
let werror = ref false
let warnings = ref 0
let warn fmt =
Format.ksprintf
(fun s ->
incr warnings;
if not !quiet then Format.eprintf "%s%!" s)
fmt
let fail = ref true
let failwith_ fmt =
Printf.ksprintf (fun s -> if !fail then failwith s else Format.eprintf "%s@." s) fmt
let raise_ exn =
if !fail then raise exn else Format.eprintf "%s@." (Printexc.to_string exn)
let int_num_bits =
let size = ref 0 in
let i = ref (-1) in
while !i <> 0 do
i := !i lsl 1;
incr size
done;
!size
module List = struct
include ListLabels
let rec find_map ~f = function
| [] -> None
| x :: l -> (
match f x with
| Some _ as result -> result
| None -> find_map ~f l)
let rec find_map_value ~f ~default = function
| [] -> default
| x :: l -> (
match f x with
| Some result -> result
| None -> find_map_value ~f ~default l)
let filter_map ~f l =
let l =
List.fold_left
(fun acc x ->
match f x with
| Some x -> x :: acc
| None -> acc)
[]
l
in
rev l
let rec rev_append_map ~f l acc =
match l with
| [] -> acc
| x :: xs -> rev_append_map ~f xs (f x :: acc)
let slow_map l ~f = rev (rev_map ~f l)
let max_non_tailcall =
match Sys.backend_type with
| Sys.Native | Sys.Bytecode -> 1_000
| Sys.Other _ -> 50
let rec count_map ~f l ctr =
match l with
| [] -> []
| [ x1 ] ->
let f1 = f x1 in
[ f1 ]
| [ x1; x2 ] ->
let f1 = f x1 in
let f2 = f x2 in
[ f1; f2 ]
| [ x1; x2; x3 ] ->
let f1 = f x1 in
let f2 = f x2 in
let f3 = f x3 in
[ f1; f2; f3 ]
| [ x1; x2; x3; x4 ] ->
let f1 = f x1 in
let f2 = f x2 in
let f3 = f x3 in
let f4 = f x4 in
[ f1; f2; f3; f4 ]
| x1 :: x2 :: x3 :: x4 :: x5 :: tl ->
let f1 = f x1 in
let f2 = f x2 in
let f3 = f x3 in
let f4 = f x4 in
let f5 = f x5 in
f1
:: f2
:: f3
:: f4
:: f5
:: (if ctr > max_non_tailcall then slow_map ~f tl else count_map ~f tl (ctr + 1))
let map l ~f = count_map ~f l 0
let rec take' acc n l =
if n = 0
then acc, l
else
match l with
| [] -> acc, []
| x :: xs -> take' (x :: acc) (pred n) xs
let take n l =
let x, xs = take' [] n l in
rev x, xs
let rec last = function
| [] -> None
| [ x ] -> Some x
| _ :: xs -> last xs
let sort_uniq ~compare l =
let l = List.sort compare l in
match l with
| ([] | [ _ ]) as l -> l
| x :: xs ->
let rec loop prev = function
| [] -> [ prev ]
| x :: rest when compare x prev = 0 -> loop prev rest
| x :: rest -> prev :: loop x rest
in
loop x xs
let is_empty = function
| [] -> true
| _ -> false
let partition_map t ~f =
let rec loop t fst snd =
match t with
| [] -> rev fst, rev snd
| x :: t -> (
match f x with
| `Fst y -> loop t (y :: fst) snd
| `Snd y -> loop t fst (y :: snd))
in
loop t [] []
let tail_append l1 l2 = rev_append (rev l1) l2
let rec count_append l1 l2 count =
match l2 with
| [] -> l1
| _ -> (
match l1 with
| [] -> l2
| [ x1 ] -> x1 :: l2
| [ x1; x2 ] -> x1 :: x2 :: l2
| [ x1; x2; x3 ] -> x1 :: x2 :: x3 :: l2
| [ x1; x2; x3; x4 ] -> x1 :: x2 :: x3 :: x4 :: l2
| x1 :: x2 :: x3 :: x4 :: x5 :: tl ->
x1
:: x2
:: x3
:: x4
:: x5
::
(if count > max_non_tailcall
then tail_append tl l2
else count_append tl l2 (count + 1)))
let append l1 l2 = count_append l1 l2 0
let group l ~f =
let rec loop (l : 'a list) (this_group : 'a list) (acc : 'a list list) : 'a list list
=
match l with
| [] -> List.rev (List.rev this_group :: acc)
| x :: xs ->
let pred = List.hd this_group in
if f x pred
then loop xs (x :: this_group) acc
else loop xs [ x ] (List.rev this_group :: acc)
in
match l with
| [] -> []
| x :: xs -> loop xs [ x ] []
let concat_map ~f l =
let rec aux f acc = function
| [] -> rev acc
| x :: l ->
let xs = f x in
aux f (rev_append xs acc) l
in
aux f [] l
end
let ( @ ) = List.append
module Nativeint = struct
include Nativeint
external equal : nativeint -> nativeint -> bool = "%equal"
end
module Int32 = struct
include Int32
external ( < ) : int32 -> int32 -> bool = "%lessthan"
external ( <= ) : int32 -> int32 -> bool = "%lessequal"
external ( <> ) : int32 -> int32 -> bool = "%notequal"
external ( = ) : int32 -> int32 -> bool = "%equal"
external ( > ) : int32 -> int32 -> bool = "%greaterthan"
external ( >= ) : int32 -> int32 -> bool = "%greaterequal"
external compare : int32 -> int32 -> int = "%compare"
external equal : int32 -> int32 -> bool = "%equal"
let warn_overflow ~to_dec ~to_hex i i32 =
warn
"Warning: integer overflow: integer 0x%s (%s) truncated to 0x%lx (%ld); the \
generated code might be incorrect.@."
(to_hex i)
(to_dec i)
i32
i32
let convert_warning_on_overflow ~to_int32 ~of_int32 ~equal ~to_dec ~to_hex x =
let i32 = to_int32 x in
let x' = of_int32 i32 in
if not (equal x' x) then warn_overflow ~to_dec ~to_hex x i32;
i32
let of_int_warning_on_overflow i =
convert_warning_on_overflow
~to_int32:Int32.of_int
~of_int32:Int32.to_int
~equal:Int_replace_polymorphic_compare.( = )
~to_dec:(Printf.sprintf "%d")
~to_hex:(Printf.sprintf "%x")
i
let of_nativeint_warning_on_overflow n =
convert_warning_on_overflow
~to_int32:Nativeint.to_int32
~of_int32:Nativeint.of_int32
~equal:Nativeint.equal
~to_dec:(Printf.sprintf "%nd")
~to_hex:(Printf.sprintf "%nx")
n
end
module Option = struct
let map ~f x =
match x with
| None -> None
| Some v -> Some (f v)
let bind ~f x =
match x with
| None -> None
| Some v -> f v
let iter ~f x =
match x with
| None -> ()
| Some v -> f v
let filter ~f x =
match x with
| None -> None
| Some v -> if f v then Some v else None
let compare compare_elt a b =
match a, b with
| None, None -> 0
| None, Some _ -> -1
| Some _, None -> 1
| Some a, Some b -> compare_elt a b
let equal equal_elt a b =
match a, b with
| None, None -> true
| Some a, Some b -> equal_elt a b
| Some _, None | None, Some _ -> false
let is_none = function
| None -> true
| Some _ -> false
let is_some = function
| None -> false
| Some _ -> true
let value ~default = function
| None -> default
| Some s -> s
end
module Int64 = struct
include Int64
let equal (a : int64) (b : int64) = Poly.( = ) a b
end
module Float = struct
type t = float
let equal (a : float) (b : float) =
Int64.equal (Int64.bits_of_float a) (Int64.bits_of_float b)
external classify_float : float -> fpclass = "caml_classify_float"
external ( < ) : t -> t -> bool = "%lessthan"
external ( <= ) : t -> t -> bool = "%lessequal"
external ( <> ) : t -> t -> bool = "%notequal"
external ( = ) : t -> t -> bool = "%equal"
external ( > ) : t -> t -> bool = "%greaterthan"
external ( >= ) : t -> t -> bool = "%greaterequal"
end
module Bool = struct
external ( <> ) : bool -> bool -> bool = "%notequal"
external ( = ) : bool -> bool -> bool = "%equal"
external ( > ) : bool -> bool -> bool = "%greaterthan"
external equal : bool -> bool -> bool = "%equal"
end
module Char = struct
include Char
external ( < ) : char -> char -> bool = "%lessthan"
external ( <= ) : char -> char -> bool = "%lessequal"
external ( <> ) : char -> char -> bool = "%notequal"
external ( = ) : char -> char -> bool = "%equal"
external ( > ) : char -> char -> bool = "%greaterthan"
external ( >= ) : char -> char -> bool = "%greaterequal"
external compare : char -> char -> int = "%compare"
external equal : char -> char -> bool = "%equal"
let is_alpha = function
| 'a' .. 'z' | 'A' .. 'Z' -> true
| _ -> false
let is_num = function
| '0' .. '9' -> true
| _ -> false
let lowercase_ascii c =
match c with
| 'A' .. 'Z' as c -> Char.unsafe_chr (Char.code c + 32)
| _ -> c
let uppercase_ascii c =
match c with
| 'a' .. 'z' as c -> Char.unsafe_chr (Char.code c - 32)
| _ -> c
end
module Bytes = struct
include BytesLabels
let sub_string b ~pos:ofs ~len = unsafe_to_string (Bytes.sub b ofs len)
end
module String = struct
include StringLabels
let equal (a : string) (b : string) = Poly.(a = b)
let hash (a : string) = Hashtbl.hash a
let is_empty = function
| "" -> true
| _ -> false
let is_prefix ~prefix s =
let len_a = length prefix in
let len_s = length s in
if len_a > len_s
then false
else
let max_idx_a = len_a - 1 in
let rec loop i =
if i > max_idx_a
then true
else if not (Char.equal (unsafe_get prefix i) (unsafe_get s i))
then false
else loop (i + 1)
in
loop 0
let drop_prefix ~prefix s =
let plen = String.length prefix in
if plen > String.length s
then None
else
try
for i = 0 to String.length prefix - 1 do
if not (Char.equal s.[i] prefix.[i]) then raise Exit
done;
Some (String.sub s plen (String.length s - plen))
with Exit -> None
let for_all =
let rec loop s ~f ~last i =
if i > last
then true
else if f (String.unsafe_get s i)
then loop s ~f ~last (i + 1)
else false
in
fun s ~f -> loop s ~f ~last:(String.length s - 1) 0
let is_ascii s =
let res = ref true in
for i = 0 to String.length s - 1 do
match s.[i] with
| '\000' .. '\127' -> ()
| '\128' .. '\255' -> res := false
done;
!res
let has_backslash s =
let res = ref false in
for i = 0 to String.length s - 1 do
if Char.equal s.[i] '\\' then res := true
done;
!res
let split_char ~sep p = String.split_on_char sep p
let split ~sep s =
let sep_len = String.length sep in
if sep_len = 1
then split_char ~sep:sep.[0] s
else
let sep_max = sep_len - 1 in
if sep_max < 0
then invalid_arg "String.split: empty separator"
else
let s_max = String.length s - 1 in
if s_max < 0
then [ "" ]
else
let acc = ref [] in
let sub_start = ref 0 in
let k = ref 0 in
let i = ref 0 in
while !i + sep_max <= s_max do
if not (Char.equal (String.unsafe_get s !i) (String.unsafe_get sep 0))
then incr i
else (
k := 1;
while
!k <= sep_max
&& Char.equal (String.unsafe_get s (!i + !k)) (String.unsafe_get sep !k)
do
incr k
done;
if !k <= sep_max
then incr i
else
let new_sub_start = !i + sep_max + 1 in
let sub_end = !i - 1 in
let sub_len = sub_end - !sub_start + 1 in
acc := String.sub s !sub_start sub_len :: !acc;
sub_start := new_sub_start;
i := new_sub_start)
done;
List.rev (String.sub s !sub_start (s_max - !sub_start + 1) :: !acc)
let apply1 f (s : string) : string =
let b = Bytes.of_string s in
if Bytes.length b = 0
then s
else (
Bytes.unsafe_set b 0 (f (Bytes.unsafe_get b 0));
Bytes.to_string b)
let lsplit2 line ~on:delim =
try
let pos = index line delim in
Some (sub line ~pos:0 ~len:pos, sub line ~pos:(pos + 1) ~len:(length line - pos - 1))
with Not_found -> None
let capitalize_ascii s = apply1 Char.uppercase_ascii s
let uncapitalize_ascii s = apply1 Char.lowercase_ascii s
end
module Int = struct
type t = int
let compare (x : int) y = compare x y
let equal (x : t) y = x = y
let hash (x : t) = Hashtbl.hash x
end
module IntSet = Set.Make (Int)
module IntMap = Map.Make (Int)
module StringSet = Set.Make (String)
module StringMap = Map.Make (String)
module BitSet : sig
type t
val create : unit -> t
val mem : t -> int -> bool
val set : t -> int -> unit
val unset : t -> int -> unit
val copy : t -> t
val iter : f:(int -> unit) -> t -> unit
val size : t -> int
val next_free : t -> int -> int
val next_mem : t -> int -> int
end = struct
type t = { mutable arr : int array }
let create () = { arr = Array.make 1 0 }
let size t = Array.length t.arr * int_num_bits
let mem t i =
let arr = t.arr in
let idx = i / int_num_bits in
let off = i mod int_num_bits in
idx < Array.length arr && Array.unsafe_get arr idx land (1 lsl off) <> 0
let set t i =
let idx = i / int_num_bits in
let off = i mod int_num_bits in
let size = ref (Array.length t.arr) in
while idx >= !size do
size := !size * 2
done;
if !size <> Array.length t.arr
then (
let a = Array.make !size 0 in
Array.blit t.arr 0 a 0 (Array.length t.arr);
t.arr <- a);
Array.unsafe_set t.arr idx (Array.unsafe_get t.arr idx lor (1 lsl off))
let unset t i =
let idx = i / int_num_bits in
let off = i mod int_num_bits in
let size = Array.length t.arr in
if idx >= size
then ()
else if Array.unsafe_get t.arr idx land (1 lsl off) <> 0
then Array.unsafe_set t.arr idx (Array.unsafe_get t.arr idx lxor (1 lsl off))
let next_free t i =
let x = ref i in
while mem t !x do
incr x
done;
!x
let next_mem t i =
let x = ref i in
while not (mem t !x) do
incr x
done;
!x
let copy t = { arr = Array.copy t.arr }
let iter ~f t =
for i = 0 to size t do
if mem t i then f i
done
end
module Array = struct
include ArrayLabels
let fold_right_i a ~f ~init:x =
let r = ref x in
for i = Array.length a - 1 downto 0 do
r := f i (Array.unsafe_get a i) !r
done;
!r
let equal eq a b =
let len_a = Array.length a in
if len_a <> Array.length b
then false
else
let i = ref 0 in
while !i < len_a && eq a.(!i) b.(!i) do
incr i
done;
!i = len_a
end
module Filename = struct
include Filename
let temp_file_name =
let prng = lazy (Random.State.make_self_init ()) in
fun ~temp_dir prefix suffix ->
let rnd = Random.State.bits (Lazy.force prng) land 0xFFFFFF in
Filename.concat temp_dir (Printf.sprintf "%s%06x%s" prefix rnd suffix)
let gen_file file f =
let f_tmp =
temp_file_name ~temp_dir:(Filename.dirname file) (Filename.basename file) ".tmp"
in
try
let ch = open_out_bin f_tmp in
(try f ch
with e ->
close_out ch;
raise e);
close_out ch;
(try Sys.remove file with Sys_error _ -> ());
Sys.rename f_tmp file
with exc ->
Sys.remove f_tmp;
raise exc
end