pub trait CLdEmitter<T0, T1, T2> {
// Required method
fn c_ld(&mut self, rd: T0, rs1: T1, imm: T2);
}Expand description
Load double
Loads a 64-bit 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 ld rd, offset(rs1).
§Forms
Assembly: c.ld xd, imm(xs1)
Rust: c_ld(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".