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
-
MMahmudul Faisal Al Ameen
-
MManh-Dung Nguyen
-
MMathéo Vergnolle
-
MMathilde Ollivier
-
MMatthieu Lemerre
-
NNicolas Bellec
-
OOlivier Nicole
-
RRichard Bonichon
-
RRobin David
-
SSébastien Bardin
-
SSoline Ducousso
-
TTa Thanh Dinh
-
YYaëlle Vinçont
-
YYanis Sellami
Maintainers
Sources
binsec-0.10.1.tbz
sha256=87d4048c9a90c8a14ee029e77d31032a15427f06416a31938cec8a68394234c4
sha512=6a023d2a5c87c56b0aac489874431d8dcccee1451a072a826190be3a7f75a961688bab95f193f494231744abc3bc9733ab5c809057d36a5e4d24c6c29c369144
doc/binsec/Binsec/Instruction/index.html
Module Binsec.Instruction
Canonical representation of an instruction
Type
type t = private {address : Virtual_address.t;size : Size.Byte.t;opcode : Binstream.t;mnemonic : Mnemonic.t;dba_block : Dhunk.t;
}val address : t -> Virtual_address.tAccessors
val size : t -> Size.Byte.tval opcode : t -> Binstream.tval mnemonic : t -> Mnemonic.tBasics
module type Basic = sig ... endGeneric disassembled instruction type
module Generic : sig ... endConstructors
val empty : Dba_types.Caddress.t -> tval create :
Virtual_address.t ->
Size.Byte.t ->
Binstream.t ->
Mnemonic.t ->
Dhunk.t ->
tval unsupported :
Virtual_address.t ->
Size.Byte.t ->
Binstream.t ->
Mnemonic.t ->
tCreate an instruction without supporting DBA semantics.
This function should not be used when the menmonic is supported. It will fail in that case.
val of_generic_instruction : Virtual_address.t -> Generic.t -> Dhunk.t -> tval of_dba_block : ?mnemonic:Mnemonic.t -> Virtual_address.t -> Dhunk.t -> tval set_mnemonic : Mnemonic.t -> t -> tval is_decoded : t -> boolval stop : Virtual_address.t -> tOther accessors
val get_caddress : t -> Dba_types.Caddress.tval start : t -> intinclude Sigs.PRINTABLE with type t := t
val pp : Format.formatter -> t -> unit sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page