Goblint_lib.UnionFind
The Union Find is used by the C-2PO Analysis. This file contains the code for a quantitative union find and the quantitative finite automata. They will be necessary in order to construct the congruence closure of terms.
module M = Messages
type term =
| Addr of DuplicateVars.Var.t
| Aux of DuplicateVars.Var.t * GoblintCil.exp
| Deref of term * Z.t * GoblintCil.exp
val hash_term : term -> int
Two propositions are equal if they are syntactically equal or if one is t_1 = z + t_2 and the other t_2 = - z + t_1.
val equal_term_offset_relation :
term_offset_relation ->
term_offset_relation ->
Ppx_deriving_runtime.bool
val hash_term_offset_relation : term_offset_relation -> int
val compare_term_offset_relation :
term_offset_relation ->
term_offset_relation ->
Ppx_deriving_runtime.int
val equal_block_relation :
block_relation ->
block_relation ->
Ppx_deriving_runtime.bool
val hash_block_relation : block_relation -> int
val compare_block_relation :
block_relation ->
block_relation ->
Ppx_deriving_runtime.int
type prop =
| Equal of term_offset_relation
| Nequal of term_offset_relation
| BlNequal of block_relation
val hash_prop : prop -> int
module T : sig ... end
The terms consist of address constants and dereferencing function with sum of an integer. The dereferencing function is parametrized by the size of the element in the memory. We store the CIL expression of the term in the data type, such that it it easier to find the types of the dereferenced elements. Also so that we can easily convert back from term to Cil expression.
module TMap : sig ... end
module TSet : sig ... end
module UnionFind : sig ... end
Quantitative union find
module ZMap : sig ... end
module LookupMap : sig ... end
For each representative t' of an equivalence class, the LookupMap maps t' to a map that maps z to a term in the data structure that is equal to *(z + t').