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.
30 lines
1.0 KiB
30 lines
1.0 KiB
6 years ago
|
(*
|
||
6 years ago
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
6 years ago
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*)
|
||
|
|
||
|
(** Symbolic Execution *)
|
||
|
|
||
5 years ago
|
val assume : Sh.t -> Term.t -> Sh.t option
|
||
5 years ago
|
val kill : Sh.t -> Var.t -> Sh.t
|
||
5 years ago
|
val move : Sh.t -> (Var.t * Term.t) vector -> Sh.t
|
||
5 years ago
|
val load : Sh.t -> reg:Var.t -> ptr:Term.t -> len:Term.t -> Sh.t option
|
||
5 years ago
|
val store : Sh.t -> ptr:Term.t -> exp:Term.t -> len:Term.t -> Sh.t option
|
||
|
val memset : Sh.t -> dst:Term.t -> byt:Term.t -> len:Term.t -> Sh.t option
|
||
|
val memcpy : Sh.t -> dst:Term.t -> src:Term.t -> len:Term.t -> Sh.t option
|
||
|
val memmov : Sh.t -> dst:Term.t -> src:Term.t -> len:Term.t -> Sh.t option
|
||
5 years ago
|
val alloc : Sh.t -> reg:Var.t -> num:Term.t -> len:Term.t -> Sh.t option
|
||
5 years ago
|
val free : Sh.t -> ptr:Term.t -> Sh.t option
|
||
5 years ago
|
val nondet : Sh.t -> Var.t option -> Sh.t
|
||
5 years ago
|
val abort : Sh.t -> Sh.t option
|
||
6 years ago
|
|
||
|
val intrinsic :
|
||
5 years ago
|
skip_throw:bool
|
||
|
-> Sh.t
|
||
|
-> Var.t option
|
||
|
-> Var.t
|
||
5 years ago
|
-> Term.t list
|
||
5 years ago
|
-> Sh.t option option
|