package goblint

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Parameters

module Idx : IntDomain.Z

Signature

module Addr : sig ... end
module J : sig ... end
include sig ... end
type t
val hash : t -> int
val compare : t -> t -> int
val name : unit -> string
val tag : t -> int
val arbitrary : unit -> t QCheck.arbitrary
val relift : t -> t
val pretty_diff : unit -> (t * t) -> GoblintCil.Pretty.doc
val bot : unit -> t
val is_bot : t -> bool
val top : unit -> t
type elt = Addr.t
val empty : unit -> t
val is_empty : t -> bool
val mem : elt -> t -> bool
val add : elt -> t -> t
val singleton : elt -> t
val remove : elt -> t -> t
val union : t -> t -> t
val inter : t -> t -> t
val diff : t -> t -> t
val subset : t -> t -> bool
val disjoint : t -> t -> bool
val iter : (elt -> unit) -> t -> unit
val map : (elt -> elt) -> t -> t
val fold : (elt -> 'a -> 'a) -> t -> 'a -> 'a
val for_all : (elt -> bool) -> t -> bool
val exists : (elt -> bool) -> t -> bool
val filter : (elt -> bool) -> t -> t
val partition : (elt -> bool) -> t -> t * t
val cardinal : t -> int
val elements : t -> elt list
val of_list : elt list -> t
val min_elt : t -> elt
val max_elt : t -> elt
val choose : t -> elt
val equal : t -> t -> bool
val widen : t -> t -> t
val join : t -> t -> t
val leq : t -> t -> bool
type field = Addr.field
type idx = Idx.t
type offs = [
  1. | `NoOffset
  2. | `Field of field * offs
  3. | `Index of idx * offs
]
val null_ptr : t
val unknown_ptr : t
val not_null : t
val top_ptr : t
val may_be_unknown : t -> bool
val is_element : Addr.t -> t -> bool
val is_null : t -> bool
val is_not_null : t -> bool
val may_be_null : t -> bool
val to_bool : t -> bool option
val has_unknown : t -> bool
val of_int : (module IntDomain.Z with type t = 'a) -> 'a0 -> t
val to_int : (module IntDomain.Z with type t = 'a) -> t -> 'a0
val get_type : t -> GoblintCil.typ
val from_var : CilType.Varinfo.t -> t
val from_var_offset : (CilType.Varinfo.t * (GoblintCil.fieldinfo, Idx.t) Goblint_lib__Lval.offs) -> t
val to_var_may : t -> CilType.Varinfo.t list
val to_var_must : t -> CilType.Varinfo.t list
val to_var_offset : t -> (CilType.Varinfo.t * (GoblintCil.fieldinfo, Idx.t) Goblint_lib__Lval.offs) list
val is_definite : t -> bool
val from_string : string -> t
val to_string : t -> string list
module ShortAddr : sig ... end
include sig ... end
val pretty : unit -> t -> GoblintCil.Pretty.doc
val show : t -> string
val to_yojson : t -> [> `List of Yojson.Safe.t list ]
val printXml : 'a BatInnerIO.output -> t -> unit
val is_top : t -> bool
val merge : (t -> t -> t) -> (t -> t -> t) -> t -> t -> t
val meet : t -> t -> t
val narrow : t -> t -> t