_.Valuetype id = Uid.tThe unique identifier for variable naming (SSA form).
val constant : Binsec_kernel.Bitvector.t -> tconstant v creates a value that evaluates to the Binsec_kernel.Bitvector v.
val zero : tzero shorthand for constant Binsec_kernel.Bitvector.zero.
var i n s creates a (first-order) constant value of s bits, named n and uniquely identified by i.
val unary :
Binsec_symbolic.State.unary Binsec_symbolic.State.operator ->
t ->
tunary o v returns the application of the unary operator o applied to the value v.
val binary :
Binsec_symbolic.State.binary Binsec_symbolic.State.operator ->
t ->
t ->
tbinary o v1 v2 returns the application of the binary operator o applied to the values v1 and v2.
ite cond if_term else_term returns the value that evaluates to if_term if cond is true, or else_term otherwise.
val is_symbolic : t -> boolis_symbolic v returns true if the v does not syntactically evaluate to constant Binsec_kernel.Bitvector.t.
val is_zero : t -> Binsec_symbolic.State.trileanis_zero v returns True if v equals zero, False if v equals one and Unknown otherwise.
val sizeof : t -> intsizeof v returns the size in bits of the value v.