Source file driver.ml
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
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
open! Stdlib
let debug = Debug.find "main"
let times = Debug.find "times"
type optimized_result =
{ program : Code.program
; variable_uses : Deadcode.variable_uses
; trampolined_calls : Effects.trampolined_calls
; in_cps : Effects.in_cps
; deadcode_sentinal : Code.Var.t
; shapes : Shape.t StringMap.t
}
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...@.";
let pure_fun = Pure_fun.f p in
Deadcode.f pure_fun p
let deadcode p =
let p = Deadcode.merge_blocks p in
let p = Code.compact p in
p
let inline profile p =
if Config.Flag.deadcode ()
then
let p, live_vars = deadcode' p in
if Config.Flag.inline ()
then (
if debug () then Format.eprintf "Inlining...@.";
Inline.f ~profile p live_vars)
else p
else p
let specialize_1 (p, info) =
if debug () then Format.eprintf "Specialize...@.";
let return_values = Code.Var.Map.empty in
Specialize.f
~shape:(fun f -> Flow.the_shape_of ~return_values ~pure:Pure_fun.empty info f)
~update_def:(fun x expr -> Flow.Info.update_def info x expr)
p
let specialize_js (p, info) =
if debug () then Format.eprintf "Specialize js...@.";
Specialize_js.f info p
let specialize_js_once_before p =
if debug () then Format.eprintf "Specialize js once...@.";
Specialize_js.f_once_before p
let specialize_js_once_after p =
if debug () then Format.eprintf "Specialize js once...@.";
Specialize_js.f_once_after p
let specialize (p, info) =
let p = specialize_1 (p, info) in
let p = specialize_js (p, info) in
p, info
let eval (p, info) = if Config.Flag.staticeval () then Eval.f info p, info else p, info
let flow p =
if debug () then Format.eprintf "Data flow...@.";
Flow.f p
let phi p =
if debug () then Format.eprintf "Variable passing simplification...@.";
Phisimpl.f p
let ( +> ) f g x = g (f x)
let map_fst5 f (x, y, z, t, u) = f x, y, z, t, u
let collects_shapes ~shapes (p : Code.program) =
if shapes
then (
let t = Timer.make () in
let shapes = ref StringMap.empty in
Code.Addr.Map.iter
(fun _ block ->
List.iter block.Code.body ~f:(fun i ->
match i with
| Code.Let
( _
, Prim
( Extern "caml_register_global"
, [ _code; Pv block; Pc (NativeString name) ] ) ) ->
let name =
match name with
| Byte s -> s
| Utf (Utf8 s) -> s
in
shapes := StringMap.add name block !shapes
| Code.Let (_, Prim (Extern "caml_set_global", [ Pc (String name); Pv block ]))
-> shapes := StringMap.add name block !shapes
| _ -> ()))
p.blocks;
let map =
if StringMap.is_empty !shapes
then StringMap.empty
else
let _, info = Flow.f p in
let pure = Pure_fun.f p in
let return_values = Code.return_values p in
StringMap.filter_map
(fun _ x ->
match Flow.the_shape_of ~return_values ~pure info x with
| Top -> None
| (Function _ | Block _) as s -> Some s)
!shapes
in
if times () then Format.eprintf " shapes: %a@." Timer.print t;
map)
else StringMap.empty
let effects_and_exact_calls
~keep_flow_data
~deadcode_sentinal
~shapes
(profile : Profile.t)
p =
let fast =
match Config.effects (), profile with
| (`Cps | `Double_translation), _ -> false
| _, (O2 | O3) -> false
| _, O1 -> true
in
let global_flow_data = Global_flow.f ~fast p in
let _, info = global_flow_data in
let global_flow_data = if keep_flow_data then Some global_flow_data else None in
let pure_fun = Pure_fun.f p in
let p, live_vars =
if Config.Flag.globaldeadcode () && Config.Flag.deadcode ()
then
let p = Global_deadcode.f pure_fun p ~deadcode_sentinal info in
Deadcode.f pure_fun p
else Deadcode.f pure_fun p
in
match Config.effects () with
| `Cps | `Double_translation ->
if debug () then Format.eprintf "Effects...@.";
let shapes = collects_shapes ~shapes p in
let p, trampolined_calls, in_cps = Effects.f ~flow_info:info ~live_vars p in
let p =
match Config.target () with
| `Wasm -> p
| `JavaScript -> Lambda_lifting.f p
in
p, trampolined_calls, in_cps, None, shapes
| `Disabled | `Jspi ->
let p =
Specialize.f
~shape:(fun f ->
match Global_flow.function_arity info f with
| None -> Shape.Top
| Some arity -> Shape.Function { arity; pure = false; res = Top })
~update_def:(fun x expr -> Global_flow.update_def info x expr)
p
in
let shapes = collects_shapes ~shapes p in
( p
, (Code.Var.Set.empty : Effects.trampolined_calls)
, (Code.Var.Set.empty : Effects.in_cps)
, global_flow_data
, shapes )
let print p =
if debug () then Code.Print.program Format.err_formatter (fun _ _ -> "") p;
p
let stats = Debug.find "stats"
let rec loop max name round i (p : 'a) : 'a =
let debug = times () || stats () in
if debug then Format.eprintf "%s#%d...@." name i;
let p' = round p in
if i >= max
then (
if debug then Format.eprintf "%s#%d: couldn't reach fix point.@." name i;
p')
else if Code.equal p' p
then (
if debug then Format.eprintf "%s#%d: fix-point reached.@." name i;
p')
else loop max name round (i + 1) p'
let round profile : 'a -> 'a =
print
+> tailcall
+> (flow +> specialize +> eval +> fst)
+> inline profile
+> phi
+> deadcode
let o1 =
loop 2 "round" (round Profile.O1) 1 +> (flow +> specialize +> eval +> fst) +> print
let o2 = loop 10 "round" (round Profile.O2) 1 +> print
let o3 = loop 30 "round" (round Profile.O3) 1 +> print
let generate
~exported_runtime
~wrap_with_fun
~warn_on_unhandled_effect
{ program; variable_uses; trampolined_calls; deadcode_sentinal; in_cps; shapes = _ } =
if times () then Format.eprintf "Start Generation...@.";
let should_export = should_export wrap_with_fun in
Generate.f
program
~exported_runtime
~live_vars:variable_uses
~trampolined_calls
~in_cps
~should_export
~warn_on_unhandled_effect
~deadcode_sentinal
let debug_linker = Debug.find "linker"
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.Fragment.parse_builtin file)
|> StringSet.of_list
in
(name, ss) :: acc
with _ -> acc))
let report_missing_primitives fmt 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 (
Format.fprintf fmt "Missing primitives provided by %s:@." file;
StringSet.iter (fun nm -> Format.fprintf fmt " %s@." nm) d;
StringSet.diff missing pro)
else missing)
in
if not (StringSet.is_empty missing)
then (
Format.fprintf fmt "Missing primitives:@.";
StringSet.iter (fun nm -> Format.fprintf fmt " %s@." nm) missing)
let gen_missing js missing =
let open Javascript in
let ident_s n = ident (Utf8_string.of_string_exn n) in
let miss =
StringSet.fold
(fun prim acc ->
let prim = Utf8_string.of_string_exn prim in
let p = ident prim in
( p
, ( ECond
( EBin
( NotEqEq
, dot (EVar (ident Global_constant.global_object_)) prim
, EVar (ident_s "undefined") )
, dot (EVar (ident Global_constant.global_object_)) prim
, EFun
( None
, fun_
[]
[ ( Expression_statement
(call
(EVar (ident_s "caml_failwith"))
[ EBin
( Plus
, EStr prim
, EStr (Utf8_string.of_string_exn " not implemented")
)
]
N)
, N )
]
N ) )
, N ) )
:: acc)
missing
[]
in
if not (StringSet.is_empty missing)
then
Warning.warn
`Missing_primitive
"There are some missing primitives.\n\
Dummy implementations (raising 'Failure' exception) will be used if they are not \
available at runtime.\n\
You can prevent the generation of dummy implementations with the commandline \
option '--disable genprim'\n\
%a"
report_missing_primitives
missing;
(variable_declaration miss, N) :: js
let mark_start_of_generated_code = Debug.find ~even_if_quiet:true "mark-runtime-gen"
let link' ~export_runtime ~standalone ~link (js : Javascript.statement_list) :
Linker.output =
if (not export_runtime) && not standalone
then { runtime_code = js; always_required_codes = [] }
else
let check_missing = standalone in
let t = Timer.make () in
if times () then Format.eprintf "Start Linking...@.";
let js =
if mark_start_of_generated_code ()
then
let open Javascript in
( Expression_statement
(EStr
(Utf8_string.of_string_exn ("--MARK--" ^ "start-of-jsoo-gen" ^ "--MARK--")))
, N )
:: js
else js
in
let used =
let all_provided = Linker.list_all () in
let free =
lazy
(let free = ref StringSet.empty in
let o =
new Js_traverse.fast_freevar (fun s -> free := StringSet.add s !free)
in
o#program js;
!free)
in
match link with
| `All ->
let prim = Primitive.get_external () in
StringSet.union (StringSet.inter prim (Lazy.force free)) all_provided
| `All_from from -> Linker.list_all ~from ()
| `No -> StringSet.empty
| `Needed ->
let prim = Primitive.get_external () in
let all_external = StringSet.union prim all_provided in
StringSet.inter (Lazy.force free) all_external
in
let linkinfos =
let from =
match link with
| `All_from l -> Some l
| `All | `No | `Needed -> None
in
Linker.init ?from ()
in
let linkinfos, js =
let linkinfos, missing = Linker.resolve_deps ~check_missing linkinfos used in
if (not (StringSet.is_empty missing)) && Config.Flag.genprim ()
then
let linkinfos, missing2 =
Linker.resolve_deps
~check_missing
linkinfos
(StringSet.singleton "caml_failwith")
in
let missing = StringSet.union missing missing2 in
linkinfos, gen_missing js missing
else linkinfos, js
in
if times () then Format.eprintf " linking: %a@." Timer.print t;
let js =
if export_runtime
then
let open Javascript in
match Linker.all linkinfos with
| [] -> js
| all ->
let all =
List.map all ~f:(fun name ->
let name = Utf8_string.of_string_exn name in
Property (PNI name, EVar (ident name)))
in
(if standalone
then
( Expression_statement
(EBin
( Eq
, dot
(EVar (ident Global_constant.global_object_))
(Utf8_string.of_string_exn "jsoo_runtime")
, EObj all ))
, N )
else
( Expression_statement
(call
(dot
(EVar (ident (Utf8_string.of_string_exn "Object")))
(Utf8_string.of_string_exn "assign"))
[ dot
(EVar (ident Global_constant.global_object_))
(Utf8_string.of_string_exn "jsoo_runtime")
; EObj all
]
N)
, N ))
:: js
else js
in
let missing = Linker.missing linkinfos in
let output = Linker.link ~check_missing js linkinfos in
if not (List.is_empty missing)
then
{ output with
runtime_code =
(let open Javascript in
( Variable_statement
( Var
, [ DeclPattern
( ObjectBinding
{ list =
List.map
~f:(fun name ->
let name = Utf8_string.of_string_exn name in
Prop_ident (Prop_and_ident (ident name), None))
missing
; rest = None
}
, ( dot
(EVar (ident Global_constant.global_object_))
(Utf8_string.of_string_exn "jsoo_runtime")
, N ) )
] )
, N )
:: output.runtime_code)
}
else output
let check_js js =
let t = Timer.make () in
if times () then Format.eprintf "Start Checks...@.";
let free = ref StringSet.empty in
let o = new Js_traverse.fast_freevar (fun s -> free := StringSet.add s !free) in
o#program js;
let free = !free in
let prim = Primitive.get_external () in
let prov = Linker.list_all () 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
if not (StringSet.is_empty missing)
then
Warning.warn
`Missing_primitive
"There are some missing primitives.\n%a"
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 (
Format.eprintf "Missing variables:@.";
StringSet.iter (fun nm -> Format.eprintf " %s@." nm) other);
if (not (StringSet.is_empty probably_prov)) && debug_linker ()
then (
Format.eprintf "Variables provided by the browser:@.";
StringSet.iter (fun nm -> Format.eprintf " %s@." nm) probably_prov);
if times () then Format.eprintf " checks: %a@." Timer.print t;
js
let name_variables js =
let t = Timer.make () in
if times () then Format.eprintf "Start naming variables...@.";
let js =
if Config.Flag.shortvar ()
then (
let t5 = Timer.make () in
let js = (new Js_traverse.rename_variable ~esm:false)#program js in
if times () then Format.eprintf " shortten vars: %a@." Timer.print t5;
js)
else js
in
let js = Js_assign.program js in
if times () then Format.eprintf " coloring: %a@." Timer.print t;
js
let output formatter ~source_map () js =
let t = Timer.make () in
if times () then Format.eprintf "Start Writing file...@.";
let sm = Js_output.program formatter ~source_map js in
if times () then Format.eprintf " write: %a@." Timer.print t;
sm
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 = Js_traverse.share_constant 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.variable_declaration [ J.ident ident, (e, J.N) ], J.N in
let expr e = J.Expression_statement e, J.N in
let free = ref StringSet.empty in
let o = new Js_traverse.fast_freevar (fun s -> free := StringSet.add s !free) in
o#program js;
let freenames = !free in
let export_shim js =
if StringSet.mem Global_constant.exports freenames
then
if should_export wrap_with_fun
then var Global_constant.exports_ (J.EObj []) :: js
else
let export_node =
let s =
Printf.sprintf
{|((typeof module === 'object' && module.exports) || %s)|}
Global_constant.global_object
in
let lex = Parse_js.Lexer.of_string s in
Parse_js.parse_expr lex
in
var Global_constant.exports_ export_node :: js
else js
in
let old_global_object_shim js =
if StringSet.mem Global_constant.old_global_object freenames
then
var
Global_constant.old_global_object_
(J.EVar (J.ident Global_constant.global_object_))
:: js
else js
in
let efun args body = J.EFun (None, J.fun_ args body J.U) in
let sfun name args body = J.Function_declaration (name, J.fun_ 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 (Utf8_string.of_string_exn "use strict")) :: js
else js
in
f [ J.ident Global_constant.global_object_ ] js
in
match wrap_with_fun with
| `Anonymous -> expr (mk efun)
| `Named name ->
let name = Utf8_string.of_string_exn name in
mk (sfun (J.ident name))
| `Iife ->
expr (J.call (mk efun) [ J.EVar (J.ident Global_constant.global_object_) ] 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) ->
assert (J.is_ident name);
let export_node =
let s =
Printf.sprintf
{|
if (typeof module === 'object' && module.exports) {
module['exports'] = %s;
}
|}
name
in
let lex = Parse_js.Lexer.of_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_string s in
Parse_js.parse lex
in
e @ js
in
if times () then Format.eprintf " packing: %a@." Timer.print t;
js
let simplify_js js =
let t = Timer.make () 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;
if times () then Format.eprintf " optimizing: %a@." Timer.print t;
js
let configure formatter =
let pretty = Config.Flag.pretty () in
Pretty_print.set_compact formatter (not pretty)
let link_and_pack ?(standalone = true) ?(wrap_with_fun = `Iife) ?(link = `No) p =
let export_runtime =
match link with
| `All | `All_from _ -> true
| `Needed | `No -> false
in
p
|> link' ~export_runtime ~standalone ~link
|> pack ~wrap_with_fun ~standalone
|> check_js
let optimize ~shapes ~profile ~keep_flow_data p =
let deadcode_sentinal =
Code.Var.fresh_n "dummy"
in
let opt =
Specialize.switches
+> specialize_js_once_before
+> (match (profile : Profile.t) with
| O1 -> o1
| O2 -> o2
| O3 -> o3)
+> specialize_js_once_after
+> effects_and_exact_calls ~keep_flow_data ~deadcode_sentinal ~shapes profile
+> map_fst5
(match Config.target (), Config.effects () with
| `JavaScript, `Disabled -> Generate_closure.f
| `JavaScript, (`Cps | `Double_translation) | `Wasm, (`Disabled | `Jspi | `Cps)
-> Fun.id
| `JavaScript, `Jspi | `Wasm, `Double_translation -> assert false)
+> map_fst5 deadcode'
in
if times () then Format.eprintf "Start Optimizing...@.";
let t = Timer.make () in
let (program, variable_uses), trampolined_calls, in_cps, global_flow_info, shapes =
opt p
in
let () = if times () then Format.eprintf " optimizations : %a@." Timer.print t in
( { program; variable_uses; trampolined_calls; in_cps; deadcode_sentinal; shapes }
, global_flow_info )
let optimize_for_wasm ~shapes ~profile p =
let optimized_code, global_flow_data =
optimize ~shapes ~profile ~keep_flow_data:true p
in
( optimized_code
, match global_flow_data with
| Some data -> data
| None -> Global_flow.f ~fast:false optimized_code.program )
let full ~standalone ~wrap_with_fun ~shapes ~profile ~link ~source_map ~formatter p =
let optimized_code, _ = optimize ~shapes ~profile ~keep_flow_data:false p in
let exported_runtime = not standalone in
let emit formatter =
generate ~exported_runtime ~wrap_with_fun ~warn_on_unhandled_effect:standalone
+> link_and_pack ~standalone ~wrap_with_fun ~link
+> simplify_js
+> name_variables
+> output formatter ~source_map ()
in
let shapes_v = optimized_code.shapes in
StringMap.iter
(fun name shape ->
if shapes
then
Pretty_print.string
formatter
(Printf.sprintf "//# shape: %s:%s\n" name (Shape.to_string shape)))
shapes_v;
emit formatter optimized_code, shapes_v
let full_no_source_map ~formatter ~shapes ~standalone ~wrap_with_fun ~profile ~link p =
let (_ : Source_map.info * _) =
full ~shapes ~standalone ~wrap_with_fun ~profile ~link ~source_map:false ~formatter p
in
()
let f
?(standalone = true)
?(wrap_with_fun = `Iife)
?(profile = Profile.O1)
?(shapes = false)
~link
~source_map
~formatter
p =
full ~standalone ~wrap_with_fun ~shapes ~profile ~link ~source_map ~formatter p
let f'
?(standalone = true)
?(wrap_with_fun = `Iife)
?(profile = Profile.O1)
~link
formatter
p =
full_no_source_map ~formatter ~shapes:false ~standalone ~wrap_with_fun ~profile ~link p
let from_string ~prims ~debug s formatter =
let p = Parse_bytecode.from_string ~prims ~debug s in
full_no_source_map
~formatter
~shapes:false
~standalone:false
~wrap_with_fun:`Anonymous
~profile:O1
~link:`No
p