[infer][absint] Functor to create a domain with Top

Reviewed By: sblackshear

Differential Revision: D5081605

fbshipit-source-id: 07d19ed
master
Jeremy Dubreil 8 years ago committed by Facebook Github Bot
parent 64ab959486
commit 5b495c6a38

@ -26,6 +26,12 @@ module type WithBottom = sig
val empty : astate
end
module type WithTop = sig
include S
val top : astate
end
module BottomLifted (Domain : S) = struct
type astate =
| Bottom
@ -65,6 +71,46 @@ module BottomLifted (Domain : S) = struct
| NonBottom astate -> Domain.pp fmt astate
end
module TopLifted (Domain: S) = struct
type astate =
| Top
| NonTop of Domain.astate
let top = Top
let (<=) ~lhs ~rhs =
if phys_equal lhs rhs
then true
else
match lhs, rhs with
| _, Top -> true
| Top, _ -> false
| NonTop lhs, NonTop rhs -> Domain.(<=) ~lhs ~rhs
let join astate1 astate2 =
if phys_equal astate1 astate2
then astate1
else
match astate1, astate2 with
| Top, _
| _, Top -> Top
| NonTop a1, NonTop a2 -> NonTop (Domain.join a1 a2)
let widen ~prev ~next ~num_iters =
if phys_equal prev next
then prev
else
match prev, next with
| Top, _
| _, Top -> Top
| NonTop prev, NonTop next -> NonTop (Domain.widen ~prev ~next ~num_iters)
let pp fmt = function
| Top -> F.fprintf fmt "T"
| NonTop astate -> Domain.pp fmt astate
end
module Pair (Domain1 : S) (Domain2 : S) = struct
type astate = Domain1.astate * Domain2.astate

@ -30,10 +30,19 @@ end
module type WithBottom = sig
include S
(** The bottom value of the domain. *)
(** The bottom value of the domain.
Naming it empty instead of bottom helps to bind the empty
value for sets and maps to the natural definition for bottom *)
val empty : astate
end
(** A domain with an explicit top value *)
module type WithTop = sig
include S
val top : astate
end
(** Lift a pre-domain to a domain *)
module BottomLifted (Domain : S) : sig
type astate =
@ -43,6 +52,16 @@ module BottomLifted (Domain : S) : sig
include WithBottom with type astate := astate
end
(** Create a domain with Top element from a pre-domain *)
module TopLifted (Domain : S) : sig
type astate =
| Top
| NonTop of Domain.astate
include WithTop with type astate := astate
end
(** Cartesian product of two domains. *)
module Pair (Domain1 : S) (Domain2 : S) : S with type astate = Domain1.astate * Domain2.astate

Loading…
Cancel
Save