Skip to content

Commit 9d60645

Browse files
committed
fix rescript-lang#83 tail call with same arguments
1 parent 0da1134 commit 9d60645

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+1610
-343
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,6 @@ ocaml/man
4848
jscomp/bench/*.js
4949
*.bak
5050
.vscode
51+
*.jsx
5152
osc
5253
jscomp/pre_load.js

jscomp/compiler.mllib

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ js_fun_env
7373
js_pass_flatten_and_mark_dead
7474
js_pass_scope
7575
js_call_info
76-
76+
js_pass_debug
7777
js_of_lam_float_record
7878
js_of_lam_record
7979
js_of_lam_tuple

jscomp/config_util.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ let find_cmj file =
4444
-> Lazy.force v
4545
| exception Not_found
4646
->
47-
Ext_log.warn __LOC__ "@[%s not found @]@." file ;
47+
Ext_log.warn __LOC__ "@[%s not found @]" file ;
4848
Js_cmj_format.dummy (); (* FIXME *)
4949
end
5050
end

jscomp/ext_log.ml

+21-20
Original file line numberDiff line numberDiff line change
@@ -21,41 +21,42 @@
2121

2222

2323

24-
type ('a,'b) logging =
25-
('a -> 'b, Format.formatter, unit, unit, unit, unit) format6 -> 'a -> 'b
2624

27-
let err str f v =
28-
Format.fprintf Format.err_formatter ("%s " ^^ f) str v
25+
type 'a logging = ('a, Format.formatter, unit, unit, unit, unit) format6 -> 'a
2926

30-
let ierr b str f v =
27+
let err str f =
28+
Format.fprintf Format.err_formatter ("%s " ^^ f) str
29+
30+
let ierr b str f =
3131
if b then
32-
Format.fprintf Format.err_formatter ("%s " ^^ f) str v
32+
Format.fprintf Format.err_formatter ("%s " ^^ f) str
3333
else
34-
Format.ifprintf Format.err_formatter ("%s " ^^ f) str v
34+
Format.ifprintf Format.err_formatter ("%s " ^^ f) str
3535

36-
let warn str f v =
37-
Format.fprintf Format.err_formatter ("WARN: %s " ^^ f) str v
36+
let warn str f =
37+
Format.fprintf Format.err_formatter ("WARN: %s " ^^ f ^^ "@.") str
3838

3939

4040

41-
let iwarn b str f v =
41+
let iwarn b str f =
4242
if b then
43-
Format.fprintf Format.err_formatter ("WARN: %s " ^^ f) str v
43+
Format.fprintf Format.err_formatter ("WARN: %s " ^^ f) str
4444
else
45-
Format.ifprintf Format.err_formatter ("WARN: %s " ^^ f) str v
45+
Format.ifprintf Format.err_formatter ("WARN: %s " ^^ f) str
4646

47-
let dwarn str f v =
47+
(* TODO: add {[@.]} later for all *)
48+
let dwarn str f =
4849
if Lam_current_unit.is_same_file () then
49-
Format.fprintf Format.err_formatter ("WARN: %s " ^^ f) str v
50+
Format.fprintf Format.err_formatter ("WARN: %s " ^^ f ^^ "@.") str
5051
else
51-
Format.ifprintf Format.err_formatter ("WARN: %s " ^^ f) str v
52+
Format.ifprintf Format.err_formatter ("WARN: %s " ^^ f ^^ "@.") str
5253

53-
let info str f v =
54-
Format.fprintf Format.err_formatter ("INFO: %s " ^^ f) str v
54+
let info str f =
55+
Format.fprintf Format.err_formatter ("INFO: %s " ^^ f) str
5556

56-
let iinfo b str f v =
57+
let iinfo b str f =
5758
if b then
58-
Format.fprintf Format.err_formatter ("INFO: %s " ^^ f) str v
59+
Format.fprintf Format.err_formatter ("INFO: %s " ^^ f) str
5960
else
60-
Format.fprintf Format.err_formatter ("INFO: %s " ^^ f) str v
61+
Format.fprintf Format.err_formatter ("INFO: %s " ^^ f) str
6162

jscomp/ext_log.mli

+11-15
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,14 @@
2929
*)
3030

3131

32-
type ('a,'b) logging = ('a -> 'b, Format.formatter, unit, unit, unit, unit) format6 -> 'a -> 'b
33-
34-
(* FIXM: below does not work
35-
{[
36-
err __LOC__ "hi"
37-
]}
38-
39-
*)
40-
val err : string -> ('a,'b) logging
41-
val ierr : bool -> string -> ('a,'b) logging
42-
val warn : string -> ('a,'b) logging
43-
val iwarn : bool -> string -> ('a,'b) logging
44-
val dwarn : string -> ('a,'b) logging
45-
val info : string -> ('a,'b) logging
46-
val iinfo : bool -> string -> ('a,'b) logging
32+
33+
type 'a logging = ('a, Format.formatter, unit, unit, unit, unit) format6 -> 'a
34+
35+
36+
val err : string -> 'a logging
37+
val ierr : bool -> string -> 'a logging
38+
val warn : string -> 'a logging
39+
val iwarn : bool -> string -> 'a logging
40+
val dwarn : string -> 'a logging
41+
val info : string -> 'a logging
42+
val iinfo : bool -> string -> 'a logging

jscomp/js_dump.ml

+65-50
Original file line numberDiff line numberDiff line change
@@ -1317,46 +1317,46 @@ let exports cxt f (idents : Ident.t list) =
13171317
outer_cxt
13181318

13191319

1320-
let node_program f ( {program ; modules ; } : J.deps_program) =
1321-
let cxt = Ext_pp_scope.empty in
1322-
(* Node style *)
1323-
let requires cxt f (modules : (Ident.t * string) list ) =
1324-
P.newline f ;
1325-
(* the context used to print the following program *)
1326-
let outer_cxt, reversed_list, margin =
1327-
List.fold_left
1328-
(fun (cxt, acc, len) (id,s) ->
1329-
let str, cxt = str_of_ident cxt id in
1330-
cxt, ((str,s) :: acc), (max len (String.length str))
1331-
)
1332-
(cxt, [], 0) modules in
1333-
P.force_newline f ;
1334-
Ext_list.rev_iter (fun (s,file) ->
1335-
P.string f L.var;
1336-
P.space f ;
1337-
P.string f s ;
1338-
P.nspace f (margin - String.length s + 1) ;
1339-
P.string f L.eq;
1340-
P.space f;
1341-
P.string f L.require;
1342-
P.paren_group f 0 @@ (fun _ ->
1343-
pp_string f ~utf:true ~quote:(best_string_quote s) file );
1344-
semi f ;
1345-
P.newline f ;
1346-
) reversed_list;
1347-
outer_cxt
1348-
in
1349-
1350-
let cxt = requires cxt f modules in
1320+
(* Node style *)
1321+
let requires cxt f (modules : (Ident.t * string) list ) =
1322+
P.newline f ;
1323+
(* the context used to print the following program *)
1324+
let outer_cxt, reversed_list, margin =
1325+
List.fold_left
1326+
(fun (cxt, acc, len) (id,s) ->
1327+
let str, cxt = str_of_ident cxt id in
1328+
cxt, ((str,s) :: acc), (max len (String.length str))
1329+
)
1330+
(cxt, [], 0) modules in
1331+
P.force_newline f ;
1332+
Ext_list.rev_iter (fun (s,file) ->
1333+
P.string f L.var;
1334+
P.space f ;
1335+
P.string f s ;
1336+
P.nspace f (margin - String.length s + 1) ;
1337+
P.string f L.eq;
1338+
P.space f;
1339+
P.string f L.require;
1340+
P.paren_group f 0 @@ (fun _ ->
1341+
pp_string f ~utf:true ~quote:(best_string_quote s) file );
1342+
semi f ;
1343+
P.newline f ;
1344+
) reversed_list;
1345+
outer_cxt
13511346

1347+
let program f cxt ( x : J.program ) =
13521348
let () = P.force_newline f in
1353-
let cxt = statement_list true cxt f program.block in
1349+
let cxt = statement_list true cxt f x.block in
13541350
let () = P.force_newline f in
1355-
exports cxt f program.exports
1351+
exports cxt f x.exports
13561352

1353+
let node_program f ( x : J.deps_program) =
1354+
let cxt = requires ( Ext_pp_scope.empty) f x.modules in
1355+
program f cxt x.program
1356+
13571357

13581358
let amd_program f
1359-
( {program ; modules ; _} : J.deps_program)
1359+
( x : J.deps_program)
13601360
=
13611361
P.newline f ;
13621362
let cxt = Ext_pp_scope.empty in
@@ -1369,7 +1369,7 @@ let amd_program f
13691369
P.string f L.comma ;
13701370
P.space f;
13711371
pp_string f ~utf:true ~quote:(best_string_quote s) s;
1372-
) modules ;
1372+
) x.modules ;
13731373
P.string f "]";
13741374
P.string f L.comma;
13751375
P.newline f;
@@ -1382,33 +1382,30 @@ let amd_program f
13821382
P.string f L.comma;
13831383
P.space f ;
13841384
ident cxt f id
1385-
) cxt modules
1385+
) cxt x.modules
13861386
in
13871387
P.string f ")";
1388-
P.brace_vgroup f 1 @@ (fun _ ->
1388+
let v = P.brace_vgroup f 1 @@ (fun _ ->
13891389
let () = P.string f L.strict_directive in
1390-
let () = P.newline f in
1391-
let cxt = statement_list true cxt f program.block in
1392-
(* FIXME AMD : use {[ function xx ]} or {[ var x = function ..]} *)
1393-
P.newline f;
1394-
P.force_newline f;
1395-
ignore (exports cxt f program.exports));
1390+
program f cxt x.program
1391+
) in
13961392
P.string f ")";
1393+
v
13971394
;;
13981395

1399-
let pp_program ( program : J.deps_program) (f : Ext_pp.t) =
1396+
let pp_deps_program ( program : J.deps_program) (f : Ext_pp.t) =
14001397
begin
14011398
P.string f "// Generated CODE, PLEASE EDIT WITH CARE";
14021399
P.newline f;
14031400
P.string f L.strict_directive;
14041401
P.newline f ;
1405-
(match Js_config.get_env () with
1402+
ignore (match Js_config.get_env () with
14061403
| Browser ->
1407-
ignore (node_program f program)
1404+
(node_program f program)
14081405
| NodeJS ->
14091406
begin match Sys.getenv "OCAML_AMD_MODULE" with
14101407
| exception Not_found ->
1411-
ignore (node_program f program)
1408+
(node_program f program)
14121409
(* amd_program f program *)
14131410
| _ -> amd_program f program
14141411
end ) ;
@@ -1420,7 +1417,25 @@ let pp_program ( program : J.deps_program) (f : Ext_pp.t) =
14201417
P.newline f;
14211418
P.flush f ()
14221419
end
1423-
let dump_program
1424-
(program : J.deps_program)
1420+
1421+
let dump_program (x : J.program) oc =
1422+
ignore (program (P.from_channel oc) Ext_pp_scope.empty x )
1423+
1424+
let dump_deps_program
1425+
x
14251426
(oc : out_channel) =
1426-
pp_program program (P.from_channel oc)
1427+
pp_deps_program x (P.from_channel oc)
1428+
1429+
let string_of_block block
1430+
=
1431+
let buffer = Buffer.create 50 in
1432+
begin
1433+
let f = P.from_buffer buffer in
1434+
let _scope = statement_list true Ext_pp_scope.empty f block in
1435+
P.flush f ();
1436+
Buffer.contents buffer
1437+
end
1438+
1439+
1440+
1441+

jscomp/js_dump.mli

+8-2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@
2525
(** Print JS IR to vanilla Javascript code *)
2626

2727

28-
val pp_program : J.deps_program -> Ext_pp.t -> unit
2928

30-
val dump_program : J.deps_program -> out_channel -> unit
29+
30+
31+
val dump_deps_program : J.deps_program -> out_channel -> unit
32+
33+
(** 2 functions Only used for debugging *)
34+
val string_of_block : J.block -> string
35+
36+
val dump_program : J.program -> out_channel -> unit

jscomp/js_helper.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1175,7 +1175,7 @@ module Stmt = struct
11751175
(* TODO:
11761176
actually, only loops can be labelled
11771177
*)
1178-
let continue ?comment label : t =
1178+
let continue ?comment ?(label="") unit : t =
11791179
{
11801180
statement_desc = J.Continue label;
11811181
comment;

jscomp/js_helper.mli

+2-1
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,7 @@ module Stmt : sig
298298

299299
val break : ?comment:string -> unit -> t
300300

301-
val continue : ?comment:string -> J.label -> t
301+
(** if [label] is not set, it will default to empty *)
302+
val continue : ?comment:string -> ?label:J.label -> unit -> t
302303
end
303304

jscomp/js_output.ml

+2
Original file line numberDiff line numberDiff line change
@@ -166,3 +166,5 @@ end
166166
let concat (xs : t list) : t =
167167
List.fold_right (fun x acc -> append x acc) xs dummy
168168

169+
let to_string x =
170+
Js_dump.string_of_block (to_block x)

jscomp/js_output.mli

+2
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,5 @@ val handle_block_return :
6363
Lam_compile_defs.st -> Lam_compile_defs.return_type -> Lambda.lambda -> J.block -> J.expression -> t
6464

6565
val concat : t list -> t
66+
67+
val to_string : t -> string

jscomp/js_pass_debug.ml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
(* OCamlScript compiler
2+
* Copyright (C) 2015-2016 Bloomberg Finance L.P.
3+
*
4+
* This program is free software; you can redistribute it and/or modify
5+
* it under the terms of the GNU Lesser General Public License as published by
6+
* the Free Software Foundation, with linking exception;
7+
* either version 2.1 of the License, or (at your option) any later version.
8+
*
9+
* This program is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU Lesser General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU Lesser General Public License
15+
* along with this program; if not, write to the Free Software
16+
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17+
*)
18+
19+
(* Author: Hongbo Zhang *)
20+
21+
let log_counter = ref 0
22+
23+
let dump (prog : J.program) =
24+
begin
25+
let () =
26+
if Js_config.get_env () != Browser
27+
(* TODO: when no [Browser] detection, it will go through.. bug in js_of_ocaml? *)
28+
&& Lam_current_unit.is_same_file ()
29+
then
30+
begin
31+
incr log_counter ;
32+
Ext_pervasives.with_file_as_chan
33+
(Ext_filename.chop_extension ~loc:__LOC__ (Lam_current_unit.get_file()) ^
34+
(Printf.sprintf ".%02d.jsx" !log_counter)
35+
) (fun chan -> Js_dump.dump_program prog chan )
36+
end in
37+
prog
38+
end
39+
40+

jscomp/js_pass_debug.mli

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
(* OCamlScript compiler
2+
* Copyright (C) 2015-2016 Bloomberg Finance L.P.
3+
*
4+
* This program is free software; you can redistribute it and/or modify
5+
* it under the terms of the GNU Lesser General Public License as published by
6+
* the Free Software Foundation, with linking exception;
7+
* either version 2.1 of the License, or (at your option) any later version.
8+
*
9+
* This program is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU Lesser General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU Lesser General Public License
15+
* along with this program; if not, write to the Free Software
16+
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17+
*)
18+
19+
(* Author: Hongbo Zhang *)
20+
21+
val dump : J.program -> J.program

jscomp/js_pass_flatten_and_mark_dead.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ let mark_dead = object (self)
8888
(** check [camlinternlFormat,box_type] inlined twice
8989
FIXME: seems we have redeclared identifiers
9090
*)
91-
Ext_log.warn __LOC__ "@[%s$%d in %s@]@." ident.name ident.stamp name
91+
Ext_log.warn __LOC__ "@[%s$%d in %s@]" ident.name ident.stamp name
9292
(* assert false *)
9393
| exception Not_found -> (* First time *)
9494
Hashtbl.add ident_use_stats ident (`Info ident_info);

0 commit comments

Comments
 (0)