(→Overview) |
|||
Line 11: | Line 11: | ||
:[[File:risc-v base integer regsiters.svg|500px]] | :[[File:risc-v base integer regsiters.svg|500px]] | ||
+ | |||
+ | == Calling convention == | ||
+ | In conventional RISC-V software, the stack grows downward with the stack pointer always being 16-byte aligned. | ||
+ | |||
+ | {| class="wikitable" | ||
+ | |- | ||
+ | ! Register !! Description !! Owner | ||
+ | |- | ||
+ | | x0 || [[zero register|hardwired zero]] || - | ||
+ | |- | ||
+ | | x1 || return address || Caller | ||
+ | |- | ||
+ | | x2 || stack pointer || Callee | ||
+ | |- | ||
+ | | x3 || global pointer || - | ||
+ | |- | ||
+ | | x4 || thread pointer || - | ||
+ | |- | ||
+ | | x5-7 || temporary registers || Caller | ||
+ | |- | ||
+ | | x8 || saved register / frame pointer || Callee | ||
+ | |- | ||
+ | | x9 || saved register || Callee | ||
+ | |- | ||
+ | | x10-11 || function arguments / return values || Caller | ||
+ | |- | ||
+ | | x12-17 || function arguments || Caller | ||
+ | |- | ||
+ | | x18-27 || saved registers || Callee | ||
+ | |- | ||
+ | | x28-31 || temporary registers || Caller | ||
+ | |} |
Revision as of 03:20, 12 December 2017
Instruction Set Architecture
- Foundation
- Non-Standard Extensions
- Addressing Modes
- Registers
- Assembly
- Interrupts
- Microarchitectures
RISC-V defines a set of registers that are part of the core ISA.
Overview
RISC-V base ISA consists of 32 general-purpose registers x1-x31
which hold integer values. The register x0
is hardwired to the constant 0
. There is an additional user-visible program counter pc
register which holds the address of the current instruction. RISC-V does not define a specific subroutine return address link register, but it does suggest that the standard software calling convention should use register x1
to store the return address on a call.
The width of those registers are defined by the RISC-V base variant used. That is, for RV32, the registers are 32 bits wide, for RV64, they are 64 bits, and for RV128, those registers are 128 bit wide.
Note that RISC-V defines a special ISA E for resource-constrained embedded applications which only defines 16 registers.
Calling convention
In conventional RISC-V software, the stack grows downward with the stack pointer always being 16-byte aligned.
Register | Description | Owner |
---|---|---|
x0 | hardwired zero | - |
x1 | return address | Caller |
x2 | stack pointer | Callee |
x3 | global pointer | - |
x4 | thread pointer | - |
x5-7 | temporary registers | Caller |
x8 | saved register / frame pointer | Callee |
x9 | saved register | Callee |
x10-11 | function arguments / return values | Caller |
x12-17 | function arguments | Caller |
x18-27 | saved registers | Callee |
x28-31 | temporary registers | Caller |