Script.Instrtype t += | Nop| Label of stringlabel:
| Assign of Binsec.Ast.Loc.t Binsec.Ast.loc * Binsec.Ast.Expr.t Binsec.Ast.loclval := rval
| Undef of Binsec.Ast.Loc.t Binsec.Ast.loclval := undef
| Nondet of Binsec.Ast.Loc.t Binsec.Ast.loclval := nondet
| Assume of Binsec.Ast.Expr.t Binsec.Ast.locassume rval
| Assert of Binsec.Ast.Expr.t Binsec.Ast.locassert rval
| If of Binsec.Ast.Expr.t Binsec.Ast.loc * stringif rval then goto label
| Goto of stringgoto label
| Jump of Binsec.Ast.Expr.t Binsec.Ast.locjump at rval
| Haltval nop : tval label : string -> tval assign :
Binsec.Ast.Loc.t Binsec.Ast.loc ->
Binsec.Ast.Expr.t Binsec.Ast.loc ->
tval undef : Binsec.Ast.Loc.t Binsec.Ast.loc -> tval nondet : Binsec.Ast.Loc.t Binsec.Ast.loc -> tval assume : Binsec.Ast.Expr.t Binsec.Ast.loc -> tval dynamic_assert : Binsec.Ast.Expr.t Binsec.Ast.loc -> tval conditional_jump : Binsec.Ast.Expr.t Binsec.Ast.loc -> string -> tval dynamic_jump : Binsec.Ast.Expr.t Binsec.Ast.loc -> tval goto : string -> tval halt : tval pp : Format.formatter -> t -> unitval register_pp : (Format.formatter -> t -> bool) -> unit