Module IR.Tenv
val create : unit -> tCreate a new type environment.
val load : IBase.SourceFile.t -> t optionLoad a type environment for a source file
val store_debug_file_for_source : IBase.SourceFile.t -> t -> unitval read : IBase.DB.filename -> t optionread and return a type environment from the given file
val load_global : unit -> t optionload the global type environment (Java)
val store_global : t -> unitsave a global type environment (Java)
val lookup : t -> Typ.Name.t -> Struct.t optionLook up a name in the global type environment.
val mk_struct : t -> ?default:Struct.t -> ?fields:Struct.fields -> ?statics:Struct.fields -> ?methods:Procname.t list -> ?exported_objc_methods:Procname.t list -> ?supers:Typ.Name.t list -> ?annots:Annot.Item.t -> ?java_class_info:Struct.java_class_info -> ?dummy:bool -> Typ.Name.t -> Struct.tConstruct a struct_typ, normalizing field types
val add_field : t -> Typ.Name.t -> Struct.field -> unitAdd a field to a given struct in the global type environment.
val pp : Stdlib.Format.formatter -> t -> unitprint a type environment
type per_file=|Global|FileLocal of t
val pp_per_file : Stdlib.Format.formatter -> per_file -> unitprint per file type environment
val merge : src:t -> dst:t -> unitMerge
srcintodstpossibly overwriting pre existing procs indst.
val merge_per_file : src:per_file -> dst:per_file -> per_fileBest-effort merge of
srcintodst. If a procedure is both indstandsrc, the one indstwill get overwritten.
val get_summary_formals : t -> get_summary:(Procname.t -> 'summary option) -> get_formals:(Procname.t -> 'formals option) -> Procname.t -> [ `NotFound | `Found of 'summary * 'formals | `FoundFromSubclass of Procname.t * 'summary * 'formals ]Get summary and formals of the given proc name with heuristics for finding a method in non-abstract sub-classes
- If the class is an interface: Find its unique sub-class and apply the heuristics recursively.
- If the class is an abstract class: Find/use its own summary if possible. If not found, find one (arbitrary but deterministic) summary from its sub-classes.
- Otherwise: Find its own summary.
module SQLite : IBase.SqliteUtils.Data with type t = per_file