pub enum CellExpression {
    Deref(CellRef),
    DoubleDeref(CellRef, i16),
    Immediate(BigInt),
    BinOp {
        op: CellOperator,
        a: CellRef,
        b: DerefOrImmediate,
    },
}
Expand description

The expression representing a cell in the casm memory.

Variants§

§

Deref(CellRef)

§

DoubleDeref(CellRef, i16)

Represents an expression of the form [[cell_ref] + offset].

§

Immediate(BigInt)

§

BinOp

Represents an expression of the form [cell_ref] + [cell_ref] or [cell_ref] + imm.

If op is CellOperator::Div, b must not be zero.

Implementations§

source§

impl CellExpression

source

pub fn from_res_operand(operand: ResOperand) -> Self

source

pub fn to_deref(&self) -> Option<CellRef>

Extract the cell reference from the cell expression.

source

pub fn to_deref_or_immediate(&self) -> Option<DerefOrImmediate>

Extract a deref or immediate from the cell expression.

source

pub fn to_deref_with_offset(&self) -> Option<(CellRef, i16)>

Given [ref] + offset returns ([ref], offset).

source

pub fn to_buffer(&self, required_slack: i16) -> Option<CellExpression>

Returns the reference as a buffer with at least required_slack next cells that can be written as an instruction offset.

Trait Implementations§

source§

impl ApplyApChange for CellExpression

source§

fn apply_known_ap_change(self, ap_change: usize) -> Option<Self>

Attempts to apply ap change, fail on overflow only.
source§

fn can_apply_unknown(&self) -> bool

Can unknown ap change be applied.
source§

fn apply_ap_change(self, ap_change: ApChange) -> Result<Self, ApChangeError>

Attempts to apply ap change.
source§

fn unchecked_apply_known_ap_change(self, ap_change: usize) -> Self

Same as Self::apply_known_ap_change but unchecked.
source§

impl Clone for CellExpression

source§

fn clone(&self) -> CellExpression

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 Debug for CellExpression

source§

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

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

impl PartialEq for CellExpression

source§

fn eq(&self, other: &CellExpression) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for CellExpression

source§

impl StructuralPartialEq for CellExpression

Auto Trait Implementations§

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<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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> ToOwned for T
where T: Clone,

§

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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<T> Upcast<T> for T
where T: ?Sized,

source§

fn upcast(&self) -> &T

source§

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

source§

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