Skip to content

Commit 9c20364

Browse files
committed
remove deps on ocaml_stdlib_slots, bypass camlinternalMod completely
1 parent 6aec9be commit 9c20364

7 files changed

+65
-201
lines changed

jscomp/all.depend

+4-6
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,6 @@ core/js_packages_state.cmx : core/js_packages_info.cmx \
408408
ext/ext_pervasives.cmx ext/ext_namespace.cmx core/js_packages_state.cmi
409409
core/ocaml_types.cmx : common/ext_log.cmx ext/ext_list.cmx \
410410
core/ocaml_types.cmi
411-
core/ocaml_stdlib_slots.cmx :
412411
core/bs_conditional_initial.cmx : common/js_config.cmx common/bs_version.cmx \
413412
core/bs_conditional_initial.cmi
414413
core/ocaml_options.cmx : common/bs_version.cmx \
@@ -420,11 +419,10 @@ core/lam_module_ident.cmx : core/js_op.cmx core/j.cmx ext/hashtbl_make.cmx \
420419
ext/hash_set.cmx ext/ext_ident.cmx stubs/bs_hash_stubs.cmx \
421420
core/lam_module_ident.cmi
422421
core/lam_arity.cmx : core/lam_arity.cmi
423-
core/lam.cmx : ext/ordered_hash_map_local_ident.cmx \
424-
core/ocaml_stdlib_slots.cmx ext/literals.cmx core/lam_module_ident.cmx \
425-
ext/int_vec_vec.cmx ext/int_vec_util.cmx ext/int_vec.cmx \
426-
ext/int_hashtbl.cmx ext/ident_set.cmx ext/ident_hashtbl.cmx \
427-
ext/ident_hash_set.cmx ext/hash_set_ident_mask.cmx \
422+
core/lam.cmx : ext/ordered_hash_map_local_ident.cmx ext/literals.cmx \
423+
core/lam_module_ident.cmx ext/int_vec_vec.cmx ext/int_vec_util.cmx \
424+
ext/int_vec.cmx ext/int_hashtbl.cmx ext/ident_set.cmx \
425+
ext/ident_hashtbl.cmx ext/ident_hash_set.cmx ext/hash_set_ident_mask.cmx \
428426
syntax/external_ffi_types.cmx syntax/external_arg_spec.cmx \
429427
ext/ext_string.cmx ext/ext_scc.cmx common/ext_log.cmx ext/ext_list.cmx \
430428
core/lam.cmi

jscomp/core/lam.ml

+15-27
Original file line numberDiff line numberDiff line change
@@ -1821,6 +1821,21 @@ let convert exports lam : _ * _ =
18211821

