Module InferIR.Pvar
type translation_unit= InferBase.SourceFile.t option
val compare_translation_unit : translation_unit -> translation_unit -> int
type tType for program variables. There are 4 kinds of variables: 1) local variables, used for local variables and formal parameters 2) callee program variables, used to handle recursion (
x | calleeis distinguished fromx) 3) global variables 4) seed variables, used to store the initial value of formal parameters
val compare_modulo_this : t -> t -> intComparison considering all pvars named 'this'/'self' to be equal
val get_declaring_function : t -> Typ.Procname.t optionif not a global, return function declaring var
val d : t -> unitDump a program variable.
val get_ret_pvar : Typ.Procname.t -> tget_ret_pvar proc_nameretuns the return pvar associated with the procedure name
val get_ret_param_pvar : Typ.Procname.t -> tget_ret_param_pvar proc_nameretuns the return_param pvar associated with the procedure name
val get_simplified_name : t -> stringGet a simplified version of the name component of a program variable.
val is_abduced : t -> boolCheck if the pvar is an abduced return var or param passed by ref
val is_callee : t -> boolCheck if the pvar is a callee var
val is_global : t -> boolCheck if the pvar is a global var or a static local var
val is_static_local : t -> boolCheck if the pvar is a static variable declared inside a function
val is_local : t -> boolCheck if the pvar is a (non-static) local var
val is_seed : t -> boolCheck if the pvar is a seed var
val is_return : t -> boolCheck if the pvar is a return var
val is_this : t -> boolCheck if a pvar is the special "this" var
val is_self : t -> boolCheck if a pvar is the special "self" var
val is_frontend_tmp : t -> boolreturn true if
pvaris a temporary variable generated by the frontend
val is_clang_tmp : t -> boolreturn true if
pvaris a temporary variable generated by clang
val is_ssa_frontend_tmp : t -> boolreturn true if
pvaris a temporary variable generated by the frontend and is only assigned once on a non-looping control-flow path
val is_cpp_temporary : t -> boolreturn true if this pvar represents a C++ temporary object (see http://en.cppreference.com/w/cpp/language/lifetime)
val mk : Mangled.t -> Typ.Procname.t -> tmk name proc_name suffixcreates a program var with the given function name and suffix
val mk_abduced_ref_param : Typ.Procname.t -> int -> InferBase.Location.t -> tcreate an abduced variable for a parameter passed by reference
val mk_abduced_ret : Typ.Procname.t -> InferBase.Location.t -> tcreate an abduced return variable for a call to
proc_nameatloc
val mk_callee : Mangled.t -> Typ.Procname.t -> tmk_callee name proc_namecreates a program var for a callee function with the given function name
val mk_global : ?is_constexpr:bool -> ?is_ice:bool -> ?is_pod:bool -> ?is_static_local:bool -> ?is_static_global:bool -> ?translation_unit:InferBase.SourceFile.t -> Mangled.t -> tcreate a global variable with the given name
val mk_tmp : string -> Typ.Procname.t -> tcreate a fresh temporary variable local to procedure
pname. for use in the frontends only!
val pp : InferStdlib.Pp.env -> F.formatter -> t -> unitPretty print a program variable.
val pp_translation_unit : F.formatter -> translation_unit -> unitval to_callee : Typ.Procname.t -> t -> tTurn an ordinary program variable into a callee program variable
val to_string : t -> stringConvert a pvar to string.
val get_translation_unit : t -> translation_unitGet the translation unit corresponding to a global. Raises Invalid_arg if not a global.
val is_compile_constant : t -> boolIs the variable's value a compile-time constant? Always (potentially incorrectly) returns
falsefor non-globals.
val is_ice : t -> boolIs the variable's type an integral constant expression? Always (potentially incorrectly) returns
falsefor non-globals.
val is_pod : t -> boolIs the variable's type a "Plain Old Data" type (C++)? Always (potentially incorrectly) returns
truefor non-globals.
val get_initializer_pname : t -> Typ.Procname.t optionGet the procname of the initializer function for the given global variable