package bap-std
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=9c126781385d2fa9b8edab22e62b25c70bf2f99f6ec78abb7e5e36d63cfa4174
md5=5abd9b3628b43f797326034f31ca574f
doc/bap/Bap/Std/Size/index.html
Module Std.Size
Type safe operand and register sizes.
val r8 : allval r16 : allval r32 : allval r64 : allval r128 : allval r256 : allval is_r8 : all -> boolval is_r16 : all -> boolval is_r32 : all -> boolval is_r64 : all -> boolval is_r128 : all -> boolval is_r256 : all -> boolval r8_val : all -> unit optionval r16_val : all -> unit optionval r32_val : all -> unit optionval r64_val : all -> unit optionval r128_val : all -> unit optionval r256_val : all -> unit optionmodule Variants_of_all : sig ... endtype 'a p = 'a constraint 'a = [< all ]val bin_size_p :
'a Core_kernel.Bin_prot.Size.sizer ->
'a p Core_kernel.Bin_prot.Size.sizerval bin_write_p :
'a Core_kernel.Bin_prot.Write.writer ->
'a p Core_kernel.Bin_prot.Write.writerval bin_writer_p :
'a Core_kernel.Bin_prot.Type_class.writer ->
'a p Core_kernel.Bin_prot.Type_class.writerval bin_read_p :
'a Core_kernel.Bin_prot.Read.reader ->
'a p Core_kernel.Bin_prot.Read.readerval __bin_read_p__ :
'a Core_kernel.Bin_prot.Read.reader ->
(int -> 'a p) Core_kernel.Bin_prot.Read.readerval bin_reader_p :
'a Core_kernel.Bin_prot.Type_class.reader ->
'a p Core_kernel.Bin_prot.Type_class.readerval bin_p :
'a Core_kernel.Bin_prot.Type_class.t ->
'a p Core_kernel.Bin_prot.Type_class.tval sexp_of_p : ('a -> Sexplib0.Sexp.t) -> 'a p -> Sexplib0.Sexp.tval p_of_sexp : (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a pinclude Core_kernel.Bin_prot.Binable.S with type t := t
include Ppx_compare_lib.Comparable.S with type t := t
include Sexplib0.Sexpable.S with type t := t
Lifting from int
val of_int : int -> t Core_kernel.Or_error.tof_int n return Ok `rn if `rn exists, Error otherwise.
val of_int_exn : int -> tof_int_exn n the same as of_int, but raises exception instead of returning Error
val of_int_opt : int -> t optionof_int_opt n the same as of_int but uses option type instead of Or_error.t
addr_of_int n return Ok `rn if `rn exists, Error otherwise.
addr_of_int_exn n the same as addr_of_int, but raises exception instead of returning Error
addr_of_int_opt n the same as addr_of_int but uses option type instead of Or_error.t
val to_addr_size : t -> [ `r32 | `r64 ] Core_kernel.Or_error.tval in_bits : 'a p -> intin_bits size returns size in bits.
val in_bytes : 'a p -> intin_bytes sz returns size in bytes
include Regular.Std.Regular.S with type t := t
include Core_kernel.Bin_prot.Binable.S with type t := t
val bin_size_t : t Bin_prot.Size.sizerval bin_write_t : t Bin_prot.Write.writerval bin_read_t : t Bin_prot.Read.readerval __bin_read_t__ : (int -> t) Bin_prot.Read.readerval bin_writer_t : t Bin_prot.Type_class.writerval bin_reader_t : t Bin_prot.Type_class.readerval bin_t : t Bin_prot.Type_class.tinclude Ppx_compare_lib.Comparable.S with type t := t
include Regular.Std.Printable.S with type t := t
val to_string : t -> stringto_string x returns a human-readable representation of x
val str : unit -> t -> stringstr () t is formatted output function that matches "%a" conversion format specifier in functions, that prints to string, e.g., sprintf, failwithf, errorf and, surprisingly all Lwt printing function, including Lwt_io.printf and logging (or any other function with type ('a,unit,string,...) formatN`. Example:
Or_error.errorf "type %a is not valid for %a"
Type.str ty Exp.str expval pps : unit -> t -> stringsynonym for str
val ppo : Core_kernel.Out_channel.t -> t -> unitwill print to a standard output_channel, useful for using in printf, fprintf, etc.
val pp_seq : Format.formatter -> t Core_kernel.Sequence.t -> unitprints a sequence of values of type t
this will include pp function from Core that has type t printer, and can be used in Format.printf family of functions
include Core_kernel.Pretty_printer.S with type t := t
val pp : Base__.Formatter.t -> t -> unitinclude Core_kernel.Comparable.S_binable with type t := t
module Replace_polymorphic_compare : sig ... endval comparator : (t, comparator_witness) Core__.Comparator.comparatormodule Map : sig ... endmodule Set : sig ... endinclude Regular.Std.Data.S with type t := t
name,Ver v,desc information attached to a particular reader or writer.
Data representation version. After any change in data representation the version should be increased.
Serializers that are derived from a data representation must have the same version as a version of the data structure, from which it is derived. This kind of serializers can only read and write data of the same version.
Other serializers can actually read and write data independent on its representation version. A serializer, that can't store data of current version simply shouldn't be added to a set of serializers.
It is assumed, that if a reader and a writer has the same name and version, then whatever was written by the writer should be readable by the reader. The round-trip equality is not required, thus it is acceptable if some information is lost.
It is also possible, that a reader and a writer that has the same name are compatible. In that case it is recommended to use semantic versioning.
val size_in_bytes : ?ver:string -> ?fmt:string -> t -> intsize_in_bytes ?ver ?fmt datum returns the amount of bytes that is needed to represent datum in the given format and version
val of_bytes : ?ver:string -> ?fmt:string -> Regular.Std.bytes -> tof_bytes ?ver ?fmt bytes deserializes a value from bytes.
val to_bytes : ?ver:string -> ?fmt:string -> t -> Regular.Std.bytesto_bytes ?ver ?fmt datum serializes a datum to a sequence of bytes.
val blit_to_bytes :
?ver:string ->
?fmt:string ->
Regular.Std.bytes ->
t ->
int ->
unitblit_to_bytes ?ver ?fmt buffer datum offset copies a serialized representation of datum into a buffer, starting from the offset.
val of_bigstring : ?ver:string -> ?fmt:string -> Core_kernel.bigstring -> tof_bigstring ?ver ?fmt buf deserializes a datum from bigstring
val to_bigstring : ?ver:string -> ?fmt:string -> t -> Core_kernel.bigstringof_bigstring ?ver ?fmt datum serializes a datum to a sequence of bytes represented as bigstring
val blit_to_bigstring :
?ver:string ->
?fmt:string ->
Core_kernel.bigstring ->
t ->
int ->
unitblit_to_bigstring ?ver ?fmt buffer datum offset copies a serialized representation of datum into a buffer, starting from offset.
module Io : sig ... endInput/Output functions for the given datum.
module Cache : sig ... endData cache.
val add_reader :
?desc:string ->
ver:string ->
string ->
t Regular.Std.reader ->
unitadd_reader ?desc ~ver name reader registers a new reader with a provided name, version ver and optional description desc
val add_writer :
?desc:string ->
ver:string ->
string ->
t Regular.Std.writer ->
unitadd_writer ?desc ~ver name writer registers a new writer with a provided name, version ver and optional description desc
val available_readers : unit -> info listavailable_reader () lists available readers for the data type
val default_reader : unit -> infodefault_reader returns information about default reader
set_default_reader ?ver name sets new default reader. If version is not specified then the latest available version is used. Raises an exception if a reader with a given name doesn't exist.
with_reader ?ver name operation temporary sets a default reader to a reader with a specified name and version. The default reader is restored after operation is finished.
val available_writers : unit -> info listavailable_writer () lists available writers for the data type
val default_writer : unit -> infodefault_writer returns information about the default writer
set_default_writer ?ver name sets new default writer. If version is not specified then the latest available version is used. Raises an exception if a writer with a given name doesn't exist.
with_writer ?ver name operation temporary sets a default writer to a writer with a specified name and version. The default writer is restored after operation is finished.
val default_printer : unit -> info optiondefault_writer optionally returns an information about default printer
set_default_printer ?ver name sets new default printer. If version is not specified then the latest available version is used. Raises an exception if a printer with a given name doesn't exist.
with_printer ?ver name operation temporary sets a default printer to a printer with a specified name and version. The default printer is restored after operation is finished.
Low level access to serializers
val find_reader : ?ver:string -> string -> t Regular.Std.reader optionfind_reader ?ver name lookups a reader with a given name. If version is not specified, then a reader with maximum version is returned.
val find_writer : ?ver:string -> string -> t Regular.Std.writer optionfind_writer ?ver name lookups a writer with a given name. If version is not specified, then a writer with maximum version is returned.