package bap-std

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

Install

Dune Dependency

Authors

Maintainers

Sources

v2.1.0.tar.gz
sha256=631fc58628418e4856709a0cfc923a65e00c9494fbd28d444c633d11194831de
md5=3db9deac8d429b9b8a8ec9aec54987b1

doc/bap/Bap/Std/Biri/class-context/index.html

Class Biri.context

Biri evaluates terms in the context of a whole program (since terms may contain calls and jumps). Biri also tracks for current position inside block, the block and preceding block.

Note, that even if some properties do not provide setters, they can still change during the evaluation, as other implementations may override them and provide different behavior.

inherit Expi.context
method program : program term

current model of a program.

method main : sub term option

the entry point of evaluation

method trace : tid list

list of term that were already executed (may be long)

method enter_term : tid -> 's

Should be called when a new term is entered. This implementation will update the trace list with the passed argument.

method set_next : tid option -> 's

set_next tid set the identifier of the next term.

method next : tid option

The next term identifier is the identifier of a term, that should be executed next. If next is None then, the interpretation will stop. The identifier must belong to a term, that is in the program and is either an identifier of a block or a subroutine.

OCaml

Innovation. Community. Security.