You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
165 lines
5.4 KiB
165 lines
5.4 KiB
(*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*)
|
|
|
|
open! IStd
|
|
module L = Logging
|
|
|
|
let tt fmt =
|
|
let mode = if Config.trace_topl then Logging.Quiet else Logging.Verbose in
|
|
Logging.debug Analysis mode "ToplTrace: " ;
|
|
Logging.debug Analysis mode fmt
|
|
|
|
|
|
module Vname = struct
|
|
module T = struct
|
|
type t = ToplAst.property_name * ToplAst.vertex [@@deriving compare, hash, sexp]
|
|
end
|
|
|
|
include T
|
|
include Hashable.Make (T)
|
|
end
|
|
|
|
type vname = Vname.t
|
|
|
|
type vindex = int [@@deriving compare]
|
|
|
|
type tindex = int
|
|
|
|
type transition = {source: vindex; target: vindex; label: ToplAst.label option}
|
|
|
|
(** - INV1: Array.length transitions = Array.length skips
|
|
- INV2: each index of [transitions] occurs exactly once in one of [outgoing]'s lists
|
|
- INV3: max_args is the maximum length of the arguments list in a label on a transition
|
|
|
|
The fields marked as redundant are computed from the others (when the automaton is built), and
|
|
are cached for speed. *)
|
|
type t =
|
|
{ states: vname array
|
|
; transitions: transition array
|
|
; skips: bool array (* redundant *)
|
|
; outgoing: tindex list array
|
|
; vindex: vname -> vindex
|
|
; max_args: int (* redundant *) }
|
|
|
|
(** [index_in H a] returns a pair of functions [(opt, err)] that lookup the (last) index of an
|
|
element in [a]. The difference is that [opt x] returns an option, while [err msg x] makes Infer
|
|
die, mentioning [msg].*)
|
|
let index_in (type k) (module H : Hashtbl_intf.S with type key = k) (a : k array) :
|
|
(k -> int option) * (string -> k -> int) =
|
|
let h = H.create ~size:(2 * Array.length a) () in
|
|
let f i x = H.set h ~key:x ~data:i in
|
|
Array.iteri ~f a ;
|
|
let opt = H.find h in
|
|
let err msg x =
|
|
match opt x with
|
|
| Some x ->
|
|
x
|
|
| None ->
|
|
L.die InternalError "ToplAutomaton.index_in out of bounds (%s)" msg
|
|
in
|
|
(opt, err)
|
|
|
|
|
|
let make properties =
|
|
let states : vname array =
|
|
let open ToplAst in
|
|
let f p =
|
|
let f {source; target; _} = [(p.name, source); (p.name, target)] in
|
|
List.concat_map ~f p.transitions
|
|
in
|
|
Array.of_list (List.dedup_and_sort ~compare:Vname.compare (List.concat_map ~f properties))
|
|
in
|
|
Array.iteri ~f:(fun i (p, v) -> tt "state[%d]=(%s,%s)@\n" i p v) states ;
|
|
let _vindex_opt, vindex = index_in (module Vname.Table) states in
|
|
let vindex = vindex "vertex" in
|
|
let transitions : transition array =
|
|
let f p =
|
|
let prefix_pname pname =
|
|
if String.equal ".*" pname then pname
|
|
else
|
|
let ps = List.map ~f:(fun p -> "\\|" ^ p ^ "\\.") p.ToplAst.prefixes in
|
|
"^\\(" ^ String.concat ps ^ "\\)" ^ pname ^ "("
|
|
in
|
|
let prefix_pattern =
|
|
ToplAst.(
|
|
function
|
|
| ProcedureNamePattern pname -> ProcedureNamePattern (prefix_pname pname) | p -> p)
|
|
in
|
|
let prefix_label label = ToplAst.{label with pattern= prefix_pattern label.pattern} in
|
|
let f t =
|
|
let source = vindex ToplAst.(p.name, t.source) in
|
|
let target = vindex ToplAst.(p.name, t.target) in
|
|
let label = Option.map ~f:prefix_label t.ToplAst.label in
|
|
{source; target; label}
|
|
in
|
|
List.map ~f p.ToplAst.transitions
|
|
in
|
|
Array.of_list (List.concat_map ~f properties)
|
|
in
|
|
Array.iteri transitions ~f:(fun i {source; target; label} ->
|
|
tt "transition%d %d -> %d on %a@\n" i source target ToplAstOps.pp_label label ) ;
|
|
let outgoing : tindex list array =
|
|
let vcount = Array.length states in
|
|
let a = Array.create ~len:vcount [] in
|
|
let f i t = a.(t.source) <- i :: a.(t.source) in
|
|
Array.iteri ~f transitions ;
|
|
a
|
|
in
|
|
let max_args =
|
|
let llen l = Option.value_map ~default:0 ~f:List.length l.ToplAst.arguments in
|
|
let tlen t = Option.value_map ~default:0 ~f:llen t.label in
|
|
transitions |> Array.map ~f:tlen
|
|
|> Array.max_elt ~compare:Int.compare
|
|
|> Option.value ~default:0 |> succ
|
|
in
|
|
let skips : bool array =
|
|
(* TODO(rgrigore): Rename "anys"? *)
|
|
let is_skip {label} = Option.is_none label in
|
|
Array.map ~f:is_skip transitions
|
|
in
|
|
{states; transitions; skips; outgoing; vindex; max_args}
|
|
|
|
|
|
let vname a i = a.states.(i)
|
|
|
|
let vcount a = Array.length a.states
|
|
|
|
let registers a =
|
|
(* TODO(rgrigore): cache *)
|
|
let do_assignment acc (r, _v) = String.Set.add acc r in
|
|
let do_action acc = List.fold ~init:acc ~f:do_assignment in
|
|
let do_value acc = ToplAst.(function Register r -> String.Set.add acc r | _ -> acc) in
|
|
let do_predicate acc =
|
|
ToplAst.(function Binop (_op, l, r) -> do_value (do_value acc l) r | _ -> acc)
|
|
in
|
|
let do_condition acc = List.fold ~init:acc ~f:do_predicate in
|
|
let do_label acc {ToplAst.action; condition} = do_action (do_condition acc condition) action in
|
|
let do_label_opt acc = Option.fold ~init:acc ~f:do_label in
|
|
let do_transition acc {label} = do_label_opt acc label in
|
|
String.Set.to_list (Array.fold ~init:String.Set.empty ~f:do_transition a.transitions)
|
|
|
|
|
|
let pp_message_of_state fmt (a, i) =
|
|
let property, state = vname a i in
|
|
Format.fprintf fmt "property %s reaches state %s" property state
|
|
|
|
|
|
let tfilter_map a ~f = Array.to_list (Array.filter_map ~f a.transitions)
|
|
|
|
let pp_transition f {source; target; label} =
|
|
Format.fprintf f "@[%d -> %d:@,%a@]" source target ToplAstOps.pp_label label
|
|
|
|
|
|
let has_name n a i =
|
|
let _property, name = vname a i in
|
|
String.equal name n
|
|
|
|
|
|
let is_start = has_name "start"
|
|
|
|
let is_error = has_name "error"
|