Struct fuel_asm::RegId

source ·
pub struct RegId(/* private fields */);
Expand description

Represents a 6-bit register ID, guaranteed to be masked by construction.

Implementations§

source§

impl RegId

source

pub const BAL: Self = _

Received balance for this context.

source

pub const CGAS: Self = _

Remaining gas in the context.

source

pub const ERR: Self = _

Error codes for particular operations.

source

pub const FLAG: Self = _

Flags register.

source

pub const FP: Self = _

Frame pointer. Memory address of beginning of current call frame.

source

pub const GGAS: Self = _

Remaining gas globally.

source

pub const HP: Self = _

Heap pointer. Memory address below the current bottom of the heap (points to free memory).

source

pub const IS: Self = _

Instructions start. Pointer to the start of the currently-executing code.

source

pub const OF: Self = _

Contains overflow/underflow of addition, subtraction, and multiplication.

source

pub const ONE: Self = _

Contains one (1), for convenience.

source

pub const PC: Self = _

The program counter. Memory address of the current instruction.

source

pub const RET: Self = _

Return value or pointer.

source

pub const RETL: Self = _

Return value length in bytes.

source

pub const SP: Self = _

Stack pointer. Memory address on top of current writable stack area (points to free memory).

source

pub const SSP: Self = _

Stack start pointer. Memory address of bottom of current writable stack area.

source

pub const WRITABLE: Self = _

Smallest writable register.

source

pub const ZERO: Self = _

Contains zero (0), for convenience.

source

pub const fn new(u: u8) -> Self

Construct a register ID from the given value.

The given value will be masked to 6 bits.

source

pub const fn to_u8(self) -> u8

A const alternative to the Into<u8> implementation.

source§

impl RegId

source

pub fn new_checked(u: u8) -> Option<RegId>

Construct a register ID from the given value.

Returns None if the value is outside the 6-bit value range.

source§

impl RegId

source

pub fn bal() -> Self

Available on crate feature typescript only.

Received balance for this context.

source

pub fn cgas() -> Self

Available on crate feature typescript only.

Remaining gas in the context.

source

pub fn err() -> Self

Available on crate feature typescript only.

Error codes for particular operations.

source

pub fn flag() -> Self

Available on crate feature typescript only.

Flags register.

source

pub fn fp() -> Self

Available on crate feature typescript only.

Frame pointer. Memory address of beginning of current call frame.

source

pub fn ggas() -> Self

Available on crate feature typescript only.

Remaining gas globally.

source

pub fn hp() -> Self

Available on crate feature typescript only.

Heap pointer. Memory address below the current bottom of the heap (points to free memory).

source

pub fn is() -> Self

Available on crate feature typescript only.

Instructions start. Pointer to the start of the currently-executing code.

source

pub fn of() -> Self

Available on crate feature typescript only.

Contains overflow/underflow of addition, subtraction, and multiplication.

source

pub fn one() -> Self

Available on crate feature typescript only.

Contains one (1), for convenience.

source

pub fn pc() -> Self

Available on crate feature typescript only.

The program counter. Memory address of the current instruction.

source

pub fn ret() -> Self

Available on crate feature typescript only.

Return value or pointer.

source

pub fn retl() -> Self

Available on crate feature typescript only.

Return value length in bytes.

source

pub fn sp() -> Self

Available on crate feature typescript only.

Stack pointer. Memory address on top of current writable stack area (points to free memory).

source

pub fn spp() -> Self

Available on crate feature typescript only.

Stack start pointer. Memory address of bottom of current writable stack area.

source

pub fn writable() -> Self

Available on crate feature typescript only.

Smallest writable register.

source

pub fn zero() -> Self

Available on crate feature typescript only.

Contains zero (0), for convenience.

source

pub fn new_typescript(u: u8) -> Self

Available on crate feature typescript only.

Construct a register ID from the given value.

The given value will be masked to 6 bits.

source

pub fn to_u8_typescript(self) -> u8

Available on crate feature typescript only.

A const alternative to the Into<u8> implementation.

Trait Implementations§

source§

impl CheckRegId for RegId

source§

fn check(self) -> RegId

Convert to a RegId, or panic
source§

impl Clone for RegId

source§

fn clone(&self) -> RegId

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 RegId

