package binsec
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Semantic analysis of binary executables
Install
dune-project
Dependency
Authors
-
AAdel Djoudi
-
BBenjamin Farinier
-
CChakib Foulani
-
DDorian Lesbre
-
FFrédéric Recoules
-
GGuillaume Girol
-
JJosselin Feist
-
LLesly-Ann Daniel
-
MManh-Dung Nguyen
-
MMathéo Vergnolle
-
MMathilde Ollivier
-
MMatthieu Lemerre
-
OOlivier Nicole
-
RRichard Bonichon
-
RRobin David
-
SSébastien Bardin
-
SSoline Ducousso
-
TTa Thanh Dinh
-
YYaëlle Vinçont
Maintainers
Sources
binsec-0.6.2.tbz
sha256=11c5335f413cca0773ec8fd7804adeb2ae960fff834c35f7eb510c43dad51092
sha512=7d706de9c98a97017ef07d317552917f76ff771b95d1cf76ad6986558244a822ea72bdc89981689fb9b63837468ef378f30ff659a7e2578d0285ce5f037b6022
doc/binsec/Binsec/Term/module-type-S/index.html
Module type Term.S
type nonrec size = sizetype 'a op = 'a operator = | Not : unary op| Sext : size -> unary op| Uext : size -> unary op| Restrict : int interval -> unary op| Plus : binary op| Minus : _ op| Mul : binary op| Udiv : binary op| Umod : binary op| Sdiv : binary op| Smod : binary op| Or : binary op| And : binary op| Xor : binary op| Concat : binary op| Lsl : binary op| Lsr : binary op| Asr : binary op| Rol : binary op| Ror : binary op| Eq : binary op| Diff : binary op| Ule : binary op| Ult : binary op| Uge : binary op| Ugt : binary op| Sle : binary op| Slt : binary op| Sge : binary op| Sgt : binary op
type ('k, 'l, 'a, 'b) term = private ('k, 'l, 'a, 'b) t = | Var : {hash : int;size : size;name : string;label : 'a;
} -> (exp, _, 'a, _) term| Load : {hash : int;len : size;dir : endianness;addr : (exp, exp, 'a, 'b) term;label : 'b;
} -> (exp, _, 'a, 'b) term| Cst : Bitvector.t -> (_, exp, _, _) term| Unary : {} -> (exp, exp, 'a, 'b) term| Binary : {} -> (exp, exp, 'a, 'b) term| Ite : {hash : int;size : size;c : (exp, exp, 'a, 'b) term;t : (exp, exp, 'a, 'b) term;e : (exp, exp, 'a, 'b) term;
} -> (exp, exp, 'a, 'b) term
Constructors
val load : size -> endianness -> t -> b -> tload nbytes endianness addr label
val constant : Bitvector.t -> tconstant bv creates a constant expression from the bitvector bv.
shift_(left|right) e q shifts expression e by quantity q, padding with zeroes
restrict lo hi e creates Dba.ExprUnary(Restrict(lo, hi), e) if hi >= lo && lo >=0 .
Specific constants
val zeros : int -> tzeros n creates a constant expression of value 0 with length n
val ones : int -> tones n creates a constant expression of value 1 with length n. I.e.; it has (n - 1) zeros in binary.
val one : tval zero : tUtils
*
val hash : t -> inthash t returns the hash of t in constant time.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page