Module BO__AbsLoc.Allocsite

type t = private
| Unknown
| Symbol of BO.Symb.SymbolPath.partial
| Known of {
proc_name : string;
node_hash : int;

hash of the node being allocated

inst_num : int;

order of the instruction in the node, i.e. n-th instruction

dimension : int;

depth of nested array

represents_multiple_values : bool;
path : BO.Symb.SymbolPath.partial option;
}
| LiteralString of string
include IStdlib.PrettyPrintable.PrintableOrderedType with type PrintableOrderedType.t := t
include IStdlib.IStd.Caml.Set.OrderedType
type t
val compare : t -> t -> int
include IStdlib.PrettyPrintable.PrintableType with type t := t
type t
val pp : IStdlib.PrettyPrintable.F.formatter -> t -> unit
val unknown : t
val make : IR.Procname.t -> node_hash:int -> inst_num:int -> dimension:int -> path:BO.Symb.SymbolPath.partial option -> represents_multiple_values:bool -> t
val make_symbol : BO.Symb.SymbolPath.partial -> t
val literal_string : string -> t
val get_param_path : t -> BO.Symb.SymbolPath.partial option
val eq : t -> t -> BO.Boolean.t