Skip to content

Commit 82c8166

Browse files
committed
only Arg, Unix should depend on Sys module
1 parent dffd241 commit 82c8166

8 files changed

+51
-5
lines changed

jscomp/stdlib/buffer.ml

+12-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ type t =
2121

2222
let create n =
2323
let n = if n < 1 then 1 else n in
24+
#if BS then
25+
#else
2426
let n = if n > Sys.max_string_length then Sys.max_string_length else n in
27+
#end
2528
let s = Bytes.create n in
2629
{buffer = s; position = 0; length = n; initial_buffer = s}
2730

@@ -60,11 +63,14 @@ let resize b more =
6063
let len = b.length in
6164
let new_len = ref len in
6265
while b.position + more > !new_len do new_len := 2 * !new_len done;
66+
#if BS then
67+
#else
6368
if !new_len > Sys.max_string_length then begin
6469
if b.position + more <= Sys.max_string_length
6570
then new_len := Sys.max_string_length
6671
else failwith "Buffer.add: cannot grow buffer"
6772
end;
73+
#end
6874
let new_buffer = Bytes.create !new_len in
6975
Bytes.blit b.buffer 0 new_buffer 0 b.position;
7076
b.buffer <- new_buffer;
@@ -100,7 +106,12 @@ let add_buffer b bs =
100106
add_subbytes b bs.buffer 0 bs.position
101107

102108
let add_channel b ic len =
103-
if len < 0 || len > Sys.max_string_length then (* PR#5004 *)
109+
if len < 0
110+
#if BS then
111+
#else
112+
|| len > Sys.max_string_length
113+
#end
114+
then (* PR#5004 *)
104115
invalid_arg "Buffer.add_channel";
105116
if b.position + len > b.length then resize b len;
106117
really_input ic b.buffer b.position len;

jscomp/stdlib/camlinternalFormat.ml

+3
Original file line numberDiff line numberDiff line change
@@ -2595,11 +2595,14 @@ let fmt_ebb_of_string ?legacy_behavior str =
25952595
match str.[str_ind] with
25962596
| '0' .. '9' as c ->
25972597
let new_acc = acc * 10 + (int_of_char c - int_of_char '0') in
2598+
#if BS then
2599+
#else
25982600
if new_acc > Sys.max_string_length then
25992601
failwith_message
26002602
"invalid format %S: integer %d is greater than the limit %d"
26012603
str new_acc Sys.max_string_length
26022604
else
2605+
#end
26032606
parse_positive (str_ind + 1) end_ind new_acc
26042607
| _ -> str_ind, acc
26052608

jscomp/stdlib/camlinternalOO.ml

+5-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@ let params = {
4242
}
4343

4444
(**** Parameters ****)
45-
45+
#if BS then(* {!Translobj.oo_prim : string -> lambda} not by slot *)
46+
module Sys = struct
47+
let word_size = 32
48+
end
49+
#end
4650
let step = Sys.word_size / 16
4751
let initial_object_size = 2
4852

jscomp/stdlib/gc.ml

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010
(* the special exception on linking described in file ../LICENSE. *)
1111
(* *)
1212
(***********************************************************************)
13-
13+
#if BS then
14+
module Sys = struct
15+
let word_size = 8
16+
end
17+
#end
1418
type stat = {
1519
minor_words : float;
1620
promoted_words : float;

jscomp/stdlib/hashtbl.ml

+11
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,13 @@ and ('a, 'b) bucketlist =
3939
(* To pick random seeds if requested *)
4040

4141
let randomized_default =
42+
#if BS then false
43+
#else
4244
let params =
4345
try Sys.getenv "OCAMLRUNPARAM" with Not_found ->
4446
try Sys.getenv "CAMLRUNPARAM" with Not_found -> "" in
4547
String.contains params 'R'
48+
#end
4649

4750
let randomized = ref randomized_default
4851

@@ -54,7 +57,11 @@ let prng = lazy (Random.State.make_self_init())
5457

5558
let rec power_2_above x n =
5659
if x >= n then x
60+
#if BS then
61+
else if x * 2 < x then x (* overflow *)
62+
#else
5763
else if x * 2 > Sys.max_array_length then x
64+
#end
5865
else power_2_above (x * 2) n
5966

6067
let create ?(random = !randomized) initial_size =
@@ -87,7 +94,11 @@ let resize indexfun h =
8794
let odata = h.data in
8895
let osize = Array.length odata in
8996
let nsize = osize * 2 in
97+
#if BS then
98+
if nsize >= osize then begin
99+
#else
90100
if nsize < Sys.max_array_length then begin
101+
#end
91102
let ndata = Array.make nsize Empty in
92103
h.data <- ndata; (* so that indexfun sees the new bucket count *)
93104
let rec insert_bucket = function

jscomp/stdlib/lexing.ml

+6-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,12 @@ let lex_refill read_fun aux_buffer lexbuf =
107107
space since n <= String.length aux_buffer <= String.length buffer.
108108
Watch out for string length overflow, though. *)
109109
let newlen =
110-
min (2 * Bytes.length lexbuf.lex_buffer) Sys.max_string_length in
110+
#if BS then
111+
(2 * Bytes.length lexbuf.lex_buffer)
112+
#else
113+
min (2 * Bytes.length lexbuf.lex_buffer) Sys.max_string_length
114+
#end
115+
in
111116
if lexbuf.lex_buffer_len - lexbuf.lex_start_pos + n > newlen
112117
then failwith "Lexing.lex_refill: cannot grow buffer";
113118
let newbuf = Bytes.create newlen in

jscomp/stdlib/nativeint.ml

+4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@ let minus_one = -1n
3838
let succ n = add n 1n
3939
let pred n = sub n 1n
4040
let abs n = if n >= 0n then n else neg n
41+
#if BS then
42+
let size = 54 (* 54 is not a multiple of 8 *)
43+
#else
4144
let size = Sys.word_size
45+
#end
4246
let min_int = shift_left 1n (size - 1)
4347
let max_int = sub min_int 1n
4448
let lognot n = logxor n (-1n)

jscomp/stdlib/weak.ml

+5-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ let fill ar ofs len x =
3535
done
3636
end
3737
;;
38-
38+
#if BS then
39+
module Sys = struct
40+
let max_array_length = 2147483647 (* 2**31 - 1*)
41+
end
42+
#end
3943
(** Weak hash tables *)
4044

4145
module type S = sig

0 commit comments

Comments
 (0)