@@ -126,8 +126,8 @@ let caml_int_of_string s =
126
126
let caml_int64_of_string s =
127
127
let module String = Bs_string in
128
128
let i, sign, hbase = parse_sign_and_base s in
129
- let base = Int64 . of_int (int_of_string_base hbase) in
130
- let sign = Int64 . of_nativeint sign in
129
+ let base = Caml_int64_extern . of_int (int_of_string_base hbase) in
130
+ let sign = Caml_int64_extern . of_nativeint sign in
131
131
let threshold =
132
132
match hbase with
133
133
| Hex -> (* 2 ^ 64 - 1 / 16*)
@@ -141,28 +141,28 @@ let caml_int64_of_string s =
141
141
in
142
142
let len = Bs_string. length s in
143
143
let c = if i < len then s.[i] else '\000' in
144
- let d = Int64 . of_int (parse_digit c) in
144
+ let d = Caml_int64_extern . of_int (parse_digit c) in
145
145
let () =
146
146
if d < 0L || d > = base then
147
147
caml_failwith " int64_of_string" in
148
- let (+~ ) = Int64 . add in
149
- let ( *~ ) = Int64 . mul in
148
+ let (+~ ) = Caml_int64_extern . add in
149
+ let ( *~ ) = Caml_int64_extern . mul in
150
150
151
151
let rec aux acc k =
152
152
if k = len then acc
153
153
else
154
154
let a = s.[k] in
155
155
if a = '_' then aux acc ( k + 1 )
156
156
else
157
- let v = Int64 . of_int (parse_digit a) in
157
+ let v = Caml_int64_extern . of_int (parse_digit a) in
158
158
if v < 0L || v > = base || acc > threshold then
159
159
caml_failwith " int64_of_string"
160
160
else
161
161
let acc = base *~ acc +~ v in
162
162
aux acc ( k + 1 )
163
163
in
164
164
let res = sign *~ aux d (i + 1 ) in
165
- let or_res = Int64 . logor res 0L in
165
+ let or_res = Caml_int64_extern . logor res 0L in
166
166
(if base = 10L && res <> or_res then
167
167
caml_failwith " int64_of_string" );
168
168
or_res
@@ -384,7 +384,7 @@ let caml_int64_format fmt x =
384
384
if f.signedconv && x < 0L then
385
385
begin
386
386
f.sign < - - 1 ;
387
- Int64 . neg x
387
+ Caml_int64_extern . neg x
388
388
end
389
389
else x in
390
390
let s = ref " " in
@@ -410,17 +410,17 @@ let caml_int64_format fmt x =
410
410
let c, d = Js_int64. div_mod y wbase in
411
411
412
412
let quotient =
413
- ref (Int64 . add quotient_l c ) in
413
+ ref (Caml_int64_extern . add quotient_l c ) in
414
414
let modulus = ref d in
415
415
s :=
416
416
Bs_string. of_char
417
- cvtbl.[ Int64 . to_int ! modulus] ^ ! s ;
417
+ cvtbl.[ Caml_int64_extern . to_int ! modulus] ^ ! s ;
418
418
419
419
while ! quotient <> 0L do
420
420
let a, b = Js_int64. div_mod (! quotient) wbase in
421
421
quotient := a;
422
422
modulus := b;
423
- s := Bs_string. of_char cvtbl.[Int64 . to_int ! modulus] ^ ! s ;
423
+ s := Bs_string. of_char cvtbl.[Caml_int64_extern . to_int ! modulus] ^ ! s ;
424
424
done ;
425
425
end
426
426
else
@@ -429,13 +429,13 @@ let caml_int64_format fmt x =
429
429
let modulus = ref b in
430
430
s :=
431
431
Bs_string. of_char
432
- cvtbl.[ Int64 . to_int ! modulus] ^ ! s ;
432
+ cvtbl.[ Caml_int64_extern . to_int ! modulus] ^ ! s ;
433
433
434
434
while ! quotient <> 0L do
435
435
let a, b = Js_int64. div_mod (! quotient) wbase in
436
436
quotient := a;
437
437
modulus := b;
438
- s := Bs_string. of_char cvtbl.[Int64 . to_int ! modulus] ^ ! s ;
438
+ s := Bs_string. of_char cvtbl.[Caml_int64_extern . to_int ! modulus] ^ ! s ;
439
439
done
440
440
441
441
| Dec ->
@@ -455,20 +455,20 @@ let caml_int64_format fmt x =
455
455
we can not do the code above, it can overflow when y is really large
456
456
*)
457
457
let c, d = Js_int64. div_mod y wbase in
458
- let e ,f = Js_int64. div_mod (Int64 . add modulus_l d) wbase in
458
+ let e ,f = Js_int64. div_mod (Caml_int64_extern . add modulus_l d) wbase in
459
459
let quotient =
460
- ref (Int64 . add (Int64 . add quotient_l c )
460
+ ref (Caml_int64_extern . add (Caml_int64_extern . add quotient_l c )
461
461
e) in
462
462
let modulus = ref f in
463
463
s :=
464
464
Bs_string. of_char
465
- cvtbl.[Int64 . to_int ! modulus] ^ ! s ;
465
+ cvtbl.[Caml_int64_extern . to_int ! modulus] ^ ! s ;
466
466
467
467
while ! quotient <> 0L do
468
468
let a, b = Js_int64. div_mod (! quotient) wbase in
469
469
quotient := a;
470
470
modulus := b;
471
- s := Bs_string. of_char cvtbl.[Int64 . to_int ! modulus] ^ ! s ;
471
+ s := Bs_string. of_char cvtbl.[Caml_int64_extern . to_int ! modulus] ^ ! s ;
472
472
done ;
473
473
474
474
else
@@ -477,13 +477,13 @@ let caml_int64_format fmt x =
477
477
let modulus = ref b in
478
478
s :=
479
479
Bs_string. of_char
480
- cvtbl.[ Int64 . to_int ! modulus] ^ ! s ;
480
+ cvtbl.[ Caml_int64_extern . to_int ! modulus] ^ ! s ;
481
481
482
482
while ! quotient <> 0L do
483
483
let a, b = Js_int64. div_mod (! quotient) wbase in
484
484
quotient := a;
485
485
modulus := b;
486
- s := Bs_string. of_char cvtbl.[Int64 . to_int ! modulus] ^ ! s ;
486
+ s := Bs_string. of_char cvtbl.[Caml_int64_extern . to_int ! modulus] ^ ! s ;
487
487
done ;
488
488
end ;
489
489
if f.prec > = 0 then
@@ -502,12 +502,12 @@ let caml_format_float fmt x =
502
502
let prec = if f.prec < 0 then 6 else f.prec in
503
503
let x = if x < 0. then (f.sign < - (- 1 ); -. x) else x in
504
504
let s = ref " " in
505
- if FloatRT . isNaN x then
505
+ if Caml_float_extern . isNaN x then
506
506
begin
507
507
s := " nan" ;
508
508
f.filter < - " "
509
509
end
510
- else if not (FloatRT . isFinite x) then
510
+ else if not (Caml_float_extern . isFinite x) then
511
511
begin
512
512
s := " inf" ;
513
513
f.filter < - " "
@@ -517,7 +517,7 @@ let caml_format_float fmt x =
517
517
match f.conv with
518
518
| " e"
519
519
->
520
- s := FloatRT . toExponentialWithPrecision x ~digits: prec;
520
+ s := Caml_float_extern . toExponentialWithPrecision x ~digits: prec;
521
521
(* exponent should be at least two digits
522
522
{[
523
523
(3.3).toExponential()
@@ -534,13 +534,13 @@ let caml_format_float fmt x =
534
534
->
535
535
(* this will not work large numbers *)
536
536
(* ("%3.10f", 3e+56, "300000000000000005792779041490073052596128503513888063488.0000000000") *)
537
- s := FloatRT . toFixedWithPrecision x ~digits: prec
537
+ s := Caml_float_extern . toFixedWithPrecision x ~digits: prec
538
538
| "g" ->
539
539
let prec = if prec <> 0 then prec else 1 in
540
- s := FloatRT . toExponentialWithPrecision x ~digits: (prec - 1 );
540
+ s := Caml_float_extern . toExponentialWithPrecision x ~digits: (prec - 1 );
541
541
let j = Bs_string. index_of ! s " e" in
542
- let exp = Caml_float. int_of_float (FloatRT . fromString (Bs_string. slice_rest ! s (j + 1 ))) in
543
- if exp < - 4 || x > = 1e21 || Bs_string. length (FloatRT . toFixed x) > prec then
542
+ let exp = Caml_float. int_of_float (Caml_float_extern . fromString (Bs_string. slice_rest ! s (j + 1 ))) in
543
+ if exp < - 4 || x > = 1e21 || Bs_string. length (Caml_float_extern . toFixed x) > prec then
544
544
let i = ref (j - 1 ) in
545
545
while ! s.[! i] = '0' do
546
546
decr i
@@ -557,10 +557,10 @@ let caml_format_float fmt x =
557
557
if exp < 0 then
558
558
begin
559
559
p := ! p - (exp + 1 );
560
- s := FloatRT . toFixedWithPrecision x ~digits: ! p
560
+ s := Caml_float_extern . toFixedWithPrecision x ~digits: ! p
561
561
end
562
562
else
563
- while (s := FloatRT . toFixedWithPrecision x ~digits: ! p;Bs_string. length ! s > prec + 1 ) do
563
+ while (s := Caml_float_extern . toFixedWithPrecision x ~digits: ! p;Bs_string. length ! s > prec + 1 ) do
564
564
decr p
565
565
done ;
566
566
if ! p <> 0 then
0 commit comments