pub trait CFldEmitter<T0, T1, T2> {
// Required method
fn c_fld(&mut self, rd: T0, rs1: T1, imm: T2);
}Expand description
Load double-precision
Loads a double precision floating-point value from memory into register rd.
It computes an effective address by adding the zero-extended offset, scaled by 8,
to the base address in register rs1.
It expands to fld rd, offset(rs1).
§Forms
Assembly: c.fld xd, imm(xs1)
Rust: c_fld(rd, rs1, imm)
§Arguments
rd— Destination register.rs1— Memory base register.imm— Immediate encoding value.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".