|
|
|
(*
|
|
|
|
* Copyright (c) 2013 - present Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*)
|
|
|
|
|
|
|
|
(** Contains current class and current method to be translated as well as local variables, *)
|
|
|
|
(** and the cg, cfg, and tenv corresponding to the current file. *)
|
|
|
|
|
|
|
|
type curr_class =
|
|
|
|
| ContextCls of string * string option * string list
|
|
|
|
(*class name and name of (optional) super class , and a list of protocols *)
|
|
|
|
| ContextCategory of string * string (* category name and corresponding class *)
|
|
|
|
| ContextProtocol of string (* category name and corresponding class *)
|
|
|
|
| ContextNoCls
|
|
|
|
|
|
|
|
type t =
|
|
|
|
{
|
|
|
|
tenv : Sil.tenv;
|
|
|
|
cg : Cg.t;
|
|
|
|
cfg : Cfg.cfg;
|
|
|
|
procdesc : Cfg.Procdesc.t;
|
|
|
|
is_objc_method : bool;
|
|
|
|
curr_class: curr_class;
|
|
|
|
is_callee_expression : bool;
|
|
|
|
outer_context : t option; (* in case of objc blocks, the context of the method containing the block *)
|
|
|
|
mutable blocks_static_vars : ((Sil.pvar * Sil.typ) list) Procname.Map.t;
|
|
|
|
}
|
|
|
|
|
|
|
|
val get_procdesc : t -> Cfg.Procdesc.t
|
|
|
|
|
|
|
|
val get_cfg : t -> Cfg.cfg
|
|
|
|
|
|
|
|
val get_cg : t -> Cg.t
|
|
|
|
|
|
|
|
val get_curr_class : t -> curr_class
|
|
|
|
|
|
|
|
val get_curr_class_name : curr_class -> string
|
|
|
|
|
|
|
|
val curr_class_to_string : curr_class -> string
|
|
|
|
|
|
|
|
val curr_class_compare : curr_class -> curr_class -> int
|
|
|
|
|
|
|
|
val curr_class_equal : curr_class -> curr_class -> bool
|
|
|
|
|
|
|
|
val curr_class_hash : curr_class -> int
|
|
|
|
|
|
|
|
val is_objc_method : t -> bool
|
|
|
|
|
|
|
|
val get_tenv : t -> Sil.tenv
|
|
|
|
|
|
|
|
val create_context : Sil.tenv -> Cg.t -> Cfg.cfg -> Cfg.Procdesc.t ->
|
|
|
|
curr_class -> bool -> t option -> t
|
|
|
|
|
|
|
|
val create_curr_class : Sil.tenv -> string -> curr_class
|
|
|
|
|
|
|
|
val add_block_static_var : t -> Procname.t -> (Sil.pvar * Sil.typ) -> unit
|
|
|
|
|
|
|
|
val static_vars_for_block : t -> Procname.t -> (Sil.pvar * Sil.typ) list
|
|
|
|
|
|
|
|
val is_objc_instance : t -> bool
|
|
|
|
|
|
|
|
val get_outer_procname : t -> Procname.t
|
|
|
|
|
|
|
|
val is_curr_proc_objc_getter : t -> Ident.fieldname -> bool
|
|
|
|
|
|
|
|
val is_curr_proc_objc_setter : t -> Ident.fieldname -> bool
|