Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove some polymorphic hashtables #1219

Merged
merged 1 commit into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 25 additions & 26 deletions src/lib/reasoners/uf.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1137,31 +1137,30 @@ let terms env =

(* Helper functions used by the caches during the computation of the model. *)
module Cache = struct
let store_array_get arrays_cache (t : Expr.t) (i : Expr.t) (v : Expr.t) =
match Hashtbl.find_opt arrays_cache t with
| Some values ->
Hashtbl.replace values i v
| None ->
let values = Hashtbl.create 17 in
Hashtbl.add values i v;
Hashtbl.add arrays_cache t values

let get_abstract_for abstracts_cache env (t : Expr.t) =
let store_array_get arrays_cache (t : E.t) (i : E.t) (v : E.t) =
match E.Table.find arrays_cache t with
| exception Not_found ->
let values = E.Table.create 17 in
E.Table.add values i v;
E.Table.add arrays_cache t values
| values ->
E.Table.replace values i v

let get_abstract_for abstracts_cache env (t : E.t) =
let r, _ = find env t in
match Hashtbl.find_opt abstracts_cache r with
| Some abstract -> abstract
| None ->
let abstract = Expr.mk_abstract (Expr.type_info t) in
Hashtbl.add abstracts_cache r abstract;
match Shostak.HX.find abstracts_cache r with
| exception Not_found ->
let abstract = E.mk_abstract (E.type_info t) in
Shostak.HX.add abstracts_cache r abstract;
abstract
| abstract -> abstract
end

type cache = {
array_selects: (Expr.t, (Expr.t, Expr.t) Hashtbl.t)
Hashtbl.t;
array_selects: Expr.t E.Table.t E.Table.t;
(** Stores all the get accesses to arrays. *)

abstracts: (r, Expr.t) Hashtbl.t;
abstracts: Expr.t Shostak.HX.t;
(** Stores all the abstract values generated. This cache is necessary
to ensure we don't generate twice an abstract value for a given symbol. *)
}
Expand Down Expand Up @@ -1212,13 +1211,13 @@ let compute_concrete_model_of_val cache =
match f, arg_vals, ty with
| Sy.Name _, [], Ty.Tfarray _ ->
begin
match Hashtbl.find_opt cache.array_selects t with
| Some _ -> acc
| None ->
match E.Table.find cache.array_selects t with
| exception Not_found ->
(* We have to add an abstract array in case there is no
constraint on its values. *)
Hashtbl.add cache.array_selects t (Hashtbl.create 17);
E.Table.add cache.array_selects t (E.Table.create 17);
acc
| _ -> acc
end

| Sy.Op Sy.Set, _, _ -> acc
Expand Down Expand Up @@ -1258,13 +1257,13 @@ let extract_concrete_model cache =
terms (ModelMap.empty ~suspicious declared_ids, ME.empty)
in
let model =
Hashtbl.fold (fun t vals mdl ->
E.Table.fold (fun t vals mdl ->
(* We produce a fresh identifiant for abstract value in order to
prevent any capture. *)
let abstract = get_abstract_for env t in
let ty = Expr.type_info t in
let arr_val =
Hashtbl.fold (fun i v arr_val ->
E.Table.fold (fun i v arr_val ->
Expr.ArraysEx.store arr_val i v
) vals abstract
in
Expand Down Expand Up @@ -1299,7 +1298,7 @@ let extract_concrete_model cache =

let extract_concrete_model ~prop_model ~declared_ids =
let cache : cache = {
array_selects = Hashtbl.create 17;
abstracts = Hashtbl.create 17;
array_selects = E.Table.create 17;
abstracts = Shostak.HX.create 17;
}
in fun env -> extract_concrete_model cache ~prop_model ~declared_ids env
7 changes: 7 additions & 0 deletions src/lib/structures/expr.ml
Original file line number Diff line number Diff line change
Expand Up @@ -3267,3 +3267,10 @@ module ArraysEx = struct
let store a i v =
mk_term Sy.(Op Set) [a; i; v] (type_info a)
end

module Table =
Hashtbl.Make (struct
type nonrec t = t
let hash = hash
let equal = equal
end)
2 changes: 1 addition & 1 deletion src/lib/structures/expr.mli
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ and trigger = private {
from_user : bool;
}

module Table : Hashtbl.S with type key = t
module Set : Set.S with type elt = t

module Map : Map.S with type key = t

type subst = t Var.Map.t * Ty.subst
Expand Down
Loading