package asli

  1. Overview
  2. Docs

Source file asl_utils.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
(****************************************************************
 * ASL utility functions
 *
 * Copyright Arm Limited (c) 2017-2019
 * SPDX-Licence-Identifier: BSD-3-Clause
 ****************************************************************)

(** ASL utility functions *)

module PP   = Asl_parser_pp
module AST  = Asl_ast

open AST
open Asl_visitor

(****************************************************************)
(** {2 Bindings and IdentSet}                                   *)
(****************************************************************)

(** {2 Bindings: maps indexed by identifiers} *)
module Bindings = Map.Make(AST.Id)

(** add association list to bindings *)
let add_bindings (bs: 'a Bindings.t) (xs: (ident * 'a) list): 'a Bindings.t =
    List.fold_left (fun a (k, v) -> Bindings.add k v a) bs xs

(** create bindings from association list *)
let mk_bindings (xs: (ident * 'a) list): 'a Bindings.t =
    add_bindings Bindings.empty xs

(** print bindings *)
let pp_bindings (pp: 'a -> string) (bs: 'a Bindings.t): string =
    String.concat ", " (List.map (fun (k, v) -> pprint_ident k ^"->"^ pp v) (Bindings.bindings bs))


(** {2 Sets of identifiers} *)
module IdentSet = Set.Make(Id)

(** merge a list of sets *)
let unionSets (idss: IdentSet.t list): IdentSet.t =
    List.fold_left IdentSet.union IdentSet.empty idss

(** add v to set of identifiers mapped to k *)
let addToBindingSet (k: ident) (v: ident) (bs: IdentSet.t Bindings.t): IdentSet.t Bindings.t =
    Bindings.update k (fun old ->
        (match old with
        | None    -> Some (IdentSet.singleton v)
        | Some vs -> Some (IdentSet.add v vs)
        )
    ) bs

(** convert identifier set to sorted list of identifiers

    The implementation is trivial and exists mostly to emphasize that the
    resulting list is sorted
 *)
let to_sorted_list (s: IdentSet.t): ident list =
    IdentSet.elements s


(****************************************************************)
(** {2 Equivalence classes}                                     *)
(****************************************************************)

(** Equivalence classes are represented by trees.

    The root of the tree is the canonical member of the class.
    Traversing the parent node takes you closer to the canonical member.
    The root is its own parent.
 *)
type tree = {
    mutable parent : tree;
    data : ident;
}

(** Equivalence class support (to support unification, and similar)

    The implementation is based on
    {{:https://en.wikipedia.org/wiki/Disjoint-set_data_structure}Wikipedia: Union-Find}.
    I have not implemented all the optimizations they suggest
    because I expect sets to be quite small in practice.
 *)

class equivalences = object (self)

    (* Mapping from elements to the set containing them *)
    val mutable forest : tree Bindings.t = Bindings.empty

    (* Find the root (canonical member of) the set.
     * Implements "path-splitting" optimisation that makes every node
     * point to its grandfather so each traversal reduces height of tree.
     *)
    method private find (x: tree): tree =
        let r = ref x in
        while !r.parent != !r do
            let next = !r.parent in
            !r.parent <- next.parent;
            r := next
        done;
        !r

    (* Find the root of the set containing 'x' - creating a new
     * set if not already known *)
    method private find_ident (x: ident): tree =
        let s = (match Bindings.find_opt x forest with
        | None ->
                let rec t = { parent = t; data = x; } in
                t
        | Some t ->
                self#find t
        ) in
        forest <- Bindings.add x s forest;
        s

    (* Find the canonical member of the set containing 'x' *)
    method canonicalize (x: ident): ident =
        let s = self#find_ident x in
        s.data

    (* Merge the sets containing 'x' and 'y' *)
    method merge (x: ident) (y: ident): unit =
        let x' = self#find_ident x in
        let y' = self#find_ident y in
        if x != y then y'.parent <- x'

    (* Optimization: short circuit every tree so that they all point directly at root *)
    method private normalize: unit =
        forest <- Bindings.map (self#find) forest

    (* Return mapping from identifiers to the canonical representation of their
     * equivalence class
     *)
    method mapping: ident Bindings.t =
        self#normalize;
        Bindings.map (fun t -> (self#find t).data) forest

    (* Construct equivalence classes for each canonical member of a class.
     *
     * The implementation of this could be made more efficient by adding
     * pointers to trees so that we can map each canonical member to a
     * tree containing all the nodes that point to it.
     * But this implementation just does a linear scan over all the members
     * of the forest.
     *)
    method classes: IdentSet.t Bindings.t =
        Bindings.fold (fun k v -> addToBindingSet v k) self#mapping Bindings.empty

    (* Print equivalence classes adding a prefix at the start of every line of
     * output.
     *)
    method pp (prefix: string): unit =
        Bindings.iter (fun v vs ->
            Printf.printf "%s%s -> {" prefix (pprint_ident v);
            IdentSet.iter (fun w -> Printf.printf " %s" (pprint_ident w)) vs;
            Printf.printf "}\n";
        ) self#classes
end


(****************************************************************)
(** {1 AST Transformation Utilities}                            *)
(****************************************************************)

(****************************************************************)
(** {2 Calculating free variables of expressions and types}     *)
(****************************************************************)

class freevarClass = object
    inherit nopAslVisitor

    val mutable fvs = IdentSet.empty
    method result = fvs
    method! vvar x =
        fvs <- IdentSet.add x fvs;
        SkipChildren
    method! vtype ty =
        match ty with
        | Type_Register _ ->
           (* Free variables in register types are not supported and will
              lead to a type error.

              Uses of global constants and variables in the indices of field
              declarations of a register type are allowed, though, and will
              be checked by the type checker as usual.  Note that they will
              not be evaluated at register declaration time, but every time
              the respective register field is accessed (the type checker
              desugars register field accesses to slice expressions, copying
              the field indices). *)
           SkipChildren
        | _ -> DoChildren
end

let fv_expr (x: expr): IdentSet.t =
    let fv = new freevarClass in
    ignore (visit_expr (fv :> aslVisitor) x);
    fv#result

let fv_type (x: ty): IdentSet.t =
    let fv = new freevarClass in
    ignore (visit_type (fv :> aslVisitor) x);
    fv#result

let fv_args (atys: (ty * ident) list): IdentSet.t =
    unionSets (List.map (fun (ty, _) -> fv_type ty) atys)

let fv_sformal (x: sformal): IdentSet.t =
    (match x with
    | Formal_In(ty,v) -> fv_type ty
    | Formal_InOut(ty,v) -> fv_type ty
    )

let fv_sformals (atys: sformal list): IdentSet.t =
    unionSets (List.map fv_sformal atys)

let fv_stmts stmts =
    let fvs = new freevarClass in
    ignore (visit_stmts (fvs :> aslVisitor) stmts);
    fvs#result

let fv_decl decl =
    let fvs = new freevarClass in
    ignore (visit_decl (fvs :> aslVisitor) decl);
    fvs#result

(****************************************************************)
(** {2 Calculating assigned variables in statements}            *)
(****************************************************************)

class assignedVarsClass = object
    inherit nopAslVisitor

    val mutable avs = IdentSet.empty
    method result = avs
    method! vlvar x =
        avs <- IdentSet.add x avs;
        SkipChildren
end

let assigned_vars_of_stmts stmts =
    let avs = new assignedVarsClass in
    ignore (visit_stmts (avs :> aslVisitor) stmts);
    avs#result

let assigned_vars_of_decl decl =
    let avs = new assignedVarsClass in
    ignore (visit_decl (avs :> aslVisitor) decl);
    avs#result

(****************************************************************)
(** {2 Collect local bindings (variables and constants)}        *)
(****************************************************************)

class localsClass = object (self)
    inherit nopAslVisitor

    val mutable stack = [(Bindings.empty : ty Bindings.t)]
    method locals =
        let merge _ x y = Some x in
        List.fold_right (Bindings.union merge) stack Bindings.empty

    method add_local (ty, id) =
        match stack with
        | s :: ss -> stack <- (Bindings.add id ty s :: ss)
        | [] -> failwith "addLocal: empty stack"
    method! enter_scope vars =
        stack <- Bindings.empty :: stack;
        List.iter self#add_local vars
    method! leave_scope () =
        match stack with
        | s :: ss -> stack <- ss
        | [] -> failwith "leave_scope: empty stack"
    method! vstmt = function
        | Stmt_VarDecl (ty, id, _, _)
        | Stmt_ConstDecl (ty, id, _, _) ->
            self#add_local (ty, id);
            DoChildren
        | Stmt_VarDeclsNoInit (ty, ids, _) ->
            List.iter (fun id -> self#add_local (ty, id)) ids;
            DoChildren
        | _ ->
            DoChildren
end

let locals_of_stmts stmts =
    let lc = new localsClass in
    ignore (Visitor.mapNoCopy (visit_stmt (lc :> aslVisitor)) stmts);
    lc#locals

let locals_of_decl decl =
    let lc = new localsClass in
    ignore (Visitor.mapNoCopy (visit_decl (lc :> aslVisitor)) decl);
    lc#locals

(****************************************************************)
(** {2 Calculate types used in expressions and statements}      *)
(****************************************************************)

class typesClass = object
  inherit nopAslVisitor

  val mutable types = IdentSet.empty
  method result = types
  method! vtype ty =
    match ty with
    | Type_Constructor id
    | Type_App (id, _) ->
       types <- IdentSet.add id types;
       DoChildren
    | _ ->
       DoChildren
end

let types_of_expr expr =
  let cc = new typesClass in
  ignore (visit_expr (cc :> aslVisitor) expr);
  cc#result

let types_of_stmts stmts =
  let cc = new typesClass in
  ignore (visit_stmts (cc :> aslVisitor) stmts);
  cc#result

let types_of_decl decl =
  let cc = new typesClass in
  ignore (visit_decl (cc :> aslVisitor) decl);
  cc#result

(****************************************************************)
(** {2 Calculate functions and procedures called in statements} *)
(****************************************************************)

class callsClass = object
  inherit nopAslVisitor

  val mutable calls = IdentSet.empty
  method result = calls
  method! vexpr = function
    | Expr_TApply (f, _, _) ->
       calls <- IdentSet.add f calls;
       DoChildren
    | _ -> DoChildren
  method! vstmt = function
    | Stmt_TCall (id, _, _, _) ->
       calls <- IdentSet.add id calls;
       DoChildren
    | _ -> DoChildren
  method! vlexpr = function
    | LExpr_Write (id, _, _) ->
       calls <- IdentSet.add id calls;
       DoChildren
    | LExpr_ReadWrite (id1, id2, _, _) ->
       calls <- IdentSet.add id1 calls |> IdentSet.add id2;
       DoChildren
    | _ -> DoChildren
end

let calls_of_expr expr =
  let cc = new callsClass in
  ignore (visit_expr (cc :> aslVisitor) expr);
  cc#result

let calls_of_stmts stmts =
  let cc = new callsClass in
  ignore (visit_stmts (cc :> aslVisitor) stmts);
  cc#result

let calls_of_decl decl =
  let cc = new callsClass in
  ignore (visit_decl (cc :> aslVisitor) decl);
  cc#result

(****************************************************************)
(** {2 Substitutions}                                           *)
(****************************************************************)

(** Performing variable substitutions in expressions and types

    Note that it does not replace type constructors, global constants
    or enumerations in patterns, array indexes and types so this is
    limited to replacing local variables.
    It also does not replace variables used as l-expressions though
    that it easily changed if we think it should.               *)
class substClass (s: expr Bindings.t) = object
    inherit nopAslVisitor
    method! vexpr x =
        (match x with
        | Expr_Var v ->
                (match Bindings.find_opt v s with
                | Some r -> ChangeTo r
                | None -> DoChildren
                )
        | _ -> DoChildren
        )
end

let subst_expr (s: expr Bindings.t) (x: expr): expr =
    let subst = new substClass s in
    visit_expr subst x

let subst_lexpr (s: expr Bindings.t) (x: lexpr): lexpr =
    let subst = new substClass s in
    visit_lexpr subst x

let subst_slice (s: expr Bindings.t) (x: slice): slice =
    let subst = new substClass s in
    visit_slice subst x

let subst_type (s: expr Bindings.t) (x: ty): ty =
    let subst = new substClass s in
    visit_type subst x


(** More flexible substitution class - takes a function instead
    of a binding set.
 *)
class substFunClass (replace: ident -> expr option) = object
    inherit nopAslVisitor
    method! vexpr x =
        (match x with
        | Expr_Var v ->
                (match replace v with
                | Some r -> ChangeTo r
                | None -> DoChildren
                )
        | _ -> DoChildren
        )
end

let subst_fun_expr (replace: ident -> expr option) (x: expr): expr =
    let subst = new substFunClass replace in
    visit_expr subst x

let subst_fun_lexpr (replace: ident -> expr option) (x: lexpr): lexpr =
    let subst = new substFunClass replace in
    visit_lexpr subst x

let subst_fun_slice (replace: ident -> expr option) (x: slice): slice =
    let subst = new substFunClass replace in
    visit_slice subst x

let subst_fun_type (replace: ident -> expr option) (x: ty): ty =
    let subst = new substFunClass replace in
    visit_type subst x

(****************************************************************)
(** {2 Expression transformation}                               *)
(****************************************************************)

(** Expression transformation class

    Applies replace function to any subexpression.
    (Especially useful for expressions in types)                *)
class replaceExprClass (replace: expr -> expr option) = object
    inherit nopAslVisitor
    method! vexpr x =
        (match replace x with
        | Some r -> ChangeTo r
        | None -> SkipChildren
        )
end

(****************************************************************)
(** {2 Resugaring}                                              *)
(****************************************************************)

(** Resugaring transform

    The typechecker desugars infix syntax to make it absolutely explicit
    what it means.  This is good for tools but bad for humans.

    This transformation re-introduces the infix syntax - the intention
    being that you might use this in error messages.
    It also deletes type parameters - so this is (more or less)
    the reverse of typechecking.                                *)
class resugarClass (ops: AST.binop Bindings.t) = object (self)
    inherit nopAslVisitor
    method! vexpr x =
        (match x with
        | Expr_TApply(f, tys, args) ->
                let args' = List.map (visit_expr (self :> aslVisitor)) args in
                (match (Bindings.find_opt f ops, args') with
                | (Some op, [a; b]) -> ChangeTo (Expr_Binop(a, op, b))
                (* | (Some op, [a]) -> ChangeTo (Expr_Unop(op, a)) *)
                | _ -> ChangeTo (Expr_TApply(f, [], args'))
                )
        | _ ->
                DoChildren
        )
end

let resugar_expr (ops: AST.binop Bindings.t) (x: expr): expr =
    let resugar = new resugarClass ops in
    visit_expr resugar x

let resugar_type (ops: AST.binop Bindings.t) (x: AST.ty): AST.ty =
    let resugar = new resugarClass ops in
    visit_type resugar x

(****************************************************************)
(** {2 Pretty printing wrappers}                                *)
(****************************************************************)

let pp_type  (x: ty):    string = Utils.to_string (PP.pp_ty    x)
let pp_expr  (x: expr):  string = Utils.to_string (PP.pp_expr  x)
let pp_lexpr (x: lexpr): string = Utils.to_string (PP.pp_lexpr x)
let pp_stmt  (x: stmt):  string = Utils.to_string (PP.pp_stmt  x)


(****************************************************************)
(** {2 Misc}                                                    *)
(****************************************************************)

(** Length of bitstring or mask literal.

    ASL bit and mask literals allow spaces to be included - these
    do not count towards the length of the literal.
 *)
let masklength (x: string): int =
    let r = ref 0 in
    String.iter (function ' ' -> () | _ -> r := !r + 1) x;
    !r

(****************************************************************
 * End
 ****************************************************************)
OCaml

Innovation. Community. Security.