source§

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

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

impl From<RegId> for JsValue

source§

fn from(value: RegId) -> Self

Converts to this type from the input type.
source§

impl From<RegId> for u8

source§

fn from(RegId: RegId) -> Self

Converts to this type from the input type.
source§

impl From<RegId> for usize

source§

fn from(r: RegId) -> usize

Converts to this type from the input type.
source§

impl From<u8> for RegId

source§

fn from(u: u8) -> Self

Converts to this type from the input type.
source§

impl FromWasmAbi for RegId

§

type Abi = u32

The wasm ABI type that this converts from when coming back out from the ABI boundary.
source§

unsafe fn from_abi(js: u32) -> Self

Recover a Self from Self::Abi. Read more
source§

impl Hash for RegId

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<T> Index<RegId> for [T]where [T]: Index<usize, Output = T>,

§

type Output = T

The returned type after indexing.
source§

fn index(&self, ix: RegId) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<T> IndexMut<RegId> for [T]where [T]: IndexMut<usize, Output = T>,

source§

fn index_mut(&mut self, ix: RegId) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl IntoWasmAbi for RegId

§

type Abi = u32

The wasm ABI type that this converts into when crossing the ABI boundary.
source§

fn into_abi(self) -> u32

Convert self into Self::Abi so that it can be sent across the wasm ABI boundary.
source§

impl LongRefFromWasmAbi for RegId

§

type Abi = u32

Same as RefFromWasmAbi::Abi
§

type Anchor = Ref<'static, RegId>

Same as RefFromWasmAbi::Anchor
source§

unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor

Same as RefFromWasmAbi::ref_from_abi
source§

impl OptionFromWasmAbi for RegId

source§

fn is_none(abi: &Self::Abi) -> bool

Tests whether the argument is a “none” instance. If so it will be deserialized as None, and otherwise it will be passed to FromWasmAbi.
source§

impl OptionIntoWasmAbi for RegId

source§

fn none() -> Self::Abi

Returns an ABI instance indicating “none”, which JS will interpret as the None branch of this option. Read more
source§

impl Ord for RegId

source§

fn cmp(&self, other: &RegId) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for RegId

source§

fn eq(&self, other: &RegId) -> 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 PartialOrd for RegId

source§

fn partial_cmp(&self, other: &RegId) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl RefFromWasmAbi for RegId

§

type Abi = u32

The wasm ABI type references to Self are recovered from.
§

type Anchor = Ref<'static, RegId>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don’t persist beyond one function call, and so that they remain anonymous.
source§

unsafe fn ref_from_abi(js: Self::Abi) -> Self::Anchor

Recover a Self::Anchor from Self::Abi. Read more
source§

impl RefMutFromWasmAbi for RegId

§

type Abi = u32

Same as RefFromWasmAbi::Abi
§

type Anchor = RefMut<'static, RegId>

Same as RefFromWasmAbi::Anchor
source§

unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor

Same as RefFromWasmAbi::ref_from_abi
source§

impl TryFrom<JsValue> for RegId

§

type Error = JsValue

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

fn try_from(value: JsValue) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl VectorFromWasmAbi for RegId

§

type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi

source§

unsafe fn vector_from_abi(js: Self::Abi) -> Box<[RegId]>

source§

impl VectorIntoWasmAbi for RegId

§

type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi

source§

fn vector_into_abi(vector: Box<[RegId]>) -> Self::Abi

source§

impl WasmDescribe for RegId

source§

impl WasmDescribeVector for RegId

source§

impl Copy for RegId

source§

impl Eq for RegId

source§

impl StructuralEq for RegId

source§

impl StructuralPartialEq for RegId

Auto Trait Implementations§

§

impl RefUnwindSafe for RegId

§

impl Send for RegId

§

impl Sync for RegId

§

impl Unpin for RegId

§

impl UnwindSafe for RegId

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 Twhere 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> ReturnWasmAbi for Twhere T: IntoWasmAbi,

§

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi
source§

fn return_abi(self) -> <T as ReturnWasmAbi>::Abi

Same as IntoWasmAbi::into_abi, except that it may throw and never return in the case of Err.
source§

impl<T> ToOwned for Twhere 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 Twhere 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 Twhere 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.