Skip to main content

CFsdspEmitter

Trait CFsdspEmitter 

Source
pub trait CFsdspEmitter<T0, T1> {
    // Required method
    fn c_fsdsp(&mut self, rs2: T0, imm: T1);
}
Expand description

Store double-precision value to stack

Stores a double-precision floating-point value in floating-point register rs2 to memory. It computes an effective address by adding the zero-extended offset, scaled by 8, to the stack pointer, x2. It expands to fsd rs2, offset(x2).

§Forms

Assembly: c.fsdsp fs2, imm(sp) Rust: c_fsdsp(rs2, imm)

§Arguments

  • rs2 — Instruction operand.
  • imm — Immediate encoding value.

Required Methods§

Source

fn c_fsdsp(&mut self, rs2: T0, imm: T1)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<U1: Into<Imm>> CFsdspEmitter<Fp, U1> for Assembler<'_>