about summary refs log tree commit diff
path: root/elf
diff options
context:
space:
mode:
authorPalmer Dabbelt <palmer@dabbelt.com>2017-12-26 20:52:36 -0800
committerPalmer Dabbelt <palmer@dabbelt.com>2018-01-06 23:31:32 -0800
commit31a98837be41b03853fcc607e3a7be6b0525a910 (patch)
treeb9ed80e20be5ac384da99cb8558b7041521adc1d /elf
parentf417d92c1714406b85d887c96736801498962ff5 (diff)
downloadglibc-31a98837be41b03853fcc607e3a7be6b0525a910.tar.gz
glibc-31a98837be41b03853fcc607e3a7be6b0525a910.tar.xz
glibc-31a98837be41b03853fcc607e3a7be6b0525a910.zip
Add RISC-V dynamic relocations to elf.h
These relocations can appear in shared objects on RISC-V ELF systems.

2018-01-06  Palmer Dabbelt  <palmer@sifive.com>

       * elf/elf.h (R_RISCV_NONE): New define.
       (R_RISCV_32): Likewise.
       (R_RISCV_64): Likewise.
       (R_RISCV_RELATIVE): Likewise.
       (R_RISCV_COPY): Likewise.
       (R_RISCV_JUMP_SLOT): Likewise.
       (R_RISCV_TLS_DTPMOD32): Likewise.
       (R_RISCV_TLS_DTPMOD64): Likewise.
       (R_RISCV_TLS_DTPREL32): Likewise.
       (R_RISCV_TLS_DTPREL64): Likewise.
       (R_RISCV_TLS_TPREL32): Likewise.
       (R_RISCV_TLS_TPREL64): Likewise.
Diffstat (limited to 'elf')
-rw-r--r--elf/elf.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/elf/elf.h b/elf/elf.h
index 01d7946010..031850377b 100644
--- a/elf/elf.h
+++ b/elf/elf.h
@@ -3762,6 +3762,20 @@ enum
 
 #define R_TILEGX_NUM		130
 
+/* RISC-V relocations.  */
+#define R_RISCV_NONE          0
+#define R_RISCV_32            1
+#define R_RISCV_64            2
+#define R_RISCV_RELATIVE      3
+#define R_RISCV_COPY          4
+#define R_RISCV_JUMP_SLOT     5
+#define R_RISCV_TLS_DTPMOD32  6
+#define R_RISCV_TLS_DTPMOD64  7
+#define R_RISCV_TLS_DTPREL32  8
+#define R_RISCV_TLS_DTPREL64  9
+#define R_RISCV_TLS_TPREL32  10
+#define R_RISCV_TLS_TPREL64  11
+
 /* BPF specific declarations.  */
 
 #define R_BPF_NONE		0	/* No reloc */