Skip to main content

ShllEmitter

Trait ShllEmitter 

Source
pub trait ShllEmitter<T0, T1, T2> {
    // Required method
    fn shll(&mut self, rd: T0, rn: T1, operand_3: T2);
}
Expand description

Emits the SHLL instruction. Assembly forms: SHLL VD.8H, VN.8B, #8; SHLL VD.4S, VN.4H, #16; SHLL VD.2D, VN.2S, #32. Operands: rd, rn, operand_3.

Required Methods§

Source

fn shll(&mut self, rd: T0, rn: T1, operand_3: T2)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§