Skip to main content

FmlsEmitter

Trait FmlsEmitter 

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

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

Required Methods§

Source

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