package smtml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file feature_extraction.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
(* SPDX-License-Identifier: MIT *)
(* Copyright (C) 2023-2024 formalsec *)
(* Written by the Smtml programmers *)

open Regression_model

let string_of_unop (unop : Ty.Unop.t) : string =
  match unop with
  | Neg -> "Neg"
  | Not -> "Not"
  | Clz -> "Clz"
  | Ctz -> "Ctz"
  | Popcnt -> "Popcnt"
  (* Float *)
  | Abs -> "Abs"
  | Sqrt -> "Sqrt"
  | Is_normal -> "Is_normal"
  | Is_subnormal -> "Is_subnormal"
  | Is_negative -> "Is_negative"
  | Is_positive -> "Is_positive"
  | Is_infinite -> "Is_infinite"
  | Is_nan -> "Is_nan"
  | Is_zero -> "Is_zero"
  | Ceil -> "Ceil"
  | Floor -> "Floor"
  | Trunc -> "Trunc"
  | Nearest -> "Nearest"
  | Head -> "Head"
  | Tail -> "Tail"
  | Reverse -> "Reverse"
  | Length -> "Length"
  (* String *)
  | Trim -> "Trim"
  (* RegExp *)
  | Regexp_star -> "Regexp_star"
  | Regexp_loop _ -> "Regexp_loop"
  | Regexp_plus -> "Regexp_plus"
  | Regexp_opt -> "Regexp_opt"
  | Regexp_comp -> "Regexp_comp"

let string_of_binop (binop : Ty.Binop.t) : string =
  match binop with
  | Add -> "Add"
  | Sub -> "Sub"
  | Mul -> "Mul"
  | Div -> "Div"
  | DivU -> "DivU"
  | Rem -> "Rem"
  | RemU -> "RemU"
  | Shl -> "Shl"
  | ShrA -> "ShrA"
  | ShrL -> "ShrL"
  | And -> "And"
  | Or -> "Or"
  | Xor -> "Xor"
  | Implies -> "Implies"
  | Pow -> "Pow"
  | Min -> "Min"
  | Max -> "Max"
  | Copysign -> "Copysign"
  | Rotl -> "Rotl"
  | Rotr -> "Rotr"
  | At -> "At"
  | List_cons -> "List_cons"
  | List_append -> "List_append"
  (* String *)
  | String_prefix -> "String_prefix"
  | String_suffix -> "String_suffix"
  | String_contains -> "String_contains"
  | String_last_index -> "String_last_index"
  | String_in_re -> "String_in_re"
  (* Regexp *)
  | Regexp_range -> "Regexp_range"
  | Regexp_inter -> "Regexp_inter"
  | Regexp_diff -> "Regexp_diff"

let string_of_triop (triop : Ty.Triop.t) : string =
  match triop with
  | Ite -> "Ite"
  | List_set -> "List_set"
  (* String *)
  | String_extract -> "String_extract"
  | String_replace -> "String_replace"
  | String_index -> "String_index"
  | String_replace_all -> "String_replace_all"
  | String_replace_re -> "String_replace_re"
  | String_replace_re_all -> "String_replace_re_all"

let string_of_relop (relop : Ty.Relop.t) : string =
  match relop with
  | Eq -> "Eq"
  | Ne -> "Ne"
  | Lt -> "Lt"
  | LtU -> "LtU"
  | Le -> "Le"
  | LeU -> "LeU"

