pub struct movss_c_m<R>where
R: Registers,{
pub m32: Amode<R::ReadGpr>,
pub xmm1: Xmm<R::ReadXmm>,
}Expand description
movss: C_M(m32[w], xmm1) => 0xF3 + 0x0F + 0x11 /r [compat | _64b | sse] (alternate: avx => vmovss_c_m) // /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cranelift-assembler-x64-meta-0.122.0/src/generate/inst.rs:14
Fields§
§m32: Amode<R::ReadGpr>§xmm1: Xmm<R::ReadXmm>Implementations§
Source§impl<R: Registers> movss_c_m<R>
impl<R: Registers> movss_c_m<R>
pub fn new( m32: 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 movss_c_m<R>
Auto Trait Implementations§
impl<R> Freeze for movss_c_m<R>
impl<R> RefUnwindSafe for movss_c_m<R>
impl<R> Send for movss_c_m<R>
impl<R> Sync for movss_c_m<R>
impl<R> Unpin for movss_c_m<R>
impl<R> UnwindSafe for movss_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