DuplicateVars.VarType
Variable Type used by the C-2PO Analysis. It contains normal variables with a varinfo as well as auxiliary variables for assignment and return and duplicated variables for remembering the value of variables at the beginning of a function.
val equal_typ : CilType.Typ.t -> CilType.Typ.t -> bool
val hash_typ : CilType.Typ.t -> int
val compare_typ : CilType.Typ.t -> CilType.Typ.t -> int
type t =
| AssignAux of GoblintCil.typ
| ReturnAux of GoblintCil.typ
| NormalVar of CilType.Varinfo.t
| DuplicVar of CilType.Varinfo.t
val hash : t -> int
val from_varinfo : CilType.Varinfo.t list -> CilType.Varinfo.t list -> t list
val vaddrof : t -> bool
val vglob : t -> bool
val show : t -> string
val get_type : t -> GoblintCil.typ
val is_assign_aux : t -> bool
val is_return_aux : t -> bool
val name_varinfo : t -> string
val typ : t -> GoblintCil.typ
val describe_varinfo : GoblintCil.varinfo -> t -> string