pub struct movsd_c_m<R>where
R: Registers,{
pub m64: Amode<R::ReadGpr>,
pub xmm1: Xmm<R::ReadXmm>,
}Expand description
movsd: C_M(m64[w], xmm1) => 0xF2 + 0x0F + 0x11 /r [compat | _64b | sse2] (alternate: avx => vmovsd_c_m) // /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cranelift-assembler-x64-meta-0.122.0/src/generate/inst.rs:14
Fields§
§m64: Amode<R::ReadGpr>§xmm1: Xmm<R::ReadXmm>Implementations§
Source§impl<R: Registers> movsd_c_m<R>
impl<R: Registers> movsd_c_m<R>
pub fn new( m64: impl Into<Amode<R::ReadGpr>>, xmm1: impl Into<Xmm<R::ReadXmm>>, ) -> Self
pub fn mnemonic(&self) -> Cow<'static, str>
pub fn encode(&self, buf: &mut impl CodeSink)
pub fn visit(&mut self, visitor: &mut impl RegisterVisitor<R>)
pub fn features(&self) -> Vec<Feature>
Trait Implementations§
impl<R> Copy for movsd_c_m<R>
Auto Trait Implementations§
impl<R> Freeze for movsd_c_m<R>
impl<R> RefUnwindSafe for movsd_c_m<R>
impl<R> Send for movsd_c_m<R>
impl<R> Sync for movsd_c_m<R>
impl<R> Unpin for movsd_c_m<R>
impl<R> UnwindSafe for movsd_c_m<R>
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