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.
40 lines
1.1 KiB
40 lines
1.1 KiB
9 years ago
|
(*
|
||
|
* Copyright (c) 2016 - 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.
|
||
|
*)
|
||
|
|
||
8 years ago
|
open! IStd
|
||
9 years ago
|
|
||
9 years ago
|
(** Module for builtin functions with their symbolic execution handler *)
|
||
|
|
||
8 years ago
|
type args =
|
||
|
{ pdesc: Procdesc.t
|
||
|
; instr: Sil.instr
|
||
|
; tenv: Tenv.t
|
||
|
; prop_: Prop.normal Prop.t
|
||
|
; path: Paths.Path.t
|
||
|
; ret_id: (Ident.t * Typ.t) option
|
||
|
; args: (Exp.t * Typ.t) list
|
||
|
; proc_name: Typ.Procname.t
|
||
7 years ago
|
; loc: Location.t
|
||
|
; exe_env: Exe_env.t }
|
||
9 years ago
|
|
||
|
type ret_typ = (Prop.normal Prop.t * Paths.Path.t) list
|
||
|
|
||
|
type t = args -> ret_typ
|
||
|
|
||
8 years ago
|
type registered
|
||
9 years ago
|
|
||
8 years ago
|
val register : Typ.Procname.t -> t -> registered
|
||
|
(** Register a builtin [Typ.Procname.t] and symbolic execution handler *)
|
||
9 years ago
|
|
||
8 years ago
|
val get : Typ.Procname.t -> t option
|
||
9 years ago
|
(** Get the symbolic execution handler associated to the builtin function name *)
|
||
|
|
||
|
val print_and_exit : unit -> 'a
|
||
|
(** Print the builtin functions and exit *)
|