let string_of_cvtop (cvtop : Ty.Cvtop.t) : string =
  match cvtop with
  | ToString -> "ToString"
  | OfString -> "OfString"
  | ToBool -> "ToBool"
  | OfBool -> "OfBool"
  | Reinterpret_int -> "Reinterpret_int"
  | Reinterpret_float -> "Reinterpret_float"
  | DemoteF64 -> "DemoteF64"
  | PromoteF32 -> "PromoteF32"
  | ConvertSI32 -> "ConvertSI32"
  | ConvertUI32 -> "ConvertUI32"
  | ConvertSI64 -> "ConvertSI64"
  | ConvertUI64 -> "ConvertUI64"
  | TruncSF32 -> "TruncSF32"
  | TruncUF32 -> "TruncUF32"
  | TruncSF64 -> "TruncSF64"
  | TruncUF64 -> "TruncUF64"
  | Trunc_sat_f32_s -> "Trunc_sat_f32_s"
  | Trunc_sat_f32_u -> "Trunc_sat_f32_u"
  | Trunc_sat_f64_s -> "Trunc_sat_f64_s"
  | Trunc_sat_f64_u -> "Trunc_sat_f64_u"
  | WrapI64 -> "WrapI64"
  | Sign_extend _ -> "Sign_extend"
  | Zero_extend _ -> "Zero_extend"
  (* String *)
  | String_to_code -> "String_to_code"
  | String_from_code -> "String_from_code"
  | String_to_int -> "String_to_int"
  | String_from_int -> "String_from_int"
  | String_to_float -> "String_to_float"
  | String_to_re -> "String_to_re"

let string_of_ty (ty : Ty.t) : string =
  match ty with
  | Ty_app -> "Ty_app"
  | Ty_bitv _ -> "Ty_bitv"
  | Ty_bool -> "Ty_bool"
  | Ty_fp _ -> "Ty_fp"
  | Ty_int -> "Ty_int"
  | Ty_list -> "Ty_list"
  | Ty_none -> "Ty_none"
  | Ty_real -> "Ty_real"
  | Ty_str -> "Ty_str"
  | Ty_unit -> "Ty_unit"
  | Ty_regexp -> "Ty_regexp"
  | Ty_roundingMode -> "Ty_roundingMode"

let string_of_naryop (naryop : Ty.Naryop.t) : string =
  match naryop with
  | Logand -> "Logand"
  | Logor -> "Logor"
  | Concat -> "Concat"
  | Regexp_union -> "Regexp_union"
  | Distinct -> "Distinct"

let string_of_expr_kind (e : Expr.expr) _ty : string =
  match e with
  | Val _ -> "Val"
  | Ptr _ -> "Ptr"
  | Symbol _ -> "Symbol"
  | List _ -> "List"
  | App _ -> "App"
  | Unop _ -> "Unop"
  | Binop _ -> "Binop"
  | Triop _ -> "Triop"
  | Relop _ -> "Relop"
  | Cvtop _ -> "Cvtop"
  | Naryop _ -> "Naryop"
  | Extract _ -> "Extract"
  | Concat _ -> "Concat"
  | Binder _ -> "Binder"

(* Define all constructors you want to track *)
let ctor_names =
  let expr_kinds =
    [ "Val"
    ; "Ptr"
    ; "Symbol"
    ; "List"
    ; "App"
    ; "Unop"
    ; "Binop"
    ; "Triop"
    ; "Relop"
    ; "Cvtop"
    ; "Naryop"
    ; "Extract"
    ; "Concat"
    ; "Binder"
    ]
  in
  let unops =
    List.map string_of_unop
      [ Ty.Unop.Neg
      ; Not
      ; Clz
      ; Ctz
      ; Popcnt
      ; Abs (* Float *)
      ; Sqrt
      ; Is_normal
      ; Is_subnormal
      ; Is_negative
      ; Is_positive
      ; Is_infinite
      ; Is_nan
      ; Is_zero
      ; Ceil
      ; Floor
      ; Trunc
      ; Nearest
      ; Head
      ; Tail
      ; Reverse
      ; Length
      ; Trim (* String *)
      ; Regexp_star (* RegExp *)
      ; Regexp_loop (0, 0)
      ; Regexp_plus
      ; Regexp_opt
      ; Regexp_comp
      ]
  in
  let binops =
    List.map string_of_binop
      [ Add
      ; Sub
      ; Mul
      ; Div
      ; DivU
      ; Rem
      ; RemU
      ; Shl
      ; ShrA
      ; ShrL
      ; And
      ; Or
      ; Xor
      ; Implies
      ; Pow
      ; Min
      ; Max
      ; Copysign
      ; Rotl
      ; Rotr
      ; At
      ; List_cons
      ; List_append (* String *)
      ; String_prefix
      ; String_suffix
      ; String_contains
      ; String_last_index
      ; String_in_re (* Regexp *)
      ; Regexp_range
      ; Regexp_inter
      ; Regexp_diff
      ]
  in
  let triops =
    List.map string_of_triop
      [ Ite
      ; List_set (* String *)
      ; String_extract
      ; String_replace
      ; String_index
      ; String_replace_all
      ; String_replace_re
      ; String_replace_re_all
      ]
  in
  let relops = List.map string_of_relop [ Eq; Ne; Lt; LtU; Le; LeU ] in
  let cvtops =
    List.map string_of_cvtop
      [ ToString
      ; OfString
      ; ToBool
      ; OfBool
      ; Reinterpret_int
      ; Reinterpret_float
      ; DemoteF64
      ; PromoteF32
      ; ConvertSI32
      ; ConvertUI32
      ; ConvertSI64
      ; ConvertUI64
      ; TruncSF32
      ; TruncUF32
      ; TruncSF64
      ; TruncUF64
      ; Trunc_sat_f32_s
      ; Trunc_sat_f32_u
      ; Trunc_sat_f64_s
      ; Trunc_sat_f64_u
      ; WrapI64
      ; Sign_extend 0
      ; Zero_extend 0 (* String *)
      ; String_to_code
      ; String_from_code
      ; String_to_int
      ; String_from_int
      ; String_to_float
      ; String_to_re
      ]
  in
  let naryop =
    List.map string_of_naryop [ Logand; Logor; Concat; Regexp_union ]
  in
  let tys =
    List.map string_of_ty
      [ Ty_app
      ; Ty_bitv 0
      ; Ty_bool
      ; Ty_fp 0
      ; Ty_int
      ; Ty_list
      ; Ty_none
      ; Ty_real
      ; Ty_str
      ; Ty_unit
      ; Ty_regexp
      ; Ty_roundingMode
      ]
  in
  expr_kinds @ unops @ binops @ triops @ relops @ cvtops @ naryop @ tys

