pub struct pushw_i16 {
pub imm16: Imm16,
}
Expand description
pushw: I16(imm16) => 0x66 + 0x68 iw [_64b | compat]
// cranelift/assembler-x64/meta/src/generate/inst.rs:14
Fields§
§imm16: Imm16
Implementations§
Source§impl pushw_i16
impl pushw_i16
pub fn new(imm16: impl Into<Imm16>) -> Self
pub fn mnemonic(&self) -> Cow<'static, str>
pub fn encode(&self, buf: &mut impl CodeSink, _: &impl KnownOffsetTable)
pub fn visit<R: Registers>(&mut self, visitor: &mut impl RegisterVisitor<R>)
pub fn features(&self) -> Vec<Feature>
Trait Implementations§
Source§impl<'arbitrary> Arbitrary<'arbitrary> for pushw_i16
impl<'arbitrary> Arbitrary<'arbitrary> for pushw_i16
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 moreimpl Copy for pushw_i16
Auto Trait Implementations§
impl Freeze for pushw_i16
impl RefUnwindSafe for pushw_i16
impl Send for pushw_i16
impl Sync for pushw_i16
impl Unpin for pushw_i16
impl UnwindSafe for pushw_i16
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