Make.ValueSourcetype t = valueA symbolic value.
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 : State.unary State.operator -> t -> tunary o v returns the application of the unary operator o applied to the value v.
val binary : State.binary 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 -> State.trileanval sizeof : t -> intsizeof v returns the size in bits of the value v.