Skip to content
Snippets Groups Projects
Commit 0f6f44df authored by David Bühler's avatar David Bühler
Browse files

[Eva] Multidim: [Abstract_offset.references] returns a set instead of a list.

parent e2f53f20
No related branches found
No related tags found
No related merge requests found
...@@ -249,7 +249,7 @@ let references = ...@@ -249,7 +249,7 @@ let references =
| Field (_, sub) | Index (None, _, _, sub) -> aux acc sub | Field (_, sub) | Index (None, _, _, sub) -> aux acc sub
| Index (Some e, _, _, sub) -> | Index (Some e, _, _, sub) ->
let r = Cil.extract_varinfos_from_exp e in let r = Cil.extract_varinfos_from_exp e in
let acc = (Cil_datatype.Varinfo.Set.to_seq r |> List.of_seq) @ acc in let acc = Cil_datatype.Varinfo.Set.union r acc in
aux acc sub aux acc sub
in in
aux [] aux Cil_datatype.Varinfo.Set.empty
...@@ -36,7 +36,7 @@ val of_ival : base_typ:Cil_types.typ -> typ:Cil_types.typ -> Ival.t -> t or_top ...@@ -36,7 +36,7 @@ val of_ival : base_typ:Cil_types.typ -> typ:Cil_types.typ -> Ival.t -> t or_top
val of_term_offset : Cil_types.typ -> Cil_types.term_offset -> t or_top val of_term_offset : Cil_types.typ -> Cil_types.term_offset -> t or_top
val is_singleton : t -> bool val is_singleton : t -> bool
val references : t -> Cil_types.varinfo list (* variables referenced in the offset *) val references : t -> Cil_datatype.Varinfo.Set.t (* variables referenced in the offset *)
val append : t -> t -> t (* Does not check that the appened offset fits *) val append : t -> t -> t (* Does not check that the appened offset fits *)
val join : t -> t -> t or_top val join : t -> t -> t or_top
......
...@@ -168,9 +168,9 @@ struct ...@@ -168,9 +168,9 @@ struct
let add_refs _b o acc = let add_refs _b o acc =
match o with match o with
| `Top -> acc | `Top -> acc
| `Value o -> Set.union (Set.of_list (Offset.references o)) acc | `Value o -> Set.union (Offset.references o) acc
in in
Map.fold add_refs map Set.empty |> Set.to_seq |> List.of_seq Map.fold add_refs map Set.empty |> Set.elements
let of_var (vi : Cil_types.varinfo) : t = let of_var (vi : Cil_types.varinfo) : t =
Map.singleton (Base.of_varinfo vi) (`Value (Offset.of_var_address vi)) Map.singleton (Base.of_varinfo vi) (`Value (Offset.of_var_address vi))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment