Skip to main content

Umull2Emitter

Trait Umull2Emitter 

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

Emits the UMULL2 instruction. Assembly forms: UMULL2 VD.TA, VN.TB, VM.TB; UMULL2 VD.4S, VN.8H, VM.H[#IDX]; UMULL2 VD.2D, VN.4S, VM.S[#IDX]. Operands: rd, rn, rm.

Required Methods§

Source

fn umull2(&mut self, rd: T0, rn: T1, rm: T2)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§