Module for naming heap locations via the path used to access them (e.g., x.f.g, ya
.b)
type access
=
| ArrayAccess of InferIR.Typ.t * t list | (** array element type with list of access paths in index *) |
| FieldAccess of InferIR.Typ.Fieldname.t | (** field name *) |
root var, and a list of accesses. closest to the root var is first that is, x.f.g is
representedas (x, f; g
)
remove and return the last access of the access path if the access list is non-empty. returns the original access path * None if the access list is empty
val get_field_and_annotation : t ‑> InferIR.Tenv.t ‑> (InferIR.Typ.Fieldname.t * InferIR.Annot.Item.t) option
get the field name and the annotation of the last access in the list of accesses if the list is non-empty and the last access is a field access
val get_typ : t ‑> InferIR.Tenv.t ‑> InferIR.Typ.t option
get the typ of the last access in the list of accesses if the list is non-empty, or the base if the list is empty. that is, for x.f.g, return typ(g), and for x, return typ(x)
val of_exp : include_array_indexes:bool ‑> InferIR.Exp.t ‑> InferIR.Typ.t ‑> f_resolve_id:(InferIR.Var.t ‑> t option) ‑> t list
extract the access paths that occur in exp
, resolving identifiers using f_resolve_id
. don't include index expressions in array accesses if include_array_indexes
is false
val of_lhs_exp : include_array_indexes:bool ‑> InferIR.Exp.t ‑> InferIR.Typ.t ‑> f_resolve_id:(InferIR.Var.t ‑> t option) ‑> t option
convert lhs_exp
to an access path, resolving identifiers using f_resolve_id
transform an access path that starts on "this" of an inner class but which breaks out to access outer class fields to the outermost one. Cases handled (recursively):
val pp : Format.formatter ‑> t ‑> unit
val pp_base : Format.formatter ‑> base ‑> unit
val pp_access : Format.formatter ‑> access ‑> unit
module Abs : sig ... end
module BaseMap : InferStdlib.PrettyPrintable.PPMap with type PPMap.key = base