diff options
author | Andreas Schwab <schwab@suse.de> | 2022-05-16 15:51:21 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2022-05-16 15:51:57 +0200 |
commit | 0b6c6750732483b4d59c2fcb45484079cd84157d (patch) | |
tree | 7b464e1762f1e5c9b42b3bfd0957c586eb21b28b /elf | |
parent | 9403b71ae97e3f1a91c796ddcbb4e6f044434734 (diff) | |
download | glibc-0b6c6750732483b4d59c2fcb45484079cd84157d.tar glibc-0b6c6750732483b4d59c2fcb45484079cd84157d.tar.gz glibc-0b6c6750732483b4d59c2fcb45484079cd84157d.tar.bz2 glibc-0b6c6750732483b4d59c2fcb45484079cd84157d.zip |
Update RISC-V specific ELF definitions
The definitions are taken from the 1.0-rc2 version of the ELF psABI.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/elf.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -3927,6 +3927,8 @@ enum #define EF_RISCV_FLOAT_ABI_SINGLE 0x0002 #define EF_RISCV_FLOAT_ABI_DOUBLE 0x0004 #define EF_RISCV_FLOAT_ABI_QUAD 0x0006 +#define EF_RISCV_RVE 0x0008 +#define EF_RISCV_TSO 0x0010 /* RISC-V relocations. */ #define R_RISCV_NONE 0 @@ -3987,6 +3989,19 @@ enum #define R_RISCV_NUM 59 +/* RISC-V specific values for the st_other field. */ +#define STO_RISCV_VARIANT_CC 0x80 /* Function uses variant calling + convention */ + +/* RISC-V specific values for the sh_type field. */ +#define SHT_RISCV_ATTRIBUTES (SHT_LOPROC + 3) + +/* RISC-V specific values for the p_type field. */ +#define PT_RISCV_ATTRIBUTES (PT_LOPROC + 3) + +/* RISC-V specific values for the d_tag field. */ +#define DT_RISCV_VARIANT_CC (DT_LOPROC + 1) + /* BPF specific declarations. */ #define R_BPF_NONE 0 /* No reloc */ |