1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
open! Stdlib
let debug = Debug.find "main"
let times = Debug.find "times"
let should_export = function
| `Iife -> false
| `Named _ | `Anonymous -> true
let tailcall p =
if debug () then Format.eprintf "Tail-call optimization...@.";
Tailcall.f p
let deadcode' p =
if debug () then Format.eprintf "Dead-code...@.";
Deadcode.f p
let deadcode p =
let r, _ = deadcode' p in
r
let inline p =
if Config.Flag.inline () && Config.Flag.deadcode ()
then (
let p, live_vars = deadcode' p in
if debug () then Format.eprintf "Inlining...@.";
Inline.f p live_vars)
else p
let specialize_1 (p, info) =
if debug () then Format.eprintf "Specialize...@.";
Specialize.f info p
let specialize_js (p, info) =
if debug () then Format.eprintf "Specialize js...@.";
Specialize_js.f info p
let specialize_js_once p =
if debug () then Format.eprintf "Specialize js once...@.";
Specialize_js.f_once p
let specialize' (p, info) =
let p = specialize_1 (p, info) in
let p = specialize_js (p, info) in
p, info
let specialize p = fst (specialize' p)
let eval (p, info) = if Config.Flag.staticeval () then Eval.f info p else p
let flow p =
if debug () then Format.eprintf "Data flow...@.";
Flow.f p
let flow_simple p =
if debug () then Format.eprintf "Data flow...@.";
Flow.f ~skip_param:true p
let phi p =
if debug () then Format.eprintf "Variable passing simplification...@.";
Phisimpl.f p
let print p =
if debug () then Code.Print.program (fun _ _ -> "") p;
p
let ( +> ) f g x = g (f x)
let rec loop max name round i (p : 'a) : 'a =
let p' = round p in
if i >= max || Code.eq p' p
then p'
else (
if times () then Format.eprintf "Start Iteration (%s) %d...@." name i;
loop max name round (i + 1) p')
let identity x = x
let o1 : 'a -> 'a =
print
+> tailcall
+> flow_simple
+> specialize'
+> eval
+> inline
+> deadcode
+> tailcall
+> phi
+> flow
+> specialize'
+> eval
+> inline
+> deadcode
+> print
+> flow
+> specialize'
+> eval
+> inline
+> deadcode
+> phi
+> flow
+> specialize
+> identity
let o2 : 'a -> 'a = loop 10 "o1" o1 1 +> print
let round1 : 'a -> 'a =
print
+> tailcall
+> inline
+> deadcode
+> flow_simple
+> specialize'
+> eval
+> identity
let round2 = flow +> specialize' +> eval +> deadcode +> o1
let o3 = loop 10 "tailcall+inline" round1 1 +> loop 10 "flow" round2 1 +> print
let generate d ~exported_runtime ~wrap_with_fun (p, live_vars) =
if times () then Format.eprintf "Start Generation...@.";
let should_export = should_export wrap_with_fun in
Generate.f p ~exported_runtime ~live_vars ~should_export d
let formatter ~ =
(match custom_header with
| None -> ()
| Some c -> Pretty_print.string formatter (c ^ "\n"));
let version =
match Compiler_version.git_version with
| "" -> Compiler_version.s
| v -> Printf.sprintf "%s+git-%s" Compiler_version.s v
in
Pretty_print.string formatter ("// Generated by js_of_ocaml " ^ version ^ "\n")
let debug_linker = Debug.find "linker"
let global_object = Constant.global_object
let =
lazy
(List.fold_left (Builtins.all ()) ~init:[] ~f:(fun acc file ->
try
let name = Builtins.File.name file in
let ss =
List.concat_map ~f:Linker.Fragment.provides (Linker.parse_builtin file)
|> StringSet.of_list
in
(name, ss) :: acc
with _ -> acc))
let report_missing_primitives missing =
let missing =
List.fold_left
(Lazy.force extra_js_files)
~init:missing
~f:(fun missing (file, pro) ->
let d = StringSet.inter missing pro in
if not (StringSet.is_empty d)
then (
warn "Missing primitives provided by %s:@." file;
StringSet.iter (fun nm -> warn " %s@." nm) d;
StringSet.diff missing pro)
else missing)
in
if not (StringSet.is_empty missing)
then (
warn "Missing primitives:@.";
StringSet.iter (fun nm -> warn " %s@." nm) missing)
let gen_missing js missing =
let open Javascript in
let miss =
StringSet.fold
(fun prim acc ->
let p = ident prim in
( p
, Some
( ECond
( EBin
( NotEqEq
, EDot (EVar (ident global_object), prim)
, EVar (ident "undefined") )
, EDot (EVar (ident global_object), prim)
, EFun
( None
, []
, [ ( Statement
(Expression_statement
(ECall
( EVar (ident "caml_failwith")
, [ ( EBin
( Plus
, EStr (prim, `Utf8)
, EStr (" not implemented", `Utf8) )
, `Not_spread )
]
, N )))
, N )
]
, N ) )
, N ) )
:: acc)
missing
[]
in
if not (StringSet.is_empty missing)
then (
warn "There are some missing primitives@.";
warn "Dummy implementations (raising 'Failure' exception) ";
warn "will be used if they are not available at runtime.@.";
warn "You can prevent the generation of dummy implementations with ";
warn "the commandline option '--disable genprim'@.";
report_missing_primitives missing);
(Statement (Variable_statement miss), N) :: js
let link ~standalone ~linkall ~export_runtime (js : Javascript.source_elements) :
Linker.output =
if not standalone
then { runtime_code = js; always_required_codes = [] }
else
let t = Timer.make () in
if times () then Format.eprintf "Start Linking...@.";
let traverse = new Js_traverse.free in
let js = traverse#program js in
let free = traverse#get_free_name in
let prim = Primitive.get_external () in
let prov = Linker.get_provided () in
let all_external = StringSet.union prim prov in
let used = StringSet.inter free all_external in
let linkinfos = Linker.init () in
let linkinfos, missing = Linker.resolve_deps ~linkall linkinfos used in
let linkinfos, missing =
if (not (StringSet.is_empty missing)) && Config.Flag.genprim ()
then
let linkinfos, missing2 =
Linker.resolve_deps linkinfos (StringSet.singleton "caml_failwith")
in
linkinfos, StringSet.union missing missing2
else linkinfos, missing
in
let js = if Config.Flag.genprim () then gen_missing js missing else js in
if times () then Format.eprintf " linking: %a@." Timer.print t;
let js =
if export_runtime
then
let open Javascript in
let all = Linker.all linkinfos in
let all = List.map all ~f:(fun name -> PNI name, EVar (ident name)) in
( Statement
(Expression_statement
(EBin (Eq, EDot (EVar (ident global_object), "jsoo_runtime"), EObj all)))
, N )
:: js
else js
in
Linker.link js linkinfos
let check_js js =
let t = Timer.make () in
if times () then Format.eprintf "Start Checks...@.";
let traverse = new Js_traverse.free in
let js = traverse#program js in
let free = traverse#get_free_name in
let prim = Primitive.get_external () in
let prov = Linker.get_provided () in
let all_external = StringSet.union prim prov in
let missing = StringSet.inter free all_external in
let missing = StringSet.diff missing Reserved.provided in
let other = StringSet.diff free missing in
let res = Var_printer.get_reserved () in
let other = StringSet.diff other res in
if not (StringSet.is_empty missing) then report_missing_primitives missing;
let probably_prov = StringSet.inter other Reserved.provided in
let other = StringSet.diff other probably_prov in
if (not (StringSet.is_empty other)) && debug_linker ()
then (
warn "Missing variables:@.";
StringSet.iter (fun nm -> warn " %s@." nm) other);
if (not (StringSet.is_empty probably_prov)) && debug_linker ()
then (
warn "Variables provided by the browser:@.";
StringSet.iter (fun nm -> warn " %s@." nm) probably_prov);
if times () then Format.eprintf " checks: %a@." Timer.print t;
js
let coloring js =
let t = Timer.make () in
if times () then Format.eprintf "Start Coloring...@.";
let traverse = new Js_traverse.free in
let js = traverse#program js in
let free = traverse#get_free_name in
Var_printer.add_reserved (StringSet.elements free);
let js = Js_assign.program js in
if times () then Format.eprintf " coloring: %a@." Timer.print t;
js
let output formatter ~standalone ~ ~source_map () js =
let t = Timer.make () in
if times () then Format.eprintf "Start Writing file...@.";
if standalone then header ~custom_header formatter;
Js_output.program formatter ?source_map js;
if times () then Format.eprintf " write: %a@." Timer.print t
let pack ~wrap_with_fun ~standalone { Linker.runtime_code = js; always_required_codes } =
let module J = Javascript in
let t = Timer.make () in
if times () then Format.eprintf "Start Optimizing js...@.";
let js =
if Config.Flag.share_constant ()
then (
let t1 = Timer.make () in
let js = (new Js_traverse.share_constant)#program js in
if times () then Format.eprintf " share constant: %a@." Timer.print t1;
js)
else js
in
let js =
if Config.Flag.compact_vardecl ()
then (
let t2 = Timer.make () in
let js = (new Js_traverse.compact_vardecl)#program js in
if times () then Format.eprintf " compact var decl: %a@." Timer.print t2;
js)
else js
in
let wrap_in_iife ~use_strict js =
let var ident e =
J.Statement (J.Variable_statement [ J.ident ident, Some (e, J.N) ]), J.N
in
let expr e = J.Statement (J.Expression_statement e), J.N in
let freenames =
let o = new Js_traverse.free in
let (_ : J.program) = o#program js in
o#get_free_name
in
let export_shim js =
if StringSet.mem Constant.exports freenames
then
if should_export wrap_with_fun
then var Constant.exports (J.EObj []) :: js
else
let export_node =
let s =
Printf.sprintf
{|((typeof module === 'object' && module.exports) || %s)|}
global_object
in
let lex = Parse_js.Lexer.of_lexbuf (Lexing.from_string s) in
Parse_js.parse_expr lex
in
var Constant.exports export_node :: js
else js
in
let old_global_object_shim js =
if StringSet.mem Constant.old_global_object freenames
then var Constant.old_global_object (J.EVar (J.ident global_object)) :: js
else js
in
let efun args body = J.EFun (None, args, body, J.U) in
let sfun name args body = J.Function_declaration (name, args, body, J.U), J.U in
let mk f =
let js = export_shim js in
let js = old_global_object_shim js in
let js = if use_strict then expr (J.EStr ("use strict", `Utf8)) :: js else js in
f [ J.ident global_object ] js
in
match wrap_with_fun with
| `Anonymous -> expr (mk efun)
| `Named name -> mk (sfun (J.ident name))
| `Iife ->
expr (J.ECall (mk efun, [ J.EVar (J.ident global_object), `Not_spread ], J.N))
in
let always_required_js =
List.map
always_required_codes
~f:(fun { Linker.program; filename = _; requires = _ } ->
wrap_in_iife ~use_strict:false program)
in
let runtime_js = wrap_in_iife ~use_strict:(Config.Flag.strictmode ()) js in
let js = always_required_js @ [ runtime_js ] in
let js =
match wrap_with_fun, standalone with
| `Named name, (true | false) ->
let export_node =
let s =
Printf.sprintf
{|
if (typeof module === 'object' && module.exports) {
module['exports'] = %s;
}
|}
name
in
let lex = Parse_js.Lexer.of_lexbuf (Lexing.from_string s) in
Parse_js.parse lex
in
js @ export_node
| `Anonymous, _ -> js
| `Iife, false -> js
| `Iife, true ->
let e =
let s =
{|
(function (Object) {
typeof globalThis !== 'object' && (
this ?
get() :
(Object.defineProperty(Object.prototype, '_T_', {
configurable: true,
get: get
}), _T_)
);
function get() {
var global = this || self;
global.globalThis = global;
delete Object.prototype._T_;
}
}(Object));
|}
in
let lex = Parse_js.Lexer.of_lexbuf (Lexing.from_string s) in
Parse_js.parse lex
in
e @ js
in
let t3 = Timer.make () in
let js = (new Js_traverse.simpl)#program js in
if times () then Format.eprintf " simpl: %a@." Timer.print t3;
let t4 = Timer.make () in
let js = (new Js_traverse.clean)#program js in
if times () then Format.eprintf " clean: %a@." Timer.print t4;
let js =
if Config.Flag.shortvar ()
then (
let t5 = Timer.make () in
let keep = StringSet.empty in
let js = (new Js_traverse.rename_variable keep)#program js in
if times () then Format.eprintf " shortten vars: %a@." Timer.print t5;
js)
else js
in
if times () then Format.eprintf " optimizing: %a@." Timer.print t;
js
let configure formatter p =
let pretty = Config.Flag.pretty () in
Pretty_print.set_compact formatter (not pretty);
Code.Var.set_pretty (pretty && not (Config.Flag.shortvar ()));
Code.Var.set_stable (Config.Flag.stable_var ());
p
type profile = Code.program -> Code.program
let full
~standalone
~wrap_with_fun
~profile
~dynlink
~linkall
~source_map
~
formatter
d
p =
let exported_runtime = not standalone in
let linkall = linkall || dynlink in
let opt =
configure formatter
+> specialize_js_once
+> profile
+> Generate_closure.f
+> deadcode'
in
let emit =
generate d ~exported_runtime ~wrap_with_fun
+> link ~standalone ~linkall ~export_runtime:dynlink
+> pack ~wrap_with_fun ~standalone
+> coloring
+> check_js
+> output formatter ~standalone ~custom_header ~source_map ()
in
if times () then Format.eprintf "Start Optimizing...@.";
let t = Timer.make () in
let r = opt p in
let () = if times () then Format.eprintf " optimizations : %a@." Timer.print t in
emit r
let f
?(standalone = true)
?(wrap_with_fun = `Iife)
?(profile = o1)
?(dynlink = false)
?(linkall = false)
?source_map
?
formatter
d
p =
full
~standalone
~wrap_with_fun
~profile
~dynlink
~linkall
~source_map
~custom_header
formatter
d
p
let from_string prims s formatter =
let p, d = Parse_bytecode.from_string prims s in
full
~standalone:false
~wrap_with_fun:`Anonymous
~profile:o1
~dynlink:false
~linkall:false
~source_map:None
~custom_header:None
formatter
d
p
let profiles = [ 1, o1; 2, o2; 3, o3 ]
let profile i = try Some (List.assoc i profiles) with Not_found -> None