2019-06-12 14:57:58 +00:00
|
|
|
#ifndef TARGET_RISCV_CPU_USER_H
|
|
|
|
#define TARGET_RISCV_CPU_USER_H
|
|
|
|
|
2019-03-08 18:06:28 +00:00
|
|
|
#define xRA 1 /* return address (aka link register) */
|
|
|
|
#define xSP 2 /* stack pointer */
|
|
|
|
#define xGP 3 /* global pointer */
|
|
|
|
#define xTP 4 /* thread pointer */
|
|
|
|
|
|
|
|
#define xA0 10 /* gpr[10-17] are syscall arguments */
|
|
|
|
#define xA1 11
|
|
|
|
#define xA2 12
|
|
|
|
#define xA3 13
|
|
|
|
#define xA4 14
|
|
|
|
#define xA5 15
|
|
|
|
#define xA6 16
|
2019-03-20 03:56:43 +00:00
|
|
|
#define xA7 17 /* syscall number for RVI ABI */
|
|
|
|
#define xT0 5 /* syscall number for RVE ABI */
|
2019-06-12 14:57:58 +00:00
|
|
|
|
|
|
|
#endif
|