let final_names =
  "solver" :: "model" :: "max_depth" :: "mean_depth" :: "nb_queries" :: "time"
  :: ctor_names

(* initialize feature map with all zeros *)

let extract_feats_aux : Expr.t -> int FeatMap.t =
  let incr_feat feats key =
    FeatMap.update key
      (function None -> Some 1 | Some c -> Some (c + 1))
      feats
  in
  let rec visit depth feats (e : Expr.t) =
    let feats = incr_feat feats (string_of_expr_kind e.node (Expr.ty e)) in
    match e.node with
    | Val _ | Symbol _ -> (depth, feats)
    | Ptr { offset; _ } -> visit (depth + 1) feats offset
    | List lst ->
      List.fold_left
        (fun (depth, feats) e ->
          let depth', feats = visit depth feats e in
          (Int.max depth depth', feats) )
        (depth + 1, feats)
        lst
    | Naryop (ty, naryop, lst) ->
      let feats = incr_feat feats (string_of_ty ty) in
      let feats = incr_feat feats (string_of_naryop naryop) in
      List.fold_left
        (fun (depth, feats) e ->
          let depth', feats = visit depth feats e in
          (Int.max depth depth', feats) )
        (depth + 1, feats)
        lst
    | App (_, lst) ->
      List.fold_left
        (fun (depth, feats) e ->
          let depth', feats = visit depth feats e in
          (Int.max depth depth', feats) )
        (depth + 1, feats)
        lst
    | Unop (ty, unop, t) ->
      let feats = incr_feat feats (string_of_ty ty) in
      let feats = incr_feat feats (string_of_unop unop) in
      visit (depth + 1) feats t
    | Cvtop (ty, cvtop, t) ->
      let feats = incr_feat feats (string_of_ty ty) in
      let feats = incr_feat feats (string_of_cvtop cvtop) in
      visit (depth + 1) feats t
    | Extract (t, _, _) -> visit (depth + 1) feats t
    | Binop (ty, binop, e1, e2) ->
      let feats = incr_feat feats (string_of_ty ty) in
      let feats = incr_feat feats (string_of_binop binop) in
      let depth1, feats = visit (depth + 1) feats e1 in
      let depth2, feats = visit (depth + 1) feats e2 in
      (Int.max depth1 depth2, feats)
    | Relop (ty, relop, e1, e2) ->
      let feats = incr_feat feats (string_of_ty ty) in
      let feats = incr_feat feats (string_of_relop relop) in
      let depth1, feats = visit (depth + 1) feats e1 in
      let depth2, feats = visit (depth + 1) feats e2 in
      (Int.max depth1 depth2, feats)
    | Concat (e1, e2) ->
      let depth1, feats = visit (depth + 1) feats e1 in
      let depth2, feats = visit (depth + 1) feats e2 in
      (Int.max depth1 depth2, feats)
    | Triop (ty, triop, e1, e2, e3) ->
      let feats = incr_feat feats (string_of_ty ty) in
      let feats = incr_feat feats (string_of_triop triop) in
      let depth1, feats = visit (depth + 1) feats e1 in
      let depth2, feats = visit (depth + 1) feats e2 in
      let depth3, feats = visit (depth + 1) feats e3 in
      (Int.max (Int.max depth1 depth2) depth3, feats)
    | Binder (_, lst, t) ->
      List.fold_left
        (fun (depth, feats) e ->
          let depth', feats = visit depth feats e in
          (Int.max depth depth', feats) )
        (depth + 1, feats)
        (t :: lst)
  in
  fun expr ->
    let depth, feats = visit 1 FeatMap.empty expr in
    FeatMap.add "depth" depth feats

let read_marshalled_file path : (string * Expr.t list * bool * int64) list =
  let results = ref [] in
  try
    let ic = In_channel.open_bin path in
    ( try
        while true do
          let res : (string * Expr.t list * bool * int64) list =
            Marshal.from_channel ic
          in
          Log.debug (fun k -> k "Read %d results@." (List.length res));
          results := List.rev_append res !results
        done
      with End_of_file -> Log.debug (fun k -> k "Finished reading results@.") );
    In_channel.close ic;
    List.rev !results
  with e ->
    Fmt.epr "Failed to read %s\nBecause %s\n%!" path (Printexc.to_string e);
    []

let extract_feats assertions =
  let feats, depth_acc =
    List.fold_left
      (fun (feats_acc, depth_acc) expr ->
        let feats = extract_feats_aux expr in
        let depth_acc = depth_acc + FeatMap.find_def0 "depth" feats in
        let feats_acc =
          FeatMap.union
            (fun key v1 v2 ->
              match key with
              | "depth" -> Some (Int.max v1 v2) (* actually max_depth *)
              | _ -> Some (v1 + v2) )
            feats feats_acc
        in
        (feats_acc, depth_acc) )
      (FeatMap.empty, 0) assertions
  in
  let nb_exprs = List.length assertions in
  FeatMap.add "nb_queries" nb_exprs
  @@ FeatMap.add "mean_depth" (depth_acc / nb_exprs)
  @@ FeatMap.add "max_depth"
       ( match FeatMap.find_opt "depth" feats with
       | None -> assert false
       | Some v -> v )
       (FeatMap.remove "depth" feats)

let extract_feats_wtime assertions runtime =
  FeatMap.add "time" (Int64.to_int runtime) (extract_feats assertions)

let cmd directory output_csv =
  let entries = read_marshalled_file (Fpath.to_string directory) in
  let res : ((unit, [> Rresult.R.msg ]) result, [> Rresult.R.msg ]) result =
    Bos.OS.File.with_oc output_csv
      (fun oc entries ->
        Out_channel.output_string oc
          (String.cat (String.concat "," final_names) "\n");
        List.iter
          (fun (solver_name, exprs, model, t) ->
            if List.compare_lengths exprs [] > 0 then
              let feats = extract_feats_wtime exprs t in
              let row =
                List.map
                  (fun name ->
                    if String.equal name "solver" then solver_name
                    else if String.equal name "model" then Bool.to_string model
                    else
                      let count = FeatMap.find_def0 name feats in
                      string_of_int count )
                  final_names
              in
              let row = String.cat (String.concat "," row) "\n" in
              Out_channel.output_string oc row )
          entries;
        Ok () )
      entries
  in
  match Rresult.R.join res with
  | Error (`Msg m) -> Fmt.failwith "%s" m
  | Ok () -> Log.debug (fun k -> k "Done writing to %a\n%!" Fpath.pp output_csv)