triton_isa::instruction

Enum AnInstruction

Source
pub enum AnInstruction<Dest: PartialEq + Default> {
Show 46 variants Pop(NumberOfWords), Push(BFieldElement), Divine(NumberOfWords), Pick(OpStackElement), Place(OpStackElement), Dup(OpStackElement), Swap(OpStackElement), Halt, Nop, Skiz, Call(Dest), Return, Recurse, RecurseOrReturn, Assert, ReadMem(NumberOfWords), WriteMem(NumberOfWords), Hash, AssertVector, SpongeInit, SpongeAbsorb, SpongeAbsorbMem, SpongeSqueeze, Add, AddI(BFieldElement), Mul, Invert, Eq, Split, Lt, And, Xor, Log2Floor, Pow, DivMod, PopCount, XxAdd, XxMul, XInvert, XbMul, ReadIo(NumberOfWords), WriteIo(NumberOfWords), MerkleStep, MerkleStepMem, XxDotStep, XbDotStep,
}
Expand description

A Triton VM instruction. See the Instruction Set Architecture for more details.

The type parameter Dest describes the type of addresses (absolute or labels).

Variants§

§

Pop(NumberOfWords)

§

Push(BFieldElement)

§

Divine(NumberOfWords)

§

Pick(OpStackElement)

§

Place(OpStackElement)

§

Dup(OpStackElement)

§

Swap(OpStackElement)

§

Halt

§

Nop

§

Skiz

§

Call(Dest)

§

Return

§

Recurse

§

RecurseOrReturn

§

Assert

§

ReadMem(NumberOfWords)

§

WriteMem(NumberOfWords)

§

Hash

§

AssertVector

§

SpongeInit

§

SpongeAbsorb

§

SpongeAbsorbMem

§

SpongeSqueeze

§

Add

§

AddI(BFieldElement)

§

Mul

§

Invert

§

Eq

§

Split

§

Lt

§

And

§

Xor

§

Log2Floor

§

Pow

§

DivMod

§

PopCount

§

XxAdd

§

XxMul

§

XInvert

§

XbMul

§

ReadIo(NumberOfWords)

§

WriteIo(NumberOfWords)

§

MerkleStep

§

MerkleStepMem

§

XxDotStep

§

XbDotStep

Implementations§

Source§

impl<Dest: PartialEq + Default> AnInstruction<Dest>

Source

pub const fn opcode(&self) -> u32

Assign a unique positive integer to each Instruction.

Source

pub const fn name(&self) -> &'static str

Source

pub const fn opcode_b(&self) -> BFieldElement

Source

pub fn size(&self) -> usize

Number of words required to represent the instruction.

Source

pub fn ib(&self, arg: InstructionBit) -> BFieldElement

Get the i’th instruction bit

Source

pub fn map_call_address<F, NewDest>(&self, f: F) -> AnInstruction<NewDest>
where F: FnOnce(&Dest) -> NewDest, NewDest: PartialEq + Default,

Source

pub const fn op_stack_size_influence(&self) -> i32

Source

pub fn is_u32_instruction(&self) -> bool

Indicates whether the instruction operates on base field elements that are also u32s.

Source§

impl AnInstruction<BFieldElement>

Source

pub fn arg(&self) -> Option<BFieldElement>

Get the argument of the instruction, if it has one.

Source

pub fn change_arg( self, new_arg: BFieldElement, ) -> Result<Self, InstructionError>

Change the argument of the instruction, if it has one. Returns an Err if the instruction does not have an argument or if the argument is out of range.

Trait Implementations§

Source§

impl<'arbitrary, Dest: PartialEq + Default + Arbitrary<'arbitrary>> Arbitrary<'arbitrary> for AnInstruction<Dest>

Source§

fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>

Generate an arbitrary value of Self from the given unstructured data. Read more
Source§

fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>

Generate an arbitrary value of Self from the entirety of the given unstructured data. Read more
Source§

fn size_hint(depth: usize) -> (usize, Option<usize>)

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

impl<Dest: Clone + PartialEq + Default> Clone for AnInstruction<Dest>

Source§

fn clone(&self) -> AnInstruction<Dest>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<Dest: Debug + PartialEq + Default> Debug for AnInstruction<Dest>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de, Dest> Deserialize<'de> for AnInstruction<Dest>
where Dest: Deserialize<'de> + PartialEq + Default,

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<Dest: Display + PartialEq + Default> Display for AnInstruction<Dest>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult

Formats the value using the given formatter. Read more
Source§

impl<Dest: PartialEq + Default> EnumCount for AnInstruction<Dest>

Source§

const COUNT: usize = 46usize

Source§

impl<Dest: PartialEq + Default + GetSize> GetSize for AnInstruction<Dest>

Source§

fn get_heap_size(&self) -> usize

Determines how many bytes this object occupies inside the heap. Read more
Source§

fn get_stack_size() -> usize

Determines how may bytes this object occupies inside the stack. Read more
Source§

fn get_size(&self) -> usize

Determines the total size of the object. Read more
Source§

impl<Dest: Hash + PartialEq + Default> Hash for AnInstruction<Dest>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<Dest: PartialEq + Default> IntoEnumIterator for AnInstruction<Dest>

Source§

impl<Dest: PartialEq + PartialEq + Default> PartialEq for AnInstruction<Dest>

Source§

fn eq(&self, other: &AnInstruction<Dest>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<Dest> Serialize for AnInstruction<Dest>
where Dest: Serialize + PartialEq + Default,

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<Dest: Copy + PartialEq + Default> Copy for AnInstruction<Dest>

Source§

impl<Dest: Eq + PartialEq + Default> Eq for AnInstruction<Dest>

Source§

impl<Dest: PartialEq + Default> StructuralPartialEq for AnInstruction<Dest>

Auto Trait Implementations§

§

impl<Dest> Freeze for AnInstruction<Dest>
where Dest: Freeze,

§

impl<Dest> RefUnwindSafe for AnInstruction<Dest>
where Dest: RefUnwindSafe,

§

impl<Dest> Send for AnInstruction<Dest>
where Dest: Send,

§

impl<Dest> Sync for AnInstruction<Dest>
where Dest: Sync,

§

impl<Dest> Unpin for AnInstruction<Dest>
where Dest: Unpin,

§

impl<Dest> UnwindSafe for AnInstruction<Dest>
where Dest: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize = _

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,