Skip to main content

MlaEmitter

Trait MlaEmitter 

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

Emits the MLA instruction. Assembly forms: MLA VX.T, VN.T, VM.T; MLA VX.T, VN.T, VM.T; MLA VX.4H, VN.4H, VM.H[#IDX]; MLA VX.8H, VN.8H, VM.H[#IDX] (and related forms). Operands: operand_1, rn, rm.

Required Methods§

Source

fn mla(&mut self, operand_1: T0, rn: T1, rm: T2)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§