package bap-std
- Overview
- No Docs
You can search for identifiers within the package.
in-package search v0.2.0
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=63ada71fa4f602bd679174dc6bf780d54aeded40ad4ec20d256df15886e3d2d5
md5=b8b1aff8c6846f2213eafc54de07b304
doc/bap/Bap/Std/Graphs/Ir/Node/index.html
Module Ir.Node
IR Graph node.
Node is labeled by the blk term.
include Graphlib.Std.Node
with type graph = t
and type t = node
and type edge = edge
and type label = blk term
type t = nodenode type is opaque
type graph = tnode type is opaque
the type of the node graph
type edge = edgethe label type
the edge type
create x creates a node labeled with x.
For unlabeled graphs this is an identity function.
mem n g is true if n is a member of nodes N of graph g.
For labeled graphs the membership is tested without taking into account the label of the node.
val succs : t -> graph -> t Regular.Std.seqsuccs node graph returns a sequence of successors of a node in a a given graph
val preds : t -> graph -> t Regular.Std.seqpreds node graph returns a sequence of predecessors of a node in a a given graph
val inputs : t -> graph -> edge Regular.Std.seqinputs node graph is incoming edges of a node in graph
val outputs : t -> graph -> edge Regular.Std.seqoutputs node graph is outcomming edges of a node in graph
degree ?dir n when in_or_out is `In then returns the amount of incoming edges, otherwise returns the amount of outcomming edges. If parameter dir is left absent, then return the amount of adjacent nodes (i.e., a sum of incoming and outcomming edges).
insert n g returns new graph g' that has a set of nodes N extended with node n. If N was contained n, then the g == g'. Use update to change existing nodes.
Postconditions:
- N(g') = N(g) ∪ {n}.update n l g for a graph with labeled nodes if node n is not in N(g) then returns g else returns graph g where node n is labeled with l.
For unlabeled graph returns g.
Postconditions:
- n ∉ N(g) -> n ∉ N(g'). - n ∈ N(g) → ν(g')n = l.
remove n g returns graph g', with a node n removed from a set of nodes N.
Postconditions:
- E(g) ⊆ E(g')
- N(g) ⊆ N(g')
- N(g') = N(g) \ {n}.edge x y g if graph g has an edge between nodes x and y then it is returned.
node provides common data structures, like Table, Map, Set, Hash_set, etc.
include Regular.Std.Opaque.S with type t := t
include Core_kernel.Comparable.S with type t := t
include Base.Comparable.S with type t := t
ascending is identical to compare. descending x y = ascending y x. These are intended to be mnemonic when used like List.sort ~compare:ascending and List.sort ~cmp:descending, since they cause the list to be sorted in ascending or descending order, respectively.
clamp_exn t ~min ~max returns t', the closest value to t such that between t' ~low:min ~high:max is true.
Raises if not (min <= max).
val comparator : (t, comparator_witness) Base__.Comparator.comparatormodule Replace_polymorphic_compare :
Base.Comparable.Polymorphic_compare with type t := tmodule Map :
Core_kernel.Map.S
with type Key.t = t
with type Key.comparator_witness = comparator_witnessmodule Set :
Core_kernel.Set.S
with type Elt.t = t
with type Elt.comparator_witness = comparator_witnessinclude Core_kernel.Hashable.S with type t := t
include Core_kernel.Hashable.Common with type t := t
val hash_fold_t :
Ppx_hash_lib.Std.Hash.state ->
t ->
Ppx_hash_lib.Std.Hash.stateval hash : t -> Ppx_hash_lib.Std.Hash.hash_valueval hashable : t Core_kernel.Hashtbl.Hashable.tmodule Table : Core_kernel.Hashtbl.S with type key = tmodule Hash_set : Core_kernel.Hash_set.S with type elt = tmodule Hash_queue : Core_kernel.Hash_queue.S with type key = tinclude 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 -> unit