c.ldsp
Load doubleword from stack pointer
This instruction is defined by:
Synopsis
C.LDSP is an RV64C/RV128C-only instruction that loads a 64-bit value from memory
into register rd.
It computes its effective address by adding the zero-extended offset, scaled by 8,
to the stack pointer, x2.
It expands to ld rd, offset(x2)
.
C.LDSP is only valid when rd ≠ x0 the code points with rd=x0 are reserved.
Decode Variables
Bits<9> imm = {$encoding[4:2], $encoding[12], $encoding[6:5], 3'd0};
Bits<5> rd = $encoding[11:7];
Execution
-
Pruned, XLEN == 64
-
Original
if ((%%LINK%csr_field;misa.C;CSR[misa].C%% == 1'b0)) {
%%LINK%func;raise;raise%%(ExceptionCode::IllegalInstruction, %%LINK%func;mode;mode%%(), $encoding);
}
XReg virtual_address = X[2] + imm;
X[rd] = %%LINK%func;read_memory;read_memory%%<64>(virtual_address, $encoding);
if (%%LINK%func;implemented?;implemented?%%(ExtensionName::C) && (%%LINK%csr_field;misa.C;CSR[misa].C%% == 1'b0)) {
%%LINK%func;raise;raise%%(ExceptionCode::IllegalInstruction, %%LINK%func;mode;mode%%(), $encoding);
}
XReg virtual_address = X[2] + imm;
X[rd] = %%LINK%func;read_memory;read_memory%%<64>(virtual_address, $encoding);