pub struct pushq_i32 {
pub imm32: Simm32,
}
Expand description
pushq: I32(imm32[sxq]) => 0x68 id [_64b | compat]
// cranelift/assembler-x64/meta/src/generate/inst.rs:14
Fields§
§imm32: Simm32
Implementations§
Source§impl pushq_i32
impl pushq_i32
pub fn new(imm32: impl Into<Simm32>) -> 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 pushq_i32
impl<'arbitrary> Arbitrary<'arbitrary> for pushq_i32
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 pushq_i32
Auto Trait Implementations§
impl Freeze for pushq_i32
impl RefUnwindSafe for pushq_i32
impl Send for pushq_i32
impl Sync for pushq_i32
impl Unpin for pushq_i32
impl UnwindSafe for pushq_i32
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