You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.8 KiB
50 lines
1.8 KiB
(*
|
|
* Copyright (c) 2009 - 2013 Monoidics ltd.
|
|
* 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.
|
|
*)
|
|
|
|
open! Utils
|
|
|
|
(** Interprocedural footprint analysis *)
|
|
|
|
(** Frame and anti-frame *)
|
|
type splitting
|
|
|
|
(** Remove constant string or class from a prop *)
|
|
val remove_constant_string_class : Tenv.t -> 'a Prop.t -> Prop.normal Prop.t
|
|
|
|
(** Check if the attribute change is a mismatch between a kind of allocation
|
|
and a different kind of deallocation *)
|
|
val check_attr_dealloc_mismatch : PredSymb.t -> PredSymb.t -> unit
|
|
|
|
(** Check whether a sexp contains a dereference without null check,
|
|
and return the line number and path position *)
|
|
val find_dereference_without_null_check_in_sexp : Sil.strexp -> (int * PredSymb.path_pos) option
|
|
|
|
(** raise a cast exception *)
|
|
val raise_cast_exception :
|
|
Tenv.t -> Logging.ml_loc -> Procname.t option -> Exp.t -> Exp.t -> Exp.t -> 'a
|
|
|
|
(** check if a prop is an exception *)
|
|
val prop_is_exn : Procname.t -> 'a Prop.t -> bool
|
|
|
|
(** when prop is an exception, return the exception name *)
|
|
val prop_get_exn_name : Procname.t -> 'a Prop.t -> Typename.t option
|
|
|
|
(** search in prop contains an error state *)
|
|
val lookup_custom_errors : 'a Prop.t -> string option
|
|
|
|
(** Dump a splitting *)
|
|
val d_splitting : splitting -> unit
|
|
|
|
(** Execute the function call and return the list of results with return value *)
|
|
val exe_function_call:
|
|
ProcAttributes.t -> Tenv.t -> (Ident.t * Typ.t) option -> Cfg.Procdesc.t -> Procname.t ->
|
|
Location.t -> (Exp.t * Typ.t) list -> Prop.normal Prop.t -> Paths.Path.t ->
|
|
(Prop.normal Prop.t * Paths.Path.t) list
|