pub struct CallIndirect {
pub reg: XReg,
}
Expand description
Transfer control to the PC in reg
and set lr
to the PC just
after this instruction.
Fields§
§reg: XReg
Implementations§
Trait Implementations§
Source§impl<'arbitrary> Arbitrary<'arbitrary> for CallIndirect
impl<'arbitrary> Arbitrary<'arbitrary> for CallIndirect
Source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read moreSource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read moreSource§impl Clone for CallIndirect
impl Clone for CallIndirect
Source§fn clone(&self) -> CallIndirect
fn clone(&self) -> CallIndirect
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CallIndirect
impl Debug for CallIndirect
Source§impl From<CallIndirect> for Op
impl From<CallIndirect> for Op
Source§fn from(op: CallIndirect) -> Self
fn from(op: CallIndirect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CallIndirect
impl PartialEq for CallIndirect
impl Copy for CallIndirect
impl Eq for CallIndirect
impl StructuralPartialEq for CallIndirect
Auto Trait Implementations§
impl Freeze for CallIndirect
impl RefUnwindSafe for CallIndirect
impl Send for CallIndirect
impl Sync for CallIndirect
impl Unpin for CallIndirect
impl UnwindSafe for CallIndirect
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