risc-v

Definition

call (RISC-V)

Calls a function by jumping to its address while saving the return address.

call label

The above is a pseudoinstruction, which is translated to (auipc, jalr):

auipc ra, imm_{31:12}
jalr  ra, ra, imm_{11:0}