pub enum Type {
Poly(u32),
BitVector,
BitVectorWithWidth(usize),
BitVectorUnknown(u32),
Int,
Bool,
Unit,
}
Expand description
Higher-level type, not including bitwidths.
Variants§
Poly(u32)
Internal type used solely for type inference
BitVector
The expression is a bitvector, currently modeled in the logic QF_BV https://SMT-LIB.cs.uiowa.edu/version1/logics/QF_BV.smt This corresponds to Cranelift’s Isle type: (type Value (primitive Value))
BitVectorWithWidth(usize)
Use if the width is known
BitVectorUnknown(u32)
Int
The expression is an integer (currently used for ISLE type, representing bitwidth)
Bool
The expression is a boolean.
Unit
Unit, removed before SMT-Lib
Implementations§
Trait Implementations§
impl Eq for Type
impl StructuralPartialEq for Type
Auto Trait Implementations§
impl Freeze for Type
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more