Source file linker.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
open! Stdlib
type fragment =
{ provides :
(Parse_info.t option * string * Primitive.kind * Primitive.kind_arg list option)
option
; requires : string list
; version_constraint : ((int -> int -> bool) * string) list list
; weakdef : bool
; code : Javascript.program
; ignore : [ `No | `Because of Primitive.condition ]
}
let loc pi =
match pi with
| Some { Parse_info.src = Some src; line; _ }
| Some { Parse_info.name = Some src; line; _ } ->
Printf.sprintf "%s:%d" src line
| None | Some _ -> "unknown location"
let parse_annot loc s =
match String.drop_prefix ~prefix:"//" s with
| None -> None
| Some s -> (
let buf = Lexing.from_string s in
try
match Annot_parser.annot Annot_lexer.main buf with
| `Requires (_, l) -> Some (`Requires (Some loc, l))
| `Provides (_, n, k, ka) -> Some (`Provides (Some loc, n, k, ka))
| `Version (_, l) -> Some (`Version (Some loc, l))
| `Weakdef _ -> Some (`Weakdef (Some loc))
| `If (_, name) -> Some (`If (Some loc, name))
| `Ifnot (_, name) -> Some (`Ifnot (Some loc, name))
with
| Not_found -> None
| _ -> None)
let error s = Format.ksprintf (fun s -> failwith s) s
let parse_from_lex ~filename lex =
let program, _prev, comments =
try Parse_js.parse' lex
with Parse_js.Parsing_error pi ->
let name =
match pi with
| { Parse_info.src = Some x; _ } | { Parse_info.name = Some x; _ } -> x
| _ -> "??"
in
error
"cannot parse file %S (orig:%S from l:%d, c:%d)@."
filename
name
pi.Parse_info.line
pi.Parse_info.col
in
let rec take_annot_before loc acc = function
| [] -> acc, []
| x :: l ->
if (Js_token.info x).Parse_info.idx <= loc.Parse_info.idx
then
let acc =
match x with
| Js_token.TComment (str, info) -> (
match parse_annot info str with
| None -> acc
| Some a -> a :: acc)
| Js_token.TCommentLineDirective (_, _) -> []
| _ -> acc
in
take_annot_before loc acc l
else acc, x :: l
in
let status, blocks, _comments =
List.fold_left
program
~init:(`Annot [], [], comments)
~f:(fun (status, blocks, comments) t ->
match t with
| _, Javascript.Pi loc ->
let a, rest = take_annot_before loc [] comments in
let status, blocks =
match a, status with
| [], `Code (annot, code) -> `Code (annot, t :: code), blocks
| annot1, `Annot annot2 -> `Code (annot1 @ annot2, [ t ]), blocks
| annot1, `Code (annot2, code2) ->
`Code (annot1, [ t ]), (List.rev annot2, List.rev code2) :: blocks
in
status, blocks, rest
| _, Javascript.N ->
let status, blocks =
match status with
| `Code (annot, code) -> `Code (annot, t :: code), blocks
| `Annot annot -> `Code (annot, [ t ]), blocks
in
status, blocks, comments
| _, Javascript.U -> assert false)
in
let blocks =
match status with
| `Annot _ -> blocks
| `Code (annot, code) -> (List.rev annot, List.rev code) :: blocks
in
let res =
List.rev_map blocks ~f:(fun (annot, code) ->
let fragment =
{ provides = None
; requires = []
; version_constraint = []
; weakdef = false
; code
; ignore = `No
}
in
List.fold_left annot ~init:fragment ~f:(fun fragment a ->
match a with
| `Provides (pi, name, kind, ka) ->
{ fragment with provides = Some (pi, name, kind, ka) }
| `Requires (_, mn) -> { fragment with requires = mn @ fragment.requires }
| `Version (_, l) ->
{ fragment with version_constraint = l :: fragment.version_constraint }
| `Weakdef _ -> { fragment with weakdef = true }
| `If (_, "js-string") as reason ->
if not (Config.Flag.use_js_string ())
then { fragment with ignore = `Because reason }
else fragment
| `Ifnot (_, "js-string") as reason ->
if Config.Flag.use_js_string ()
then { fragment with ignore = `Because reason }
else fragment
| `If (pi, name) | `Ifnot (pi, name) ->
let loc =
match pi with
| None -> ""
| Some loc ->
Format.sprintf "%d:%d" loc.Parse_info.line loc.Parse_info.col
in
let filename =
match pi with
| Some { Parse_info.src = Some x; _ }
| Some { Parse_info.name = Some x; _ } ->
x
| _ -> "??"
in
Format.eprintf "Unkown flag %S in %s %s\n" name filename loc;
fragment))
in
res
let parse_builtin builtin =
let filename = Builtins.File.name builtin in
let content = Builtins.File.content builtin in
let lexbuf = Lexing.from_string content in
let lexbuf =
{ lexbuf with lex_curr_p = { lexbuf.lex_curr_p with pos_fname = filename } }
in
let lex = Parse_js.Lexer.of_lexbuf lexbuf in
parse_from_lex ~filename lex
let parse_string string =
let lexbuf = Lexing.from_string string in
let lex = Parse_js.Lexer.of_lexbuf lexbuf in
parse_from_lex ~filename:"<dummy>" lex
let parse_file f =
let file =
try
match Findlib.path_require_findlib f with
| Some f ->
let pkg, f' =
match String.split ~sep:Filename.dir_sep f with
| [] -> assert false
| pkg :: l -> pkg, List.fold_left l ~init:"" ~f:Filename.concat
in
Fs.absolute_path (Filename.concat (Findlib.find_pkg_dir pkg) f')
| None -> Fs.absolute_path f
with
| Not_found -> error "cannot find file '%s'. @." f
| Sys_error s -> error "%s@." s
in
let lex = Parse_js.Lexer.of_file file in
parse_from_lex ~filename:file lex
class check_and_warn name pi =
object
inherit Js_traverse.free as super
method merge_info from =
let def = from#get_def_name in
let use = from#get_use_name in
let diff = StringSet.diff def use in
let diff = StringSet.remove name diff in
let diff = StringSet.filter (fun s -> not (String.is_prefix s ~prefix:"_")) diff in
if not (StringSet.is_empty diff)
then
warn
"WARN unused for primitive %s at %s:@. %s@."
name
(loc pi)
(String.concat ~sep:", " (StringSet.elements diff));
super#merge_info from
end
let check_primitive ~name pi ~code ~requires =
let free =
if Config.Flag.warn_unused ()
then new check_and_warn name pi
else new Js_traverse.free
in
let _code = free#program code in
let freename = free#get_free_name in
let freename =
List.fold_left requires ~init:freename ~f:(fun freename x ->
StringSet.remove x freename)
in
let freename = StringSet.diff freename Reserved.keyword in
let freename = StringSet.diff freename Reserved.provided in
let freename = StringSet.remove Constant.global_object freename in
if not (StringSet.mem name free#get_def_name)
then
warn
"warning: primitive code does not define value with the expected name: %s (%s)@."
name
(loc pi);
if not (StringSet.is_empty freename)
then (
warn "warning: free variables in primitive code %S (%s)@." name (loc pi);
warn "vars: %s@." (String.concat ~sep:", " (StringSet.elements freename)))
let version_match =
List.for_all ~f:(fun (op, str) -> op Ocaml_version.(compare current (split str)) 0)
type always_required =
{ filename : string
; program : Javascript.program
}
type state =
{ ids : IntSet.t
; always_required_codes : always_required list
; codes : Javascript.program list
}
type output =
{ runtime_code : Javascript.program
; always_required_codes : always_required list
}
let last_code_id = ref 0
let provided = Hashtbl.create 31
let provided_rev = Hashtbl.create 31
let code_pieces = Hashtbl.create 31
let always_included = ref []
class traverse_and_find_named_values all =
object
inherit Js_traverse.map as self
method expression x =
let open Javascript in
(match x with
| ECall
(EVar (S { name = "caml_named_value"; _ }), [ (EStr (v, _), `Not_spread) ], _)
->
all := StringSet.add v !all
| _ -> ());
self#expression x
end
let find_named_value code =
let all = ref StringSet.empty in
let p = new traverse_and_find_named_values all in
ignore (p#program code);
!all
let load_fragment
~filename
{ provides; requires; version_constraint; weakdef; code; ignore } =
match ignore with
| `Because _ -> ()
| `No ->
let vmatch =
match version_constraint with
| [] -> true
| l -> List.exists l ~f:version_match
in
if vmatch
then (
incr last_code_id;
let id = !last_code_id in
match provides with
| None -> always_included := { filename; program = code } :: !always_included
| Some (pi, name, kind, ka) ->
let code = Macro.f code in
let module J = Javascript in
let rec find = function
| [] -> None
| (J.Function_declaration (J.S { J.name = n; _ }, l, _, _), _) :: _
when String.equal name n ->
Some (List.length l)
| _ :: rem -> find rem
in
let arity = find code in
let named_values = find_named_value code in
Primitive.register name kind ka arity;
StringSet.iter Primitive.register_named_value named_values;
(if Hashtbl.mem provided name
then
let _, ploc, weakdef = Hashtbl.find provided name in
if not weakdef
then
warn
"warning: overriding primitive %S\n old: %s\n new: %s@."
name
(loc ploc)
(loc pi));
Hashtbl.add provided name (id, pi, weakdef);
Hashtbl.add provided_rev id (name, pi);
check_primitive ~name pi ~code ~requires;
Hashtbl.add code_pieces id (code, requires))
let add_file filename = List.iter (parse_file filename) ~f:(load_fragment ~filename)
let get_provided () =
Hashtbl.fold (fun k _ acc -> StringSet.add k acc) provided StringSet.empty
let check_deps () =
let provided = get_provided () in
Hashtbl.iter
(fun id (code, requires) ->
let traverse = new Js_traverse.free in
let _js = traverse#program code in
let free = traverse#get_free_name in
let requires = List.fold_right requires ~init:StringSet.empty ~f:StringSet.add in
let real = StringSet.inter free provided in
let missing = StringSet.diff real requires in
if not (StringSet.is_empty missing)
then
try
let name, ploc = Hashtbl.find provided_rev id in
warn
"code providing %s (%s) may miss dependencies: %s\n"
name
(loc ploc)
(String.concat ~sep:", " (StringSet.elements missing))
with Not_found ->
())
code_pieces
let load_files l =
List.iter l ~f:add_file;
check_deps ()
let rec resolve_dep_name_rev visited path nm =
let id =
try
let x, _, _ = Hashtbl.find provided nm in
x
with Not_found -> error "missing dependency '%s'@." nm
in
resolve_dep_id_rev visited path id
and resolve_dep_id_rev visited path id =
if IntSet.mem id visited.ids
then (
if List.memq id ~set:path
then
error
"circular dependency: %s"
(String.concat
~sep:", "
(List.map path ~f:(fun id -> fst (Hashtbl.find provided_rev id))));
visited)
else
let path = id :: path in
let code, req = Hashtbl.find code_pieces id in
let visited = { visited with ids = IntSet.add id visited.ids } in
let visited =
List.fold_left req ~init:visited ~f:(fun visited nm ->
resolve_dep_name_rev visited path nm)
in
let visited = { visited with codes = code :: visited.codes } in
visited
let init () =
{ ids = IntSet.empty; always_required_codes = List.rev !always_included; codes = [] }
let resolve_deps ?(linkall = false) visited_rev used =
let missing, visited_rev =
if linkall
then
let prog, set =
Hashtbl.fold
(fun nm (_id, _, _) (visited, set) ->
resolve_dep_name_rev visited [] nm, StringSet.add nm set)
provided
(visited_rev, StringSet.empty)
in
let missing = StringSet.diff used set in
missing, prog
else
StringSet.fold
(fun nm (missing, visited) ->
if Hashtbl.mem provided nm
then missing, resolve_dep_name_rev visited [] nm
else StringSet.add nm missing, visited)
used
(StringSet.empty, visited_rev)
in
visited_rev, missing
let link program state =
let runtime = List.flatten (List.rev (program :: state.codes)) in
let always_required = state.always_required_codes in
{ runtime_code = runtime; always_required_codes = always_required }
let all state =
IntSet.fold
(fun id acc ->
try
let name, _ = Hashtbl.find provided_rev id in
name :: acc
with Not_found -> acc)
state.ids
[]