18221822
| _ when s = "#undefined" ->
18231823
Lconst (Const_js_undefined)
1824+
| _ when s = "#init_mod" ->
1825+
let args = Ext_list.map convert_aux args in
1826+
begin match args with
1827+
| [_loc; Lconst(Const_block(0,_,[Const_block(0,_,[])]))]
1828+
->
1829+
unit
1830+
| _ -> prim ~primitive:Pinit_mod ~args loc
1831+
end
1832+
| _ when s = "#update_mod" ->
1833+
let args = Ext_list.map convert_aux args in
1834+
begin match args with
1835+
| [Lconst(Const_block(0,_,[Const_block(0,_,[])]));_;_]
1836+
-> unit
1837+
| _ -> prim ~primitive:Pupdate_mod ~args loc
1838+
end
18241839
| _ ->
18251840
let primitive =
18261841
match s with
@@ -1907,33 +1922,6 @@ let convert exports lam : _ * _ =
19071922
| Lapply (fn,args,loc)
19081923
->
19091924
begin match fn with
1910-
| Lprim (
1911-
Pfield (id, _),
1912-
[
1913-
Lprim (
1914-
Pgetglobal { name = "CamlinternalMod" },
1915-
_,_
1916-
)
1917-
],loc
1918-
) -> (* replace all {!CamlinternalMod} function *)
1919-
let args = Ext_list.map convert_aux args in
1920-
begin match Ocaml_stdlib_slots.camlinternalMod.(id), args with
1921-
| "init_mod" , [_loc ; shape] ->
1922-
begin match shape with
1923-
| Lconst (Const_block (0, _, [Const_block (0, _, [])]))
1924-
-> unit (* see {!Translmod.init_shape}*)
1925-
| _ -> prim ~primitive:Pinit_mod ~args loc
1926-
end
1927-
| "update_mod", [shape ; _obj1; _obj2] ->
1928-
(* here array access will have side effect .. *)
1929-
begin match shape with
1930-
| Lconst (Const_block (0, _, [Const_block (0, _, [])]))
1931-
-> unit (* see {!Translmod.init_shape}*)
1932-
| _ -> prim ~primitive:Pupdate_mod ~args loc
1933-
end
1934-
| _ -> assert false
1935-
end
1936-
19371925
(*
19381926
| Lfunction(kind,params,Lprim(prim,inner_args,inner_loc))
19391927
when List.for_all2_no_exn (fun x y ->

jscomp/core/ocaml_stdlib_slots.ml

-9
This file was deleted.

jscomp/stdlib/camlinternalMod.mli

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ type shape =
2121
| Class
2222
| Module of shape array
2323
| Value of Obj.t
24-
24+
#if BS then
25+
#else
2526
val init_mod: string * int * int -> shape -> Obj.t
2627
val update_mod: shape -> Obj.t -> Obj.t -> unit
28+
#end

lib/js/camlinternalMod.js

+1-108
Original file line numberDiff line numberDiff line change
@@ -1,108 +1 @@
1-
'use strict';
2-
3-
var Caml_obj = require("./caml_obj.js");
4-
var Caml_array = require("./caml_array.js");
5-
var Caml_builtin_exceptions = require("./caml_builtin_exceptions.js");
6-
7-
function dummy_class(loc) {
8-
var undef = function () {
9-
throw [
10-
Caml_builtin_exceptions.undefined_recursive_module,
11-
loc
12-
];
13-
};
14-
return /* tuple */[
15-
undef,
16-
undef,
17-
undef,
18-
0
19-
];
20-
}
21-
22-
function init_mod(loc, shape) {
23-
var undef_module = function () {
24-
throw [
25-
Caml_builtin_exceptions.undefined_recursive_module,
26-
loc
27-
];
28-
};
29-
var loop = function (shape, struct_, idx) {
30-
if (typeof shape === "number") {
31-
switch (shape) {
32-
case 0 :
33-
case 1 :
34-
return Caml_array.caml_array_set(struct_, idx, undef_module);
35-
case 2 :
36-
return Caml_array.caml_array_set(struct_, idx, dummy_class(loc));
37-
38-
}
39-
} else if (shape.tag) {
40-
return Caml_array.caml_array_set(struct_, idx, shape[0]);
41-
} else {
42-
var comps = shape[0];
43-
var v = /* array */[];
44-
Caml_array.caml_array_set(struct_, idx, v);
45-
var len = comps.length;
46-
for(var i = 0 ,i_finish = len - 1 | 0; i <= i_finish; ++i){
47-
loop(Caml_array.caml_array_get(comps, i), v, i);
48-
}
49-
return /* () */0;
50-
}
51-
};
52-
var res = /* array */[];
53-
loop(shape, res, 0);
54-
return Caml_array.caml_array_get(res, 0);
55-
}
56-
57-
function update_mod(shape, o, n) {
58-
var aux = function (shape, o, n, parent, i) {
59-
if (typeof shape === "number") {
60-
switch (shape) {
61-
case 0 :
62-
parent[i] = n;
63-
return /* () */0;
64-
case 1 :
65-
case 2 :
66-
return Caml_obj.caml_update_dummy(o, n);
67-
68-
}
69-
} else if (shape.tag) {
70-
return /* () */0;
71-
} else {
72-
var comps = shape[0];
73-
for(var i$1 = 0 ,i_finish = comps.length - 1 | 0; i$1 <= i_finish; ++i$1){
74-
aux(Caml_array.caml_array_get(comps, i$1), o[i$1], n[i$1], o, i$1);
75-
}
76-
return /* () */0;
77-
}
78-
};
79-
if (typeof shape === "number") {
80-
throw [
81-
Caml_builtin_exceptions.assert_failure,
82-
[
83-
"camlinternalMod.ml",
84-
130,
85-
10
86-
]
87-
];
88-
} else if (shape.tag) {
89-
throw [
90-
Caml_builtin_exceptions.assert_failure,
91-
[
92-
"camlinternalMod.ml",
93-
130,
94-
10
95-
]
96-
];
97-
} else {
98-
var comps = shape[0];
99-
for(var i = 0 ,i_finish = comps.length - 1 | 0; i <= i_finish; ++i){
100-
aux(Caml_array.caml_array_get(comps, i), o[i], n[i], o, i);
101-
}
102-
return /* () */0;
103-
}
104-
}
105-
106-
exports.init_mod = init_mod;
107-
exports.update_mod = update_mod;
108-
/* No side effect */
1+
/* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */

lib/whole_compiler.d

-1
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,6 @@
361361
../lib/whole_compiler.ml : ./core/lam_compile_global.ml
362362
../lib/whole_compiler.ml : ./core/lam_eta_conversion.ml
363363
../lib/whole_compiler.ml : ./core/lam_pass_lets_dce.mli
364-
../lib/whole_compiler.ml : ./core/ocaml_stdlib_slots.ml
365364
../lib/whole_compiler.ml : ./ext/hash_set_ident_mask.ml
366365
../lib/whole_compiler.ml : ./super_errors/super_main.ml
367366
../lib/whole_compiler.ml : ./super_errors/super_misc.ml

lib/whole_compiler.ml

+42-49
Original file line numberDiff line numberDiff line change
@@ -66232,20 +66232,6 @@ let mem key (x : Int_vec.t) =
6623266232
let len = Int_vec.length x in
6623366233
unsafe_mem_aux internal_array 0 key (len - 1)
6623466234

66235-
end
66236-
module Ocaml_stdlib_slots
66237-
= struct
66238-
#1 "ocaml_stdlib_slots.ml"
66239-
66240-
(* Generated by scripts/gen_slots.ml, should be updated everytime when we upgrade the compiler *)
66241-
let pervasives = [| "invalid_arg";"failwith";"Exit";"min";"max";"abs";"max_int";"min_int";"lnot";"infinity";"neg_infinity";"nan";"max_float";"min_float";"epsilon_float";"^";"char_of_int";"string_of_bool";"bool_of_string";"string_of_int";"string_of_float";"@";"stdin";"stdout";"stderr";"print_char";"print_string";"print_bytes";"print_int";"print_float";"print_endline";"print_newline";"prerr_char";"prerr_string";"prerr_bytes";"prerr_int";"prerr_float";"prerr_endline";"prerr_newline";"read_line";"read_int";"read_float";"open_out";"open_out_bin";"open_out_gen";"flush";"flush_all";"output_char";"output_string";"output_bytes";"output";"output_substring";"output_byte";"output_binary_int";"output_value";"seek_out";"pos_out";"out_channel_length";"close_out";"close_out_noerr";"set_binary_mode_out";"open_in";"open_in_bin";"open_in_gen";"input_char";"input_line";"input";"really_input";"really_input_string";"input_byte";"input_binary_int";"input_value";"seek_in";"pos_in";"in_channel_length";"close_in";"close_in_noerr";"set_binary_mode_in";"LargeFile";"string_of_format";"^^";"exit";"at_exit";"valid_float_lexem";"unsafe_really_input";"do_at_exit" |]
66242-
let camlinternalOO = [| "public_method_label";"new_method";"new_variable";"new_methods_variables";"get_variable";"get_variables";"get_method_label";"get_method_labels";"get_method";"set_method";"set_methods";"narrow";"widen";"add_initializer";"dummy_table";"create_table";"init_class";"inherits";"make_class";"make_class_store";"dummy_class";"copy";"create_object";"create_object_opt";"run_initializers";"run_initializers_opt";"create_object_and_run_initializers";"lookup_tables";"params";"stats" |]
66243-
let camlinternalMod = [| "init_mod";"update_mod" |]
66244-
let string = [| "make";"init";"copy";"sub";"fill";"blit";"concat";"iter";"iteri";"map";"mapi";"trim";"escaped";"index";"rindex";"index_from";"rindex_from";"contains";"contains_from";"rcontains_from";"uppercase";"lowercase";"capitalize";"uncapitalize";"compare" |]
66245-
let array = [| "init";"make_matrix";"create_matrix";"append";"concat";"sub";"copy";"fill";"blit";"to_list";"of_list";"iter";"map";"iteri";"mapi";"fold_left";"fold_right";"sort";"stable_sort";"fast_sort" |]
66246-
let list = [| "length";"hd";"tl";"nth";"rev";"append";"rev_append";"concat";"flatten";"iter";"iteri";"map";"mapi";"rev_map";"fold_left";"fold_right";"iter2";"map2";"rev_map2";"fold_left2";"fold_right2";"for_all";"exists";"for_all2";"exists2";"mem";"memq";"find";"filter";"find_all";"partition";"assoc";"assq";"mem_assoc";"mem_assq";"remove_assoc";"remove_assq";"split";"combine";"sort";"stable_sort";"fast_sort";"sort_uniq";"merge" |]
66247-
66248-
6624966235
end
6625066236
module Ordered_hash_map_gen
6625166237
= struct
@@ -68740,6 +68726,21 @@ let convert exports lam : _ * _ =
6874068726

6874168727
| _ when s = "#undefined" ->
6874268728
Lconst (Const_js_undefined)
68729+
| _ when s = "#init_mod" ->
68730+
let args = Ext_list.map convert_aux args in
68731+
begin match args with
68732+
| [_loc; Lconst(Const_block(0,_,[Const_block(0,_,[])]))]
68733+
->
68734+
unit
68735+
| _ -> prim ~primitive:Pinit_mod ~args loc
68736+
end
68737+
| _ when s = "#update_mod" ->
68738+
let args = Ext_list.map convert_aux args in
68739+
begin match args with
68740+
| [Lconst(Const_block(0,_,[Const_block(0,_,[])]));_;_]
68741+
-> unit
68742+
| _ -> prim ~primitive:Pupdate_mod ~args loc
68743+
end
6874368744
| _ ->
6874468745
let primitive =
6874568746
match s with
@@ -68826,33 +68827,6 @@ let convert exports lam : _ * _ =
6882668827
| Lapply (fn,args,loc)
6882768828
->
6882868829
begin match fn with
68829-
| Lprim (
68830-
Pfield (id, _),
68831-
[
68832-
Lprim (
68833-
Pgetglobal { name = "CamlinternalMod" },
68834-
_,_
68835-
)
68836-
],loc
68837-
) -> (* replace all {!CamlinternalMod} function *)
68838-
let args = Ext_list.map convert_aux args in
68839-
begin match Ocaml_stdlib_slots.camlinternalMod.(id), args with
68840-
| "init_mod" , [_loc ; shape] ->
68841-
begin match shape with
68842-
| Lconst (Const_block (0, _, [Const_block (0, _, [])]))
68843-
-> unit (* see {!Translmod.init_shape}*)
68844-
| _ -> prim ~primitive:Pinit_mod ~args loc
68845-
end
68846-
| "update_mod", [shape ; _obj1; _obj2] ->
68847-
(* here array access will have side effect .. *)
68848-
begin match shape with
68849-
| Lconst (Const_block (0, _, [Const_block (0, _, [])]))
68850-
-> unit (* see {!Translmod.init_shape}*)
68851-
| _ -> prim ~primitive:Pupdate_mod ~args loc
68852-
end
68853-
| _ -> assert false
68854-
end
68855-
6885668830
(*
6885768831
| Lfunction(kind,params,Lprim(prim,inner_args,inner_loc))
6885868832
when List.for_all2_no_exn (fun x y ->
@@ -81355,12 +81329,32 @@ let record_primitive = function
8135581329
| _ -> ()
8135681330

8135781331
(* Utilities for compiling "module rec" definitions *)
81358-
81359-
let mod_prim name =
81332+
let bs_init_mod args : Lambda.lambda =
81333+
Lprim(Pccall {prim_name = "#init_mod"; prim_arity = 2;
81334+
prim_alloc = true;
81335+
prim_native_name = "";
81336+
prim_native_float = false}, args, Location.none)
81337+
let bs_update_mod args : Lambda.lambda =
81338+
Lprim (Pccall {prim_name = "#update_mod"; prim_arity = 3;
81339+
prim_alloc = true;
81340+
prim_native_name = "";
81341+
prim_native_float = false}, args, Location.none)
81342+
81343+
let mod_prim name args =
81344+
if !Clflags.bs_only then
81345+
if name = "init_mod" then
81346+
bs_init_mod args
81347+
else if name = "update_mod" then
81348+
bs_update_mod args
81349+
else assert false
81350+
else
8136081351
try
81361-
transl_normal_path
81362-
(fst (Env.lookup_value (Ldot (Lident "CamlinternalMod", name))
81363-
Env.empty))
81352+
Lapply
81353+
(
81354+
transl_normal_path
81355+
(fst (Env.lookup_value (Ldot (Lident "CamlinternalMod", name))
81356+
Env.empty))
81357+
, args, Location.none)
8136481358
with Not_found ->
8136581359
fatal_error ("Primitive " ^ name ^ " not found.")
8136681360

@@ -81458,7 +81452,7 @@ let eval_rec_bindings bindings cont =
8145881452
| (id, None, rhs) :: rem ->
8145981453
bind_inits rem
8146081454
| (id, Some(loc, shape), rhs) :: rem ->
81461-
Llet(Strict, id, Lapply(mod_prim "init_mod", [loc; shape], Location.none),
81455+
Llet(Strict, id, (mod_prim "init_mod" [loc; shape]),
8146281456
bind_inits rem)
8146381457
and bind_strict = function
8146481458
[] ->
@@ -81473,8 +81467,7 @@ let eval_rec_bindings bindings cont =
8147381467
| (id, None, rhs) :: rem ->
8147481468
patch_forwards rem
8147581469
| (id, Some(loc, shape), rhs) :: rem ->
81476-
Lsequence(Lapply(mod_prim "update_mod", [shape; Lvar id; rhs],
81477-
Location.none),
81470+
Lsequence((mod_prim "update_mod" [shape; Lvar id; rhs]),
8147881471
patch_forwards rem)
8147981472
in
8148081473
bind_inits bindings

0 commit comments

Comments
 (0)