package bap-std

  1. Overview
  2. Docs
The Binary Analysis Platform Standard Library

Install

Dune Dependency

Authors

Maintainers

Sources

v2.5.0.tar.gz
sha256=9c126781385d2fa9b8edab22e62b25c70bf2f99f6ec78abb7e5e36d63cfa4174
md5=5abd9b3628b43f797326034f31ca574f

doc/bap/Bap/Std/Eval/index.html

Module Std.Eval

Basic and generic expression evaluator.

The module provides functors that derive base classes and class types for Expi, Bili, and Biri.

Note, this is a low-level interface that can be used if you want to build your own evaluators (interpreters). If you want to use already existing interpreter without drastically changing the semantics of BIL consider using the Primus Framework.

  • since 1.3
module T1 (M : Core_kernel.T1) : sig ... end

An evaluator interface parametrized by a T1 monad.

module T2 (M : Core_kernel.T2) : sig ... end

An evaluator parametrized by a T2 monad.

module type S = sig ... end

An interface of a basic evaluator in a T1 monad

module type S2 = sig ... end

An interface of a basic evaluator in a T1 monad

module Make2 (M : Monads.Std.Monad.S2) : S2 with type ('a, 'e) m := ('a, 'e) M.t and module M := M

Make2(M) provides an implementation of the S2 interface lifted into the monad M.

module Make (M : Monads.Std.Monad.S) : S with type 'a m := 'a M.t and module M := M

Make(M) provides an implementation of the S2 interface lifted into the monad M.

OCaml

Innovation. Community. Security.