File tree 8 files changed +51
-5
lines changed
8 files changed +51
-5
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,10 @@ type t =
21
21
22
22
let create n =
23
23
let n = if n < 1 then 1 else n in
24
+ #if BS then
25
+ #else
24
26
let n = if n > Sys. max_string_length then Sys. max_string_length else n in
27
+ #end
25
28
let s = Bytes. create n in
26
29
{buffer = s; position = 0 ; length = n; initial_buffer = s}
27
30
@@ -60,11 +63,14 @@ let resize b more =
60
63
let len = b.length in
61
64
let new_len = ref len in
62
65
while b.position + more > ! new_len do new_len := 2 * ! new_len done ;
66
+ #if BS then
67
+ #else
63
68
if ! new_len > Sys. max_string_length then begin
64
69
if b.position + more < = Sys. max_string_length
65
70
then new_len := Sys. max_string_length
66
71
else failwith " Buffer.add: cannot grow buffer"
67
72
end ;
73
+ #end
68
74
let new_buffer = Bytes. create ! new_len in
69
75
Bytes. blit b.buffer 0 new_buffer 0 b.position;
70
76
b.buffer < - new_buffer;
@@ -100,7 +106,12 @@ let add_buffer b bs =
100
106
add_subbytes b bs.buffer 0 bs.position
101
107
102
108
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 *)
104
115
invalid_arg " Buffer.add_channel" ;
105
116
if b.position + len > b.length then resize b len;
106
117
really_input ic b.buffer b.position len;
Original file line number Diff line number Diff line change @@ -2595,11 +2595,14 @@ let fmt_ebb_of_string ?legacy_behavior str =
2595
2595
match str.[str_ind] with
2596
2596
| '0' .. '9' as c ->
2597
2597
let new_acc = acc * 10 + (int_of_char c - int_of_char '0' ) in
2598
+ #if BS then
2599
+ #else
2598
2600
if new_acc > Sys. max_string_length then
2599
2601
failwith_message
2600
2602
" invalid format %S: integer %d is greater than the limit %d"
2601
2603
str new_acc Sys. max_string_length
2602
2604
else
2605
+ #end
2603
2606
parse_positive (str_ind + 1 ) end_ind new_acc
2604
2607
| _ -> str_ind, acc
2605
2608
Original file line number Diff line number Diff line change @@ -42,7 +42,11 @@ let params = {
42
42
}
43
43
44
44
(* *** 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
46
50
let step = Sys. word_size / 16
47
51
let initial_object_size = 2
48
52
Original file line number Diff line number Diff line change 10
10
(* the special exception on linking described in file ../LICENSE. *)
11
11
(* *)
12
12
(* **********************************************************************)
13
-
13
+ #if BS then
14
+ module Sys = struct
15
+ let word_size = 8
16
+ end
17
+ #end
14
18
type stat = {
15
19
minor_words : float ;
16
20
promoted_words : float ;
Original file line number Diff line number Diff line change @@ -39,10 +39,13 @@ and ('a, 'b) bucketlist =
39
39
(* To pick random seeds if requested *)
40
40
41
41
let randomized_default =
42
+ #if BS then false
43
+ #else
42
44
let params =
43
45
try Sys. getenv " OCAMLRUNPARAM" with Not_found ->
44
46
try Sys. getenv " CAMLRUNPARAM" with Not_found -> " " in
45
47
String. contains params 'R'
48
+ #end
46
49
47
50
let randomized = ref randomized_default
48
51
@@ -54,7 +57,11 @@ let prng = lazy (Random.State.make_self_init())
54
57
55
58
let rec power_2_above x n =
56
59
if x > = n then x
60
+ #if BS then
61
+ else if x * 2 < x then x (* overflow *)
62
+ #else
57
63
else if x * 2 > Sys. max_array_length then x
64
+ #end
58
65
else power_2_above (x * 2 ) n
59
66
60
67
let create ?(random = ! randomized) initial_size =
@@ -87,7 +94,11 @@ let resize indexfun h =
87
94
let odata = h.data in
88
95
let osize = Array. length odata in
89
96
let nsize = osize * 2 in
97
+ #if BS then
98
+ if nsize > = osize then begin
99
+ #else
90
100
if nsize < Sys. max_array_length then begin
101
+ #end
91
102
let ndata = Array. make nsize Empty in
92
103
h.data < - ndata; (* so that indexfun sees the new bucket count *)
93
104
let rec insert_bucket = function
Original file line number Diff line number Diff line change @@ -107,7 +107,12 @@ let lex_refill read_fun aux_buffer lexbuf =
107
107
space since n <= String.length aux_buffer <= String.length buffer.
108
108
Watch out for string length overflow, though. *)
109
109
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
111
116
if lexbuf.lex_buffer_len - lexbuf.lex_start_pos + n > newlen
112
117
then failwith " Lexing.lex_refill: cannot grow buffer" ;
113
118
let newbuf = Bytes. create newlen in
Original file line number Diff line number Diff line change @@ -38,7 +38,11 @@ let minus_one = -1n
38
38
let succ n = add n 1n
39
39
let pred n = sub n 1n
40
40
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
41
44
let size = Sys. word_size
45
+ #end
42
46
let min_int = shift_left 1n (size - 1 )
43
47
let max_int = sub min_int 1n
44
48
let lognot n = logxor n (- 1n )
Original file line number Diff line number Diff line change @@ -35,7 +35,11 @@ let fill ar ofs len x =
35
35
done
36
36
end
37
37
;;
38
-
38
+ #if BS then
39
+ module Sys = struct
40
+ let max_array_length = 2147483647 (* 2**31 - 1*)
41
+ end
42
+ #end
39
43
(* * Weak hash tables *)
40
44
41
45
module type S = sig
You can’t perform that action at this time.
0 commit comments