pub struct psllq_b<R>where
R: Registers,{
pub xmm1: Xmm<R::ReadWriteXmm>,
pub imm8: Imm8,
}
Expand description
psllq: B(xmm1[rw], imm8) => 0x66 + 0x0F + 0x73 /6 ib [_64b | compat | sse2]
// cranelift/assembler-x64/meta/src/generate/inst.rs:14
Fields§
§xmm1: Xmm<R::ReadWriteXmm>
§imm8: Imm8
Implementations§
Trait Implementations§
Source§impl<'arbitrary, R> Arbitrary<'arbitrary> for psllq_b<R>where
R: Registers + RegistersArbitrary,
impl<'arbitrary, R> Arbitrary<'arbitrary> for psllq_b<R>where
R: Registers + RegistersArbitrary,
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<R> Copy for psllq_b<R>
Auto Trait Implementations§
impl<R> Freeze for psllq_b<R>
impl<R> RefUnwindSafe for psllq_b<R>
impl<R> Send for psllq_b<R>
impl<R> Sync for psllq_b<R>
impl<R> Unpin for psllq_b<R>
impl<R> UnwindSafe for psllq_b<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