Skip to main content

FmlaEmitter

Trait FmlaEmitter 

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

Emits the FMLA instruction. Assembly forms: FMLA SX, SN, VM.S[#IDX]; FMLA DX, DN, VM.D[#IDX]; FMLA VX.2S, VN.2S, VM.2S; FMLA VX.4S, VN.4S, VM.4S (and related forms). Operands: operand_1, rn, rm.

Required Methods§

Source

fn fmla(&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§