Module AbsLoc.Allocsite
type t= private|Unknown|Symbol of 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 : Symb.SymbolPath.partial option;}|LiteralString of string
include IStdlib.PrettyPrintable.PrintableOrderedType with type PrintableOrderedType.t := t
include IStdlib.PrettyPrintable.PrintableType with type t := t
val pp : IStdlib.PrettyPrintable.F.formatter -> t -> unit
val unknown : tval make : IR.Procname.t -> node_hash:int -> inst_num:int -> dimension:int -> path:Symb.SymbolPath.partial option -> represents_multiple_values:bool -> tval make_symbol : Symb.SymbolPath.partial -> tval literal_string : string -> tval get_param_path : t -> Symb.SymbolPath.partial optionval eq : t -> t -> Boolean.t