-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathdebuginfo.ml
345 lines (292 loc) · 10.8 KB
/
debuginfo.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
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Xavier Leroy, projet Gallium, INRIA Rocquencourt *)
(* *)
(* Copyright 2006 Institut National de Recherche en Informatique et *)
(* en Automatique. *)
(* *)
(* All rights reserved. This file is distributed under the terms of *)
(* the GNU Lesser General Public License version 2.1, with the *)
(* special exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
open! Int_replace_polymorphic_compare
open Lexing
open Location
module Scoped_location = struct
type scope_item =
| Sc_anonymous_function
| Sc_value_definition
| Sc_module_definition
| Sc_class_definition
| Sc_method_definition
| Sc_partial_or_eta_wrapper
| Sc_lazy
let equal_scope_item si1 si2 =
match si1, si2 with
| Sc_anonymous_function, Sc_anonymous_function
| Sc_value_definition, Sc_value_definition
| Sc_module_definition, Sc_module_definition
| Sc_class_definition, Sc_class_definition
| Sc_method_definition, Sc_method_definition
| Sc_partial_or_eta_wrapper, Sc_partial_or_eta_wrapper
| Sc_lazy, Sc_lazy -> true
| (Sc_anonymous_function | Sc_value_definition | Sc_module_definition
| Sc_class_definition | Sc_method_definition | Sc_partial_or_eta_wrapper
| Sc_lazy), _ -> false
type scopes =
| Empty
| Cons of {item: scope_item; str: string; str_fun: string; name : string; prev: scopes;
assume_zero_alloc: bool}
let str = function
| Empty -> ""
| Cons r -> r.str
let str_fun = function
| Empty -> "(fun)"
| Cons r -> r.str_fun
let cons scopes item str name ~assume_zero_alloc =
Cons {item; str; str_fun = str ^ ".(fun)"; name; prev = scopes;
assume_zero_alloc}
let empty_scopes = Empty
let add_parens_if_symbolic = function
| "" -> ""
| s ->
match s.[0] with
| 'a'..'z' | 'A'..'Z' | '_' | '0'..'9' -> s
| _ -> "(" ^ s ^ ")"
let dot ?(sep = ".") ?no_parens scopes s =
let s =
match no_parens with
| None -> add_parens_if_symbolic s
| Some () -> s
in
match scopes with
| Empty -> s
| Cons {str; _} -> str ^ sep ^ s
let enter_anonymous_function ~scopes ~assume_zero_alloc =
let str = str_fun scopes in
Cons {item = Sc_anonymous_function; str; str_fun = str; name = ""; prev = scopes;
assume_zero_alloc }
let enter_value_definition ~scopes ~assume_zero_alloc id =
cons scopes Sc_value_definition (dot scopes (Ident.name id)) (Ident.name id)
~assume_zero_alloc
let enter_compilation_unit ~scopes cu =
let name = Compilation_unit.name_as_string cu in
cons scopes Sc_module_definition (dot scopes name) name
~assume_zero_alloc:false
let enter_module_definition ~scopes id =
cons scopes Sc_module_definition (dot scopes (Ident.name id)) (Ident.name id)
~assume_zero_alloc:false
let enter_class_definition ~scopes id =
cons scopes Sc_class_definition (dot scopes (Ident.name id)) (Ident.name id)
~assume_zero_alloc:false
let enter_method_definition ~scopes (s : Asttypes.label) =
let str =
match scopes with
| Cons {item = Sc_class_definition; _} -> dot ~sep:"#" scopes s
| _ -> dot scopes s
in
cons scopes Sc_method_definition str s ~assume_zero_alloc:false
let enter_lazy ~scopes = cons scopes Sc_lazy (str scopes) ""
~assume_zero_alloc:false
let enter_partial_or_eta_wrapper ~scopes =
cons scopes Sc_partial_or_eta_wrapper (dot ~no_parens:() scopes "(partial)") ""
~assume_zero_alloc:false
let set_assume_zero_alloc ~scopes =
match scopes with
| Empty -> Empty
| Cons { assume_zero_alloc = true } -> scopes
| Cons { item; str; str_fun; name; prev; assume_zero_alloc = false; } ->
Cons { item; str; str_fun; name; prev; assume_zero_alloc = true; }
let get_assume_zero_alloc ~scopes =
match scopes with
| Empty -> false
| Cons { assume_zero_alloc; _ } -> assume_zero_alloc
let string_of_scopes = function
| Empty -> "<unknown>"
| Cons {str; assume_zero_alloc; _} ->
if assume_zero_alloc then str^"(assume zero_alloc)"
else str
let string_of_scopes =
let module StringSet = Set.Make (String) in
let repr = ref StringSet.empty in
fun scopes ->
let res = string_of_scopes scopes in
match StringSet.find_opt res !repr with
| Some x -> x
| None ->
repr := StringSet.add res !repr;
res
type t =
| Loc_unknown
| Loc_known of
{ loc : Location.t;
scopes : scopes; }
let of_location ~scopes loc =
if Location.is_none loc then
Loc_unknown
else
Loc_known { loc; scopes }
let to_location = function
| Loc_unknown -> Location.none
| Loc_known { loc; _ } -> loc
let string_of_scoped_location = function
| Loc_unknown -> "??"
| Loc_known { loc = _; scopes } -> string_of_scopes scopes
let map_scopes f t =
match t with
| Loc_unknown -> Loc_unknown
| Loc_known { loc; scopes } -> Loc_known { loc; scopes = f ~scopes }
end
type item = {
dinfo_file: string;
dinfo_line: int;
dinfo_char_start: int;
dinfo_char_end: int;
dinfo_start_bol: int;
dinfo_end_bol: int;
dinfo_end_line: int;
dinfo_scopes: Scoped_location.scopes;
}
module Dbg = struct
type t = item list
(* CR-someday afrisch: FWIW, the current compare function does not seem very
good, since it reverses the two lists. I don't know how long the lists are,
nor if the specific currently implemented ordering is useful in other
contexts, but if one wants to use Map, a more efficient comparison should
be considered. *)
let compare dbg1 dbg2 =
let rec loop ds1 ds2 =
match ds1, ds2 with
| [], [] -> 0
| _ :: _, [] -> 1
| [], _ :: _ -> -1
| d1 :: ds1, d2 :: ds2 ->
let c = String.compare d1.dinfo_file d2.dinfo_file in
if c <> 0 then c else
let c = Int.compare d1.dinfo_line d2.dinfo_line in
if c <> 0 then c else
let c = Int.compare d1.dinfo_char_end d2.dinfo_char_end in
if c <> 0 then c else
let c = Int.compare d1.dinfo_char_start d2.dinfo_char_start in
if c <> 0 then c else
let c = Int.compare d1.dinfo_start_bol d2.dinfo_start_bol in
if c <> 0 then c else
let c = Int.compare d1.dinfo_end_bol d2.dinfo_end_bol in
if c <> 0 then c else
let c = Int.compare d1.dinfo_end_line d2.dinfo_end_line in
if c <> 0 then c else
loop ds1 ds2
in
loop (List.rev dbg1) (List.rev dbg2)
let is_none dbg =
match dbg with
| [] -> true
| _ :: _ -> false
let hash dbg =
List.fold_left (fun hash item -> Hashtbl.hash (hash, item)) 0 dbg
let to_string dbg =
match dbg with
| [] -> ""
| ds ->
let items =
List.map
(fun d ->
Printf.sprintf "%s:%d,%d-%d"
d.dinfo_file d.dinfo_line d.dinfo_char_start d.dinfo_char_end)
ds
in
"{" ^ String.concat ";" items ^ "}"
let to_list t = t
let length t = List.length t
end
type t = { dbg : Dbg.t; assume_zero_alloc : bool }
type alloc_dbginfo_item =
{ alloc_words : int;
alloc_dbg : t }
type alloc_dbginfo = alloc_dbginfo_item list
let none = { dbg = []; assume_zero_alloc = false }
let to_string { dbg; assume_zero_alloc; } =
let s = Dbg.to_string dbg in
if assume_zero_alloc then s^"(assume zero_alloc)" else s
let item_from_location ~scopes loc =
let valid_endpos =
String.equal loc.loc_end.pos_fname loc.loc_start.pos_fname in
{ dinfo_file = loc.loc_start.pos_fname;
dinfo_line = loc.loc_start.pos_lnum;
dinfo_char_start = loc.loc_start.pos_cnum - loc.loc_start.pos_bol;
dinfo_char_end =
if valid_endpos
then loc.loc_end.pos_cnum - loc.loc_start.pos_bol
else loc.loc_start.pos_cnum - loc.loc_start.pos_bol;
dinfo_start_bol = loc.loc_start.pos_bol;
dinfo_end_bol =
if valid_endpos then loc.loc_end.pos_bol
else loc.loc_start.pos_bol;
dinfo_end_line =
if valid_endpos then loc.loc_end.pos_lnum
else loc.loc_start.pos_lnum;
dinfo_scopes = scopes
}
let from_location = function
| Scoped_location.Loc_unknown -> { dbg = []; assume_zero_alloc = false; }
| Scoped_location.Loc_known {scopes; loc} ->
assert (not (Location.is_none loc));
let assume_zero_alloc = Scoped_location.get_assume_zero_alloc ~scopes in
{ dbg = [item_from_location ~scopes loc]; assume_zero_alloc; }
let to_location { dbg; assume_zero_alloc=_ } =
match dbg with
| [] -> Location.none
| d :: _ ->
let loc_start =
{ pos_fname = d.dinfo_file;
pos_lnum = d.dinfo_line;
pos_bol = d.dinfo_start_bol;
pos_cnum = d.dinfo_start_bol + d.dinfo_char_start;
} in
let loc_end =
{ pos_fname = d.dinfo_file;
pos_lnum = d.dinfo_end_line;
pos_bol = d.dinfo_end_bol;
pos_cnum = d.dinfo_start_bol + d.dinfo_char_end;
} in
{ loc_ghost = false; loc_start; loc_end; }
let inline { dbg = dbg1; assume_zero_alloc = a1; }
{ dbg = dbg2; assume_zero_alloc = a2; } =
{ dbg = dbg1 @ dbg2; assume_zero_alloc = a1 || a2; }
let is_none { dbg; assume_zero_alloc } =
(not assume_zero_alloc) && Dbg.is_none dbg
let compare { dbg = dbg1; assume_zero_alloc = a1; }
{ dbg = dbg2; assume_zero_alloc = a2; } =
let res = Dbg.compare dbg1 dbg2 in
if res <> 0 then res else Bool.compare a1 a2
let rec print_compact ppf t =
let print_item item =
Format.fprintf ppf "%a:%i"
Location.print_filename item.dinfo_file
item.dinfo_line;
if item.dinfo_char_start >= 0 then begin
Format.fprintf ppf ",%i--%i" item.dinfo_char_start item.dinfo_char_end
end
in
match t with
| [] -> ()
| [item] -> print_item item
| item::t ->
print_item item;
Format.fprintf ppf ";";
print_compact ppf t
let print_compact ppf { dbg; } = print_compact ppf dbg
let merge ~into:{ dbg = dbg1; assume_zero_alloc = a1; }
{ dbg = dbg2; assume_zero_alloc = a2 } =
(* Keep the first [dbg] info to match existing behavior.
When assume_zero_alloc is only on one of the inputs but not both, keep [dbg]
from the other.
*)
{ dbg = if a1 && not a2 then dbg2 else dbg1;
assume_zero_alloc = a1 && a2
}
let assume_zero_alloc t = t.assume_zero_alloc
let get_dbg t = t.dbg